@charset "utf-8";
/* CSS Document */
/*デフォルト*/
body {
  color: #464646;
  background: #ffffff;
  font-family: "Noto Sans", sans-serif,  Helvetica, "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background: #e2f1ff;
}

.noto-sans-<uniquifier> {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 20px;
}
a:hover ,
a:focus {
  opacity: .7;
}
a.text_link {
  color: #2A7C6F;
  font-weight: 600;
}
h1,h2,h3,h4,h5,h6 {
  line-height: 1;
  color: #464646;
  padding: 0;
  margin: 0 0 1rem;
}
h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: .875rem;
}

h6 {
  font-size: .7rem;
}
p {
  margin: 0 0 1rem;
}
address,
area,
article,
aside,
audio,
blockquote,
datalist,
details,
dl,
fieldset,
figure,
form,
ol,
optgroup,
option,
output,
p,
pre,
progress,
ruby,
section,
table,
textarea,
ul,
video {
  font-family: "Noto Sans JP", serif;
}
section {
  margin-bottom: 60px;
}
article {
  margin: 0 4% 40px;
}
article:last-child {
  margin: 0 4% ;
}
figure {
  margin: 0;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
ul {
  margin: 0;
  padding: 0;
}
li img {
  margin-bottom: 10px;
}
.center_txt {
  text-align: center;
}
.pc {
  display: none;
}
.sp {
  display: block;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
}
main {
  margin: 0;
  padding: 30px 0 0;
}
.inner {
  margin: 0 4%;
  width: 92%;
}
.inner_wide {
  margin: 0 auto;
  width: 100%;
}

#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: rgba(169,21,34,.8);
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 23px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
.mb20 {
  margin-bottom: 20px;
}
.cl_soubu {
    color: #f8bb00;
}
.cl_mita {
    color: #2E6AB1;
}


@media screen and (min-width: 768px) {
.wrapper {
    width: 100%;
}
main {
  padding: 70px 0 0;
}
body {
  font-size: 16px;
  line-height: 1.8;
}
h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 ,h6 {
  font-size: 1rem;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

section {
  margin: 0 auto 80px;
  }
article {
  margin: 0 4% 60px;
}
.inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1280px;
}
}




/*==============================================
 NAV
==============================================*/
.header {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #2A7C6F;
}
.logo {
  font-weight: 700;
  padding-left: 16px;
  color: #ffffff;
  font-size: 20px;
}
.hamburger-menu {margin: 5px 16px;
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 4px;
}
.hamburger-menu__bar {display: inline-block;
    width: 32px;
    height: 3px;
    background: #000000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 12px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 36px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background: rgba(255, 255, 255, .7);
  position: absolute;
  top: 70px;
  width: 100%;
  z-index: 9999;
}
.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 50px 8%;
}
.navigation__list-item {
  border-bottom: 1px dotted #959595;
}

.navigation__link {
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 16px 10px;
  transition: .5s;
  text-align: left;
  color: #2A7C6F;
  position: relative;
}
.navigation__link:after {
    content: "\f35a";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 32%;
    right: 10px;
    font-size: 16px;
    color: #2A7C6F;
}
.g__navi {
  display: none;
}


@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: rgba(52, 165, 133, .2);
  }
}
@media screen and (min-width: 768px) {
.header {
  height: 80px;
}
.hamburger-menu {
  display: none;
}
.g__navi {
  display: block;
}
.g__navi_list {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.g__navi_list li {
  white-space: nowrap;
}
.g__navi_list li:not(last-child) {
  border-right: 1px solid #dddddd;
  }
.g__navi__link {
  display: block;
  margin: 0;
  padding: 20px 10px;
  font-size: 16px;
}
.g__navi__link:hover {
  background: rgba(255, 255, 255, .2);
  }
}
@media screen and (min-width: 960px) {
.g__navi__link {
    font-size: 18px;
  font-weight: 700;
}
.logo {
  padding-left: 20px;
}
.logo a {
    font-size: 24px;
}
.g__navi_list li:last-child {
    margin-right: 20px;
  border-right: none;
}
}
@media screen and (min-width: 1280px) {
.header {
    height: 120px;
}
.logo {
  padding-left: 5%;
}
.logo a {
    font-size: 28px;
}
.g__navi_list li:last-child {
    margin-right: 5%;
}
.g__navi__link {
    padding: 20px;
}
.g__navi__link {
    font-size: 22px;
}
}



/*==============================================
 Footer
==============================================*/
footer {
  background: #B5DBFF;
  padding: 40px 0 0;
}
.footer_inner {
  width: 92%;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer_inner a.powered_txt ,
.footer_inner a.f_toi {
  font-size: 20px;
  display: block;
  color: #2A7C6F;
  font-weight: 700;
}
.footer_inner a.f_toi {
  font-size: 14px;
  font-weight: 400;
}
.f_menu ul {
  width: 160px;
}
.f_menu li a {
  font-size: 14px;
  display: block;
  color: #2A7C6F;
  position: relative;
}
.f_menu li a::after  {
    content: "\f35a";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 2px;
    right: 10px;
    color: #2A7C6F;
  font-weight: 900;
}
.f_sns ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 50px;
  margin: 20px auto 0;
}
.f_sns li a {
  width: 40px;
  display: block;
}
.f_copy {
  background: #2A7C6F;
  color: #eeeeee;
  text-align: center;
  font-size: 12px;
  padding: 4px;
  padding: 10px 0;
}
.f_copy a {
  color: #eeeeee;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
footer {
    padding: 30px 0 0;
}
.footer_inner a.powered_txt {
    font-size: 28px;
}
.f_menu ul {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.f_menu li:not(:last-child) {
  border-right: 1px solid #2A7C6F;
  padding-right: 40px;
  }
.f_menu li:not(:first-child) {
  margin-left: 20px;
  }
.f_menu li a ,
.footer_inner a.f_toi {
    font-size: 16px;
    font-weight: 400;
}
.f_menu li a::after {
    top: 0;
    right: -24px;
}
.f_copy a {
    color: #eeeeee;
    font-size: 14px;
}
.f_sns li a {
    width: 60px;
}
  
}

/*==============================================
 scroll
==============================================*/

.scroll_up {
  transition: 0.5s ease-in-out;
  transform: translateY(50px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-50px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
.scroll_right {
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    transform: translateX(50px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
@media screen and (min-width: 768px) {
.scroll_up {
  transform: translateY(300px);
  opacity: 0;
}
.scroll_left {
    transform: translateX(-300px);
}
.scroll_right {
    transform: translateX(300px);
}
  
}


/*==============================================
 Main
==============================================*/
.kv {
  background: url(../img/kv.png) no-repeat;
  background-position: center center;
  background-size: 180%;
  height: 400px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.kv h2 {
  position: absolute;
  font-size: 1.5rem;
  text-align: center;
  line-height: 2rem;
  width: 100%;
  background: rgba(255, 255, 255, .6);
  padding: 20px 10px;
  color: #2A7C6F;
  bottom: 55px;
}
.kv h2 span {
  font-family: "Zen Old Mincho", serif;
  font-size: 70%;
  display: block;
  color: #000000;
}
h3 {
  line-height: 1.0;
  margin-bottom: 30px;
  text-align: center;
  color: #2a7c6f;
  letter-spacing: .1rem;
}
.bg_blue {
      background: #e2f1ff;
}
.card {
  padding: 0 0 20px;
  background: #ffffff;
  margin-bottom: 20px;
}

.card .row_txt {
  margin: 20px 0;
}
.card .row_txt h3 {
  font-size: 1.5rem;
  line-height: 3rem;
}
.card:nth-child(even) .row_txt h3 {
  text-align: right;
}
.card:nth-child(odd) .row_txt h3 {
  text-align: left;
}
.card .row_txt h3 span {
  background: rgba(1, 102, 73, 1);
  color: #ffffff;
  padding: 2px 5px;
}
.card .row_txt p {
  margin: 40px 4% 0;
  text-align: justify;
}
.swiper {
  width: 100%;
  height: auto;
}
.swiper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about_p {
  width: 92%;
  margin: 20px auto;
}
.about_p p {
  text-align: center;
}
.link_btn {
  width: 340px;
  margin: 40px auto 0;
}
.link_btn a {
  display: block;
  background: #2A7C6F;
  color: #FFFFFF;
  text-align: left;
  border-radius: 12px;
  padding: 30px 50px;
  position: relative;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.link_btn a::after {
  content: "\f35a";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  color: #FFFFFF;
  font-size: 90%;
  font-weight: 400;
  top: 51%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0.7;
  right: 55px;
  transition: all 0.3s ease;
}
.link_btn a:hover {
  background: #08749c;
  background: linear-gradient(295deg,rgba(8, 116, 156, 1) 0%, rgba(82, 188, 191, 1) 100%);
  transform: scale(0.98);
    opacity: 0.9;
}
.link_btn a:hover::after {
    opacity: 1;
    right: 40px;
}
.bg_white {
  background: #ffffff;
  padding: 60px 0;
}
.sinryo_table table {
  border: 1px solid #959595;
  width: 100%;
}
.sinryo_table th ,
.sinryo_table td {
  border: 1px solid #959595;
  background: #E2F1FF;
  font-size: 14px;
  text-align: center;
  padding: 4px;
  
}
.sinryo_table td {
  background: #FFFFFF;
    line-height: 1.4rem;
}
.sinryo_table td.bg_gray {
  background: #EAEAEA;
  line-height: 2rem;
}
.table_sita {
  margin-top: 10px;
}
.table_sita p {
  margin-bottom: 1rem;
}
.table_sita p span {
  margin-left: -8px;
}
.toi_row {
  width: 100%;
  max-width: 340px;
  text-align: center;
  margin: 0 auto;

}
.toi_row .row_lf {
  width: 100%;
  margin: 0 auto;
}
.row_line .line_QR {
  display: none;
}
.toi_row .row_lf a {
  color: #000000;
}
.row_line a {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #ffffff;
  border: 1px solid #06C755;
  padding: 14px 20px;
  gap: 50px;
  margin-bottom: 16px;
}
.row_line a img {
  width: 70px;
}
.row_line a span {
  color: #000000;
  position: relative;
  display: block;
  width: 170px;
  text-align: left;
}
.row_line a span::after {
    content: "\f35a";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    color: #222222;
    font-size: 90%;
    font-weight: 400;
    top: 3px;
    opacity: 0.7;
    right: 50px;
    transition: all 0.3s ease;
}
.link_tel {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}
.link_tel a {
  color: #2A7C6F;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.link_tel a img {
  width: 26px;
}
.map {
  margin: 0;
  padding: 0;
  height: 300px;
  border: 1px solid #ccc;
}
.map iframe {
    width: 100%;
    margin: 0;
  height: 100%;
}
.access {
  width: 92%;
  margin: 20px auto 0;
}
.access h4 {
  position: relative;
}
.access h4:before {
  content: "■";
  display: inline-block;
  color: #2A7C6F;
  margin-right: .4rem;
}
.access .row_lf {
  margin-bottom: 30px;
}

@media screen and (min-width: 440px) {
.card .row_txt h3 span {
  padding: 2px 12px;
}
}
@media screen and (min-width: 560px) {
.sinryo_table th, .sinryo_table td {
    padding: 10px 4px;
}
}
@media screen and (min-width: 768px) {
.kv {
  height: 560px;
  background-size: 120%;
  }
.kv h2 {
  font-size:1.8rem;
  line-height: 2.4rem;
  padding: 30px;
}
h3 {
  margin-bottom: 60px;
  font-size: 1.75rem;
}
.card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 0;
  position: relative;
  margin-bottom: 40px;
}
.card .row_txt {
  z-index: 10;
  position: absolute;
  right: 0;
  top: 20px;
  margin: 0;
}
.card figure {
  height: 320px;
  }
.card .row_txt {
  width: 52%;
}
.card .row_txt h3 {
    margin-bottom: 20px;
}
.card .row_txt p {
    margin: 0 4%;
    font-weight: 700;
}
.card:nth-child(odd) {
  min-height: 320px;
}
.card:nth-child(odd) .row_txt {
  left: 0;
}
.card:nth-child(odd) figure ,
.card:nth-child(odd) .row_txt {
  order: 0;
}
.card:nth-child(odd) figure {
  position: absolute;
  right: 0;
}
.about_p p {
  font-weight: 700;
  margin-top: 40px;
}
.link_btn {
    margin: 70px auto 0;
}
.sinryo_table th, .sinryo_table td {
    padding: 10px;
  font-size: 16px;
}
.table_sita {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
.toi_row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
  max-width: 960px;
}
.toi_row .row_lf {
    width: calc(100% - 316px);
}

.link_tel {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}
.row_line .line_QR {
  display: block;
  width: 100px;
  border: 1px solid #222222;
}
.row_line {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 16px;
}
.toi_row .row_lf a {
  gap: 20px;
  margin-bottom: 0;
      width: calc(100% - 100px);
}
.row_line a span {
    width: calc(100% - 70px);
}
.row_line a span::after {
    right: 0;
}
.row_rgt {
  width: 316px;
}
.row_rgt .link_btn {
  margin-top: 0;
}
.row_rgt .link_btn a {
    width: 316px;
    padding: 30px;
}
.link_btn a::after {
    right: 40px;
}
.access {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  max-width: 1280px;
}
.access .row_lf ,
.access .row_rgt {
  width: 50%;
}
}
@media screen and (min-width: 960px) {
  .kv {
    height: 760px;
    background-size: 120%;
  }
  .kv h2 {
        font-size: 2.25rem;
        line-height: 3rem;
        padding: 30px;
    }
  .kv h2 span {
    font-size: 62%;
}
  .card {
    margin-bottom: 60px;
}
  .card figure {
    height: auto;
    width: 660px;
  }
  .card:nth-child(odd) {
    height: 412px;
    
}
.card .row_txt {
    top: 40px;
}
.card .row_txt h3 {
    font-size: 1.75rem;
    line-height: 3.5rem;
  margin-bottom: 40px;
}
.card .row_txt h3 span {
        padding: 4px 20px;
}
.card .row_txt p {
    font-size: 18px;
}
.about_p {
    margin: 40px auto;
}
.about_p p {
  font-size: 18px;
  line-height: 2.25rem;
}
.row_rgt .link_btn {
    width: 400px;
    margin: 0 0 0 auto;
}
.link_btn a {
    letter-spacing: .1rem;
  font-size: 24px;
}
.sinryo_table th, .sinryo_table td {
    padding: 16px;
    font-size: 18px;
}
.sinryo_table th {
  letter-spacing: .1rem
}
.table_sita p {
    font-size: 18px;
}
.table_sita {
  gap: 180px;
}
.toi_row {
  gap: 40px;
  margin: 0 auto;
}
.toi_row .row_lf ,
.row_rgt {
    width: 50%;
}
.row_rgt .link_btn a {
  width: 100%;
  padding: 30px 50px;
}
.row_line {
    gap: 12px;
}
.map {
  height: 480px;
}
.link_btn {
  width: 420px;
}
.link_btn a::after {
  right: 55px;
}
.link_btn a:hover ::after {
  right: 55px;
}
}

@media screen and (min-width: 1200px) {
.kv h2 {
      font-size: 2.75rem;
      line-height: 4rem;
      padding: 30px;
  }
h3 {
      margin-bottom: 70px;
      font-size: 2.5rem;
  }
.card:nth-child(odd) {
    height: 488px;
}
.card figure {
    width: 780px;
}
.card .row_txt {
    top: 60px;
  width: 50%;
}
.card .row_txt h3 {
    font-size: 2rem;
    line-height: 4rem;
    margin-bottom: 70px;
}
.card .row_txt p ,
.about_p p {
    font-size: 20px;
}

}
@media screen and (min-width: 1340px) {
  .kv {
    height: 840px;
  }
  .kv h2 {
  font-size: 3rem;
  line-height: 4.5rem;
  padding: 40px;
  bottom: 60px;
}
}
@media screen and (min-width: 1400px) {
.card:nth-child(odd) {
    height: 600px;
}
.card .row_txt {
    width: 47%;
}
  .card figure {
    width: 960px;
}
.card .row_txt h3 {
    font-size: 2.5rem;
    line-height: 5rem;
    margin-bottom: 90px;
}

}
/*==============================================
 下層ページ
==============================================*/
main.kaso {
  padding: 0;
}
.fv {
  margin: 0;
  width: 100%;
  height: 150px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fv.p_contact {
  background: url("../img/p_contact.jpg") no-repeat;
  background-size: cover;
}
.fv.p_faq {
  background: url("../img/p_faq.jpg") no-repeat;
  background-size: cover;
}
.fv.p_docter {
  background: url("../img/p_docter.jpg") no-repeat;
  background-size: cover;
}
.fv.p_menu {
  background: url("../img/p_menu.jpg") no-repeat;
  background-size: cover;
}
.fv h2 {
  text-align: center;
  color: #2A7C6F;
}
.breadcrumb {
  margin: 0 auto 60px;
  width: 100%;
  padding: 4px 4% 0;
  border-bottom: 1px solid #cccccc;
  background: #fcffff;
}
.breadcrumb ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.breadcrumb li {
    display: inline-block;
    position: relative;
    padding-right: calc(8px + 8px);
    margin-right: 8px;
  color: #696969;
}
.breadcrumb li::before {
    content: '›';
    width: 1em;
    height: 1em;
    line-height: 1;
    text-align: center;
    position: absolute;
    top: 40%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.breadcrumb li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.breadcrumb li:last-child::before {
  content: none;
}
.fa, .fas {
    font-weight: 900;
}
.breadcrumb a {
  color: #222222;display: block
}
.breadcrumb a i {
  font-size: 14px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
.fv {
    height: 240px;
}
}
/*よくある質問 -----------------------------------*/
.accordion-content {
  display: none;
}
.accordion-header {
  background-color: #FFF;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}

.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#151E2F;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
  background-color: #FFF;
  padding: 12px 20px 10px;
  border-top: 1px dotted #52BCBF;
}
.accordion-header span{
  padding-left: 25px;
  position: relative;
  color: #2a7c6f;
  font-weight: 700;
}
.accordion-content span{
  padding-left: 25px;
  position: relative;
  color: #464646;
  font-weight: 400;
}
.accordion-header span::before{
  position: absolute;
  content: "Q";
  top: -13px;
  left: -5px;
  color: #2a7c6f;
  font-size: 25px;
  font-family: "Zen Old Mincho", serif;
}
.accordion-content span::before{
  position: absolute;
  content: "A";
  top: -12px;
  left: 0;
  color: #00bfff;
  font-weight: 700;
  font-size: 25px;
  font-family: "Zen Old Mincho", serif;
}
/* hover */
.accordion-header:hover {
  background-color: rgba(8, 116, 156, .2);
}

@media screen and (min-width: 768px) {
  .accordion-header {
    margin-top: 20px;
}
.accordion-content {
    padding: 20px;
}
}

/*治療メニュー -----------------------------------*/
