@charset "UTF-8";
:root {
  --gray01: #ffffff;
  --gray02: #fbfbfb;
  --gray03: #000000;
  --gray04: #222222;
  --gray05: #eeeeee;
  --gray06: #707070;
  --gray07: #212121;
  --gray08: #333333;
  --gray09: #cccccc;
  --gray10: #cbcbcb;
  --gray11: #666666;
  --blue01: #28668e;
  --blue02: #b9eaee;
  --blue03: #7ec2cf;
  --blue04: #89c4eb;
  --blue05: #254a8e;
  --blue06: #b9d7ee;
  --blue07: #1c51b9;
  --blue08: #ebf8f9;
  --blue09: #cbdcff;
  --blue10: #b9e9ed;
  --blue11: #eff9ff;
  --blue12: #cfefff;
  --blue13: #f5fdff;
  --blue14: #ebf1fc;
  --blue15: #ccdbf9;
  --blue16: #d5eaf8;
  --blue17: #58aae1;
  --green01: #fbfefb;
  --green02: #f3f9f4;
  --green03: #b7dd9f;
  --brown01: #fff7db;
  --brown02: #fffef5;
  --brown03: #f9cccc;
  --brown04: #f1b2b8;
}

/* ----------------------------------------------------------------------------------
リセット　_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_blue01 {
  color: var(--blue07);
}

.clr_red {
  color: red;
}

.txt_line {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, #cbdcff 80%);
}

.txt_line_02 {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, #b9e9ed 80%);
}

.txt_bg {
  padding: 0.2rem 0.4rem;
  background: var(--blue11);
}

.ex_txt {
  padding: 1.2rem 0.8rem;
  font-size: 140%;
  text-align: center;
  background: linear-gradient(to bottom, #cfefff, #f5fdff);
  word-break: auto-phrase;
}
@media screen and (min-width: 48em), print {
  .ex_txt {
    font-size: 4.2rem;
  }
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1.4rem;
  margin-bottom: 2rem;
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 2.4rem 3rem 2.4rem;
    margin-bottom: 3rem;
    border-radius: 30px;
  }
}
*[class*=frame_].frame_01 {
  background: linear-gradient(to bottom, #cfefff, #f5fdff);
}
*[class*=frame_].frame_02 {
  background: linear-gradient(to bottom, #fff7db, #fffef5);
}
*[class*=frame_] .lst_ul01 + p {
  margin: 0.8rem 0 0;
}

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

.img_l,
.img_r {
  text-align: center;
  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: 8rem;
  }
  .main > section ~ section,
  .flex2 > section ~ section {
    margin-top: 10rem;
  }
  .main > section section ~ section,
  .flex2 > section section ~ section {
    margin-top: 8rem;
  }
  .main > section > section section ~ section,
  .flex2 > section > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section > section section ~ section,
  .flex2 > section > section > section section ~ section {
    margin-top: 4rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.8rem;
}
.tbl_time caption ul li {
  position: relative;
  padding-left: 30%;
  margin: 0 0 1rem;
  color: var(--blue07);
}
.tbl_time caption ul li .ex {
  min-width: 26%;
  text-align: center;
  padding: 0.2rem 0.4rem;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background: var(--blue07);
  color: var(--gray01);
  position: absolute;
  top: 0;
  left: 0;
}
.tbl_time tr th {
  font-weight: 500;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: var(--blue07);
  font-size: 1.2rem;
  color: var(--gray01);
  font-weight: 500;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  background: var(--gray01);
  color: var(--blue07);
  border-bottom: 1px solid var(--blue07);
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  background: var(--gray01);
  color: var(--blue07);
  border-bottom: 1px solid var(--blue07);
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 2.4rem;
  }
  .tbl_time caption {
    margin: 3.2rem 0 0;
    font-size: 2.4rem;
  }
  .tbl_time caption ul li {
    padding-left: 14rem;
  }
  .tbl_time caption ul li .ex {
    min-width: 12rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.6rem 0;
    font-size: 2.6rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: 1.4rem 0;
  }
}
/* 担当医テーブル -------------------------------------- */
.doctortable {
  table-layout: fixed;
  border-spacing: 2px;
  border-collapse: separate;
  width: 100%;
}
.doctortable thead tr th {
  color: var(--gray01);
  background: var(--blue07);
  padding: 0.6rem 1.2rem;
  text-align: center;
}
.doctortable thead tr th:last-child {
  border-right: none;
}
.doctortable tbody {
  border-bottom: 1px solid var(--gray01);
}
.doctortable tbody tr th {
  border-bottom: 1px solid var(--blue12);
  background: var(--blue04);
  color: var(--gray01);
  font-weight: 500;
  text-align: left;
  font-size: 1.2rem;
  padding: 0.8rem;
}
.doctortable tbody tr td {
  background: var(--blue14);
  text-align: center;
  color: var(--gray07);
}
.doctortable tbody tr td.ampm {
  text-align: center;
  color: var(--blue07);
  background: var(--blue15);
}

@media screen and (min-width: 48em), print {
  .doctortable thead tr th {
    padding: 1.4rem 0;
    font-size: 2.6rem;
  }
  .doctortable thead tr th:first-child {
    width: 29%;
  }
  .doctortable tbody tr th {
    font-size: 2rem;
    padding: 1.4rem 2rem 1.4rem 3rem;
    border-bottom: none;
  }
  .doctortable tbody tr td {
    font-size: 2rem;
    padding: 1.6rem 0.2rem;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  font-size: 2.2rem;
  color: var(--blue01);
  padding: 9rem 1rem 4.4rem;
  margin: 0 0 0.4rem;
  min-height: 16rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.tit_02 {
  color: var(--gray07);
  font-size: 2rem;
  font-weight: bold;
  word-break: auto-phrase;
  text-align: center;
  margin: 0 0 3rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.tit_02::after {
  content: "";
  display: block;
  margin: 1rem auto 0;
  width: 1.2rem;
  height: 0.2rem;
  background: var(--blue07);
}
.tit_02 .eng_txt {
  font-size: 5rem;
  font-weight: 900;
  color: var(--blue16);
  white-space: nowrap;
  position: absolute;
  z-index: -1;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.tit_03 {
  color: var(--gray01);
  background: var(--blue07);
  border-radius: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.6rem 1.2rem;
  margin: 0 0 1rem;
}

.tit_04 {
  color: var(--blue07);
  border: 3px solid var(--blue07);
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 20px;
  line-height: 1.2;
  padding: 0.6rem 1.2rem;
  margin: 0 0 1rem;
}

.tit_05 {
  color: var(--blue17);
  font-size: 1.8rem;
  line-height: 1.2;
  border-bottom: 1px dashed var(--blue17);
  padding: 0 0 0.4rem;
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 50rem;
    font-size: 6rem;
    padding: 8.9rem 4rem;
    margin: 0 0 3rem;
    -webkit-align-items: center;
    align-items: center;
  }
  .tit_02 {
    font-size: 6rem;
    margin: 0 0 6rem;
  }
  .tit_02::after {
    width: 5rem;
    height: 0.4rem;
    margin: 4rem auto 0;
  }
  body.index .tit_02 .eng_txt {
    font-size: 18rem;
  }
  .tit_03 {
    font-size: 3.8rem;
    padding: 0.8rem 3rem;
    margin: 0 0 4rem;
  }
  .tit_04 {
    font-size: 3.2rem;
    padding: 0.8rem 3rem;
    margin: 0 0 3rem;
  }
  .tit_05 {
    font-size: 3rem;
    margin: 0 0 2rem;
    padding: 0 0 0.6rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  padding-left: 1.4rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li {
    padding-left: 2rem;
  }
}
.lst_ul01 li:last-child {
  padding-bottom: 0;
}
.lst_ul01 li::before {
  content: "●";
  color: var(--blue04);
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0.3rem;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li::before {
    font-size: 1.4rem;
    top: 0.8rem;
  }
}
.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%;
  }
}
.lst_ul01.flex_03 li {
  width: 49%;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex_03 li {
    width: 32%;
  }
}
@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_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 {
  color: var(--blue01);
  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: 14rem;
  }
  .lst_dl01 div dd {
    flex: 1;
  }
}
.lst_dl02 {
  margin: 0 0 2rem;
}
.lst_dl02 dt {
  margin: 0 0 0.2rem;
  padding: 0.4rem 1.2rem;
  background: var(--blue15);
  font-weight: bold;
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 dt {
    margin: 0 0 0.8rem;
    padding: 0.8rem 2rem;
  }
}
.lst_dl02 dd {
  margin: 0 0 1.4rem;
  padding: 0.8rem 1.2rem;
  background: var(--blue11);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 dd {
    margin: 0 0 4rem;
    padding: 2rem 4rem;
  }
}

.dl_QnA dt {
  font-weight: bold;
  font-size: 120%;
  text-align: left;
  margin: 0 0 1rem;
  padding: 1rem 2rem;
  color: var(--blue07);
  background: var(--gray01);
  border: 2px solid var(--blue07);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .dl_QnA dt {
    border: 4px solid var(--blue07);
    padding: 1.4rem 3rem;
  }
}
.dl_QnA dd {
  margin: 0 0 2rem;
  padding: 2rem;
  background: var(--blue11);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .dl_QnA dd {
    padding: 4rem 3rem;
    margin: 0 0 4rem;
  }
}

/* フレックス回り -------------------------------------- */
.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%;
  }
}
.img_flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1rem 0;
}
.img_flex img {
  display: block;
  max-width: 80%;
  height: auto;
}
@media screen and (min-width: 48em), print {
  .img_flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 2rem 1rem;
  }
}

/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  background: var(--blue01);
  color: var(--gray01);
  text-align: center;
  padding: 0.6rem 2rem;
  border-radius: 25px;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  word-break: auto-phrase;
  position: relative;
  gap: 0 0.6rem;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
}
*[class*=btn_] a::after {
  content: "\e812";
  font-family: "fontello";
  line-height: 0;
  position: relative;
  top: 0.2rem;
}
*[class*=btn_] a:hover {
  background: var(--blue04);
  opacity: 1;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
  *[class*=btn_] a {
    padding: 0.6rem 3rem;
    border-radius: 50px;
  }
}

.txt_link {
  color: var(--blue07);
  text-decoration: none !important;
  border-bottom: 1px solid var(--blue07);
}
.txt_link:hover {
  opacity: 0.8;
  border-bottom: none;
}

.lst_anc {
  margin: 0 0 6rem;
  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;
  gap: 0.8rem 0;
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    gap: 2rem 8rem;
    margin: 0 0 12rem;
  }
}
.lst_anc li {
  width: 100%;
}
@media screen and (min-width: 48em), print {
  .lst_anc li {
    width: calc(50% - 4rem);
  }
}
.lst_anc li a {
  display: inline-block;
  width: 100%;
  color: var(--blue07);
  border-bottom: 1px solid var(--blue07);
  text-decoration: none !important;
  padding: 0 1.4rem 0.4rem 0;
  position: relative;
}
.lst_anc li a::after {
  content: "2";
  font-family: "fontello";
  margin-left: 0.8rem;
  position: absolute;
  right: 0;
}

/* フローチャート -------------------------------------- */
.flow div {
  padding: 1.6rem;
  margin: 0 0 6rem;
  position: relative;
}
.flow div:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow div {
    border-radius: 20px;
    margin: 0 0 7rem;
    padding: 2.2rem 3rem 3rem;
  }
}
.flow div:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--blue07);
  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 div:not(:last-child)::after {
    border-right: 7rem solid transparent;
    border-left: 7rem solid transparent;
    border-top: 3rem solid var(--blue07);
    bottom: -6rem;
  }
}
.flow div dt {
  font-weight: bold;
  font-size: 120%;
  text-align: center;
  margin: 0 0 1rem;
  color: var(--blue07);
  border: 2px solid var(--blue07);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .flow div dt {
    border: 4px solid var(--blue07);
    padding: 1.4rem 0;
  }
}
.flow div dd {
  margin: 0;
  padding: 2rem;
  background: var(--blue11);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .flow div dd {
    padding: 4rem 3rem;
  }
}
.flow.notitle li {
  padding: 1.6rem;
  margin: 0 0 6rem;
  background: var(--blue11);
  border-radius: 20px;
  position: relative;
}
.flow.notitle li:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow.notitle li {
    border-radius: 20px;
    margin: 0 0 7rem;
    padding: 2.2rem 3rem 3rem;
  }
}
.flow.notitle li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--blue07);
  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.notitle li:not(:last-child)::after {
    border-right: 7rem solid transparent;
    border-left: 7rem solid transparent;
    border-top: 3rem solid var(--blue07);
    bottom: -6rem;
  }
}

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0 0;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  .tbl_low {
    margin: 8rem 0 0;
  }
}
.tbl_low > *:first-child tr:first-child > *:first-child {
  border-top-left-radius: 20px;
}
.tbl_low > *:first-child tr:first-child > *:last-child {
  border-top-right-radius: 20px;
}
.tbl_low thead tr th {
  background: var(--blue07);
  color: var(--gray01);
  text-align: center;
  word-wrap: break-word;
  padding: 0.8rem 1rem;
}
.tbl_low thead tr th:first-child {
  width: 30%;
}
.tbl_low thead tr th:not(:last-child) {
  border-right: 1px solid var(--blue15);
}
.tbl_low thead tr th.no_bg {
  background: var(--blue11);
}
@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: var(--blue11);
  word-wrap: break-word;
  text-align: center;
  font-weight: normal;
  border-top: 1px solid var(--gray09);
  border-right: 1px solid var(--gray09);
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr th .lst_ul01 {
  margin: 2rem auto 0;
  width: max-content;
  text-align: left;
}
.tbl_low tbody tr td {
  background: var(--gray01);
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--gray09);
  border-right: 1px solid var(--gray09);
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr td {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr > *:first-child {
  border-left: 1px solid var(--gray09);
}
.tbl_low tbody tr > *:first-child.left_noline {
  border-left: none;
}
.tbl_low tbody tr:last-child th,
.tbl_low tbody tr:last-child td {
  border-bottom: 1px solid var(--gray09);
}
.tbl_low .center {
  text-align: center;
}
.tbl_low .left {
  text-align: left;
}
.tbl_low .right {
  text-align: right;
}
.tbl_low .bg {
  background: var(--blue15);
}
.tbl_low .bg_blue01 {
  background: var(--blue15);
}
.tbl_low .bg_red01 {
  background: var(--brown03);
}
.tbl_low--price {
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0 0;
  width: 100%;
}
.tbl_low--price > *:first-child tr:first-child > *:first-child {
  border-top-left-radius: 20px;
}
.tbl_low--price > *:first-child tr:first-child > *:last-child {
  border-top-right-radius: 20px;
}
.tbl_low--price thead tr th {
  background: var(--blue07);
  color: var(--gray01);
  text-align: center;
  padding: 0.8rem 1rem;
}
.tbl_low--price thead tr th:first-child {
  width: 30%;
}
.tbl_low--price thead tr th:not(:last-child) {
  border-right: 1px solid var(--blue15);
}
@media screen and (min-width: 48em), print {
  .tbl_low--price thead tr th {
    padding: 2rem 2rem;
  }
  .tbl_low--price thead tr th:first-child {
    width: 42%;
  }
}
.tbl_low--price tbody tr:first-child > * {
  width: 60%;
}
@media screen and (min-width: 48em), print {
  .tbl_low--price tbody tr:first-child > * {
    width: 48%;
  }
}
.tbl_low--price tbody tr th {
  padding: 0.8rem;
  background: var(--blue11);
  text-align: center;
  font-weight: normal;
  border-right: 1px solid var(--gray09);
  border-top: 1px solid var(--gray09);
}
@media screen and (min-width: 48em), print {
  .tbl_low--price tbody tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low--price tbody tr td {
  padding: 0.8rem 1rem;
  border-right: 1px solid var(--gray09);
  border-top: 1px solid var(--gray09);
  text-align: right;
}
@media screen and (min-width: 48em), print {
  .tbl_low--price tbody tr td {
    padding: 2rem 2rem;
  }
}
.tbl_low--price tbody tr > *:first-child {
  border-left: 1px solid var(--gray09);
}
.tbl_low--price tbody tr:last-child th,
.tbl_low--price tbody tr:last-child td {
  border-bottom: 1px solid var(--gray09);
}
.tbl_low--mt0 {
  margin: 0;
}
.tbl_low--cell03 thead tr th:first-child {
  width: 20%;
}
.tbl_low--cell03 tbody tr:first-child > * {
  width: 20% !important;
}
.tbl_low--cell03 tbody tr th:first-child {
  width: 20% !important;
}
.tbl_low--cell03 tbody tr td > * {
  width: 20% !important;
}
.tbl_low--cell03 tbody tr td > *:nth-child(3) {
  text-align: right;
  width: 15%;
}
.tbl_low--cell04 thead tr th:first-child {
  width: 20%;
}
.tbl_low--cell04 thead tr th:nth-child(2) {
  width: 20%;
}
.tbl_low--cell04 tbody tr th:first-child {
  width: 20%;
}
.tbl_low--cell04 tbody tr td {
  text-align: left;
}
.tbl_low--cell04 tbody tr td:first-child {
  width: 20%;
}
.tbl_low--cell04 tbody tr > *:nth-child(3), .tbl_low--cell04 tbody tr > *:nth-child(4) {
  text-align: right;
  width: 15%;
}
.tbl_low--cellnarrow01 thead tr th:first-child,
.tbl_low--cellnarrow01 thead tr td:first-child,
.tbl_low--cellnarrow01 tbody tr th:first-child,
.tbl_low--cellnarrow01 tbody tr td:first-child {
  width: 10% !important;
}
.tbl_low--cellnarrow02 thead tr th:first-child,
.tbl_low--cellnarrow02 thead tr td:first-child,
.tbl_low--cellnarrow02 tbody tr th:first-child,
.tbl_low--cellnarrow02 tbody tr td:first-child {
  width: 20% !important;
}
.tbl_low--cellwide01 thead tr th:first-child,
.tbl_low--cellwide01 thead tr td:first-child,
.tbl_low--cellwide01 tbody tr th:first-child,
.tbl_low--cellwide01 tbody tr td:first-child {
  width: 34% !important;
}
.tbl_low--cellwide02 thead tr th:first-child,
.tbl_low--cellwide02 thead tr td:first-child,
.tbl_low--cellwide02 tbody tr th:first-child,
.tbl_low--cellwide02 tbody tr td:first-child {
  width: 60% !important;
}
@media screen and (min-width: 48em), print {
  .tbl_low--cellwide02 thead tr th:first-child,
  .tbl_low--cellwide02 thead tr td:first-child,
  .tbl_low--cellwide02 tbody tr th:first-child,
  .tbl_low--cellwide02 tbody tr td:first-child {
    width: 80% !important;
  }
}
.tbl_low .center {
  text-align: center;
}
.tbl_low .left {
  text-align: left;
}
.tbl_low .bg {
  background: var(--blue15);
}

.table_overflow {
  overflow-x: scroll; /* 横スクロールを有効化 */
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 48em), print {
  .table_overflow {
    overflow-x: auto;
  }
}
.table_overflow > table {
  margin: 0;
  table-layout: auto;
  min-width: 48rem;
  width: 100%;
  border-collapse: collapse;
  word-break: auto-phrase;
}
@media screen and (min-width: 48em), print {
  .table_overflow > table {
    table-layout: fixed;
    word-break: normal;
  }
}

.tbl_access {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.2rem;
  width: 100%;
}
.tbl_access tr th {
  width: 37%;
  background: var(--blue15);
  text-align: center;
  font-weight: bold;
  padding: 0.8rem;
}
.tbl_access tr td {
  padding: 0.8rem;
  border-bottom: 2px solid var(--blue15);
}

@media screen and (min-width: 48em), print {
  .tbl_access tr th {
    width: 30%;
    padding: 2rem 2rem;
  }
  .tbl_access tr td {
    padding: 2rem 3rem;
    border-bottom: 3px solid var(--blue15);
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
.nolink {
  pointer-events: none !important;
}

html {
  font-size: 3.125vw;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Arial", sans-serif;
  font-weight: 500;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (min-width: 48em), print {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  background: var(--gray01);
  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 0;
}
.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;
  }
  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: relative;
  padding-bottom: 16rem;
  background: var(--gray02);
}
.header .header_item {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
}
.header .header_item .wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0 1rem;
}
.header .header_item .wrap .logo {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 1rem;
  height: 8rem;
  width: 8rem;
  padding: 1rem;
  background: var(--gray01);
  border-radius: 0 0 10px 10px;
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.16);
  transition: top 0.5s ease;
}
.header .header_item .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo_header.svg) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .header_item .wrap .headR {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 13.4rem;
  width: 100%;
  padding: 1rem 0 0;
}
.header .header_item .wrap .headR .dept {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.3rem 0.4rem;
}
.header .header_item .wrap .headR .dept li {
  padding: 0.2rem 0.2rem;
  background: var(--gray01);
  border: 1px solid var(--blue01);
  color: var(--blue01);
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .header_item .wrap .headR .tel {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header {
    background: var(--gray02);
    padding: 0;
  }
  .header .header_item .wrap {
    margin: 0 auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .header .header_item .wrap .logo {
    width: 26rem;
    height: 23.6rem;
    padding: 3rem;
    border-radius: 0 0 20px 20px;
    position: absolute;
    z-index: 3;
    left: 4rem;
  }
  .header .header_item .wrap .headR {
    right: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    margin: 2.6rem 0 0;
  }
  .header .header_item .wrap .headR .dept {
    margin-right: 3rem;
    gap: 0 0.8rem;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .header .header_item .wrap .headR .dept li {
    border: none;
    font-size: 2.6rem;
    padding: 0.4rem 0.6rem;
  }
  .header .header_item .wrap .headR .tel {
    width: 30.8rem;
    font-size: 3.4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    color: var(--blue01);
    border-radius: 30px;
    background: var(--blue02);
    margin: 1.4rem 3rem 0 auto;
    padding: 0.8rem 1.2rem;
  }
  .header .header_item .wrap .headR .tel::before {
    content: "\e816";
    font-family: "fontello";
    margin-right: 0.4rem;
  }
}
.nav_item .tel {
  display: none;
}
.nav_item #menu {
  z-index: 9999;
  width: 100%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.nav_item #menu .fixed_menu_btn {
  width: 6rem;
  height: 5.6rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0;
  position: fixed;
  top: 1.4rem;
  right: 1rem;
  z-index: 204;
  transition: top 0.5s ease;
}
.nav_item #menu .fixed_menu_btn.hidden {
  top: -120px;
}
.nav_item #menu .fixed_menu_btn .hamburger {
  height: 100%;
}
.nav_item #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 1rem;
  height: 100%;
  text-decoration: none;
  background: var(--gray01);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.16);
  color: #212121;
  font-size: 1.2rem;
  border-radius: 10px;
}
.nav_item #menu .fixed_menu_btn .hamburger a ul {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem 0;
}
.nav_item #menu .fixed_menu_btn .hamburger a ul li {
  height: 6px;
  border-radius: 50px;
  background: var(--gray04);
  width: 3rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.nav_item #menu .fixed_menu_btn .hamburger a ul li:nth-child(1) {
  background: var(--blue03);
}
.nav_item #menu .fixed_menu_btn .hamburger a ul li:nth-child(2) {
  background: var(--blue04);
}
.nav_item #menu .fixed_menu_btn .hamburger a ul li:nth-child(3) {
  background: var(--blue05);
}
.nav_item #menu .fixed_menu_btn .hamburger a ul::after {
  content: "MENU";
  display: block;
  font-size: 1rem;
}
.nav_item #menu .fixed_menu_btn.active .hamburger a ul li:nth-child(1) {
  transform: rotate(45deg) translate(8px, 7px);
}
.nav_item #menu .fixed_menu_btn.active .hamburger a ul li:nth-child(2) {
  opacity: 0;
}
.nav_item #menu .fixed_menu_btn.active .hamburger a ul li:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.nav_item #menu .fixed_menu_btn.active .hamburger a ul::after {
  content: "CLOSE";
}
.nav_item #nav {
  display: none;
}
.nav_item #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 10rem 0 10rem;
  background: rgba(185, 215, 238, 0.95);
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  left: auto !important;
  z-index: 203;
  -webkit-transform: translate(27rem);
  transform: translate(27rem);
}
.nav_item #nav.sp_nav.open {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.nav_item #nav.sp_nav ul {
  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;
}
.nav_item #nav.sp_nav ul > li {
  width: 100%;
  border-bottom: #eeeeee 1px solid;
}
.nav_item #nav.sp_nav ul > li a {
  text-align: left;
  padding: 1.2rem 3rem;
  font-size: 1.4rem;
  display: block;
  position: relative;
}
.nav_item #nav.sp_nav ul > li a::after {
  content: "\e80d";
  font-family: "fontello";
  margin-left: 0.6rem;
  color: var(--blue01);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 3rem;
}
.nav_item #nav.sp_nav ul > li a.sub::after {
  content: "\e80b";
}
.nav_item #nav.sp_nav ul > li a.sub.close::after {
  content: "\e80c";
}
.nav_item #nav.sp_nav ul > li .subnav {
  display: none;
}
.nav_item #nav.sp_nav ul > li .subnav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background: var(--blue07);
}
.nav_item #nav.sp_nav ul > li .subnav ul > li {
  padding: 0;
  width: 100%;
  border-bottom: 1px solid var(--gray01);
}
.nav_item #nav.sp_nav ul > li .subnav ul > li a {
  padding: 1.2rem 5rem 1.2rem 3.4rem;
  color: var(--gray01);
  position: relative;
}
.nav_item #nav.sp_nav ul > li .subnav ul > li a::before {
  content: "\f111";
  font-family: "fontello";
  margin-right: 0;
  font-size: 1rem;
  display: inline-block;
  transform: scale(0.4);
  position: absolute;
  top: 1.4rem;
  left: 2.2rem;
}
.nav_item #nav.sp_nav ul > li .subnav ul > li a::after {
  color: var(--gray01);
  margin-left: 0;
}
.nav_item #nav.sp_nav ul > li .subnav ul > li a .br {
  display: none;
}
.nav_item .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;
}
.nav_item .overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

#nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_menu_btn {
    display: none;
  }
  .nav_item {
    margin: 0 auto;
    padding: 0.4rem 0;
    width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 4rem;
    position: relative;
    z-index: 200;
    /* Gナビ　ハイライト */
  }
  .nav_item::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
    height: 100%;
    width: 100vw;
    min-width: 2000px;
    background: var(--gray02);
  }
  .nav_item.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 200;
    margin: auto;
  }
  .nav_item.fixed::before {
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.16);
  }
  .nav_item #menu {
    display: block;
  }
  .nav_item #menu.overlay {
    display: none;
  }
  .nav_item #menu #nav {
    all: unset;
    display: block;
    background: none;
  }
  .nav_item #menu #nav .gnav {
    margin: auto;
    padding: 2rem 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .nav_item #menu #nav .gnav li {
    position: relative;
  }
  .nav_item #menu #nav .gnav li a {
    display: block;
    text-align: center;
    padding: 0;
    font-size: 2.2rem;
    position: relative;
  }
  .nav_item #menu #nav .gnav li a::after {
    content: "";
    width: 100%;
    height: 5px;
    background: var(--blue07);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -1.6rem;
    opacity: 0;
    transition: all 0.4s;
  }
  .nav_item #menu #nav .gnav li a:hover::after {
    bottom: -1rem;
    opacity: 1;
  }
  .nav_item #menu #nav .gnav li .subnav {
    width: 80.6rem;
    display: none;
    position: absolute;
    top: 4.2rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .nav_item #menu #nav .gnav li .subnav ul {
    background: rgba(185, 215, 238, 0.95);
    border: 3px solid var(--gray01);
    border-radius: 30px;
    padding: 4rem 0;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
    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;
  }
  .nav_item #menu #nav .gnav li .subnav ul li {
    width: 50%;
  }
  .nav_item #menu #nav .gnav li .subnav ul li:nth-child(odd) {
    position: relative;
  }
  .nav_item #menu #nav .gnav li .subnav ul li:nth-child(odd)::after {
    content: "";
    display: block;
    background: var(--gray06);
    width: 1px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 0;
  }
  .nav_item #menu #nav .gnav li .subnav ul li a {
    display: block;
    padding: 0.8rem 0;
  }
  .nav_item #menu #nav .gnav li .subnav ul li a::after {
    content: none;
  }
  .nav_item #menu #nav .gnav li .subnav ul li a:hover {
    color: var(--blue07);
    opacity: 1;
  }
  .nav_item #menu #nav .gnav li .subnav ul li a .br {
    display: none;
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
  background: url(../img/overview_bg01.jpg) repeat top left/14rem auto;
}
.overview > .wrap {
  padding: 0;
}
.overview > .wrap .overviewL {
  padding: 1rem;
}
.overview > .wrap .overviewL .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview > .wrap .overviewL .clinic_name img {
  max-width: 80%;
  height: auto;
}
.overview > .wrap .overviewL .address,
.overview > .wrap .overviewL .dr {
  text-align: center;
}
.overview > .wrap .overviewL .dept {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}
.overview > .wrap .overviewL .dept li span {
  padding: 0.2rem 0.4rem;
  background: var(--gray01);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: var(--blue01);
}
.overview > .wrap .overviewL .tel_item {
  text-align: center;
}
.overview > .wrap .overviewL .tel_item .tel {
  display: inline-flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--blue01);
}
.overview > .wrap .overviewL .tel_item .tel::before {
  content: "\e816";
  font-family: "fontello";
  font-size: 3.2rem;
  font-weight: normal;
  margin-right: 0.4rem;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 0;
}
.overview > .wrap .overviewR .access {
  padding: 2rem 1rem 1.2rem;
  color: var(--gray01);
  background: var(--blue01);
}
.overview > .wrap .overviewR .access .wrap {
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
}
.overview > .wrap .overviewR .access .wrap::before {
  content: "";
  display: block;
  width: 10rem;
  height: 9rem;
  background: url(../img/overview_parts01.svg) no-repeat center/contain;
  position: absolute;
  right: 0rem;
  top: -2rem;
}
.overview > .wrap .overviewR .access .wrap .tit {
  margin: 0 0 0.6rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.overview > .wrap .overviewR .access .wrap .tit::before {
  content: "\e815";
  font-family: "fontello";
  font-weight: 400;
  font-size: 3.4rem;
  margin-right: 0.4rem;
  color: var(--blue04);
}
.overview > .wrap .overviewR .access .wrap ul li {
  position: relative;
  padding-left: 1.4rem;
}
.overview > .wrap .overviewR .access .wrap ul li::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.overview > .wrap .overviewR .access .wrap .txt_link {
  color: var(--gray01);
  border-bottom: 1px solid var(--gray01);
}
.overview > .wrap .overviewR .access .wrap .txt_link:hover {
  opacity: 0.8;
  border-bottom: none;
}
.overview > .wrap .overviewR .gmap {
  height: 30rem;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 100%;
}

@media screen and (min-width: 48em), print {
  .overview {
    position: relative;
    margin: 0 0 0;
    padding: 0;
    font-size: 1.8rem;
  }
  .overview > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL {
    width: 60rem;
    padding: 5rem 5rem 5rem 0rem;
    font-size: 2.4rem;
  }
  .overview > .wrap .overviewL .clinic_name {
    margin: 0 0 0.8rem;
  }
  .overview > .wrap .overviewL .clinic_name img {
    max-width: 50rem;
  }
  .overview > .wrap .overviewL .address {
    margin: 0.8rem 0 1.7rem;
  }
  .overview > .wrap .overviewL .dr {
    margin: 3rem 0 3rem;
  }
  .overview > .wrap .overviewL .dept {
    padding: 0 8rem;
    gap: 1rem 0.8rem;
  }
  .overview > .wrap .overviewL .tel_item .tel {
    font-size: 4rem;
    padding: 1.2rem 2.8rem;
  }
  .overview > .wrap .overviewL .tel_item .tel::before {
    font-size: 4.6rem;
    margin-right: 0.8rem;
    line-height: 1;
  }
  .overview > .wrap .overviewR {
    position: absolute;
    right: 0;
    min-width: 620px;
    height: 100%;
    width: 50vw;
    padding: 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .overview > .wrap .overviewR .access {
    padding: 6.7rem 1rem 5rem 5rem;
  }
  .overview > .wrap .overviewR .access .wrap {
    width: 53rem;
  }
  .overview > .wrap .overviewR .access .wrap::before {
    width: 31.5rem;
    height: 24.2rem;
    right: -32.5rem;
    top: -2rem;
  }
  .overview > .wrap .overviewR .access .wrap .tit {
    margin: 0 0 1.7rem;
    font-size: 5rem;
  }
  .overview > .wrap .overviewR .access .wrap .tit::before {
    font-size: 5.4rem;
    margin-right: 0.4rem;
    position: relative;
    top: -0.8rem;
  }
  .overview > .wrap .overviewR .access .wrap ul li {
    font-size: 2.2rem;
    padding-left: 2.4rem;
  }
  .overview > .wrap .overviewR .access .wrap p {
    margin: 0.6rem 0 0;
    font-size: 2.2rem;
  }
  .overview > .wrap .overviewR .gmap {
    height: 100%;
  }
  .overview > .wrap .overviewR .gmap iframe {
    height: 100%;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 400;
  cursor: pointer;
}
#pageup a {
  overflow: hidden;
  display: block;
  width: 4.3rem;
  height: 4.3rem;
  border: 2px solid var(--gray01);
  text-align: center;
  padding: 0.4rem;
  background: var(--blue07);
  border-radius: 50%;
  position: relative;
}
#pageup a::before {
  text-align: center;
  line-height: 1;
  font-size: 3.6rem;
  font-family: "fontello";
  content: "\e813";
  color: var(--gray01);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -0.2rem;
}
#pageup a span {
  display: none;
}
#pageup .tel {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    cursor: auto;
    bottom: 2rem;
    right: 2rem;
  }
  #pageup > div {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  #pageup > div a {
    width: 8rem;
    height: 8rem;
    cursor: pointer;
  }
  #pageup > div a::before {
    bottom: -0.8rem;
    font-size: 7rem;
  }
  #pageup > div .tel {
    width: 30.8rem;
    font-size: 3.4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    color: var(--blue01);
    border-radius: 30px;
    background: var(--blue02);
    margin: 0 3rem 0 auto;
    padding: 0.8rem 1.2rem;
    pointer-events: none !important;
  }
  #pageup > div .tel::before {
    content: "\e816";
    font-family: "fontello";
    margin-right: 0.4rem;
  }
}
.footer_fixedmenu {
  width: 100%;
  background: var(--gray01);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  font-size: 1.4rem;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.16);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer_fixedmenu .tel {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  color: var(--blue01);
  background: var(--blue02);
  width: 60%;
  font-size: 2.4rem;
  line-height: 1;
}
.footer_fixedmenu .tel::before {
  content: "\e816";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.footer_fixedmenu .rsv {
  width: 40%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer_fixedmenu .rsv a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  font-size: 2rem;
  text-align: center;
  color: var(--blue01);
  padding: 1rem 0.4rem;
  line-height: 1;
  background: var(--gray01);
}

@media screen and (min-width: 48em), print {
  .footer_fixedmenu {
    display: none;
  }
}
.footer {
  text-align: center;
  padding: 0 0 6.6rem;
}
.footer .pc_footer {
  display: none;
}
.footer .sp_footer > ul {
  background: var(--green01);
  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;
}
.footer .sp_footer > ul > li {
  width: 100%;
  border-bottom: #eeeeee 1px solid;
}
.footer .sp_footer > ul > li a {
  text-align: left;
  padding: 1.2rem 3rem;
  font-size: 1.4rem;
  display: block;
  position: relative;
}
.footer .sp_footer > ul > li a::after {
  content: "\e80d";
  font-family: "fontello";
  margin-left: 0.6rem;
  color: var(--blue01);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 3rem;
}
.footer .sp_footer > ul > li a.sub::after {
  content: "\e80b";
}
.footer .sp_footer > ul > li a.sub.close::after {
  content: "\e80c";
}
.footer .sp_footer > ul > li .subnav {
  display: none;
}
.footer .sp_footer > ul > li .subnav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background: var(--blue07);
}
.footer .sp_footer > ul > li .subnav ul > li {
  padding: 0;
  width: 100%;
  border-bottom: 1px solid var(--gray01);
}
.footer .sp_footer > ul > li .subnav ul > li a {
  padding: 1.2rem 5rem 1.2rem 3.4rem;
  color: var(--gray01);
  position: relative;
}
.footer .sp_footer > ul > li .subnav ul > li a::before {
  content: "\f111";
  font-family: "fontello";
  margin-right: 0;
  font-size: 1rem;
  display: inline-block;
  transform: scale(0.4);
  position: absolute;
  top: 1.4rem;
  left: 2.2rem;
}
.footer .sp_footer > ul > li .subnav ul > li a::after {
  color: var(--gray01);
  margin-left: 0;
}
.footer .sp_footer > ul > li .subnav ul > li a .br {
  display: none;
}
.footer .link_policy {
  margin: 3rem 0 6rem;
}
.footer .link_policy a {
  font-size: 1.4rem;
  color: var(--blue07);
  text-decoration: none !important;
  border-bottom: 1px solid var(--blue07);
}
.footer .link_policy a:hover {
  opacity: 0.8;
  border-bottom: none;
}
.footer .copy {
  display: block;
  padding: 2.2rem 0rem 0;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 5rem 0 8rem;
  }
  .footer .pc_footer {
    display: block;
    margin: 0 0 3rem;
  }
  .footer .pc_footer > ul {
    display: block;
    text-align: center;
    margin: 0 auto 0.4rem;
  }
  .footer .pc_footer > ul > li {
    display: inline-block;
    font-size: 1.6rem;
  }
  .footer .pc_footer > ul > li:not(:last-child)::after {
    content: "|";
    margin: 0 0.4rem;
  }
  .footer .pc_footer > ul > li a {
    opacity: 1;
  }
  .footer .pc_footer > ul > li a:hover {
    text-decoration: underline;
  }
  .footer .pc_footer > ul > li a .br {
    display: none;
  }
  .footer .pc_footer > ul > li.treatment {
    display: none;
  }
  .footer .sp_footer {
    display: none;
  }
  .footer .copy {
    font-size: 1.4rem;
    padding: 0;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* 設定 ------- */
.overflow {
  overflow-x: clip;
}

/* キービジュアル -------------------------------------- */
.keyvsl {
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.keyvsl .keyvsl_slider {
  height: 27rem;
}
.keyvsl .keyvsl_slider li.slider-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 27rem;
}
.keyvsl .keyvsl_slider li.slider-item.slider-item01 {
  background-image: url(../img/index_keyvsl01.jpg);
}
.keyvsl .keyvsl_slider li.slider-item.slider-item02 {
  background-image: url(../img/index_keyvsl02.jpg);
}
.keyvsl .keyvsl_slider li.slider-item.slider-item03 {
  background-image: url(../img/index_keyvsl03.jpg);
}
.keyvsl .kv_item .kv_txt {
  position: absolute;
  left: 1rem;
  bottom: 18rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem 0;
}
.keyvsl .kv_item .kv_txt p {
  font-size: 1.4rem;
  margin: 0;
  padding: 0.4rem 0.6rem;
  background: rgba(37, 74, 142, 0.7);
  color: var(--gray01);
}
.keyvsl .kv_info {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0 1rem;
  padding: 0 1rem;
}
.keyvsl .kv_info .parking {
  width: 10rem;
  height: 10rem;
  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;
  color: var(--blue01);
  font-weight: bold;
  background: var(--blue04);
  padding: 1rem 1rem;
  border-radius: 50%;
  border: 3px solid var(--gray01);
}
.keyvsl .kv_info .parking p {
  font-size: 1.4rem;
  margin: 0;
  white-space: nowrap;
}
.keyvsl .kv_info .parking p span {
  font-size: 1.8rem;
}
.keyvsl .kv_info .info_item {
  flex: 1;
  padding: 1rem;
  border-radius: 10px;
  background: var(--gray01);
  border: 3px solid var(--blue04);
}
.keyvsl .kv_info .info_item ul {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1rem 0;
}
.keyvsl .kv_info .info_item ul li {
  font-size: 1.2rem;
  position: relative;
  padding-left: 2rem;
}
.keyvsl .kv_info .info_item ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: var(--blue04);
  font-family: "fontello";
  font-size: 1.8rem;
}
.keyvsl .kv_info .info_item ul li.address::before {
  content: "\e814";
}
.keyvsl .kv_info .info_item ul li.access_maplink::before {
  content: "\e815";
}
.keyvsl .kv_info .info_item ul li.access_maplink a {
  border-bottom: 1px solid #212121;
}
.keyvsl .kv_info .info_item ul li.access_maplink a:hover {
  border-bottom: none;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    padding: 0 0 2.2rem;
  }
  .keyvsl .keyvsl_slider {
    height: 90rem;
  }
  .keyvsl .keyvsl_slider li.slider-item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 90rem;
  }
  .keyvsl .header_item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .keyvsl .header_item .kv_item {
    flex: 1;
    margin: 0 auto;
    width: 1200px;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .keyvsl .header_item .kv_item .kv_txt {
    top: 26.8rem;
    left: 8rem;
    bottom: auto;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 0 1.3rem;
  }
  .keyvsl .header_item .kv_item .kv_txt p {
    min-width: 5.3rem;
    font-size: 2.8rem;
    padding: 1rem;
    letter-spacing: 0.4rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: inline-flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .keyvsl .header_item .kv_info {
    bottom: 13.2rem;
    width: 62rem;
    right: 2rem;
    gap: 0 3.6rem;
    padding: 0;
    z-index: 3;
  }
  .keyvsl .header_item .kv_info .parking {
    width: 17rem;
    height: 17rem;
  }
  .keyvsl .header_item .kv_info .parking p {
    font-size: 2.6rem;
  }
  .keyvsl .header_item .kv_info .parking p span {
    font-size: 3.6rem;
  }
  .keyvsl .header_item .kv_info .info_item {
    padding: 2.8rem 3rem;
  }
  .keyvsl .header_item .kv_info .info_item ul {
    gap: 2.8rem 0;
  }
  .keyvsl .header_item .kv_info .info_item ul li {
    font-size: 2.3rem;
    padding-left: 6rem;
  }
  .keyvsl .header_item .kv_info .info_item ul li::before {
    width: 4.8rem;
    text-align: center;
  }
  .keyvsl .header_item .kv_info .info_item ul li.address::before {
    font-size: 4.8rem;
  }
  .keyvsl .header_item .kv_info .info_item ul li.access_maplink::before {
    font-size: 3.6rem;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 2rem 0 4rem;
  background: url(../img/index_info_bg01.jpg) no-repeat bottom center/100% 20rem, var(--gray02);
}
.info dl {
  background: var(--gray01);
  margin: 0;
  padding: 1rem;
  line-height: 1.4;
  height: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.16);
}
.info dl .line {
  padding: 1rem 0 1rem;
  border-bottom: 1px solid var(--blue04);
}
.info dl .line:last-child {
  border-bottom: none;
}
.info dl .line dt {
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: var(--blue01);
  font-size: 110%;
  display: table;
}
.info dl .line dd {
  padding: 0;
  margin: 0;
}
.info dl .line dd p {
  margin: 0;
}
.info dl .line dd a {
  color: var(--blue01);
  transition: all 0.2s;
}
.info dl .line dd a:hover {
  text-decoration: none;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 12rem 0 12rem;
    background: url(../img/index_info_bg01.jpg) no-repeat bottom center/100% 47.8rem, var(--gray02);
  }
  .info dl {
    background: var(--gray01);
    margin: 0;
    padding: 5rem 6rem;
    line-height: 1.4;
    height: 100%;
  }
  .info dl .line {
    padding: 3rem 0 3rem;
  }
  .info dl .line dt {
    margin-bottom: 0.4rem;
    font-size: 3rem;
  }
  .info dl .line dd {
    font-size: 2.4rem;
  }
}
/* 診療時間表＆カレンダー -------------------------------------- */
.info_calendar {
  background: url(../img/index_infoCalendar_bg01.jpg) no-repeat top/auto 300%;
  padding: 6rem 0 4rem;
}
.info_calendar .wrap ~ .wrap {
  margin: 4rem auto 0;
}
.info_calendar .wrap .item_L {
  margin: 4rem 0 4rem;
}
.info_calendar .wrap .item_L .tbl_time tbody tr th.time {
  background: none;
}
.info_calendar .wrap .item_L .tbl_time tbody tr td {
  background: none;
}
.info_calendar .wrap .item_R .cal_area {
  min-height: 32rem;
}
.info_calendar .wrap .item_R .cal_area .tabs {
  border-bottom: none;
  display: flex;
  gap: 0 1rem;
  margin: 2rem 0 0;
}
.info_calendar .wrap .item_R .cal_area .tab {
  padding: 0.2rem 2rem;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  color: var(--gray07);
  border: 1px solid var(--gray01);
  background-color: var(--blue15);
}
.info_calendar .wrap .item_R .cal_area .tab.active {
  pointer-events: none;
  border: 1px solid var(--blue07);
  background: var(--blue07);
  color: var(--gray01);
}
.info_calendar .wrap .item_R .cal_area .tab:hover {
  opacity: 1;
}
.info_calendar .wrap .item_R .cal_area .tab-content {
  display: none;
}
.info_calendar .wrap .item_R .cal_area .tab-content.active {
  display: block;
}
.info_calendar .wrap .item_R .cal_area .cal .caledit {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  overflow: hidden;
}
.info_calendar .wrap .item_R .cal_area .cal .caledit tbody tr.month {
  overflow: hidden;
}
.info_calendar .wrap .item_R .cal_area .cal .caledit tbody tr.month th {
  padding: 0.4rem 0 0.2rem;
  font-size: 1.6rem;
  text-align: center;
  background: var(--blue07);
  border: none;
  color: var(--gray01);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.info_calendar .wrap .item_R .cal_area .cal .caledit tbody tr.week th {
  font-size: 1.4rem;
  font-weight: 500;
  background: var(--gray01);
  border: none;
  color: var(--blue07);
  font-family: "Zen Maru Gothic", serif;
}
.info_calendar .wrap .item_R .cal_area .cal .caledit tbody tr.day td {
  color: var(--gray04);
  background: var(--gray01);
  border: 1px solid var(--gray01);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
}
.info_calendar .wrap .item_R .cal_area .cal .caledit tbody tr.day td.notTheMonth {
  color: #cbcbcb !important;
  background: #cbcbcb !important;
}
.info_calendar .wrap .item_R .cal_area .cal .caledit tbody tr.day td.notTheMonth.close {
  color: #cbcbcb !important;
}
.info_calendar .wrap .item_R .cal_area .cal .caledit tbody tr.day td.open {
  background: var(--blue11);
}
.info_calendar .wrap .item_R .cal_area .cal .caledit tbody tr.day td.am_only {
  background: var(--green03);
}
.info_calendar .wrap .item_R .cal_area .cal .caledit tbody tr.day td.close {
  background: var(--brown04);
}
.info_calendar .wrap .item_R .cal_area .status_list {
  margin: 0.6rem 0 0;
}
.info_calendar .wrap .item_R .cal_area .status_list li {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 0.4rem;
}
.info_calendar .wrap .item_R .cal_area .status_list li::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--gray11);
}
.info_calendar .wrap .item_R .cal_area .status_list li.open::before {
  background: var(--blue11);
}
.info_calendar .wrap .item_R .cal_area .status_list li.am_only::before {
  background: var(--green03);
}
.info_calendar .wrap .item_R .cal_area .status_list li.close::before {
  background: var(--brown04);
}
.info_calendar .wrap .item_R .cal_area p {
  margin: 0.8rem 0 0;
}

@media screen and (min-width: 48em), print {
  .info_calendar {
    background: url(../img/index_infoCalendar_bg01.jpg) no-repeat top/3000px auto;
    padding: 12rem 0 12rem;
  }
  .info_calendar .wrap .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .info_calendar .wrap .flex .item_L {
    width: 55rem;
    margin: 2rem 0 0;
  }
  .info_calendar .wrap .flex .item_L .tbl_time tbody tr th.time {
    background: none;
  }
  .info_calendar .wrap .flex .item_L .tbl_time tbody tr td {
    background: none;
  }
  .info_calendar .wrap .flex .item_R {
    width: 56rem;
  }
  .info_calendar .wrap .flex .item_R .cal_area .tabs {
    gap: 0 0.8rem;
    margin: 2rem 0 0 0;
  }
  .info_calendar .wrap .flex .item_R .cal_area .tab {
    padding: 0.2rem 2rem;
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  .info_calendar .wrap .flex .item_R .cal_area .tab:hover {
    opacity: 0.8;
  }
  .info_calendar .wrap .flex .item_R .cal_area .tab-content {
    display: none;
  }
  .info_calendar .wrap .flex .item_R .cal_area .tab-content.active {
    display: block;
  }
  .info_calendar .wrap .flex .item_R .cal_area .cal .caledit tbody tr.month th {
    border: 1px solid var(--blue07);
    font-size: 2.4rem;
    padding: 0.8rem 0rem;
  }
  .info_calendar .wrap .flex .item_R .cal_area .cal .caledit tbody tr.week th {
    font-size: 2.2rem;
    padding: 0.4rem 0 0.8rem;
    line-height: 1;
  }
  .info_calendar .wrap .flex .item_R .cal_area .cal .caledit tbody tr.day td {
    font-size: 2.4rem;
    padding: 1.4rem 0.2rem;
    line-height: 1;
  }
  .info_calendar .wrap .flex .item_R .cal_area .status_list {
    margin: 1rem 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 1.5rem;
  }
  .info_calendar .wrap .flex .item_R .cal_area .status_list li {
    font-size: 2.4rem;
    gap: 0 0.5rem;
  }
  .info_calendar .wrap .flex .item_R .cal_area .status_list li::before {
    content: "";
    width: 1.8rem;
    height: 1.8rem;
  }
  .info_calendar .wrap .flex .item_R .cal_area p {
    font-size: 2.4rem;
    margin: 1rem 0 0;
  }
}
/* 診療内容 -------------------------------------- */
.treatmentMenu {
  padding: 4rem 0 4rem;
  background: url(../img/index_treatmentMenu_bg01.jpg) no-repeat center/cover;
}
.treatmentMenu section ~ section {
  margin: 4rem auto 0;
}
.treatmentMenu .tit_treatmentMenu {
  color: var(--blue01);
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 1rem;
}
.treatmentMenu ul {
  background: var(--gray01);
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 4%;
}
.treatmentMenu ul li {
  width: 100%;
}
.treatmentMenu ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-radius: 10px;
  position: relative;
  background: var(--blue04);
  color: var(--blue01);
  padding: 1rem 1rem;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
}
.treatmentMenu ul li a::after {
  content: "\e812";
  display: block;
  font-size: 1.2rem;
  font-family: "fontello";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 0.8rem;
}
.treatmentMenu ul li a .size_s {
  font-size: 80%;
}

@media screen and (min-width: 48em), print {
  .treatmentMenu {
    padding: 12rem 0 12rem;
  }
  .treatmentMenu section ~ section {
    margin: 12rem auto 0;
  }
  .treatmentMenu .tit_treatmentMenu {
    font-size: 5rem;
    margin: 0 0 5rem;
  }
  .treatmentMenu ul {
    padding: 5rem 10rem;
    gap: 2rem 4rem;
  }
  .treatmentMenu ul li {
    width: 48rem;
  }
  .treatmentMenu ul li a {
    font-size: 2.4rem;
    padding: 3.2rem 1rem 3.2rem 3rem;
  }
  .treatmentMenu ul li a::after {
    font-size: 2rem;
    right: 2rem;
  }
  .treatmentMenu ul li .size_s {
    font-size: 2rem;
  }
}
/* 当院の特長 -------------------------------------- */
.feature {
  padding: 4rem 0 4rem;
  background: var(--gray02);
}
.feature .wrap {
  padding: 0;
}
.feature .wrap ul {
  counter-reset: num_feature;
}
.feature .wrap ul li {
  counter-increment: num_feature 1;
  margin: 0 0 4rem;
}
.feature .wrap ul li:last-child {
  margin: 0;
}
.feature .wrap ul li figure {
  margin: 0;
  position: relative;
  z-index: 1;
}
.feature .wrap ul li figure::before {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  opacity: 0.2;
}
.feature .wrap ul li figure figcaption .num {
  line-height: 1;
  margin: 0 0 0 1.4rem;
  color: var(--blue01);
  font-weight: 900;
  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.4rem;
}
.feature .wrap ul li figure figcaption .num::after {
  content: counter(num_feature, decimal-leading-zero);
  font-size: 4rem;
  position: relative;
  bottom: -0.3rem;
}
.feature .wrap ul li figure figcaption .bg {
  border: 2px solid var(--blue01);
  border-radius: 10px;
  margin: 1rem;
  padding: 0.4rem 1.4rem 1rem;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
}
.feature .wrap ul li figure figcaption .bg .tit {
  margin: 0 0 0.6rem;
  text-align: center;
  color: var(--blue01);
  font-weight: 700;
  font-size: 2.2rem;
}
.feature .wrap ul li figure figcaption .bg .tit::after {
  content: "";
  background: url(../img/index_feature_parts01.svg) no-repeat center/contain;
  display: block;
  margin: 0.4rem auto 0;
  width: 100%;
  height: 1.4rem;
}
.feature .wrap ul li figure figcaption .bg .txt {
  margin: 0;
}
.feature .wrap ul li:nth-child(4n+1) {
  z-index: 4;
}
.feature .wrap ul li:nth-child(4n+1) figure::before {
  background: url(../img/index_feature_bg01.svg) no-repeat center/contain;
  height: 5rem;
  top: 14.4rem;
  right: -3.4rem;
}
.feature .wrap ul li:nth-child(4n+2) {
  z-index: 3;
}
.feature .wrap ul li:nth-child(4n+2) figure::before {
  background: url(../img/index_feature_bg02.svg) no-repeat center/contain;
  height: 14rem;
  top: 11rem;
  left: 14rem;
}
.feature .wrap ul li:nth-child(4n+3) {
  z-index: 2;
}
.feature .wrap ul li:nth-child(4n+3) figure::before {
  background: url(../img/index_feature_bg03.svg) no-repeat center/contain;
  height: 7rem;
  top: 12rem;
  right: -6rem;
}
.feature .wrap ul li:nth-child(4n+4) {
  z-index: 1;
}
.feature .wrap ul li:nth-child(4n+4) figure::before {
  background: url(../img/index_feature_bg04.svg) no-repeat center/contain;
  height: 4rem;
  top: 14rem;
  left: 8rem;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 13.4rem 0 12rem;
  }
  .feature .wrap ul li {
    margin: 0 0 5rem;
    min-height: 50rem;
    position: relative;
  }
  .feature .wrap ul li figure {
    min-height: 100%;
    position: relative;
    z-index: 1;
  }
  .feature .wrap ul li figure .img {
    position: absolute;
    z-index: 1;
    left: -40rem;
    min-height: 50rem;
    width: 115rem;
  }
  .feature .wrap ul li figure .img img {
    border-radius: 0 10px 10px 0;
    display: block;
  }
  .feature .wrap ul li figure figcaption {
    position: relative;
    z-index: 2;
    width: 55rem;
    margin: 0 0 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .feature .wrap ul li figure figcaption .num {
    font-size: 2.2rem;
    gap: 0 0.4rem;
    margin: 0 1rem;
  }
  .feature .wrap ul li figure figcaption .num::after {
    font-size: 8rem;
    bottom: -0.5rem;
  }
  .feature .wrap ul li figure figcaption .bg {
    padding: 5rem;
  }
  .feature .wrap ul li figure figcaption .bg .tit {
    margin: 0 0 1.4rem;
    font-size: 3.6rem;
  }
  .feature .wrap ul li figure figcaption .bg .tit::after {
    margin: 0 auto 3rem;
    height: 2.8rem;
  }
  .feature .wrap ul li figure figcaption .bg .txt {
    margin: 0;
    font-size: 2.4rem;
    line-height: 1.8;
  }
  .feature .wrap ul li:nth-child(even) figure .img {
    right: -40rem;
    left: auto;
  }
  .feature .wrap ul li:nth-child(even) figure .img img {
    border-radius: 10px 0 0 10px;
  }
  .feature .wrap ul li:nth-child(even) figure figcaption {
    margin: 0 auto 0 0;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .feature .wrap ul li:nth-child(4n+1) {
    z-index: 4;
  }
  .feature .wrap ul li:nth-child(4n+1) figure::before {
    background: url(../img/index_feature_bg01.svg) no-repeat center/contain;
    width: 63rem;
    height: 13rem;
    top: -13.4rem;
    right: -31rem;
  }
  .feature .wrap ul li:nth-child(4n+2) {
    z-index: 3;
  }
  .feature .wrap ul li:nth-child(4n+2) figure::before {
    background: url(../img/index_feature_bg02.svg) no-repeat center/contain;
    width: 80rem;
    height: 57rem;
    top: -4rem;
    left: -40rem;
  }
  .feature .wrap ul li:nth-child(4n+3) {
    z-index: 2;
  }
  .feature .wrap ul li:nth-child(4n+3) figure::before {
    background: url(../img/index_feature_bg03.svg) no-repeat center/contain;
    width: 59rem;
    height: 41rem;
    top: -12rem;
    right: -40rem;
  }
  .feature .wrap ul li:nth-child(4n+4) {
    z-index: 1;
  }
  .feature .wrap ul li:nth-child(4n+4) figure::before {
    background: url(../img/index_feature_bg04.svg) no-repeat center/contain;
    width: 48rem;
    height: 11rem;
    top: 11rem;
    left: -48rem;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .header {
  background: none;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header {
    padding-bottom: 0;
  }
}
body:not(.index) .header .low_keyvsl {
  background: url(../img/low_keyvsl01.jpg) no-repeat center/cover;
}
body:not(.index) .header .low_keyvsl .headR {
  bottom: 1rem;
}
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    background: var(--blue08);
    width: 1200px;
    margin: 2.8rem auto 0;
    padding: 1.1rem 1.5rem;
    position: relative;
    z-index: 2;
    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: 1.4rem;
    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;
  }
  body:not(.index) .breadcrumb_list li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
body:not(.index) .main {
  margin: 0 1rem 6rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 12rem 0 10rem;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 48em), print {
  body:not(.index) .nav_item::before {
    content: none;
  }
  body:not(.index) .nav_item.fixed::before {
    content: "";
  }
}
body:not(.index) .main .tel_item {
  display: block;
  text-align: center;
}
body:not(.index) .main .tel_item .tel {
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--blue01);
}
body:not(.index) .main .tel_item .tel::before {
  content: "\e816";
  font-family: "fontello";
  font-size: 3.2rem;
  font-weight: normal;
  margin-right: 0.4rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main .tel_item {
    text-align: left;
  }
  body:not(.index) .main .tel_item .tel {
    margin: 0 0 0.8rem;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    font-size: 4rem;
  }
  body:not(.index) .main .tel_item .tel::before {
    font-size: 5.2rem;
  }
}

@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;
  text-align: center;
  line-height: 1.2;
  font-size: 1.4rem;
  color: var(--gray08);
  background: rgba(243, 249, 244, 0.6);
}
@media screen and (min-width: 48em), print {
  *[id*=slider] figure figcaption {
    padding: 2rem 3rem;
    font-size: 1.8rem;
  }
}
*[id*=slider] figure figcaption p {
  text-align: center;
  font-size: 120%;
  margin: 0;
}

*[id*=thumbnail_slider] {
  margin: 0 auto 2rem;
  width: 100%;
}
@media screen and (min-width: 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 var(--gray04);
}
*[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: var(--gray04);
}

.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: 100%;
  height: auto;
}

@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: 58rem;
    margin: 0 0 6rem;
  }
  .img_gallery li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
#privacypolicy {
  font-size: 80%;
}
#privacypolicy .tit_02 {
  font-size: 2.4rem;
}

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

@media screen and (min-width: 48em), print {
  .access .gmap {
    height: 50rem;
  }
}
/* 陥入爪（巻き爪） */
.lst_ingrown_nails01 {
  margin: 4rem 0 0;
}
.lst_ingrown_nails01 li {
  margin: 0 0 4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 2rem;
}
.lst_ingrown_nails01 li div {
  text-align: center;
  width: calc(50% - 1rem);
}
.lst_ingrown_nails01 li div.left {
  position: relative;
}
.lst_ingrown_nails01 li div.left::after {
  content: "\f006";
  font-family: "fontello";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: -1.4rem;
  color: var(--blue07);
}
.lst_ingrown_nails01 li:first-child .left,
.lst_ingrown_nails01 li:first-child .right {
  position: relative;
}
.lst_ingrown_nails01 li:first-child .left::before,
.lst_ingrown_nails01 li:first-child .right::before {
  position: absolute;
  width: 100%;
  left: 50%;
  top: -2rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.lst_ingrown_nails01 li:first-child .left::before {
  content: "（矯正前）";
}
.lst_ingrown_nails01 li:first-child .right::before {
  content: "（矯正後）";
}

@media screen and (min-width: 48em), print {
  .lst_ingrown_nails01 {
    margin: 10rem 0 0;
  }
  .lst_ingrown_nails01 li {
    gap: 0 10rem;
  }
  .lst_ingrown_nails01 li div {
    width: 30rem;
  }
  .lst_ingrown_nails01 li div.left::after {
    right: -6rem;
  }
  .lst_ingrown_nails01 li:first-child .left::before,
  .lst_ingrown_nails01 li:first-child .right::before {
    left: 50%;
    top: -4rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.lst_ingrown_nails02 {
  margin: 4rem 0 0;
}
.lst_ingrown_nails02 li {
  margin: 0 0 5rem;
  position: relative;
}
.lst_ingrown_nails02 li:last-child {
  margin: 0;
}
.lst_ingrown_nails02 li:last-child::after {
  content: none;
}
.lst_ingrown_nails02 li::after {
  content: "\e80e";
  font-family: "fontello";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -4rem;
  color: var(--blue07);
  font-size: 3rem;
}
.lst_ingrown_nails02 li figure {
  margin: 0;
  padding: 0;
}
.lst_ingrown_nails02 li figure img {
  display: block;
  margin: 0 auto;
  max-width: 60%;
  height: auto;
}
.lst_ingrown_nails02 li figure figcaption {
  padding: 1rem;
}

@media screen and (min-width: 48em), print {
  .lst_ingrown_nails02 {
    margin: 10rem 0 4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .lst_ingrown_nails02 li {
    width: 30%;
    margin: 0;
  }
  .lst_ingrown_nails02 li::after {
    content: "\f006";
    top: 8rem;
    bottom: auto;
    left: auto;
    right: -4rem;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    color: var(--blue07);
    font-size: 3rem;
  }
}