@charset "UTF-8";
:root {
  --gray: #474645;
  --gray02: #E6E6E6;
  --red: #B72317;
  --pink: #E3418D;
  --pink02: #E25B7B;
  --pink03: #F370AE;
  --pink04: #E88AB6;
  --pink05: #FF8BA3;
  --pink06: #F28FBD;
  --pink07: #F3A0C7;
  --pink08: #E8BACF;
  --pink09: #F0D1DF;
  --pink10: #FFEBF0;
  --pink11: #E8CCD9;
  --yellow: #FFE950;
  --yellow02: #FFE87D;
  --yellow03: #FFF4AA;
  --yellow04: #FFF9CB;
  --yellow05: #FCFFE2;
  --yellow06: #FFF0A5;
  --brown: #D2BE98;
  --brown02: #B39475;
  --brown03: #9E8271;
  --brown04: #9D7458;
  --brown05: #876146;
  --brown06: #845313;
  --brown07: #F3B474;
  --brown08: #FFF6EF;
  --blue: #0079C2;
  --blue02: #2AA1E9;
  --blue03: #EBF7FF;
  --blue04: #BEE5FF;
  --blue05: #85B0CB;
  --blue06: #A4D6E6;
  --blue07: #dff1fe;
  --blue08: #4ca0d2;
  --blue09: #9ed8fb;
  --blue10: #61BDF5;
  --green: #EBFFD5;
  --green02: #A9C300;
  --green03: #8CB808;
  --green04: #9CD43D;
  --green05: #B5EF78;
  --green06: #92DE43;
  --green07: #7ECB2C;
  --green08: #579D3E;
  --green09: #68AF4F;
  --green10: #3FA760;
  --green11: #008129;
  --green12: #437E56;
  --green13: #D5FFAA;
  --green14: #24710E;
  --green15: #D3F9A9;
}

/* ----------------------------------------------------------------------------------
リセット　_reset.scss
---------------------------------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ----------------------------------------------------------------------------------
モジュール　_module.scss
---------------------------------------------------------------------------------- */
/* clearfix -------------------------------------- */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

/* float -------------------------------------- */
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

/* txt -------------------------------------- */
.txt_c {
  text-align: center;
}

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 4rem 6rem 4rem;
    margin-bottom: 3rem;
  }
}
*[class*=frame_].frame_01 {
  background: var(--yellow05);
}
*[class*=frame_].frame_02 {
  background: var(--green15);
}

/* img -------------------------------------- */
.img_c {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.img_l,
.img_r {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
/* マージン・パディング回り -------------------------------------- */
.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

section > section:first-of-type {
  margin-top: 2rem;
}

.main > .wrap > section ~ section,
.flex2 > section ~ section {
  margin-top: 4rem;
}

.main > .wrap > section section ~ section,
.flex2 > section section ~ section {
  margin-top: 3rem;
}

.main > .wrap > section > section section ~ section,
.flex2 > section > section section ~ section {
  margin-top: 2rem;
}

.main > .wrap > section > section > section section ~ section,
.flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  section > section:first-of-type {
    margin-top: 4rem;
  }
  .main > .wrap > section ~ section,
  .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > .wrap > section section ~ section,
  .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > .wrap > section > section section ~ section,
  .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > .wrap > section > section > section section ~ section,
  .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  font-weight: 500;
  margin-top: 0.8rem;
}
.tbl_time caption .ex_txt {
  padding: 0.2rem 0.4rem;
  margin: 0 0.4rem 0 0;
  color: #fff;
  border-radius: 12px;
  background: var(--brown04);
}
.tbl_time caption .i_sat::before {
  content: "●";
  color: var(--green09);
  margin-right: 0.4rem;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: var(--blue02);
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-radius: 7px 0 0 0;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 7px 0 0;
  padding-right: 0.4rem;
}
.tbl_time tr th.time {
  background: #fff;
  font-weight: 500;
  border-bottom: 1px solid var(--blue02);
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: #fff;
  border-bottom: 1px solid var(--blue02);
  line-height: 1;
}
.tbl_time tr td:last-child {
  padding-right: 0.4rem;
}
.tbl_time tr td .open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tbl_time tr td .open::before {
  content: "\e815";
  font-family: "fontello";
  color: var(--brown04);
}
.tbl_time tr td .open.timeChange::before {
  color: var(--green09);
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.8rem;
  }
  .tbl_time caption {
    font-size: 1.6rem;
    margin: 1rem 0 0;
    line-height: 2;
  }
  .tbl_time caption .ex_txt {
    padding: 0.4rem 2rem;
    margin: 0 0.9rem 0 0;
    border-radius: 30px;
  }
  .tbl_time caption .i_sat::before {
    margin-right: 0.4rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.2rem 0;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: 1rem 0;
    font-size: 2.4rem;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--green11);
  padding: 3rem 1rem;
  margin: 0 0 3rem;
  min-height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tit_02 {
  color: #231815;
  text-align: center;
  font-size: 2rem;
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1.2;
  font-weight: 500;
}
.tit_02 > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tit_02 > span::before, .tit_02 > span::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  display: block;
  margin: 0 1rem;
  min-width: 3rem;
  height: 5rem;
}
.tit_02 > span::before {
  background-image: url("../img/tit_02_low_parts01.svg");
}
.tit_02 > span::after {
  background-image: url("../img/tit_02_low_parts02.svg");
}

body.index .tit_02 > span {
  position: relative;
}
body.index .tit_02 > span::before, body.index .tit_02 > span::after {
  background-position: center;
  height: 5rem;
}
body.index .tit_02 > span .eng_txt {
  position: absolute;
  bottom: 0;
  display: block;
  font-size: 1rem;
}

.tit_03 {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  border-radius: 30px;
  margin: 0 0 1rem;
  padding: 0.6rem 1rem 0.8rem 2.6rem;
  text-shadow: 0 0 4px #9c6a28;
  background: url("../img/a_bg_common01.png") repeat center top/100% 100%;
  position: relative;
}
.tit_03::before {
  content: "\e815";
  font-family: "fontello";
  font-weight: normal;
  position: absolute;
  left: 0.4rem;
  top: 0.6rem;
  color: var(--brown06);
}

.tit_04 {
  color: var(--brown04);
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  border-radius: 30px;
  margin: 0 0 1rem;
  padding: 0.2rem 1rem 0.2rem 2.6rem;
  background: var(--yellow06);
  position: relative;
}
.tit_04::before {
  content: "\e81b";
  font-family: "fontello";
  font-weight: normal;
  position: absolute;
  left: 0.4rem;
  top: 0.6rem;
  color: var(--green07);
}

.tit_05 {
  color: var(--pink03);
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  border-radius: 30px;
  margin: 0 0 1rem;
  padding: 0.2rem 1rem 0.2rem 2.6rem;
  background: var(--pink10);
  position: relative;
}
.tit_05::before {
  content: "\e819";
  font-family: "fontello";
  font-weight: normal;
  position: absolute;
  left: 0.4rem;
  top: 0.2rem;
  color: var(--pink08);
}

.tit_06 {
  color: var(--blue08);
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 1rem;
  padding: 0 0 0.8rem 2rem;
  border-bottom: 1px solid var(--blue04);
  position: relative;
}
.tit_06::before {
  content: "●";
  font-family: "fontello";
  font-weight: normal;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  color: var(--blue09);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 4rem;
    padding: 8.9rem 4rem;
    margin: 0 0 3rem;
  }
  .tit_02 {
    font-size: 3rem;
    margin: 0 0 2rem;
  }
  .tit_02 > span::before, .tit_02 > span::after {
    margin: 0 1.6rem;
    min-width: 8.7rem;
    height: 12.3rem;
  }
  body.index .tit_02 > span {
    margin: 0 1.6rem;
    min-width: 8.7rem;
    height: 12.3rem;
  }
  body.index .tit_02 > span::before, body.index .tit_02 > span::after {
    margin: 0 1.6rem;
    min-width: 8.7rem;
    height: 12.3rem;
  }
  body.index .tit_02 > span .eng_txt {
    font-size: 1.6rem;
    bottom: 1.2rem;
  }
  .tit_03 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
    padding: 1rem 2rem 1rem 4rem;
  }
  .tit_03::before {
    left: 1.2rem;
    top: 1.2rem;
  }
  .tit_04 {
    font-size: 2rem;
    margin: 0 0 2rem;
    padding: 1rem 2rem 1rem 4rem;
  }
  .tit_04::before {
    left: 1.2rem;
    top: 1.2rem;
  }
  .tit_05 {
    font-size: 1.8rem;
    margin: 0 0 2rem;
    padding: 1rem 2rem 1rem 4rem;
  }
  .tit_05::before {
    left: 1.2rem;
    top: 1.2rem;
  }
  .tit_06 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--blue04);
    padding: 1rem 2rem 1rem 4rem;
  }
  .tit_06::before {
    left: 1rem;
    top: 1.2rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  text-indent: -1.8rem;
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
.lst_ul01 li:last-child {
  padding-bottom: 0;
}
.lst_ul01 li::before {
  content: "●";
  margin-right: 0.4rem;
  color: var(--blue10);
}
.lst_ul01 li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_ul01.flex li {
    width: 49%;
  }
}

.lst_ol01 {
  margin: 1rem 0 1rem 2.6rem;
}
@media screen and (min-width: 48em), print {
  .lst_ol01 {
    margin: 1rem 0 1rem 3rem;
  }
}
.lst_ol01 li {
  line-height: 1.4;
  counter-increment: number 1;
  text-indent: -1rem;
  padding: 0 0 1rem 0;
}
.lst_ol01 li::before {
  display: inline-block;
  content: counter(number) ".";
  margin-right: 0.8rem;
  font-weight: bold;
}

.lst_dl01 div {
  margin: 0 0 1rem;
}
.lst_dl01 div dt {
  font-size: 110%;
  font-weight: 700;
  color: var(--brown06);
  margin: 0;
  padding: 0;
}
.lst_dl01 div dd {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lst_dl01 div dt {
    width: auto;
    min-width: 5.8rem;
  }
  .lst_dl01 div dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 1.4rem;
  }
}
.lst_QnA div {
  margin: 0 0 2rem;
}
.lst_QnA div dt {
  margin: 0 0 0.6rem;
  padding: 0 0 0 2.8rem;
  font-weight: bold;
  font-size: 106%;
  color: var(--blue);
  position: relative;
}
.lst_QnA div dt::before {
  content: "Q.";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--blue03);
  color: var(--blue);
  position: absolute;
  top: 0;
  left: 0;
}
.lst_QnA div dd {
  margin: 0;
  padding: 0 0 0 2.8rem;
  position: relative;
}
.lst_QnA div dd::before {
  content: "A.";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--blue);
  font-weight: bold;
  font-size: 106%;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 48em), print {
  .lst_QnA div {
    margin: 0 0 4rem;
  }
  .lst_QnA div dt {
    margin: 0 0 1.8rem;
    padding: 0 0 0 3.6rem;
    font-size: 110%;
  }
  .lst_QnA div dt::before {
    width: 2.8rem;
    height: 2.8rem;
    top: 0;
  }
  .lst_QnA div dd {
    padding: 0 0 0 3.6rem;
  }
  .lst_QnA div dd::before {
    font-size: 110%;
    width: 2.8rem;
    height: 2.8rem;
  }
}
/* フレックス回り -------------------------------------- */
.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex2 > section,
  .flex2 > li {
    width: 48%;
    margin: 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 0.6rem 4rem;
  border-radius: 25px;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
}
*[class*=btn_] a::after {
  content: "";
  font-family: "fontello";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
}

.txt_link,
.lst_ul01 li a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none !important;
  border-bottom: 1px solid var(--blue);
}
.txt_link:hover,
.lst_ul01 li a:hover {
  opactiy: 1;
  border-bottom: none;
}

/* フローチャート -------------------------------------- */
.flow dd {
  margin: 0 0 6rem;
  position: relative;
}
.flow dd:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow dd {
    margin: 0 0 10rem;
  }
}
.flow dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--brown04);
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow dd:not(:last-child)::after {
    bottom: -7rem;
  }
}

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low tr th {
  width: 30%;
  background: #d9edac;
  text-align: center;
  font-weight: normal;
  border: 1px solid #1c825c;
}
.tbl_low tr td {
  padding: 0.8rem;
  border: 1px solid #1c825c;
}

.tbl_access {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_access tr th {
  width: 37%;
  background: var(--brown08);
  text-align: center;
  font-weight: 600;
  padding: 0.8rem;
  color: var(--brown04);
  border-bottom: 2px solid var(--brown04);
}
.tbl_access tr td {
  padding: 0.8rem;
  border-bottom: 2px solid var(--brown04);
}
.tbl_access tr:last-child th,
.tbl_access tr:last-child td {
  border-bottom: none;
}

@media screen and (min-width: 48em), print {
  .tbl_access tr th {
    width: 30%;
    padding: 1.2rem 0;
  }
  .tbl_access tr td {
    padding: 1.2rem 1.4rem;
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
.nolink {
  pointer-events: none !important;
  color: #d0d0d0 !important;
}
.nolink::before {
  color: #d0d0d0 !important;
}
.nolink > * {
  color: #d0d0d0 !important;
}

.target_disease .nolink span {
  color: #8f8a8a !important;
}

.overflow {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}
.overflow::before {
  content: "";
  display: block;
  width: 100%;
  height: 35rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#e8f9ff), to(#fbfdff));
  background: linear-gradient(to bottom, #e8f9ff, #fbfdff);
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 48em), print {
  .overflow::before {
    height: 100rem;
  }
}

html {
  font-size: 3.125vw;
  font-family: "Zen Maru Gothic", serif;
}

body {
  background: #fff;
  color: #231815;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  padding: 0 1rem 0;
}

.main {
  font-size: 1.4rem;
  line-height: 1.6;
  background: var(--green05);
  padding: 11rem 0 0;
  position: relative;
}
.main::before {
  content: "";
  display: block;
  margin: auto;
  width: 100%;
  height: 7rem;
  background: url("../img/a_bg_common02.svg") no-repeat center/cover;
  position: absolute;
  top: -5.6rem;
  left: 0;
  right: 0;
  z-index: -1;
}
.main a:not([href*=tel]) {
  text-decoration: underline;
}
.main a[class*=btn_] {
  text-decoration: none;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1120px;
  }
  body > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 10rem auto 0;
  }
  a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.6rem;
    padding: 0 0 0;
    width: 100%;
  }
  .main::before {
    min-width: 2000px;
    max-width: 100vw;
    height: 37.4rem;
    background: url("../img/a_bg_common02.svg") no-repeat top/cover;
    top: -22.6rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
/* アイコンフォント -------------------------------------- */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
/* ヘッダー -------------------------------------- */
.header .wrap {
  padding: 2rem 0 0;
  margin: 0 1rem 1rem;
}
.header .wrap .logo {
  height: 2.6rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headR {
  margin: 0.8rem 0 0;
  font-size: 1.2rem;
}
.header .wrap .headR .tel_item,
.header .wrap .headR .rsv_item {
  display: none;
}
.header .wrap .headR .access_item {
  font-weight: 500;
}
.header .wrap .headR .access_item::before {
  content: "\e80a";
  color: var(--blue);
  font-family: "fontello";
  margin-right: 0.4rem;
}
.header .wrap .headR .access_item span {
  font-weight: bold;
  color: var(--pink03);
}

@media screen and (min-width: 48em), print {
  .header {
    position: relative;
    z-index: 4;
  }
  .header .wrap {
    padding: 2.8rem 2rem 1.2rem;
    margin: 0 auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .wrap .logo {
    width: 49.5rem;
    height: 5.7rem;
  }
  .header .wrap .headR {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .wrap .headR ul li.access_item {
    font-size: 1.6rem;
  }
  .header .wrap .headR ul li.access_item::before {
    font-size: 1.8rem;
  }
  .header .wrap .headR ul li.tel_item {
    display: block;
    font-size: 3.3rem;
  }
  .header .wrap .headR ul li.tel_item .tel {
    color: var(--blue);
    font-family: "Josefin Sans", sans-serif;
  }
  .header .wrap .headR ul li.tel_item .tel::before {
    content: "\e801";
    font-family: "fontello";
    margin-right: 0.4rem;
  }
  .header .wrap .headR .rsv_item {
    display: block;
    margin: 0 0 0 2.35rem;
  }
  .header .wrap .headR .rsv_item a {
    display: block;
    padding: 0.4rem 3rem;
    border-radius: 30px;
    font-size: 2.5rem;
    font-weight: 500;
    background: var(--pink06);
    color: #fff;
    -webkit-box-shadow: 3px 3px 0 #a4d6e6;
            box-shadow: 3px 3px 0 #a4d6e6;
  }
  .header .wrap .headR .rsv_item a::before {
    text-align: center;
    margin-right: 1.2rem;
    font-weight: normal;
    font-size: 3.6rem;
    font-family: "fontello";
    content: "\e80b";
  }
}
/* SP ドロップダウンメニュー -------------------------------------- */
#menu {
  z-index: 9999;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#menu .fixed_menu_btn {
  width: 6rem;
  height: 5.6rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0.4rem 0.4rem;
  position: fixed;
  top: 1.4rem;
  right: 1rem;
  z-index: 204;
}
#menu .fixed_menu_btn .hamburger {
  height: 100%;
}
#menu .fixed_menu_btn .hamburger a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.8rem 0rem;
  height: 100%;
  text-decoration: none;
  background: var(--blue);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 5px;
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "\e802";
  font-family: "fontello";
  font-size: 2.6rem;
  line-height: 0.8;
}
#menu .fixed_menu_btn .hamburger a::after {
  content: "MENU";
  font-size: 1rem;
}
#menu .fixed_menu_btn.active .hamburger a::before {
  content: "\e806";
}
#menu .fixed_menu_btn.active .hamburger a::after {
  content: "CLOSE";
}
#menu #nav {
  display: none;
}
#menu #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 8rem 2rem 6rem;
  background-color: white;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  left: auto !important;
  z-index: 203;
  -webkit-transform: translate(27rem);
  transform: translate(27rem);
}
#menu #nav.sp_nav.open {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#menu #nav.sp_nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.2rem;
  width: 100%;
}
#menu #nav.sp_nav > ul li {
  text-align: left;
  margin: 0;
  border-bottom: 1px solid #ddd;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#menu #nav.sp_nav > ul li.treatment {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#menu #nav.sp_nav > ul li a {
  display: block;
  text-align: center;
  padding: 1.2rem 0.2rem 1.2rem;
  position: relative;
  font-weight: bold;
  color: #231815;
  text-decoration: none !important;
}
#menu #nav.sp_nav > ul li a span {
  display: block;
  font-size: 80%;
  margin-left: 0.4rem;
  color: var(--green03);
}
#menu #nav.sp_nav > ul li a.sub {
  pointer-events: none;
  margin: 0;
  padding: 1.2rem 0.2rem 0.2rem;
}
#menu #nav.sp_nav > ul li a.sub + .subnav {
  padding: 1.6rem 0.2rem 1.2rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#menu #nav.sp_nav > ul li a.sub + .subnav li {
  width: 50%;
  border-bottom: none;
  text-align: left;
}
#menu #nav.sp_nav > ul li a.sub + .subnav li a {
  font-weight: 500;
  color: var(--pink03);
  padding: 1rem 0.2rem;
}
#menu #nav.sp_nav > ul li a.sub + .subnav li a::after {
  content: none;
}
#menu #nav.sp_nav > ul li a:not(.sub)::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "2";
  color: var(--pink02);
  font-family: "fontello";
  margin-left: 0.4rem;
}
#menu .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#menu .overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

#nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_menu_btn {
    display: none;
  }
  #menu {
    display: block;
    /* Gナビ　ハイライト */
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: none;
    position: relative;
    z-index: 2;
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 200;
    margin: auto;
    background: #fff;
    -webkit-box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.16);
  }
  #menu #nav .gnav {
    width: 1100px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #menu #nav .gnav li {
    width: auto;
    position: relative;
    z-index: 2;
  }
  #menu #nav .gnav li.treatment > a::after {
    content: "\f004";
    font-family: "fontello";
    margin-left: 0.4rem;
    position: absolute;
    right: -1em;
    top: 2rem;
  }
  #menu #nav .gnav li a {
    display: block;
    text-align: center;
    padding: 2rem 0 2rem;
    font-weight: 500;
    font-size: 1.6rem;
  }
  #menu #nav .gnav li a span {
    display: block;
    margin: 0.4rem 0 0;
    font-size: 1.2rem;
    color: var(--green03);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  #menu #nav .gnav li a:hover {
    opacity: 1;
    color: var(--pink02);
  }
  #menu #nav .gnav li a:hover span {
    color: var(--pink02);
  }
  #menu #nav .gnav li .subnav {
    width: 15.8rem;
    display: none;
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #menu #nav .gnav li .subnav li {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  #menu #nav .gnav li .subnav li a {
    display: block;
    width: 100%;
    padding: 1.6rem 0;
    text-align: center;
    font-size: 1.8rem;
    color: #fff;
    background: var(--pink06);
  }
  #menu #nav .gnav li .subnav li a:hover {
    opacity: 1;
    background: var(--pink03);
  }
}
/* クリニック概要 -------------------------------------- */
.overview_bg {
  position: relative;
  z-index: 1;
}
.overview_bg::after {
  content: "";
  display: block;
  margin: auto;
  width: 100%;
  height: 8rem;
  background: url("../img/overview_bg01.svg") no-repeat center/cover;
  position: absolute;
  z-index: -2;
  top: -6.6rem;
  left: 0;
  right: 0;
}

@media screen and (min-width: 48em), print {
  .overview_bg {
    padding: 0 0 12rem;
  }
  .overview_bg::after {
    min-width: 2000px;
    max-width: 100vw;
    height: 28.5rem;
    background: url("../img/overview_bg01.svg") no-repeat top/cover;
    top: -28.6rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.overview {
  padding: 2rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #fff;
}
.overview::before {
  content: "";
  display: block;
  min-width: 120%;
  height: 4rem;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
  top: -1rem;
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview .tel_item {
  text-align: center;
}
.overview .tel_item .tel {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  color: var(--blue);
}
.overview .tel_item .tel::before {
  content: "\e809";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.overview > .wrap .overviewL .info_box {
  padding: 1rem;
  border-radius: 8px;
  background: var(--green13);
}
.overview > .wrap .overviewL .info_box .link_item li {
  margin: 0 0 1.4rem;
}
.overview > .wrap .overviewL .info_box .link_item li a {
  display: block;
  text-decoration: none !important;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  -webkit-box-shadow: 3px 3px 0 #fff;
          box-shadow: 3px 3px 0 #fff;
}
.overview > .wrap .overviewL .info_box .link_item li a .bg {
  overflow: hidden;
  padding: 0.8rem 0.8rem 0.8rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
}
.overview > .wrap .overviewL .info_box .link_item li a .bg::before {
  content: "";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 2.2rem;
}
.overview > .wrap .overviewL .info_box .link_item li a.rsv .bg {
  background: var(--pink03);
  position: relative;
}
.overview > .wrap .overviewL .info_box .link_item li a.rsv .bg::before {
  content: "\e80b";
}
.overview > .wrap .overviewL .info_box .link_item li a.rsv .bg .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6rem;
  height: 6rem;
  font-weight: 500;
  color: var(--pink03);
  background: var(--yellow03);
  border-radius: 50%;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.overview > .wrap .overviewL .info_box .link_item li a.waiting .bg {
  background: var(--green09);
}
.overview > .wrap .overviewL .info_box .link_item li a.waiting .bg::before {
  content: "\e80d";
}
.overview > .wrap .overviewL .info_box .time_txt p {
  margin: 0 0 0.8rem;
  padding: 0.2rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  background: var(--green06);
}
.overview > .wrap .overviewL .info_box .time_txt ul li {
  margin: 0 0 0.8rem;
  padding: 0.2rem 0.4rem;
  text-align: center;
  font-weight: 500;
  background: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview > .wrap .overviewL .info_box .time_txt ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview > .wrap .overviewL .info_box .time_txt ul li span::after {
  content: "\e804";
  font-family: "fontello";
  margin: 0 1.2rem 0 0.4rem;
  line-height: 1;
  font-size: 60%;
  position: relative;
  top: 0.2rem;
}
.overview > .wrap .overviewL .info_box .time_txt ul li span.clr_pink {
  color: var(--pink04);
}
.overview > .wrap .overviewL .info_box .time_txt ul li span.clr_green {
  color: var(--green12);
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
}
.overview > .wrap .overviewL .tbl_gaiyo th {
  width: 100%;
  display: block;
  text-align: left;
  padding: 0.4rem;
  vertical-align: top;
  font-weight: normal;
  color: #fff;
}
.overview > .wrap .overviewL .tbl_gaiyo th span {
  display: block;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  background: var(--blue02);
}
.overview > .wrap .overviewL .tbl_gaiyo td {
  display: block;
  padding: 0.4rem;
  font-weight: 500;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .tbl_gaiyo {
  margin: 2rem 0 0;
  width: 100%;
  border-collapse: collapse;
}
.overview > .wrap .overviewR .tbl_gaiyo th {
  width: 100%;
  display: block;
  text-align: left;
  padding: 0.4rem;
  vertical-align: top;
  font-weight: normal;
  color: #fff;
}
.overview > .wrap .overviewR .tbl_gaiyo th span {
  display: block;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  background: var(--red);
}
.overview > .wrap .overviewR .tbl_gaiyo td {
  display: block;
  padding: 0.4rem;
  font-weight: 500;
}
.overview .gmap {
  margin: 2rem auto 0;
  height: 30rem;
  border-radius: 20px;
  border: 1px solid var(--blue);
}
.overview .gmap iframe {
  border-radius: 20px;
  height: 100%;
}
.overview .btn_map a {
  background: var(--green09);
  color: #fff;
  -webkit-box-shadow: 3px 3px 0 var(--pink11);
          box-shadow: 3px 3px 0 var(--pink11);
}
.overview .btn_map a::before {
  content: "\e818";
  font-family: "fontello";
  margin-right: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 1rem 0 0;
    font-size: 1.4rem;
    background: none;
  }
  .overview::before {
    min-width: 2400px;
    max-width: 120vw;
    height: calc(100% + 7rem);
    top: -7rem;
    border-radius: 50% 50% 0 0;
  }
  .overview::after {
    content: "";
    position: absolute;
    z-index: -2;
    top: -1rem;
    height: 100rem;
    width: 100%;
    background: var(--green05);
  }
  .overview .clinic_name {
    text-align: center;
    margin: 0 0 2.7rem;
  }
  .overview .clinic_name img {
    max-width: 59rem;
  }
  .overview .tel_item .tel {
    font-size: 4.5rem;
  }
  .overview > .wrap {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .overview > .wrap > * {
    width: 52.6rem;
  }
  .overview > .wrap .overviewL .info_box {
    padding: 1.8rem 1.8rem 2rem;
  }
  .overview > .wrap .overviewL .info_box .link_item {
    margin: 0 0 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .overview > .wrap .overviewL .info_box .link_item li {
    margin: 0;
  }
  .overview > .wrap .overviewL .info_box .link_item li a {
    font-size: 1.8rem;
  }
  .overview > .wrap .overviewL .info_box .link_item li a .bg {
    padding: 0.8rem 0.8rem 0.8rem 1.3rem;
  }
  .overview > .wrap .overviewL .info_box .link_item li a .bg::before {
    margin-right: 0.4rem;
    font-size: 2.2rem;
  }
  .overview > .wrap .overviewL .info_box .link_item li a.rsv {
    width: 31rem;
  }
  .overview > .wrap .overviewL .info_box .link_item li a.rsv .bg .txt {
    font-size: 1.6rem;
    line-height: 1.2;
    width: 7rem;
    height: 7rem;
    right: 2rem;
  }
  .overview > .wrap .overviewL .info_box .link_item li a.waiting {
    width: 17rem;
  }
  .overview > .wrap .overviewL .info_box .time_txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .overview > .wrap .overviewL .info_box .time_txt p {
    width: 10.4rem;
    margin: 0 0.6rem 0 0;
  }
  .overview > .wrap .overviewL .info_box .time_txt ul {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .overview > .wrap .overviewL .info_box .time_txt ul li {
    margin: 0;
    padding: 0.2rem 0.4rem;
    height: 3.1rem;
  }
  .overview > .wrap .overviewL .info_box .time_txt ul li ~ li {
    margin: 1rem 0 0;
  }
  .overview > .wrap .overviewL .info_box .time_txt ul li span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .overview > .wrap .overviewL .info_box .time_txt ul li span::after {
    margin: 0 1.2rem 0 0.4rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th {
    width: 10.1rem;
    display: table-cell;
    padding: 0.4rem 0.4rem 0.8rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th span {
    display: block;
    text-align: center;
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td {
    display: table-cell;
    padding: 0.4rem 0.4rem 0.8rem 1.2rem;
  }
  .overview > .wrap .overviewL .tbl_time {
    margin: 2.4rem 0;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR .tbl_gaiyo th {
    width: 10.1rem;
    display: table-cell;
    padding: 0.4rem 0.4rem 0.8rem;
  }
  .overview > .wrap .overviewR .tbl_gaiyo th span {
    display: block;
    text-align: center;
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
  }
  .overview > .wrap .overviewR .tbl_gaiyo td {
    display: table-cell;
    padding: 0.4rem 0.4rem 0.8rem 1.2rem;
  }
  .overview .gmap {
    margin: 4.5rem auto 0;
    width: 1100px;
    height: 65.7rem;
    border-radius: 8px;
  }
  .overview .gmap iframe {
    border-radius: 8px;
    height: 100%;
  }
  .overview .btn_map {
    text-align: center;
    margin: 1.33rem 0 0;
  }
  .overview .btn_map a {
    font-size: 1.6rem;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 6rem;
  right: 1rem;
  z-index: 100;
  cursor: pointer;
}
#pageup a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5rem;
  height: 5rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.4rem;
  background: url("../img/i_pagetop.svg") no-repeat center/contain;
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    bottom: 17.3rem;
    right: 4rem;
  }
  #pageup a {
    width: 11.3rem;
    height: 11.3rem;
  }
}
.tel_rsv {
  width: 100%;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tel_rsv .tel {
  display: block;
  color: var(--blue);
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  width: 60%;
  font-size: 1.4rem;
  line-height: 1;
}
.tel_rsv .tel::before {
  content: "\e801";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.tel_rsv .rsv {
  width: 40%;
}
.tel_rsv .rsv a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 0.8rem 0.4rem;
  line-height: 1;
  background: var(--pink06);
}
.tel_rsv .rsv a::before {
  text-align: center;
  font-weight: normal;
  font-size: 2.4rem;
  font-family: "fontello";
  content: "\e80b";
}
.tel_rsv .rsv a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  .tel_rsv {
    display: none;
  }
  .tel_rsv .tel,
  .tel_rsv .rsv {
    display: none;
  }
}
.fixed_rsv {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_rsv {
    display: block;
    position: fixed;
    right: -100px;
    top: 14rem;
    z-index: 200;
    font-size: 2.7rem;
    font-weight: 500;
    opacity: 0;
  }
  .fixed_rsv a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.1rem 1.5rem 2.44rem 1.6rem;
    background: var(--pink06);
    color: #fff;
    border-radius: 30px 0 0 30px;
    -webkit-box-shadow: 3px 3px 0 var(--blue06);
            box-shadow: 3px 3px 0 var(--blue06);
  }
  .fixed_rsv a::before {
    content: "\e80b";
    font-family: "fontello";
    margin-bottom: 0.4rem;
  }
  .fixed_rsv a:hover {
    opacity: 1;
    -webkit-filter: contrast(1.1);
            filter: contrast(1.1);
  }
  .fixed_rsv.fixed {
    -webkit-animation: slideRight 1s forwards;
            animation: slideRight 1s forwards;
  }
  .fixed_rsv.fixedEnd {
    -webkit-animation: slideOut 1s forwards;
            animation: slideOut 1s forwards;
  }
}
@-webkit-keyframes slideRight {
  0% {
    right: -100px; /* 画面外に配置 */
    opacity: 0;
  }
  100% {
    right: 0; /* 画面内に移動 */
    opacity: 1;
  }
}
@keyframes slideRight {
  0% {
    right: -100px; /* 画面外に配置 */
    opacity: 0;
  }
  100% {
    right: 0; /* 画面内に移動 */
    opacity: 1;
  }
}
@-webkit-keyframes slideOut {
  0% {
    right: 0; /* 画面外に配置 */
    opacity: 1;
  }
  100% {
    right: -100px; /* 画面内に移動 */
    opacity: 0;
  }
}
@keyframes slideOut {
  0% {
    right: 0; /* 画面外に配置 */
    opacity: 1;
  }
  100% {
    right: -100px; /* 画面内に移動 */
    opacity: 0;
  }
}
.footer {
  text-align: center;
  padding: 1.2rem 0 4.2rem;
  background: var(--green09);
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  background: url("../img/footer_bg01.svg") repeat-x top/cover;
  width: 100%;
  height: 4.2rem;
  position: absolute;
  z-index: 4;
  top: -3.6rem;
}
.footer ul {
  display: none;
}
.footer .copy {
  display: block;
  background: var(--green08);
  color: #fff;
  padding: 1.4rem 1rem 2rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 3.9rem 0 0;
  }
  .footer::before {
    background: url("../img/footer_bg01.svg") repeat-x bottom/auto auto;
    height: 7.4rem;
    top: -6.2rem;
    z-index: 2;
  }
  .footer ul {
    display: block;
    text-align: center;
    margin: 1rem auto 2rem;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.4rem;
    margin: 0 1.7rem;
  }
  .footer ul li a {
    opacity: 1;
    color: #fff;
  }
  .footer ul li a::before {
    content: "■";
    color: #fff;
    font-size: 1rem;
    font-family: "fontello";
    margin-right: 0.2rem;
    display: inline-block;
    position: relative;
    bottom: 0.2rem;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  .footer ul li a span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer .copy {
    margin: 5.17rem 0 0;
    padding: 1.7rem 0;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
.kv_content {
  padding: 1rem;
  margin: 0 auto -4rem;
  position: relative;
  z-index: 1;
}
.kv_content > div:first-child {
  border-radius: 20px;
  -webkit-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
}
.kv_content #keyvsl {
  margin: 0 0 0;
  max-width: 100%;
  height: 20rem;
  background: url(../img/index_keyvsl01.jpg) no-repeat center center/cover;
  border-radius: 20px;
}
.kv_content .info_txt {
  position: absolute;
  right: -1rem;
  top: 11rem;
  background: url("../img/index_kvContent_parts04.svg") no-repeat center/contain;
  padding: 2rem;
}
.kv_content .info_txt > p,
.kv_content .info_txt > div {
  margin: 0 0 0.6rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
}
.kv_content .info_txt > p > span,
.kv_content .info_txt > div > span {
  text-align: center;
  display: inline-block;
  width: 100%;
}
.kv_content .info_txt > p > span .size_s,
.kv_content .info_txt > div > span .size_s {
  font-size: 80%;
}
.kv_content .kv_txt {
  text-align: center;
  position: absolute;
  bottom: -8rem;
  left: 0;
  right: 0;
  margin: auto;
}
.kv_content .kv_txt p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.4rem;
  position: relative;
}
.kv_content .kv_txt p::before, .kv_content .kv_txt p::after {
  content: "";
  display: block;
  width: 5rem;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.kv_content .kv_txt p::before {
  left: -2.6rem;
  background: url("../img/index_kvContent_parts02.svg") no-repeat center/contain;
}
.kv_content .kv_txt p::after {
  right: -2.6rem;
  background: url("../img/index_kvContent_parts03.svg") no-repeat center/contain;
}
.kv_content .kv_txt p span {
  display: inline-block;
}
.kv_content .kv_txt p span::after {
  content: "";
  display: block;
  margin: 0.6rem 0 0;
  width: 100%;
  height: 1.2rem;
  background: url("../img/index_kvContent_parts01.svg") no-repeat center/contain;
}

@media screen and (min-width: 48em), print {
  .kv_content {
    padding: 0;
    margin: 0 auto -4rem;
  }
  .kv_content > div:not(.kv_txt) {
    border-radius: 50px !important;
  }
  .kv_content #keyvsl {
    width: 1200px;
    height: 58rem;
    margin: 0 auto;
    background: url(../img/index_keyvsl01.jpg) no-repeat center center/auto auto;
  }
  .kv_content .info_txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none !important;
    width: 23.2rem;
    height: 22rem;
    left: calc(50% + 400px);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    right: auto;
    top: 27rem;
    line-height: 1.4;
    padding: 2rem 2rem 2rem;
    margin: 0 auto;
  }
  .kv_content .info_txt > p,
  .kv_content .info_txt > div {
    margin: 0;
    font-size: 2.8rem;
  }
  .kv_content .info_txt > p > span .size_s,
  .kv_content .info_txt > div > span .size_s {
    font-size: 2.2rem;
  }
  .kv_content .kv_txt {
    bottom: -17rem;
    left: 0;
    right: 0;
  }
  .kv_content .kv_txt p {
    font-size: 3rem;
  }
  .kv_content .kv_txt p::before, .kv_content .kv_txt p::after {
    width: 12.9rem;
    height: 18.4rem;
    top: 28%;
  }
  .kv_content .kv_txt p::before {
    left: -13.6rem;
  }
  .kv_content .kv_txt p::after {
    right: -13.6rem;
  }
  .kv_content .kv_txt p span::after {
    margin: 1.4rem 0 0;
    height: 2.1rem;
  }
}
/* トップ医院概要 -------------------------------------- */
.info_overview {
  padding: 1rem;
  background: var(--green05);
}
.info_overview .info_box {
  padding: 1rem;
  border-radius: 8px;
  background: var(--green13);
}
.info_overview .info_box .link_item li {
  margin: 0 0 1.4rem;
}
.info_overview .info_box .link_item li a {
  display: block;
  text-decoration: none !important;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  -webkit-box-shadow: 3px 3px 0 #fff;
          box-shadow: 3px 3px 0 #fff;
}
.info_overview .info_box .link_item li a .bg {
  overflow: hidden;
  padding: 0.8rem 0.8rem 0.8rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
}
.info_overview .info_box .link_item li a .bg::before {
  content: "";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 2.2rem;
}
.info_overview .info_box .link_item li a.rsv .bg {
  background: var(--pink03);
  position: relative;
}
.info_overview .info_box .link_item li a.rsv .bg::before {
  content: "\e80b";
}
.info_overview .info_box .link_item li a.rsv .bg .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6rem;
  height: 6rem;
  font-weight: 500;
  color: var(--pink03);
  background: var(--yellow03);
  border-radius: 50%;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.info_overview .info_box .link_item li a.waiting .bg {
  background: var(--green09);
}
.info_overview .info_box .link_item li a.waiting .bg::before {
  content: "\e80d";
}
.info_overview .info_box .time_txt p {
  margin: 0 0 0.8rem;
  padding: 0.2rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  background: var(--green06);
}
.info_overview .info_box .time_txt ul li {
  margin: 0 0 0.8rem;
  padding: 0.2rem 0.4rem;
  text-align: center;
  font-weight: 500;
  background: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info_overview .info_box .time_txt ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info_overview .info_box .time_txt ul li span::after {
  content: "\e804";
  font-family: "fontello";
  margin: 0 1.2rem 0 0.4rem;
  line-height: 1;
  font-size: 60%;
  position: relative;
  top: 0.2rem;
}
.info_overview .info_box .time_txt ul li span.clr_pink {
  color: var(--pink04);
}
.info_overview .info_box .time_txt ul li span.clr_green {
  color: var(--green12);
}
.info_overview .info_box .info_time > div {
  margin: 0 0 1.4rem;
  font-weight: 500;
}
.info_overview .info_box .info_time > div dt {
  min-width: 10rem;
  padding: 0.2rem 0.4rem;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  background: var(--green09);
}
.info_overview .info_box .info_time > div dd {
  display: block;
  width: 100%;
  margin: 0.6rem 0 0;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .info_overview {
    padding: 23.7rem 0 6rem;
  }
  .info_overview .info_box {
    width: 70.5rem;
    margin: 0 auto;
    padding: 4.8rem 4.8rem 4.1rem;
    position: relative;
  }
  .info_overview .info_box::before, .info_overview .info_box::after {
    content: "";
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
  }
  .info_overview .info_box::before {
    background-image: url("../img/index_infoOverview_bg01.svg");
    width: 15.4rem;
    height: 18rem;
    bottom: 0;
    left: -20rem;
  }
  .info_overview .info_box::after {
    background-image: url("../img/index_infoOverview_bg02.svg");
    width: 15.2rem;
    height: 17.9rem;
    bottom: 0;
    right: -20rem;
  }
  .info_overview .info_box .link_item {
    margin: 0 0 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .info_overview .info_box .link_item li {
    margin: 0;
  }
  .info_overview .info_box .link_item li a {
    font-size: 2.4rem;
  }
  .info_overview .info_box .link_item li a .bg {
    padding: 0.8rem 0.8rem 0.8rem 1.6rem;
  }
  .info_overview .info_box .link_item li a .bg::before {
    margin-right: 0.4rem;
    font-size: 3.4rem;
  }
  .info_overview .info_box .link_item li a.rsv {
    width: 39rem;
  }
  .info_overview .info_box .link_item li a.rsv .bg .txt {
    font-size: 1.8rem;
    line-height: 1;
    width: 8.7rem;
    height: 8.7rem;
    right: 0.6rem;
  }
  .info_overview .info_box .link_item li a.waiting {
    width: 21.5rem;
  }
  .info_overview .info_box .time_txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .info_overview .info_box .time_txt p {
    font-size: 2rem;
    width: 12.9rem;
    margin: 0 0.8rem 0 0;
  }
  .info_overview .info_box .time_txt ul {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .info_overview .info_box .time_txt ul li {
    margin: 0;
    padding: 0.2rem 0.4rem;
    height: 3.1rem;
    font-size: 2.2rem;
  }
  .info_overview .info_box .time_txt ul li ~ li {
    margin: 1rem 0 0;
  }
  .info_overview .info_box .time_txt ul li span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2rem;
  }
  .info_overview .info_box .time_txt ul li span::after {
    margin: 0 2.4rem 0 1rem;
  }
  .info_overview .info_box .info_time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 1.4rem 0 0;
  }
  .info_overview .info_box .info_time > div {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .info_overview .info_box .info_time > div dt {
    min-width: 8.8rem;
    font-size: 1.6rem;
    padding: 0.2rem 0.4rem;
    margin: 0 0.6rem 0 0;
  }
  .info_overview .info_box .info_time > div dd {
    font-size: 1.6rem;
    margin: 0.2rem 0 0;
    padding: 0;
  }
}
/* クリニックよりお知らせ -------------------------------------- */
.info {
  padding: 4rem 1.2rem 8rem;
  background: var(--green05);
}
.info .wrap {
  background: url("../img/a_bg_common01.png") repeat-y top center/100% auto;
  padding: 1.2rem;
}
.info .wrap section {
  background-color: var(--yellow05);
  background-image: url("../img/index_info_bg01.svg"), url("../img/index_info_bg02.svg");
  background-position: top 0.8rem left 0.8rem, top 0.8rem right 0.8rem;
  background-repeat: no-repeat;
  background-size: 2rem auto;
  padding: 1rem;
}
.info .wrap section .tit_02 {
  position: relative;
  z-index: 1;
  margin: 1rem 0 1.8rem;
  text-shadow: 0 0 2px var(--green14);
}
.info .wrap section .tit_02::before {
  content: "";
  display: block;
  width: 100%;
  height: 6rem;
  background: url("../img/index_info_tit02.svg") no-repeat center/contain;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.info .wrap section dl {
  margin: 0;
  line-height: 1.4;
  padding: 1.4rem;
  height: 25rem;
  overflow-y: scroll;
}
.info .wrap section dl::-webkit-scrollbar {
  background: var(--gray02);
  width: 1rem;
}
.info .wrap section dl::-webkit-scrollbar-thumb {
  background: var(--green09);
}
.info .wrap section dl dt {
  margin-bottom: 0;
  font-weight: bold;
  color: var(--green11);
  font-size: 1.6rem;
  line-height: 1.2;
  cursor: pointer;
  display: table;
}
.info .wrap section dl dt span {
  font-size: 1.4rem;
  font-weight: 500;
  color: #231815;
  margin: 0 0 0 0.8rem;
}
.info .wrap section dl dt::before {
  content: "\e80f";
  font-family: "fontello";
  color: var(--brown04);
  font-size: 1.8rem;
  margin-right: 0.2rem;
  font-weight: normal;
}
.info .wrap section dl dt.close::before {
  content: "\e80e";
}
.info .wrap section dl dt:hover {
  opacity: 0.8;
}
.info .wrap section dl dd {
  padding: 0;
  margin: 0.6rem 0 1rem;
}
.info .wrap section dl dd:nth-of-type(n + 4) {
  display: none;
}
.info .wrap section dl dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 0 0 20rem;
  }
  .info .wrap {
    padding: 3.5rem 3.8rem;
    background: url("../img/a_bg_common01.png") repeat top center/auto auto;
  }
  .info .wrap section {
    background-position: top 0.2rem left 0.8rem, top 0.2rem right 0.8rem;
    background-size: 2.3rem 3rem;
    padding: 2.4rem 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .info .wrap section .tit_02 {
    width: 21rem;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 5px var(--green14);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 0 4.5rem 0 0;
  }
  .info .wrap section .tit_02::before {
    height: 24.6rem;
    width: 20.8rem;
  }
  .info .wrap section dl {
    line-height: 1.4;
    padding: 1.4rem;
    height: 24rem;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .info .wrap section dl dt {
    font-size: 1.8rem;
    position: relative;
    padding-left: 3.6rem;
    margin: 0 0 1.2rem;
  }
  .info .wrap section dl dt span {
    font-size: 80%;
    margin: 0 0 0 1rem;
  }
  .info .wrap section dl dt::before {
    font-size: 3.2rem;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: -1rem;
  }
  .info .wrap section dl dd {
    padding: 0 0 0 3.6rem;
    margin: 0 0 1rem;
    font-size: 1.6rem;
  }
}
/* 診療のご案内 -------------------------------------- */
.treatment_guide {
  background: var(--pink10);
  padding: 2rem 0 6rem;
  position: relative;
}
.treatment_guide::before {
  content: "";
  display: block;
  margin: auto;
  width: 100%;
  height: 4rem;
  background: url("../img/index_treatmentGuide_bg01.svg") no-repeat center/contain;
  position: absolute;
  top: -3.6rem;
  left: 0;
  right: 0;
}
.treatment_guide .tit_02 {
  margin: -3rem 0 3rem;
}
.treatment_guide .tit_02 > span::before {
  background-image: url("../img/tit_02_parts02a.svg");
}
.treatment_guide .tit_02 > span::after {
  background-image: url("../img/tit_02_parts02b.svg");
}
.treatment_guide .tit_02 > span .eng_txt {
  color: var(--pink04);
}
.treatment_guide ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.treatment_guide ul li {
  margin: 0 0 2.6rem;
  width: 48%;
}
.treatment_guide ul li a {
  text-align: center;
  display: block;
  font-weight: 500;
  color: var(--brown05);
  text-decoration: none !important;
}
.treatment_guide ul li a::before {
  content: "";
  font-family: "fontello";
  font-size: 4.6rem;
  color: var(--yellow04);
  margin: 0 auto 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  background: url("../img/a_bg_common01.png") repeat-y center/auto auto;
  -webkit-box-shadow: 3px 3px 0 var(--pink08);
          box-shadow: 3px 3px 0 var(--pink08);
}
.treatment_guide ul li a.dermatology::before {
  content: "\e811";
}
.treatment_guide ul li a.kids::before {
  content: "\e812";
}
.treatment_guide ul li a.allergy::before {
  content: "\e813";
}
.treatment_guide ul li a.vaccination::before {
  content: "\e814";
}
.treatment_guide ul::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  background: url("../img/index_treatmentGuide_bg02.svg") repeat-x center/100% auto;
}

@media screen and (min-width: 48em), print {
  .treatment_guide {
    padding: 2rem 0 19.7rem;
  }
  .treatment_guide::before {
    height: 14.3rem;
    top: -13.2rem;
  }
  .treatment_guide .tit_02 {
    margin: -8rem 0 6.36rem;
  }
  .treatment_guide ul {
    padding: 0 6rem;
  }
  .treatment_guide ul::before {
    height: 35rem;
  }
  .treatment_guide ul li {
    width: 17rem;
    margin: 0;
  }
  .treatment_guide ul li a {
    font-size: 2.2rem;
  }
  .treatment_guide ul li a::before {
    width: 16.6rem;
    height: 16.6rem;
    margin: 0 0 1.2rem;
    font-size: 8.4rem;
  }
  .treatment_guide ul li a:hover {
    opacity: 1;
  }
  .treatment_guide ul li a:hover::before {
    -webkit-animation: zoom_in 0.3s ease forwards;
            animation: zoom_in 0.3s ease forwards;
  }
}
@-webkit-keyframes zoom_in {
  0% {
    font-size: 8.4rem;
  }
  100% {
    font-size: 9rem;
  }
}
@keyframes zoom_in {
  0% {
    font-size: 8.4rem;
  }
  100% {
    font-size: 9rem;
  }
}
/* 主な対象疾患 -------------------------------------- */
.target_disease {
  background: var(--green05);
  padding: 2rem 0 6rem;
  position: relative;
}
.target_disease::before {
  content: "";
  display: block;
  margin: auto;
  width: 100%;
  height: 4rem;
  background: url("../img/index_targetDisease_bg01.svg") no-repeat center/contain;
  position: absolute;
  top: -3.6rem;
  left: 0;
  right: 0;
}
.target_disease .tit_02 {
  margin: -3rem 0 3rem;
}
.target_disease .tit_02 > span::before {
  background-image: url("../img/tit_02_parts03a.svg");
}
.target_disease .tit_02 > span::after {
  background-image: url("../img/tit_02_parts03b.svg");
}
.target_disease .tit_02 > span .eng_txt {
  color: var(--green11);
}
.target_disease ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.target_disease ul::after {
  content: "";
  display: block;
  width: 100%;
  height: 13rem;
  background: url("../img/index_targetDisease_parts01.png") no-repeat bottom/contain;
}
.target_disease ul li {
  margin: 0 0 2rem;
  width: 48%;
}
.target_disease ul li a {
  text-decoration: none !important;
  display: block;
  border-radius: 30px;
  position: relative;
}
.target_disease ul li a::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #fff;
}
.target_disease ul li a span {
  padding: 1.2rem 0.4rem;
  color: var(--green12);
  background: var(--yellow);
  display: block;
  text-align: center;
  font-weight: 500;
  width: 100%;
  position: relative;
  border-radius: 30px;
}
.target_disease ul li a span::after {
  content: "▼";
  display: block;
  color: var(--yellow);
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.target_disease ul li a span::before {
  content: "▼";
  display: block;
  color: #fff;
  position: absolute;
  bottom: -20px;
  left: 51%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (min-width: 48em), print {
  .target_disease {
    padding: 2rem 0 36.7rem;
  }
  .target_disease::before {
    height: 14.3rem;
    top: -13.2rem;
  }
  .target_disease .tit_02 {
    margin: -8rem 0 6.36rem;
  }
  .target_disease ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.8rem 2rem;
    z-index: 1;
    position: relative;
  }
  .target_disease ul::after {
    height: 41.7rem;
    position: absolute;
    z-index: -1;
    bottom: -22rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .target_disease ul li {
    margin: 0;
    width: 20.2rem;
  }
  .target_disease ul li[class*=margin_item] {
    width: 49%;
  }
  .target_disease ul li[class*=margin_item] a {
    width: 20.2rem;
  }
  .target_disease ul li[class*=margin_item].margin_item01 {
    position: relative;
    left: 4rem;
  }
  .target_disease ul li[class*=margin_item].margin_item02 a {
    margin: 0 4rem 0 auto;
  }
  .target_disease ul li[class*=margin_item].margin_item04 a {
    margin: 0 0 0 auto;
  }
  .target_disease ul li a {
    font-size: 2.2rem;
  }
  .target_disease ul li a::before {
    bottom: -4px;
    right: -4px;
    background: #fff;
  }
  .target_disease ul li a span {
    padding: 1.2rem 0.4rem;
  }
  .target_disease ul li a span::after {
    bottom: -22px;
  }
  .target_disease ul li a span::before {
    bottom: -25px;
    left: 51%;
  }
  .target_disease ul li a:hover {
    opacity: 1;
    -webkit-animation: pop 0.6s ease forwards;
            animation: pop 0.6s ease forwards;
  }
  .target_disease .wrap {
    position: relative;
  }
  .target_disease .wrap::before, .target_disease .wrap::after {
    content: "";
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
  }
  .target_disease .wrap::before {
    background-image: url("../img/index_targetDisease_bg02.svg");
    width: 29rem;
    height: 66.5rem;
    top: 20rem;
    left: -29rem;
  }
  .target_disease .wrap::after {
    background-image: url("../img/index_targetDisease_bg03.svg");
    width: 37.3rem;
    height: 53.7rem;
    top: 29rem;
    right: -28rem;
  }
}
@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
}
@keyframes pop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
}
/* 当院の特長 -------------------------------------- */
.feature {
  background: var(--yellow04);
  padding: 2rem 0 6rem;
  position: relative;
}
.feature::before {
  content: "";
  display: block;
  margin: auto;
  width: 100%;
  height: 4rem;
  background: url("../img/index_feature_bg01.svg") no-repeat center/contain;
  position: absolute;
  top: -3.6rem;
  left: 0;
  right: 0;
}
.feature .tit_02 {
  margin: -3rem 0 3rem;
}
.feature .tit_02 > span::before {
  background-image: url("../img/tit_02_parts04a.svg");
}
.feature .tit_02 > span::after {
  background-image: url("../img/tit_02_parts04b.svg");
}
.feature .tit_02 > span .eng_txt {
  color: var(--brown04);
}
.feature ul {
  counter-reset: num_feature;
}
.feature ul li {
  margin: 0 0 2rem;
  counter-increment: num_feature 1;
}
.feature ul li figure {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  min-height: 20rem;
  font-weight: 500;
  -webkit-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.16);
}
.feature ul li figure figcaption {
  padding: 2rem 2rem 0.8rem;
  position: relative;
  z-index: 1;
}
.feature ul li figure figcaption::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: auto;
  width: 150%;
  height: calc(100% + 60px);
  border-radius: 50%;
  background-color: #fff;
}
.feature ul li figure figcaption::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: auto;
  width: 150%;
  height: calc(100% + 60px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}
.feature ul li figure figcaption p {
  margin: 0;
}
.feature ul li figure figcaption p.tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--brown05);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1.2rem;
}
.feature ul li figure figcaption p.tit::before {
  content: counter(num_feature);
  width: 3rem;
  height: 3rem;
  background: url("../img/index_feature_parts01.svg") no-repeat center/contain;
  margin-right: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feature ul li figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 2rem 0 19.7rem;
  }
  .feature::before {
    height: 14.3rem;
    top: -13.2rem;
  }
  .feature .tit_02 {
    margin: -8rem 0 6.36rem;
  }
  .feature ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 4.4rem;
  }
  .feature ul li {
    width: 48rem;
    margin: 0 0 6rem;
  }
  .feature ul li:nth-child(even) {
    position: relative;
    top: 6.7rem;
  }
  .feature ul li figure figcaption {
    padding: 2.93rem 4.4rem 0.8rem;
  }
  .feature ul li figure figcaption::before {
    top: -6rem;
    width: 85rem;
    height: 27.6rem;
  }
  .feature ul li figure figcaption::after {
    top: -5rem;
    width: 85rem;
    height: 27.6rem;
  }
  .feature ul li figure figcaption p {
    font-size: 1.6rem;
  }
  .feature ul li figure figcaption p.tit {
    font-size: 2.6rem;
    margin: 0 0 1.2rem;
  }
  .feature ul li figure figcaption p.tit::before {
    font-size: 5rem;
    width: 7.4rem;
    height: 8.3rem;
    margin-right: 1.3rem;
  }
  .feature .wrap {
    position: relative;
  }
  .feature .wrap::before, .feature .wrap::after {
    content: "";
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
  }
  .feature .wrap::before {
    background-image: url("../img/index_feature_bg02.svg");
    width: 28rem;
    height: 75.8rem;
    top: 26rem;
    left: -30rem;
  }
  .feature .wrap::after {
    background-image: url("../img/index_feature_bg03.svg");
    width: 28rem;
    height: 65.6rem;
    top: 43rem;
    right: -31rem;
  }
}
/* ごあいさつ -------------------------------------- */
.greeting {
  background: var(--blue03);
  padding: 2rem 0 6rem;
  position: relative;
}
.greeting::before {
  content: "";
  display: block;
  margin: auto;
  width: 100%;
  height: 4rem;
  background: url("../img/index_greeting_bg01.svg") no-repeat center/contain;
  position: absolute;
  top: -3.6rem;
  left: 0;
  right: 0;
}
.greeting .tit_02 {
  margin: -3rem 0 3rem;
}
.greeting .tit_02 > span::before {
  background-image: url("../img/tit_02_parts05a.svg");
}
.greeting .tit_02 > span::after {
  background-image: url("../img/tit_02_parts05b.svg");
}
.greeting .tit_02 > span .eng_txt {
  color: var(--blue05);
}
.greeting .content {
  font-weight: 500;
}
.greeting .content img {
  display: block;
  margin: 0 auto 2rem;
  max-width: 60%;
}
.greeting .content .btn_greeting span {
  font-size: 110%;
}
.greeting .content .btn_greeting a {
  margin: 0.8rem 0 0;
  background: var(--green04);
  -webkit-box-shadow: 2px 2px 0 var(--green10);
          box-shadow: 2px 2px 0 var(--green10);
}
.greeting .content .btn_greeting a::after {
  content: "\e816";
  font-family: "fontello";
  margin-right: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 2rem 0 32.7rem;
  }
  .greeting::before {
    height: 14.3rem;
    background: url("../img/index_greeting_bg01.svg") no-repeat center/contain;
    top: -13.2rem;
  }
  .greeting .tit_02 {
    margin: -8rem 0 6.36rem;
  }
  .greeting .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .greeting .content img {
    margin: 0;
    max-width: 24.5rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .greeting .content > div {
    margin: 0 4rem 0 0;
    width: 69.5rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .greeting .content > div p {
    margin: 0;
    line-height: 1.75;
  }
  .greeting .content > div .btn_greeting {
    margin: 3.2rem 0 0;
    text-align: right;
  }
  .greeting .content > div .btn_greeting span {
    font-size: 2rem;
  }
  .greeting .content > div .btn_greeting a {
    margin: 0 0 0 1.8rem;
  }
  .greeting .content > div .btn_greeting a::after {
    margin-right: 0.4rem;
  }
  .greeting .wrap {
    position: relative;
  }
  .greeting .wrap::before, .greeting .wrap::after {
    content: "";
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
  }
  .greeting .wrap::before {
    background-image: url("../img/index_greeting_bg02.svg");
    width: 23.2rem;
    height: 38.7rem;
    top: 9.8rem;
    left: -19rem;
  }
  .greeting .wrap::after {
    background-image: url("../img/index_greeting_bg03.svg");
    width: 50rem;
    height: 45.1rem;
    top: 6rem;
    right: -26rem;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    width: 1100px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    bottom: -16rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  body:not(.index) .breadcrumb_list li {
    font-size: 1.6rem;
    font-weight: 500;
    display: inline-block;
  }
  body:not(.index) .breadcrumb_list li:not(:last-child)::after {
    content: "＞";
    display: inline-block;
    margin: 0 1rem;
  }
  body:not(.index) .breadcrumb_list li a {
    color: var(--blue);
  }
  body:not(.index) .breadcrumb_list li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
body:not(.index) .main {
  padding: 2rem 1rem 10rem;
}
body:not(.index) .main > .wrap {
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    line-height: 1.75;
    padding: 14rem 0 36rem;
    position: relative;
    z-index: 2;
  }
  body:not(.index) .main::before {
    top: -14.6rem;
  }
  body:not(.index) .main > .wrap {
    padding: 3.4rem;
    position: relative;
  }
  body:not(.index) .main > .wrap::before, body:not(.index) .main > .wrap::after {
    content: "";
    display: block;
    width: 38rem;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
  }
  body:not(.index) .main > .wrap::before {
    left: -45.5rem;
    background-image: url("../img/low_bg01.svg"), url("../img/low_bg02.svg");
    background-position: center top 10rem, center top 163rem;
  }
  body:not(.index) .main > .wrap::after {
    right: -45.5rem;
    background-image: url("../img/low_bg02.svg"), url("../img/low_bg01.svg");
    background-position: center top 40rem, center top 183rem;
  }
}
body:not(.index) .overview_bg {
  z-index: 2;
}
body:not(.index) .overview_bg::after {
  background: url(../img/overview_low_bg01.svg) no-repeat center/cover;
}
body:not(.index) .overview_bg .overview {
  padding: 1rem 0 0;
  background: none;
}
body:not(.index) .overview_bg .overview::after {
  background: var(--blue07);
}

@media screen and (min-width: 48em), print {
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
/* ドクター紹介 */
.doctor .dr_name {
  margin: 0;
  display: block;
  text-align: right;
}
.doctor .dr_name span {
  font-size: 120%;
  margin-left: 1.4rem;
}
.doctor .flex2 {
  margin: 4rem 0 0;
}
.doctor .flex2 > div {
  margin: 4rem 0 0;
}
.doctor .flex2 > div > section ~ section {
  margin: 4rem 0 0;
}

@media screen and (min-width: 48em), print {
  .doctor .dr_name {
    padding: 0 4.6rem 0 0;
  }
  .doctor .flex2 {
    margin: 6rem 0 0;
  }
  .doctor .flex2 > section {
    width: 52%;
  }
  .doctor .flex2 > div {
    width: 46%;
    margin: 0;
  }
  .doctor .flex2 > div > section ~ section {
    margin: 6rem 0 0;
  }
}
/* クリニック紹介 */
#slider {
  margin: 0 auto 0.2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #slider {
    width: 75rem;
  }
}
#slider figure {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
#slider figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem 0.2rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(34, 34, 34, 0.8);
}
@media screen and (min-width: 48em), print {
  #slider figure figcaption {
    padding: 0.8rem 1rem;
    font-size: 1.8rem;
  }
}

#thumbnail_slider {
  margin: 0 auto 2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #thumbnail_slider {
    width: 75rem;
  }
}
#thumbnail_slider .slick-list .thumbnail-item img {
  cursor: -webkit-grab;
  cursor: grab;
}
#thumbnail_slider .slick-list .thumbnail-item img:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
#thumbnail_slider .slick-list .slick-current {
  position: relative;
}
#thumbnail_slider .slick-list .slick-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid #222;
}
#thumbnail_slider .slick-list .slick-current img {
  width: 100%;
  display: block;
}
#thumbnail_slider .slick-prev::before,
#thumbnail_slider .slick-next::before {
  color: #222;
}

#slider02 {
  margin: 0 auto 0.2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #slider02 {
    width: 75rem;
  }
}
#slider02 figure {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
#slider02 figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem 0.2rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(34, 34, 34, 0.8);
}
@media screen and (min-width: 48em), print {
  #slider02 figure figcaption {
    padding: 0.8rem 1rem;
    font-size: 1.8rem;
  }
}

#thumbnail_slider02 {
  margin: 0 auto 2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #thumbnail_slider02 {
    width: 75rem;
  }
}
#thumbnail_slider02 .slick-list .thumbnail-item img {
  cursor: -webkit-grab;
  cursor: grab;
}
#thumbnail_slider02 .slick-list .thumbnail-item img:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
#thumbnail_slider02 .slick-list .slick-current {
  position: relative;
}
#thumbnail_slider02 .slick-list .slick-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid #222;
}
#thumbnail_slider02 .slick-list .slick-current img {
  width: 100%;
  display: block;
}
#thumbnail_slider02 .slick-prev::before,
#thumbnail_slider02 .slick-next::before {
  color: #222;
}

.slide-item img {
  width: 100%;
  height: auto;
}

.thumbnail-item img {
  width: 98%;
  display: block;
  margin: 0 auto;
}

/* 初めての方へ */
.first .main .info_box {
  padding: 1rem;
  border-radius: 8px;
  background: var(--green13);
}
.first .main .info_box .link_item li {
  margin: 0 0 1.4rem;
}
.first .main .info_box .link_item li a {
  display: block;
  text-decoration: none !important;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  -webkit-box-shadow: 3px 3px 0 #fff;
          box-shadow: 3px 3px 0 #fff;
}
.first .main .info_box .link_item li a .bg {
  overflow: hidden;
  padding: 0.8rem 0.8rem 0.8rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
}
.first .main .info_box .link_item li a .bg::before {
  content: "";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 2.2rem;
}
.first .main .info_box .link_item li a.rsv .bg {
  background: var(--pink03);
  position: relative;
}
.first .main .info_box .link_item li a.rsv .bg::before {
  content: "\e80b";
}
.first .main .info_box .link_item li a.rsv .bg .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6rem;
  height: 6rem;
  font-weight: 500;
  color: var(--pink03);
  background: var(--yellow03);
  border-radius: 50%;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.first .main .info_box .link_item li a.waiting .bg {
  background: var(--green09);
}
.first .main .info_box .link_item li a.waiting .bg::before {
  content: "\e80d";
}
.first .main .info_box .time_txt p {
  margin: 0 0 0.8rem;
  padding: 0.2rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  background: var(--green06);
}
.first .main .info_box .time_txt ul li {
  margin: 0 0 0.8rem;
  padding: 0.2rem 0.4rem;
  text-align: center;
  font-weight: 500;
  background: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.first .main .info_box .time_txt ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.first .main .info_box .time_txt ul li span::after {
  content: "\e804";
  font-family: "fontello";
  margin: 0 1.2rem 0 0.4rem;
  line-height: 1;
  font-size: 60%;
  position: relative;
  top: 0.2rem;
}
.first .main .info_box .time_txt ul li span.clr_pink {
  color: var(--pink04);
}
.first .main .info_box .time_txt ul li span.clr_green {
  color: var(--green12);
}
.first .main .info_box .info_time > div {
  margin: 0 0 1.4rem;
  font-weight: 500;
}
.first .main .info_box .info_time > div dt {
  min-width: 10rem;
  padding: 0.2rem 0.4rem;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  background: var(--green09);
}
.first .main .info_box .info_time > div dd {
  display: block;
  width: 100%;
  margin: 0.6rem 0 0;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .first .main .info_box {
    width: 70.5rem;
    margin: 6rem auto 0;
    padding: 4.8rem 4.8rem 4.1rem;
    position: relative;
  }
  .first .main .info_box .link_item {
    margin: 0 0 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first .main .info_box .link_item li {
    margin: 0;
  }
  .first .main .info_box .link_item li a {
    font-size: 2.4rem;
  }
  .first .main .info_box .link_item li a .bg {
    padding: 0.8rem 0.8rem 0.8rem 1.6rem;
  }
  .first .main .info_box .link_item li a .bg::before {
    margin-right: 0.4rem;
    font-size: 3.4rem;
  }
  .first .main .info_box .link_item li a.rsv {
    width: 39rem;
  }
  .first .main .info_box .link_item li a.rsv .bg .txt {
    font-size: 1.8rem;
    line-height: 1;
    width: 8.7rem;
    height: 8.7rem;
    right: 0.6rem;
  }
  .first .main .info_box .link_item li a.waiting {
    width: 21.5rem;
  }
  .first .main .info_box .time_txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .first .main .info_box .time_txt p {
    font-size: 2rem;
    width: 12.9rem;
    margin: 0 0.8rem 0 0;
  }
  .first .main .info_box .time_txt ul {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .first .main .info_box .time_txt ul li {
    margin: 0;
    padding: 0.2rem 0.4rem;
    height: 3.1rem;
    font-size: 2.2rem;
  }
  .first .main .info_box .time_txt ul li ~ li {
    margin: 1rem 0 0;
  }
  .first .main .info_box .time_txt ul li span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2rem;
  }
  .first .main .info_box .time_txt ul li span::after {
    margin: 0 2.4rem 0 1rem;
  }
  .first .main .info_box .info_time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 1.4rem 0 0;
  }
  .first .main .info_box .info_time > div {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .first .main .info_box .info_time > div dt {
    min-width: 8.8rem;
    font-size: 1.6rem;
    padding: 0.2rem 0.4rem;
    margin: 0 0.6rem 0 0;
  }
  .first .main .info_box .info_time > div dd {
    font-size: 1.6rem;
    margin: 0.2rem 0 0;
    padding: 0;
  }
}
/* 診療時間・アクセス */
.access .gmap {
  height: 30rem;
  margin: 2rem 0;
}

@media screen and (min-width: 48em), print {
  .access .gmap {
    height: 50rem;
  }
}
/* よくある質問 */
.lst_QnA img {
  width: 90%;
  padding: 2rem 0 0 3rem;
}
.lst_QnA .pdn {
  padding-left: 3rem;
  margin-bottom: 0;
}
.lst_QnA .pl {
  padding-left: 2.5rem;
}
.lst_QnA .kome::before {
  content: "※";
  margin-right: 0.4rem;
  color: var(--brown06);
}
.lst_QnA .back_c {
  background: var(--yellow05);
  padding: 3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem 0 0 3rem;
}
.lst_QnA .back_c p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .lst_QnA img {
    width: 40%;
  }
  .lst_QnA .txt-in {
    text-indent: 0em;
    padding-left: 2em;
  }
  .lst_QnA .kome::before {
    padding-left: 1.5rem;
    margin-right: 0.4rem;
  }
  .lst_QnA .pl {
    padding-left: 2rem;
  }
}