@charset "UTF-8";
.nolink {
  pointer-events: none !important;
}

:root {
  --gray01: #ffffff;
  --gray02: #333333;
  --gray03: #222222;
  --gray04: #f7f7f7;
  --gray05: #eeeeee;
  --gray06: #555555;
  --gray07: #f3f3f3;
  --gray08: #929292;
  --gray09: #888888;
  --gray10: #707070;
  --gray11: #dddddd;
  --gray12: #c3c3c3;
  --brown01: #ff9900;
  --brown02: #ffbf2a;
  --brown03: #ee7f00;
  --brown04: #e88b86;
  --brown05: #ffeeee;
  --brown06: #f3ce47;
  --brown07: #fbf7ea;
  --brown08: #cfa612;
  --brown09: #fff6e8;
  --brown10: #b29245;
  --brown11: #fff1de;
  --brown12: #513401;
  --brown13: #fac400;
  --brown14: #f5c72d;
  --brown15: #a9a6a5;
  --brown16: #ffeed8;
  --brown17: #fff56b;
  --brown18: #fffaee;
  --brown19: #cf625c;
  --blue01: #007cbd;
  --blue02: #4ca7d6;
  --blue03: #e9f8ff;
  --blue04: #62b0d9;
  --blue05: #ecf9ff;
  --blue06: #1b5b7d;
  --blue07: #7ac6ee;
  --blue08: #237faf;
  --green01: #bdd277;
  --green02: #f8fce9;
  --green03: #809b28;
  --green04: #98b730;
  --green05: #d9edac;
}

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

*, *::before, *::after {
  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: red;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1.6rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 4rem 4rem 4rem;
    margin-bottom: 3rem;
  }
}
*[class*=frame_].frame_01 {
  background: var(--brown09);
}
*[class*=frame_].frame_02 {
  background: var(--gray07);
}
*[class*=frame_] > .lst_ul01 + p {
  margin: 1rem 0 0;
}

/* 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 > 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: 4rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time tr th {
  font-weight: 500;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: var(--brown01);
  font-size: 1.2rem;
  color: var(--gray01);
  font-weight: 500;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th[scope=col] .column {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  min-height: 4rem;
}
.tbl_time tr th.time {
  background: var(--gray01);
  border-bottom: 1px solid var(--brown01);
}
.tbl_time tr th.time span {
  display: block;
  font-size: 1rem;
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: var(--gray01);
  border-bottom: 1px solid var(--brown01);
  line-height: 1;
}
.tbl_time tr td.star {
  color: var(--brown01);
}
.tbl_time tr:last-child th,
.tbl_time tr:last-child td {
  border-bottom: 2px solid var(--brown01);
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.6rem;
  }
  .tbl_time caption {
    padding: 1.2rem 1.1rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0;
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr th[scope=col] .column {
    -ms-writing-mode: tb-r;
    writing-mode: horizontal-tb;
    min-height: auto;
  }
  .tbl_time tr th.time {
    padding: 1rem 0;
  }
  .tbl_time tr th.time span {
    font-size: 1.2rem;
  }
  .tbl_time tr td {
    padding: 1.3rem 0;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center bottom/cover;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--blue06);
  padding: 3rem 1rem;
  margin: 0 0 3rem;
  min-height: 10rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.tit_02 {
  color: var(--gray02);
  font-size: 2rem;
  font-weight: 500;
  width: 100%;
  min-height: 4rem;
  background: url(../img/tit_02_parts01.svg) no-repeat center/4rem auto;
  position: relative;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 1rem;
  text-align: center;
  margin: 0 auto 3.8rem;
  padding: 0;
  line-height: 1.2;
}
.tit_02::before, .tit_02::after {
  content: "";
  aspect-ratio: 7/1; /* SVGの横70px : 縦10pxの比率 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='10' viewBox='0 0 70 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23007cbd'/%3E%3Ccircle cx='25' cy='5' r='5' fill='%2398b730'/%3E%3Ccircle cx='45' cy='5' r='5' fill='%23fac400'/%3E%3Ccircle cx='65' cy='5' r='5' fill='%23cf221b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 0.7rem;
  height: 0.6rem;
}
.tit_02 .eng_txt {
  position: absolute;
  bottom: -1rem;
  font-size: 1.4rem;
  color: var(--gray08);
}

.tit_03 {
  color: var(--gray01);
  background: var(--blue04);
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 0.2rem 0.4rem 0.2rem 3rem;
  margin: 0 0 1rem;
  font-weight: 500;
  position: relative;
}
.tit_03::before {
  content: "";
  display: block;
  aspect-ratio: 51.505/60.346;
  width: 3rem;
  height: 4rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='51.505' height='60.346' viewBox='0 0 51.505 60.346'><path d='M124.975,65.157c-12.58,2.849-21,3.876-22.979,22.882-1.584-5.879,1.719-14.312,2.287-20.041.813-10.616-8.452-16.647-17.211-18.842,1.168,6.343-2.278,13.173.719,19.313,12.673,15.779,12.337,9.159,11.275,31.823-3.291-11.537-9.176-24.025-23.294-23.1,1.608,8.833,7.875,15.421,16.171,18.529,2.68,1.108,4.919,4.1,5.825,6.6A30.959,30.959,0,0,0,79.8,109.5q20.345-.059,40.706-.022a31.775,31.775,0,0,0-19.428-7.152c3.414-16.031,23.208-3.883,24.77-35.162.024-.934.945-1.436,1.431-2.137-.77.022-1.535.071-2.3.127' transform='translate(-75.771 -49.156)' fill='%23237faf'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -0.4rem;
  top: -0.6rem;
}

.tit_04 {
  color: var(--brown12);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1.8rem;
  padding-left: 4rem;
  position: relative;
}
.tit_04::before {
  content: "";
  display: block;
  aspect-ratio: 57.178/45.743;
  font-weight: 500;
  width: 3rem;
  height: auto;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1Ny4xNzgiIGhlaWdodD0iNDUuNzQzIiB2aWV3Qm94PSIwIDAgNTcuMTc4IDQ1Ljc0MyI+CiAgPGcgaWQ9Ikg0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTY1IC01MjYpIj4KICAgIDxjaXJjbGUgaWQ9IuOBq+OBvuOBpuOBvuOBp+OBquOBiSIgZGF0YS1uYW1lPSLjgarjgYbjgabjgYbjgYnjgYoiIGN4PSIxMS40MzYiIGN5PSIxMS40MzYiIHI9IjExLjQzNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTgxLjA5NSA1MjYpIiBmaWxsPSIjY2YyMjFiIiBvcGFjaXR5PSIwLjUiLz4KICAgIDxjaXJjbGUgaWQ9IuOBq+OBvuOBpuOBvuOBp+OBquOBiS0yIiBkYXRhLW5hbWU9IuOBq+OBhuOBpuOBhuOBieOBiiIgY3g9IjE2LjA5NSIgY3k9IjE2LjA5NSIgcj0iMTYuMDk1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg1ODkuOTg5IDUzNy40MzYpIiBmaWxsPSIjZmFjNDAwIiBvcGFjaXR5PSIwLjUiLz4KICAgIDxjaXJjbGUgaWQ9IuOBq+OBvuOBpuOBvuOBp+OBquOBiS0zIiBkYXRhLW5hbWU9IuOBq+OBhuOBpuOBhuOBieOBiiIgY3g9IjQuNjU5IiBjeT0iNC42NTkiIHI9IjQuNjU5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDkuNDcyIDUyNi44NDcpIiBmaWxsPSIjOThiNzMwIiBvcGFjaXR5PSIwLjUiLz4KICAgIDxjaXJjbGUgaWQ9IuOBq+OBvuOBpuOBvuOBp+OBquOBiS0zIiBkYXRhLW5hbWU9IuOBq+OBhuOBpuOBhuOBieOBiiIgY3g9IjExLjQzNiIgY3k9IjExLjQzNiIgcj0iMTEuNDM2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg1NjUgNTQ4Ljg3MSkiIGZpbGw9IiMwMDdjYmQiIG9wYWNpdHk9IjAuNSIvPgogIDwvZz4KPC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -0.4rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.tit_04::after {
  content: "";
  margin: 0.6rem 0 0;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--brown01);
  position: absolute;
  bottom: -0.6rem;
  left: 0;
}

.tit_05 {
  color: var(--brown12);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center bottom/auto 100%;
    font-size: 3.2rem;
    min-height: 16rem;
    padding: 8.9rem 4rem;
    margin: 0 0 1rem;
  }
  .tit_02 {
    font-size: 3rem;
    min-height: 8.5rem;
    background: url(../img/tit_02_parts01.svg) no-repeat center/8.5rem auto;
    gap: 0 1.6rem;
    margin: 0 auto 4rem;
    letter-spacing: 0.2rem;
  }
  .tit_02::before, .tit_02::after {
    min-width: 7rem;
    height: 1rem;
  }
  .tit_02 .eng_txt {
    bottom: 0rem;
    font-size: 1.6rem;
    letter-spacing: 0.4rem;
  }
  .tit_03 {
    font-size: 2.6rem;
    letter-spacing: 0.2rem;
    padding: 1.6rem 2rem 1rem 7.8rem;
    margin: 5rem 0 2rem;
  }
  .tit_03::before {
    width: 5.15rem;
    height: 6rem;
    top: -1.8rem;
    left: 2rem;
  }
  .tit_04 {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    padding: 0 0 0 6.6rem;
    margin: 0 0 2.8rem;
  }
  .tit_04::before {
    width: 5.8rem;
    height: 4.6rem;
  }
  .tit_04::after {
    bottom: -1.4rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
/* リスト回り -------------------------------------- */
.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(--brown01);
  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-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-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-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.lst_ul01 > .lst_ol01 {
  padding: 1rem 0 0 0;
}
.lst_ul01 > .lst_ol01 li::before {
  color: #333333;
}

.lst_ul02 li {
  margin: 0 0 1rem;
}
@media screen and (min-width: 48em), print {
  .lst_ul02 li {
    margin: 0 0 1.8rem;
  }
}
.lst_ul02 li > span:first-child {
  font-size: 110%;
  display: block;
  font-weight: bold;
}

.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 {
    margin: 0 0 1.4rem;
  }
}
/* フレックス回り -------------------------------------- */
@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex2 > section,
  .flex2 > li {
    width: 48%;
    margin: 0 !important;
  }
  .flex3 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  background: var(--brown01);
  color: var(--gray01);
  text-align: center;
  padding: 0.6rem 4rem;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
}
*[class*=btn_] a::after {
  content: "\e812";
  font-family: "fontello";
  color: var(--gray01);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
*[class*=btn_] a:hover {
  background: var(--brown13);
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
}
*[class*=btn_] .btn_link--rsv a,
*[class*=btn_] .btn_link--monshin a {
  border-radius: 25px;
}
*[class*=btn_] .btn_link--rsv a::before,
*[class*=btn_] .btn_link--monshin a::before {
  font-family: "fontello";
  margin-right: 0.8rem;
  font-size: 140%;
}
*[class*=btn_] .btn_link--rsv a::after,
*[class*=btn_] .btn_link--monshin a::after {
  content: none;
}
*[class*=btn_] .btn_link--rsv a {
  background: var(--blue02);
}
*[class*=btn_] .btn_link--rsv a::before {
  content: "\e80e";
}
*[class*=btn_] .btn_link--monshin a {
  background: var(--blue01);
}
*[class*=btn_] .btn_link--monshin a::before {
  content: "\e805";
}
*[class*=btn_].btn_link--center {
  text-align: center !important;
}

@media screen and (min-width: 48em), print {
  .btn_flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0 2rem;
  }
}

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

.anc_link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2rem;
  margin: 4rem 0 4rem;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .anc_link {
    grid-template-columns: repeat(4, 1fr);
    margin: 6rem 0;
    gap: 4rem 2rem;
  }
}
.anc_link li {
  width: 100%;
}
.anc_link li a {
  background: var(--brown01);
  color: var(--gray01);
  text-align: center;
  padding: 0.6rem 2rem 0.6rem 0.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .anc_link li a {
    padding: 1rem 2rem 1rem 0.4rem;
  }
}
.anc_link li a::after {
  content: "\e80c";
  font-family: "fontello";
  color: var(--gray01);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.anc_link li a:hover {
  background: var(--brown13);
}
.anc_link + .ex_txt {
  position: relative;
  top: -2rem;
}
@media screen and (min-width: 48em), print {
  .anc_link + .ex_txt {
    top: -3.4rem;
  }
}

/* フローチャート -------------------------------------- */
.flow {
  counter-reset: flow_num;
  margin: 2.8rem 0 0;
}
.flow > li {
  counter-increment: flow_num 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 0;
  margin: 0 0 6rem;
  position: relative;
}
.flow > li:last-child {
  margin: 0;
}
.flow > li:last-child .contents::after {
  content: none;
}
.flow > li:not(:last-child)::after {
  content: "";
  display: block;
  width: 16rem;
  height: 5rem;
  position: absolute;
  bottom: -4rem;
  left: 0;
  background: url(../img/parts_flow01.svg) no-repeat center/contain;
}
.flow > li .num {
  width: 20%;
  margin: 2.4rem 0 0;
  display: inline-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-align: center;
  font-size: 1rem;
  position: relative;
}
.flow > li .num::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  margin: 0 auto;
  background: var(--brown01);
  width: 2rem;
  height: 1rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.flow > li .num::after {
  content: counter(flow_num, decimal-leading-zero);
  display: block;
  font-size: 3rem;
  line-height: 0.6;
  letter-spacing: 0.2rem;
}
.flow > li .contents {
  position: relative;
  padding: 0 2rem 2rem;
  flex: 1;
}
.flow > li .contents::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--brown15);
}
.flow > li .contents .tit {
  margin: 0 0 1rem;
  color: var(--brown01);
  font-size: 110%;
}
.flow > li .contents p:not(.tit) {
  margin: 0.6rem 0 0;
}
.flow > li .contents img {
  display: block;
  max-width: 100%;
}
.flow > li .contents .mt10 {
  margin-top: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .flow {
    margin: 8rem 0 8rem;
    padding: 0 6.6rem;
  }
  .flow > li {
    padding: 0;
    margin: 0 0 14rem;
  }
  .flow > li:last-child {
    margin: 0;
  }
  .flow > li:not(:last-child)::after {
    width: 41.2rem;
    height: 12.3rem;
    bottom: -11rem;
    left: 0;
  }
  .flow > li .num {
    width: 15.8rem;
    font-size: 2rem;
    margin: 5.6rem 0 0;
  }
  .flow > li .num::before {
    width: 4.6rem;
    height: 2.3rem;
    top: -3.4rem;
  }
  .flow > li .num::after {
    font-size: 5rem;
  }
  .flow > li .contents {
    font-size: 1.8rem;
    padding: 2rem 3rem 3rem;
  }
  .flow > li .contents::before {
    width: 1px;
    left: 0;
    top: 0;
  }
  .flow > li .contents::after {
    width: 4.6rem;
    height: 2.3rem;
  }
  .flow > li .contents .tit {
    line-height: 0.8;
    margin: 0 0 4rem;
    font-size: 2.2rem;
  }
  .flow > li .contents p:not(.tit) {
    font-size: 1.8rem;
    margin: 0.6rem 0 0;
  }
  .flow > li .contents .img_r,
  .flow > li .contents .img_l {
    max-width: 40%;
  }
}
/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low thead tr th {
  text-align: center;
  padding: 0.8rem 1rem;
  background: var(--brown01);
  border-right: 1px solid var(--gray09);
  color: var(--gray01);
}
.tbl_low thead tr th:first-child {
  width: 30%;
}
@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(--brown09);
  text-align: center;
  border: 1px solid var(--gray09);
}
@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(--gray09);
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr td {
    padding: 2rem 2rem;
  }
}
.tbl_low--price thead tr th:first-child {
  width: 50%;
}
.tbl_low--price tbody tr th {
  width: 50%;
}
.tbl_low--price tbody tr td {
  text-align: center;
}
.tbl_low--center tbody tr {
  text-align: center;
}
.tbl_low--3line thead tr th:first-child {
  width: 30% !important;
}
@media screen and (min-width: 48em), print {
  .tbl_low--3line thead tr th:first-child {
    width: 50% !important;
  }
}
.tbl_low--3line tbody tr th {
  width: 40%;
}
@media screen and (min-width: 48em), print {
  .tbl_low--3line.tbl_low--price thead tr th:last-child {
    width: 30%;
  }
}
.tbl_low .bg {
  background: var(--brown09);
}
.tbl_low .left {
  text-align: left !important;
}
.tbl_low .center {
  text-align: center !important;
}

.table_overflow {
  overflow-x: scroll; /* 横スクロールを有効化 */
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 48em), print {
  .table_overflow {
    overflow-x: auto;
  }
}
.table_overflow > table {
  margin: 0;
  table-layout: auto;
  min-width: 62rem;
  width: 100%;
  border-collapse: collapse;
  word-break: auto-phrase;
  white-space: nowrap;
}
@media screen and (min-width: 48em), print {
  .table_overflow > table {
    table-layout: fixed;
    word-break: normal;
    white-space: normal;
  }
}

.tbl_access {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.2rem;
  width: 100%;
}
.tbl_access tr th {
  width: 37%;
  background: var(--green05);
  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
---------------------------------------------------------------------------------- */
html {
  font-size: 3.125vw;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

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

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-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 10rem auto 0;
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .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 {
  margin: 0;
  padding: 0;
}
.header .wrap .logo {
  height: 5rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat center center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .head_access {
  color: var(--gray01);
  background: var(--brown01);
}
.header .wrap .head_access .size_l {
  font-size: 120%;
}
.header .wrap .headR {
  display: none;
}
.header .wrap .headR .tel {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    padding: 2rem 0 0;
  }
  .header .wrap .headR {
    position: relative;
    z-index: 2;
    display: block;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .header .wrap .headR .address {
    font-size: 2rem;
  }
  .header .wrap .headR .tel {
    font-size: 3.8rem;
    line-height: 1.8;
    color: var(--blue01);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 1rem;
  }
  .header .wrap .headR .tel::before {
    content: "TEL.";
    width: 4.2rem;
    height: 4.2rem;
    font-size: 1.4rem;
    background: var(--blue01);
    color: var(--gray01);
    border-radius: 50%;
    display: inline-flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
/* SP ドロップダウンメニュー -------------------------------------- */
#menu {
  z-index: 9999;
  width: 100%;
  height: 0;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  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-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0.8rem 0rem;
  height: 100%;
  text-decoration: none;
  background: var(--blue02);
  color: var(--blue03);
  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;
  top: 0;
  right: -27rem;
  opacity: 0;
}
#menu #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 11rem 2rem 6rem;
  background-color: white;
  overflow-y: scroll;
  transition: all 0.5s;
  position: fixed;
  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: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 1.2rem 1.2rem 1.2rem;
  color: #333333;
  text-decoration: none !important;
}
#menu #nav.sp_nav ul li a span:not(.icon) {
  color: var(--brown02);
  font-size: 1rem;
}
#menu #nav.sp_nav ul li a .icon {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
#menu #nav.sp_nav ul li a .icon::after {
  content: "\f004";
  display: inline-block;
  font-family: "fontello";
  margin-left: 0.8rem;
  transition: all 0.2s;
  font-size: 1.2rem;
  color: var(--brown03);
  position: relative;
  top: 0.1rem;
}
#menu #nav.sp_nav ul li a.close .icon::after {
  transform: rotate(180deg);
}
#menu #nav.sp_nav ul li a.sub {
  position: relative;
}
#menu #nav.sp_nav ul li a.sub + .subnav {
  display: none;
}
#menu #nav.sp_nav ul li a.sub + .subnav > div {
  margin: 0 0 1.6rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav > div:first-child {
  margin: 1rem 0 1.6rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav > div .tit {
  border-radius: 10px 10px 0 0;
  background: var(--gray03);
  font-size: 110%;
  color: var(--gray01);
  margin: 0;
  padding: 1rem 1.4rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav > div ul {
  border-radius: 0 0 10px 10px;
  background: var(--gray04);
  margin: 0;
  padding: 1rem;
  display: flex !important;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#menu #nav.sp_nav ul li a.sub + .subnav > div ul li {
  width: 100%;
  text-align: left;
  border-bottom: none;
}
#menu #nav.sp_nav ul li a.sub + .subnav > div ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
#menu #nav.sp_nav ul li a.sub + .subnav > div ul li a::before {
  content: "\f006";
  font-family: "fontello";
  margin-right: 0.4rem;
  color: var(--blue01);
  transition: all 0.2s;
}
#menu #nav.sp_nav ul li a.sub + .subnav > div ul li a:hover {
  color: var(--gray01);
  background: var(--blue01);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div ul li a:hover::before {
  color: var(--gray01);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_allergy .tit {
  background: var(--brown04);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_allergy ul {
  background: var(--brown05);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_allergy ul li a {
  color: var(--brown04);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_allergy ul li a::before {
  color: var(--brown04);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_rheumatism .tit {
  background: var(--brown06);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_rheumatism ul {
  background: var(--brown07);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_rheumatism ul li a {
  color: var(--brown06);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_rheumatism ul li a::before {
  color: var(--brown06);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_gastro .tit {
  background: var(--blue04);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_gastro ul {
  background: var(--blue05);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_gastro ul li a {
  color: var(--blue04);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_gastro ul li a::before {
  color: var(--blue04);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_internal .tit {
  background: var(--green01);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_internal ul {
  background: var(--green02);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_internal ul li a {
  color: var(--green01);
}
#menu #nav.sp_nav ul li a.sub + .subnav > div.sub_internal ul li a::before {
  color: var(--green01);
}
#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%;
    position: relative;
    z-index: 201;
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: var(--gray01);
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    box-shadow: 0 0.4rem 2rem 0 rgba(238, 238, 238, 0.6);
  }
  #menu #nav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #menu #nav .gnav > li {
    width: auto;
    flex: auto;
    position: relative;
  }
  #menu #nav .gnav > li::after {
    content: "";
    display: block;
    width: 2px;
    height: 2rem;
    background: var(--gray06);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #menu #nav .gnav > li:first-child::before {
    content: "";
    display: block;
    width: 2px;
    height: 2rem;
    background: var(--gray06);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #menu #nav .gnav > li > a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 6rem;
    text-align: center;
    font-size: 1.8rem;
  }
  #menu #nav .gnav > li > a span:not(.icon) {
    color: var(--brown02);
    font-size: 1.4rem;
    margin: 0.6rem 0 0;
  }
  #menu #nav .gnav > li .subnav {
    width: 48.7rem;
    padding: 1.4rem 1.5rem 1.4rem;
    display: none;
    position: absolute;
    top: 5.4rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-radius: 10px;
    background: var(--gray01);
    box-shadow: 0 0 1rem 0 rgba(34, 34, 34, 0.2);
  }
  #menu #nav .gnav > li .subnav > div {
    margin: 0 0 1.6rem;
  }
  #menu #nav .gnav > li .subnav > div .tit {
    border-radius: 5px;
    background: var(--gray03);
    text-align: left;
    font-size: 2.2rem;
    color: var(--gray01);
    margin: 0;
    padding: 1.2rem 1rem 1.2rem 7.2rem;
    position: relative;
  }
  #menu #nav .gnav > li .subnav > div .tit::before {
    content: "";
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: absolute;
    left: 1.2rem;
    bottom: 0;
    width: 4.2rem;
    height: 100%;
  }
  #menu #nav .gnav > li .subnav > div ul {
    border-radius: 5px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.6rem;
    border-radius: 0 0 10px 10px;
    background: var(--gray04);
    margin: 0;
    padding: 1rem;
  }
  #menu #nav .gnav > li .subnav > div ul li {
    width: 100%;
    text-align: left;
    border-bottom: none;
  }
  #menu #nav .gnav > li .subnav > div ul li a {
    font-size: 2rem;
    border-radius: 3px;
    padding: 0.8rem 0.2rem 0.8rem 1.8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    transition: all 0.2s;
  }
  #menu #nav .gnav > li .subnav > div ul li a::before {
    content: "\f006";
    font-family: "fontello";
    margin-right: 0.4rem;
    transition: all 0.2s;
    position: relative;
    top: 0.2rem;
  }
  #menu #nav .gnav > li .subnav > div ul li a:hover {
    color: #ffffff !important;
    opacity: 1;
  }
  #menu #nav .gnav > li .subnav > div ul li a:hover::before {
    color: #ffffff !important;
  }
  #menu #nav .gnav > li .subnav > div.sub_allergy .tit {
    background: var(--brown04);
  }
  #menu #nav .gnav > li .subnav > div.sub_allergy .tit::before {
    background-image: url(../img/a_deco_allergy.png);
  }
  #menu #nav .gnav > li .subnav > div.sub_allergy ul {
    background: var(--brown05);
  }
  #menu #nav .gnav > li .subnav > div.sub_allergy ul li a {
    color: var(--brown04);
  }
  #menu #nav .gnav > li .subnav > div.sub_allergy ul li a::before {
    color: var(--brown04);
  }
  #menu #nav .gnav > li .subnav > div.sub_allergy ul li a:hover {
    background: var(--brown04);
  }
  #menu #nav .gnav > li .subnav > div.sub_rheumatism .tit {
    background: var(--brown06);
  }
  #menu #nav .gnav > li .subnav > div.sub_rheumatism .tit::before {
    background-image: url(../img/a_deco_rheumatism.png);
  }
  #menu #nav .gnav > li .subnav > div.sub_rheumatism ul {
    background: var(--brown07);
  }
  #menu #nav .gnav > li .subnav > div.sub_rheumatism ul li a {
    color: var(--brown06);
  }
  #menu #nav .gnav > li .subnav > div.sub_rheumatism ul li a::before {
    color: var(--brown06);
  }
  #menu #nav .gnav > li .subnav > div.sub_rheumatism ul li a:hover {
    background: var(--brown08);
  }
  #menu #nav .gnav > li .subnav > div.sub_gastro .tit {
    background: var(--blue04);
  }
  #menu #nav .gnav > li .subnav > div.sub_gastro .tit::before {
    background-image: url(../img/a_deco_gastroenterology.png);
  }
  #menu #nav .gnav > li .subnav > div.sub_gastro ul {
    background: var(--blue05);
  }
  #menu #nav .gnav > li .subnav > div.sub_gastro ul li a {
    color: var(--blue04);
  }
  #menu #nav .gnav > li .subnav > div.sub_gastro ul li a::before {
    color: var(--blue04);
  }
  #menu #nav .gnav > li .subnav > div.sub_gastro ul li a:hover {
    background: var(--blue04);
  }
  #menu #nav .gnav > li .subnav > div.sub_internal .tit {
    background: var(--green01);
  }
  #menu #nav .gnav > li .subnav > div.sub_internal .tit::before {
    background-image: url(../img/a_deco_internal.png);
  }
  #menu #nav .gnav > li .subnav > div.sub_internal ul {
    background: var(--green02);
  }
  #menu #nav .gnav > li .subnav > div.sub_internal ul li a {
    color: var(--green01);
  }
  #menu #nav .gnav > li .subnav > div.sub_internal ul li a::before {
    color: var(--green01);
  }
  #menu #nav .gnav > li .subnav > div.sub_internal ul li a:hover {
    background: var(--green03);
  }
  #menu {
    /* Gナビ　ハイライト */
  }
}
/* PC 固定サイドメニュー -------------------------------------- */
.fixed_menu {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_menu {
    position: fixed;
    right: 0;
    top: 20rem;
    z-index: 201;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 2rem 0;
  }
  .fixed_menu li a {
    width: 12rem;
    height: 10rem;
    color: var(--gray01);
    text-align: center;
    border-radius: 20px 0 0 20px;
    font-size: 2rem;
    gap: 0.4rem 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .fixed_menu li a::before {
    font-family: "fontello";
    font-size: 3.6rem;
    font-weight: normal;
  }
  .fixed_menu li a:hover {
    opacity: 1;
    filter: contrast(1.2);
  }
  .fixed_menu li.yoyaku a {
    background: var(--blue02);
  }
  .fixed_menu li.yoyaku a::before {
    content: "\e80e";
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 4rem 0 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: var(--brown09);
}
.overview .gmap {
  height: 30rem;
}
.overview .gmap iframe {
  height: 100%;
}
.overview > .wrap {
  padding: 1rem;
  margin: 0 1rem 1rem;
  background: var(--gray01);
  border-radius: 20px;
  position: relative;
}
.overview > .wrap .clinic_name {
  text-align: center;
  margin: 0;
}
.overview > .wrap .clinic_name img {
  margin: -4rem 0 1rem;
  height: 10rem;
  max-width: 80%;
  position: relative;
  z-index: 2;
}
.overview > .wrap .flex .overviewL {
  padding: 1rem;
}
.overview > .wrap .flex .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
  display: block;
}
.overview > .wrap .flex .overviewL .tbl_gaiyo th {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.4rem 0.4rem 0.4rem 1.2rem;
  color: var(--brown01);
  position: relative;
}
.overview > .wrap .flex .overviewL .tbl_gaiyo th::before {
  content: "\f006";
  font-family: "fontello";
  position: absolute;
  top: 1rem;
  left: 0;
  line-height: 1;
  font-size: 1rem;
}
.overview > .wrap .flex .overviewL .tbl_gaiyo td {
  display: block;
  padding: 0.4rem;
  margin: 0 0 1.4rem;
}
.overview > .wrap .overviewR {
  margin: 0;
}
.overview > .wrap .overviewR .tbl_time {
  margin: 0 0 1rem;
}
.overview > .wrap .overviewR .img_map {
  margin: 2rem 0 0;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 0 0;
    padding: 4rem 0 4rem;
    font-size: 1.8rem;
    position: relative;
  }
  .overview .gmap {
    height: 50rem;
  }
  .overview > .wrap {
    margin: 0 auto 4rem;
    padding: 0 3.4rem 7.9rem 6.9rem;
  }
  .overview > .wrap .clinic_name {
    margin: 0;
  }
  .overview > .wrap .clinic_name img {
    margin: -4rem 0 0;
    max-width: 33.8rem;
    height: auto;
  }
  .overview > .wrap .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin: 4rem auto 0;
    gap: 0 0.6rem;
  }
  .overview > .wrap .flex .overviewL {
    width: 53.1rem;
    padding: 0;
  }
  .overview > .wrap .flex .overviewL .tbl_gaiyo {
    margin: 0;
    display: table;
  }
  .overview > .wrap .flex .overviewL .tbl_gaiyo th {
    width: 11.6rem;
    padding: 0 0 1.3rem 1.2rem;
    font-size: 1.8rem;
    display: table-cell;
    vertical-align: top;
  }
  .overview > .wrap .flex .overviewL .tbl_gaiyo th::before {
    top: 1rem;
  }
  .overview > .wrap .flex .overviewL .tbl_gaiyo td {
    padding: 0 0 1.3rem;
    font-size: 1.8rem;
    display: table-cell;
    vertical-align: top;
  }
  .overview > .wrap .flex .overviewR {
    width: 56rem;
  }
  .overview > .wrap .flex .overviewR .tbl_time {
    margin: 0;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 6rem;
  right: 1rem;
  z-index: 200;
  cursor: pointer;
}
#pageup a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  text-align: center;
  padding: 0.4rem;
  background: var(--brown01);
  border-radius: 50%;
}
#pageup a::before {
  text-align: center;
  font-size: 1.6rem;
  font-family: "fontello";
  content: "\f005";
  color: var(--gray01);
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup a::before {
    font-size: 2rem;
  }
}
.footer_menu {
  width: 100%;
  min-height: 4.6rem;
  background: var(--gray01);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 199;
  font-size: 1.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer_menu .tel {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  width: 50%;
  line-height: 1;
  font-size: 1.4rem;
  color: var(--blue01);
}
.footer_menu .tel > *::before {
  content: "tel.";
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1rem;
  margin-right: 0.4rem;
  background: var(--blue01);
  color: var(--gray01);
  border-radius: 50%;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer_menu .yoyaku {
  width: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer_menu .yoyaku a {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background: var(--blue02);
  color: var(--gray01);
}
.footer_menu .yoyaku a::before {
  content: "\e80e";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-weight: normal;
}

@media screen and (min-width: 48em), print {
  .footer_menu {
    display: none;
  }
}
.footer {
  text-align: center;
  padding: 2rem 0 4.6rem;
  background: var(--green04);
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1.2rem;
  background: url(../img/footer_parts01.svg) repeat-x left bottom/contain;
  position: absolute;
  left: 0;
  top: -1.1rem;
}
.footer .breadcrumb_list {
  display: none;
}
.footer .footer_gnav,
.footer .footer_sub {
  display: none;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: var(--gray01);
}
.footer .footer_policy {
  padding: 0 0 1.4rem;
  font-size: 1.2rem;
  color: var(--gray01);
}
.footer .copy {
  display: block;
  background: var(--brown10);
  color: var(--gray01);
  padding: 3.2rem 0.2rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 2rem 0 0;
  }
  .footer::before {
    height: 4rem;
    top: -3.8rem;
  }
  .footer .footer_gnav,
  .footer .footer_sub {
    width: 1200px;
    margin: 0 auto;
    display: block;
  }
  .footer .footer_gnav ul,
  .footer .footer_sub ul {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  .footer .footer_gnav ul li,
  .footer .footer_sub ul li {
    display: inline-block;
    font-size: 1.6rem;
  }
  .footer .footer_gnav ul li::after, .footer .footer_gnav ul li:first-child::before,
  .footer .footer_sub ul li::after,
  .footer .footer_sub ul li:first-child::before {
    content: "|";
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0 2rem;
  }
  .footer .footer_gnav ul li a,
  .footer .footer_sub ul li a {
    opacity: 1;
  }
  .footer .footer_gnav ul li a span,
  .footer .footer_sub ul li a span {
    display: none;
  }
  .footer .footer_gnav ul li a:hover,
  .footer .footer_sub ul li a:hover {
    text-decoration: underline;
  }
  .footer .footer_gnav ul li.treatment,
  .footer .footer_sub ul li.treatment {
    display: none;
  }
  .footer .footer_gnav {
    margin: 0 auto 3.1rem;
  }
  .footer .footer_sub ul {
    margin: 0 auto 0;
  }
  .footer .footer_sub ul ~ ul {
    margin: 1rem auto 0;
  }
  .footer .footer_policy {
    display: none;
  }
  .footer .copy {
    padding: 0.8rem 0;
    margin: 5rem 0 0;
    font-size: 1.4rem;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
.header {
  position: relative;
}
.header::before {
  content: "";
  display: block;
  height: 8rem;
  width: 100%;
  aspect-ratio: 2000/214.581;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="2000" height="214.581" viewBox="0 0 2000 214.581"><g transform="translate(0 -2522)"><path d="M0-366v31.873c781.741,0,1191.822,87.467,1425.913,87.467S1841-334.127,2000-334.127V-366Z" transform="translate(0 2888)" fill="%23fff" opacity="0.8"/><path d="M2000,105.681V211.361H0V105.681c182.25,69.364,276.5,80.259,542.5,80.259,390,0,581.144-189.16,837.128-189.16C1564.389-3.22,1743.056,142.361,2000,105.681Z" transform="translate(2000 2733.361) rotate(180)" fill="%23fff" opacity="0.8"/></g></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.header > .wrap {
  height: 40rem;
  position: relative;
}
.header > .wrap .headL {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: var(--gray01);
  padding: 0 0 3.4rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  gap: 0.8rem 0;
  position: absolute;
  top: -6rem;
  z-index: 2;
}
.header > .wrap .headL .logo {
  height: 7rem;
  width: 100%;
}
.header > .wrap .headL .head_access {
  padding: 0.4rem 1rem;
}
.keyvsl_area {
  width: 100vw;
  height: 40rem;
  padding: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  contain: paint;
}
.keyvsl_area::before {
  content: "";
  display: block;
  width: 160%;
  height: 4rem;
  background: url(../img/a_bg_town01.png) repeat-x bottom/contain;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
}
.keyvsl_area #keyvsl {
  opacity: 0;
  transition: 1s opacity;
  margin: 0;
  max-width: 100%;
  height: 40rem;
  overflow: hidden;
}
.keyvsl_area #keyvsl .slick-list,
.keyvsl_area #keyvsl .slick-track,
.keyvsl_area #keyvsl .slide {
  height: 100%;
}
.keyvsl_area #keyvsl img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.keyvsl_area .kv_contents {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
.keyvsl_area .kv_contents .kv_txt .copy {
  width: 80%;
  position: absolute;
  bottom: 14rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
}
.keyvsl_area .kv_contents .kv_txt .copy span {
  display: inline-flex !important;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}
.keyvsl_area .kv_contents .kv_txt .copy span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gray01);
  border-radius: 20px;
  filter: blur(12px);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.keyvsl_area .kv_contents .kv_txt .open_time {
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  color: var(--gray01);
  font-size: 1.2rem;
  font-weight: 500;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  width: 70%;
}
.keyvsl_area .kv_contents .kv_txt .open_time .left {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background: var(--brown03);
  padding: 0.4rem 0.8rem;
  width: 30%;
}
.keyvsl_area .kv_contents .kv_txt .open_time .right {
  background: var(--brown01);
  padding: 0.4rem 0.8rem;
  width: 70%;
}
.keyvsl_area .kv_contents .kv_txt .open_time .right > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem 0;
}
.keyvsl_area .kv_contents .kv_txt .open_time .right > ul li {
  width: 100%;
}
.keyvsl_area .kv_contents .kv_txt .open_time .right > ul li span {
  display: inline-block;
  text-align: right;
  width: 40%;
  margin-right: 0.8rem;
}

@media screen and (min-width: 48em), print {
  .header::before {
    height: 21.4rem;
    width: 100%;
  }
  .header > .wrap {
    height: 85rem;
    width: 1200px;
    margin: 0 auto 1rem;
  }
  .header > .wrap .headL {
    padding: 0 0 6.7rem;
    width: 48.9rem;
    height: 50.5rem;
    gap: 2.3rem 0;
    top: -14.6rem;
  }
  .header > .wrap .headL .logo {
    height: 19.1rem;
    width: 36rem;
  }
  .header > .wrap .headL .head_access {
    padding: 0.4rem 1rem;
    font-size: 2rem;
  }
  .header > .wrap .headL .head_access .size_l {
    font-size: 3.6rem;
  }
  .keyvsl_area {
    width: 100%;
    height: 85rem;
  }
  .keyvsl_area::before {
    min-width: 2000px;
    width: 100%;
    height: 12.4rem;
  }
  .keyvsl_area #keyvsl {
    height: 85rem;
  }
  .keyvsl_area .kv_contents {
    width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .keyvsl_area .kv_contents .kv_txt .copy {
    width: 80%;
    position: absolute;
    bottom: 28.3rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    text-align: center;
  }
  .keyvsl_area .kv_contents .kv_txt .copy span {
    padding: 1.2rem 2.4rem;
    font-size: 2.6rem;
  }
  .keyvsl_area .kv_contents .kv_txt .open_time {
    bottom: 12rem;
    right: 2rem;
    font-size: 2rem;
    width: 38rem;
  }
  .keyvsl_area .kv_contents .kv_txt .open_time .left {
    font-size: 2.2rem;
    padding: 2.2rem 2.2rem;
    width: 14.4rem;
  }
  .keyvsl_area .kv_contents .kv_txt .open_time .right {
    font-size: 2rem;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .keyvsl_area .kv_contents .kv_txt .open_time .right > ul {
    width: 100%;
  }
  .keyvsl_area .kv_contents .kv_txt .open_time .right > ul li span {
    width: 40%;
    margin-right: 0.8rem;
  }
}
/* 診療カレンダー -------------------------------------- */
.calender {
  padding: 2rem 0 10rem;
}
.calender .caledit {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  overflow: hidden;
}
.calender .caledit ~ .caledit {
  margin: 2rem 0 0;
}
.calender .caledit tbody tr.month th {
  background: var(--blue02);
  border: none;
}
.calender .caledit tbody tr.week th {
  font-size: 1.4rem;
  font-weight: 500;
  background: var(--blue07);
  border: none;
  color: var(--gray01);
}
.calender .caledit tbody tr.day td {
  color: var(--gray10);
  background: none;
  border: #333333 1px solid;
  z-index: 1;
}
.calender .caledit tbody tr.day td.notTheMonth {
  color: #dddddd !important;
  background: #dddddd !important;
  pointer-events: none !important;
}
.calender .caledit tbody tr.day td.notTheMonth.close {
  color: #dddddd !important;
}
.calender .caledit tbody tr.day td.open {
  background: none;
}
.calender .caledit tbody tr.day td.am_only {
  background: var(--blue03);
}
.calender .caledit tbody tr.day td.close {
  background: var(--brown16);
}
.calender .caledit tbody tr.day td.change {
  background: var(--brown17);
}
.calender .lst_status {
  margin: 1rem 0 0;
}
.calender .lst_status li {
  margin: 0 0 0.8rem;
  line-height: 2;
  color: var(--gray10);
  position: relative;
  padding-left: 2.8rem;
}
.calender .lst_status li::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gray02);
  position: absolute;
  left: 0;
  top: 0.6rem;
}
.calender .lst_status li.open::before {
  background: none;
}
.calender .lst_status li.am_only::before {
  background: var(--blue03);
}
.calender .lst_status li.close::before {
  background: var(--brown16);
}
.calender .lst_status li.change::before {
  background: var(--brown17);
}

@media screen and (min-width: 48em), print {
  .calender {
    padding: 8rem 0 7rem;
  }
  .calender .tit_02 {
    margin: 0 0 5.6rem;
  }
  .calender .cal_area {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0 3rem;
  }
  .calender .cal_area .caledit ~ .caledit {
    margin: 0;
  }
  .calender .cal_area .caledit tbody tr.month th {
    font-size: 2rem;
    padding: 1rem 0;
  }
  .calender .cal_area .caledit tbody tr.week th {
    padding: 0.6rem 0;
    font-size: 1.8rem;
  }
  .calender .cal_area .caledit tbody tr.day td {
    padding: 1.8rem 0;
    font-size: 1.8rem;
  }
  .calender .lst_status {
    margin: 3rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 3rem;
  }
  .calender .lst_status li {
    font-size: 1.8rem;
    margin: 0;
    padding-left: 3.6rem;
  }
  .calender .lst_status li::before {
    width: 2.3rem;
    height: 2.3rem;
    top: 0.6rem;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 2rem 0 4rem;
  background: var(--brown18);
}
.info .wrap {
  position: relative;
}
.info .wrap::before {
  content: "";
  display: block;
  width: 20rem;
  height: 20rem;
  background: url(../img/index_info_bg01.svg) no-repeat bottom center/contain;
  position: absolute;
  top: -10rem;
  left: -2rem;
}
.info .wrap .tit_02 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 14rem;
  height: 14rem;
  background: var(--gray01);
  border-radius: 50%;
  padding: 2.4rem 0 0;
  margin: 0 auto;
}
.info .wrap .tit_02::before {
  width: 100%;
  height: 5rem;
  background: url(../img/index_info_tit02_parts01.png) no-repeat center/contain;
}
.info .wrap .tit_02::after {
  content: none;
}
.info .wrap .tit_02 .eng_txt {
  bottom: 1.6rem;
}
.info .wrap dl {
  margin: 0;
  line-height: 1.4;
  padding: 0 1rem;
  height: 20rem;
  overflow-y: scroll;
}
.info .wrap dl .bar {
  border-bottom: 1px dashed var(--gray12);
  padding: 1rem 0 1rem;
}
.info .wrap dl .bar:nth-of-type(n + 4) dd {
  display: none;
}
.info .wrap dl .bar dt {
  margin-bottom: 0.4rem;
  padding-left: 1.8rem;
  font-weight: 500;
  color: var(--brown01);
  font-size: 110%;
  cursor: pointer;
  position: relative;
  display: table;
}
.info .wrap dl .bar dt:hover {
  opacity: 0.8;
}
.info .wrap dl .bar dt .date {
  display: block;
}
.info .wrap dl .bar dt::before {
  content: "\e80b";
  font-family: "fontello";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.4s;
}
.info .wrap dl .bar dt:not(.close)::before {
  transform: rotateX(180deg);
}
.info .wrap dl .bar dd {
  padding: 1rem 0 0;
  margin: 0;
}
.info .wrap dl .bar dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 3.6rem 0 3.6rem;
  }
  .info .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 4rem;
  }
  .info .wrap::before {
    width: 63.2rem;
    height: 56.5rem;
    top: auto;
    bottom: -3.6rem;
    left: -40rem;
  }
  .info .wrap .tit_02 {
    -webkit-justify-content: center;
    justify-content: center;
    gap: 2.1rem 0;
    width: 26rem;
    height: 26rem;
    padding: 0 0 4rem;
    margin: 0 0 0 2rem;
  }
  .info .wrap .tit_02::before {
    height: 10.8rem;
  }
  .info .wrap .tit_02::after {
    content: none;
  }
  .info .wrap .tit_02 .eng_txt {
    bottom: 4.6rem;
  }
  .info .wrap dl {
    padding: 0 3rem 0 0;
    height: 32.8rem;
    flex: auto;
  }
  .info .wrap dl .bar {
    padding: 1rem 0 1.4rem 3rem;
  }
  .info .wrap dl .bar:nth-of-type(n + 4) dd {
    display: none;
  }
  .info .wrap dl .bar dt {
    margin-bottom: 0;
    font-size: 2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 2.2rem;
  }
  .info .wrap dl .bar dt .date {
    font-size: 1.8rem;
  }
  .info .wrap dl .bar dd {
    font-size: 1.8rem;
    padding: 1rem 0 0;
    margin: 0;
  }
  .info .wrap dl .bar dd p {
    margin: 0;
  }
}
/* 診療のご案内 -------------------------------------- */
.treatments {
  padding: 2rem 0 2rem;
}
.treatments dl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 4rem 0;
}
.treatments dl > div dt {
  text-align: center;
  font-size: 1.6rem;
  background: var(--gray03);
  border-radius: 60px;
  padding: 0.8rem 0;
  color: var(--gray01);
  position: relative;
}
.treatments dl > div dt::before {
  content: "";
  display: block;
  position: absolute;
  width: 4rem;
  height: 4rem;
  top: -1rem;
  left: 2rem;
}
.treatments dl > div dt::after {
  content: "";
  display: block;
  width: 80%;
  height: 3px;
  margin: 0.4rem auto 0;
  background-image: repeating-linear-gradient(to right, #ffffff 0, #ffffff 2px, transparent 2px, transparent 8px);
}
.treatments dl > div dd {
  background: var(--gray05);
  padding: 2rem 0 2rem 2rem;
  margin: 0;
  border-radius: 20px;
}
.treatments dl > div dd > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 2rem 0;
}
.treatments dl > div dd > ul li a {
  text-decoration: none !important;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 1rem;
}
.treatments dl > div dd > ul li a::before {
  content: "";
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--gray01);
  background-position: center;
  background-size: 80% auto;
  background-repeat: no-repeat;
}
.treatments dl > div dd > ul li a.allergy::before {
  background-image: url(../img/index_treatments_allergy.svg);
}
.treatments dl > div dd > ul li a.hay_fever::before {
  background-image: url(../img/index_treatments_hay_fever.svg);
}
.treatments dl > div dd > ul li a.rheumatism::before {
  background-image: url(../img/index_treatments_rheumatism.svg);
}
.treatments dl > div dd > ul li a.ctd::before {
  background-image: url(../img/index_treatments_ctd.svg);
}
.treatments dl > div dd > ul li a.gastro::before {
  background-image: url(../img/index_treatments_gastro.svg);
}
.treatments dl > div dd > ul li a.gastroscope::before {
  background-image: url(../img/index_treatments_gastroscope.svg);
}
.treatments dl > div dd > ul li a.colonoscope::before {
  background-image: url(../img/index_treatments_colonoscope.svg);
}
.treatments dl > div dd > ul li a.echo::before {
  background-image: url(../img/index_treatments_echo.svg);
}
.treatments dl > div dd > ul li a.internal::before {
  background-image: url(../img/index_treatments_internal.svg);
}
.treatments dl > div dd > ul li a.lifestyle_related::before {
  background-image: url(../img/index_treatments_lifestyle_related.svg);
}
.treatments dl > div dd > ul li a.checkup::before {
  background-image: url(../img/index_treatments_checkup.svg);
}
.treatments dl > div dd > ul li a.vaccination::before {
  background-image: url(../img/index_treatments_vaccination.svg);
}
.treatments dl > div dd > ul li a.private::before {
  background-image: url(../img/index_treatments_private.svg);
}
.treatments dl > div.contents_allergy dt {
  background: var(--brown04);
}
.treatments dl > div.contents_allergy dt::before {
  background: url(../img/a_deco_allergy.png) no-repeat center/contain;
}
.treatments dl > div.contents_allergy dd {
  background: var(--brown05);
  color: var(--brown19);
}
.treatments dl > div.contents_rheumatism dt {
  background: var(--brown06);
}
.treatments dl > div.contents_rheumatism dt::before {
  background: url(../img/a_deco_rheumatism.png) no-repeat center/contain;
}
.treatments dl > div.contents_rheumatism dd {
  background: var(--brown07);
  color: var(--brown08);
}
.treatments dl > div.contents_gastroenterology dt {
  background: var(--blue04);
}
.treatments dl > div.contents_gastroenterology dt::before {
  background: url(../img/a_deco_gastroenterology.png) no-repeat center/contain;
}
.treatments dl > div.contents_gastroenterology dd {
  background: var(--blue05);
  color: var(--blue08);
}
.treatments dl > div.contents_internal dt {
  background: var(--green01);
}
.treatments dl > div.contents_internal dt::before {
  background: url(../img/a_deco_internal.png) no-repeat center/contain;
}
.treatments dl > div.contents_internal dd {
  background: var(--green02);
  color: var(--green03);
}

@media screen and (min-width: 48em), print {
  .treatments {
    padding: 5.7rem 0 0;
  }
  .treatments dl {
    gap: 10.7rem 2rem;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .treatments dl > div {
    width: 58rem;
  }
  .treatments dl > div dt {
    font-size: 3.4rem;
    border-radius: 100px;
    padding: 2.4rem 0;
  }
  .treatments dl > div dt::after {
    width: 60%;
    height: 3px;
    margin: 0.4rem auto 0;
  }
  .treatments dl > div dd {
    margin: -4.2rem 1rem 0;
    padding: 7.2rem 1rem 2.8rem 2rem;
  }
  .treatments dl > div dd > ul {
    gap: 4rem 0;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .treatments dl > div dd > ul li {
    width: 50%;
  }
  .treatments dl > div dd > ul li a {
    font-size: 2rem;
    gap: 0 1.6rem;
    word-break: auto-phrase;
  }
  .treatments dl > div dd > ul li a::before {
    width: 11rem;
    height: 11rem;
    background-size: 100% auto;
  }
  .treatments dl > div.contents_allergy dt::before {
    width: 7.7rem;
    height: 6.4rem;
    top: -3rem;
    left: 4.4rem;
  }
  .treatments dl > div.contents_rheumatism dt::before {
    width: 7.5rem;
    height: 5rem;
    top: -2rem;
    left: 6rem;
  }
  .treatments dl > div.contents_gastroenterology dt::before {
    width: 8.5rem;
    height: 9.4rem;
    top: -4rem;
    left: 4.4rem;
  }
  .treatments dl > div.contents_internal dt::before {
    width: 7.2rem;
    height: 6.2rem;
    left: 6.4rem;
    top: -2.2rem;
  }
}
/* 当院の特長 -------------------------------------- */
.feature {
  padding: 8rem 0 2rem;
  position: relative;
}
.feature::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 2000/482;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="2000.004" height="482.216" viewBox="0 0 2000.004 482.216"><g fill-rule="evenodd"><path d="M923.524,450.06V318.273c189.091,15.024,382.97,38.373,564,69.674A4708.921,4708.921,0,0,1,2000,507.587c-262.916-49.485-824.36-14-1076.48-57.527Z" fill="%23e9f8ff" transform="translate(-923.524 -232.242)"/><path d="M0,86.032V0C592.41,214.989,724.26,76.906,947.44,196.51c265.89,142.5,598,169,1052.55,120.9V86.032c.01,86.6.01,396.184.01,396.184-501.51-49.561-681.81-132.662-927.39-207.592q-17.895-5.47-36.33-10.868c-36.38-10.653-74.5-21.1-115.51-31.2-.14-.039-.29-.078-.44-.11-41.42-10.2-85.79-20.065-134.3-29.451C533.52,149.958,270.12,108.112,0,86.032Z" fill="%23d0ecf9" transform="translate(0.004)"/></g></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.feature::after {
  content: "";
  display: block;
  width: 9rem;
  height: 8rem;
  background: url(../img/index_feature_bg01.png) no-repeat center/contain;
  position: absolute;
  top: -1.8rem;
  left: 2rem;
  pointer-events: none;
}
.feature ul {
  counter-reset: feature_num;
}
.feature ul li {
  counter-increment: feature_num 1;
  padding: 0 1rem;
  margin: 0 0 4rem;
}
.feature ul li:last-child {
  margin: 0;
}
.feature ul li figure {
  margin: 0;
  padding: 0;
}
.feature ul li figure .tit {
  position: relative;
  margin: 0 0 2.8rem;
  color: var(--blue01);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 1.4rem;
}
.feature ul li figure .tit::before {
  content: "." counter(feature_num, decimal-leading-zero);
  min-width: 5.2rem;
  height: 5.2rem;
  font-size: 1.8rem;
  color: var(--gray01);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  aspect-ratio: 82.5/74.368;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2282.5%22%20height%3D%2274.368%22%20viewBox%3D%220%200%2082.5%2074.368%22%3E%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4831%22%20data-name%3D%22%E3%83%91%E3%82%B9%204831%22%20d%3D%22M52.951%2C69.569c-10.342-1.25-17.312%2C10.388-28.114%2C1.3-3.6-3.025-5.615-7.18-8.758-10.575-3.826-4.133-8.922-6.855-12.6-11.142-8.59-10.017.614-17.409%2C7.23-24.871C16.911%2C17.292%2C16.532%2C3.57%2C26.8.569c6.03-1.763%2C9.147.885%2C14.054%2C3.661%2C5.678%2C3.212%2C13.135.14%2C17.564%2C5.875%2C6.816%2C8.827%2C6.375%2C15.355%2C17.128%2C20.917%2C11.24%2C5.814%2C6.466%2C13.989%2C2.209%2C22.247-2.694%2C5.228.771%2C12.7-4.957%2C16.477-5.883%2C3.879-13.6.578-19.847-.177%22%20transform%3D%22translate%280%29%22%20fill%3D%22%2386d2a2%22/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.feature ul li figure .tit::after {
  content: "";
  position: absolute;
  bottom: -2.4rem;
  left: auto;
  right: 0.8rem;
  display: block;
  width: 80%;
  height: 2rem;
  aspect-ratio: 259.544/8.65;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22259.544%22%20height%3D%228.65%22%20viewBox%3D%220%200%20259.544%208.65%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-path%22%3E%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_1250%22%20width%3D%22259.544%22%20height%3D%228.65%22%20fill%3D%22none%22%20stroke%3D%22%23007cbd%22%20stroke-width%3D%221%22%20stroke-dasharray%3D%225%204%22/%3E%3C/clipPath%3E%3C/defs%3E%3Cg%20clip-path%3D%22url%28%23clip-path%29%22%3E%3Cpath%20d%3D%22M.75%2C7.989c77.627-19.916%2C154.877%2C9.227%2C256.272-5.773%22%20transform%3D%22translate%280.886%20-0.044%29%22%20fill%3D%22none%22%20stroke%3D%22%23007cbd%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%20stroke-dasharray%3D%225%204%22/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.feature ul li figure .img {
  position: relative;
}
.feature ul li figure .img::before {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--blue03);
  z-index: -1;
}
.feature ul li figure .img img {
  display: block;
  margin: 0 auto;
}
.feature ul li figure figcaption {
  margin: 1rem 0 0;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 36.4rem 0 3.5rem;
    contain: paint;
  }
  .feature::before {
    min-width: 2000px;
  }
  .feature::after {
    width: 1200px;
    height: 25.6rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: url(../img/index_feature_bg01.png) no-repeat bottom left 11.5rem/contain;
  }
  .feature ul {
    padding: 0 2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10.4rem 4rem;
  }
  .feature ul li {
    width: 36rem;
    padding: 0;
    margin: 0;
  }
  .feature ul li figure .tit {
    font-size: 2.2rem;
    margin: 0 0 3.4rem;
    gap: 0 0.6rem;
  }
  .feature ul li figure .tit::before {
    min-width: 8.25rem;
    height: 7.43rem;
    font-size: 2.8rem;
  }
  .feature ul li figure .tit::after {
    bottom: -1rem;
    right: 2.3rem;
    width: 26rem;
    height: 0.86rem;
  }
  .feature ul li figure .img {
    position: relative;
  }
  .feature ul li figure .img::before {
    height: 15rem;
    top: -7rem;
  }
  .feature ul li figure .img img {
    display: block;
    margin: 0 auto;
  }
  .feature ul li figure figcaption {
    padding: 0 3rem;
    margin: 1rem 0 0;
  }
}
/* ループスライダー -------------------------------------- */
.loop_slider {
  padding: 4rem 0 0;
  contain: paint;
  position: relative;
  z-index: 2;
}
.loop_slider::before {
  content: "";
  display: block;
  width: 160%;
  height: 4rem;
  background: url(../img/a_bg_town01.png) repeat-x bottom/contain;
  position: absolute;
  left: 0;
  top: 0;
}
.loop_slider .bg {
  background: var(--brown09);
  padding: 2rem 0;
}
.loop_slider .bg ul {
  display: block;
  width: 100%;
  height: auto;
}
.loop_slider .bg ul li figure {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .loop_slider {
    padding: 12.3rem 0 0;
  }
  .loop_slider::before {
    height: 12.3rem;
  }
  .loop_slider .bg {
    padding: 5rem 0;
  }
  .loop_slider .bg ul {
    min-width: 2000px;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .header::before {
  content: none;
}
body:not(.index) .header .wrap {
  padding: 1.8rem 1rem 1rem;
  height: auto;
}
body:not(.index) .header .wrap .logo--low {
  padding: 0.4rem 0;
  margin: 0 auto 0 0;
  width: 80%;
  height: 4rem;
}
body:not(.index) .header .wrap .logo--low a {
  background: url(../img/logo_low.svg) no-repeat center center/contain;
}
body:not(.index) .header .wrap .head_access {
  text-align: center;
  padding: 0.4rem 1rem;
  margin: 1.4rem auto 0;
  font-size: 1.2rem;
}
body:not(.index) .header .wrap .head_access ul {
  text-align: center;
  display: inline-block;
}
body:not(.index) .header .wrap .head_access ul li {
  padding: 0.2rem 0;
  text-align: right;
}
body:not(.index) .header .wrap .head_access ul li span {
  margin-right: 1rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header .wrap {
    margin: 0 auto;
    padding: 1rem 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 0 1.9rem;
  }
  body:not(.index) .header .wrap .logo--low {
    padding: 0;
    margin: 0;
    width: 46.4rem;
    height: auto;
  }
  body:not(.index) .header .wrap .head_access {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 0 0 auto;
    padding: 0;
    font-size: 1.8rem;
    width: 20rem;
  }
}
body:not(.index) .header .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header .breadcrumb_list {
    display: -webkit-flex;
    display: flex;
  }
}
body:not(.index) .footer .breadcrumb_list {
  display: -webkit-flex;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  color: var(--gray01);
  padding: 0 1.2rem;
  margin: 0 0 3rem;
}
@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-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: 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: "2";
  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;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 14rem 0 10rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 48em), print {
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
/* ドクター紹介 */
.img_dr img {
  display: block;
  margin: 1rem auto;
  max-width: 80%;
  height: auto;
}
@media screen and (min-width: 48em), print {
  .img_dr {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0 6rem;
  }
  .img_dr > img {
    max-width: 30%;
  }
}
@media screen and (min-width: 48em), print {
  .img_dr--right > img {
    order: 2;
  }
}

.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 {
  width: 100%;
  height: auto;
  padding: 1rem 0.6rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  font-size: 1.4rem;
  color: var(--gray02);
  background: var(--brown11);
}
@media screen and (min-width: 48em), print {
  *[id*=slider] figure figcaption {
    padding: 1.4rem 3rem;
    font-size: 2rem;
  }
}
*[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: grab;
}
*[id*=thumbnail_slider] .slick-list .thumbnail-item img:active {
  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(--gray03);
}
*[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(--gray03);
}

.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-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-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;
  }
}