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

.nolink {
  pointer-events: none !important;
}

/* ================================
   ユーティリティ
================================ */
/* ================================
   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: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 600px), print {
  *[class*=frame_] {
    padding: 2.4rem 2rem 2.4rem;
    margin-bottom: 3rem;
  }
}
*[class*=frame_].frame_01 {
  background: #222;
  border: 1px solid #222;
}
*[class*=frame_].frame_02 {
  background: #222;
  border: 1px solid #222;
}

/* 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;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time tr th {
  width: 20%;
  font-weight: 500;
}
.tbl_time tr th[scope=col] {
  padding: 0.8rem 0;
  background: #1f6aac;
  font-size: 1.2rem;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: #eff8ff;
  border-bottom: 1px solid #1f6aac;
  line-height: 1;
  color: #111111;
}
.tbl_time tr td:last-child {
  background: #d0e6f9;
  border-left: 1px solid #a7d0f5;
}
.tbl_time tr:last-child th,
.tbl_time tr:last-child td {
  border-bottom: none;
}

@media screen and (min-width: 600px), print {
  .tbl_time {
    font-size: clamp(1.2rem, 0.72rem + 0.8vw, 1.6rem);
  }
  .tbl_time caption {
    padding: 1rem 0 0;
    font-size: clamp(1.2rem, 0.72rem + 0.8vw, 1.6rem);
  }
  .tbl_time tr th[scope=col] {
    padding: 0.6rem 0;
    font-size: clamp(1.2rem, 0.72rem + 0.8vw, 1.6rem);
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 14%;
  }
  .tbl_time tr td {
    padding: 1rem 0;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.tit_02 {
  color: #1f6aac;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Serif", "MS Mincho", serif;
  font-weight: 600;
  gap: 0 0.6rem;
  font-size: 2.2rem;
  margin: 0 0 3rem;
  padding: 0;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}
.tit_02 span {
  font-size: 3.6rem;
  position: relative;
  right: -0.4rem;
  top: -0.4rem;
}
.tit_02::after {
  content: "";
  display: block;
  height: 1px;
  width: auto;
  background: #1f6aac;
  flex: 1 0 auto;
}
.tit_02--rev::before {
  content: "";
  display: block;
  height: 1px;
  width: auto;
  background: #1f6aac;
  flex: 1 0 auto;
}
.tit_02--rev::after {
  content: none;
}

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

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

.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 {
    background: url(../img/tit_01.jpg) no-repeat right top/auto 100%;
    font-size: 3.2rem;
    padding: 8.9rem 4rem;
    margin: 0 0 3rem;
  }
  .tit_02 {
    font-size: clamp(3rem, 1.8rem + 2vw, 4rem);
    margin: 0 0 5.5rem;
  }
  .tit_02 span {
    font-size: clamp(4rem, 1.6rem + 4vw, 6rem);
    top: -0.6rem;
    left: 0;
  }
  .tit_03 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
  }
  .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;
}
.lst_ul01 > li:last-child {
  padding-bottom: 0;
}
.lst_ul01 > li::before {
  content: "●";
  color: #222;
  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: #111111;
}

.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 {
    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: 20rem;
  }
  .lst_dl01 div dd {
    flex: 1;
  }
}
/* フレックス回り -------------------------------------- */
.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 {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 0.6rem 4rem;
  border-radius: 25px;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
}
*[class*=btn_] a::after {
  content: "";
  font-family: "fontello";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (min-width: 600px), print {
  *[class*=btn_] {
    text-align: left;
  }
}

.txt_link {
  color: #222;
  text-decoration: none !important;
  border-bottom: 1px solid #222;
}
.txt_link:hover {
  opacity: 0.8;
  border-bottom: none;
}

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

/* テーブル -------------------------------------- */
.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;
  }
}

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

body {
  background: #fff;
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

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

.wrap {
  padding: 0 1rem 0;
}

.main {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 0 8rem;
}
.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%, 1100px);
    margin-inline: auto;
    margin: 0 auto;
    padding: 0;
    /* 1200→600の間で 0→max へ滑らかに増える configの:rootもセットなのでそちらも適用 */
  }
  .main {
    font-size: clamp(1.2rem, 0.72rem + 0.8vw, 1.6rem);
    padding: 0 0 19rem;
    width: 100%;
  }
}
.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 0 0;
  padding: 0;
}
.header .wrap .logo {
  padding: 0 0 0 0.8rem;
  height: 4.5rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo_sp.svg) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headR {
  margin: 3.2rem 0 0;
  padding: 0.8rem 1rem;
  background: #e5f6fe;
  color: #294891;
  text-align: center;
}
.header .wrap .headR .tel_column {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 0.8rem;
  font-size: 1.2rem;
}
.header .wrap .headR .tel_column .tel {
  font-weight: 500;
  font-size: 1.6rem;
}
.header .wrap .headR .tel_column .tel::before {
  content: "\e829";
  font-family: "fontello";
  margin-right: 0.2rem;
}
.header .wrap .headR .tel_column .tel a {
  display: inline-block;
}

@media screen and (min-width: 600px), print {
  .header .wrap {
    margin: 0 auto 0;
    padding: 1.8rem 0 2.4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .header .wrap .logo {
    width: 48%;
    height: auto;
    aspect-ratio: 528/36;
  }
  .header .wrap .logo a {
    background: url(../img/logo.svg) no-repeat left center/contain;
  }
  .header .wrap .headR {
    flex: 1 1 auto;
    margin: 0;
    padding: 0;
    background: none;
    color: #294891;
  }
  .header .wrap .headR .tel_column {
    font-size: clamp(1.4rem, 0.68rem + 1.2vw, 2rem);
    gap: 0 1.6rem;
  }
  .header .wrap .headR .tel_column .tel {
    font-size: clamp(1.8rem, 0.84rem + 1.6vw, 2.6rem);
  }
  .header .wrap {
    container: tab/inline-size;
  }
  @container tab (width < 800px) {
    .header .wrap .tel_column {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      flex-direction: column;
    }
  }
}
/* 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: #1f6aac;
  color: #fff;
  border: 1px solid #fff;
  font-size: 1.2rem;
  border-radius: 0;
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "찁";
  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: "찂";
}
#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: 8rem 0 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: center;
  margin: 0;
  border-bottom: 1px solid #eee;
}
#menu #nav.sp_nav > ul > li > a {
  display: block;
  padding: 1.8rem 1.2rem 1.8rem;
  color: #294891;
  font-size: 1.4rem;
  text-decoration: none !important;
}
#menu #nav.sp_nav > ul > li > a.sub {
  position: relative;
}
#menu #nav.sp_nav > ul > li > a.sub::after {
  content: "\e828";
  color: #006f6b;
  font-family: "fontello";
  display: inline-block;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: transform 0.2s;
}
#menu #nav.sp_nav > ul > li > a.sub.close::after {
  transform: translateY(-50%) rotate(180deg);
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav {
  display: none;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul {
  background: #2cadb1;
  margin: 0.8rem 0 0;
  padding: 1.2rem 1rem 1.2rem;
  display: flex !important;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1rem 0;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li {
  width: 100%;
  border-bottom: none;
  text-align: left;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a {
  background: #fffddf;
  font-size: 1.2rem;
  display: block;
  padding: 1.2rem 0.2rem;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a::before {
  content: "▸";
  color: #1f6aac;
  font-size: 1.4rem;
  margin-right: 0.2rem;
  transition: all 0.2s;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a:hover {
  color: #fff;
  background: #006f6b;
  opacity: 1;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a:hover::before {
  color: #fff;
}
#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 {
    position: relative;
    z-index: 2000;
    display: block;
    height: 100%;
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: #fff;
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.16);
  }
  #menu #nav .gnav {
    max-width: 1100px;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 0 clamp(2rem, -5.2rem + 12vw, 8rem);
  }
  #menu #nav .gnav > li {
    width: auto;
  }
  #menu #nav .gnav > li > a {
    padding: 2rem 0 1.6rem;
    display: block;
    color: #294891;
    text-align: center;
    font-size: clamp(1rem, 0.28rem + 1.2vw, 1.6rem);
  }
  #menu #nav .gnav > li > a.sub::after {
    content: "\e828";
    font-family: "fontello";
    font-size: 1.2rem;
    display: inline-block;
    margin-left: 0.4rem;
  }
  #menu #nav .gnav > li > a.sub.close::after {
    transform: rotate(180deg);
    position: relative;
    top: -0.4rem;
  }
  #menu #nav .gnav > li .subnav {
    width: 100vw;
    min-width: 2000px;
    padding: 1.1rem 0;
    display: none;
    position: absolute;
    top: 5.6rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: #2cadb1;
  }
  #menu #nav .gnav > li .subnav ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 0.3rem;
  }
  #menu #nav .gnav > li .subnav ul li {
    width: 33.7rem;
  }
  #menu #nav .gnav > li .subnav ul li a {
    display: block;
    box-sizing: border-box;
    width: 100%;
    font-size: clamp(1rem, 0.28rem + 1.2vw, 1.6rem);
    padding: 1rem 0 1rem 0.2rem;
    text-align: left;
    transition: all 0.2s;
    background: #fffddf;
  }
  #menu #nav .gnav > li .subnav ul li a::before {
    content: "▸";
    margin-right: 0.2rem;
    color: #1f6aac;
    transition: all 0.2s;
  }
  #menu #nav .gnav > li .subnav ul li a:hover {
    background: #fff9ac;
    opacity: 1;
  }
  #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: 0;
  font-size: 1.4rem;
  line-height: 1.6;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.overview::before {
  content: "";
  display: block;
  width: 100%;
  height: 14rem;
  background-image: url(../img/overview_bg01.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -4rem;
  z-index: -1;
}
.overview .btn_main-site {
  position: absolute;
  z-index: 2;
  padding: 2rem 0 3rem;
  width: 80%;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #fff;
  background-image: linear-gradient(to left, #26bfaa, #4363cf);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 8% 100%);
  transition: filter 0.4s;
}
.overview .btn_main-site:hover {
  opacity: 1;
  filter: contrast(1.6);
}
.overview .btn_main-site > span {
  position: relative;
}
.overview .btn_main-site > span::after {
  content: "";
  background: url(../img/overview_btn_main-site_parts01.svg) no-repeat center/contain;
  width: 10rem;
  height: auto;
  display: inline-block;
  aspect-ratio: 268/14;
  line-height: 0;
  position: absolute;
  bottom: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.overview .btn_main-site > span .size_s {
  font-size: 80%;
}
.overview > .wrap {
  padding: 6rem 1rem 0;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  display: block;
  width: 100%;
  border-collapse: collapse;
}
.overview > .wrap .overviewL .tbl_gaiyo th {
  display: block;
  width: 100%;
  letter-spacing: 0.2em;
  font-size: 110%;
  text-align: center;
}
.overview > .wrap .overviewL .tbl_gaiyo th span {
  width: 100%;
  display: block;
  padding: 0.4rem;
  font-weight: 500;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
  background-color: #1f6aac;
}
.overview > .wrap .overviewL .tbl_gaiyo td {
  display: block;
  padding: 0.4rem;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .gmap {
  text-align: right;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 30rem;
}

@media screen and (min-width: 600px), print {
  .overview {
    margin: 0 0 0;
    padding: 34.6rem 0 0;
    font-size: clamp(1.2rem, 0.48rem + 1.2vw, 1.8rem);
  }
  .overview::before {
    height: 55rem;
    top: 0;
  }
  .overview .btn_main-site {
    padding: 5rem 0 5rem;
    max-width: 97.3rem;
    width: 88.4%;
    font-size: clamp(1.4rem, -0.52rem + 3.2vw, 3rem);
    top: -6rem;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  }
  .overview .btn_main-site > span {
    position: relative;
  }
  .overview .btn_main-site > span::after {
    width: clamp(20rem, 11.84rem + 13.6vw, 26.8rem);
    height: 1.4rem;
    margin-left: 1rem;
    line-height: 1;
    position: static;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }
  .overview .btn_main-site > span .size_s {
    margin-left: 1rem;
    font-size: clamp(1rem, -0.2rem + 2vw, 2rem);
  }
  .overview > .wrap {
    padding: 0 0 5rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL,
  .overview > .wrap .overviewR {
    width: 44%;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo {
    display: table;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th {
    width: 29%;
    display: table-cell;
    vertical-align: top;
    padding: 1rem 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th span {
    font-size: clamp(1rem, 0.28rem + 1.2vw, 1.6rem);
  }
  .overview > .wrap .overviewL .tbl_gaiyo td {
    padding: 1rem 0 0 2rem;
    vertical-align: top;
    display: table-cell;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    margin: 1rem 0 0;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
  cursor: pointer;
}
#pageup a {
  display: block;
  width: 5rem;
  height: 5rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.4rem;
  background: #e5bc53;
  border-radius: 50%;
}
#pageup a::before {
  text-align: center;
  font-size: 3.6rem;
  font-family: "fontello";
  content: "\e812";
  color: #fff;
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 600px), print {
  #pageup a {
    width: 6.4rem;
    height: 6.4rem;
  }
  #pageup a::before {
    font-size: 5rem;
  }
}
.footer_menu {
  width: 100%;
  min-height: 4.6rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2200;
  font-size: 1.4rem;
  box-shadow: 0.4rem 0 1.8rem rgba(0, 0, 0, 0.16);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer_menu .tel_item {
  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;
  text-align: center;
  width: 80%;
  padding: 0.2rem 0;
  color: #294891;
  line-height: 1;
}
.footer_menu .tel_item .txt {
  display: block;
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}
.footer_menu .tel_item .tel {
  font-size: 1.8rem;
}
.footer_menu .tel_item .tel::before {
  content: "\e829";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.footer_menu .pageup {
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
}
.footer_menu .pageup a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 5rem;
  color: #fff;
  text-align: center;
  padding: 0 0.4rem;
  line-height: 1;
  background: #1f6aac;
}
.footer_menu .pageup a::before {
  text-align: center;
  font-size: 2.4rem;
  font-family: "fontello";
  content: "\e836";
}
.footer_menu .pageup a span {
  display: none;
}

@media screen and (min-width: 600px), print {
  .footer_menu {
    display: block;
    width: 5.2rem;
    height: 5.2rem;
    bottom: 6.2rem;
    right: 2rem;
    left: auto;
    cursor: pointer;
    background: none;
    padding: 0;
  }
  .footer_menu .tel_item {
    display: none;
  }
  .footer_menu .pageup {
    height: 100%;
  }
  .footer_menu .pageup a {
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
  }
  .footer_menu .pageup a::before {
    font-size: 2.2rem;
  }
}
.footer {
  text-align: center;
  padding: 2rem 0 4.6rem;
}
.footer::before {
  content: "";
  width: 80%;
  height: 1px;
  margin: 0 auto 1rem;
  display: block;
  background: #1f6aac;
}
.footer .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.footer .clinic_name img {
  max-width: 80%;
  height: auto;
}
.footer .breadcrumb_list {
  display: none;
}
.footer .footer_link {
  display: none;
}
.footer .copy {
  display: block;
  background-image: linear-gradient(to left, #26bfaa, #4363cf);
  color: #fff;
  padding: 1.4rem 0.2rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 600px), print {
  .footer {
    padding: 0;
  }
  .footer::before {
    width: 1100px;
    margin: 0 auto 3.2rem;
  }
  .footer .clinic_name {
    text-align: center;
    margin: 0 0 2rem;
  }
  .footer .clinic_name img {
    max-width: 100%;
    width: 60rem;
    height: auto;
  }
  .footer .footer_link {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 1rem 0;
  }
  .footer .footer_link > * {
    display: -webkit-flex;
    display: flex;
    gap: 1rem 0;
  }
  .footer .footer_link > * ul {
    display: block;
    text-align: center;
  }
  .footer .footer_link > * ul li {
    display: inline-block;
    font-size: clamp(1rem, 0.28rem + 1.2vw, 1.6rem);
  }
  .footer .footer_link > * ul li:not(:last-child)::after {
    content: "|";
    margin: 0 clamp(1.2rem, -0.24rem + 2.4vw, 2.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 {
    margin: 4rem 0 0;
    padding: 1.4rem 0;
    font-size: 1.2rem;
  }
}
/* PC固定メニュー -------------------------------------- */
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
.keyvsl_area {
  padding: 0 0 8rem;
  margin: 0 0 4rem;
  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%;
}
.keyvsl_area .kv_contents .kv_txt {
  height: 100%;
  width: 100%;
}
.keyvsl_area .kv_contents .kv_txt ul {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.keyvsl_area .kv_contents .kv_txt ul .line_01 {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.8rem;
  position: absolute;
  top: 12rem;
  text-align: center;
}
.keyvsl_area .kv_contents .kv_txt ul .line_01 .bg {
  text-shadow: 0 0 30px #132875;
}
.keyvsl_area .kv_contents .kv_txt ul .line_01 .size_s {
  display: block;
  margin: 0.8rem 0 0;
  font-weight: 700;
  font-size: 1.6rem;
  color: #294891;
  text-shadow: 0 3px 0 20px #fff, 0 3px 0 20px #fff;
}
.keyvsl_area .kv_contents .kv_txt ul .line_02 {
  position: absolute;
  bottom: 1rem;
  left: 1.8rem;
}
.keyvsl_area .kv_contents .kv_txt ul .line_02::before {
  content: "";
  width: calc(100% - 1rem);
  height: 100%;
  display: block;
  border: 1px solid #ffffff;
  position: absolute;
  z-index: 2;
  top: calc(50% + 0.3rem);
  left: calc(50% + 0.3rem);
  transform: translate(-50%, -50%) skewX(-10deg);
  -webkit-transform: translate(-50%, -50%) skewX(-10deg);
  -ms-transform: translate(-50%, -50%) skewX(-10deg);
}
.keyvsl_area .kv_contents .kv_txt ul .line_02 .bg {
  position: relative;
  clip-path: polygon(4% 0, 100% 0%, 96% 100%, 0% 100%);
  padding: 1rem 1.4rem;
  background-image: linear-gradient(to right, rgba(38, 191, 170, 0.9), rgba(67, 99, 207, 0.9));
  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: 0.4rem 0;
  font-weight: 700;
  color: #fffbbf;
  font-size: 2rem;
}
.keyvsl_area .kv_contents .kv_txt ul .line_02 .bg .clr_wh {
  font-weight: 500;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}

@media screen and (min-width: 600px), print {
  .keyvsl_area {
    padding: 0;
    margin: 0;
  }
  .keyvsl_area #keyvsl {
    height: 79.4rem;
  }
  .keyvsl_area .kv_contents .kv_txt ul .line_01 {
    height: fit-content;
    font-size: clamp(2.9rem, 0.5rem + 4vw, 4.9rem);
    top: auto;
    bottom: clamp(24rem, 16.8rem + 12vw, 30rem);
  }
  .keyvsl_area .kv_contents .kv_txt ul .line_01 .bg {
    filter: drop-shadow(0 0 3rem #132875);
    text-shadow: none;
  }
  .keyvsl_area .kv_contents .kv_txt ul .line_01 .size_s {
    margin: 1.6rem 0 0;
    font-size: 3rem;
    text-shadow: 0 3px 20px #fff, 0 3px 20px #fff, 0 3px 20px #fff, 0 3px 20px #fff, 0 3px 20px #fff;
  }
  .keyvsl_area .kv_contents .kv_txt ul .line_02 {
    width: fit-content;
    height: fit-content;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .keyvsl_area .kv_contents .kv_txt ul .line_02::before {
    width: calc(100% - 3.6rem);
    height: 100%;
    top: calc(50% + 1rem);
    left: calc(50% + 1rem);
    transform: translate(-50%, -50%) skewX(-11deg);
    -webkit-transform: translate(-50%, -50%) skewX(-11deg);
    -ms-transform: translate(-50%, -50%) skewX(-11deg);
    border: 2px solid #ffffff;
  }
  .keyvsl_area .kv_contents .kv_txt ul .line_02 .bg {
    width: 87.8rem;
    clip-path: polygon(4% 0, 100% 0%, 96% 100%, 0% 100%);
    padding: 2.8rem 1.4rem 2.8rem;
    gap: 1.7rem 0;
    font-size: clamp(3.2rem, 0.32rem + 4.8vw, 5.6rem);
  }
  .keyvsl_area .kv_contents .kv_txt ul .line_02 .bg .clr_wh {
    font-size: clamp(2.4rem, 0.48rem + 3.2vw, 4rem);
  }
}
/* こころの働き＝脳の働き -------------------------------------- */
.section-lead {
  background: #e9f2fa;
  padding: 0 0 6rem 0;
  position: relative;
  z-index: 1;
}
.section-lead::after {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  left: 0;
  bottom: 0;
  background: url(../img/index_section-lead_bg01.webp) no-repeat bottom/cover;
}
.section-lead .wrap {
  padding: 1rem 0 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 0%, 96% 100%, 4% 100%);
}
.section-lead .wrap .tit_02--lead {
  color: #294891;
  margin: 0 0 2rem;
  position: relative;
  z-index: 2;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.section-lead .wrap .tit_02--lead::after {
  content: none;
}
.section-lead .wrap .box_01 {
  padding: 1rem 1.8rem 1rem;
  position: relative;
  z-index: 1;
}
.section-lead .wrap .box_01::before {
  content: "";
  display: block;
  width: 4rem;
  height: calc(100% + 5rem);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-image: linear-gradient(to bottom, #fff, #a3d2eb);
}
.section-lead .wrap .box_02 {
  padding: 1rem 1.8rem 1rem;
  background-image: linear-gradient(to left, #26bfaa, #4363cf);
  color: #fff;
}
.section-lead .wrap .box_02 ul li::before {
  color: #fff;
}
.section-lead .wrap ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.4rem 0;
}
.section-lead .wrap ul li {
  position: relative;
  padding-left: 3.8rem;
}
.section-lead .wrap ul li::before {
  font-family: "fontello";
  position: absolute;
  left: 0;
  top: -0.8rem;
  font-size: 2.8rem;
  font-weight: normal;
  color: #a7d0f5;
}
.section-lead .wrap ul li.item_01::before {
  content: "\e82a";
}
.section-lead .wrap ul li.item_02::before {
  content: "\e831";
}
.section-lead .wrap ul li.item_03::before {
  content: "\e82c";
  left: 0.6rem;
}
.section-lead .wrap ul li.item_04::before {
  content: "\e82d";
}
.section-lead .wrap ul li.item_05::before {
  content: "\e82e";
}

@media screen and (min-width: 600px), print {
  .section-lead {
    padding: 0 0 22rem 0;
  }
  .section-lead::after {
    width: 100%;
    height: 34.1rem;
  }
  .section-lead .wrap {
    width: min(100%, 1446px);
    clip-path: polygon(0 0, 100% 0%, 94% 100%, 6% 100%);
  }
  .section-lead .wrap .tit_02--lead {
    font-size: clamp(3.6rem, 1.56rem + 3.4vw, 5.3rem);
    margin: 4.5rem 0 3.26rem;
  }
  .section-lead .wrap .box_01 {
    padding: 1rem clamp(1.4rem, 0.92rem + 0.8vw, 1.8rem) 5.1rem;
    text-align: center;
    font-size: clamp(1.6rem, 0.64rem + 1.6vw, 2.4rem);
  }
  .section-lead .wrap .box_01::before {
    width: 14.2rem;
    height: calc(100% + 5rem);
  }
  .section-lead .wrap .box_02 {
    padding: 2.6rem 0 3.4rem;
    text-align: center;
  }
  .section-lead .wrap .box_02 ul {
    gap: 0.6rem 0;
  }
  .section-lead .wrap .box_02 ul li {
    font-size: clamp(1rem, -0.32rem + 2.2vw, 2.1rem);
  }
  .section-lead .wrap .box_02 ul li .bold {
    font-weight: 700;
  }
  .section-lead .wrap .box_02 ul li .size_l {
    font-size: clamp(1.2rem, -0.96rem + 3.6vw, 3rem);
  }
  .section-lead .wrap ul {
    display: inline-grid;
    text-align: left;
    gap: 3rem 0;
  }
  .section-lead .wrap ul li {
    width: fit-content;
    display: block;
    text-align: left;
  }
  .section-lead .wrap ul li::before {
    left: 0;
    top: -2.4rem;
    font-size: 5.4rem;
  }
  .section-lead .wrap ul li.item_01 {
    padding-left: 8rem;
  }
  .section-lead .wrap ul li.item_02 {
    left: 3rem;
    padding-left: 6.4rem;
  }
  .section-lead .wrap ul li.item_03 {
    left: 6rem;
    padding-left: 4.9rem;
  }
  .section-lead .wrap ul li.item_03::before {
    left: 0.6rem;
  }
  .section-lead .wrap ul li.item_04 {
    padding-left: 7rem;
  }
  .section-lead .wrap ul li.item_05 {
    left: 4rem;
    padding-left: 7rem;
  }
  .section-lead .wrap ul li.item_05::before {
    top: -2rem;
  }
}
/* 治療の流れ -------------------------------------- */
.treatment-flow {
  background: #fff;
  padding: 0;
}
.treatment-flow .wrap {
  padding-block: 3rem;
  position: relative;
  z-index: 1;
}
.treatment-flow .wrap::before {
  content: "";
  display: block;
  width: 24rem;
  height: auto;
  aspect-ratio: 1000/667;
  background: url(../img/index_treatment-flow_bg01.webp) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
}
.treatment-flow .wrap ol {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1rem 0;
  counter-reset: num_flow;
}
.treatment-flow .wrap ol li {
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.1));
}
.treatment-flow .wrap ol li div {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  counter-increment: num_flow 1;
  padding: 1.8rem 11rem 1.8rem 0;
  min-height: 8rem;
  background: #c0ddf6;
  clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
}
.treatment-flow .wrap ol li div::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: #222;
  clip-path: polygon(11% 0, 100% 0%, 100% 100%, 0% 100%);
}
.treatment-flow .wrap ol li div .clr_blue {
  color: #1f6aac;
  font-weight: 700;
  font-size: 110%;
}
.treatment-flow .wrap ol li div > span {
  padding-left: 3.8rem;
  position: relative;
}
.treatment-flow .wrap ol li div > span::before {
  content: counter(num_flow) ".";
  position: absolute;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 400;
  font-size: 3.2rem;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #1f6aac;
}
.treatment-flow .wrap ol li.item01 div::after {
  background: url(../img/index_treatment-flow_item01.webp) no-repeat center/cover;
}
.treatment-flow .wrap ol li.item02 div::after {
  background: url(../img/index_treatment-flow_item02.webp) no-repeat center/cover;
}
.treatment-flow .wrap ol li.item03 div::after {
  background: url(../img/index_treatment-flow_item03.webp) no-repeat center/cover;
}
.treatment-flow .wrap ol li.item04 div::after {
  background: url(../img/index_treatment-flow_item04.webp) no-repeat left -9rem center/cover;
}
.treatment-flow .wrap ol li.item05 div::after {
  background: url(../img/index_treatment-flow_item05.webp) no-repeat left -9.6rem center/cover;
}

@media screen and (min-width: 600px), print {
  .treatment-flow .wrap {
    padding-block: 7.6rem 8.5rem;
  }
  .treatment-flow .wrap::before {
    width: 100rem;
    top: 0;
    right: -45rem;
    opacity: 1;
  }
  .treatment-flow .wrap .txt {
    margin: -1rem 0 0;
    font-size: clamp(1rem, -0.2rem + 2vw, 2rem);
  }
  .treatment-flow .wrap ol {
    max-width: 103.5rem;
    margin: 3.6rem 0 0;
    gap: 2.3rem 0;
  }
  .treatment-flow .wrap ol li {
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.1));
  }
  .treatment-flow .wrap ol li div {
    font-size: clamp(1.2rem, 0rem + 2vw, 2.2rem);
    padding: 1.8rem 11rem 1.8rem 0;
    min-height: 9.2rem;
    clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
  }
  .treatment-flow .wrap ol li div::after {
    width: clamp(20rem, -0.4rem + 34vw, 37rem);
    clip-path: polygon(5% 0, 100% 0%, 100% 100%, 0% 100%);
  }
  .treatment-flow .wrap ol li div .clr_blue {
    font-size: clamp(1.4rem, -0.04rem + 2.4vw, 2.6rem);
  }
  .treatment-flow .wrap ol li div > span {
    padding-left: clamp(6rem, 1.92rem + 6.8vw, 9.4rem);
  }
  .treatment-flow .wrap ol li div > span::before {
    font-size: clamp(3.6rem, 1.44rem + 3.6vw, 5.4rem);
    left: 2.8rem;
  }
  .treatment-flow .wrap ol li.item04 div::after {
    background: url(../img/index_treatment-flow_item04.webp) no-repeat center/cover;
  }
  .treatment-flow .wrap ol li.item05 div::after {
    background: url(../img/index_treatment-flow_item05.webp) no-repeat center/cover;
  }
}
/* 3つの柱 -------------------------------------- */
.pillar {
  background: none;
  padding: 0;
  position: relative;
  z-index: 2;
}
.pillar::before {
  content: "";
  display: block;
  width: 100%;
  height: 21rem;
  position: absolute;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: url(../img/index_pillar_bg01.webp) no-repeat center left -9rem/cover;
}
.pillar::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  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-color: #e5f6fe;
}
.pillar .wrap {
  padding-block: 2rem;
}
.pillar .wrap > ul {
  padding-left: 1rem;
}
.pillar .wrap > ul > li {
  margin: 0 0 1.8rem auto;
  width: 72%;
  clip-path: polygon(0 0, 100% 0%, 81% 100%, 0% 100%);
}
.pillar .wrap > ul > li a {
  min-height: 10.4rem;
  font-size: 1.6rem;
  padding: 1rem 2.8rem 1rem 1.6rem;
  background-image: linear-gradient(to left, #26bfaa, #4363cf);
  text-decoration: none !important;
  transition: filter 0.4s;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pillar .wrap > ul > li a span {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
}
.pillar .wrap > ul > li a span::before {
  font-size: 2rem;
  content: "\e837";
  color: #c0ddf6;
  font-family: "fontello";
  margin-right: 0.8rem;
}
.pillar .wrap > ul > li a > .icon {
  width: 100%;
  margin: 1.6rem 0 0;
}
.pillar .wrap > ul > li a > .icon li {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 1rem;
}
.pillar .wrap > ul > li a > .icon li::before, .pillar .wrap > ul > li a > .icon li::after {
  line-height: 1;
  font-family: "fontello";
  font-size: 3.8rem;
  color: #c0ddf6;
}
.pillar .wrap > ul > li a:hover {
  opacity: 1;
  filter: contrast(1.4);
}
.pillar .wrap > ul > li.item_01 a > .icon .icon_01::before {
  font-size: 2.4rem;
  content: "\e82f";
}
.pillar .wrap > ul > li.item_01 a > .icon .icon_01::after {
  font-size: 2.4rem;
  content: "\e830";
}
.pillar .wrap > ul > li.item_02 a > .icon .icon_01::before {
  content: "\e82d";
}
.pillar .wrap > ul > li.item_02 a > .icon .icon_01::after {
  content: "\e832";
}
.pillar .wrap > ul > li.item_03 a > .icon .icon_01::before {
  font-size: 3rem;
  content: "\e833";
}
.pillar .wrap > ul > li.item_03 a > .icon .icon_01::after {
  font-size: 3rem;
  content: "\e834";
}

@media screen and (min-width: 600px), print {
  .pillar::before {
    height: 100%;
    background: url(../img/index_pillar_bg01.webp) no-repeat center center/cover;
    z-index: 0;
  }
  .pillar .tit_02 {
    max-width: 88.8rem;
    margin-left: auto;
  }
  .pillar .wrap {
    position: relative;
    z-index: 2;
    padding: 11.5rem 0 12rem;
  }
  .pillar .wrap > ul {
    max-width: 88.8rem;
    margin-left: auto;
    padding-left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0 clamp(1rem, -0.68rem + 2.8vw, 2.4rem);
  }
  .pillar .wrap > ul > li {
    margin: 0;
    width: 28rem;
    clip-path: polygon(0 0, 100% 0%, 81% 100%, 0% 100%);
  }
  .pillar .wrap > ul > li a {
    min-height: clamp(16rem, 6.16rem + 16.4vw, 24.2rem);
    font-size: clamp(1.2rem, 0rem + 2vw, 2.2rem);
    padding: 3.6rem 3rem 1rem 2.3rem;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .pillar .wrap > ul > li a span {
    height: 2em;
  }
  .pillar .wrap > ul > li a span::before {
    font-size: clamp(2rem, 0.8rem + 2vw, 3rem);
    margin-right: 0.8rem;
  }
  .pillar .wrap > ul > li a > .icon {
    margin: 0;
  }
  .pillar .wrap > ul > li a > .icon li {
    gap: 0 2rem;
  }
  .pillar .wrap > ul > li.item_01 a > .icon .icon_01::before {
    font-size: clamp(3rem, -0.6rem + 6vw, 6rem);
  }
  .pillar .wrap > ul > li.item_01 a > .icon .icon_01::after {
    font-size: clamp(3rem, -0.6rem + 6vw, 6rem);
  }
  .pillar .wrap > ul > li.item_02 a > .icon .icon_01::before {
    font-size: clamp(3.8rem, 0.2rem + 6vw, 6.8rem);
  }
  .pillar .wrap > ul > li.item_02 a > .icon .icon_01::after {
    font-size: clamp(3.8rem, 0.2rem + 6vw, 6.8rem);
  }
  .pillar .wrap > ul > li.item_03 a > .icon .icon_01::before {
    font-size: clamp(3rem, -0.6rem + 6vw, 6rem);
  }
  .pillar .wrap > ul > li.item_03 a > .icon .icon_01::after {
    font-size: clamp(3rem, -0.6rem + 6vw, 6rem);
  }
}
/* 期待される変化 -------------------------------------- */
.effect {
  background: #fff;
  padding: 3rem 0 2rem;
}
.effect .wrap {
  position: relative;
  z-index: 1;
}
.effect .wrap ul li {
  margin: 0 0 2.8rem;
}
.effect .wrap ul li div {
  position: relative;
}
.effect .wrap ul li div::before {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: #8aabec;
  position: absolute;
}
.effect .wrap ul li div figure {
  position: relative;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.effect .wrap ul li div figure figcaption {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.4rem 0;
  text-align: center;
  background: rgba(31, 106, 172, 0.7);
  width: 100%;
  height: 30%;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: -10%;
}
.effect .wrap ul li.item_01 div {
  left: -4rem;
}
.effect .wrap ul li.item_01 div::before {
  bottom: -0.8rem;
  right: 6rem;
}
.effect .wrap ul li.item_02 div {
  right: 0rem;
}
.effect .wrap ul li.item_02 div::before {
  bottom: -0.8rem;
  left: 1rem;
}
.effect .wrap ul li.item_03 div {
  right: -2rem;
}
.effect .wrap ul li.item_03 div::before {
  bottom: 2rem;
  right: 1rem;
}
.effect .wrap ul li.item_04 div {
  right: -5rem;
}
.effect .wrap ul li.item_04 div::before {
  top: 2.8rem;
  left: 2rem;
}
.effect .wrap ul li.item_05 div {
  left: -5rem;
}
.effect .wrap ul li.item_05 div::before {
  bottom: -0.8rem;
  right: 5rem;
}
.effect .wrap .bg_parts {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}
.effect .wrap .bg_parts .left {
  position: absolute;
  z-index: -1;
  left: -8rem;
  top: 20rem;
  background: url(../img/index_effect_bg01.svg) no-repeat center/contain;
  aspect-ratio: 538/585;
  width: 60rem;
  height: auto;
}
.effect .wrap .bg_parts .right {
  position: absolute;
  z-index: -1;
  right: -4rem;
  top: 90rem;
  background: url(../img/index_effect_bg02.svg) no-repeat center/contain;
  aspect-ratio: 609/726;
  width: 60rem;
  height: auto;
}

@media screen and (min-width: 600px), print {
  .effect {
    background: #fff;
    padding: 8rem 0 2rem;
  }
  .effect .wrap ul {
    position: relative;
    width: 100%;
    height: clamp(48rem, 0rem + 80vw, 88rem);
  }
  .effect .wrap ul li {
    position: absolute;
    margin: 0;
  }
  .effect .wrap ul li div::before {
    width: 26.8rem;
    height: 2px;
  }
  .effect .wrap ul li div figure {
    margin: 0;
    padding: 0;
    width: clamp(19.36rem, -0.008rem + 32.28vw, 35.5rem);
    height: clamp(21.98rem, -0.004rem + 36.64vw, 40.3rem);
    clip-path: polygon(24.5% 0, 100% 0, 75.5% 100%, 0 100%);
  }
  .effect .wrap ul li div figure figcaption {
    padding: 0;
    line-height: 1.2;
    height: clamp(5.2rem, 1.12rem + 6.8vw, 8.6rem);
    font-size: clamp(1.2rem, -0.48rem + 2.8vw, 2.6rem);
  }
  .effect .wrap ul li.item_01 {
    left: 0;
    top: 0;
  }
  .effect .wrap ul li.item_01 div {
    left: auto;
  }
  .effect .wrap ul li.item_01 div::before {
    bottom: -1.2rem;
    right: 3rem;
  }
  .effect .wrap ul li.item_02 {
    top: 50%;
    left: 48.5%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .effect .wrap ul li.item_02 div {
    right: auto;
  }
  .effect .wrap ul li.item_02 div::before {
    bottom: auto;
    top: -1rem;
    left: 1rem;
  }
  .effect .wrap ul li.item_03 {
    top: 0;
    right: 0;
  }
  .effect .wrap ul li.item_03 div {
    right: auto;
  }
  .effect .wrap ul li.item_03 div::before {
    bottom: -1.4rem;
    right: auto;
    left: -8rem;
    z-index: -1;
  }
  .effect .wrap ul li.item_04 {
    left: -3.5rem;
    bottom: 0;
  }
  .effect .wrap ul li.item_04 div {
    right: auto;
  }
  .effect .wrap ul li.item_04 div::before {
    top: auto;
    left: auto;
    bottom: -1.1rem;
    right: 2rem;
  }
  .effect .wrap ul li.item_05 {
    right: 0;
    bottom: 0;
  }
  .effect .wrap ul li.item_05 div {
    left: auto;
  }
  .effect .wrap ul li.item_05 div::before {
    bottom: -1.1rem;
    right: auto;
    left: -8rem;
  }
  .effect .wrap .bg_parts .left {
    left: -40.6rem;
    top: 20rem;
    width: 53.8rem;
  }
  .effect .wrap .bg_parts .right {
    right: -36.1rem;
    top: 0;
    width: 60.9rem;
  }
  .effect .wrap {
    container: tab/inline-size;
  }
  @container tab (width < 1000px) {
    .effect .wrap ul {
      transform: scale(0.1vw);
    }
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body.index .breadcrumb_list {
  display: none;
}

body.access .overview {
  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;
  background: #add8e6;
  color: #fff;
}
body:not(.index) .breadcrumb_list li a:hover {
  opacity: 1;
  text-decoration: underline;
}
@media screen and (min-width: 600px), print {
  body:not(.index) .breadcrumb_list {
    margin: 0 auto;
    padding: 2rem 0 2rem;
    width: 1100px;
  }
  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: 0 1rem 6rem;
}
@media screen and (min-width: 600px), print {
  body:not(.index) .main {
    margin: 0 0 10rem;
  }
}

@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;
  }
}