@charset "UTF-8";
:root {
  --color1: #ffffff;
  --color2: #5fc7e2;
  --color3: #2b83c7;
  --color4: #c3def3;
  --color5: #000000;
  --color6: #dddddd;
  --color7: #2c84c8;
  --color8: #8fd6e5;
  --color9: #f9ec93;
  --color10: #289fbd;
  --color11: #6b4f3c;
  --color12: #f1ffdb;
  --color13: #48341d;
  --color14: #d8c8bd;
  --color15: #ffedcd;
  --color16: #ec7218;
  --color17: #dedede;
  --color18: #f6fbff;
  --color19: #212121;
  --color20: #222222;
  --color21: #9fcff3;
  --color22: #d45286;
  --color23: #707070;
  --color24: #e1f6ff;
  --color25: #70b1e3;
  --color26: #cccccc;
  --color27: #d9edac;
  --color28: #202020;
  --color29: #fffbe9;
  --color30: #a19548;
  --color31: #e1ebff;
  --color32: #496bbc;
  --color33: #eaf1d4;
  --color34: #89bf4a;
  --color35: #f1e1ff;
  --color36: #745598;
  --color37: #e3f6e6;
  --color38: #60b296;
  --color39: #be8e50;
  --color40: #85786b;
}

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

*, *::before, *::after {
  box-sizing: inherit;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ----------------------------------------------------------------------------------
モジュール　_module.scss
---------------------------------------------------------------------------------- */
/* clearfix -------------------------------------- */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

/* float -------------------------------------- */
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

/* txt -------------------------------------- */
.txt_c {
  text-align: center;
}

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.clr_red {
  color: red;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 3rem 6rem 3rem;
    margin-bottom: 3rem;
  }
}
*[class*=frame_].frame_01 {
  background: url(../img/low_frame_parts01.svg) no-repeat bottom/cover, var(--color18);
  border-radius: 20px;
}
*[class*=frame_].frame_02 {
  background: var(--color20);
  border: 1px solid var(--color20);
}
*[class*=frame_].inline {
  display: inline-block;
}

/* 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 !important;
}

.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: 3rem;
}

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

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

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem !important;
  }
  .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;
  }
  .main > section > section > section > section section ~ section,
  .flex2 > section > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  color: var(--color22);
  margin-top: 0.4rem;
}
.tbl_time caption span {
  color: #212121;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: linear-gradient(to bottom, #5fc7e2, #2b83c7);
  border-top: #707070 1px solid;
  border-bottom: #707070 1px solid;
  font-size: 1.2rem;
  color: var(--color1);
  font-weight: bold;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-left: #707070 1px solid;
}
.tbl_time tr th[scope=col]:last-child {
  border-right: #707070 1px solid;
}
.tbl_time tr th.time {
  font-size: 1.2rem;
  background: var(--color24);
  border-left: #707070 1px solid;
  border-bottom: #707070 1px solid;
  border-right: #707070 1px solid;
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: var(--color1);
  border-bottom: #707070 1px solid;
  border-right: #707070 1px solid;
  line-height: 1;
}
.tbl_time.resp td .vertical {
  writing-mode: vertical-rl;
  min-width: 1.2em;
  min-height: 14rem;
}
.tbl_time.resp td .vertical span {
  margin: 0.4rem 0;
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.6rem;
  }
  .tbl_time caption {
    font-size: 1.4rem;
    margin-top: 0.6rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.4rem 0;
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 14.5rem;
  }
  .tbl_time tr th.time {
    font-size: 1.6rem;
  }
  .tbl_time tr td {
    padding: 2rem 0.4rem;
  }
  .tbl_time.resp td .vertical {
    min-width: auto;
    min-height: auto;
    writing-mode: horizontal-tb;
  }
  .tbl_time.resp td .vertical span {
    margin: 0.4rem 0;
    display: block;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 3rem 1rem;
  margin: 0 1rem 3rem;
  min-height: 14rem;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.tit_01::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--color3);
  position: absolute;
  bottom: 0;
}

.tit_02 {
  color: var(--color3);
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1.2;
}

body.index .tit_02 {
  display: inline-flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
body.index .tit_02 .eng_txt {
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
}

body:not(.index) .tit_02 {
  padding: 0.8rem 1rem 1.2rem;
  margin: 1rem 0 2.4rem 1rem;
  position: relative;
  z-index: 1;
}
body:not(.index) .tit_02::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -3;
  top: 0;
  left: 0;
  background: rgba(168, 211, 239, 0.8); /* HEX値をrgba関数に変更 */
}
body:not(.index) .tit_02::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -4; /* 疑似要素のz-indexを低くして背面にする */
  left: -0.8rem;
  top: -0.6rem;
  background: rgba(209, 230, 239, 0.8); /* HEX値をrgba関数に変更 */
}

.tit_03 {
  color: var(--color1);
  border-radius: 30px;
  background: linear-gradient(to right, #5fc7e2, #9fcff3);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.8rem 1rem 0.8rem 3rem;
  margin: 0 0 1rem;
  position: relative;
}
.tit_03::before {
  content: "\e80e";
  font-family: "fontello";
  font-weight: normal;
  margin-right: 0.4rem;
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
}

.tit_04 {
  color: var(--color2);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 2.6rem;
  padding: 0 0 0 2.8rem;
  position: relative;
}
.tit_04::before {
  content: "";
  display: block;
  margin-right: 0.4rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/tit_04_parts01.svg) no-repeat center/contain;
  position: absolute;
  left: 0.8rem;
  top: 0.4rem;
}
.tit_04::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #5fc7e2 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 6px 1px;
}

.tit_05 {
  color: var(--color25);
  font-size: 1.8rem;
  font-weight: bold;
  border: 2px solid var(--color25);
  border-left: none;
  border-right: none;
  line-height: 1.2;
  padding: 0.6rem 0.2rem;
  margin: 0 0 1.4rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 4rem;
    min-height: 27.6rem;
    margin: 0 0 1.5rem;
  }
  .tit_01::after {
    width: 1200px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .tit_02 {
    font-size: 2.6rem;
    margin: 0 0 2rem;
  }
  body.index .tit_02 {
    font-size: 4rem;
  }
  body.index .tit_02 .eng_txt {
    font-size: 1.6rem;
  }
  body:not(.index) .tit_02 {
    font-size: 3.2rem;
    padding: 1rem 4rem 1rem;
    margin: 1rem 0 5rem 1rem;
  }
  body:not(.index) .tit_02::after {
    left: -1rem;
    top: -1rem;
  }
  .tit_03 {
    font-size: 2.8rem;
    padding: 1.6rem 3rem 1.6rem 7rem;
    margin: 0 0 2rem;
  }
  .tit_03::before {
    font-size: 3.4rem;
    left: 1.5rem;
    top: 1.2rem;
  }
  .tit_04 {
    font-size: 2.6rem;
    margin: 0 0 2rem;
    padding: 0 0 1rem 4.8rem;
  }
  .tit_04::before {
    width: 3rem;
    height: 3.7rem;
    top: 0;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  padding-left: 2.4rem;
  margin: 0 0 1rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li {
    padding-left: 2.8rem;
    margin: 0 0 1.6rem;
  }
}
.lst_ul01 li:last-child {
  margin: 0;
}
.lst_ul01 li::before {
  content: "";
  background: url(../img/lst_ul01_parts01.svg) no-repeat center/contain;
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li::before {
    top: 0.3rem;
  }
}
.lst_ul01 li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex, .lst_ul01.flex_3 {
    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, .lst_ul01.flex_3 li {
    width: 49%;
  }
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex_3 li {
    width: 32%;
  }
}

.lst_ul02 li {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .lst_ul02 li {
    padding-left: 1.4rem;
    margin: 0 0 1.6rem;
  }
}
.lst_ul02 li:last-child {
  margin: 0;
}
.lst_ul02 li::before {
  content: "・";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0;
  left: 0;
}

.lst_ol01 {
  margin: 1rem 0 1rem 2.6rem;
}
@media screen and (min-width: 48em), print {
  .lst_ol01 {
    margin: 1rem 0 1rem 3rem;
  }
}
.lst_ol01 li {
  line-height: 1.4;
  counter-increment: number 1;
  text-indent: -1rem;
  padding: 0 0 1rem 0;
}
.lst_ol01 li::before {
  display: inline-block;
  content: counter(number) ".";
  margin-right: 0.8rem;
  font-weight: bold;
}

.lst_dl01 div {
  margin: 0 0 1rem;
}
.lst_dl01 div dt {
  font-weight: bold;
  color: var(--color3);
  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: 8rem;
  }
  .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: 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: linear-gradient(to bottom, #5fc7e2, #2b83c7);
  color: var(--color1);
  text-align: center;
  font-weight: bold;
  padding: 0.6rem 4rem;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
  transition: all 0.2s, background 0.6s, outline 0.4s;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.16);
  outline: solid 3px rgba(95, 199, 226, 0);
  outline-offset: -0.3rem;
}
*[class*=btn_] a::after {
  content: "\e80b";
  font-family: "fontello";
  font-size: 1rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
*[class*=btn_] a:hover {
  opacity: 1;
  background: var(--color24);
  color: var(--color2);
  outline: solid 3px var(--color2);
  outline-offset: -0.3rem;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
}

.txt_link {
  color: var(--color20);
  text-decoration: none !important;
  font-weight: bold;
  border-bottom: 1px solid var(--color20);
}
.txt_link:hover {
  opacity: 1;
  border-bottom: none;
}

.lst_anc {
  margin: 1.2rem 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    -webkit-justify-content: center;
    justify-content: center;
    gap: 0 8rem;
  }
}
.lst_anc li {
  margin: 0 0 1.2rem;
  width: auto;
}
.lst_anc li a {
  color: var(--color2);
  border-bottom: 1px solid var(--color2);
  text-decoration: none !important;
  font-weight: bold;
}
.lst_anc li a::after {
  content: "\f004";
  font-family: "fontello";
  margin-left: 0.4rem;
}
.lst_anc li a:hover {
  border-bottom: none;
  opacity: 1;
}

/* フローチャート -------------------------------------- */
.flow dd {
  margin: 0 0 6rem;
  position: relative;
}
.flow dd:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow dd {
    margin: 0 0 10rem;
  }
}
.flow dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--color26);
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

/* テーブル -------------------------------------- */
.tbl_low,
.tbl_price {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  caption-side: bottom;
}
.tbl_low caption,
.tbl_price caption {
  text-align: left;
  padding: 0.2rem 0.2rem;
}
.tbl_low thead tr th,
.tbl_price thead tr th {
  padding: 0.8rem 0.2rem;
  background: linear-gradient(to bottom, #5fc7e2, #2b83c7);
  text-align: center;
  font-weight: bold;
  color: var(--color1);
  border: 1px solid var(--color26);
}
@media screen and (min-width: 48em), print {
  .tbl_low thead tr th,
  .tbl_price thead tr th {
    font-size: 2rem;
    padding: 1rem 0.8rem;
  }
}
.tbl_low tbody tr th,
.tbl_price tbody tr th {
  width: 30%;
  background: var(--color18);
  color: var(--color3);
  text-align: center;
  font-weight: bold;
  text-align: center;
  padding: 0.8rem 0.4rem;
  border: 1px solid var(--color26);
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr th,
  .tbl_price tbody tr th {
    font-size: 2rem;
    padding: 1rem 2rem;
  }
}
.tbl_low tbody tr td,
.tbl_price tbody tr td {
  padding: 0.8rem;
  border: 1px solid var(--color26);
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr td,
  .tbl_price tbody tr td {
    padding: 1rem 2rem;
  }
}

.tbl_price tbody tr td {
  text-align: right;
}
.tbl_price tbody tr td.left {
  text-align: left;
}

.tbl_access {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.2rem;
  width: 100%;
}
.tbl_access tr th {
  width: 37%;
  background: var(--color27);
  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: "M PLUS 2", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

body {
  background-color: var(--color1);
  background-image: url(../img/a_bg03.svg), url(../img/a_bg01.png);
  background-repeat: no-repeat, repeat;
  background-size: 80rem auto, 10rem auto;
  background-position: center top, center;
  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 4rem;
}
.main a:not([href*=tel]) {
  text-decoration: underline;
}
.main a[class*=btn_] {
  text-decoration: none;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1220px;
    background-size: auto auto, auto auto;
  }
  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 24rem;
    width: 100%;
  }
}
/* アイコンフォント -------------------------------------- */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
/* ヘッダー -------------------------------------- */
.header .wrap {
  margin: 0 1rem 0;
  padding: 1rem 1rem 1rem;
}
.header .wrap .logo {
  height: 5rem;
}
.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: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0 2.8rem;
  margin: 4rem 0 1rem;
}
.header .wrap .headR .address {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.2rem;
}
.header .wrap .headR .address::before {
  content: "\e809";
  font-family: "fontello";
  font-size: 1.4rem;
  margin-right: 0.8rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--color2);
  color: var(--color1);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .wrap .headR .tel,
.header .wrap .headR .rsv {
  display: none;
}
.header .wrap .headR .line {
  width: 4.6rem;
  height: auto;
}
.header .wrap .headR .line a {
  display: block;
}

@media screen and (min-width: 48em), print {
  .header {
    position: relative;
    z-index: 1;
  }
  .header .wrap {
    margin: 0 auto 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .header .wrap .logo {
    width: 37rem;
    height: 8.4rem;
  }
  .header .wrap .headR {
    margin: 2rem 1rem 0 0;
    flex: 1 1 auto;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .header .wrap .headR .address {
    font-size: 1.4rem;
  }
  .header .wrap .headR .address::before {
    font-size: 3rem;
    margin-right: 1rem;
    width: 4.5rem;
    height: 4.5rem;
  }
  .header .wrap .headR .tel {
    width: 29.8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 2.4rem 2rem;
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--color3);
    background-color: var(--color4);
    background-image: url(../img/a_btn_tel_parts01.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px;
  }
  .header .wrap .headR .tel::before {
    content: "tel.";
    margin-right: 0.8rem;
    font-size: 2rem;
    display: inline-block;
    vertical-align: bottom;
  }
  .header .wrap .headR .rsv {
    width: 11.8rem;
    display: block;
  }
  .header .wrap .headR .rsv 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;
    white-space: nowrap;
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
    font-weight: bold;
    border: 3px solid var(--color1);
    color: var(--color1);
    background-color: var(--color2);
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .header .wrap .headR .rsv a::before {
    content: "";
    display: block;
    width: 3rem;
    height: 3.2rem;
    background: url(../img/a_btn_rsv_parts01.svg) no-repeat center/contain;
    margin-bottom: 1rem;
  }
  .header .wrap .headR .line {
    width: 4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .header .wrap .headR .line a {
    display: flex;
    align-items: end;
  }
}
/* SP ドロップダウンメニュー -------------------------------------- */
#menu {
  z-index: 9999;
  width: 100%;
  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: linear-gradient(to bottom, #5fc7e2, #2b83c7);
  color: var(--color1);
  font-size: 1.2rem;
  border-radius: 5px;
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "\e802";
  font-family: "fontello";
  font-size: 2.6rem;
  line-height: 0.8;
}
#menu .fixed_menu_btn .hamburger a::after {
  content: "MENU";
  font-size: 1rem;
}
#menu .fixed_menu_btn.active .hamburger a::before {
  content: "\e806";
}
#menu .fixed_menu_btn.active .hamburger a::after {
  content: "CLOSE";
}
#menu #nav {
  display: none;
}
#menu #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 10rem 2rem 6rem;
  background-color: white;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 203;
  -webkit-transform: translate(27rem);
  transform: translate(27rem);
}
#menu #nav.sp_nav.open {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#menu #nav.sp_nav ul {
  display: block;
  font-size: 1.2rem;
}
#menu #nav.sp_nav ul li {
  text-align: left;
  margin: 0;
  border-bottom: 1px solid var(--color6);
}
#menu #nav.sp_nav ul li a {
  display: block;
  padding: 0.8rem 0.2rem 1.2rem;
  font-weight: bold;
  color: var(--color7);
  text-decoration: none !important;
}
#menu #nav.sp_nav ul li a.sub {
  pointer-events: none;
  margin: 0;
  padding: 0.8rem 0.2rem 0.2rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav {
  padding: 1rem 0.2rem 1.2rem;
  display: flex !important;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li {
  width: 50%;
  border-bottom: none;
  text-align: left;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a {
  width: 100%;
  display: block;
  font-weight: bold;
  color: #212121;
  padding: 0.8rem 0.2rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav ul li a::after {
  content: none;
}
#menu #nav.sp_nav ul li a:not(.sub) {
  position: relative;
}
#menu #nav.sp_nav ul li a:not(.sub)::after {
  content: "2";
  color: var(--color8);
  font-family: "fontello";
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#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;
}

#nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_menu_btn {
    display: none;
  }
  #menu {
    display: block;
    position: relative;
    z-index: 1;
    /* Gナビ　ハイライト */
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
  }
  #menu #nav .gnav {
    width: 1200px;
    background: linear-gradient(to right, #5fc7e2, #2b83c7);
    margin: 2rem auto 2.2rem;
    padding: 1.6rem 8.6rem;
    border-radius: 30px;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #menu #nav .gnav li {
    width: auto;
  }
  #menu #nav .gnav li a {
    display: block;
    font-weight: bold;
    text-align: center;
    font-size: 1.8rem;
    color: var(--color1);
  }
  #menu #nav .gnav li a.sub::after {
    content: "\f004";
    font-family: "fontello";
    font-size: 1.6rem;
    margin-left: 0.6rem;
    display: inline-block;
    color: var(--color9);
  }
  #menu #nav .gnav li .subnav {
    width: 38rem;
    display: none;
    position: absolute;
  }
  #menu #nav .gnav li .subnav ul {
    margin: 1.7rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #menu #nav .gnav li .subnav ul li {
    width: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    border-bottom: 2px solid var(--color1);
    border-right: 2px solid var(--color1);
    border-left: 2px solid var(--color1);
    box-sizing: border-box;
  }
  #menu #nav .gnav li .subnav ul li:nth-child(even) {
    border-left: none;
  }
  #menu #nav .gnav li .subnav ul li:nth-child(1), #menu #nav .gnav li .subnav ul li:nth-child(2) {
    border-top: 1px solid var(--color1);
  }
  #menu #nav .gnav li .subnav ul li a {
    color: var(--color1);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    background: var(--color2);
    padding: 1.6rem 0;
    text-align: center;
  }
  #menu #nav .gnav li .subnav ul li a:hover {
    opacity: 1;
    background: var(--color10);
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 1rem 7rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: var(--color1);
  position: relative;
}
.overview::before {
  content: "";
  display: block;
  width: 100%;
  height: 2rem;
  background-image: url(../img/overview_parts01.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  margin: auto;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
}
.overview > .wrap .overviewL .tbl_gaiyo th {
  display: block;
  padding: 0.4rem;
  font-weight: normal;
}
.overview > .wrap .overviewL .tbl_gaiyo th span {
  display: block;
  background: var(--color3);
  border-radius: 50px;
  padding: 0.2rem 0;
  text-align: center;
  color: var(--color1);
}
.overview > .wrap .overviewL .tbl_gaiyo td {
  display: block;
  padding: 0.4rem 1rem 1.2rem;
}
.overview > .wrap .overviewL .tbl_gaiyo td .tel {
  color: var(--color3);
  font-weight: bold;
  font-size: 120%;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .link_map {
  margin: 0.4rem 0 0.4rem;
  text-align: right;
}
.overview > .wrap .overviewR .link_map a {
  display: inline-block;
  color: var(--color2);
}
.overview > .wrap .overviewR .btn_car a {
  width: 100%;
  padding: 0.6rem 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.overview > .wrap .overviewR .btn_car a::before {
  content: "";
  background: url(../img/btn_car_parts01.png) no-repeat center/contain;
  display: inline-block;
  width: 3rem;
  height: 2rem;
  margin-right: 0.4rem;
}
.overview > .wrap .overviewR .btn_car a::after {
  content: none;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0;
    padding: 0 0 10rem;
    font-size: 1.8rem;
  }
  .overview::before {
    content: "";
    height: 12rem;
    background-size: auto auto;
    top: -12rem;
  }
  .overview > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL,
  .overview > .wrap .overviewR {
    width: 55rem;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo {
    margin: 0 0 3rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo th {
    display: table-cell;
    vertical-align: top;
    width: 14rem;
    padding: 0 0 2rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td {
    display: table-cell;
    vertical-align: top;
    padding: 0.2rem 0 2rem 1.5rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo td .nowrap {
    white-space: nowrap;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    margin: 0;
  }
  .overview > .wrap .overviewR .link_map {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
  }
  .overview > .wrap .overviewR .btn_car a {
    padding: 1.8rem 0 2rem;
    font-size: 2.4rem;
  }
  .overview > .wrap .overviewR .btn_car a::before {
    width: 7rem;
    height: 3.7rem;
    margin-right: 1rem;
  }
}
/* フッター -------------------------------------- */
.fixed_rsv {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_rsv {
    display: flex;
    width: 7rem;
    height: 24rem;
    position: fixed;
    right: 0;
    top: 22rem;
    z-index: 210;
    color: var(--color1);
    font-weight: bold;
    background: var(--color2);
    border: 3px solid var(--color1);
    border-radius: 10px 0 0 10px;
  }
  .fixed_rsv a {
    width: 100%;
    height: 100%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
    border-radius: 15px 0 0 15px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .fixed_rsv a::before {
    content: "";
    display: block;
    width: 3rem;
    height: 3.2rem;
    background: url(../img/a_btn_rsv_parts01.svg) no-repeat center/contain;
    margin-bottom: 1rem;
  }
  .fixed_rsv a:hover {
    opacity: 1;
    background: var(--color10);
    border-radius: 10px 0 0 10px;
  }
}
#pageup {
  display: none;
  position: fixed;
  bottom: 7.4rem;
  right: 1rem;
  z-index: 1;
  cursor: pointer;
}
#pageup a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.4rem;
  background: linear-gradient(to bottom, #5fc7e2, #2b83c7);
  border-radius: 50%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
}
#pageup a::before {
  text-align: center;
  font-size: 2rem;
  font-family: "fontello";
  content: "\e8a3";
  color: var(--color1);
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    bottom: 2rem;
    right: 2rem;
  }
  #pageup a {
    width: 10rem;
    height: 10rem;
  }
  #pageup a::before {
    font-size: 4.6rem;
  }
}
.tel_rsv {
  width: 100%;
  min-height: 4.4rem;
  background: var(--color1);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.tel_rsv .tel {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  width: 50%;
}
.tel_rsv .tel a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: var(--color4);
  background-image: url(../img/a_btn_tel_parts01.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: auto 40%;
  color: var(--color3);
}
.tel_rsv .tel a::before {
  content: "tel.";
  font-size: 1.2rem;
  margin-right: 0.4rem;
}
.tel_rsv .rsv {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  width: 50%;
}
.tel_rsv .rsv a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.4rem;
  text-align: center;
  width: 100%;
  line-height: 1;
  color: var(--color1);
  background: var(--color2);
}
.tel_rsv .rsv a::before {
  content: "";
  display: block;
  background: url(../img/a_btn_rsv_parts01.svg) no-repeat center/contain;
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
}

@media screen and (min-width: 48em), print {
  .tel_rsv {
    display: none;
  }
  .tel_rsv .tel,
  .tel_rsv .rsv {
    display: none;
  }
}
.footer {
  text-align: center;
  background: var(--color18);
  padding: 0 0 4.6rem;
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  width: 9rem;
  height: 8rem;
  position: absolute;
  left: 0;
  top: -6rem;
  background: url(../img/footer01.png) no-repeat center/contain;
}
.footer ul {
  display: none;
}
.footer .copy {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 5rem 0 0;
  }
  .footer::before {
    width: 25.6rem;
    height: 24.1rem;
    left: calc(50% - 76rem);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: -18rem;
  }
  .footer ul {
    display: block;
    text-align: center;
    margin: 0 auto 1.3rem;
  }
  .footer ul:last-child {
    margin: 0 auto;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.6rem;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1.6rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer .copy {
    padding: 3.3rem 0 5rem;
    font-size: 1.4rem;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* キービジュアル -------------------------------------- */
#keyvsl {
  margin: 1rem 0rem 2rem;
  max-width: 100%;
  height: 18rem;
  background: url(../img/index_keyvsl01.jpg) no-repeat center center/cover;
}
#keyvsl .wrap {
  height: 100%;
  position: relative;
}
#keyvsl .wrap .kv_txt {
  margin: 0;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
}
#keyvsl .wrap .kv_txt span {
  display: inline-block;
  font-weight: bold;
  padding: 0.8rem 1.2rem;
  font-size: 1.4rem;
  color: var(--color1);
  background: rgba(32, 32, 32, 0.8);
}

@media screen and (min-width: 48em), print {
  #keyvsl {
    margin: 0 auto 0;
    padding: 0;
    height: 65rem;
    background: url(../img/index_keyvsl01.jpg) no-repeat center center/auto auto;
  }
  #keyvsl .wrap .kv_txt {
    bottom: 5.6rem;
  }
  #keyvsl .wrap .kv_txt span {
    padding: 1.4rem 1.2rem;
    font-size: 3rem;
  }
}
/* 背景設定 -------------------------------------- */
.bg_sea {
  background-image: url(../img/a_bg02.svg);
  background-color: var(--color18);
  background-repeat: repeat-y;
  background-size: 80% auto;
  background-position: center;
  padding: 2rem 0 4rem;
  position: relative;
}
.bg_sea::after {
  content: "";
  display: block;
  width: 100%;
  height: 6rem;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: -4rem;
  background: url(../img/bg_sea_parts01.svg) no-repeat center/contain;
}

@media screen and (min-width: 48em), print {
  .bg_sea {
    background-size: auto auto;
    background-repeat: no-repeat;
    padding: 15rem 0 0;
  }
  .bg_sea::after {
    height: 12rem;
    bottom: -12rem;
    background: url(../img/bg_sea_parts01.svg) no-repeat center/auto auto;
  }
}
/* クリニックについて -------------------------------------- */
.about_clinic {
  padding: 6rem 0 4rem;
}
.about_clinic .tit_02 {
  display: flex !important;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
  color: var(--color3);
  background: url(../img/index_tit02_aboutClinic.svg) no-repeat center/contain;
}
.about_clinic .bg {
  padding: 2rem 2rem;
  border-radius: 30px;
  background: var(--color1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  position: relative;
}
.about_clinic .bg::before {
  content: "";
  display: block;
  width: 4rem;
  height: 5rem;
  background: url(../img/index_aboutClinic_parts01.png) no-repeat center/contain;
  position: absolute;
  right: 1rem;
  top: -4rem;
}
.about_clinic .bg .txt {
  padding: 1rem 0;
}

@media screen and (min-width: 48em), print {
  .about_clinic {
    padding: 19rem 0 4rem;
  }
  .about_clinic .tit_02 {
    padding: 2rem 0;
    margin: 0 0 3rem;
  }
  .about_clinic .bg {
    width: 1100px;
    margin: 0 auto;
    padding: 5rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .about_clinic .bg::before {
    width: 10.3rem;
    height: 13.5rem;
    top: -12rem;
  }
  .about_clinic .bg .timetbl {
    width: 50rem;
  }
  .about_clinic .bg .txt {
    width: 45rem;
    padding: 0;
    line-height: 1.6;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 2rem 0 4rem;
  background-color: var(--color4);
  background-repeat: repeat-y;
  background-size: 120% auto;
  background-position: top 2rem;
  background-image: url(../img/index_info_bg_parts02.svg);
  position: relative;
}
.info::before {
  content: "";
  display: block;
  width: 100%;
  height: 3rem;
  background: url(../img/index_info_bg_parts01.svg) no-repeat center/cover;
  position: absolute;
  left: 0;
  right: 0;
  top: -3rem;
  z-index: -1;
}
.info .wrap {
  padding: 0 1rem 0 2rem;
}
.info .wrap .tit_02 {
  padding: 0.8rem 2.4rem;
  position: relative;
  left: -1rem;
  color: var(--color3);
  background: url(../img/index_tit02_info.svg) no-repeat center/83%;
}
.info .wrap .bg {
  padding: 1rem 2rem 2rem;
  border-radius: 30px;
  background: var(--color1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
.info dl {
  margin: 0;
}
.info dl .line {
  margin: 0;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--color4);
}
.info dl .line:nth-of-type(n + 4) dd {
  display: none;
}
.info dl .line dt {
  display: inline-block;
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--color2);
  padding-left: 2rem;
  position: relative;
}
.info dl .line dt::before {
  content: "\e800";
  font-family: "fontello";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
}
.info dl .line dt.close::before {
  content: "\e803";
}
.info dl .line dd {
  margin: 0;
  padding: 0;
  color: var(--color28);
}
.info dl .line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 15.7rem 0 15rem;
    background-size: auto auto;
  }
  .info::before {
    height: 11.4rem;
    top: -11.4rem;
    background: url(../img/index_info_bg_parts01.svg) no-repeat center/auto auto;
  }
  .info .wrap {
    padding: 0;
  }
  .info .wrap .bg {
    width: 1100px;
    margin: 0 auto;
    padding: 5rem 10rem 5rem 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    position: relative;
  }
  .info .wrap .bg .tit_02 {
    text-align: center;
    min-width: 22.3rem;
    margin: 0;
    padding: 2rem 0;
    position: absolute;
    left: -4rem;
    top: 4rem;
    background: url(../img/index_tit02_info.svg) no-repeat center/auto auto;
  }
  .info .wrap .bg dl {
    margin: 0;
    width: 75rem;
  }
  .info .wrap .bg dl .line {
    padding: 2.2rem 0;
  }
  .info .wrap .bg dl .line dt {
    font-size: 2rem;
    padding-left: 3rem;
    cursor: pointer;
  }
  .info .wrap .bg dl .line dt:hover {
    opacity: 0.8;
  }
  .info .wrap .bg dl .line dd {
    font-size: 1.6rem;
    padding: 0.8rem 0 0 3rem;
  }
}
/* 診療のご案内 -------------------------------------- */
.treatment_guide {
  padding: 0 0;
}
.treatment_guide .tit_02 {
  display: flex !important;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0;
  padding: 0.8rem 0;
  text-align: center;
  color: var(--color1);
  background: var(--color3);
  border-top: 2px solid var(--color1);
  border-bottom: 2px solid var(--color1);
}
.treatment_guide ul li a {
  border: 3px solid var(--color1);
  box-sizing: border-box;
  display: block;
  text-decoration: none !important;
}
.treatment_guide ul li a figure {
  margin: 0;
  padding: 2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.treatment_guide ul li a figure img {
  display: block;
  max-width: 40%;
  margin: 0 auto 1rem;
}
.treatment_guide ul li a figure figcaption p.tit {
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
.treatment_guide ul li.item_dermatology {
  background: var(--color24);
}
.treatment_guide ul li.item_dermatology .tit {
  color: var(--color3);
}
.treatment_guide ul li.item_pediatric_dermatology {
  background: var(--color29);
}
.treatment_guide ul li.item_pediatric_dermatology .tit {
  color: var(--color30);
}
.treatment_guide ul li.item_allergy {
  background: var(--color31);
}
.treatment_guide ul li.item_allergy .tit {
  color: var(--color32);
}
.treatment_guide ul li.item_beauty {
  background: var(--color33);
}
.treatment_guide ul li.item_beauty .tit {
  color: var(--color34);
}
.treatment_guide ul li.item_laser {
  background: var(--color35);
}
.treatment_guide ul li.item_laser .tit {
  color: var(--color36);
}
.treatment_guide ul li.item_surgery {
  background: var(--color37);
}
.treatment_guide ul li.item_surgery .tit {
  color: var(--color38);
}

@media screen and (min-width: 48em), print {
  .treatment_guide {
    padding: 0 0;
  }
  .treatment_guide .tit_02 {
    padding: 2.8rem 0;
    font-size: 4rem;
    border-top: 3px solid var(--color1);
    border-bottom: 3px solid var(--color1);
  }
  .treatment_guide ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .treatment_guide ul li {
    width: 50%;
  }
  .treatment_guide ul li a {
    height: 100%;
    border-left: none;
    border-right: 3px solid var(--color1);
  }
  .treatment_guide ul li a figure {
    width: 600px;
    margin: 0 0 0 auto;
    padding: 2rem 2.6rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    align-items: unset;
  }
  .treatment_guide ul li a figure img {
    margin: 0;
  }
  .treatment_guide ul li a figure figcaption {
    width: 60%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .treatment_guide ul li a figure figcaption p {
    line-height: 1.2;
    font-size: 1.6rem;
    text-align: justify;
  }
  .treatment_guide ul li a figure figcaption p.tit {
    font-size: 3rem;
    text-align: left;
  }
  .treatment_guide ul li:nth-child(even) a {
    border: 3px solid var(--color1);
    border-right: none;
  }
  .treatment_guide ul li:nth-child(even) a figure {
    margin: 0 auto 0 0;
  }
  .treatment_guide ul li:nth-child(even) a figure img {
    order: 2;
  }
  .treatment_guide ul li:nth-child(even) a figure figcaption {
    order: 1;
  }
  .treatment_guide ul li.item_dermatology {
    background: var(--color24);
  }
  .treatment_guide ul li.item_dermatology .tit {
    color: var(--color3);
  }
  .treatment_guide ul li.item_pediatric_dermatology {
    background: var(--color29);
  }
  .treatment_guide ul li.item_pediatric_dermatology .tit {
    color: var(--color30);
  }
  .treatment_guide ul li.item_allergy {
    background: var(--color31);
  }
  .treatment_guide ul li.item_allergy .tit {
    color: var(--color32);
  }
  .treatment_guide ul li.item_beauty {
    background: var(--color33);
  }
  .treatment_guide ul li.item_beauty .tit {
    color: var(--color34);
  }
  .treatment_guide ul li.item_laser {
    background: var(--color35);
  }
  .treatment_guide ul li.item_laser .tit {
    color: var(--color36);
  }
  .treatment_guide ul li.item_surgery {
    background: var(--color37);
  }
  .treatment_guide ul li.item_surgery .tit {
    color: var(--color38);
  }
}
/* 担当医表 -------------------------------------- */
.resptable {
  padding: 1rem 1rem;
}
.resptable .tit_02 {
  display: flex !important;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
  color: var(--color3);
  background: url(../img/index_tit02_resptable.svg) no-repeat center/contain;
}
.resptable .table_area {
  padding: 1rem;
  border-radius: 20px;
  background: var(--color1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
.resptable .table_area .tbl_time tr th[scope=col]:first-child {
  width: 15%;
}

@media screen and (min-width: 48em), print {
  .resptable {
    padding: 1rem 0 0;
  }
  .resptable .tit_02 {
    background: url(../img/index_tit02_resptable.svg) no-repeat center/auto auto;
  }
  .resptable .table_area {
    width: 1100px;
    margin: 0 auto;
    padding: 5rem;
  }
}
/* 担当医変更のお知らせ -------------------------------------- */
.change_info {
  padding: 4rem 0 2rem;
}
.change_info .wrap {
  padding: 0 1rem 0 2rem;
  position: relative;
}
.change_info .wrap::after {
  content: "";
  display: block;
  width: 9rem;
  height: 6rem;
  position: absolute;
  top: 3rem;
  right: 1rem;
  background: url(../img/index_changeInfo_part02.png) no-repeat center/contain;
}
.change_info .wrap .bg {
  padding: 1rem 2rem 2rem;
  border-radius: 30px;
  background: var(--color1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
.change_info .wrap .bg .tit_02 {
  padding: 0.8rem 2.4rem;
  position: relative;
  left: -2rem;
  color: var(--color3);
  background: url(../img/index_tit02_changeInfo.svg) no-repeat center/83%;
}
.change_info .wrap .bg dl {
  margin: 0;
}
.change_info .wrap .bg dl .line {
  margin: 0;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--color4);
}
.change_info .wrap .bg dl .line:nth-of-type(n + 4) dd {
  display: none;
}
.change_info .wrap .bg dl .line dt {
  display: inline-block;
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--color2);
  padding-left: 2rem;
  position: relative;
}
.change_info .wrap .bg dl .line dt::before {
  content: "\e800";
  font-family: "fontello";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
}
.change_info .wrap .bg dl .line dt.close::before {
  content: "\e803";
}
.change_info .wrap .bg dl .line dd {
  margin: 0;
  padding: 0;
  color: var(--color28);
}
.change_info .wrap .bg dl .line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .change_info {
    padding: 15rem 0 7.5rem;
    overflow-x: hidden;
  }
  .change_info .wrap {
    padding: 0;
  }
  .change_info .wrap::after {
    width: 42.8rem;
    height: 28rem;
    right: -45rem;
  }
  .change_info .wrap::before {
    content: "";
    display: block;
    width: 17.1rem;
    height: 8.6rem;
    position: absolute;
    top: 2rem;
    left: -40rem;
    background: url(../img/index_changeInfo_part01.png) no-repeat center/contain;
  }
  .change_info .wrap .bg {
    width: 1100px;
    min-height: 27rem;
    margin: 0 auto;
    padding: 5rem 10rem 5rem 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    position: relative;
  }
  .change_info .wrap .bg .tit_02 {
    text-align: center;
    min-width: 26.8rem;
    margin: 0;
    padding: 2rem 0;
    position: absolute;
    left: -5rem;
    top: 1rem;
    background: url(../img/index_tit02_changeInfo.svg) no-repeat center/auto auto;
  }
  .change_info .wrap .bg dl {
    margin: 0;
    width: 75rem;
  }
  .change_info .wrap .bg dl .line {
    padding: 2.2rem 0;
  }
  .change_info .wrap .bg dl .line dt {
    font-size: 2rem;
    padding-left: 3rem;
    cursor: pointer;
  }
  .change_info .wrap .bg dl .line dt:hover {
    opacity: 0.8;
  }
  .change_info .wrap .bg dl .line dd {
    font-size: 1.6rem;
    padding: 0.8rem 0 0 3rem;
  }
}
/* 担当医カレンダー -------------------------------------- */
.docCalendar {
  padding: 2rem 1rem;
}
.docCalendar .tit_02 {
  display: flex !important;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
  color: var(--color3);
  background: url(../img/index_tit02_docCalendar.svg) no-repeat center/contain;
}
.docCalendar .cal_area {
  margin: 0 auto;
  padding: 1rem;
  border-radius: 20px;
  background: var(--color1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
.docCalendar .cal_area iframe {
  min-height: 50rem;
}

@media screen and (min-width: 48em), print {
  .docCalendar {
    padding: 7.5rem 0 7.5rem;
  }
  .docCalendar .tit_02 {
    padding: 2rem 2rem;
  }
  .docCalendar .cal_area {
    width: 1100px;
    margin: 0 auto;
    padding: 5rem 12rem;
    border-radius: 20px;
    background: var(--color1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  }
  .docCalendar .cal_area iframe {
    min-height: 59rem;
  }
}
/* ご受診にあたって -------------------------------------- */
.first_section {
  padding: 2rem 0;
}
.first_section .wrap {
  padding: 0 1rem 0 2rem;
}
.first_section .wrap .tit_02 {
  padding: 0 2.2rem;
  position: relative;
  left: -1rem;
  color: var(--color39);
  background: url(../img/index_tit02_firstSection.svg) no-repeat center/contain;
}
.first_section .wrap .bg {
  padding: 1rem 2rem 2rem;
  border-radius: 30px;
  background: var(--color1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
.first_section .wrap .bg dl {
  margin: 0;
}
.first_section .wrap .bg dl .line {
  margin: 0;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--color4);
}
.first_section .wrap .bg dl .line:nth-of-type(n + 4) dd {
  display: none;
}
.first_section .wrap .bg dl .line dt {
  display: inline-block;
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--color40);
  padding-left: 2rem;
  position: relative;
}
.first_section .wrap .bg dl .line dt::before {
  content: "\e800";
  font-family: "fontello";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
}
.first_section .wrap .bg dl .line dt.close::before {
  content: "\e803";
}
.first_section .wrap .bg dl .line dd {
  margin: 0;
  padding: 0;
  color: var(--color28);
}
.first_section .wrap .bg dl .line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .first_section {
    padding: 7.5rem 0 6rem;
  }
  .first_section .wrap {
    padding: 0;
  }
  .first_section .wrap .bg {
    width: 1100px;
    min-height: 24rem;
    margin: 0 auto;
    padding: 5rem 10rem 5rem 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    position: relative;
  }
  .first_section .wrap .bg .tit_02 {
    min-width: 26.2rem;
    margin: 0;
    padding: 2rem 0;
    position: absolute;
    left: -4rem;
    top: 3rem;
    background: url(../img/index_tit02_firstSection.svg) no-repeat center/auto auto;
  }
  .first_section .wrap .bg dl {
    margin: 0;
    width: 75rem;
  }
  .first_section .wrap .bg dl .line {
    padding: 2.2rem 0;
  }
  .first_section .wrap .bg dl .line dt {
    font-size: 2rem;
    padding-left: 3rem;
    cursor: pointer;
  }
  .first_section .wrap .bg dl .line dt:hover {
    opacity: 0.8;
  }
  .first_section .wrap .bg dl .line dd {
    font-size: 1.6rem;
    padding: 0.8rem 0 0 3rem;
  }
}
/* 院長コラム -------------------------------------- */
.column_section {
  padding: 3rem 0 4rem;
}
.column_section .wrap {
  padding: 0 1rem 0 2rem;
}
.column_section .wrap .bg {
  padding: 1rem 2rem 2rem;
  border-radius: 30px;
  background: var(--color1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
.column_section .wrap .bg .tit_02 {
  padding: 0 1.4rem;
  position: relative;
  left: -1rem;
  color: var(--color3);
  background: url(../img/index_tit02_columnSection.svg) no-repeat center/contain;
}
.column_section .wrap .bg .lst_tit li {
  margin: 0;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--color4);
}
.column_section .wrap .bg .lst_tit li a {
  text-decoration: none !important;
  display: inline-block;
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--color2);
  padding-left: 2rem;
  position: relative;
}
.column_section .wrap .bg .lst_tit li a::before {
  content: "\e4a2";
  font-family: "fontello";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
}

@media screen and (min-width: 48em), print {
  .column_section {
    padding: 1rem 0 0;
  }
  .column_section .wrap {
    padding: 0 0 0 0;
  }
  .column_section .wrap .bg {
    width: 1100px;
    margin: 0 auto;
    padding: 5rem 10rem 5rem 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    position: relative;
  }
  .column_section .wrap .bg .tit_02 {
    min-width: 30.7rem;
    padding: 1rem 1.4rem;
    left: -6.2rem;
    top: 3.8rem;
    position: absolute;
    background: url(../img/index_tit02_columnSection.svg) no-repeat center/auto;
  }
  .column_section .wrap .bg .lst_tit {
    width: 75rem;
  }
  .column_section .wrap .bg .lst_tit li {
    padding: 2.2rem 0;
  }
  .column_section .wrap .bg .lst_tit li:first-child {
    padding: 0 0 2.2rem;
  }
  .column_section .wrap .bg .lst_tit li a {
    font-size: 2rem;
    padding-left: 3rem;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    width: 1200px;
    margin: 0 auto;
    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 {
    display: inline-block;
    color: var(--color3);
    font-size: 1.4rem;
  }
  body:not(.index) .breadcrumb_list li:not(:last-child)::after {
    content: "\f006";
    font-family: "fontello";
    display: inline-block;
    margin: 0 1rem;
  }
  body:not(.index) .breadcrumb_list li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
body:not(.index) .main {
  margin: 0 0 6rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 10rem;
    line-height: 1.6;
  }
}
body:not(.index) .main > section,
body:not(.index) .main > .bg {
  background: var(--color1);
  padding: 1.4rem 1.2rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main > section,
  body:not(.index) .main > .bg {
    padding: 5rem;
    border-radius: 20px;
  }
}

@media screen and (min-width: 48em), print {
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
.tel_txt {
  font-weight: bold;
  font-size: 120%;
  color: var(--color3);
}

@media screen and (min-width: 48em), print {
  .tel_txt {
    padding-left: 1.8rem;
    display: block;
    font-size: 2.6rem;
  }
}
.rsv-tel_item {
  background: url(../img/low_frame_parts01.svg) no-repeat bottom/cover, var(--color18);
  margin: 2rem auto 2rem;
  padding: 1.4rem 1rem;
  border-radius: 20px;
  text-align: center;
}
.rsv-tel_item .tel {
  font-weight: bold;
  font-size: 120%;
  color: var(--color3);
}

@media screen and (min-width: 48em), print {
  .rsv-tel_item {
    margin: 4rem auto 4rem;
    width: 45%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .rsv-tel_item > * {
    width: 48%;
    font-size: 2rem;
  }
  .rsv-tel_item > * .tel {
    display: block;
    font-size: 2.6rem;
  }
}
/* ドクター紹介 */
.doctor .dr_name {
  margin: 2rem 0 0;
  text-align: right;
}
@media screen and (min-width: 48em), print {
  .doctor .dr_name {
    margin: 6rem 0 0;
  }
}
.doctor .dr_name span {
  font-size: 120%;
}

@media screen and (min-width: 48em), print {
  .doctor .img_c + .dr_name {
    margin: 2rem 0 0;
    text-align: center;
  }
  .doctor .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .doctor .flex > * {
    width: 48%;
    margin: 0;
  }
}
/* クリニック紹介 */
#slider {
  margin: 0 auto 0.2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #slider {
    width: 75rem;
  }
}
#slider figure {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
#slider figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem 0.2rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  color: var(--color1);
  background: rgba(34, 34, 34, 0.8);
}
@media screen and (min-width: 48em), print {
  #slider figure figcaption {
    padding: 0.8rem 1rem;
    font-size: 1.8rem;
  }
}

#thumbnail_slider {
  margin: 0 auto 2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #thumbnail_slider {
    width: 75rem;
  }
}
#thumbnail_slider .slick-list .thumbnail-item img {
  cursor: grab;
}
#thumbnail_slider .slick-list .thumbnail-item img:active {
  cursor: grabbing;
}
#thumbnail_slider .slick-list .slick-current {
  position: relative;
}
#thumbnail_slider .slick-list .slick-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid var(--color20);
}
#thumbnail_slider .slick-list .slick-current img {
  width: 100%;
  display: block;
}
#thumbnail_slider .slick-prev::before,
#thumbnail_slider .slick-next::before {
  color: var(--color20);
}

#slider02 {
  margin: 0 auto 0.2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #slider02 {
    width: 75rem;
  }
}
#slider02 figure {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
#slider02 figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem 0.2rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  color: var(--color1);
  background: rgba(34, 34, 34, 0.8);
}
@media screen and (min-width: 48em), print {
  #slider02 figure figcaption {
    padding: 0.8rem 1rem;
    font-size: 1.8rem;
  }
}

#thumbnail_slider02 {
  margin: 0 auto 2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  #thumbnail_slider02 {
    width: 75rem;
  }
}
#thumbnail_slider02 .slick-list .thumbnail-item img {
  cursor: grab;
}
#thumbnail_slider02 .slick-list .thumbnail-item img:active {
  cursor: grabbing;
}
#thumbnail_slider02 .slick-list .slick-current {
  position: relative;
}
#thumbnail_slider02 .slick-list .slick-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid var(--color20);
}
#thumbnail_slider02 .slick-list .slick-current img {
  width: 100%;
  display: block;
}
#thumbnail_slider02 .slick-prev::before,
#thumbnail_slider02 .slick-next::before {
  color: var(--color20);
}

.slide-item img {
  width: 100%;
  height: auto;
}

.thumbnail-item img {
  width: 98%;
  display: block;
  margin: 0 auto;
}

/* 初めての方へ */
/* 診療時間・アクセス */
.access .gmap {
  height: 30rem;
  margin: 2rem 0;
}
.access .img_flex img ~ img {
  margin: 2rem 0 0;
}

@media screen and (min-width: 48em), print {
  .access .img_flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .access .img_flex > img {
    width: 49%;
    margin: 0;
  }
  .access .gmap {
    height: 50rem;
  }
}
/* 美容皮膚科 */
.beauty .lst_beauty {
  margin: 2rem 0 4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 1%;
}
.beauty .lst_beauty li {
  width: 49%;
}
.beauty .lst_beauty li a {
  height: 13rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  background: linear-gradient(45deg, #5fc7e2, #9fcff3);
  color: var(--color1);
  border-radius: 50%;
  position: relative;
}
.beauty .lst_beauty li a::before {
  content: "";
  display: block;
  width: 12rem;
  height: 11.4rem;
  border: 2px solid var(--color1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (min-width: 48em), print {
  .beauty .lst_beauty {
    margin: 4rem auto 6rem;
    padding: 0 10rem;
    gap: 5rem 7rem;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .beauty .lst_beauty li {
    width: 15rem;
  }
  .beauty .lst_beauty li a {
    height: 15rem;
    width: 100%;
    font-size: 1.6rem;
    transition: box-shadow 0.4s, transform 0.4s;
  }
  .beauty .lst_beauty li a::before {
    content: "";
    width: 14.4rem;
    height: 14.4rem;
    border: 2px solid var(--color1);
  }
  .beauty .lst_beauty li a:hover {
    box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.16);
    transform: scale(1.02);
    opacity: 1;
  }
}
/* QnA */
.faq .dl_QnA div {
  margin: 0 0 2rem;
}
.faq .dl_QnA div:last-child {
  margin: 0;
}
.faq .dl_QnA div dt {
  color: var(--color1);
  border-radius: 6px;
  background: linear-gradient(to right, #5fc7e2, #9fcff3);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.8rem 1rem 0.8rem 3rem;
  margin: 0 0 0.4rem;
  position: relative;
}
.faq .dl_QnA div dt::before {
  content: "Q.";
  color: var(--color3);
  font-family: "fontello";
  font-weight: bold;
  font-size: 1.6rem;
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
}
.faq .dl_QnA div dd {
  margin: 0;
  padding: 0.6rem;
}
@media screen and (min-width: 48em), print {
  .faq .dl_QnA div {
    margin: 0 0 3rem;
  }
  .faq .dl_QnA div dt {
    font-size: 2.4rem;
    padding: 1.4rem 1rem 1.4rem 4.8rem;
    margin: 0 0 1.2rem;
  }
  .faq .dl_QnA div dt::before {
    font-size: 2.4rem;
    left: 1.2rem;
    top: 1.4rem;
  }
  .faq .dl_QnA div dd {
    margin: 0;
    padding: 0.8rem;
  }
  .faq .dl_QnA div dd .flex {
    margin: 2rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 2rem;
  }
  .faq .dl_QnA div dd .flex > * > a {
    width: 100%;
  }
}