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

/* ================================
   基本設定
================================ */
:root {
  --bp: 600px;
  --wrap: 1200px;
  /* 追従ボタンが被さる実効幅（ボタン幅 + 余白） */
}

/* ================================
   ユーティリティ
================================ */
/* ================================
   1) fluid（px → px）
================================ */
/* ================================
   2) fluid-rem（px指定 → remで返す）
   計算は数値で行い、最後にremにする（単位事故回避）
================================ */
/* ================================
   mixins
================================ */
:root {
  --main-bg-color: brown;
}

/* ----------------------------------------------------------------------------------
リセット　_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;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 2.6rem 1.8rem 1.8rem;
  margin-bottom: 2rem;
  border-radius: 15px;
}
@media screen and (min-width: 600px), print {
  *[class*=frame_] {
    padding: 4rem 8rem 4rem;
    margin-bottom: 3rem;
    border-radius: 30px;
  }
}
*[class*=frame_].frame_01 {
  background: #f5f9ed;
}
*[class*=frame_].frame_02 {
  background: #ebf5fc;
}

/* 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: 600px), 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: 600px), 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: 600px), 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;
  border-radius: 15px;
  font-size: 1.4rem;
  table-layout: fixed;
  background: #fff;
}
.tbl_time caption {
  padding: 0.8rem;
  border: 1px solid #83bb28;
  border-top: none;
  background: #fff;
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  border-radius: 0 0 15px 15px;
}
.tbl_time caption .close_txt .ex {
  padding: 0.2rem 0.4rem;
  margin-right: 0.4rem;
  background: #f5f9ed;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: #83bb28;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-radius: 15px 0 0 0;
  border-left: 1px solid #83bb28;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 15px 0 0;
  border-right: 1px solid #83bb28;
}
.tbl_time tr th.time {
  padding: 0.4rem 0;
  background: #fff;
  border-left: 1px solid #83bb28;
  border-bottom: 1px solid #cccccc;
  font-size: 1.2rem;
}
.tbl_time tr th.time span {
  display: block;
  font-size: 1rem;
}
.tbl_time tr td {
  text-align: center;
  color: #059669;
  padding: 0.8rem 0.4rem;
  background: #fff;
  border-bottom: 1px solid #cccccc;
  line-height: 1;
}
.tbl_time tr td:last-child {
  border-right: 1px solid #83bb28;
}

@media screen and (min-width: 600px), print {
  .tbl_time {
    font-size: clamp(1.2rem, 0.4rem + 1.3333333333vw, 2rem);
  }
  .tbl_time caption {
    border-radius: 0 0 30px 30px;
    padding: 2rem 2.3rem;
  }
  .tbl_time caption .close_txt .ex {
    padding: 0.2rem 0.8rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.4rem 0;
    font-size: clamp(1.2rem, 0.4rem + 1.3333333333vw, 2rem);
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
    border-radius: 30px 0 0 0;
  }
  .tbl_time tr th[scope=col]:last-child {
    border-radius: 0 30px 0 0;
    padding-right: 1rem;
  }
  .tbl_time tr th.time {
    padding: 1rem 0;
    font-size: clamp(1.2rem, 0.4rem + 1.3333333333vw, 2rem);
  }
  .tbl_time tr th.time span {
    font-size: clamp(1rem, 0.6rem + 0.6666666667vw, 1.4rem);
  }
  .tbl_time tr td {
    font-size: clamp(1.4rem, 1rem + 0.6666666667vw, 1.8rem);
    padding: 1.2rem 0;
  }
  .tbl_time tr td:last-child {
    padding-right: 1rem;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.webp) no-repeat center center/cover;
  font-size: 2.2rem;
  text-align: center;
  max-width: 100%;
  margin: 0 0 3rem;
  min-height: 10rem;
  color: #333333;
  font-weight: 500;
}
.tit_01 span {
  min-height: 10rem;
  padding: 2rem 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.tit_01 span::before {
  content: "";
  display: block;
  width: auto;
  height: 12rem;
  background: url(../img/index_bg_parts_leaf03.webp) no-repeat center/contain;
  aspect-ratio: 600/341;
  position: absolute;
  top: 0;
  right: -4rem;
  z-index: -1;
}

.tit_02 {
  color: #333333;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 1.6rem;
  padding: 0;
  line-height: 1.2;
}
.tit_02::before {
  content: "";
  display: block;
  width: 100%;
  height: 1.6rem;
  background: url(../img/tit_02_parts01.svg) no-repeat center/contain;
}
.tit_02 .eng_txt {
  display: block;
  font-size: 1.2rem;
  color: #83bb28;
  margin: 0.4rem 0 0;
}
.tit_02--blog {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 0 0.8rem;
}
.tit_02--blog::before {
  content: none;
}
.tit_02--blog .eng_txt {
  display: inline-block;
  margin: 0;
}
.tit_02--feature {
  text-align: center;
  padding-top: 8rem;
  position: relative;
}
.tit_02--feature::after {
  content: "";
  display: block;
  width: 100%;
  height: 7rem;
  background: url(../img/tit_02--feature.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
}
.tit_02--schedule {
  position: relative;
}
.tit_02--schedule::after {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  aspect-ratio: 1/1;
  background: url(../img/tit_02--schedule.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}
.tit_02--info {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 0 0.8rem;
}
.tit_02--info::before {
  content: none;
}
.tit_02--info .eng_txt {
  display: inline-block;
  margin: 0;
}

body:not(.index) .tit_02::after {
  content: "";
  display: block;
  width: 2rem;
  height: 0.2rem;
  margin: 0.8rem auto 0;
  background: #83bb28;
}

.tit_03 {
  color: #ffffff;
  background: #83bb28;
  padding: 0.4rem 1rem 0.4rem 2rem;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 2.4rem;
  position: relative;
}
.tit_03::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: calc(100% - 0.8rem);
  background: #ddedc3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 0.4rem;
}

.tit_04 {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 0 0.8rem;
  margin: 0 0 2rem;
  border-bottom: 1px solid #83bb28;
}

.tit_05 {
  color: #513401;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

@media screen and (min-width: 600px), print {
  .tit_01 {
    font-size: 4.2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .tit_01 span {
    width: 1200px;
    min-height: 24rem;
    padding: 2rem 4rem;
    margin: 0 auto;
  }
  .tit_01 span::before {
    height: 140%;
    top: -4rem;
  }
  .tit_02 {
    font-size: clamp(3rem, 1.8rem + 2vw, 4.2rem);
    margin: 0 0 2rem;
  }
  .tit_02::before {
    height: clamp(2rem, 1.4rem + 1vw, 2.6rem);
  }
  .tit_02 .eng_txt {
    font-size: clamp(1.2rem, 0.6rem + 1vw, 1.8rem);
  }
  .tit_02--blog {
    font-size: clamp(2.4rem, 1.2rem + 2vw, 3.6rem);
    margin: 0 0 2rem;
    letter-spacing: 0.2rem;
    gap: 0 2rem;
  }
  .tit_02--feature {
    padding: 19rem 0 0;
  }
  .tit_02--feature::after {
    height: 16rem;
  }
  .tit_02--schedule {
    margin-top: 5rem;
  }
  .tit_02--schedule::after {
    width: 24rem;
    height: 24rem;
  }
  .tit_02--info {
    font-size: clamp(2.4rem, 1.2rem + 2vw, 3.6rem);
    margin: 0 0 2rem;
    letter-spacing: 0.2rem;
    gap: 0 2rem;
  }
  body:not(.index) .tit_02 {
    margin: 0 0 5rem;
  }
  body:not(.index) .tit_02::after {
    content: "";
    width: 5rem;
    margin: 1.2rem auto 0;
  }
  .tit_03 {
    font-size: 3.6rem;
    margin: 0 0 4rem;
    padding: 1.2rem 2rem 1.2rem 3rem;
    border-radius: 10px;
  }
  .tit_03::before {
    width: 0.4rem;
    border-radius: 10px;
    height: calc(100% - 2.4rem);
    left: 1.4rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 > li {
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 600px), print {
  .lst_ul01 > li {
    padding-left: 3rem;
  }
}
.lst_ul01 > li:last-child {
  padding-bottom: 0;
}
.lst_ul01 > li::before {
  content: "●";
  color: #53aae7;
  position: absolute;
  left: 0;
  top: 0;
}
.lst_ul01 > li.none::before {
  content: none;
}
@media screen and (min-width: 600px), 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: 600px), 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_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: 600px), 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: 600px), print {
  .lst_dl01 div {
    margin: 0 0 1.6rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .lst_dl01 div dt {
    width: 14rem;
  }
  .lst_dl01 div dd {
    flex: 1;
  }
}
.lst_dl02 dt {
  padding: 0.8rem;
  text-align: center;
  color: #83bb28;
  font-weight: 700;
  background: #f5f9ed;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 600px), print {
  .lst_dl02 dt {
    padding: 2rem 2rem;
  }
}
.lst_dl02 dd {
  padding: 0.8rem;
  margin: 0 0 1rem;
  border: 1px solid #cccccc;
  border-top: none;
}
@media screen and (min-width: 600px), print {
  .lst_dl02 dd {
    padding: 4rem 4rem;
    margin: 0 0 2rem;
  }
}

/* フレックス回り -------------------------------------- */
.flex3 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 600px), 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 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  width: 80%;
  background: #fff;
  color: #0f89de;
  border: 1px solid #0f89de;
  text-align: center;
  font-weight: 500;
  padding: 0.6rem 2rem;
  border-radius: 25px;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
}
*[class*=btn_] a::after {
  content: "\e804";
  font-family: "fontello";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
*[class*=btn_] a:hover {
  background: #0f89de;
  color: #fff;
  opacity: 1;
}
@media screen and (min-width: 600px), print {
  *[class*=btn_] {
    text-align: left;
  }
  *[class*=btn_] a {
    padding: 1.2rem 4rem;
    min-width: 30rem;
    max-width: fit-content;
    border-radius: 120px;
  }
  *[class*=btn_] a::after {
    right: 2rem;
  }
}
*[class*=btn_][class*="--center"] {
  text-align: center;
}

.txt_link {
  color: #0f89de;
  text-decoration: none !important;
  border-bottom: none;
}
.txt_link::before {
  content: "\e804";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.txt_link:hover {
  opacity: 0.8;
  border-bottom: 1px solid #0f89de;
}

.lst_anc {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.8rem 0;
}
.lst_anc li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  border-radius: 40px;
  padding: 0.8rem 2rem;
  text-decoration: none !important;
  color: #0f89de;
  border: 1px solid #0f89de;
  position: relative;
  transition: all 0.4s;
}
.lst_anc li a::after {
  content: "\e804";
  font-family: "fontello";
  font-weight: normal;
  color: #0f89de;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: all 0.4s;
}
.lst_anc li a:hover {
  opacity: 1;
  color: #fff;
  background: #0f89de;
}
.lst_anc li a:hover::after {
  color: #fff;
}
@media screen and (min-width: 600px), print {
  .lst_anc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
  .lst_anc li a {
    height: 100%;
    padding: 1rem 3rem;
    word-break: auto-phrase;
  }
}

/* フローチャート -------------------------------------- */
.flow > li {
  padding: 1.6rem;
  margin: 0 0 6rem;
  border-radius: 10px;
  border: 2px solid #ddedc3;
  position: relative;
}
.flow > li:last-child {
  margin: 0;
}
@media screen and (min-width: 600px), print {
  .flow > li {
    border-radius: 20px;
    border: 3px solid #ddedc3;
    margin: 0 0 7rem;
    padding: 2.2rem 3rem 3rem;
  }
}
.flow > li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #ddedc3;
  border-right: 4rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 4rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 600px), print {
  .flow > li:not(:last-child)::after {
    border-right: 7rem solid transparent;
    border-left: 7rem solid transparent;
    border-top: 3rem solid #ddedc3;
    bottom: -6rem;
  }
}
.flow > li .tit {
  font-weight: bold;
  font-size: 120%;
  margin: 0 0 1rem;
  color: #53a756;
}

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low thead tr th {
  text-align: center;
  padding: 0.8rem 1rem;
}
.tbl_low thead tr th:first-child {
  width: 30%;
}
@media screen and (min-width: 600px), print {
  .tbl_low thead tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr th {
  width: 30%;
  padding: 0.8rem;
  background: #d9edac;
  text-align: center;
  font-weight: normal;
  border: 1px solid #1c825c;
}
@media screen and (min-width: 600px), print {
  .tbl_low tbody tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr td {
  padding: 0.8rem 1rem;
  border: 1px solid #1c825c;
}
@media screen and (min-width: 600px), print {
  .tbl_low tbody tr td {
    padding: 2rem 2rem;
  }
}

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

@media screen and (min-width: 600px), print {
  .tbl_access tr th {
    width: 30%;
  }
}
.overflow_table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
}
.overflow_table > table {
  width: max-content;
  min-width: 100%;
  white-space: nowrap;
}
@media screen and (min-width: 600px), print {
  .overflow_table > table {
    width: 100%;
    white-space: wrap;
  }
}

/* Q&A -------------------------------------- */
.tit_faq {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 2rem 0.8rem 3rem;
  margin: 0 0 2rem;
  position: relative;
  border-bottom: 1px solid #83bb28;
  transition: opacity 0.4s;
}
@media screen and (min-width: 600px), print {
  .tit_faq {
    font-size: 2.4rem;
    padding: 0 3rem 1.4rem 4rem;
  }
}
.tit_faq:hover {
  cursor: pointer;
  opacity: 0.6;
}
.tit_faq::before {
  content: "Q.";
  font-size: 120%;
  font-weight: 700;
  color: #059669;
  position: absolute;
  left: 0;
  top: -0.4rem;
}
.tit_faq::after {
  content: "4";
  font-family: "fontello";
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  display: inline-block;
}
.tit_faq.is-open::after {
  transform: rotateX(180deg);
}
.tit_faq + div {
  display: none;
  position: relative;
  padding-left: 3rem;
}
@media screen and (min-width: 600px), print {
  .tit_faq + div {
    padding-left: 4rem;
  }
}
.tit_faq + div::before {
  content: "A.";
  font-size: 120%;
  font-weight: 700;
  color: #059669;
  position: absolute;
  left: 0;
  top: -0.4rem;
}
@media screen and (min-width: 600px), print {
  .tit_faq + div::before {
    top: -0.4rem;
  }
}

/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
html {
  font-size: 3.125vw;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 600px), print {
  html {
    scroll-padding-top: 120px;
  }
}

body {
  background: #fff;
  color: #333333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}

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

.wrap {
  padding: 0 1rem 0;
}

.main {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 0 6rem;
}
.main a:not([href*=tel]) {
  text-decoration: underline;
}
.main a[class*=btn_] {
  text-decoration: none;
}

@media screen and (min-width: 600px), print {
  html {
    font-size: 62.5%;
  }
  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: min(100%, 1200px);
    margin-inline: auto;
    margin: 0 auto;
    padding: 0;
    /* 1200→600の間で 0→max へ滑らかに増える configの:rootもセットなのでそちらも適用 */
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) and (max-width: calc(1200px - 0.02px)) {
  .wrap {
    padding-inline: clamp(0rem, -2rem + 3.3333333333vw, 2rem);
  }
}
@media screen and (min-width: 600px) and (min-width: 1200px) {
  .wrap {
    padding-inline: 0;
  }
}
@media screen and (min-width: 600px), print {
  .main {
    font-size: clamp(1.4rem, 0.8rem + 1vw, 2rem);
    padding: 0 0 0;
    width: 100%;
    background: #fff;
  }
}
.overflow {
  overflow-x: hidden;
}

/* アイコンフォント -------------------------------------- */
@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: 2rem 1rem 1rem;
}
.header .wrap .logo {
  height: 2.4rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headR ul {
  margin: 1.6rem 0 0;
}
.header .wrap .headR .tel {
  width: 100%;
  font-weight: 500;
  text-align: center;
  padding: 0.6rem 1rem;
  margin: 1.4rem auto;
  max-width: 80%;
  font-size: 1.8rem;
  color: #0f89de;
  border: 1px solid #0f89de;
  border-radius: 100px;
}
.header .wrap .headR .tel::before {
  content: "\e808";
  font-family: "fontello";
  margin-right: 1rem;
}

@media screen and (min-width: 600px), print {
  .header .wrap {
    width: min(100%, 1200px);
    margin-inline: auto;
    margin: 2rem auto 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 0 1rem;
  }
  .header .wrap .logo {
    max-width: 50rem;
    width: 41%;
    height: 5.5rem;
  }
  .header .wrap .headR {
    flex: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    font-size: clamp(1rem, 0.4rem + 1vw, 1.6rem);
    gap: 0 2rem;
  }
  .header .wrap .headR ul {
    margin: 0;
  }
  .header .wrap .headR .tel {
    max-width: 26.4rem;
    margin: 0;
    padding: 1.2rem 1rem;
    font-size: clamp(1rem, -1rem + 3.3333333333vw, 3rem);
    white-space: nowrap;
  }
}
/* 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: #90c9e6;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 5px;
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "찁";
  font-family: "fontello";
  font-size: 2.2rem;
  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: "찂";
}
#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: 4rem 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.4rem;
}
#menu #nav.sp_nav ul li {
  text-align: left;
  margin: 0;
  border-bottom: 1px solid #ccc;
}
#menu #nav.sp_nav ul li a {
  display: block;
  font-weight: 700;
  padding: 1.2rem 1.2rem 1.2rem;
  color: #333333;
  text-decoration: none !important;
}
#menu #nav.sp_nav ul li a.sub {
  position: relative;
}
#menu #nav.sp_nav ul li a.sub::after {
  content: "4";
  color: #006f6b;
  font-family: "fontello";
  display: inline-block;
  position: absolute;
  right: 2rem;
  top: 1.2rem;
  transition: transform 0.2s;
}
#menu #nav.sp_nav ul li a.sub.close::after {
  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: #f5f9ed;
  border-radius: 15px;
  margin: 0.8rem 0 0.8rem;
  padding: 1.8rem 1rem 1.8rem;
  display: flex !important;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -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 ul li {
  width: 100%;
  margin: 0 0 1.4rem;
  border-bottom: none;
  text-align: left;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li:last-child {
  margin: 0;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a {
  position: relative;
  padding: 0 0 0 2rem;
  color: #83bb28;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a::before {
  content: "\e804";
  font-family: "fontello";
  color: #83bb28;
  transition: all 0.2s;
  position: absolute;
  top: 0;
  left: 0;
}
#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: 600px), print {
  .fixed_menu_btn {
    display: none;
  }
  #menu {
    display: block;
    height: 100%;
    position: relative;
    z-index: 202;
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: #fff;
    position: relative;
    z-index: 200;
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    box-shadow: 0.4rem 0 0.4rem rgba(0, 0, 0, 0.16);
  }
  #menu #nav .gnav {
    width: min(100%, 1200px);
    margin-inline: auto;
    margin: auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #menu #nav .gnav > li {
    font-weight: 500;
    width: auto;
  }
  #menu #nav .gnav > li > a {
    display: block;
    text-align: center;
    font-size: clamp(1rem, 0rem + 1.6666666667vw, 2rem);
    line-height: 1.2;
    padding: 1.8rem 0 2.2rem;
    transition: color 0.4s;
    position: relative;
  }
  #menu #nav .gnav > li > a::before {
    content: "";
    height: 2px;
    width: 100%;
    background: #83bb28;
    position: absolute;
    bottom: 1rem;
    left: 0;
    opacity: 0;
    transition: all 0.4s;
  }
  #menu #nav .gnav > li > a.sub::after {
    content: "4";
    font-family: "fontello";
    margin-left: 0.2rem;
  }
  #menu #nav .gnav > li > a:hover {
    opacity: 1;
    color: #83bb28;
  }
  #menu #nav .gnav > li > a:hover::before {
    opacity: 1;
    bottom: 1.4rem;
  }
  #menu #nav .gnav > li .subnav {
    width: 100%;
    max-width: 1200px;
    padding: 6rem 6rem;
    display: none;
    position: absolute;
    top: 4.3rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
  }
  #menu #nav .gnav > li .subnav ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2.2rem 5.2rem;
  }
  #menu #nav .gnav > li .subnav ul li a {
    display: block;
    font-size: clamp(1rem, 0.2rem + 1.3333333333vw, 1.8rem);
    line-height: 1.6;
    font-weight: 700;
    color: #83bb28;
    width: 100%;
    text-align: left;
    transition: all 0.2s;
    position: relative;
    padding-left: 2.8rem;
  }
  #menu #nav .gnav > li .subnav ul li a::before {
    content: "\e804";
    font-weight: normal;
    font-family: "fontello";
    margin-right: 0.4rem;
    color: #83bb28;
    position: absolute;
    top: 0;
    left: 0;
  }
  #menu {
    /* Gナビ　ハイライト */
  }
}
/* サイドバー -------------------------------------- */
/*
.sidebar {
  display: none;
}
@include pc {
  .sidebar {
    display: block;
    .tit {
      background: #6b4f3c;
      color: #f1ffdb;
      font-size: 2.4rem;
      text-align: center;
      padding: 1.8rem;
      border-radius: .8rem;
    }
    .subnav {
      margin: 0;
      padding: 1.0rem 0;
      li {
        a {
          display: block;
          padding: 1.2rem .6rem;
          color: #48341d;
          position: relative;
          font-size: 1.8rem;
          &::after {
            font-family: 'fontello';
            content: '\e807';
            position: absolute;
            right: .6rem;
            color: #d8c8bd;
          }
          &:hover {
            background: #ffedcd;
            color: #ec7218;
            &::after {
              color: #ec7218;
            }
          }
        }
        &:not(:last-child) {
          border-bottom: 1px solid #dedede;
        }
      }
    }
  }
}
*/
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #f4fbff;
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview > .wrap .overviewL {
  border-radius: 15px;
  border: 1px solid #83bb28;
  background: #fff;
  padding: 1.8rem;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
  display: block;
}
.overview > .wrap .overviewL .tbl_gaiyo tr {
  display: block;
  margin: 0 0 1rem;
}
.overview > .wrap .overviewL .tbl_gaiyo tr:last-child {
  margin: 0;
}
.overview > .wrap .overviewL .tbl_gaiyo tr th {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.2rem;
  font-weight: 500;
  color: #059669;
}
.overview > .wrap .overviewL .tbl_gaiyo tr td {
  display: block;
  width: 100%;
  padding: 0.2rem;
}
.overview > .wrap .overviewL .tbl_gaiyo tr td .tel {
  color: #0f89de;
  font-size: 120%;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR .gmap {
  height: 30rem;
  border-radius: 15px;
  border: 1px solid #83bb28;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 100%;
  border-radius: 15px;
}

@media screen and (min-width: 600px), print {
  .overview {
    margin: 0 0 0;
    padding: 6rem 0;
    font-size: clamp(1rem, 0.2rem + 1.3333333333vw, 1.8rem);
    position: relative;
    z-index: 3;
  }
  .overview .clinic_name {
    margin: 0 0 6rem;
  }
  .overview .clinic_name img {
    max-width: 60rem;
  }
  .overview > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 0 clamp(1rem, -4rem + 8.3333333333vw, 6rem);
  }
  .overview > .wrap .overviewL,
  .overview > .wrap .overviewR {
    width: 100%;
    max-width: 57rem;
  }
  .overview > .wrap .overviewL {
    padding: 2.8rem 4rem;
    border-radius: 30px;
  }
  .overview > .wrap .overviewL .tbl_gaiyo {
    display: table;
    table-layout: fixed;
    line-height: 1.8;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr {
    display: table-row;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr th {
    display: table-cell;
    padding: 0 0 3rem;
    vertical-align: top;
    width: clamp(7rem, 3.8rem + 5.3333333333vw, 10.2rem);
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr td {
    display: table-cell;
    padding: 0 0 3rem;
    width: clamp(7rem, -24rem + 51.6666666667vw, 38rem);
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr td .tel {
    font-size: 3rem;
    line-height: 1;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 4rem 0;
  }
  .overview > .wrap .overviewR .tbl_time {
    margin: 0;
  }
  .overview > .wrap .overviewR .gmap {
    flex: 1 1 auto;
    height: auto;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 5.6rem;
  right: 2rem;
  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;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.4rem;
  color: #fff;
  background: #cccccc;
  border-radius: 50%;
}
#pageup a::before {
  text-align: center;
  font-size: 1.6rem;
  font-family: "fontello";
  content: "3";
  color: #fff;
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 600px), print {
  #pageup {
    right: 3rem;
    bottom: 2rem;
  }
  #pageup a {
    width: 7rem;
    height: 7rem;
  }
  #pageup a::before {
    font-size: 2.6rem;
  }
}
.footer_menu {
  width: 100%;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  font-size: 1.4rem;
  border-top: 1px solid #fff;
  display: -webkit-flex;
  display: flex;
}
.footer_menu a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: 500;
  flex: 1 1 auto;
  padding: 0.8rem 0;
}
.footer_menu a::before {
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 1.8rem;
}
.footer_menu a.tel {
  background: #0f89de;
}
.footer_menu a.tel::before {
  content: "\e808";
}
.footer_menu a.rsv {
  background: #dd536a;
}
.footer_menu a.rsv::before {
  content: "\e805";
}
.footer_menu a.line {
  background: #00b900;
}
.footer_menu a.line::before {
  content: "\e807";
}

@media screen and (min-width: 600px), print {
  .footer_menu {
    display: none;
  }
}
.footer {
  text-align: center;
  padding: 0.8rem 0 12rem;
  background: #83bb28;
}
.footer .breadcrumb_list {
  display: none;
}
.footer .footer_link {
  display: none;
}
.footer .copy {
  display: block;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 600px), print {
  .footer {
    padding: 0;
  }
  .footer .footer_link {
    padding: 3rem 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    background: #ffffff;
    gap: 1rem 0;
  }
  .footer .footer_link > * {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem 0;
  }
  .footer .footer_link > * ul {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  .footer .footer_link > * ul li {
    display: inline-block;
    font-size: clamp(1rem, 0rem + 1.6666666667vw, 2rem);
  }
  .footer .footer_link > * ul li:not(:last-child)::after {
    content: "|";
    margin: 0 0.4rem;
  }
  .footer .footer_link > * ul li a {
    opacity: 1;
  }
  .footer .footer_link > * ul li a span {
    display: none;
  }
  .footer .footer_link > * ul li a:hover {
    text-decoration: underline;
  }
  .footer .footer_link > * ul li.treatment {
    display: none;
  }
  .footer .copy {
    font-size: clamp(1rem, 0rem + 1.6666666667vw, 2rem);
    padding: 2rem 0 10rem;
  }
}
/* PC固定メニュー -------------------------------------- */
.fixed_menu {
  display: none;
}

@media screen and (min-width: 600px), print {
  .fixed_menu {
    position: fixed;
    top: 18rem;
    right: 2.7rem;
    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: 1rem 0;
    z-index: 201;
  }
  .fixed_menu a {
    letter-spacing: 0;
    line-height: 1.4;
    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;
    border: 1px solid #fff;
    border-radius: 40px;
    line-height: 1.3;
    padding: 2.8rem 0.4rem;
    color: #fff;
    text-align: center;
    font-weight: 500;
    width: 8rem;
    height: auto;
    font-size: clamp(1rem, -0.2rem + 2vw, 2.2rem);
  }
  .fixed_menu a::before {
    text-align: center;
    font-size: clamp(1.6rem, -0.8rem + 4vw, 4rem);
    font-family: "fontello";
    font-weight: normal;
  }
  .fixed_menu a.tel {
    background: #0f89de;
  }
  .fixed_menu a.tel::before {
    content: "\e808";
  }
  .fixed_menu a.rsv {
    background: #dd536a;
  }
  .fixed_menu a.rsv::before {
    content: "\e805";
  }
  .fixed_menu a.line {
    background: #00b900;
  }
  .fixed_menu a.line::before {
    content: "\e807";
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
.keyvsl_area {
  padding: 0 0 0;
  position: relative;
  z-index: 2;
  contain: paint;
}
.keyvsl_area #keyvsl {
  opacity: 0;
  transition: 1s opacity;
  margin: 0;
  max-width: 100%;
  height: 20rem;
  overflow: hidden;
}
.keyvsl_area #keyvsl .slick-list,
.keyvsl_area #keyvsl .slick-track {
  height: 100%;
}
.keyvsl_area #keyvsl .slide {
  height: 100%;
}
.keyvsl_area #keyvsl .slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.keyvsl_area .kv_contents {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.keyvsl_area .kv_contents .kv_txt {
  padding: 2rem;
}
.keyvsl_area .kv_contents .kv_txt .line_01 {
  font-size: 1.4rem;
}
.keyvsl_area .kv_contents .kv_txt .line_01 .size_s {
  font-size: 1.2rem;
}
.keyvsl_area .kv_contents .kv_txt .line_01 .glow {
  font-weight: 500;
  filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
}

@media screen and (min-width: 600px), print {
  .keyvsl_area #keyvsl {
    max-width: 100%;
    height: 76rem;
  }
  .keyvsl_area .kv_contents {
    width: min(100%, 1200px);
    margin-inline: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .keyvsl_area .kv_contents .kv_txt {
    padding: 0 0 9rem 2rem;
  }
  .keyvsl_area .kv_contents .kv_txt .line_01 {
    font-size: clamp(3rem, 1.8rem + 2vw, 4.2rem);
    line-height: 1.6;
  }
  .keyvsl_area .kv_contents .kv_txt .line_01 .size_s {
    font-size: 3.2rem;
  }
  .keyvsl_area .kv_contents .kv_txt .line_01 .glow {
    font-weight: 500;
    filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
  }
}
/* お知らせ＋診療時間表 -------------------------------------- */
.info-column {
  padding: 2rem 0 2rem;
}
.info-column .wrap {
  position: relative;
}
.info-column .wrap .bg_parts {
  pointer-events: none;
}
.info-column .wrap .bg_parts .bg01::before {
  position: absolute;
  content: "";
  display: block;
  width: 11rem;
  height: 7rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/index_bg_parts_leaf01.webp);
  right: 0;
  top: 0;
}

@media screen and (min-width: 600px), print {
  .info-column {
    padding: 8rem 0 10.4rem;
  }
  .info-column .wrap .bg_parts .bg01::before {
    width: 60rem;
    height: 37.9rem;
    background-image: url(../img/index_bg_parts_leaf01.webp);
    right: -26rem;
    top: -3.2rem;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 4rem 0 4rem;
}
.info .info_box {
  padding: 1.8rem;
  border-radius: 15px;
  background: #f5f9ed;
}
.info .info_box #news_item .accordion-container {
  margin: 0;
  line-height: 1.4;
  padding: 0;
  max-height: 20rem;
  overflow-y: scroll;
}
.info .info_box #news_item .accordion-container .accordion-item {
  padding-left: 0.8rem;
}
.info .info_box #news_item .accordion-container .accordion-item::after {
  content: "";
  display: block;
  padding: 0.4rem 0 0;
  margin: 0 0 0.4rem;
  border-bottom: 2px dotted #cccccc;
}
.info .info_box #news_item .accordion-container .accordion-item > summary {
  cursor: pointer;
  transition: opacity 0.4s;
  position: relative;
  padding-left: 1.8rem;
  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-direction: column;
  flex-direction: column;
}
.info .info_box #news_item .accordion-container .accordion-item > summary:hover {
  opacity: 0.8;
}
.info .info_box #news_item .accordion-container .accordion-item > summary::before {
  content: "\e802";
  font-family: "fontello";
  font-weight: normal;
  color: #83bb28;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.info .info_box #news_item .accordion-container .accordion-item > summary .accordion-date {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #868686;
}
.info .info_box #news_item .accordion-container .accordion-item > summary .accordion-title {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 0.4rem;
  display: table;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.info .info_box #news_item .accordion-container .accordion-item > summary.accordion-header::-webkit-details-marker {
  display: none;
}
.info .info_box #news_item .accordion-container .accordion-item[open] > summary::before {
  transform: rotateX(180deg);
}
.info .info_box #news_item .accordion-container .accordion-item .accordion-content {
  font-size: 1.4rem;
}
.info .info_box #news_item .accordion-container .accordion-item .accordion-content .content-inner p:first-child {
  margin: 0.4rem 0 1rem;
}

@media screen and (min-width: 600px), print {
  .info {
    padding: 0 0 12rem;
  }
  .info .info_box {
    padding: 5rem 4rem 4.5rem;
    border-radius: 30px;
  }
  .info .info_box #news_item .accordion-container {
    max-height: 51rem;
    min-height: 30rem;
    padding-right: 6rem;
    padding-top: 2rem;
  }
  .info .info_box #news_item .accordion-container .accordion-item {
    padding-left: 0;
  }
  .info .info_box #news_item .accordion-container .accordion-item::after {
    padding: 2rem 0 0;
    margin: 0 0 2rem;
  }
  .info .info_box #news_item .accordion-container .accordion-item > summary {
    padding-left: 3rem;
  }
  .info .info_box #news_item .accordion-container .accordion-item > summary .accordion-date {
    font-size: clamp(1.2rem, 0.4rem + 1.3333333333vw, 2rem);
    margin-bottom: 1.4rem;
  }
  .info .info_box #news_item .accordion-container .accordion-item > summary .accordion-title {
    font-size: clamp(1.8rem, 1.2rem + 1vw, 2.4rem);
    margin-bottom: 0.4rem;
  }
  .info .info_box #news_item .accordion-container .accordion-item .accordion-content {
    padding-left: 0;
    font-size: clamp(1.2rem, 0.4rem + 1.3333333333vw, 2rem);
    line-height: 1.8;
  }
  .info .info_box #news_item .accordion-container .accordion-item .accordion-content .content-inner p:first-child {
    margin: 1.2rem 0 1rem;
  }
}
/* 診療時間表 -------------------------------------- */
@media screen and (min-width: 600px), print {
  .schedule section {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .schedule section .tit_02 {
    width: 20%;
  }
  .schedule section .tbl_time {
    width: 73.3%;
  }
}
/* 診療内容 -------------------------------------- */
.treatment-menu {
  padding: 2rem 0 2rem;
  position: relative;
  z-index: 1;
}
.treatment-menu::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  background: url(../img/index_treatment-menu-bg01.webp) no-repeat center/cover, #fffaf0;
}
.treatment-menu .wrap {
  position: relative;
}
.treatment-menu .wrap ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.treatment-menu .wrap ul 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;
  background: url(../img/index_treatment-menu-parts01.svg) no-repeat center/contain;
  text-decoration: none;
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  aspect-ratio: 1/1;
  text-align: center;
  position: relative;
}
.treatment-menu .wrap ul li a::before {
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.treatment-menu .wrap ul li a::after {
  content: "\e804";
  font-family: "fontello";
  color: #83bb28;
  position: absolute;
  bottom: 1.8rem;
}
.treatment-menu .wrap ul li a.internal::before {
  background-image: url(../img/index_treatment-menu_internal.svg);
}
.treatment-menu .wrap ul li a.cardiovascular::before {
  background-image: url(../img/index_treatment-menu_cardiovascular.svg);
}
.treatment-menu .wrap ul li a.fever::before {
  background-image: url(../img/index_treatment-menu_fever.svg);
}
.treatment-menu .wrap ul li a.lifestyle_related::before {
  background-image: url(../img/index_treatment-menu_lifestyle_related.svg);
}
.treatment-menu .wrap ul li a.breathlessness::before {
  background-image: url(../img/index_treatment-menu_breathlessness.svg);
}
.treatment-menu .wrap ul li a.swelling::before {
  background-image: url(../img/index_treatment-menu_swelling.svg);
}
.treatment-menu .wrap ul li a.sas::before {
  background-image: url(../img/index_treatment-menu_sas.svg);
}
.treatment-menu .wrap ul li a.obesity::before {
  background-image: url(../img/index_treatment-menu_obesity.svg);
}
.treatment-menu .wrap ul li a.andropause::before {
  background-image: url(../img/index_treatment-menu_andropause.svg);
}
.treatment-menu .wrap ul li a.visit::before {
  background-image: url(../img/index_treatment-menu_visit.svg);
}
.treatment-menu .wrap ul li a.checkup::before {
  background-image: url(../img/index_treatment-menu_checkup.svg);
}
.treatment-menu .wrap ul li a.vaccination::before {
  background-image: url(../img/index_treatment-menu_vaccination.svg);
}
.treatment-menu .wrap ul li a.slit::before {
  background-image: url(../img/index_treatment-menu_slit.svg);
}
.treatment-menu .wrap ul li a.applewatch::before {
  background-image: url(../img/index_treatment-menu_applewatch.svg);
}
.treatment-menu .wrap .bg01::before {
  position: absolute;
  content: "";
  display: block;
  width: 11rem;
  height: 7rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/index_bg_parts_leaf02.webp);
  left: 0;
  top: -4rem;
}

@media screen and (min-width: 600px), print {
  .treatment-menu {
    padding: 8rem 0 12rem;
  }
  .treatment-menu::before {
    min-width: 2000px;
    height: 100%;
  }
  .treatment-menu .wrap ul {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clump_size(10px, 30px) clump_sizse(10px 20px);
  }
  .treatment-menu .wrap ul li a {
    position: relative;
    font-size: clamp(1.6rem, 1.2rem + 0.6666666667vw, 2rem);
    padding: 1rem 2.6rem 1rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  .treatment-menu .wrap ul li a::before {
    width: 100%;
    height: 8rem;
    margin-bottom: 1rem;
  }
  .treatment-menu .wrap ul li a::after {
    font-size: 2rem;
    position: absolute;
    bottom: 2.8rem;
  }
  .treatment-menu .wrap .bg01::before {
    width: 60rem;
    height: 37.9rem;
    left: -30.5rem;
    top: -41.1rem;
  }
}
/* ごあいさつ -------------------------------------- */
.greeting {
  padding: 2rem 0 2rem;
  background-color: #f5f9ed;
}
.greeting .wrap {
  position: relative;
  z-index: 1;
}
.greeting .wrap .img figcaption {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}
.greeting .wrap .img figcaption span {
  display: block;
  font-size: 1.8rem;
}
.greeting .wrap .contents {
  padding: 0 1.2rem;
  line-height: 1.8;
}
.greeting .wrap .bg_parts {
  pointer-events: none;
}
.greeting .wrap .bg_parts .bg01::before {
  position: absolute;
  content: "";
  display: block;
  width: 11rem;
  height: 7rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/index_bg_parts_leaf03.webp);
  right: 0;
  top: -6rem;
}
.greeting .wrap .bg_parts02 .bg02::before {
  position: absolute;
  content: "";
  display: block;
  width: auto;
  height: 8rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  background-image: url(../img/index_greeting_bg01.webp);
  left: 0;
  top: -2rem;
  z-index: -1;
  aspect-ratio: 1000/580;
}
.greeting .wrap .bg_parts02 .bg03::before {
  position: absolute;
  content: "";
  display: block;
  width: auto;
  height: 8rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  background-image: url(../img/index_greeting_bg02.webp);
  right: 0;
  bottom: -3rem;
  z-index: -1;
  aspect-ratio: 1000/580;
}

@media screen and (min-width: 600px), print {
  .greeting {
    padding: 12rem 0 13rem;
    container: tab/inline-size;
  }
  .greeting .wrap {
    position: relative;
  }
  .greeting .wrap .tit_02 {
    margin: 0 0 5rem auto;
    width: min(58.333%, 70rem);
  }
  .greeting .wrap .img {
    width: clamp(18rem, 30vw, 40rem);
    position: absolute;
    left: 0;
    top: -2rem;
  }
  .greeting .wrap .img figcaption {
    margin: 2rem 0 0;
    font-size: clamp(1.4rem, 1rem + 0.6666666667vw, 1.8rem);
  }
  .greeting .wrap .img figcaption span {
    font-size: clamp(2rem, 1rem + 1.6666666667vw, 3rem);
  }
  .greeting .wrap .contents {
    width: min(58.333%, 70rem);
    padding: 0;
    margin: 0 0 0 auto;
    line-height: 1.8;
  }
  .greeting .wrap .contents .btn_link {
    margin: 3rem auto 0;
  }
  .greeting .wrap .bg_parts .bg01::before {
    width: 60rem;
    height: 34.1rem;
    right: -30.2rem;
    top: -38rem;
  }
  .greeting .wrap .bg_parts02 {
    position: absolute;
    height: 100%;
    min-width: 2000px;
    width: 100vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .greeting .wrap .bg_parts02 .bg02::before {
    width: 100vw;
    height: 58rem;
    left: min(0px, 50% - 1000px);
    top: -12rem;
  }
  .greeting .wrap .bg_parts02 .bg03::before {
    width: 100rem;
    height: 58rem;
    right: min(0px, 50% - 1000px);
    bottom: -13rem;
  }
}
/* クリニックの特徴と方針 -------------------------------------- */
.feature {
  padding: 2rem 0 2rem;
}
.feature .wrap {
  position: relative;
  z-index: 1;
}
.feature .wrap ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  counter-reset: num_feature;
  gap: 2rem 1.8rem;
}
.feature .wrap ul li {
  counter-increment: num_feature 1;
}
.feature .wrap ul li figure {
  margin: 0;
  padding: 0;
}
.feature .wrap ul li figure .img {
  display: block;
  position: relative;
}
.feature .wrap ul li figure .img::before {
  content: counter(num_feature) ".";
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  font-size: 2.8rem;
  color: #83bb28;
}
.feature .wrap ul li figure figcaption .tit {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 1rem auto 1rem;
  font-weight: 500;
  color: #059669;
}
.feature .wrap ul li figure figcaption .txt {
  text-align: justify;
  line-height: 1.8rem;
  font-size: 1.4rem;
}
.feature .wrap .bg_parts {
  pointer-events: none;
}
.feature .wrap .bg_parts .bg01::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 20%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/index_feature_bg01.webp);
  right: 0;
  top: 0;
  z-index: -1;
}

@media screen and (min-width: 600px), print {
  .feature {
    padding: 8rem 0 12rem;
  }
  .feature .wrap {
    display: grid;
    gap: 5rem 4.2rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .feature .wrap ul {
    display: contents;
  }
  .feature .wrap ul li figure {
    padding: 0 1rem;
  }
  .feature .wrap ul li figure .img::before {
    bottom: -3rem;
    left: -1rem;
    font-size: clamp(4rem, 2rem + 3.3333333333vw, 6rem);
  }
  .feature .wrap ul li figure .img img {
    max-width: 100%;
    width: 100%;
  }
  .feature .wrap ul li figure figcaption .tit {
    font-size: clamp(2rem, 1.2rem + 1.3333333333vw, 2.8rem);
    line-height: 1.4;
    margin: 1rem auto 1rem;
  }
  .feature .wrap ul li figure figcaption .txt {
    line-height: 1.8;
    font-size: clamp(1.4rem, 0.8rem + 1vw, 2rem);
    margin: 0;
  }
  .feature .wrap .bg_parts .bg01::before {
    width: 100%;
    min-width: 2000px;
    height: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
/* 背景 -------------------------------------- */
.bg_area01 {
  background: #fffaf0;
  padding: 2rem 0 2rem;
}
.bg_area01 .wrap {
  position: relative;
  z-index: 1;
}
.bg_area01 .wrap .bg_parts {
  pointer-events: none;
}
.bg_area01 .wrap .bg_parts .bg01::before {
  position: absolute;
  content: "";
  display: block;
  width: 11rem;
  height: 7rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/index_bg_parts_leaf01.webp);
  right: 0;
  top: -2rem;
}
.bg_area01 .wrap .bg_parts .bg02::before {
  position: absolute;
  content: "";
  display: block;
  width: 11rem;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/index_bg_area01_bg01.svg);
  left: 0;
  top: -2rem;
  z-index: -1;
}
.bg_area01 .wrap .bg_parts .bg03::before {
  position: absolute;
  content: "";
  display: block;
  width: 11rem;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/index_bg_area01_bg02.svg);
  right: 2rem;
  top: -2rem;
  z-index: -1;
}

@media screen and (min-width: 600px), print {
  .bg_area01 {
    padding: 12rem 0 8rem;
    position: relative;
    z-index: 2;
  }
  .bg_area01 .wrap .bg_parts .bg01::before {
    width: 60rem;
    height: 37.8rem;
    right: -20rem;
    top: -24rem;
  }
  .bg_area01 .wrap .bg_parts .bg02::before {
    width: 100.6rem;
    height: 305.9rem;
    left: -66rem;
    top: 0;
  }
  .bg_area01 .wrap .bg_parts .bg03::before {
    width: 100.6rem;
    height: 305.9rem;
    right: -62.6rem;
    top: -12rem;
  }
}
/* 予約システム導入 -------------------------------------- */
.rsv_system01 {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.4rem 2rem;
}
.rsv_system01 .tit {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 2rem;
}
.rsv_system01 .img_item {
  max-width: 60%;
  margin: 0.8rem auto;
  display: block;
}
.rsv_system01 .logo {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}
.rsv_system01 .frame_radius {
  padding: 0.8rem;
  border: 3px solid #eb556e;
  border-radius: 15px;
}
.rsv_system01 .flex .right {
  margin: 2rem 0 0;
  padding: 0;
  border: 3px solid #eb556e;
  border-radius: 3px;
}
.rsv_system01 .flex .right .tit_sub {
  margin: 0 0 0;
  padding: 0.6rem 0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  background: #eb556e;
}
.rsv_system01 .flex .right .tit_sub .size_s {
  font-size: 80%;
}
.rsv_system01 .flex .right img {
  display: block;
  width: 90%;
  margin: 1.2rem auto;
}
.rsv_system01 .signup {
  margin: 0.8rem auto 0;
}

@media screen and (min-width: 600px), print {
  .rsv_system01 {
    padding: 6rem 6rem 6rem;
    position: relative;
  }
  .rsv_system01 .tit {
    font-size: clamp(2rem, 0.6rem + 2.3333333333vw, 3.4rem);
    margin: 0 0 1rem;
    padding-right: clamp(34rem, 29rem + 8.3333333333vw, 39rem);
  }
  .rsv_system01 .img_item {
    max-width: 35rem;
    width: 29.17%;
    margin: 0;
    position: absolute;
    top: 6rem;
    right: 6rem;
  }
  .rsv_system01 .txt_box {
    padding-right: clamp(34rem, 28rem + 10vw, 40rem);
    margin: 0 0 5rem;
  }
  .rsv_system01 .logo {
    max-width: 40rem;
    width: 60%;
  }
  .rsv_system01 .frame_radius {
    padding: 3rem 2rem 3.4rem;
    border-radius: 30px;
    text-align: center;
  }
  .rsv_system01 .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 0 6rem;
  }
  .rsv_system01 .flex .right {
    flex: 1 1 auto;
    margin: 0;
    padding: 0;
    border: 5px solid #eb556e;
    border-radius: 6px;
  }
  .rsv_system01 .flex .right .tit_sub {
    padding: 0.6rem 0;
    font-size: clamp(1.2rem, -0.6rem + 3vw, 3rem);
  }
  .rsv_system01 .flex .right .tit_sub .size_s {
    font-size: clamp(1rem, 0rem + 1.6666666667vw, 2rem);
  }
  .rsv_system01 .flex .right img {
    width: 41.8rem;
    margin: 4.6rem auto;
  }
  .rsv_system01 .signup {
    margin: 4rem auto 0;
  }
}
/* お電話でもご予約可能 -------------------------------------- */
.rsv_system02 {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 0 0;
  margin: 4rem 0 4rem;
  overflow: hidden;
}
.rsv_system02::after {
  content: "";
  width: 100%;
  height: 15rem;
  display: block;
  background: url(../img/index_rsv_system02_bg01.webp) no-repeat center top/cover;
}
.rsv_system02 .tit {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.rsv_system02 .tel {
  width: 100%;
  text-align: center;
  padding: 0.6rem 1rem;
  margin: 1.4rem auto;
  max-width: 80%;
  font-size: 1.8rem;
  color: #0f89de;
  border: 1px solid #0f89de;
  border-radius: 100px;
}
.rsv_system02 .tel::before {
  content: "\e808";
  font-family: "fontello";
  margin-right: 1rem;
}
.rsv_system02 .txt {
  text-align: center;
  font-weight: 500;
}
.rsv_system02 .kome {
  padding: 0 1rem;
}
.rsv_system02 .kome span {
  display: inline-block;
  font-weight: 400;
  position: relative;
  padding-left: 1.1em;
}
.rsv_system02 .kome span::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 600px), print {
  .rsv_system02 {
    border-radius: 30px;
    padding: 6rem 47.5% 4rem 0;
    margin: 4rem 0 4rem;
    position: relative;
  }
  .rsv_system02::after {
    width: 47.5%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
  }
  .rsv_system02 .tit {
    font-size: clamp(2rem, -0.2rem + 3.6666666667vw, 4.2rem);
  }
  .rsv_system02 .tel {
    padding: 1.4rem 1rem;
    margin: 1.4rem 6rem;
    width: auto;
    font-size: clamp(2rem, -0.2rem + 3.6666666667vw, 4.2rem);
  }
  .rsv_system02 .txt {
    font-size: clamp(1.6rem, 1.2rem + 0.6666666667vw, 2rem);
    padding: 0 6rem;
  }
  .rsv_system02 .kome {
    padding: 0 6rem;
  }
  .rsv_system02 .kome span {
    padding-left: 1.1em;
  }
}
/* ブログ -------------------------------------- */
.blog_contents {
  background: #fff;
  padding: 2rem 0 2rem;
  position: relative;
  z-index: 4;
}
.blog_contents .wrap {
  position: relative;
}
.blog_contents .wrap .blog_item {
  padding: 1.8rem;
  border-radius: 15px;
  background: #f5f9ed;
}
.blog_contents .wrap .blog_item dl {
  max-height: 30rem;
  padding: 0.8rem 1rem 0.8rem 0;
  overflow-y: auto;
}
.blog_contents .wrap .blog_item dl > div {
  padding: 1rem;
  border-bottom: 2px dotted #cccccc;
}
.blog_contents .wrap .blog_item dl > div dt {
  padding-left: 1.8rem;
  position: relative;
}
.blog_contents .wrap .blog_item dl > div dt::before {
  content: "\e802";
  font-family: "fontello";
  font-weight: normal;
  color: #83bb28;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.blog_contents .wrap .blog_item dl > div dt .date {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #868686;
}
.blog_contents .wrap .blog_item dl > div dt .tit {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
}
.blog_contents .wrap .blog_item dl > div dt.close::before {
  transform: rotateX(180deg);
}
.blog_contents .wrap .blog_item dl > div dd {
  font-size: 1.4rem;
}
.blog_contents .wrap .blog_item dl > div dd .more {
  display: inline-block;
  color: #059669;
  text-decoration: none;
}
.blog_contents .wrap .blog_item dl > div dd .more::before {
  content: ">";
  display: inline-block;
}
.blog_contents .wrap .blog_item dl > div dd .more:hover {
  text-decoration: underline;
}
.blog_contents .wrap .bg_parts {
  pointer-events: none;
}
.blog_contents .wrap .bg_parts .bg01::before {
  position: absolute;
  content: "";
  display: block;
  width: 11rem;
  height: 7rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/index_bg_parts_leaf01.webp);
  right: 0;
  top: 0;
}
.blog_contents .wrap .bg_parts .bg02::before {
  position: absolute;
  content: "";
  display: block;
  width: 11rem;
  height: 7rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/index_bg_parts_leaf02.webp);
  left: 0;
  bottom: -4rem;
}

@media screen and (min-width: 600px), print {
  .blog_contents {
    padding: 8rem 0 12rem;
  }
  .blog_contents .wrap .blog_item {
    padding: 5rem 4rem 4.5rem;
    border-radius: 30px;
  }
  .blog_contents .wrap .blog_item dl {
    max-height: 50rem;
    padding: 0 2rem 0 0;
  }
  .blog_contents .wrap .blog_item dl > div {
    padding: 1rem;
    margin-bottom: 2rem;
  }
  .blog_contents .wrap .blog_item dl > div dt {
    padding-left: 3rem;
    transition: opacity 0.4s;
  }
  .blog_contents .wrap .blog_item dl > div dt .date {
    margin-bottom: 0.8rem;
    font-size: clamp(1.2rem, 0.4rem + 1.3333333333vw, 2rem);
  }
  .blog_contents .wrap .blog_item dl > div dt .tit {
    font-size: clamp(1.8rem, 1.2rem + 1vw, 2.4rem);
    margin-bottom: 2rem;
  }
  .blog_contents .wrap .blog_item dl > div dt:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  .blog_contents .wrap .blog_item dl > div dd {
    margin: 2rem 0 2rem;
    font-size: clamp(1.2rem, 0.4rem + 1.3333333333vw, 2rem);
  }
  .blog_contents .wrap .bg_parts .bg01::before {
    width: 60rem;
    height: 37.8rem;
    right: -20rem;
    top: -4rem;
  }
  .blog_contents .wrap .bg_parts .bg02::before {
    width: 60rem;
    height: 37.8rem;
    left: -30rem;
    bottom: -16rem;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body.index .breadcrumb_list {
  display: none;
}

body.access .overview {
  display: none;
}

body:not(.index) .header .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: "＞";
  font-family: "fontello";
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 1rem;
}
body:not(.index) .breadcrumb_list li a {
  color: #83bb28;
  border-bottom: 1px solid #83bb28;
}
body:not(.index) .breadcrumb_list li a:hover {
  opacity: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
@media screen and (min-width: 600px), 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) .breadcrumb_list li:not(:last-child)::after {
    font-size: 1rem;
  }
}
body:not(.index) .main {
  margin: 4rem 1rem 6rem;
  padding: 0;
}
@media screen and (min-width: 600px), print {
  body:not(.index) .main {
    margin: 8rem 0 10rem;
    letter-spacing: 0.2rem;
  }
}

@media screen and (min-width: 600px), 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: 600px), 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: #333;
  background: rgba(243, 249, 244, 0.6);
}
@media screen and (min-width: 600px), 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: 600px), 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 #222;
}
*[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: #222;
}

.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: 600px), 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: 600px), print {
  .access .gmap {
    height: 50rem;
  }
}