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

: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_green {
  color: #7bbca3;
}

.clr_salmonpink {
  color: #f6a38b;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 4rem 6rem 4rem;
    margin-bottom: 3rem;
    border-radius: 30px;
  }
}
*[class*=frame_].frame_01 {
  background: #f4f9f7;
}
*[class*=frame_].frame_02 {
  background: #fdf7f5;
}

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

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

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
/* マージン・パディング回り -------------------------------------- */
.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

section > section:first-of-type {
  margin-top: 2rem;
}

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

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

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

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

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  section > section:first-of-type {
    margin-top: 4rem;
  }
  .main > section ~ section,
  .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section,
  .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section,
  .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section,
  .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  table-layout: auto;
}
.tbl_time caption {
  caption-side: bottom;
  line-height: 1.6;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption .close_txt {
  padding: 0 0.4rem;
  margin: 0 0.4rem 0 0;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
}
.tbl_time thead tr th {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 0.2rem 0;
  border-radius: 10px 10px 0 0;
  position: relative;
  overflow: hidden;
}
.tbl_time thead tr th::before {
  display: block;
  font-family: "fontello";
  font-size: 4.8rem;
  line-height: 0;
  position: absolute;
  top: 0;
  right: 2rem;
  opacity: 0.2;
}
.tbl_time tbody tr th {
  font-weight: normal;
}
.tbl_time tbody tr th[scope=col] {
  padding: 0.4rem 0;
  font-size: 1.2rem;
  color: #222222;
  font-weight: normal;
}
.tbl_time tbody tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tbody tr th.time {
  background: #fff;
  font-size: 1.2rem;
  border-bottom: 1px solid #b5b5b5;
}
.tbl_time tbody tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: #fff;
  border-bottom: 1px solid #b5b5b5;
  line-height: 1;
}
.tbl_time--shika caption .close_txt {
  border: #7bbca3 1px solid;
}
.tbl_time--shika thead tr th {
  background: #7bbca3;
}
.tbl_time--shika thead tr th::before {
  content: "\e80b";
}
.tbl_time--shika tbody tr th[scope=col] {
  background: #d9ebe4;
}
.tbl_time--shika tbody tr th.time {
  border-bottom: 1px solid #7bbca3;
}
.tbl_time--shika tbody tr td {
  color: #7bbca3;
  border-bottom: 1px solid #7bbca3;
}
.tbl_time--ika caption .close_txt {
  border: 1px solid #f6a38b;
}
.tbl_time--ika thead tr th {
  background: #f6a38b;
}
.tbl_time--ika thead tr th::before {
  content: "\e805";
}
.tbl_time--ika tbody tr th[scope=col] {
  background: #fce4dd;
}
.tbl_time--ika tbody tr th.time {
  border-bottom: 1px solid #f6a38b;
}
.tbl_time--ika tbody tr td {
  color: #f6a38b;
  border-bottom: 1px solid #f6a38b;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.8rem;
  }
  .tbl_time caption {
    font-size: 1.8rem;
    margin-top: 0.4rem;
  }
  .tbl_time caption .close_txt {
    padding: 0 2rem;
    margin: 0.4rem 1.2rem 0 0;
  }
  .tbl_time thead tr th {
    font-size: 2.4rem;
    padding: 1.2rem 0;
    border-radius: 10px 10px 0 0;
  }
  .tbl_time thead tr th::before {
    font-size: 13rem;
  }
  .tbl_time tbody tr th[scope=col] {
    padding: 0.4rem 0;
    font-size: 1.8rem;
  }
  .tbl_time tbody tr th[scope=col]:first-child {
    width: 35%;
  }
  .tbl_time tbody tr th.time {
    font-size: 1.8rem;
  }
  .tbl_time tbody tr td {
    padding: 2rem 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;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-weight: 500;
  padding: 4rem 1rem 2rem;
  margin: 0 0 3rem;
  min-height: 17rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.tit_02 {
  color: #222222;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1.2;
}
.tit_02::before {
  content: "";
  display: block;
  width: 100%;
  height: 2.6rem;
  background: url(../img/tit_02_parts01.svg) no-repeat center/contain;
  margin: 0 0 0.6rem;
}
.tit_02 .eng_txt {
  margin: 0.4rem 0 0;
  font-size: 1.2rem;
  text-align: center;
  color: #7bbca3;
  display: block;
}

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

.tit_03 {
  color: #fff;
  padding: 0.8rem 1rem 0.8rem 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  border-radius: 10px;
  background: #7bbca3;
  position: relative;
}
.tit_03::before {
  content: "";
  display: block;
  border-radius: 2px;
  width: 2px;
  height: 90%;
  background: #d9ebe4;
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.tit_04 {
  color: #222222;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0 0 0.8rem;
  border-bottom: 1px solid #7bbca3;
}

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

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center/auto auto;
    font-size: 4.2rem;
    min-height: 40rem;
    line-height: 1;
    padding: 17rem 1rem 2rem;
    margin: 0 0 1rem;
  }
  .tit_02 {
    font-size: 4.2rem;
    letter-spacing: 0.2rem;
    margin: 0 0 5rem;
  }
  .tit_02::before {
    height: 3.8rem;
    margin: 0 auto 1.8rem;
  }
  .tit_02 .eng_txt {
    font-size: 1.8rem;
    margin: 1.6rem 0 0;
  }
  body:not(.index) .tit_02::after {
    margin: 3rem auto 0;
    width: 5rem;
  }
  .tit_03 {
    font-size: 3.6rem;
    margin: 0 0 5rem;
    padding: 1.2rem 2rem 1.2rem 3rem;
  }
  .tit_03::before {
    width: 4px;
    left: 1.4rem;
  }
  .tit_04 {
    font-size: 3rem;
    margin: 0 0 4rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 > li {
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
.lst_ul01 > li:last-child {
  padding-bottom: 0;
}
.lst_ul01 > li::before {
  content: "●";
  color: #f7b09b;
  position: absolute;
  left: 0;
  top: 0;
}
.lst_ul01 > li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lst_ul01.flex li {
    width: 49%;
  }
}
@media screen and (min-width: 48em), print {
  .lst_ul01.inline {
    gap: 0 2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.lst_ul01 > .lst_ol01 {
  padding: 1rem 0 0 0;
}
.lst_ul01 > .lst_ol01 li::before {
  color: #212121;
}

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

.lst_dl01 div {
  margin: 0 0 1rem;
}
.lst_dl01 div dt {
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.lst_dl01 div dd {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 div {
    display: -webkit-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: 10rem;
  }
  .lst_dl01 div dd {
    flex: 1;
  }
}
.lst_dl02 dt {
  background: #ecf5f1;
  text-align: center;
  font-weight: 500;
  border: 1px solid #cccccc;
  border-bottom: none;
  padding: 1rem;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 dt {
    padding: 1.6rem 2rem;
  }
}
.lst_dl02 dd {
  padding: 1rem;
  margin: 0 0 1.6rem;
  border: 1px solid #ccc;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 dd {
    padding: 2rem;
  }
}

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

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex2 > section,
  .flex2 > li {
    width: 48%;
    margin: 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  background: #fff;
  color: #7bbca3;
  border: 1px solid #7bbca3;
  text-align: center;
  font-weight: 500;
  padding: 0.6rem 4rem;
  border-radius: 25px;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
  transition: all 0.4s;
}
*[class*=btn_] a::after {
  content: "\e4a2";
  font-family: "fontello";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
*[class*=btn_] a:hover {
  opacity: 1;
  background: #7bbca3;
  color: #fff;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
  *[class*=btn_] a {
    font-size: 1.8rem;
    padding: 2rem 4rem;
    min-width: 30rem;
    border-radius: 120px;
  }
  *[class*=btn_] a::after {
    right: 1.8rem;
  }
}
*[class*=btn_][class*="--center"] {
  width: 100%;
  text-align: center;
}
*[class*=btn_].btn_link--blog {
  text-align: center;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_].btn_link--blog {
    width: 100%;
  }
}
*[class*=btn_].btn_link--blog a {
  margin: 2rem auto 0;
  color: #fff;
  background: #7bbca3;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_].btn_link--blog a {
    width: 100%;
    min-width: auto;
    padding: 1rem 3rem;
  }
}
*[class*=btn_].btn_link--blog a:hover {
  background: #fff;
  color: #7bbca3;
}

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

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

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low thead tr th {
  background: #7bbca3;
  color: #fff;
  border: 1px solid #cccccc;
  text-align: center;
  padding: 0.8rem 1rem;
}
.tbl_low thead tr th:first-child {
  width: 30%;
}
@media screen and (min-width: 48em), print {
  .tbl_low thead tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr th {
  width: 30%;
  padding: 0.8rem;
  background: #ecf5f1;
  text-align: center;
  font-weight: 500;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr td {
  padding: 0.8rem 1rem;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr td {
    padding: 2rem 2rem;
  }
}
.tbl_low--price02 thead tr th:first-child {
  width: 46%;
}
.tbl_low--price02 tbody tr th {
  width: 46%;
}
.tbl_low--price02 tbody tr td:first-of-type {
  text-align: right;
}

.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: 48em), print {
  .tbl_access tr th {
    width: 30%;
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
html {
  font-size: 3.125vw;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 500;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  background: #fff;
  color: #212121;
}

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

.wrap {
  padding: 0 1rem 0;
}

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

@media screen and (min-width: 48em), print {
  .overflow {
    overflow-x: hidden;
  }
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1220px;
  }
  body > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 10rem auto 0;
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.6rem;
    padding: 0 0 0;
    width: 100%;
  }
}
/* アイコンフォント -------------------------------------- */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
/* ヘッダー -------------------------------------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 1rem 1rem rgba(255, 255, 255, 0.4);
  z-index: 201;
}
.header .wrap {
  margin: 1rem;
}
.header .wrap .logo {
  height: 2rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headR {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header {
    position: relative;
    background: none;
    box-shadow: 0 0 1rem 1rem rgba(255, 255, 255, 0.9);
  }
  .header::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
  }
  .header .wrap {
    margin: 0 auto 2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    gap: 0 4rem;
  }
  .header .wrap .logo {
    width: 50rem;
    height: 5.5rem;
  }
  .header .wrap .headR {
    flex: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .header .wrap .headR > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    color: #fff;
    width: 100%;
  }
  .header .wrap .headR > ul .tel_item {
    padding: 1.6rem 1rem 1.8rem 1.8rem;
    width: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 1.6rem;
  }
  .header .wrap .headR > ul .tel_item p {
    font-size: 2.4rem;
    margin: 0;
    position: relative;
    bottom: -0.2rem;
  }
  .header .wrap .headR > ul .tel_item p::before {
    display: block;
    font-family: "fontello";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0.2;
  }
  .header .wrap .headR > ul .tel_item .tel {
    font-size: 3rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    gap: 0 0.7rem;
    letter-spacing: 0.1rem;
  }
  .header .wrap .headR > ul .tel_item .tel::before {
    content: "TEL:";
    display: block;
    font-size: 1.8rem;
  }
  .header .wrap .headR > ul .tel_item--shika {
    background: #7bbca3;
  }
  .header .wrap .headR > ul .tel_item--shika p::before {
    content: "\e80b";
    font-size: 4.8rem;
  }
  .header .wrap .headR > ul .tel_item--ika {
    background: #f6a38b;
  }
  .header .wrap .headR > ul .tel_item--ika p::before {
    content: "\e805";
    font-size: 4.8rem;
  }
}
/* 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: 5rem;
  height: 5rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  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;
  gap: 0.4rem 0;
  padding: 0.2rem 0rem 0;
  height: 100%;
  text-decoration: none;
  background: #cccccc;
  border-radius: 0 0 0 14px;
  color: #fff;
  font-size: 1.2rem;
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "\e80d";
  font-family: "fontello";
  font-size: 1.8rem;
  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: "\e80e";
}
#menu .fixed_menu_btn.active .hamburger a::after {
  content: "CLOSE";
}
#menu #nav {
  display: block;
  visibility: hidden;
  top: 0;
  right: -27rem;
  opacity: 0;
}
#menu #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 4rem 2rem 6rem;
  background-color: white;
  overflow-y: scroll;
  transition: all 0.5s;
  position: fixed;
  left: auto !important;
  z-index: 203;
}
#menu #nav.sp_nav.open {
  visibility: visible;
  opacity: 1;
  right: 0;
}
#menu #nav.sp_nav > ul {
  display: block;
}
#menu #nav.sp_nav > ul > li {
  text-align: left;
  margin: 0;
  border-bottom: 1px solid #ccc;
}
#menu #nav.sp_nav > ul > li > a {
  display: block;
  padding: 1.2rem 1.2rem 1.2rem;
  font-size: 1.4rem;
  color: #212121;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-decoration: none !important;
}
#menu #nav.sp_nav > ul > li > a.sub {
  position: relative;
}
#menu #nav.sp_nav > ul > li > a.sub::after {
  content: "\f004";
  color: #212121;
  font-family: "fontello";
  display: inline-block;
  position: absolute;
  right: 2rem;
  top: 1.2rem;
  transition: transform 0.2s;
}
#menu #nav.sp_nav > ul > li > a.sub.close::after {
  transform: rotate(180deg);
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav {
  display: none;
  margin: 0 0 1rem;
  padding: 2rem 1.8rem;
  border-radius: 10px;
  background: #f7f4ee;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav p {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  margin: 0 0 2rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid #222;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav p::before {
  content: "";
  font-weight: normal;
  font-family: "fontello";
  margin-right: 1rem;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav p.shika {
  color: #7bbca3;
  border-bottom: 1px solid #7bbca3;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav p.shika::before {
  content: "\e80b";
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav p.ika {
  margin-top: 3rem;
  color: #f6a38b;
  border-bottom: 1px solid #f6a38b;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav p.ika::before {
  content: "\e805";
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul {
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 1.8rem 0;
  justify-content: start;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul.shika {
  color: #7bbca3;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul.ika {
  color: #f6a38b;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  width: 100%;
  padding: 0;
  text-align: left;
  transition: all 0.2s;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a::before {
  content: "\e4a2";
  font-family: "fontello";
  margin-right: 1rem;
  font-weight: normal;
  transition: all 0.2s;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a:hover {
  opacity: 0.8;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a .br {
  display: none;
}
#menu .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#menu .overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

@media screen and (min-width: 48em), print {
  .fixed_menu_btn {
    display: none;
  }
  #menu {
    display: block;
    height: 100%;
    /* Gナビ　ハイライト */
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: none;
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 1rem 1rem rgba(255, 255, 255, 0.9);
  }
  #menu #nav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    gap: 0 2rem;
    position: relative;
  }
  #menu #nav .gnav > li {
    width: auto;
  }
  #menu #nav .gnav > li > a {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    display: block;
    text-align: center;
    font-size: 1.8rem;
    padding: 1rem 0;
    transition: color 0.4s;
  }
  #menu #nav .gnav > li > a:hover {
    opacity: 1;
    color: #34af94;
  }
  #menu #nav .gnav > li > a:hover::after {
    color: #34af94;
  }
  #menu #nav .gnav > li > a.sub::after {
    content: "\f004";
    font-family: "fontello";
    display: inline-block;
    margin-left: 0.8rem;
    transition: color 0.4s, transform 0.2s;
    position: relative;
  }
  #menu #nav .gnav > li > a.sub.close::after {
    top: -0.2rem;
    transform: rotate(180deg);
  }
  #menu #nav .gnav > li .subnav {
    width: 1200px;
    padding: 4.1rem 6rem 5rem;
    display: none;
    position: absolute;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-radius: 30px;
    background: #f7f4ee;
  }
  #menu #nav .gnav > li .subnav p {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
    margin: 0 0 2rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid #222;
  }
  #menu #nav .gnav > li .subnav p::before {
    content: "";
    font-weight: normal;
    font-family: "fontello";
    margin-right: 1rem;
  }
  #menu #nav .gnav > li .subnav p.shika {
    color: #7bbca3;
    border-bottom: 1px solid #7bbca3;
  }
  #menu #nav .gnav > li .subnav p.shika::before {
    content: "\e80b";
  }
  #menu #nav .gnav > li .subnav p.ika {
    margin-top: 4rem;
    color: #f6a38b;
    border-bottom: 1px solid #f6a38b;
  }
  #menu #nav .gnav > li .subnav p.ika::before {
    content: "\e805";
  }
  #menu #nav .gnav > li .subnav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem 0;
    justify-content: start;
  }
  #menu #nav .gnav > li .subnav ul.shika {
    color: #7bbca3;
  }
  #menu #nav .gnav > li .subnav ul.ika {
    color: #f6a38b;
  }
  #menu #nav .gnav > li .subnav ul li a {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    width: 100%;
    padding: 0;
    text-align: left;
    transition: all 0.2s;
  }
  #menu #nav .gnav > li .subnav ul li a::before {
    content: "\e4a2";
    font-family: "fontello";
    margin-right: 1rem;
    font-weight: normal;
    transition: all 0.2s;
  }
  #menu #nav .gnav > li .subnav ul li a:hover {
    opacity: 0.8;
  }
  #menu #nav .gnav > li .subnav ul li a .br {
    display: none;
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 1rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #f7f4ee;
}
.overview .clinic_name {
  text-align: center;
  margin: -4rem 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  display: block;
  width: 100%;
}
.overview > .wrap .overviewL .tbl_gaiyo th {
  display: block;
  width: 100%;
  font-size: 110%;
  text-align: left;
  padding: 0.4rem 0.4rem 0.4rem;
  color: #7bbca3;
  position: relative;
}
.overview > .wrap .overviewL .tbl_gaiyo th::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(to right, #7bbca3 4rem, #cccccc 4rem);
  margin: 0 0 1rem;
}
.overview > .wrap .overviewL .tbl_gaiyo td {
  display: block;
  padding: 0.4rem;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR .img_map {
  margin: 1rem 0;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 30rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 1rem 0 6rem;
    font-size: 1.8rem;
  }
  .overview .clinic_name {
    margin: -6rem 0 6rem;
  }
  .overview .clinic_name img {
    max-width: 40rem;
  }
  .overview > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .overview > .wrap .overviewL {
    width: 57rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo {
    display: table;
    table-layout: fixed;
    border-spacing: 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr th {
    display: table-cell;
    font-size: 1.8rem;
    vertical-align: top;
    text-align: center;
    width: 11rem;
    padding: 2rem 0 2rem;
    border-bottom: 1px solid #7bbca3;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr th::before {
    content: none;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr td {
    display: table-cell;
    font-size: 1.8rem;
    vertical-align: top;
    border-bottom: 1px solid #ccc;
    padding: 2rem 1rem 2rem 2rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr td .mt20 {
    margin: 2rem 0 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr:first-child th {
    border-top: 1px solid #7bbca3;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr:first-child td {
    border-top: 1px solid #ccc;
  }
  .overview > .wrap .overviewR {
    width: 57rem;
    margin: 0;
  }
  .overview > .wrap .overviewR .tbl_time {
    margin: 0;
  }
  .overview > .wrap .overviewR .tbl_time--ika {
    margin: 2rem 0 0;
  }
  .overview > .wrap .overviewR .img_map {
    margin: 2rem 0;
  }
  .overview > .wrap .overviewR .gmap iframe {
    height: 30rem;
  }
}
/* フッター -------------------------------------- */
.footer_menu--sp {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 6rem;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer_menu--sp > div {
  width: 84%;
  height: 100%;
}
.footer_menu--sp > div > ul {
  height: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer_menu--sp > div > ul .tel {
  display: block;
  text-align: center;
  width: 50%;
}
.footer_menu--sp > div > ul .tel a {
  height: 100%;
  font-weight: 700;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer_menu--sp > div > ul .rsv {
  width: 50%;
}
.footer_menu--sp > div > ul .rsv a {
  color: #fff;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer_menu--sp > div > ul .rsv a::before {
  content: "";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.footer_menu--sp > div > ul.shika .tel a {
  color: #34af94;
  border-bottom: 2px solid #34af94;
}
.footer_menu--sp > div > ul.shika .rsv a {
  background: #34af94;
}
.footer_menu--sp > div > ul.shika .rsv a::before {
  content: "\e80b";
}
.footer_menu--sp > div > ul.ika .tel a {
  color: #f1724f;
}
.footer_menu--sp > div > ul.ika .rsv a {
  background: #f1724f;
}
.footer_menu--sp > div > ul.ika .rsv a::before {
  content: "\e805";
}
.footer_menu--sp > div.pageup {
  width: 16%;
  cursor: pointer;
  border-left: 2px solid #fff;
}
.footer_menu--sp > div.pageup a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding: 0 0.4rem;
  line-height: 1;
  background: #cccccc;
}
.footer_menu--sp > div.pageup a::before {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-family: "fontello";
  content: "3";
}
.footer_menu--sp > div.pageup a span {
  display: none;
}
.footer_menu--pc {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer_menu--sp {
    display: none;
  }
  .footer_menu--pc {
    display: -webkit-flex;
    display: flex;
    width: fit-content;
    height: fit-content;
    position: fixed;
    bottom: 0;
    right: 2rem;
    left: auto;
    z-index: 200;
    cursor: pointer;
    padding: 0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }
  .footer_menu--pc > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
  }
  .footer_menu--pc > ul .rsv a {
    height: 100%;
    color: #fff;
    padding: 0 3.2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 2.4rem;
  }
  .footer_menu--pc > ul .rsv a::before {
    content: "";
    font-family: "fontello";
    margin-right: 0.4rem;
  }
  .footer_menu--pc > ul .rsv--shika a {
    background: #34af94;
  }
  .footer_menu--pc > ul .rsv--shika a::before {
    content: "\e80b";
  }
  .footer_menu--pc > ul .rsv--ika a {
    background: #f1724f;
  }
  .footer_menu--pc > ul .rsv--ika a::before {
    content: "\e805";
  }
  .footer_menu--pc .pageup {
    width: 7rem;
    height: 7rem;
  }
  .footer_menu--pc .pageup a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0 0.4rem;
    line-height: 1;
    background: #cccccc;
    cursor: pointer;
  }
  .footer_menu--pc .pageup a::before {
    text-align: center;
    color: #fff;
    font-size: 2.8rem;
    font-family: "fontello";
    content: "3";
  }
  .footer_menu--left {
    border-radius: 0;
    right: auto;
    left: 4rem;
  }
  .footer_menu--left a {
    width: 45rem;
  }
  .footer_menu--left a:hover {
    opacity: 1;
    filter: contrast(1.08);
  }
}
.footer {
  text-align: center;
  padding: 0 0 0;
  background: #8dc5b0;
}
.footer .breadcrumb_list {
  display: none;
}
.footer .footer_link {
  display: none;
}
.footer .facility_link {
  padding: 1rem 0 1rem;
}
.footer .facility_link li {
  margin: 0 0 0.4rem;
}
.footer .facility_link li a {
  font-size: 1.2rem;
  color: #fff;
}
.footer .copy {
  display: block;
  background: #7bbca3;
  color: #fff;
  padding: 0.6rem 1rem 6.6rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 0;
  }
  .footer .footer_link {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem 0;
    padding: 2.6rem 0 3.1rem;
  }
  .footer .footer_link ul {
    display: block;
    text-align: center;
    margin: 0 auto 0;
  }
  .footer .footer_link ul li {
    display: inline-block;
    font-size: 1.8rem;
  }
  .footer .footer_link ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
    color: #fff;
  }
  .footer .footer_link ul li a {
    opacity: 1;
    color: #fff;
  }
  .footer .footer_link ul li a span {
    display: none;
  }
  .footer .footer_link ul li a .br {
    display: none;
  }
  .footer .footer_link ul li a:hover {
    text-decoration: underline;
  }
  .footer .footer_link ul li.treatment {
    display: none;
  }
  .footer .facility_link {
    padding: 2rem 0 3rem;
  }
  .footer .facility_link li {
    margin: 0 0 1.4rem;
  }
  .footer .facility_link li a {
    font-size: 1.6rem;
  }
  .footer .copy {
    font-size: 1.8rem;
    padding: 2rem 0 9.1rem;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
.keyvsl_area {
  padding: 0;
  position: relative;
  z-index: 1;
  contain: paint;
}
.keyvsl_area #keyvsl {
  opacity: 0;
  transition: 1s opacity;
  margin: 0;
  max-width: 100%;
  height: 30rem;
  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_copy01 {
  position: absolute;
  right: 2rem;
  top: 6.4rem;
  display: -webkit-flex;
  display: flex;
}
.keyvsl_area .kv_contents .kv_copy01 > p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.16), 0 0 15px rgba(0, 0, 0, 0.16), 0 0 15px rgba(0, 0, 0, 0.16), 0 0 15px rgba(0, 0, 0, 0.16), 0 0 15px rgba(0, 0, 0, 0.16), 0 0 15px rgba(0, 0, 0, 0.16);
  margin: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  min-width: 2.4rem;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
}
.keyvsl_area .kv_contents .kv_copy02,
.keyvsl_area .kv_contents .kv_copy03 {
  position: absolute;
  width: 11rem;
  height: 11rem;
}
.keyvsl_area .kv_contents .kv_copy02 p,
.keyvsl_area .kv_contents .kv_copy03 p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  padding: 2rem 1rem;
  margin: 0;
  border-radius: 50%;
  background: #f6a38b;
  color: #fff;
  font-size: 1.2rem;
  display: flex !important;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.keyvsl_area .kv_contents .kv_copy02 p::before,
.keyvsl_area .kv_contents .kv_copy03 p::before {
  content: "";
  display: block;
  width: 3.4rem;
  height: 3.4rem;
}
.keyvsl_area .kv_contents .kv_copy02 p::after,
.keyvsl_area .kv_contents .kv_copy03 p::after {
  content: "";
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.4rem 0;
  width: calc(100% - 0.6rem);
  height: calc(100% - 0.6rem);
  border: #fff 1px solid;
  border-radius: 50%;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  pointer-events: none;
}
.keyvsl_area .kv_contents .kv_copy02 {
  left: 2rem;
  bottom: 0;
}
.keyvsl_area .kv_contents .kv_copy02 p::before {
  background: url(../img/index_keyvsl_parts01.svg) no-repeat center/contain;
}
.keyvsl_area .kv_contents .kv_copy03 {
  left: 14rem;
  bottom: 0;
}
.keyvsl_area .kv_contents .kv_copy03 p::before {
  background: url(../img/index_keyvsl_parts02.svg) no-repeat center/contain;
}

@media screen and (min-width: 48em), print {
  .keyvsl_area #keyvsl {
    margin: 0 auto 0;
    padding: 0;
    height: 92rem;
  }
  .keyvsl_area .kv_contents {
    left: 0;
    right: 0;
    margin: auto;
    width: 1200px;
  }
  .keyvsl_area .kv_contents .kv_copy01 {
    right: 6rem;
    top: 20rem;
    gap: 0 1.2rem;
  }
  .keyvsl_area .kv_contents .kv_copy01 > p {
    font-size: 3.6rem;
    letter-spacing: 0.2rem;
  }
  .keyvsl_area .kv_contents .kv_copy02,
  .keyvsl_area .kv_contents .kv_copy03 {
    bottom: 2rem;
    width: 22rem;
    height: 22rem;
  }
  .keyvsl_area .kv_contents .kv_copy02 p,
  .keyvsl_area .kv_contents .kv_copy03 p {
    padding: 0;
    width: 100%;
    height: 100%;
    line-height: 1.4;
    font-size: 2.4rem;
  }
  .keyvsl_area .kv_contents .kv_copy02 p::before,
  .keyvsl_area .kv_contents .kv_copy03 p::before {
    content: "";
    width: 7.4rem;
    height: 6.6rem;
    margin: 0 0 1rem;
  }
  .keyvsl_area .kv_contents .kv_copy02 p::after,
  .keyvsl_area .kv_contents .kv_copy03 p::after {
    width: 20.4rem;
    height: 20.4rem;
    top: 50%;
  }
  .keyvsl_area .kv_contents .kv_copy02 {
    left: 0;
  }
  .keyvsl_area .kv_contents .kv_copy03 {
    left: 24rem;
  }
}
/* ドクターズファイル -------------------------------------- */
.bnr_area01 {
  padding: 2rem 1rem 1rem;
  background: #f7f4ee;
}

@media screen and (min-width: 48em), print {
  .bnr_area01 {
    display: none;
  }
}
/* トップ　診療時間表 -------------------------------------- */
.top_tbltime {
  padding: 2rem 0;
  background: #f7f4ee;
}
.top_tbltime .tbl_time ~ .tbl_time {
  margin: 2.4rem 0 0;
}

@media screen and (min-width: 48em), print {
  .top_tbltime {
    padding: 6rem 0;
  }
  .top_tbltime .tbl_time {
    width: 57rem;
  }
  .top_tbltime .tbl_time ~ .tbl_time {
    margin: 0;
  }
  .top_tbltime .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 4rem 0 4rem;
}
.info section ~ section {
  margin: 2rem 0 0;
}
.info .tit_info {
  padding: 1rem 2rem;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  background: #222;
  border-radius: 10px 10px 0 0;
}
.info .tit_info::before {
  content: "";
  font-family: "fontello";
  font-weight: normal;
  margin-right: 0.4rem;
  font-size: 130%;
}
.info .tit_info span {
  font-size: 130%;
}
.info .tit_info--shika {
  background: #7bbca3;
}
.info .tit_info--shika::before {
  content: "\e80b";
}
.info .tit_info--ika {
  background: #f6a38b;
}
.info .tit_info--ika::before {
  content: "\e805";
}
.info .tit_info--blog {
  background: #fdc366;
}
.info .tit_info--blog::before {
  content: "\e806";
}
.info .tit_info + div {
  border-radius: 0 0 10px 10px;
  padding: 1rem;
}
.info .tit_info + div dl {
  margin: 0;
  padding: 1rem;
  line-height: 1.4;
  max-height: 20rem;
  overflow-y: scroll;
}
.info .tit_info + div dl .bar {
  position: relative;
  padding: 0.8rem 0 0.6rem;
}
.info .tit_info + div dl .bar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  display: block;
  background: repeating-linear-gradient(to right, #cccccc, #cccccc 2px, transparent 2px, transparent 8px);
}
.info .tit_info + div dl .bar:nth-of-type(n + 4) dd {
  display: none;
}
.info .tit_info + div dl .bar dt {
  margin: 0;
  padding-left: 2rem;
  font-weight: bold;
  color: #222222;
  font-size: 110%;
  cursor: pointer;
  display: table;
  position: relative;
  transition: opacity 0.2s;
}
.info .tit_info + div dl .bar dt:hover {
  opacity: 0.8;
}
.info .tit_info + div dl .bar dt::before {
  content: "\e800";
  font-family: "fontello";
  display: inline-block;
  transition: transform 0.2s;
  font-weight: normal;
  position: absolute;
  left: 0;
  top: 0;
}
.info .tit_info + div dl .bar dt.close::before {
  transform: rotate(180deg);
}
.info .tit_info + div dl .bar dd {
  padding: 1rem 0 1rem;
  margin: 0;
}
.info .tit_info + div dl .bar dd p {
  margin: 0;
}
.info .tit_info + div.shika {
  border: 1px solid #7bbca3;
}
.info .tit_info + div.shika .bar dt::before {
  color: #7bbca3;
}
.info .tit_info + div.ika {
  border: 1px solid #f6a38b;
}
.info .tit_info + div.ika .bar dt::before {
  color: #f6a38b;
}
.info .tit_info + div.blog {
  border: 1px solid #fdc366;
}
.info .tit_info + div.blog .bar dt::before {
  color: #fdc366;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 6rem 0 12rem;
  }
  .info .flex {
    display: -webkit-flex;
    display: flex;
    gap: 0 3rem;
  }
  .info .flex > section {
    margin: 0 !important;
    width: 38rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .info .flex .tit_info {
    padding: 1.6rem 1rem 2rem 4rem;
    border-radius: 30px 30px 0 0;
    font-size: 2.4rem;
  }
  .info .flex .tit_info::before {
    margin-right: 0.8rem;
    font-size: 4.2rem;
  }
  .info .flex .tit_info span {
    font-size: 3.6rem;
    margin-right: 0.6rem;
  }
  .info .flex .tit_info + div {
    border-radius: 0 0 30px 30px;
    padding: 1.4rem 4rem 3.6rem 4rem;
    height: 100%;
  }
  .info .flex .tit_info + div dl {
    padding: 0 1.4rem 0 0;
    max-height: 48rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .info .flex .tit_info + div dl .bar {
    padding: 2.6rem 0 2.6rem;
  }
  .info .flex .tit_info + div dl .bar dt {
    padding-left: 3rem;
    font-size: 1.8rem;
  }
  .info .flex .tit_info + div dl .bar dt::before {
    top: -2px;
  }
  .info .flex .tit_info + div dl .bar dd {
    font-size: 1.8rem;
    padding: 1rem 0 1rem;
  }
}
/* 診療内容 -------------------------------------- */
.treatment_menu {
  padding: 2rem 0 2rem;
  position: relative;
  z-index: 1;
}
.treatment_menu::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: absolute;
  background: url(../img/index_treatment_bg01.jpg) no-repeat center/cover;
  pointer-events: none;
}
.treatment_menu .tit_treatment_menu {
  margin: 0 0 1.2rem;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  border-bottom: 1px solid #222;
  gap: 0 0.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.treatment_menu .tit_treatment_menu::before {
  content: "a";
  font-weight: normal;
  font-size: 2.4rem;
  font-family: "fontello";
  margin-right: 0.4rem;
}
.treatment_menu .tit_treatment_menu--shika {
  color: #7bbca3;
  border-bottom: 1px solid #7bbca3;
}
.treatment_menu .tit_treatment_menu--shika::before {
  content: "\e80b";
  color: #7bbca3;
}
.treatment_menu .tit_treatment_menu--ika {
  margin-top: 4rem;
  color: #f6a38b;
  border-bottom: 1px solid #f6a38b;
}
.treatment_menu .tit_treatment_menu--ika::before {
  content: "\e805";
  color: #f6a38b;
}
.treatment_menu ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2rem 0;
}
.treatment_menu ul li {
  width: 48%;
  height: 14.4rem;
  position: relative;
  transition: filter 0.4s;
}
.treatment_menu ul li:hover {
  opacity: 1;
  filter: contrast(1.2);
}
.treatment_menu ul li::before {
  content: "";
  display: block;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 1px solid #222;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  pointer-events: none;
}
.treatment_menu ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-decoration: none !important;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  line-height: 1.3;
  height: 100%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.treatment_menu ul li a::before {
  content: "";
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 0 0.8rem;
}
.treatment_menu ul li a::after {
  content: "\e4a2";
  font-weight: normal;
  font-family: "fontello";
  margin-top: 0.4rem;
}
.treatment_menu ul li a:hover {
  opacity: 1;
}
.treatment_menu ul li a.root_canal_treatment::before {
  background-image: url(../img/index_treatment_menu_root_canal_treatment.svg);
}
.treatment_menu ul li a.tooth_decay::before {
  background-image: url(../img/index_treatment_menu_tooth_decay.svg);
}
.treatment_menu ul li a.periodontal_disease::before {
  background-image: url(../img/index_treatment_menu_periodontal_disease.svg);
}
.treatment_menu ul li a.wisdom_teeth::before {
  background-image: url(../img/index_treatment_menu_wisdom_teeth.svg);
}
.treatment_menu ul li a.pediatric_dentistry::before {
  background-image: url(../img/index_treatment_menu_pediatric_dentistry.svg);
}
.treatment_menu ul li a.whitening::before {
  background-image: url(../img/index_treatment_menu_whitening.svg);
}
.treatment_menu ul li a.implant::before {
  background-image: url(../img/index_treatment_menu_implant.svg);
}
.treatment_menu ul li a.rheumatism::before {
  background-image: url(../img/index_treatment_menu_rheumatism.svg);
}
.treatment_menu ul li a.ctd::before {
  background-image: url(../img/index_treatment_menu_ctd.svg);
}
.treatment_menu ul li a.lifestyle_related-hypertension::before {
  background-image: url(../img/index_treatment_menu_lifestyle_related-hypertension.svg);
}
.treatment_menu ul li a.lifestyle_related-diabetes::before {
  background-image: url(../img/index_treatment_menu_lifestyle_related-diabetes.svg);
}
.treatment_menu ul li a.lifestyle_related-dyslipidemia::before {
  background-image: url(../img/index_treatment_menu_lifestyle_related-dyslipidemia.svg);
}
.treatment_menu ul li a.liver_disease::before {
  background-image: url(../img/index_treatment_menu_liver_disease.svg);
}
.treatment_menu ul li a.internal_medicine::before {
  background-image: url(../img/index_treatment_menu_internal_medicine.svg);
}
.treatment_menu ul li a.kidney_disease::before {
  background-image: url(../img/index_treatment_menu_kidney_disease.svg);
}
.treatment_menu ul li a.asthma::before {
  background-image: url(../img/index_treatment_menu_asthma.svg);
}
.treatment_menu ul li a.fever::before {
  background-image: url(../img/index_treatment_menu_fever.svg);
}
.treatment_menu ul li a.menopause::before {
  background-image: url(../img/index_treatment_menu_menopause.svg);
}
.treatment_menu ul li a.allergy::before {
  background-image: url(../img/index_treatment_menu_allergy.svg);
}
.treatment_menu ul li a.vaccination::before {
  background-image: url(../img/index_treatment_menu_vaccination.svg);
}
.treatment_menu ul li a.checkup::before {
  background-image: url(../img/index_treatment_menu_checkup.svg);
}
.treatment_menu ul li a.sas::before {
  background-image: url(../img/index_treatment_menu_sas.svg);
}
.treatment_menu ul.shika li::before {
  border: 1px solid #7bbca3;
}
.treatment_menu ul.shika li a {
  color: #7bbca3;
}
.treatment_menu ul.ika li::before {
  border: 1px solid #f6a38b;
}
.treatment_menu ul.ika li a {
  color: #f6a38b;
}

@media screen and (min-width: 48em), print {
  .treatment_menu {
    padding: 6rem 0 12rem;
    contain: paint;
  }
  .treatment_menu::before {
    min-width: 2000px;
  }
  .treatment_menu .tit_treatment_menu {
    margin: 0 12.4rem 2rem;
    font-size: 3rem;
    gap: 0 1rem;
  }
  .treatment_menu .tit_treatment_menu::before {
    font-size: 3.6rem;
  }
  .treatment_menu .tit_treatment_menu--ika {
    margin-top: 4rem;
  }
  .treatment_menu ul {
    gap: 1.8rem;
    padding: 0 12.4rem;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .treatment_menu ul li {
    width: 22.4rem;
    height: 22.4rem;
  }
  .treatment_menu ul li::before {
    width: 21.4rem;
    height: 21.4rem;
  }
  .treatment_menu ul li a {
    font-size: 2.4rem;
  }
  .treatment_menu ul li a::before {
    width: 10rem;
    height: 8rem;
    margin: 2.2rem 0 1.8rem;
  }
  .treatment_menu ul li a::after {
    margin-top: 0;
  }
}
/* 当院の特長 -------------------------------------- */
.feature {
  background: #fff;
  padding: 2rem 0 6rem;
}
.feature .wrap {
  padding: 0;
}
.feature .wrap ul {
  counter-reset: num_feature;
  contain: paint;
}
.feature .wrap ul li {
  margin: 0 0 2rem;
  counter-increment: num_feature 1;
}
.feature .wrap ul li figure {
  margin: 0;
  padding: 0;
}
.feature .wrap ul li figure img {
  display: block;
  position: relative;
  left: -2rem;
  border-radius: 0 10px 10px 0;
}
.feature .wrap ul li figure figcaption {
  margin: -1rem 1rem 0;
  padding: 0.6rem 2rem 1rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  position: relative;
}
.feature .wrap ul li figure figcaption .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 0.8rem;
  color: #7bbca3;
  line-height: 0;
  margin: auto;
}
.feature .wrap ul li figure figcaption .num::before {
  content: "";
  display: block;
  background: url(../img/index_feature_num_parts01.svg) no-repeat center/contain;
  width: 2.6rem;
  height: 2.6rem;
}
.feature .wrap ul li figure figcaption .num::after {
  content: counter(num_feature, decimal-leading-zero);
  font-size: 2.6rem;
  letter-spacing: 0.1rem;
}
.feature .wrap ul li figure figcaption .num span {
  line-height: 1.4;
  border-bottom: 1px solid #7bbca3;
}
.feature .wrap ul li figure figcaption .tit {
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.feature .wrap ul li figure figcaption .tit::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  margin: 0.4rem 0 0;
  background-image: repeating-linear-gradient(to right, #7bbca3 0px, #7bbca3 3px, transparent 3px, transparent 8px);
}
.feature .wrap ul li figure figcaption .txt {
  margin: 0;
  font-size: 1.4rem;
}
.feature .wrap ul li figure figcaption .btn_link {
  margin: 3rem auto 0;
}
.feature .wrap ul li:nth-child(even) figure img {
  left: auto;
  right: -2rem;
  border-radius: 10px 0 0 10px;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 6rem 0 12rem;
    contain: paint;
  }
  .feature .wrap ul {
    width: 1200px;
    contain: none;
  }
  .feature .wrap ul li {
    width: 100%;
    min-height: 50rem;
    margin: 0;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .feature .wrap ul li figure img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: auto;
    right: -40rem;
    border-radius: 60px 0 0 60px;
  }
  .feature .wrap ul li figure figcaption {
    padding: 4.8rem 6rem 6rem;
    margin: 0;
    border-radius: 30px;
    width: 63rem;
    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;
  }
  .feature .wrap ul li figure figcaption .num {
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .feature .wrap ul li figure figcaption .num::before {
    width: 4rem;
    height: 3.6rem;
  }
  .feature .wrap ul li figure figcaption .num::after {
    font-size: 4.8rem;
    position: relative;
    top: -0.4rem;
  }
  .feature .wrap ul li figure figcaption .num span {
    font-size: 2.4rem;
  }
  .feature .wrap ul li figure figcaption .tit {
    font-size: 3.6rem;
    margin: 0 0 3.05rem;
    width: 100%;
  }
  .feature .wrap ul li figure figcaption .tit::after {
    margin: 3rem 0 0;
    background-image: repeating-linear-gradient(to right, #7bbca3 0px, #7bbca3 3px, transparent 3px, transparent 13px);
  }
  .feature .wrap ul li figure figcaption .txt {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .feature .wrap ul li:nth-child(even) {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .feature .wrap ul li:nth-child(even) figure img {
    right: auto;
    left: -40rem;
    border-radius: 0 60px 60px 0;
  }
}
/* 提携医療機関 -------------------------------------- */
.clinic_link {
  background: #ecf5f1;
  padding: 1rem 0 2rem;
}
.clinic_link .tit_02 {
  margin: -5.4rem 0 2rem;
}
.clinic_link ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  justify-content: start;
}
.clinic_link ul li a {
  background: #fff;
  border-radius: 10px;
  padding: 1.4rem 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
}
.clinic_link .bnr_01 a {
  display: block;
  background: #fff;
  border-radius: 10px;
  text-decoration: none !important;
  margin: 1.4rem 0 0;
  padding: 2rem 2rem 1rem;
}
.clinic_link .bnr_01 a img {
  display: block;
  width: 80%;
  margin: 0 auto 1.2rem;
}

@media screen and (min-width: 48em), print {
  .clinic_link {
    margin: 8rem 0 15.3rem;
    padding: 2rem 0 12rem;
  }
  .clinic_link .tit_02 {
    margin: -9.4rem 0 5rem;
  }
  .clinic_link ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
  }
  .clinic_link ul li a {
    font-size: 1.8rem;
    min-height: 9.4rem;
    padding: 1.4rem 1rem;
  }
  .clinic_link .bnr_01 a {
    font-size: 1.8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 2.4rem 0 0;
    padding: 3rem 3rem;
    gap: 0 3rem;
  }
  .clinic_link .bnr_01 a img {
    width: 55.5rem;
    height: 12rem;
    margin: 0;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .sub_header .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .sub_header .breadcrumb_list {
    display: -webkit-flex;
    display: flex;
  }
}
body:not(.index) .footer .breadcrumb_list {
  display: -webkit-flex;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}
body:not(.index) .footer .breadcrumb_list li {
  color: #fff;
}
body:not(.index) .footer .breadcrumb_list li a {
  color: #fff;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .footer .breadcrumb_list {
    display: none;
  }
}
body:not(.index) .breadcrumb_list {
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
body:not(.index) .breadcrumb_list li {
  font-size: 1rem;
  display: inline-block;
}
body:not(.index) .breadcrumb_list li:not(:last-child)::after {
  content: "2";
  font-family: "fontello";
  margin-right: 0.4rem;
  display: inline-block;
  margin: 0 1rem;
  position: relative;
  top: 0.1rem;
}
body:not(.index) .breadcrumb_list li a {
  color: #7bbca3;
  text-decoration: underline;
}
body:not(.index) .breadcrumb_list li a:hover {
  opacity: 1;
  text-decoration: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    margin: 0 auto;
    padding: 0;
    width: 1200px;
  }
  body:not(.index) .breadcrumb_list li {
    font-size: 1.6rem;
  }
}
body:not(.index) .main {
  margin: 0 1rem 6rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 6rem 0 10rem;
    font-size: 1.8rem;
  }
}

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

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

*[id*=thumbnail_slider] {
  margin: 0 auto 2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  *[id*=thumbnail_slider] {
    width: 75rem;
  }
}
*[id*=thumbnail_slider] .slick-list .thumbnail-item img {
  cursor: grab;
}
*[id*=thumbnail_slider] .slick-list .thumbnail-item img:active {
  cursor: grabbing;
}
*[id*=thumbnail_slider] .slick-list .slick-current {
  position: relative;
}
*[id*=thumbnail_slider] .slick-list .slick-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid #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: bold;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .img_gallery {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .img_gallery li {
    width: 48%;
    margin: 0 0 3.2rem;
  }
  .img_gallery li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
/* 初めての方へ */
/* 診療時間・アクセス */
.access .gmap {
  height: 30rem;
  margin: 2rem 0;
}

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