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

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

/* ================================
   ユーティリティ
================================ */
/* ================================
   clamp（社内統一名・rem返し）
   第1引数 = 小さい画面の値
   第2引数 = 大きい画面の値
================================ */
/* ================================
   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;
}

/* 色 -------------------------------------- */
.clr_gold {
  color: #9d7b33;
}

.clr_red {
  color: #ff0000;
}

.clr_blue {
  color: #0076ff;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1.8rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 600px), print {
  *[class*=frame_] {
    padding: 3.4rem 4rem 3.4rem;
    margin-bottom: 3rem;
  }
}
*[class*=frame_].frame_01 {
  background: #f1f3f2;
}
*[class*=frame_].frame_02 {
  background: #e8f4e2;
}

/* 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: collapse;
  border-spacing: 0;
  font-size: 1rem;
  table-layout: fixed;
  font-weight: 500;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
  font-weight: 500;
}
.tbl_time caption .note {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  gap: 0.4rem 1rem;
}
.tbl_time caption .note dt {
  white-space: nowrap;
}
.tbl_time caption .note dd {
  margin: 0;
  white-space: nowrap;
}
.tbl_time tr th {
  font-weight: normal;
  border: 1px solid #526458;
}
.tbl_time tr th[scope=col] {
  padding: 1rem 0;
  border: 1px solid #fff;
  background: #526458;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}
.tbl_time tr th[scope=col]:first-child {
  width: 10%;
}
.tbl_time tr th.time {
  text-align: center;
  background: #fff;
  border: 1px solid #526458;
}
.tbl_time tr td {
  text-align: center;
  padding: 1rem 0.4rem;
  color: #333333;
  background: #fff;
  border: 1px solid #526458;
  line-height: 1;
}
.tbl_time tr td.clr_red {
  color: #ff0000;
}
.tbl_time tr td.clr_blue {
  color: #0076ff;
}
.tbl_time tr td.close {
  position: relative;
  padding: 0;
}
.tbl_time tr td.close::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right bottom, transparent calc(50% - 0.5px), #333333 calc(50% - 0.5px), #333333 calc(50% + 0.5px), transparent calc(50% + 0.5px));
  pointer-events: none;
}
.tbl_time .size_l {
  font-size: 110%;
}

@media screen and (min-width: 600px), print {
  .tbl_time {
    font-size: 1.8rem;
  }
  .tbl_time caption {
    line-height: 1.8;
    font-size: 1.8rem;
    margin-top: 0.4rem;
  }
  .tbl_time caption .bg {
    padding: 0.2rem 0.4rem;
    margin-right: 0.4rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.2rem 0;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: auto;
  }
  .tbl_time tr td {
    padding: 1.2rem 0.2rem;
    color: #333333;
    font-size: 1.6rem;
  }
  .tbl_time .size_l {
    font-size: 2rem;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.png) no-repeat center/cover;
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #fff;
  padding: 6rem 1rem 2rem;
  margin: 0 0 2rem;
  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: #333333;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 0 2rem;
  padding: 0;
  line-height: 1.2;
}
.tit_02 span {
  color: #aebab2;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 2.4rem;
}

body:not(.index) .tit_02 {
  font-size: 1.8rem;
  text-align: center;
  color: #526458;
  padding: 0 0 0.6rem;
  margin: 0 0 2rem;
  border-bottom: 1px solid #9d7b33;
}

.tit_03 {
  background: #526458;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1.4rem;
  padding: 0.8rem 0.8rem 0.8rem 3rem;
}

.tit_04 {
  color: #333333;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.6rem;
}
.tit_04::after {
  content: "";
  display: block;
  width: 100%;
  background: linear-gradient(to right, #9d7b33 24%, #dcdcdc 24%);
  height: 0.2rem;
  margin: 0.8rem 0 0;
}

.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 {
    min-height: 30rem;
    font-size: 3.6rem;
    padding: 15rem 4rem 4rem;
    margin: 0;
  }
  .tit_02 {
    font-size: clamp(1.4rem, -0.1483870968rem + 2.5806451613vw, 3rem);
    margin: 0 0 2rem;
  }
  .tit_02 span {
    font-size: clamp(6rem, 0.1935483871rem + 9.6774193548vw, 12rem);
  }
  body:not(.index) .tit_02 {
    font-size: 3.2rem;
    padding: 0 0 1.6rem;
    margin: 0 0 3.3rem;
  }
  .tit_03 {
    font-size: 3rem;
    padding: 1.2rem 1.6rem;
    margin: 0 0 3.4rem;
  }
  .tit_04 {
    font-size: 2.8rem;
    margin: 0 0 4.2rem;
  }
  .tit_04::after {
    background: linear-gradient(to right, #9d7b33 20rem, #dcdcdc 20rem);
  }
  .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: #526458;
  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 {
    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: #526458;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  text-align: center;
  border-radius: 0;
  display: inline-flex;
  padding-block: 0.8rem;
  padding-left: 1.2rem;
  padding-right: 5.2rem;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  position: relative;
  z-index: 1;
}
*[class*=btn_] a::after {
  content: "\e800";
  font-family: "fontello";
  background: #526458;
  color: #fff;
  border-left: 1px solid #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: normal;
  width: 4rem;
  padding-block: 0.8rem;
  position: absolute;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 600px), print {
  *[class*=btn_] {
    text-align: left;
  }
  *[class*=btn_] a {
    font-size: 2rem;
    padding-block: 1.2rem;
    padding-left: 3.7rem;
    padding-right: 9.7rem;
  }
  *[class*=btn_] a::after {
    width: 6rem;
    padding-block: 1.2rem;
  }
}

.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: #f1f3f2;
  text-align: center;
  font-weight: normal;
  border: 1px solid #526458;
}
@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 #526458;
}
@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: "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", "YuGothic", 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: "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", "YuGothic", 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 0;
}
.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%, 1220px);
    margin-inline: auto;
    margin: 0 auto;
    padding: 0 2rem;
    /* 1200→600の間で 0→max へ滑らかに増える configの:rootもセットなのでそちらも適用 */
  }
  .main {
    font-size: fluid-rem(14px, 16px);
    padding: 0;
    width: 100%;
  }
  .tel {
    pointer-events: none !important;
  }
}
.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 {
  position: absolute;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
}
.header .wrap {
  margin: 2rem 1rem 1rem;
}
.header .wrap .logo {
  height: 3rem;
}
.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;
  aspect-ratio: 307/61;
}

@media screen and (min-width: 600px), print {
  .header .wrap {
    width: 100%;
    margin: 0 auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .header .wrap .logo {
    margin: 3rem 6rem;
    width: 100%;
    max-width: 30.7rem;
    height: auto;
  }
}
/* 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: #526458;
  color: #fff;
  font-size: 1.2rem;
  border: 1px solid #fff;
  border-radius: 0;
}
#menu .fixed_menu_btn .hamburger a::before, #menu .fixed_menu_btn .hamburger a::after,
#menu .fixed_menu_btn .hamburger a > span {
  content: "";
  position: absolute;
  left: 50%;
  width: 3rem;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
#menu .fixed_menu_btn .hamburger a::before {
  top: 2rem;
}
#menu .fixed_menu_btn .hamburger a::after {
  top: 3.4rem;
}
#menu .fixed_menu_btn .hamburger a > span {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
}
#menu .fixed_menu_btn.active .hamburger a::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#menu .fixed_menu_btn.active .hamburger a::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
#menu .fixed_menu_btn.active .hamburger a > span {
  opacity: 0;
}
#menu #nav {
  display: block;
  visibility: hidden;
  top: 0;
  opacity: 0;
  width: 100vw;
  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.open {
  visibility: visible;
  opacity: 1;
}
#menu #nav .gnav {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 2rem 0;
  font-size: 1.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
#menu #nav .gnav > li {
  text-align: left;
  margin: 0;
}
#menu #nav .gnav > li .sub {
  padding-left: 2rem;
  margin: 0;
}
#menu #nav .gnav > li > a {
  display: block;
  color: #526458;
  padding: 0 0 0 2rem;
  text-decoration: none !important;
  position: relative;
}
#menu #nav .gnav > li > a::before {
  content: "\e800";
  font-family: "fontello";
  margin-right: 0.4rem;
  color: #9d7b33;
  position: absolute;
  top: 0;
  left: 0;
}
#menu #nav .gnav > li .subnav {
  padding: 0 0 0 2rem;
}
#menu #nav .gnav > li .subnav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0.6rem 0 0;
  padding: 0;
  gap: 1.4rem 1.4rem;
}
#menu #nav .gnav > li .subnav ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.4rem 0.4rem;
  height: 100%;
  text-align: left;
  background: #f1f3f2;
}
#menu #nav .gnav > li .subnav ul li a:hover {
  opacity: 1;
  background: #ecf4f0;
}
#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 {
  #menu {
    display: block;
    height: 100%;
  }
  #menu.overlay {
    display: none;
  }
  #menu .fixed_menu_btn {
    width: 6rem;
    height: 6rem;
    top: 3rem;
    right: 6rem;
    padding: 0;
  }
  #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: #526458;
    color: #fff;
    font-size: 1.2rem;
    border: 1px solid #fff;
    border-radius: 0;
  }
  #menu .fixed_menu_btn .hamburger a::before, #menu .fixed_menu_btn .hamburger a::after,
  #menu .fixed_menu_btn .hamburger a > span {
    content: "";
    width: 2.6rem;
    height: 1px;
  }
  #menu .fixed_menu_btn .hamburger a::before {
    top: 2rem;
  }
  #menu .fixed_menu_btn .hamburger a::after {
    top: 3.8rem;
  }
  #menu .fixed_menu_btn .hamburger a > span {
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s;
  }
  #menu #nav {
    width: 100%;
    height: 100%;
    overflow-x: auto;
  }
  #menu #nav .gnav {
    gap: 2.4rem 0;
    margin: 14rem auto 0;
    width: min(100%, 1220px);
  }
  #menu #nav .gnav li a {
    padding: 0 0 0 2.2rem;
    font-size: clamp(1.4rem, 0.8193548387rem + 0.9677419355vw, 2rem);
  }
  #menu #nav .gnav li .sub {
    padding: 0 0 0 2.2rem;
    font-size: clamp(1.4rem, 0.8193548387rem + 0.9677419355vw, 2rem);
  }
  #menu #nav .gnav li .subnav ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1rem;
  }
  #menu #nav .gnav li .subnav ul li a {
    font-size: clamp(1.4rem, 1.0129032258rem + 0.6451612903vw, 1.8rem);
    padding: 1rem 0 1rem 1.2rem;
    text-align: center;
    transition: all 0.4s;
  }
  #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: #fff;
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  display: block;
}
.overview > .wrap .overviewL .tbl_gaiyo tr th {
  display: block;
  text-align: left;
  color: #526458;
  font-weight: 700;
}
.overview > .wrap .overviewL .tbl_gaiyo tr td {
  display: block;
  margin: 0 0 1rem;
  padding: 0 0 0.8rem;
  border-bottom: 1px solid #526458;
}
.overview > .wrap .overviewL .tbl_gaiyo tr td .bus li {
  position: relative;
  padding-left: 2.2rem;
}
.overview > .wrap .overviewL .tbl_gaiyo tr td .bus li::before {
  content: "■";
  display: block;
  color: #333333;
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 0;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .gmap {
  height: 30rem;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 100%;
}
.overview > .wrap .overviewR .overview_info {
  margin: 0 0 1rem;
  padding: 1rem;
  background: #f1f3f2;
}
.overview > .wrap .overviewR .overview_info ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem 0;
}
.overview > .wrap .overviewR .overview_info ul li {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}
.overview > .wrap .overviewR .overview_info ul li a {
  padding: 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  background: #fff;
  gap: 0 1rem;
}
.overview > .wrap .overviewR .overview_info ul li a::before {
  content: "";
  font-family: "fontello";
  background: #222;
  color: #fff;
  font-weight: normal;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
}
.overview > .wrap .overviewR .overview_info ul li.tel a {
  font-size: 1.8rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
  border: 1px solid #526458;
  color: #526458;
}
.overview > .wrap .overviewR .overview_info ul li.tel a::before {
  content: "\e801";
  background: #526458;
}
.overview > .wrap .overviewR .overview_info ul li.tel a rt {
  color: #9d7b33;
  font-family: "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 400;
}
.overview > .wrap .overviewR .overview_info ul li.tel a .size_s {
  font-size: 80%;
}
.overview > .wrap .overviewR .overview_info ul li.rsv a {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  border: 1px solid #9d7b33;
  color: #9d7b33;
}
.overview > .wrap .overviewR .overview_info ul li.rsv a::before {
  content: "\e802";
  background: #9d7b33;
}
.overview > .wrap .overviewR .overview_info ul li.insta a {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  border: 1px solid #526458;
  color: #526458;
}
.overview > .wrap .overviewR .overview_info ul li.insta a::before {
  content: "\e803";
  background: #526458;
}
.overview > .wrap .overviewR .bnr_recruit {
  margin: 0 auto;
  padding: 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  color: #fff;
  background: #645255;
  border: 1px solid #ceb276;
  box-shadow: 0 0 0 4px #645255;
}
.overview > .wrap .overviewR .bnr_recruit .left {
  text-align: center;
  padding-right: 1rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
.overview > .wrap .overviewR .bnr_recruit .left span {
  font-family: "Marcellus", serif;
  font-weight: 400;
}
.overview > .wrap .overviewR .bnr_recruit .right {
  padding-left: 0.8rem;
  border-left: 1px solid #ceb276;
}

@media screen and (min-width: 600px), print {
  .overview {
    margin: 0 0 0;
    padding: 10rem 0;
    font-size: clamp(1.2rem, 0.6193548387rem + 0.9677419355vw, 1.8rem);
  }
  .overview .clinic_name {
    margin: 0 0 6rem;
  }
  .overview .clinic_name img {
    max-width: 35rem;
  }
  .overview > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL,
  .overview > .wrap .overviewR {
    width: 48.5%;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo {
    display: table;
    border-spacing: 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr th {
    padding: 2rem;
    display: table-cell;
    vertical-align: top;
    width: 23%;
    border-bottom: 1px solid #526458;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr td {
    padding-block: 2rem;
    display: table-cell;
    width: 77%;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr:first-child th,
  .overview > .wrap .overviewL .tbl_gaiyo tr:first-child td {
    border-top: 1px solid #526458;
  }
  .overview > .wrap .overviewL .tbl_time {
    margin: 4rem 0 0;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR .gmap {
    height: 43rem;
  }
  .overview > .wrap .overviewR .btn_link {
    text-align: center;
  }
  .overview > .wrap .overviewR .overview_info {
    margin: 4.05rem 0 2.5rem;
    padding: 3.65rem clamp(2rem, -4.7741935484rem + 11.2903225806vw, 9rem);
  }
  .overview > .wrap .overviewR .overview_info ul {
    gap: 0.2rem 0;
  }
  .overview > .wrap .overviewR .overview_info ul li a {
    padding: 1rem;
    gap: 0 1rem;
  }
  .overview > .wrap .overviewR .overview_info ul li a::before {
    min-width: clamp(2.4rem, -0.1161290323rem + 4.1935483871vw, 5rem);
    height: 5rem;
    font-size: clamp(1.4rem, 0.8193548387rem + 0.9677419355vw, 2rem);
  }
  .overview > .wrap .overviewR .overview_info ul li.tel a {
    font-size: clamp(1.4rem, -0.535483871rem + 3.2258064516vw, 3.4rem);
  }
  .overview > .wrap .overviewR .overview_info ul li.tel a .size_s {
    font-size: clamp(1.2rem, 0.2322580645rem + 1.6129032258vw, 2.2rem);
  }
  .overview > .wrap .overviewR .overview_info ul li.rsv a {
    font-size: clamp(1.4rem, 0.4322580645rem + 1.6129032258vw, 2.4rem);
  }
  .overview > .wrap .overviewR .overview_info ul li.insta a {
    font-size: clamp(1.4rem, 0.4322580645rem + 1.6129032258vw, 2.4rem);
  }
  .overview > .wrap .overviewR .bnr_recruit {
    padding: 3rem clamp(1.7rem, 0.7322580645rem + 1.6129032258vw, 2.7rem);
    width: 100%;
    height: auto;
    aspect-ratio: 560/135;
    box-shadow: 0 0 0 10px #645255;
  }
  .overview > .wrap .overviewR .bnr_recruit .left {
    width: 32%;
    padding-right: clamp(1.7rem, 0.7322580645rem + 1.6129032258vw, 2.7rem);
    font-size: clamp(1.8rem, 0.6387096774rem + 1.935483871vw, 3rem);
    line-height: 1.2;
  }
  .overview > .wrap .overviewR .bnr_recruit .left span {
    display: block;
    font-size: clamp(1.2rem, 0.4258064516rem + 1.2903225806vw, 2rem);
  }
  .overview > .wrap .overviewR .bnr_recruit .right {
    width: 68%;
    padding-left: clamp(1.7rem, 0.7322580645rem + 1.6129032258vw, 2.7rem);
  }
  .overview {
    container: tab/inline-size;
  }
  @container tab (width < 970px) {
    .overview > .wrap {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      flex-direction: column;
      gap: 4rem 0;
    }
    .overview > .wrap .overviewL,
    .overview > .wrap .overviewR {
      width: 100%;
    }
    .overview > .wrap .bnr_recruit,
    .overview > .wrap .overview_info {
      width: 57rem !important;
      margin: 2rem auto !important;
    }
  }
}
/* フッター -------------------------------------- */
.footer_menu {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 199;
  font-size: 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer_menu ul {
  width: 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
}
.footer_menu ul .tel {
  display: block;
  text-align: center;
  width: 54%;
  padding: 0.4rem;
  font-size: 1.6rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-align: center;
  background: #fff;
  border: 1px solid #526458;
  color: #526458;
  line-height: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 0.4rem;
}
.footer_menu ul .tel::before {
  content: "\e801";
  font-family: "fontello";
  background: #526458;
  color: #fff;
  font-weight: normal;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-width: 3.6rem;
  height: 3.6rem;
  flex: 0 1 auto;
}
.footer_menu ul .tel rt {
  color: #9d7b33;
  font-family: "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: 1rem;
}
.footer_menu ul .rsv {
  width: 46%;
}
.footer_menu ul .rsv a {
  border: 1px solid #9d7b33;
  color: #9d7b33;
  text-align: center;
  background: #fff;
  width: 100%;
  font-size: 1.2rem;
  padding: 0.4rem;
  word-break: auto-phrase;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 0.4rem;
}
.footer_menu ul .rsv a::before {
  content: "\e802";
  font-family: "fontello";
  background: #9d7b33;
  color: #fff;
  font-weight: normal;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  flex: 1 0 auto;
  font-weight: 400;
}
.footer_menu ul .insta {
  display: none;
}
.footer_menu ul .insta a {
  border: 1px solid #526458;
  color: #526458;
  text-align: center;
  background: #fff;
  width: 100%;
  font-size: 1.2rem;
  padding: 0.4rem;
  word-break: auto-phrase;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
  gap: 0 0.4rem;
}
.footer_menu ul .insta a:hover {
  opacity: 1;
}
.footer_menu ul .insta a::before {
  content: "";
  background: url(../img/icon_Instagram.png) no-repeat center/contain;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 17px;
  width: 34px;
  height: 34px;
  flex: 1 0 auto;
}
.footer_menu ul .insta a span {
  font-size: 1.2rem;
}
.footer_menu ul .pageup {
  cursor: pointer;
  visibility: hidden;
  position: absolute;
  top: -4.8rem;
  right: 0.4rem;
}
.footer_menu ul .pageup a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0 0.4rem;
  line-height: 1;
  color: #526458;
  border: 1px solid #526458;
  background: #fff;
}
.footer_menu ul .pageup a::before {
  text-align: center;
  font-size: 2rem;
  font-family: "fontello";
  content: "\e805";
  font-weight: 400;
}

@media screen and (min-width: 600px), print {
  .footer_menu {
    display: block;
    width: auto;
    bottom: 4rem;
    right: clamp(0rem, -1.935483871rem + 3.2258064516vw, 2rem);
    left: auto;
    background: none;
    padding: 0 clamp(3.2rem, -0.6709677419rem + 6.4516129032vw, 7.2rem) 0 0;
  }
  .footer_menu ul {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .footer_menu ul .tel {
    width: fit-content;
    min-height: 7rem;
    padding: 0 1rem;
    font-size: clamp(1.8rem, 0.2516129032rem + 2.5806451613vw, 3.4rem);
  }
  .footer_menu ul .tel::before {
    width: 5rem;
    height: 5rem;
    font-size: clamp(1.4rem, 0.0451612903rem + 2.2580645161vw, 2.8rem);
  }
  .footer_menu ul .tel span::before {
    content: "tel.";
    font-size: clamp(1rem, -0.1612903226rem + 1.935483871vw, 2.2rem);
  }
  .footer_menu ul .rsv {
    width: fit-content;
  }
  .footer_menu ul .rsv a {
    padding: 0 1rem;
    height: 100%;
    font-size: clamp(1.2rem, 0.0387096774rem + 1.935483871vw, 2.4rem);
    white-space: nowrap;
  }
  .footer_menu ul .rsv a::before {
    width: 5rem;
    height: 5rem;
    font-size: clamp(1.4rem, 0.0451612903rem + 2.2580645161vw, 2.8rem);
  }
  .footer_menu ul .insta {
    width: fit-content;
    display: block;
  }
  .footer_menu ul .insta a {
    padding: 0 1rem 0 17px;
    height: 100%;
    font-size: clamp(1.2rem, 0.0387096774rem + 1.935483871vw, 2.4rem);
    white-space: nowrap;
    gap: 0 17px;
  }
  .footer_menu ul .insta a::before {
    width: 34px;
    height: 34px;
  }
  .footer_menu ul .insta a span {
    font-size: clamp(1rem, 0.2258064516rem + 1.2903225806vw, 1.8rem);
  }
  .footer_menu ul .pageup {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: clamp(-7.2rem, 0.6709677419rem + -6.4516129032vw, -3.2rem);
    width: clamp(3rem, -0.8709677419rem + 6.4516129032vw, 7rem);
  }
  .footer_menu ul .pageup a {
    width: 100%;
    height: 7rem;
  }
  .footer_menu ul .pageup a::before {
    font-size: 2.8rem;
  }
}
.footer {
  text-align: center;
  padding: 2rem 0 5.2rem;
  border-top: 1px solid #526458;
}
.footer .breadcrumb_list {
  display: none;
}
.footer .privacypolicy {
  display: inline-block;
  padding: 0.4rem 0;
  margin: 0 0 2rem;
}
.footer .privacypolicy:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer .copy {
  display: block;
  padding: 0.6rem 1rem;
  font-size: clamp(1rem, 0.8064516129rem + 0.3225806452vw, 1.2rem);
}

@media screen and (min-width: 600px), print {
  .footer {
    padding: 3rem 0 17.8rem;
  }
  .footer .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .footer .wrap .privacypolicy {
    display: inline-block;
    padding: 0;
    margin: 0;
    font-size: clamp(1.2rem, 0.6193548387rem + 0.9677419355vw, 1.8rem);
  }
  .footer .wrap .copy {
    display: inline-block;
    padding: 0;
    font-size: clamp(1.2rem, 0.6193548387rem + 0.9677419355vw, 1.8rem);
  }
}
/* PC固定メニュー -------------------------------------- */
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
.keyvsl_area {
  padding: 0;
  position: relative;
  z-index: 0;
  contain: paint;
}
.keyvsl_area #keyvsl {
  opacity: 0;
  transition: 1s opacity;
  margin: 0;
  max-width: 100%;
  height: 26rem;
  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%;
  z-index: 3;
}
.keyvsl_area .kv_contents .kv_item .line_01 {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: url(../img/index_keyvsl_parts01.svg) no-repeat center/contain;
  aspect-ratio: 978/452;
  width: 72%;
}

@media screen and (min-width: 600px), print {
  .keyvsl_area #keyvsl {
    height: 90rem;
  }
  .keyvsl_area .kv_contents .kv_item .line_01 {
    width: 97.8rem;
  }
  .keyvsl_area {
    container: tab/inline-size;
  }
  @container tab (width < 1200px) {
    .keyvsl_area .kv_contents .kv_item .line_01 {
      top: 54%;
      left: 50%;
      width: 90%;
      max-width: 97.8rem;
    }
  }
}
/* SP インスタ -------------------------------------- */
.top-insta {
  padding: 1rem 4rem 0;
  background: #e8f4e2;
}
.top-insta .insta a {
  line-height: 1.2;
  border: 1px solid #526458;
  color: #526458;
  text-decoration: none !important;
  text-align: center;
  background: #fff;
  width: 100%;
  font-size: 1.6rem;
  padding: 13px 15px;
  word-break: auto-phrase;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
  gap: 0 1.7rem;
}
.top-insta .insta a:hover {
  opacity: 1;
}
.top-insta .insta a::before {
  content: "";
  background: url(../img/icon_Instagram.png) no-repeat center/contain;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 15px;
  width: 29px;
  height: 29px;
  flex: 0;
}
.top-insta .insta a span {
  font-size: 1.2rem;
}

@media screen and (min-width: 600px), print {
  .top-insta {
    display: none;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 1rem 0 4rem;
  background: linear-gradient(to bottom, #e8f4e2, #ffffff);
}
.info .wrap .tit_02 span {
  display: block;
}
.info .wrap div dl {
  margin: 0;
  line-height: 1.4;
  padding: 0;
  height: 100%;
}
.info .wrap div dl .bar {
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid #526458;
}
.info .wrap div dl .bar:first-child {
  border-top: 1px solid #526458;
  padding: 1rem 0 1rem;
}
.info .wrap div dl .bar:nth-of-type(n + 5) {
  display: none;
}
.info .wrap div dl .bar dt {
  margin-bottom: 0;
  padding-left: 2rem;
  font-size: 110%;
  color: #333333;
  cursor: pointer;
  display: table;
  position: relative;
}
.info .wrap div dl .bar dt::before {
  content: "\e804";
  font-family: "fontello";
  color: #526458;
  position: absolute;
  left: 0;
  top: -0.4rem;
  display: inline-block;
  transition: transform 0.4s;
}
.info .wrap div dl .bar dt.close::before {
  transform: rotate(540deg);
}
.info .wrap div dl .bar dt:hover {
  opacity: 0.8;
}
.info .wrap div dl .bar dt .date {
  color: #9d7b33;
  margin-right: 0.6rem;
  display: block;
  font-size: 1.2rem;
}
.info .wrap div dl .bar dt .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
.info .wrap div dl .bar dd {
  padding: 0;
  margin: 1rem 0 0;
  display: none;
}
.info .wrap div dl .bar dd p {
  margin: 0;
}
.info .wrap div .btn_link {
  text-align: center;
}

@media screen and (min-width: 600px), print {
  .info {
    padding: 9.2rem 0 clamp(4rem, -1.9032258065rem + 9.8387096774vw, 10.1rem);
  }
  .info .wrap {
    padding: 0 4rem;
    margin: 0 auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .info .wrap .tit_02 {
    margin: 0;
    width: 27.8rem;
    font-size: clamp(1.8rem, 0.6387096774rem + 1.935483871vw, 3rem);
  }
  .info .wrap .tit_02 span {
    font-size: clamp(6rem, 4.8387096774rem + 1.935483871vw, 7.2rem);
  }
  .info .wrap div {
    flex: 1;
  }
  .info .wrap div dl {
    padding: 2.4rem 0 2.7rem;
  }
  .info .wrap div dl .bar {
    padding: 0 0 2.8rem;
    margin: 0 0 2.8rem;
  }
  .info .wrap div dl .bar:first-child {
    padding: 2.8rem 0 2.8rem;
  }
  .info .wrap div dl .bar dt {
    font-size: 2rem;
    padding-left: 2.6rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .info .wrap div dl .bar dt::before {
    top: 0.1rem;
  }
  .info .wrap div dl .bar dt .title {
    font-size: 2rem;
  }
  .info .wrap div dl .bar dt .date {
    display: inline-block;
    font-size: 1.8rem;
    margin-right: 1.6rem;
    position: relative;
    top: 0.2rem;
  }
  .info .wrap div dl .bar dd {
    padding-left: 2.6rem;
    font-size: 1.8rem;
  }
  .info .wrap div dl .bar dd p {
    margin: 0;
    padding: 0;
  }
  .info .wrap div .btn_link {
    margin: 0 auto;
  }
  .info {
    container: tab/inline-size;
  }
  @container tab (width < 970px) {
    .info .wrap {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      flex-direction: column;
      gap: 4rem 0;
    }
    .info .wrap > * {
      width: 100%;
      padding: 0 4rem;
    }
  }
}
/* 特長 -------------------------------------- */
.feature-column {
  background: #fff;
  padding: 2rem 0 2rem;
}
.feature-column .wrap ul {
  position: relative;
  z-index: 1;
  padding: 0 1rem 2rem;
  counter-reset: num_feature;
}
.feature-column .wrap ul li {
  counter-increment: num_feature 1;
  position: relative;
  margin: 6rem 0 0;
}
.feature-column .wrap ul li:first-child {
  margin: 0;
}
.feature-column .wrap ul li figure {
  margin: 0;
  padding: 3rem 0 0;
  width: 90%;
}
.feature-column .wrap ul li figure .num {
  position: absolute;
  top: -4.8rem;
  right: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 2rem;
}
.feature-column .wrap ul li figure .num::before {
  content: "";
  width: 6rem;
  height: 1px;
  background: #526458;
  display: block;
}
.feature-column .wrap ul li figure .num::after {
  content: counter(num_feature, decimal-leading-zero);
  display: block;
  color: #526458;
  font-size: 6rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
}
.feature-column .wrap ul li figure .img {
  position: relative;
}
.feature-column .wrap ul li figure .img::before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  width: 80%;
  height: 100%;
  border: 1px solid #9d7b33;
  top: 1rem;
  left: 1rem;
}
.feature-column .wrap ul li figure .img img {
  width: 80%;
  height: auto;
  display: block;
}
.feature-column .wrap ul li figure figcaption .tit {
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}
.feature-column .wrap ul li.bg_parts {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  height: calc(100% - 6rem);
  width: 100vw;
  background: #f1f3f2;
  z-index: -3;
  overflow: hidden;
  margin: 6rem 0 0;
}
.feature-column .wrap ul li.bg_parts::before {
  content: "";
  display: block;
  width: 100rem;
  height: 100rem;
  border-radius: 50%;
  position: absolute;
  left: -50rem;
  top: -50rem;
  background: radial-gradient(circle, #efe5d0 0, rgba(239, 229, 208, 0) 50%, rgba(239, 229, 208, 0) 100%);
  z-index: 2;
}
.feature-column .wrap ul li.bg_parts::after {
  content: "";
  display: block;
  width: 100rem;
  height: 100rem;
  border-radius: 50%;
  position: absolute;
  right: -50rem;
  bottom: -50rem;
  background: radial-gradient(circle, #e2f8ed 0, rgba(241, 243, 242, 0) 50%, rgba(241, 243, 242, 0) 100%);
  z-index: 2;
}
.feature-column .wrap ul li:nth-child(even) figure {
  margin: 0 0 0 auto;
}
.feature-column .wrap ul li:nth-child(even) figure .num {
  right: auto;
  left: 0;
}
.feature-column .wrap ul li:nth-child(even) figure .num::before {
  order: 2;
}
.feature-column .wrap ul li:nth-child(even) figure .num::after {
  order: 1;
}
.feature-column .wrap ul li:nth-child(even) figure .img::before {
  top: 1rem;
  right: 1rem;
  left: auto;
}
.feature-column .wrap ul li:nth-child(even) figure .img img {
  margin: 0 0 0 auto;
}

@media screen and (min-width: 600px), print {
  .feature-column {
    padding: 8.5rem 0 14rem;
  }
  .feature-column .wrap ul {
    padding: 0;
  }
  .feature-column .wrap ul li {
    margin: 0 0 0;
  }
  .feature-column .wrap ul li:first-child {
    margin: 0 0 13.7rem;
  }
  .feature-column .wrap ul li figure {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding-top: clamp(0rem, 7.8709677419rem + -6.4516129032vw, 4rem);
    gap: 0 7.7rem;
    width: 100%;
  }
  .feature-column .wrap ul li figure .num {
    top: clamp(-10rem, -22.3870967742rem + 20.6451612903vw, 2.8rem);
    gap: 0 3.1rem;
  }
  .feature-column .wrap ul li figure .num::before {
    font-size: clamp(9rem, 0.2903225806rem + 14.5161290323vw, 18rem);
  }
  .feature-column .wrap ul li figure .num::after {
    font-size: clamp(6rem, 0.1935483871rem + 9.6774193548vw, 12rem);
  }
  .feature-column .wrap ul li figure .img {
    width: 35%;
  }
  .feature-column .wrap ul li figure .img::before {
    width: 100%;
    top: 2rem;
    left: 2rem;
  }
  .feature-column .wrap ul li figure .img img {
    width: 100%;
  }
  .feature-column .wrap ul li figure figcaption {
    width: 46%;
    font-size: clamp(1.2rem, 0.6193548387rem + 0.9677419355vw, 1.8rem);
    line-height: 1.8;
    padding-bottom: 2.4rem;
  }
  .feature-column .wrap ul li figure figcaption .tit {
    font-size: clamp(1.8rem, 0.6387096774rem + 1.935483871vw, 3rem);
    margin: 0 0 clamp(1rem, -2.1935483871rem + 5.3225806452vw, 4.3rem);
    line-height: 2;
  }
  .feature-column .wrap ul li.bg_parts {
    pointer-events: none;
    position: absolute;
    top: 5.8rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    height: calc(100% - 58px - 30px);
    min-width: 2000px;
    margin: 0;
  }
  .feature-column .wrap ul li.bg_parts::before {
    width: 180rem;
    height: 180rem;
    left: -90rem;
    top: -90rem;
  }
  .feature-column .wrap ul li.bg_parts::after {
    width: 180rem;
    height: 180rem;
    right: -90rem;
    bottom: -90rem;
  }
  .feature-column .wrap ul li:nth-child(even) figure {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding-top: clamp(0rem, 7.8709677419rem + -6.4516129032vw, 4rem);
  }
  .feature-column .wrap ul li:nth-child(even) figure .num {
    right: auto;
    left: 0;
    top: -5rem;
  }
  .feature-column .wrap ul li:nth-child(even) figure .img::before {
    top: 2rem;
    right: 2rem;
  }
  .feature-column .wrap ul li:nth-child(even) figure .img img {
    margin: 0;
  }
  .feature-column .wrap ul li:nth-child(even) figure figcaption {
    padding-bottom: clamp(2rem, -4.1935483871rem + 10.3225806452vw, 8.4rem);
  }
  .feature-column .wrap ul li:nth-child(even) figure figcaption .tit {
    text-align: right;
  }
  .feature-column .wrap .btn_link {
    text-align: center;
    margin: 6rem auto 0;
  }
  .feature-column .wrap .btn_link a {
    width: 30rem;
  }
}
/* こんな皮膚の症状でお困りですか？ -------------------------------------- */
.symptoms-menu {
  padding: 10rem 1.2rem 4rem;
  position: relative;
}
.symptoms-menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: url(../img/index_symptoms-menu_bg01.webp) no-repeat center/cover;
}
.symptoms-menu .wrap {
  position: relative;
}
.symptoms-menu .wrap .bg {
  padding: 1.8rem 4rem 1rem;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.symptoms-menu .wrap .bg .tit_02 {
  text-align: center;
  padding: 0 0 0.6rem;
  border-bottom: 1px solid #9d7b33;
  line-height: 1.4;
}
.symptoms-menu .wrap .bg .tit_02 span {
  position: absolute;
  top: -4rem;
  right: 0;
  font-size: 4rem;
}
.symptoms-menu .wrap .bg .lst {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem 0;
  margin: 0 0 4rem;
}
.symptoms-menu .wrap .bg .lst li {
  padding-left: 2rem;
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
.symptoms-menu .wrap .bg .lst li::before {
  content: "\e800";
  font-family: "fontello";
  display: inline-block;
  font-size: 1rem;
  color: #9d7b33;
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.symptoms-menu .wrap .bg .lst li span {
  font-size: 80%;
}
.symptoms-menu .wrap .bg .lst li a {
  text-decoration: none;
}
.symptoms-menu .wrap .bg .bg_parts {
  pointer-events: none;
}
.symptoms-menu .wrap .bg .bg_parts li {
  position: absolute;
  z-index: 2;
}
.symptoms-menu .wrap .bg .bg_parts li.bg01 {
  background: url(../img/index_symptoms-menu_bg02.webp) no-repeat center/contain;
  aspect-ratio: 1334/1152;
  width: 12rem;
  height: auto;
  top: -10rem;
  left: -2rem;
}
.symptoms-menu .wrap .bg .bg_parts li.bg02 {
  background: url(../img/index_symptoms-menu_bg03.webp) no-repeat center/contain;
  aspect-ratio: 660/760;
  width: 8rem;
  height: auto;
  top: 5rem;
  right: -1rem;
}

@media screen and (min-width: 600px), print {
  .symptoms-menu {
    padding: 22.3rem 0 14rem;
  }
  .symptoms-menu::before {
    min-width: 2000px;
    width: 100vw;
  }
  .symptoms-menu .wrap .bg {
    max-width: 1043px;
    width: 100%;
    padding: 10.8rem 8.5rem 8.5rem;
    margin: 0 0 0 auto;
  }
  .symptoms-menu .wrap .bg .tit_02 {
    padding: 0 0 2rem;
    font-size: clamp(1.6rem, 0.2451612903rem + 2.2580645161vw, 3rem);
  }
  .symptoms-menu .wrap .bg .tit_02 span {
    top: -12.6rem;
    right: 2rem;
    font-size: clamp(6rem, 0.1935483871rem + 9.6774193548vw, 12rem);
  }
  .symptoms-menu .wrap .bg .lst {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 2rem 8.6rem;
    width: fit-content;
    margin: 0 0 0 auto;
  }
  .symptoms-menu .wrap .bg .lst li {
    font-size: clamp(1.4rem, 0.6258064516rem + 1.2903225806vw, 2.2rem);
    padding-left: 2.4rem;
    white-space: nowrap;
  }
  .symptoms-menu .wrap .bg .lst li::before {
    font-size: clamp(1rem, 0.6129032258rem + 0.6451612903vw, 1.4rem);
    top: 0.6rem;
  }
  .symptoms-menu .wrap .bg .lst li span {
    font-size: 1.8rem clamp(1.2rem, 0.6193548387rem + 0.9677419355vw, 1.8rem);
  }
  .symptoms-menu .wrap .bg .btn_link {
    text-align: center;
    margin: 3.5rem auto 0;
  }
  .symptoms-menu .wrap .bg .btn_link a {
    width: 30rem;
  }
  .symptoms-menu .wrap .bg .bg_parts li.bg01 {
    width: 66.7rem;
    top: -22.3rem;
    left: clamp(-80rem, -118.7096774194rem + 64.5161290323vw, -40rem);
  }
  .symptoms-menu .wrap .bg .bg_parts li.bg02 {
    width: 33rem;
    top: 22rem;
    right: auto;
    left: clamp(-44rem, -86.5806451613rem + 70.9677419355vw, 0rem);
  }
}
/* こんなお悩みありませんか？ -------------------------------------- */
.medical-menu {
  background: #526458;
  padding: 2rem 0 2rem;
}
.medical-menu .wrap .tit_02 {
  color: #fff;
  position: relative;
}
.medical-menu .wrap .tit_02::before {
  content: "";
  width: 100vw;
  height: 1px;
  background: #9d7b33;
  position: absolute;
  right: 0;
  bottom: -0.8rem;
}
.medical-menu .wrap .tit_02 span {
  display: block;
}
.medical-menu .wrap ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
.medical-menu .wrap ul li {
  height: 100%;
  width: 100%;
}
.medical-menu .wrap ul li a {
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #333333;
  padding: 1rem;
  text-decoration: none !important;
}
.medical-menu .wrap ul li a > span {
  height: 100%;
  width: 100%;
  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: rgba(255, 255, 255, 0.7);
  text-align: center;
  word-break: auto-phrase;
  padding: 0.8rem 0.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.medical-menu .wrap ul li a > span::before {
  content: "";
  display: block;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgb(206, 178, 118) 0%, rgba(206, 178, 118, 0) 50%, rgba(237, 221, 83, 0) 100%);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  right: -9rem;
  bottom: -9rem;
}
.medical-menu .wrap ul li a > span > span {
  display: block;
}
.medical-menu .wrap ul li a.spots-freckles {
  background: url(../img/index_medical-menu_spots-freckles.webp) no-repeat center/cover;
}
.medical-menu .wrap ul li a.wrinkles {
  background: url(../img/index_medical-menu_wrinkles.webp) no-repeat center/cover;
}
.medical-menu .wrap ul li a.sagging-face-line {
  background: url(../img/index_medical-menu_sagging-face-line.webp) no-repeat center/cover;
}
.medical-menu .wrap ul li a.acne-adult-acne {
  background: url(../img/index_medical-menu_acne-adult-acne.webp) no-repeat center/cover;
}
.medical-menu .wrap ul li a.acne-scars-uneven-tone {
  background: url(../img/index_medical-menu_acne-scars-uneven-tone.webp) no-repeat center/cover;
}
.medical-menu .wrap ul li a.pores-blackheads {
  background: url(../img/index_medical-menu_pores-blackheads.webp) no-repeat center/cover;
}
.medical-menu .wrap ul li a.dullness-tone-up {
  background: url(../img/index_medical-menu_dullness-tone-up.webp) no-repeat center/cover;
}
.medical-menu .wrap ul li a.medical-hair-removal {
  background: url(../img/index_medical-menu_medical-hair-removal.webp) no-repeat center/cover;
}
.medical-menu .wrap ul li a.mole-wart-removal {
  background: url(../img/index_medical-menu_mole-wart-removal.webp) no-repeat center/cover;
}

@media screen and (min-width: 600px), print {
  .medical-menu {
    padding: 12.7rem 0 14rem;
  }
  .medical-menu .wrap .tit_02 {
    font-size: clamp(2rem, 1.0322580645rem + 1.6129032258vw, 3rem);
    margin: 0 0 10rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .medical-menu .wrap .tit_02::before {
    bottom: -4rem;
  }
  .medical-menu .wrap .tit_02 > span {
    font-size: clamp(6rem, 1.935483871rem + 6.7741935484vw, 10.2rem);
    line-height: 1;
  }
  .medical-menu .wrap ul {
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 1.5rem 1.5rem;
  }
  .medical-menu .wrap ul li a {
    padding: 2rem;
    aspect-ratio: 39/26;
  }
  .medical-menu .wrap ul li a span {
    font-size: 2.6rem;
    padding: 0.8rem 2rem;
  }
  .medical-menu .wrap ul li a span::before {
    width: 40.7rem;
    height: 40.7rem;
    right: -18rem;
    bottom: -18rem;
  }
}
/* 医院紹介 -------------------------------------- */
.clinic-link {
  overflow: hidden;
  background: #f1f3f2;
  padding: 2rem 0 2rem;
  position: relative;
}
.clinic-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(to right, #efe5d0, rgba(255, 255, 255, 0));
  top: 50%;
  left: -50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.clinic-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(to left, #e2f8ed, #f1f3f2);
  top: 50%;
  right: -50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.clinic-link .wrap {
  position: relative;
  z-index: 2;
}
.clinic-link .wrap a {
  background: #fff;
  border-radius: 40px;
  padding: 0.8rem 2rem;
  text-decoration: none !important;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  position: relative;
}
.clinic-link .wrap a::after {
  content: "\e800";
  font-family: "fontello";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #aebab2;
}
.clinic-link .wrap a span {
  line-height: 1.2;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 2rem;
  color: #aebab2;
}

@media screen and (min-width: 600px), print {
  .clinic-link {
    padding: 10rem 0 10rem;
  }
  .clinic-link::before {
    width: 181rem;
  }
  .clinic-link::after {
    width: 181rem;
  }
  .clinic-link .wrap {
    z-index: 2;
  }
  .clinic-link .wrap a {
    border-radius: 200px;
    font-size: clamp(1.6rem, 0.2451612903rem + 2.2580645161vw, 3rem);
    padding: 4.3rem 8.65rem 4.3rem 12.6rem;
    line-height: 1.2;
  }
  .clinic-link .wrap a::after {
    right: 8.65rem;
  }
  .clinic-link .wrap a span {
    font-size: clamp(3.2rem, -0.6709677419rem + 6.4516129032vw, 7.2rem);
  }
}
/* ----------------------------------------------------------------------------------
下層　_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;
  line-height: 1.2;
  display: inline-block;
}
body:not(.index) .breadcrumb_list li:not(:last-child)::after {
  content: ">";
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 1rem;
  position: relative;
  top: -0.2rem;
}
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: 1220px;
  }
  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: 3rem 1rem 6rem;
}
@media screen and (min-width: 600px), print {
  body:not(.index) .main {
    margin: 6rem 0 10rem;
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0.2rem;
  }
}

@media screen and (min-width: 600px), print {
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
.email {
  line-height: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
}

/* お知らせ */
.info_archive dl {
  margin: 0;
  line-height: 1.4;
  padding: 0;
  height: 100%;
}
.info_archive dl .bar {
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid #526458;
}
.info_archive dl .bar:first-child {
  border-top: 1px solid #526458;
  padding: 1rem 0 1rem;
}
.info_archive dl .bar dt {
  margin-bottom: 0;
  padding-left: 2rem;
  font-size: 110%;
  color: #333333;
  cursor: pointer;
  display: table;
  position: relative;
}
.info_archive dl .bar dt::before {
  content: "\e804";
  font-family: "fontello";
  color: #526458;
  position: absolute;
  left: 0;
  top: -0.4rem;
  display: inline-block;
  transition: transform 0.4s;
  transform: rotate(540deg);
}
.info_archive dl .bar dt.close::before {
  transform: rotate(0deg);
}
.info_archive dl .bar dt:hover {
  opacity: 0.8;
}
.info_archive dl .bar dt .date {
  color: #9d7b33;
  margin-right: 0.6rem;
  display: block;
  font-size: 1.2rem;
}
.info_archive dl .bar dt .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
.info_archive dl .bar dd {
  padding: 0;
  margin: 1rem 0 0;
}
.info_archive dl .bar dd p {
  margin: 0;
}

@media screen and (min-width: 600px), print {
  .info_archive dl {
    padding: 2.4rem 0 2.7rem;
  }
  .info_archive dl .bar {
    padding: 0 0 2.8rem;
    margin: 0 0 2.8rem;
  }
  .info_archive dl .bar:first-child {
    padding: 2.8rem 0 2.8rem;
  }
  .info_archive dl .bar dt {
    font-size: 2rem;
    padding-left: 2.6rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .info_archive dl .bar dt::before {
    top: 0.1rem;
  }
  .info_archive dl .bar dt .title {
    font-size: 2rem;
  }
  .info_archive dl .bar dt .date {
    display: inline-block;
    font-size: 1.8rem;
    margin-right: 1.6rem;
    position: relative;
    top: 0.2rem;
  }
  .info_archive dl .bar dd {
    padding-left: 2.6rem;
    font-size: 1.8rem;
  }
  .info_archive dl .bar dd p {
    margin: 0;
    padding: 0;
  }
}
/* ドクター紹介 */
.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;
  font-weight: 700;
  font-size: 120%;
  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;
  }
}