@charset "UTF-8";
:root {
  --gray01: #ffffff;
  --gray02: #333333;
  --gray03: #000000;
  --gray04: #212121;
  --gray05: #3d3d3d;
  --gray06: #222222;
  --green01: #006f6b;
  --green02: #d4f1e0;
  --green03: #e8f5ee;
  --green04: #e0f1e7;
  --green05: #006e6a;
  --green06: #009944;
  --green07: #ddf5e7;
  --green08: #bcdfcb;
  --green09: #27928e;
  --green10: #c3d6c7;
  --green11: #d9edac;
  --green12: #d4f5e2;
  --green13: #9cd5b4;
  --brown01: #ecdbc5;
  --brown02: #f39a00;
  --brown03: #ef5656;
  --brown04: #fff8e9;
  --brown05: #ec6174;
  --brown06: #e68058;
  --blue01: #2c82ce;
  --blue02: #d8f4ff;
  --blue03: #9fd0e3;
}

@media print {
  body {
    zoom: 90%;
  }
}
/* ----------------------------------------------------------------------------------
リセット　_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;
}

.clr_red {
  color: var(--brown03);
}

.clr_green {
  color: var(--green06);
}

.clr_blue {
  color: var(--blue01);
}

.clr_orange {
  color: var(--brown02);
}

.size_l {
  font-size: 110%;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 10px;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 4rem 6rem 4rem;
    margin-bottom: 3rem;
    border-radius: 20px;
  }
}
*[class*=frame_].frame_01 {
  background: var(--green07);
}
*[class*=frame_].frame_02 {
  background: var(--brown04);
}
@media screen and (min-width: 48em), print {
  *[class*=frame_].inline {
    min-width: 50%;
    display: inline-block;
  }
}

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

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

@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 > section ~ section,
.flex2 > section ~ section {
  margin-top: 4rem;
}

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

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

.main > 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 > section ~ section,
  .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section,
  .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section,
  .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > 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: 1rem;
  table-layout: fixed;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption .ex {
  display: inline-block;
  padding: 0.4rem 0.4rem 0.2rem;
  margin-right: 0.4rem;
  border-radius: 5px;
  background: var(--brown05);
  color: var(--gray01);
  text-align: center;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 1rem 0;
  background: var(--green06);
  font-size: 1.2rem;
  color: var(--gray01);
  font-weight: normal;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-radius: 10px 0 0 0;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 10px 0 0;
  padding-right: 1rem;
}
.tbl_time tr th.time {
  background: var(--gray01);
  padding: 1rem 0;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--gray02);
}
.tbl_time tr td {
  text-align: center;
  padding: 0.8rem 0.4rem;
  background: var(--gray01);
  color: var(--green06);
  border-bottom: 1px solid var(--gray02);
  line-height: 1;
  font-size: 1.2rem;
}
.tbl_time tr td.close {
  color: var(--gray02);
}
.tbl_time tr td:last-child {
  padding-right: 1rem;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.8rem;
  }
  .tbl_time caption {
    margin-top: 1.2rem;
  }
  .tbl_time caption .ex {
    margin-right: 1.2rem;
    padding: 0.6rem 2rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 35%;
  }
  .tbl_time tr th[scope=col]:last-child {
    padding-right: 1.4rem;
  }
  .tbl_time tr th.time {
    padding: 1.2rem 0;
    font-size: 1.8rem;
  }
  .tbl_time tr td {
    padding: 1.2rem 0.4rem;
    font-size: 1.8rem;
  }
  .tbl_time tr td:last-child {
    padding-right: 1.4rem;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center top/cover;
  font-size: 2.2rem;
  padding: 3rem 1rem;
  margin: 0 0 3rem;
  min-height: 14rem;
  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_01 span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--gray01);
  font-size: 1.8rem;
  background: rgba(0, 153, 68, 0.8);
  padding: 1.2rem 0.8rem;
  border-radius: 5px 20px 5px 20px;
  position: relative;
}
.tit_01 span::before {
  content: "";
  display: block;
  width: 5rem;
  height: 4.6rem;
  background: url(../img/tit_01_parts01.svg) no-repeat center/contain;
  position: absolute;
  left: -2.4rem;
  top: -2rem;
}

.tit_02 {
  color: var(--gray02);
  font-family: "Kosugi", serif;
  font-weight: 400;
  text-align: center;
  font-size: 2rem;
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1.4;
}
.tit_02::before {
  content: "";
  background: url(../img/tit_02_parts01.svg) no-repeat center/contain;
  display: block;
  width: 100%;
  height: 2.4rem;
}
.tit_02 .eng_txt {
  display: block;
  color: var(--green06);
  text-align: center;
  font-size: 1.2rem;
  margin: 0.2rem 0 0;
}

.tit_03 {
  color: var(--gray01);
  background: var(--green06);
  border-radius: 20px 5px 20px 5px;
  font-family: "Kosugi", serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 0.6rem 1.2rem;
  margin: 0 0 1rem;
}

.tit_04 {
  color: var(--gray02);
  font-size: 1.8rem;
  font-family: "Kosugi", serif;
  font-weight: 400;
  line-height: 1.2;
  padding: 0 0 0.6rem;
  margin: 0 0 1rem;
}
.tit_04::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  margin: 0.4rem 0 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(2.4rem, #006f6b), color-stop(2.4rem, #bcdfcb));
  background: linear-gradient(to right, #006f6b 2.4rem, #bcdfcb 2.4rem);
}

.tit_05 {
  color: var(--gray02);
  background: var(--green07);
  font-family: "Kosugi", serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  border-radius: 40px;
  position: relative;
  padding: 0.4rem 1.6rem;
  margin: 1.4rem 0 2rem;
}
.tit_05::before {
  content: "\e80a";
  font-family: "fontello";
  font-size: 2.2rem;
  position: absolute;
  top: -1rem;
  left: -0.6rem;
  color: var(--green06);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center center/auto auto;
    padding: 1rem 1rem;
    margin: 0 0 3rem;
    height: 39rem;
  }
  .tit_01 span {
    font-size: 4.4rem;
    padding: 2.4rem 4.3rem;
  }
  .tit_01 span::before {
    width: 12rem;
    height: 9.5rem;
    left: -5rem;
    top: -3.8rem;
  }
  .tit_02 {
    font-size: 3.8rem;
    margin: 0 0 5rem;
  }
  .tit_02::before {
    height: 4.2rem;
  }
  .tit_02 .eng_txt {
    font-size: 1.8rem;
  }
  .tit_03 {
    font-size: 2.8rem;
    padding: 1.6rem 2rem;
    margin: 0 0 3rem;
  }
  .tit_04 {
    font-size: 2.6rem;
    margin: 0 0 2.6rem;
  }
  .tit_04::after {
    margin: 1.2rem 0 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(5.5rem, #006f6b), color-stop(5.5rem, #bcdfcb));
    background: linear-gradient(to right, #006f6b 5.5rem, #bcdfcb 5.5rem);
  }
  .tit_05 {
    font-size: 2rem;
    margin: 3rem 0 2.2rem;
    padding: 2rem 4rem;
  }
  .tit_05::before {
    font-size: 4rem;
    top: -1.6rem;
    left: 0;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 > li {
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
.lst_ul01 > li:last-child {
  padding-bottom: 0;
}
.lst_ul01 > li::before {
  content: "●";
  color: var(--green01);
  position: absolute;
  left: 0;
  top: 0;
}
.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%;
  }
}
@media screen and (min-width: 48em), print {
  .lst_ul01.inline {
    gap: 0 2rem;
    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 > .lst_ol01 {
  padding: 1rem 0 0 0;
}
.lst_ul01 > .lst_ol01 li::before {
  color: #212121;
}

.lst_ol01 {
  counter-reset: number;
  margin: 2rem 0 0;
}
.lst_ol01 li {
  counter-increment: number 1;
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
.lst_ol01 li:last-child {
  padding-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ol01 li {
    padding-left: 2rem;
  }
}
.lst_ol01 li::before {
  display: inline-block;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.lst_dl01 div {
  margin: 0 0 1rem;
}
.lst_dl01 div dt {
  font-weight: bold;
  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: 14rem;
  }
  .lst_dl01 div dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.lst_dl02 dt {
  background: var(--green09);
  color: var(--gray01);
  font-family: "Kosugi", serif;
  font-weight: 400;
  text-align: center;
  font-size: 110%;
  border-radius: 10px 10px 0 0;
  width: 100%;
  padding: 1rem 1.2rem;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 dt {
    border-radius: 20px 20px 0 0;
    padding: 1.4rem 1rem;
  }
}
.lst_dl02 dd {
  width: 100%;
  padding: 0.8rem 0.8rem;
  margin: 0 0 4rem;
  border: 1px solid var(--green10);
}
@media screen and (min-width: 48em), print {
  .lst_dl02 dd {
    padding: 2rem;
  }
}
.lst_dl02 dd:last-child {
  margin: 0;
}
.lst_dl02 dd .ex {
  padding: 0.8rem;
  border-radius: 10px;
  background: var(--green07);
}
@media screen and (min-width: 48em), print {
  .lst_dl02 dd .ex {
    border-radius: 20px;
    padding: 4rem 4rem;
  }
}

/* フレックス回り -------------------------------------- */
.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: var(--green01);
  color: var(--gray01);
  font-family: "Kosugi", serif;
  font-weight: 400;
  text-align: center;
  min-width: 80%;
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
  border-radius: 35px;
  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;
  text-decoration: none !important;
  position: relative;
}
*[class*=btn_] a::before {
  content: "\e818";
  font-family: "fontello";
  margin-right: 0.8rem;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
  *[class*=btn_] a {
    padding: 1.2rem 2rem;
    font-size: 2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: auto;
  }
}
*[class*=btn_][class*="--green"] a {
  background: var(--green02);
  color: var(--green01);
}
*[class*=btn_][class*="--orange"] a {
  background: var(--brown02);
  color: var(--gray01);
}
*[class*=btn_][class*="--line"] a {
  background: none;
  color: var(--green01);
  border: 2px solid var(--green01);
}
*[class*=btn_][class*="--line"] a::before {
  content: none;
}
*[class*=btn_].btn_tel a {
  font-family: "Roboto Condensed", serif;
  font-weight: 700;
}
*[class*=btn_].btn_tel a::before {
  content: "\e801";
  margin-right: 0.4rem;
}
*[class*=btn_].btn_rsv a::before {
  content: "\e803";
  margin-right: 0.4rem;
}
*[class*=btn_].btn_line 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;
  gap: 0 1.6rem;
  padding: 1.2rem 1rem;
}
*[class*=btn_].btn_line a img {
  margin: 0;
}
*[class*=btn_].btn_line a:hover {
  opacity: 1;
}
*[class*=btn_].btn_map a {
  color: var(--green01);
  border: 2px solid var(--green01);
  background: none;
}
*[class*=btn_].btn_map a::before {
  content: "\e809";
  margin-right: 0.4rem;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_].btn_map a {
    min-height: 6.4rem;
    font-size: 2rem;
  }
}
*[class*=btn_].btn_root a {
  color: var(--green01);
  border: 2px solid var(--green01);
  background: none;
}
*[class*=btn_].btn_root a::before {
  content: "\e81c";
  margin-right: 0.4rem;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_].btn_root a {
    min-height: 6.4rem;
    font-size: 2rem;
  }
}

.txt_link {
  color: var(--gray06);
  text-decoration: none !important;
  border-bottom: 1px solid var(--gray06);
}
.txt_link:hover {
  opacity: 0.8;
  border-bottom: none;
}

/* フローチャート -------------------------------------- */
.flow {
  counter-reset: flow;
}
.flow div {
  counter-increment: flow 1;
  padding: 1.6rem;
  margin: 0 0 6rem;
  border-radius: 7px;
  background: var(--green07);
  position: relative;
}
.flow div:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow div {
    border-radius: 20px;
    margin: 0 0 7rem;
    padding: 3.6rem 3.6rem 3.6rem 3.2rem;
  }
}
.flow div:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--green01);
  border-right: 2rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 2rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow div:not(:last-child)::after {
    border-top: 3rem solid var(--green01);
    border-right: 3rem solid transparent;
    border-left: 3rem solid transparent;
    bottom: -6rem;
  }
}
.flow div dt {
  font-family: "Kosugi", serif;
  font-weight: 400;
  margin: 0 0 1rem;
  padding-left: 3.8rem;
  font-size: 1.8rem;
  color: var(--gray02);
  position: relative;
}
.flow div dt::before {
  content: counter(flow, decimal-leading-zero);
  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: 3rem;
  height: 3rem;
  color: var(--gray01);
  background-color: var(--green01);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .flow div dt {
    font-size: 3rem;
    padding-left: 9.2rem;
  }
  .flow div dt::before {
    width: 7rem;
    height: 7rem;
    font-size: 3.6rem;
    top: -1rem;
  }
}
.flow div dd {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow div dd {
    padding: 0 0 0 9.2rem;
  }
}
.flow--notitle > li {
  padding: 1.6rem;
  margin: 0 0 6rem;
  border-radius: 7px;
  background: var(--green07);
  position: relative;
}
.flow--notitle > li:last-child {
  margin: 0;
}
.flow--notitle > li:last-child::after {
  content: none;
}
@media screen and (min-width: 48em), print {
  .flow--notitle > li {
    border-radius: 20px;
    margin: 0 0 7rem;
    padding: 3.6rem 3.6rem 3.6rem 3.2rem;
  }
}
.flow--notitle > li::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--green01);
  border-right: 2rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 2rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow--notitle > li::after {
    border-top: 3rem solid var(--green01);
    border-right: 3rem solid transparent;
    border-left: 3rem solid transparent;
    bottom: -6rem;
  }
}
.flow--notitle--number {
  counter-reset: flow;
}
.flow--notitle--number li {
  counter-increment: flow 1;
  padding-left: 5.2rem;
  position: relative;
}
.flow--notitle--number li::before {
  content: counter(flow, decimal-leading-zero);
  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: 3rem;
  height: 3rem;
  color: var(--gray01);
  background-color: var(--green01);
  border-radius: 50%;
  position: absolute;
  top: 1.4rem;
  left: 1rem;
}
@media screen and (min-width: 48em), print {
  .flow--notitle--number li {
    padding-left: 10rem;
  }
  .flow--notitle--number li::before {
    width: 7rem;
    height: 7rem;
    font-size: 3.6rem;
    top: 1.6rem;
  }
}

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  font-family: "Kosugi", serif;
  font-weight: 400;
  caption-side: bottom;
}
.tbl_low caption {
  text-align: left;
  font-size: 90%;
}
.tbl_low thead tr th {
  background: var(--green09);
  text-align: center;
  padding: 0.8rem 1rem;
  border-right: 1px solid var(--gray01);
  color: #fff;
}
.tbl_low thead tr th:first-child {
  width: 30%;
  border-radius: 20px 0 0 0;
}
.tbl_low thead tr th:last-child {
  border-radius: 0 20px 0 0;
  border-right: none;
}
@media screen and (min-width: 48em), print {
  .tbl_low thead tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr th {
  width: 30%;
  padding: 0.8rem;
  background: var(--green07);
  text-align: center;
  font-weight: normal;
  border: 1px solid var(--green10);
}
.tbl_low tbody tr th:first-child {
  border-left: none;
}
.tbl_low tbody tr th:last-child {
  border-right: none;
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr td {
  padding: 0.8rem 1rem;
  border: 1px solid var(--green10);
}
.tbl_low tbody tr td:first-child {
  border-left: none;
}
.tbl_low tbody tr td:last-child {
  border-right: none;
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr td {
    padding: 2rem 2rem;
  }
}
.tbl_low--no_head tbody tr th {
  background: var(--brown04);
}
.tbl_low--price thead tr td,
.tbl_low--price tbody tr td {
  font-size: 90%;
  text-align: right;
}
@media screen and (min-width: 48em), print {
  .tbl_low--price thead tr td,
  .tbl_low--price tbody tr td {
    font-size: 100%;
  }
}

.tbl_access {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.2rem;
  width: 100%;
}
.tbl_access tr th {
  width: 37%;
  background: var(--green11);
  text-align: center;
  font-weight: normal;
  padding: 0.8rem;
}
.tbl_access tr td {
  padding: 0.8rem;
}

@media screen and (min-width: 48em), print {
  .tbl_access tr th {
    width: 30%;
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
.nolink {
  pointer-events: none !important;
}

html {
  font-size: 3.125vw;
  font-family: "Kosugi", serif;
  font-weight: 400;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  background: var(--gray01);
  color: #212121;
}

.overflow {
  overflow-x: hidden;
}

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

.wrap {
  padding: 0 1rem 0;
}

.main {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 0 0;
}
.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: 1220px;
  }
  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: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .main {
    font-size: 1.6rem;
    padding: 0 0 0;
    width: 100%;
  }
}
/* アイコンフォント -------------------------------------- */
@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: 2.2rem 0 1rem;
}
.header .wrap .logo {
  padding: 0 1rem;
  height: 3rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.png) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headR {
  margin: 2rem 0 0;
  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;
  gap: 0 1rem;
}
.header .wrap .headR .access_item {
  text-align: center;
  color: var(--green01);
}
.header .wrap .headR .access_item .maker {
  color: var(--gray02);
  font-size: 1.2rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(255, 255, 255, 0)), color-stop(60%, #ecdbc5));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #ecdbc5 60%);
}
.header .wrap .headR .access_item .maker .txt_clr {
  font-size: 1.4rem;
  color: var(--green01);
}
.header .wrap .headR .tel_item {
  font-family: "Roboto Condensed", serif;
  font-weight: 700;
  color: var(--green01);
  background: var(--green02);
  padding: 0.8rem 1.2rem;
  border-radius: 60px;
}
.header .wrap .headR .tel_item .tel {
  font-size: 1.4rem;
}
.header .wrap .headR .tel_item .tel::before {
  content: "\e801";
  font-family: "fontello";
  margin-right: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 0 auto;
    padding: 3.1rem 1rem 0;
    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;
  }
  .header .wrap .logo {
    padding: 0 1rem;
    width: 47.5rem;
    height: 6.4rem;
  }
  .header .wrap .headR {
    margin: 0;
    gap: 0 2.3rem;
  }
  .header .wrap .headR .access_item {
    font-size: 1.8rem;
    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;
  }
  .header .wrap .headR .access_item::before {
    content: "\e800";
    font-family: "fontello";
    margin-right: 0.4rem;
    font-size: 2.6rem;
    width: 4.6rem;
    height: 4.6rem;
    color: var(--gray01);
    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;
    background: var(--green01);
    border-radius: 10px;
  }
  .header .wrap .headR .access_item .maker {
    font-size: 2rem;
    padding: 0 0 0.2rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(255, 255, 255, 0)), color-stop(60%, #ecdbc5), color-stop(120%, #ecdbc5));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #ecdbc5 60%, #ecdbc5 120%);
  }
  .header .wrap .headR .access_item .maker .txt_clr {
    font-size: 2.6rem;
  }
  .header .wrap .headR .tel_item {
    padding: 1.8rem 2.6rem;
    border-radius: 60px;
  }
  .header .wrap .headR .tel_item .tel {
    font-size: 2.8rem;
  }
}
/* SP ドロップダウンメニュー -------------------------------------- */
#menu {
  z-index: 9999;
  width: 100%;
  height: 0;
  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(--green02);
  color: var(--green01);
  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: block;
  visibility: hidden;
  opacity: 0;
}
#menu #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 4rem 0 12rem;
  background-color: white;
  overflow-y: scroll;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  right: -27rem;
  left: auto !important;
  z-index: 203;
}
#menu #nav.sp_nav.open {
  visibility: visible;
  opacity: 1;
  right: 0;
}
#menu #nav.sp_nav ul {
  display: block;
  font-size: 1.2rem;
}
#menu #nav.sp_nav ul li {
  text-align: left;
  margin: 0;
  border-bottom: 1px dotted var(--gray02);
}
#menu #nav.sp_nav ul li a {
  display: block;
  padding: 1.2rem 1.2rem 1.2rem;
  color: #212121;
  text-decoration: none !important;
}
#menu #nav.sp_nav ul li a.sub {
  position: relative;
}
#menu #nav.sp_nav ul li a.sub::after {
  content: "\e815";
  color: var(--green01);
  font-family: "fontello";
  display: inline-block;
  position: absolute;
  right: 2rem;
  top: 1.2rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
#menu #nav.sp_nav ul li a.sub.close::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#menu #nav.sp_nav ul li a.sub + .subnav {
  display: none;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul {
  background: var(--green03);
  margin: 0.8rem 0 0;
  padding: 1rem 1rem 1rem;
  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 ul li {
  width: 50%;
  border-bottom: none;
  text-align: left;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a::before {
  content: "\e818";
  font-family: "fontello";
  margin-right: 0.4rem;
  color: var(--green01);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a:hover {
  color: var(--gray01);
  background: var(--green01);
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a:hover::before {
  color: var(--gray01);
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a .br {
  display: block;
}
#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;
}

@media screen and (min-width: 48em), print {
  .fixed_menu_btn {
    display: none;
  }
  #menu {
    display: block;
    height: 100%;
    /* Gナビ　ハイライト */
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: var(--gray01);
    position: relative;
    z-index: 202;
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  }
  #menu #nav .gnav {
    width: 1200px;
    margin: auto;
    padding: 2rem 0 1.9rem;
    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: 20%;
    position: relative;
  }
  #menu #nav .gnav > li::after, #menu #nav .gnav > li:first-child::before {
    content: "";
    display: block;
    border-right: 1px dotted var(--gray02);
    position: absolute;
    width: 1px;
    height: 100%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #menu #nav .gnav > li:first-child::before {
    left: 0;
    right: auto;
  }
  #menu #nav .gnav > li a {
    display: block;
    text-align: center;
    font-size: 2rem;
  }
  #menu #nav .gnav > li a.sub::after {
    content: "\e815";
    color: var(--green01);
    display: inline-block;
    font-family: "fontello";
    margin-left: 0.2rem;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  #menu #nav .gnav > li a.sub.close::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  #menu #nav .gnav > li .subnav {
    width: 41.7rem;
    padding: 2.3rem 2.2rem;
    display: none;
    position: absolute;
    top: 4.3rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-radius: 10px;
    background: var(--green03);
  }
  #menu #nav .gnav > li .subnav ul {
    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;
    gap: 0.8rem 0.6rem;
  }
  #menu #nav .gnav > li .subnav ul li {
    width: 18.5rem;
  }
  #menu #nav .gnav > li .subnav ul li a {
    display: block;
    width: 100%;
    padding: 1rem 0 1rem 1.2rem;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    border-radius: 60px;
  }
  #menu #nav .gnav > li .subnav ul li a::before {
    content: "\e818";
    font-family: "fontello";
    margin-right: 0.4rem;
    color: var(--green01);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  #menu #nav .gnav > li .subnav ul li a:hover {
    color: var(--gray01);
    background: var(--green01);
  }
  #menu #nav .gnav > li .subnav ul li a:hover::before {
    color: var(--gray01);
  }
  #menu #nav .gnav > li .subnav ul li a .br {
    display: block;
    margin-left: 0.6rem;
  }
}
/* PCサイドメニュー -------------------------------------- */
.fixed_menu {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_menu {
    position: fixed;
    top: 18rem;
    right: 0;
    z-index: 202;
    font-size: 1.4rem;
    width: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.1rem 0;
  }
  .fixed_menu .rsv a {
    padding: 1rem 0;
    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;
    width: 100%;
    background: var(--brown02);
    color: var(--gray01);
    font-size: 2rem;
    border: 3px solid var(--gray01);
    border-right: none;
    border-radius: 10px 0 0 10px;
  }
  .fixed_menu .rsv a::before {
    content: "\e803";
    font-family: "fontello";
    margin-bottom: 0.4rem;
    font-size: 3rem;
  }
  .fixed_menu .rsv a:hover {
    opacity: 1;
    -webkit-filter: contrast(1.1);
            filter: contrast(1.1);
  }
  .fixed_menu 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%;
    text-align: center;
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 1rem 2rem;
  font-size: 1.2rem;
  background: var(--green04);
  line-height: 1.6;
}
.overview .bg {
  padding: 1.6rem 1rem 1rem;
  border-radius: 5px 20px 5px 20px;
  background: var(--gray01);
}
.overview .bg .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .bg .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview .bg .clinic_info {
  margin: 0 1rem 1rem;
}
.overview .bg .clinic_info .overview_link {
  position: relative;
}
.overview .bg .clinic_info .overview_link .tel_rsv {
  margin: 0 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.4rem 0;
}
.overview .bg .clinic_info .overview_link .tel_rsv li {
  text-align: center;
  width: 100%;
}
.overview .bg .clinic_info .overview_link .tel_rsv li a {
  min-height: 4.6rem;
  width: 100%;
}
.overview .bg > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
}
.overview .bg > .wrap .overviewL .tbl_gaiyo th {
  display: block;
  background: var(--green02);
  border-radius: 5px;
  color: var(--green01);
  font-weight: 400;
  width: 100%;
  text-align: center;
  padding: 0.4rem 0.6rem;
}
.overview .bg > .wrap .overviewL .tbl_gaiyo td {
  display: block;
  padding: 0.8rem 0.8rem;
  margin: 0 0 0.8rem;
}
.overview .bg > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview .bg > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview .bg > .wrap .overviewR .gmap {
  border-radius: 10px;
  overflow: hidden;
  height: 30rem;
}
.overview .bg > .wrap .overviewR .gmap iframe {
  height: 100%;
}
.overview .bg > .wrap .overviewR .btn_map {
  text-align: center;
}
.overview .bg > .wrap .overviewR .btn_root {
  text-align: center;
}
@media screen and (min-width: 48em), print {
  .overview {
    padding: 8rem 0 8.2rem;
    font-size: 1.8rem;
  }
  .overview .bg {
    padding: 4.7rem 5.1rem 5.3rem 4.5rem;
    border-radius: 10px 50px 10px 50px;
    margin: 0 auto;
    width: 1200px;
  }
  .overview .bg .clinic_name {
    margin: 0 0 1.9rem;
  }
  .overview .bg .clinic_name img {
    max-width: 49.5rem;
    height: 6.4rem;
  }
  .overview .bg .clinic_info p {
    margin: 0;
    text-align: center;
  }
  .overview .bg .clinic_info .overview_link .tel_rsv {
    margin: 2.3rem 0 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 2rem;
  }
  .overview .bg .clinic_info .overview_link .tel_rsv li a {
    min-height: 7rem;
    font-size: 2rem;
  }
  .overview .bg .clinic_info .overview_link .tel_rsv li.btn_tel {
    width: 27.4rem;
  }
  .overview .bg .clinic_info .overview_link .tel_rsv li.btn_tel a {
    pointer-events: none !important;
    font-size: 2.8rem;
  }
  .overview .bg .clinic_info .overview_link .tel_rsv li.btn_rsv {
    width: 17.8rem;
  }
  .overview .bg .clinic_info .overview_link .tel_rsv li.btn_rsv a::before {
    font-size: 2.8rem;
  }
  .overview .bg .clinic_info .overview_link .tel_rsv li.btn_line {
    width: 25.9rem;
  }
  .overview .bg > .wrap {
    width: 100%;
    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 .bg > .wrap .overviewL {
    width: 59rem;
  }
  .overview .bg > .wrap .overviewL .tbl_gaiyo {
    border-collapse: separate;
    border-spacing: 0 1rem;
  }
  .overview .bg > .wrap .overviewL .tbl_gaiyo th {
    display: table-cell;
    width: 13rem;
    padding: 0.8rem 0.6rem;
  }
  .overview .bg > .wrap .overviewL .tbl_gaiyo td {
    display: table-cell;
    padding: 0.2rem 1rem 0.2rem 1.8rem;
    margin: 0;
    word-break: auto-phrase;
  }
  .overview .bg > .wrap .overviewL .tbl_time {
    margin: 1rem 0 0;
  }
  .overview .bg > .wrap .overviewR {
    width: 46rem;
    margin: 0;
  }
  .overview .bg > .wrap .overviewR .gmap {
    border-radius: 20px;
    height: 50rem;
  }
  .overview .bg > .wrap .overviewR .btn_map {
    margin: 2.6rem 0 0;
  }
  .overview .bg > .wrap .overviewR .btn_map a {
    min-height: 5rem;
  }
  .overview .bg > .wrap .overviewR .btn_root {
    margin: 2.6rem 0 0;
  }
  .overview .bg > .wrap .overviewR .btn_root a {
    min-height: 5rem;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 6rem;
  right: 1rem;
  z-index: 201;
  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;
  text-align: center;
  padding: 0.4rem;
  background: var(--green05);
  border-radius: 50%;
  border: 3px solid var(--gray01);
}
#pageup a::before {
  text-align: center;
  font-size: 1.6rem;
  font-family: "fontello";
  content: "\e81b";
  color: var(--gray01);
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    bottom: 2rem;
    right: 2rem;
  }
  #pageup a {
    width: 6rem;
    height: 6rem;
    border: 4px solid var(--gray01);
  }
  #pageup a::before {
    font-size: 2rem;
  }
}
.footer_menu {
  width: 100%;
  min-height: 5rem;
  background: var(--gray01);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_menu .rsv {
  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%;
  background: var(--brown02);
  color: var(--gray01);
}
.footer_menu .rsv::before {
  content: "\e803";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 1.6rem;
}

@media screen and (min-width: 48em), print {
  .footer_menu {
    display: none;
  }
}
.footer {
  text-align: center;
  padding: 0 0 5rem;
}
.footer .breadcrumb_list {
  display: none;
}
.footer .footer_nav {
  display: none;
}
.footer .copy {
  display: block;
  background: var(--green05);
  color: var(--gray01);
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 0;
  }
  .footer .footer_nav {
    margin: 4.4rem 0 4.8rem;
    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;
    gap: 1rem 0;
  }
  .footer .footer_nav ul {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  .footer .footer_nav ul li {
    display: inline-block;
    font-size: 1.6rem;
  }
  .footer .footer_nav ul li:not(:last-child)::after {
    content: "|";
    margin: 0 0.6rem;
  }
  .footer .footer_nav ul li a {
    opacity: 1;
  }
  .footer .footer_nav ul li a:hover {
    text-decoration: underline;
  }
  .footer .footer_nav ul li.treatment {
    display: none;
  }
  .footer .copy {
    font-size: 1.6rem;
    padding: 2rem 0;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
.keyvsl_area {
  position: relative;
  width: 100%;
  margin: 0 0 0;
}
.keyvsl_area #keyvsl {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.keyvsl_area #keyvsl .slide {
  position: relative;
  width: 100%;
  text-align: center;
}
.keyvsl_area #keyvsl img {
  width: 100%;
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.keyvsl_area .kv_contents {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.keyvsl_area .kv_contents .kv_txt {
  position: absolute;
  width: 100%;
  right: 1rem;
  bottom: 2rem;
  text-align: right;
  pointer-events: auto;
}
.keyvsl_area .kv_contents .kv_txt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem 0;
}
.keyvsl_area .kv_contents .kv_txt ul li {
  display: inline-block;
  color: var(--gray01);
  font-size: 1.4rem;
  background: rgba(0, 153, 68, 0.8);
  padding: 1.2rem 0.8rem;
  border-radius: 5px 20px 5px 20px;
}
.keyvsl_area .kv_contents .kv_txt ul li.line_01 {
  position: absolute;
  top: -12rem;
  left: 3rem;
}
.keyvsl_area .kv_contents .kv_txt ul li.line_01 span {
  position: relative;
  display: block;
}
.keyvsl_area .kv_contents .kv_txt ul li.line_01 span::before {
  content: "";
  display: block;
  width: 5rem;
  height: 4.6rem;
  background: url(../img/index_keyvsl_parts01.svg) no-repeat center/contain;
  position: absolute;
  left: -3rem;
  top: -3.4rem;
}

@media screen and (min-width: 48em), print {
  .keyvsl_area {
    min-width: 1200px;
    margin: 0;
  }
  .keyvsl_area #keyvsl img {
    height: 77.5rem;
  }
  .keyvsl_area .kv_contents .kv_txt {
    width: 1200px;
    bottom: 6.3rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .keyvsl_area .kv_contents .kv_txt ul {
    gap: 1.8rem 0;
    right: 7.4rem;
  }
  .keyvsl_area .kv_contents .kv_txt ul li {
    font-size: 4.4rem;
    padding: 2.6rem 3rem;
    border-radius: 5px 30px 5px 30px;
  }
  .keyvsl_area .kv_contents .kv_txt ul li.line_01 {
    position: relative;
    top: auto;
    left: auto;
  }
  .keyvsl_area .kv_contents .kv_txt ul li.line_01 span::before {
    width: 12rem;
    height: 9.5rem;
    left: -7.8rem;
    top: -6.4rem;
  }
}
/* 診療時間表 -------------------------------------- */
.top_timetable {
  padding: 2rem 1rem 2rem;
}

@media screen and (min-width: 48em), print {
  .top_timetable {
    padding: 6rem 1rem 6rem;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 4rem 1rem 4rem;
}
.info .wrap .tit_02 {
  position: relative;
}
.info .wrap .tit_02::after {
  content: "";
  width: 6rem;
  height: 6rem;
  background: var(--green07);
  border-radius: 50%;
  position: absolute;
  margin: auto;
  left: -6rem;
  right: 0;
  top: -2rem;
  z-index: -1;
}
.info .wrap dl {
  margin: 0;
  line-height: 1.4;
  padding: 0;
  height: 100%;
}
.info .wrap dl .info_line {
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 2px dotted var(--gray02);
}
.info .wrap dl .info_line dt {
  margin-bottom: 0;
  color: var(--gray02);
  cursor: pointer;
  display: table;
}
.info .wrap dl .info_line dt .date {
  display: block;
  color: var(--green06);
  text-align: left;
}
.info .wrap dl .info_line dt .tit {
  font-size: 120%;
  position: relative;
  padding-left: 2rem;
}
.info .wrap dl .info_line dt .tit::before {
  content: "\e81a";
  color: var(--green06);
  font-family: "fontello";
  display: inline-block;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  position: absolute;
  top: -0.1rem;
  left: 0;
  font-size: 1.4rem;
}
.info .wrap dl .info_line dt .tit:hover {
  opacity: 0.8;
}
.info .wrap dl .info_line dt.close .tit::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.info .wrap dl .info_line dd {
  padding: 1rem 0 1rem;
  margin: 0;
  display: none;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}
.info .wrap dl .info_line dd p {
  margin: 0;
}
.info .wrap dl .info_line dd a {
  margin: 1rem 0 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 4.9rem 1rem 5.6rem;
  }
  .info .wrap {
    min-height: 32rem;
    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;
  }
  .info .wrap .tit_02 {
    min-width: 29rem;
    margin: 12rem 0 0;
  }
  .info .wrap .tit_02::after {
    width: 12.2rem;
    height: 12.2rem;
    left: -14rem;
    top: -3rem;
  }
  .info .wrap dl {
    width: 100%;
  }
  .info .wrap dl .info_line {
    padding: 0 0 2.2rem;
    margin: 0 0 2.2rem;
  }
  .info .wrap dl .info_line dt .date {
    font-size: 1.6rem;
    margin: 0 0 0.2rem;
  }
  .info .wrap dl .info_line dt .tit {
    font-size: 2.2rem;
    padding-left: 2.6rem;
  }
  .info .wrap dl .info_line dt .tit::before {
    top: -0.2rem;
    font-size: 1.8rem;
  }
  .info .wrap dl .info_line dt.close .tit::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .info .wrap dl .info_line dd {
    padding: 1rem 0 1rem;
    margin: 0;
    line-height: 2;
    display: none;
    font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  }
  .info .wrap dl .info_line dd p {
    margin: 0;
  }
  .info .wrap dl .info_line dd a {
    margin: 1rem 0 0;
  }
}
/* バナー　当院では胃カメラ検査（経鼻内視鏡）を行っております。 -------------------------------------- */
.bnr_area01 {
  padding: 0 1rem 4rem;
}
.bnr_area01 .bnr_01 {
  padding: 1rem;
  border: 2px dotted var(--green01);
  border-radius: 20px 5px 20px 5px;
}
.bnr_area01 .bnr_01 > div {
  padding: 1rem;
  background: var(--green07);
  border-radius: 16px 3px 16px 3px;
}
.bnr_area01 .bnr_01 .tit {
  color: var(--green01);
  margin: 1rem 0 1rem;
}
.bnr_area01 .bnr_01 .tit .size_l {
  color: var(--brown06);
  font-size: 120%;
}
.bnr_area01 .bnr_01 .tit .size_s {
  color: var(--brown06);
  font-size: 80%;
}
.bnr_area01 .bnr_01 img {
  max-width: 60%;
  display: block;
  margin: 0 auto;
}
.bnr_area01 .bnr_01 .txt {
  padding: 0 1rem;
}

@media screen and (min-width: 48em), print {
  .bnr_area01 {
    padding: 0 1rem 8rem;
  }
  .bnr_area01 .bnr_01 {
    padding: 1.3rem;
    border: 3px dotted var(--green01);
    border-radius: 40px 10px 40px 10px;
  }
  .bnr_area01 .bnr_01 > div {
    position: relative;
    min-height: 46.8rem;
    padding: 6rem 4.2rem 2.3rem 54.2rem;
    border-radius: 40px 10px 40px 10px;
  }
  .bnr_area01 .bnr_01 .tit {
    margin: 0;
    font-size: 3.2rem;
  }
  .bnr_area01 .bnr_01 .tit .size_l {
    font-size: 3.6rem;
  }
  .bnr_area01 .bnr_01 .tit .size_s {
    font-size: 2.8rem;
  }
  .bnr_area01 .bnr_01 img {
    position: absolute;
    left: 6.5rem;
    top: 5rem;
    max-width: 100%;
    margin: 0 auto;
  }
  .bnr_area01 .bnr_01 .txt {
    padding: 0;
    margin: 3.4rem 0 3.4rem;
    font-size: 1.8rem;
    line-height: 2;
    word-break: auto-phrase;
  }
  .bnr_area01 .bnr_01 .btn_link {
    text-align: center;
  }
  .bnr_area01 .bnr_01 .btn_link a {
    min-height: 7.4rem;
  }
}
/* 特長 -------------------------------------- */
.feature {
  background: var(--brown04);
  padding: 2rem 1rem 2rem;
}
.feature ul {
  counter-reset: num_feature;
}
.feature ul li {
  counter-increment: num_feature 1;
  margin: 0;
  z-index: 1;
}
.feature ul li figure {
  padding: 0;
  margin: 0;
}
.feature ul li figure .img {
  display: block;
  position: relative;
  left: -1rem;
}
.feature ul li figure .img img {
  border-radius: 20px 5px 20px 5px;
  width: 100%;
  height: auto;
  display: block;
}
.feature ul li figure figcaption {
  padding: 2rem 2rem 2rem;
  background: var(--gray01);
  border-radius: 20px 5px 20px 5px;
  position: relative;
  top: -4rem;
  right: -1rem;
}
.feature ul li figure figcaption::before {
  content: "";
  display: block;
  width: 6rem;
  height: 6rem;
  position: absolute;
  right: -0.2rem;
  bottom: -3rem;
  background: url(../img/index_feature_partsTree.png) no-repeat center/contain;
}
.feature ul li figure figcaption .tit {
  font-size: 1.6rem;
  margin: 0 0 1rem;
  text-align: center;
  color: var(--green06);
}
.feature ul li figure figcaption .tit::before {
  content: counter(num_feature, decimal-leading-zero);
  display: block;
  text-align: center;
  font-family: "Roboto Condensed", serif;
  font-weight: 700;
  font-size: 3.6rem;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  margin: auto;
}
.feature ul li figure figcaption .txt {
  margin: 0;
  font-size: 1.4rem;
}
.feature ul li:nth-child(even) figure .img {
  left: auto;
  right: -1rem;
}
.feature ul li:nth-child(even) figure figcaption {
  right: auto;
  left: -1rem;
}
.feature ul li:nth-child(even) figure figcaption::before {
  background: url(../img/index_feature_partsBird.png) no-repeat center/contain;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 5.2rem 1rem 1.6rem;
  }
  .feature ul {
    margin: 10.7rem auto 0;
  }
  .feature ul li {
    margin: 0 0 9rem;
    min-height: 43rem;
  }
  .feature ul li figure {
    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;
    position: relative;
  }
  .feature ul li figure .img {
    position: absolute;
    left: -8rem;
    width: 70rem;
    height: 43rem;
  }
  .feature ul li figure .img img {
    width: 100%;
    height: auto;
    border-radius: 50px 10px 50px 10px;
  }
  .feature ul li figure figcaption {
    width: 62rem;
    min-height: 40rem;
    right: 0;
    top: auto;
    border-radius: 50px 10px 50px 10px;
    padding: 8.5rem 0 0;
  }
  .feature ul li figure figcaption::before {
    width: 12.4rem;
    height: 10.6rem;
    right: 2.4rem;
    bottom: -5rem;
  }
  .feature ul li figure figcaption .tit {
    font-size: 3.4rem;
    padding: 0;
    margin: 0 0 3rem;
  }
  .feature ul li figure figcaption .tit::before {
    font-size: 10rem;
    top: -8rem;
  }
  .feature ul li figure figcaption .txt {
    font-size: 1.8rem;
    padding: 0 4.7rem 0 4.7rem;
    line-height: 2;
  }
  .feature ul li:nth-child(even) figure {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .feature ul li:nth-child(even) figure .img {
    left: auto;
    right: -8rem;
  }
  .feature ul li:nth-child(even) figure figcaption {
    left: 0;
    right: auto;
  }
  .feature ul li:nth-child(even) figure figcaption::before {
    width: 11rem;
    height: 7.8rem;
    right: auto;
    left: 2rem;
    bottom: -5rem;
  }
}
/* 診療内容 -------------------------------------- */
.treatment_menu {
  padding: 2rem 1rem 2rem;
}
.treatment_menu ul {
  margin: 2rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 2rem;
}
.treatment_menu ul li {
  width: 42%;
}
.treatment_menu ul li a {
  padding: 10rem 0 0;
  display: block;
  text-align: center;
  text-decoration: none !important;
  position: relative;
}
.treatment_menu ul li a::before {
  content: "\e818";
  font-family: "fontello";
  color: var(--green01);
  margin-right: 0.4rem;
}
.treatment_menu ul li a::after {
  content: "";
  font-family: "fontello";
  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: var(--gray01);
  font-size: 6rem;
  width: 100%;
  height: 9rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--green06);
  border-radius: 20px 5px 20px 5px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.treatment_menu ul li a.internal::after {
  content: "\e80b";
}
.treatment_menu ul li a.anal_surgery::after {
  content: "\e80c";
}
.treatment_menu ul li a.gastro::after {
  content: "\e80d";
}
.treatment_menu ul li a.lifestyle_related::after {
  content: "\e80e";
}
.treatment_menu ul li a.endoscopy::after {
  content: "\e80f";
}
.treatment_menu ul li a.endoscopy .br {
  display: block;
}
.treatment_menu ul li a.vaccination::after {
  content: "\e811";
}
.treatment_menu ul li a.checkup::after {
  content: "\e812";
}
.treatment_menu ul li a.surgery::after {
  content: "\e813";
}
.treatment_menu ul li a.private::after {
  content: "\e814";
}
.treatment_menu ul li a:hover {
  opacity: 1;
  color: var(--green01);
}
.treatment_menu ul li a:hover::after {
  opacity: 0.8;
  color: var(--gray01);
}
.treatment_menu ul li:nth-child(even) a::after {
  background: var(--green01);
}

@media screen and (min-width: 48em), print {
  .treatment_menu {
    padding: 5rem 1rem 8.6rem;
  }
  .treatment_menu ul {
    margin: 6rem 0 0;
    gap: 7.9rem 7.3rem;
  }
  .treatment_menu ul li {
    width: 17rem;
  }
  .treatment_menu ul li a {
    padding: 18.7rem 0 0;
    font-size: 2.4rem;
  }
  .treatment_menu ul li a::before {
    margin-right: 0.4rem;
  }
  .treatment_menu ul li a::after {
    font-size: 10rem;
    height: 17rem;
    border-radius: 40px 10px 40px 10px;
  }
}
/* ごあいさつ -------------------------------------- */
.greeting {
  background: var(--green04);
  padding: 4rem 1rem 4rem;
}
.greeting .img {
  width: 80%;
  margin: 0 auto 3rem;
  border-radius: 20px 5px 20px 5px;
  position: relative;
}
.greeting .img::before {
  content: "";
  background: url(../img/index_greeting_parts01.svg) no-repeat center/contain;
  display: block;
  width: 6rem;
  height: 6rem;
  position: absolute;
  right: 0;
  bottom: -2rem;
}
.greeting .img img {
  display: block;
  border-radius: 20px 5px 20px 5px;
}
.greeting .contents {
  line-height: 1.8;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 5rem 1rem 9rem;
  }
  .greeting .flex {
    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;
  }
  .greeting .flex .img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 30rem;
    margin: 0;
    border-radius: 50px 10px 50px 10px;
  }
  .greeting .flex .img::before {
    width: 9.5rem;
    height: 9.2rem;
    bottom: -3rem;
  }
  .greeting .flex .img img {
    display: block;
    border-radius: 50px 10px 50px 10px;
  }
  .greeting .flex .contents {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 83.6rem;
    letter-spacing: 0.2rem;
    line-height: 2.4;
  }
  .greeting .flex .contents p:first-child {
    margin: 0 0 1rem;
  }
  .greeting .flex .contents .name {
    margin: 3rem 0 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;
    gap: 0 4.6rem;
  }
  .greeting .flex .contents .name .dr_name {
    margin: 0;
    font-size: 2.2rem;
  }
  .greeting .flex .contents .name .dr_name span {
    font-size: 3.2rem;
    letter-spacing: 0;
  }
}
/* ドクターズファイル・caloo -------------------------------------- */
.bnr_area02 {
  padding: 4rem 0 2rem;
  text-align: center;
}
.bnr_area02 a {
  display: block;
  width: 80%;
  margin: 0 auto 1rem;
}

@media screen and (min-width: 48em), print {
  .bnr_area02 {
    padding: 9rem 0 3rem;
  }
  .bnr_area02 .wrap {
    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;
    gap: 0 2rem;
  }
  .bnr_area02 .wrap a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
}
/* こういった症状・疾患の方はご連絡ください -------------------------------------- */
.symptoms {
  padding: 4rem 1rem 4rem;
}
.symptoms .wrap .tit_02 {
  margin: 0 auto 1.6rem;
  text-align: center;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6rem;
}
.symptoms .wrap .tit_02::before, .symptoms .wrap .tit_02::after {
  content: "";
  display: inline-block;
  height: 3rem;
  width: 4rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.symptoms .wrap .tit_02::before {
  background-image: url(../img/index_symptoms_tit_parts01.svg);
}
.symptoms .wrap .tit_02::after {
  background-image: url(../img/index_symptoms_tit_parts02.svg);
}
.symptoms .wrap section {
  position: relative;
  padding: 4rem 2rem 6rem 6rem;
  border-radius: 20px 7px 20px 7px;
  border: 2px dotted var(--gray06);
}
.symptoms .wrap section ~ section {
  margin: 4rem 0 0;
}
.symptoms .wrap section::before, .symptoms .wrap section::after {
  content: "";
  display: block;
  width: 6rem;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}
.symptoms .wrap section::before {
  top: 0;
  right: 0;
}
.symptoms .wrap section::after {
  bottom: 0;
  left: 0;
}
.symptoms .wrap section .tit_03 {
  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;
  background: var(--gray06);
  font-size: 1.6rem;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  -webkit-box-shadow: 0 0 0 0.3rem var(--gray01);
          box-shadow: 0 0 0 0.3rem var(--gray01);
  position: absolute;
  top: -3rem;
  left: 1rem;
}
.symptoms .wrap section.item_green {
  border: 2px dotted var(--green06);
}
.symptoms .wrap section.item_green::before {
  background-image: url(../img/index_symptoms_frameparts_green01.svg);
}
.symptoms .wrap section.item_green::after {
  background-image: url(../img/index_symptoms_frameparts_green02.svg);
}
.symptoms .wrap section.item_green .tit_03 {
  margin: 0;
  background: var(--green12);
  color: var(--green06);
}
.symptoms .wrap section.item_green .lst_ul01 li::before {
  color: var(--green13);
}
.symptoms .wrap section.item_blue {
  border: 2px dotted var(--blue01);
}
.symptoms .wrap section.item_blue::before {
  background-image: url(../img/index_symptoms_frameparts_blue01.svg);
}
.symptoms .wrap section.item_blue::after {
  background-image: url(../img/index_symptoms_frameparts_blue02.svg);
}
.symptoms .wrap section.item_blue .tit_03 {
  background: var(--blue02);
  color: var(--blue01);
}
.symptoms .wrap section.item_blue .lst_ul01 li::before {
  color: var(--blue03);
}

@media screen and (min-width: 48em), print {
  .symptoms {
    padding: 7.4rem 1rem 9rem;
  }
  .symptoms .wrap .tit_02 {
    margin: 0 auto 7.3rem;
    font-size: 3.8rem;
    gap: 0 3.2rem;
  }
  .symptoms .wrap .tit_02::before, .symptoms .wrap .tit_02::after {
    height: 7.7rem;
    width: 18.8rem;
  }
  .symptoms .wrap .tit_02 .size_l {
    font-size: 4.4rem;
  }
  .symptoms .wrap section {
    padding: 6.4rem 2rem 3.1rem 32.4rem;
    border-radius: 50px 10px 50px 10px;
  }
  .symptoms .wrap section ~ section {
    margin: 11.7rem 0 0;
  }
  .symptoms .wrap section::before, .symptoms .wrap section::after {
    width: 18rem;
    height: 19rem;
  }
  .symptoms .wrap section .tit_03 {
    font-size: 4.4rem;
    margin: 0;
    width: 19rem;
    height: 19rem;
    -webkit-box-shadow: 0 0 0 0.4rem var(--gray01);
            box-shadow: 0 0 0 0.4rem var(--gray01);
    top: -7rem;
    left: 6.2rem;
  }
  .symptoms .wrap section .lst_ul01 {
    width: 66.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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .symptoms .wrap section .lst_ul01 li {
    width: 50%;
    font-size: 2rem;
    padding-left: 2.6rem;
  }
  .symptoms .wrap section .lst_ul01 li::before {
    font-size: 1.4rem;
    top: 0.6rem;
  }
  .symptoms .wrap section.item_green {
    border: 4px dotted var(--green06);
  }
  .symptoms .wrap section.item_blue {
    border: 4px dotted var(--blue01);
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .header .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header .breadcrumb_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
body:not(.index) .footer .breadcrumb_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .footer .breadcrumb_list {
    display: none;
  }
}
body:not(.index) .breadcrumb_list {
  margin: 0 auto;
  padding: 1rem 1.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;
}
body:not(.index) .breadcrumb_list li {
  font-size: 1rem;
  display: inline-block;
}
body:not(.index) .breadcrumb_list li:not(:last-child)::after {
  content: "\e818";
  color: var(--green01);
  font-family: "fontello";
  margin-right: 0.4rem;
  display: inline-block;
  margin: 0 1rem;
  position: relative;
  top: 0.1rem;
}
body:not(.index) .breadcrumb_list li a:hover {
  opacity: 1;
  text-decoration: underline;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    margin: 0 auto;
    padding: 2rem 0 2rem;
    width: 1200px;
  }
  body:not(.index) .breadcrumb_list li {
    font-size: 1.6rem;
  }
}
body:not(.index) .main {
  margin: 0 1rem 6rem;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    font-size: 1.8rem;
    line-height: 1.8;
    margin: 3rem 0 10rem;
  }
}

@media screen and (min-width: 48em), print {
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
/* ドクター紹介 */
.dr_name {
  margin: 2rem 0 0;
  text-align: right;
}
.dr_name span {
  font-size: 130%;
}

/* クリニック紹介 */
*[id*=slider] {
  margin: 0 auto 0.2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  *[id*=slider] {
    width: 75rem;
  }
}
*[id*=slider] figure {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
*[id*=slider] figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem 0.6rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  font-size: 1.4rem;
  color: var(--gray01);
  font-family: "Kosugi", serif;
  font-weight: 400;
  background: rgba(61, 61, 61, 0.6);
}
@media screen and (min-width: 48em), print {
  *[id*=slider] figure figcaption {
    padding: 2rem 3rem;
    font-size: 1.8rem;
  }
}
*[id*=slider] figure figcaption p {
  text-align: center;
  font-size: 120%;
  margin: 0;
}

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

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

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

.img_gallery li {
  margin: 0 0 2rem;
  text-align: center;
}
.img_gallery li figure {
  margin: 0;
  padding: 0;
}
.img_gallery li figure img {
  display: block;
  margin: 0 auto 0.6rem;
  max-width: 80%;
  height: auto;
}
.img_gallery li figure figcaption {
  padding: 0;
  text-align: left;
}
.img_gallery li figure figcaption p {
  margin: 0.4rem 0;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .img_gallery {
    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;
  }
  .img_gallery li {
    width: 48%;
    margin: 0 0 3.2rem;
  }
  .img_gallery li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
/* 初めての方へ */
/* 診療時間・アクセス */
.access .gmap {
  height: 30rem;
  margin: 2rem 0;
}

@media screen and (min-width: 48em), print {
  .access .gmap {
    height: 50rem;
  }
}