@charset "UTF-8";
:root {
  --blue01: #4193b9;
  --blue02: #5fc6f6;
  --blue03: #62bce6;
  --blue04: #45adde;
  --blue05: #b5e1f6;
  --green01: #59a701;
  --green02: #f2fce7;
  --green03: #e3eed8;
  --green04: #f3f9f4;
  --green05: #638f7d;
  --green06: #ddf8ed;
  --green07: #76a08f;
  --green08: #adccc0;
  --green09: #DDF8ED;
  --red01: #ffe9e8;
  --red02: #ffeeed;
  --red03: #ffd2cf;
  --red04: #f6b8b3;
  --red05: #fff3f2;
  --red06: #fe7266;
  --red07: #d4645a;
  --red08: #ec868a;
  --red09: #e76b6f;
  --red10: #ffa2a5;
  --red11: #f58487;
  --red12: #ff8d90;
  --gray01: #000000;
  --gray02: #222222;
  --gray03: #333333;
  --gray04: #d2d2d2;
  --gray05: #dcdcdc;
  --gray06: #ffffff;
  --gray07: #7c7b7b;
  --gray08: #efeceb;
  --gray09: #463d37;
  --gray10: #c2aea0;
  --gray11: #8b847f;
  --gray12: #b4ada7;
  --gray13: #7a6958;
  --gray14: #513401;
}

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

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

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

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

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

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

.cf::after {
  clear: both;
}

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

.fl_r {
  float: right;
}

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

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1.2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 3rem 3rem 3rem;
    margin-bottom: 3rem;
  }
}
*[class*=frame_].frame_01 {
  background: var(--green06);
}
*[class*=frame_].frame_02 {
  background: var(--red01);
}

/* 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;
  }
}
.d_none {
  display: none;
}

/* マージン・パディング回り -------------------------------------- */
.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.mb10 {
  margin-bottom: 1rem;
}

.mb40 {
  margin-bottom: 4rem;
}

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

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

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

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

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

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  section > section:first-of-type {
    margin-top: 4rem;
  }
  .main > section ~ section,
  .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section,
  .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section,
  .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section,
  .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  table-layout: auto;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption ul li {
  margin: 0 0 0.6rem;
}
.tbl_time caption ul li:last-child {
  margin: 0;
}
.tbl_time caption ul li .ex {
  display: block;
}
.tbl_time caption ul li .clr_blue {
  color: var(--blue02);
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: var(--green07);
  font-size: 1.2rem;
  color: var(--gray06);
  font-weight: normal;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-radius: 10px 0 0 0;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 10px 0 0;
}
.tbl_time tr th.time {
  border-bottom: 1px solid var(--green07);
}
.tbl_time tr td {
  text-align: center;
  padding: 0.6rem 0.4rem;
  color: var(--blue02);
  border-bottom: 1px solid var(--green07);
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.8rem;
  }
  .tbl_time caption {
    font-size: 1.6rem;
    padding: 0.8rem 0;
  }
  .tbl_time caption ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.8rem 0;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: 1rem 0;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center top/cover;
  font-size: 2.2rem;
  margin: 0;
  min-height: 14rem;
  color: var(--gray13);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.tit_01::before {
  content: "";
  display: block;
  width: 100%;
  height: 1.4rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url(../img/index_kv_item_parts01.svg) no-repeat top/100% auto;
}

.tit_02 {
  color: var(--green05);
  font-size: 2rem;
  margin: 0 0 2.4rem;
  padding: 0 0 0 3.4rem;
  line-height: 1.2;
  position: relative;
}
.tit_02::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/tit_02_parts01.svg) no-repeat center/contain;
}

body.index .tit_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.4rem;
}
body.index .tit_02 .eng_txt {
  color: var(--gray10);
  font-size: 1.2rem;
}

body:not(.index) .tit_02 {
  padding: 0;
  text-align: center;
}
body:not(.index) .tit_02::before {
  position: static;
  margin: 0 auto 0.8rem;
}

.tit_03 {
  color: var(--red07);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1.8rem;
  padding: 0 0.4rem 0 2.4rem;
  position: relative;
  z-index: 1;
}
.tit_03::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  background: url(../img/tit_03_parts01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.tit_03::after {
  content: "";
  display: block;
  width: 100%;
  height: 2rem;
  border-radius: 30px;
  background: var(--red05);
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  z-index: -1;
}

.tit_03clinic {
  color: var(--red07);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1.8rem;
  padding: 0 0.4rem 0 2.4rem;
  position: relative;
  z-index: 1;
}
.tit_03clinic::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  background: url(../img/tit_03_parts01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.tit_03clinic.line2 {
  height: auto;
}

.tit_04 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1.8rem;
  padding: 0 0.4rem 0 2.4rem;
  position: relative;
  z-index: 1;
}
.tit_04::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  background: url(../img/tit_04_parts01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.tit_04::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  border-radius: 30px;
  background: var(--green03);
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  z-index: -1;
}

.tit_05 {
  color: var(--gray14);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center top/auto 100%;
    height: 28.7rem;
    font-size: 4rem;
    margin: 0 0 1rem;
  }
  .tit_01::before {
    min-width: 2000px;
    height: 10.3rem;
    background: url(../img/index_kv_item_parts01.svg) no-repeat top/auto auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .tit_02 {
    font-size: 2.6rem;
    margin: 0 0 2rem;
  }
  body.index .tit_02 {
    font-size: 3.8rem;
    margin: 0 0 5.6rem;
    padding: 0 0 0 10.4rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  body.index .tit_02::before {
    width: 8.9rem;
    height: 8.9rem;
    top: -2.4rem;
  }
  body.index .tit_02 .eng_txt {
    margin-left: 1.7rem;
    font-size: 2rem;
  }
  body:not(.index) .tit_02 {
    font-size: 3.8rem;
    text-align: left;
    padding-left: 11rem;
    padding-top: 2.4rem;
    margin: 0 0 4.6rem;
  }
  body:not(.index) .tit_02::before {
    position: absolute;
    margin: 0;
    width: 9rem;
    height: 8.6rem;
  }
  .tit_03 {
    font-size: 2.8rem;
    margin: 0 0 6rem;
    padding: 0 0.4rem 0 6.4rem;
  }
  .tit_03::before {
    width: 4.8rem;
    height: 4.1rem;
    top: -0.6rem;
  }
  .tit_03::after {
    height: 3.1rem;
    bottom: -1.4rem;
  }
  .tit_03clinic {
    font-size: 2.8rem;
    margin: 0 0 2.5rem;
    padding: 0 0.4rem 0 6.4rem;
  }
  .tit_03clinic::before {
    width: 4.8rem;
    height: 4.1rem;
    top: -0.6rem;
  }
  .tit_03clinic.line2 {
    height: 60px;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 6rem;
    padding: 0 0.4rem 0 6.4rem;
  }
  .tit_04::before {
    width: 2.3rem;
    height: 3.8rem;
    top: -0.6rem;
    left: 1.1rem;
  }
  .tit_04::after {
    height: 0.6rem;
    bottom: -1.4rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
/* リスト回り -------------------------------------- */
.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: "■";
  font-size: 1rem;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  color: var(--red08);
  position: absolute;
  top: 0.2rem;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li::before {
    top: 0.6rem;
  }
}
.lst_ul01 li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_ul01.flex li {
    width: 49%;
  }
}
.lst_ul01.lst__inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_ul01.lst__inline li {
  width: auto;
  margin-right: 1rem;
}

.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;
  margin: 0;
  padding: 0;
}
.lst_dl01 div dd {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lst_dl01 div dt {
    width: 20rem;
  }
  .lst_dl01 div dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.lst_dl02 dt {
  font-size: 110%;
  color: var(--green01);
}
@media screen and (min-width: 48em), print {
  .lst_dl02 dt {
    font-size: 120%;
  }
}
.lst_dl02 dd {
  margin: 0 0 2rem;
}

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

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-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: var(--green07);
  color: var(--gray06);
  text-align: center;
  padding: 0.6rem 4rem;
  border-radius: 20px;
  display: inline-block;
  text-decoration: none !important;
  -webkit-box-shadow: 3px 3px 0px var(--gray08);
          box-shadow: 3px 3px 0px var(--gray08);
}
*[class*=btn_] a:hover {
  opacity: 0.8 !important;
  background: var(--red06);
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
}
@media screen and (min-width: 48em), print {
  *[class*=btn_].btn__center {
    text-align: center;
  }
}

body:not(.index) *[class*=btn_] a::before {
  content: "\e804";
  display: inline-block;
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 1rem;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  position: relative;
  bottom: 0.2rem;
}
body:not(.index) *[class*=btn_] a::before:hover {
  opacity: 1 !important;
  background: var(--red06);
}

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

.anc_link {
  margin: 4rem 0 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0;
}
@media screen and (min-width: 48em), print {
  .anc_link {
    gap: 3rem 0;
  }
}
.anc_link li {
  width: 49%;
}
@media screen and (min-width: 48em), print {
  .anc_link li {
    width: 23%;
  }
}
.anc_link li a {
  background: var(--green07);
  color: var(--gray06);
  height: 100%;
  text-align: center;
  padding: 0.6rem 1rem;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  -webkit-box-shadow: 3px 3px 0px var(--gray08);
          box-shadow: 3px 3px 0px var(--gray08);
}
.anc_link li a::before {
  content: "\e804";
  display: inline-block;
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 1rem;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}
.anc_link li a:hover {
  opacity: 1 !important;
  background: var(--red06);
}

/* フローチャート -------------------------------------- */
.flow div {
  margin: 0 0 6rem;
  padding: 1rem;
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--red04);
}
@media screen and (min-width: 48em), print {
  .flow div {
    padding: 3rem 2.4rem;
  }
}
.flow div:last-child {
  margin: 0;
}
.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(--red10);
  border-right: 4rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 4rem solid transparent;
  margin: auto;
}
.flow div dt {
  margin: 0 0 0.4rem;
  color: var(--red10);
  font-weight: bold;
  font-size: 110%;
}
@media screen and (min-width: 48em), print {
  .flow div dt {
    margin: 0 0 1rem;
  }
}
.flow div dd {
  padding: 0;
  margin: 0;
}

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low thead tr th {
  background: var(--red12);
  color: var(--gray06);
}
.tbl_low tbody tr th {
  width: 30%;
  background: var(--red02);
  text-align: center;
  font-weight: normal;
  border: 1px solid var(--red12);
}
.tbl_low tbody tr td {
  padding: 0.8rem;
  border: 1px solid var(--red12);
}

.tbl_low_vacci {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low_vacci thead tr th {
  background: var(--red12);
  color: var(--gray06);
}
.tbl_low_vacci tbody tr th {
  padding: 0.8rem;
  background: var(--green09);
  text-align: left;
  font-weight: normal;
  border: 1px solid var(--green07);
}
.tbl_low_vacci tbody tr td {
  padding: 0.8rem;
  border: 1px solid var(--green07);
  text-align: right;
}
.tbl_low_vacci.-price thead tr th {
  border: 1px solid var(--green05);
  background: var(--green05);
}
.tbl_low_vacci.-price tbody tr th {
  padding: 0.5rem;
}
.tbl_low_vacci.-exam {
  min-width: 600px;
}
.tbl_low_vacci.-exam thead tr th {
  border: 1px solid var(--green05);
  background: var(--green05);
}
.tbl_low_vacci.-exam tbody tr th {
  padding: 0.5rem;
}
.tbl_low_vacci.-exam tbody tr td {
  text-align: center;
}
.tbl_low_vacci.-exam.-txt_r {
  min-width: 0;
}
.tbl_low_vacci.-exam.-txt_r td {
  text-align: right;
}
.tbl_low_vacci.-lifestyle {
  min-width: 1076px;
}
.tbl_low_vacci.-lifestyle thead tr th {
  border: 1px solid var(--green05);
  background: var(--green05);
}
.tbl_low_vacci.-lifestyle tbody tr th {
  padding: 0.5rem;
}
.tbl_low_vacci.-lifestyle tbody tr td {
  text-align: center;
}
.tbl_low_vacci.-lifestyle.-txt_r {
  min-width: 0;
}
.tbl_low_vacci.-lifestyle.-txt_r td {
  text-align: right;
}
.tbl_low_vacci.-lifestyle.-txt_c_l th {
  text-align: center;
}
.tbl_low_vacci.-lifestyle.-txt_c_l td {
  text-align: left;
}
.tbl_low_vacci.-txt_c_l th {
  text-align: center;
}
.tbl_low_vacci.-txt_c_l td {
  text-align: left;
}
.tbl_low_vacci .w14 {
  width: 14%;
}
.tbl_low_vacci .w40 {
  width: 40%;
}

.tbl_low_exami {
  table-layout: auto;
  border-collapse: collapse;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  .tbl_low_exami {
    table-layout: fixed;
  }
}
.tbl_low_exami thead tr th {
  display: block;
  width: 100%;
  background: var(--red12);
  color: var(--gray06);
}
@media screen and (min-width: 48em), print {
  .tbl_low_exami thead tr th {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 45%;
  }
}
.tbl_low_exami tbody tr th {
  display: block;
  width: 100%;
  padding: 45%;
  background: var(--green09);
  text-align: left;
  font-weight: normal;
  border: 1px solid var(--green07);
}
@media screen and (min-width: 48em), print {
  .tbl_low_exami tbody tr th {
    display: table-cell;
    width: 45%;
  }
}
.tbl_low_exami tbody tr td {
  display: block;
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--green07);
  text-align: right;
}
@media screen and (min-width: 48em), print {
  .tbl_low_exami tbody tr td {
    display: table-cell;
    width: auto;
  }
}
.tbl_low_exami.-price thead tr th {
  border: 1px solid var(--green05);
  background: var(--green05);
}
.tbl_low_exami.-price tbody tr th {
  padding: 0.5rem;
}
.tbl_low_exami.-exam {
  min-width: 600px;
}
.tbl_low_exami.-exam thead tr th {
  border: 1px solid var(--green05);
  background: var(--green05);
}
.tbl_low_exami.-exam tbody tr th {
  padding: 0.5rem;
}
.tbl_low_exami.-exam tbody tr td {
  text-align: center;
}
.tbl_low_exami.-exam.-txt_r {
  min-width: 0;
}
.tbl_low_exami.-exam.-txt_r td {
  text-align: right;
}
.tbl_low_exami.-exam.-txt_c_l th {
  text-align: center;
}
.tbl_low_exami.-exam.-txt_c_l td {
  text-align: left;
}
.tbl_low_exami.-lifestyle {
  min-width: 1076px;
}
.tbl_low_exami.-lifestyle thead tr th {
  border: 1px solid var(--green05);
  background: var(--green05);
}
.tbl_low_exami.-lifestyle tbody tr th {
  padding: 0.5rem;
}
.tbl_low_exami.-lifestyle tbody tr td {
  text-align: center;
}
.tbl_low_exami.-lifestyle.-txt_r {
  min-width: 0;
}
.tbl_low_exami.-lifestyle.-txt_r td {
  text-align: right;
}
.tbl_low_exami.-lifestyle.-txt_c_l th {
  text-align: center;
}
.tbl_low_exami.-lifestyle.-txt_c_l td {
  text-align: left;
}
.tbl_low_exami .w14 {
  width: 14%;
}
.tbl_low_exami .w40 {
  width: 40%;
}

.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOSで慣性スクロールを有効に */
}

.tbl_access {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.2rem;
  width: 100%;
}
.tbl_access tr th {
  width: 37%;
  background: var(--green06);
  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%;
  }
}
.youtube {
  margin-bottom: 1rem;
}
.youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

@media screen and (min-width: 48em), print {
  .youtube {
    width: 560px;
    height: 315px;
    margin: 0 auto 2rem;
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
.nolink {
  pointer-events: none !important;
  color: var(--gray07);
}

html {
  font-size: 3.125vw;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--gray06);
  color: #463d37;
}

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

.wrap {
  padding: 0 1rem 0;
}

.overflow {
  overflow-x: hidden;
  position: relative;
}

.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: 1120px;
  }
  body > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 10rem auto 0;
  }
  a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.6rem;
    padding: 0 0 0;
    width: 100%;
    position: relative;
    z-index: 2;
  }
}
/* アイコンフォント -------------------------------------- */
@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 {
  margin: 0 0 1.6rem;
}
.header .bg {
  padding: 1rem 1rem 1rem;
  margin: 0 0 1rem;
  background: var(--green07);
  position: relative;
}
.header .bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 1.8rem;
  background: url(../img/header_section01.svg) no-repeat bottom/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header .bg .wrap .logo {
  height: 5rem;
}
.header .bg .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 .bg .wrap .headR {
  display: none;
}
.header .bg .wrap .head_info {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header {
    margin: 0 0 1.6rem;
  }
  .header .bg {
    margin: 0 0 1.2rem;
    padding: 0 0 2rem;
  }
  .header .bg::before {
    background: url(../img/header_section01.svg) no-repeat bottom/cover;
    min-height: 3.1rem;
    min-width: 2000px;
    width: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .header .bg .wrap {
    position: relative;
    margin: 0 auto 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /*gap: 0 3.2rem;*/
    gap: 0 2rem;
  }
  .header .bg .wrap .logo {
    margin-top: 2.4rem;
    width: 53rem;
    height: 6.6rem;
  }
  .header .bg .wrap .headR {
    padding-top: 2.4rem;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header .bg .wrap .headR .head_line {
    position: absolute;
    top: 0;
    right: 13.6rem;
    height: 100%;
  }
  .header .bg .wrap .headR .head_line a {
    background: var(--gray06);
    height: 100%;
    width: 12.5rem;
    font-size: 2rem;
    padding: 0 1.4rem 2.6rem;
    border-radius: 0 0 10px 10px;
    -webkit-box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .header .bg .wrap .headR .head_line a:hover {
    opacity: 1;
  }
  .header .bg .wrap .headR .head_rsv {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }
  .header .bg .wrap .headR .head_rsv a {
    background: var(--gray06);
    height: 100%;
    width: 12.5rem;
    font-size: 2rem;
    color: var(--gray13);
    border-radius: 0 0 10px 10px;
    -webkit-box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .bg .wrap .headR .head_rsv a::before {
    content: "\e80c";
    font-family: "fontello";
    margin-right: 0.6rem;
    color: var(--green07);
  }
  .header .bg .wrap .headR .head_rsv a:hover {
    opacity: 1;
    color: rgba(122, 105, 88, 0.8);
  }
  .header .bg .wrap .headR ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4rem 0;
  }
  .header .bg .wrap .headR ul li {
    color: var(--gray06);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .bg .wrap .headR ul li::before {
    content: "◆";
    font-family: "fontello";
    margin-right: 0.4rem;
    color: var(--red03);
  }
  .header .bg .wrap .headR ul li.tel_item::before {
    content: "\e80a";
    font-size: 2.2rem;
  }
  .header .bg .wrap .headR ul li.tel_item .tel {
    font-size: 2.6rem;
  }
  .header .bg .wrap .headR ul li.address_item {
    font-size: 1.6rem;
  }
  .header .bg .wrap .headR ul li.address_item::before {
    content: "\e80b";
    font-size: 1.8rem;
  }
  .header .bg .wrap .head_info {
    padding-top: 2.4rem;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header .bg .wrap .head_info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /*gap: 1.4rem 0;*/
    gap: 0.5rem 0;
  }
  .header .bg .wrap .head_info ul li {
    color: var(--gray06);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .bg .wrap .head_info ul li::before {
    content: "◆";
    font-family: "fontello";
    margin-right: 0.4rem;
    color: var(--red03);
  }
  .header .bg .wrap .head_info ul li.walk_item {
    font-size: 1.4rem;
  }
  .header .bg .wrap .head_info ul li.walk_item::before {
    content: "\e819";
    font-size: 1.6rem;
  }
}
.menu.fixed .sp_menu {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  position: fixed;
  top: 0;
  left: 0;
}

.pc_menu {
  display: none;
}

.sp_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 200;
}
.sp_menu > li {
  margin: 0;
  width: 20%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sp_menu > li:not(:last-child) > a {
  position: relative;
  width: 100%;
  background: var(--blue03);
  padding: 0.6rem 0;
  font-weight: 500;
}
.sp_menu > li:not(:last-child) > a::after {
  content: "";
  height: 100%;
  width: 1px;
  background: var(--gray06);
  font-weight: normal;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 0;
}
.sp_menu > li > a {
  display: block;
  color: var(--gray06);
}
.sp_menu > li > a::before {
  content: "";
  display: block;
  font-family: "fontello";
  font-size: 1.4rem;
  color: var(--gray06);
  margin-bottom: 0.2rem;
}
.sp_menu > li.i_home a::before {
  content: "\e80d";
}
.sp_menu > li.i_tel a::before {
  content: "\e80a";
}
.sp_menu > li.i_rsv a::before {
  content: "\e80c";
}
.sp_menu > li.i_access a::before {
  content: "\e813";
}
.sp_menu > li.sp_nav {
  background: var(--blue03);
}
.sp_menu > li.sp_nav button {
  all: unset;
  width: 100%;
  height: 100%;
}
.sp_menu > li.sp_nav button::before {
  content: "\e802";
  display: block;
  color: var(--gray06);
  font-family: "fontello";
  font-size: 1.8rem;
}
.sp_menu > li.sp_nav button::after {
  content: "MENU";
  display: block;
  color: var(--gray06);
  font-weight: 500;
  text-align: center;
  position: relative;
  bottom: 0.1rem;
}
.sp_menu > li.sp_nav button.close::before {
  content: "\e806";
}
.sp_menu > li.sp_nav button.close::after {
  content: "CLOSE";
}
.sp_menu > li.sp_nav .nav {
  background: var(--gray06);
  height: 100vh;
  width: 100%;
  padding: 3rem 1.6rem 18rem 2rem;
  display: none;
  visibility: hidden;
  position: absolute;
  overflow-y: scroll;
  left: 0;
  top: 46px;
  z-index: -1;
  text-align: left;
}
.sp_menu > li.sp_nav .nav .gnav li {
  margin: 0;
  border-bottom: 2px solid var(--gray05);
}
.sp_menu > li.sp_nav .nav .gnav li.treatment {
  display: none;
}
.sp_menu > li.sp_nav .nav .gnav li a {
  display: block;
  padding: 1.2rem 0.2rem;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.sp_menu > li.sp_nav .nav .gnav li a span {
  display: none;
}
.sp_menu > li.sp_nav .nav .gnav li.nav_rsv {
  display: none;
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu {
  display: block;
  font-size: 1.4rem;
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu p {
  font-size: 1.6rem;
  margin: 3rem 0 0;
  padding: 0.6rem 1rem 0.6rem;
  background: var(--blue03);
  color: var(--gray06);
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu > ul > li {
  border-bottom: none;
  margin: 0;
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu > ul > li > a {
  display: block;
  padding: 1.2rem 0.2rem;
  font-size: 1.4rem;
  color: var(--blue03);
  font-weight: bold;
  border-bottom: 2px solid var(--blue03);
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu > ul > li > a.sub_menu::after {
  content: "\f004";
  font-family: "fontello";
  margin-left: 0.8rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: inline-block;
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu > ul > li > a.sub_menu.open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu > ul > li > a.sub_menu + ul {
  display: none;
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu > ul > li > a.sub_menu + ul li {
  margin: 0;
  border-bottom: 2px solid var(--gray05);
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu > ul > li > a.sub_menu + ul li a {
  display: block;
  padding: 1.2rem 0.2rem;
  font-size: 1.4rem;
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu .sp_line {
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sp_menu > li.sp_nav .nav .sp_treatment_menu .sp_line img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

@media screen and (min-width: 48em), print {
  .sp_menu {
    display: none;
  }
  .pc_menu {
    display: block;
  }
  .menu.fixed .pc_menu .nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    padding: 0 0 0;
    background: var(--gray06);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu.fixed .pc_menu .nav .nav_rsv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.2rem 1rem;
  }
  .menu.fixed .pc_menu .nav .nav_rsv::before {
    content: none;
  }
  .menu.fixed .pc_menu .nav .nav_rsv a {
    background: var(--green07);
    border-radius: 5px;
    width: 100%;
    color: var(--gray06);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu.fixed .pc_menu .nav .nav_rsv a::before {
    content: "\e80c";
    font-family: "fontello";
    color: var(--gray06);
    margin-right: 0.4rem;
  }
  .menu.fixed .pc_menu .nav .subnav {
    top: 3.6rem;
  }
  .nav {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 200;
  }
  .nav .gnav {
    width: 1100px;
    border-radius: 10px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav .gnav li {
    width: 16.6666666667%;
    position: relative;
  }
  .nav .gnav li::before, .nav .gnav li:first-child::after {
    content: "";
    height: 80%;
    width: 0.1rem;
    border-right: 2px dotted var(--gray11);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .nav .gnav li:first-child::after {
    right: auto;
    left: 0;
  }
  .nav .gnav li a {
    display: block;
    text-align: center;
    padding: 0.7rem 0;
    font-size: 1.6rem;
    color: var(--gray13);
  }
  .nav .gnav li a::before {
    font-family: "fontello";
    margin-right: 0.6rem;
    color: var(--green07);
  }
  .nav .gnav li a.home::before {
    content: "\e80d";
  }
  .nav .gnav li a.sub::before {
    content: "\e811";
  }
  .nav .gnav li a.sub::after {
    content: "\f004";
    font-family: "fontello";
    margin-left: 0.2rem;
  }
  .nav .gnav li a.doctor::before {
    content: "\e80e";
  }
  .nav .gnav li a.clinic::before {
    content: "\e80f";
  }
  .nav .gnav li a.first::before {
    content: "\e812";
  }
  .nav .gnav li a.access::before {
    content: "\e813";
  }
  .nav .gnav li .subnav {
    visibility: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: absolute;
    top: 4.8rem;
    z-index: -1;
  }
  .nav .gnav li .subnav ul {
    width: 100%;
  }
  .nav .gnav li .subnav ul li {
    width: 100%;
    border-bottom: 1px solid var(--gray06);
  }
  .nav .gnav li .subnav ul li::before, .nav .gnav li .subnav ul li::after {
    content: none;
  }
  .nav .gnav li .subnav ul li a {
    display: block;
    background: var(--red08);
    width: 100%;
    padding: 1.4rem 1rem 1.4rem 2.2rem;
    text-align: left;
    color: var(--gray06);
    position: relative;
  }
  .nav .gnav li .subnav ul li a::before {
    content: "\e804";
    font-family: "fontello";
    font-size: 1rem;
    color: var(--gray06);
    position: absolute;
    left: 0.4rem;
    top: 50%;
    transform: translateY(-50%) scale(0.4);
    -webkit-transform: translateY(-50%) scale(0.4);
    -ms-transform: translateY(-50%) scale(0.4);
  }
  .nav .gnav li .subnav ul li a:hover {
    background: var(--red09);
    opacity: 1;
  }
  .nav .gnav li .subnav ul li a.sub_menu::after {
    content: "\e804";
    font-size: 1rem;
    font-family: "fontello";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .nav .gnav li .subnav ul li a.sub_menu + ul {
    width: 25rem;
    height: 100%;
    display: none;
    position: absolute;
    top: 0;
    right: -25rem;
    background: var(--gray06);
  }
  .nav .gnav li .subnav ul li a.sub_menu + ul li a {
    background: var(--blue04);
  }
  .nav .gnav li .subnav ul li a.sub_menu + ul li a:hover {
    background: var(--blue01);
  }
  .nav .gnav li .subnav ul li a.sub_menu.open {
    background: var(--red09);
  }
  .nav .gnav li .subnav ul li a.sub_menu.open + ul {
    display: block;
  }
  .nav .gnav li.nav_rsv {
    display: none;
  }
  .nav .sp_treatment_menu {
    display: none !important;
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
.overview .bg {
  background: var(--green07);
  padding: 3.2rem 1rem 4rem;
  position: relative;
  z-index: 0;
}
.overview .bg::before {
  content: "";
  background: url(../img/overview_parts01.svg) no-repeat center/contain;
  position: absolute;
  z-index: 0;
  bottom: -1rem;
  left: 0;
  right: 0;
  width: 150%;
  height: 31rem;
}
.overview .bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url(../img/overview_section01.svg) no-repeat top center/100% auto;
}
.overview .bg .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .bg .clinic_name img {
  max-width: 90%;
  height: auto;
}
.overview .bg > .wrap {
  padding: 1.6rem 1rem 1rem;
  border-radius: 10px;
  background: var(--gray06);
  position: relative;
  z-index: 1;
}
.overview .bg > .wrap .flex .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
}
.overview .bg > .wrap .flex .overviewL .tbl_gaiyo th {
  display: block;
  width: 100%;
  text-align: center;
}
.overview .bg > .wrap .flex .overviewL .tbl_gaiyo th span {
  display: block;
  padding: 0.2rem 0;
  border-radius: 20px;
  background: var(--green07);
  color: var(--gray06);
}
.overview .bg > .wrap .flex .overviewL .tbl_gaiyo td {
  display: block;
  padding: 0.8rem 0.8rem 1.2rem;
}
.overview .bg > .wrap .flex .overviewL .tbl_gaiyo td ul li {
  position: relative;
  padding-left: 1.8rem;
  margin: 0 0 1.2rem;
}
.overview .bg > .wrap .flex .overviewL .tbl_gaiyo td ul li:last-child {
  margin: 0;
}
.overview .bg > .wrap .flex .overviewL .tbl_gaiyo td ul li::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.4rem;
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.overview .bg > .wrap .flex .overviewL .tbl_gaiyo td ul li.item_train::before {
  background-image: url(../img/i_train.svg);
}
.overview .bg > .wrap .flex .overviewL .tbl_gaiyo td ul li.item_bus::before {
  background-image: url(../img/i_bus.svg);
}
.overview .bg > .wrap .flex .overviewL .tbl_gaiyo td ul li.item_walk::before {
  background-image: url(../img/i_walk.svg);
}
.overview .bg > .wrap .flex .overviewR {
  margin: 2rem 0 0;
}
.overview .bg > .wrap .map {
  margin: 4rem 0 0;
}
.overview .bg > .wrap .map .gmap iframe {
  height: 30rem;
}
.overview .bg > .wrap .map .btn_map {
  text-align: center;
}
.overview .bg > .wrap .map .btn_map a {
  background: var(--blue03);
}
.overview .bg > .wrap .map .btn_map a::before {
  font-family: "fontello";
  margin-right: 0.4rem;
  content: "\e813";
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 0;
    font-size: 1.6rem;
  }
  .overview .bg {
    padding: 4rem 0;
  }
  .overview .bg::before {
    background: url(../img/overview_parts01.svg) no-repeat center/auto auto;
    bottom: -13rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
    width: 225rem;
    height: 158rem;
  }
  .overview .bg::after {
    min-width: 2000px;
    background: url(../img/overview_section01.svg) no-repeat top center/auto auto;
    top: -5px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -2;
  }
  .overview .bg .clinic_name {
    margin: 0 0 3.7rem;
  }
  .overview .bg .clinic_name img {
    width: 64rem;
    height: auto;
  }
  .overview .bg > .wrap {
    padding: 4rem;
  }
  .overview .bg > .wrap .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .overview .bg > .wrap .flex .overviewL {
    width: 51rem;
  }
  .overview .bg > .wrap .flex .overviewL .tbl_gaiyo th {
    display: table-cell;
    vertical-align: top;
    width: 11.1rem;
    padding: 0 0 2.3rem;
  }
  .overview .bg > .wrap .flex .overviewL .tbl_gaiyo td {
    display: table-cell;
    padding: 0 0 2.3rem 1.86rem;
  }
  .overview .bg > .wrap .flex .overviewL .tbl_gaiyo td ul {
    padding: 0.5rem 0 0;
  }
  .overview .bg > .wrap .flex .overviewL .tbl_gaiyo td ul li {
    position: relative;
    padding-left: 2.6rem;
  }
  .overview .bg > .wrap .flex .overviewL .tbl_gaiyo td ul li:last-child {
    margin: 0;
  }
  .overview .bg > .wrap .flex .overviewL .tbl_gaiyo td ul li::before {
    content: "";
    width: 2rem;
    height: 2rem;
    top: 0.2rem;
  }
  .overview .bg > .wrap .flex .overviewL .tbl_time {
    margin: 1.6rem 0;
  }
  .overview .bg > .wrap .flex .overviewR {
    width: 48.1rem;
    margin: 0;
  }
  .overview .bg > .wrap .map {
    margin: 2.64rem 0 0;
  }
  .overview .bg > .wrap .map .gmap iframe {
    height: 54.2rem;
  }
  .overview .bg > .wrap .map .btn_map {
    margin: 2.75rem auto 0;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
  cursor: pointer;
}
#pageup a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 5rem;
  height: 5rem;
  color: var(--gray06);
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  overflow: hidden;
  padding: 0.4rem;
  background-color: var(--red12);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/i_pagetop.svg);
  border-radius: 50%;
  -webkit-box-shadow: 4px 4px 2px 0 var(--gray06);
          box-shadow: 4px 4px 2px 0 var(--gray06);
}
#pageup a::before {
  text-align: center;
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
  font-family: "fontello";
  content: "\e817";
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    bottom: 10rem;
    right: 10rem;
  }
  #pageup a {
    width: 10rem;
    height: 10rem;
    font-size: 2.4rem;
    background-size: 130% auto;
  }
  #pageup a::before {
    font-size: 2.6rem;
  }
}
.footer {
  text-align: center;
  padding: 0;
}
.footer ul {
  display: none;
}
.footer .copy {
  display: block;
  background: var(--green07);
  color: var(--gray06);
  padding: 1.2rem 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 2.5rem 0 0;
    position: relative;
    z-index: 2;
  }
  .footer ul {
    display: block;
    text-align: center;
    margin: 0 auto 0;
  }
  .footer ul ~ ul {
    margin: 1.2rem auto 0;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 2.2rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li a.sub_menu + ul {
    display: none;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer .copy {
    font-size: 1.4rem;
    margin: 3rem 0 0;
    padding: 1.6rem 0;
  }
}
.side_info {
  display: none;
}

@media screen and (min-width: 48em), print {
  .side_info {
    display: block;
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 100;
  }
  .side_info div {
    margin: 0 0 1rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    width: 100%;
  }
  .side_info div a {
    font-size: 2rem;
    border-radius: 10px 0 0 10px;
  }
  .side_info div a.line {
    color: #00B900;
    display: block;
    background-color: #FFF;
    text-align: center;
    padding: 30px 13px;
    font-weight: bold;
    -webkit-box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.16);
  }
  .side_info div a.rsv {
    color: #4d4134;
    display: block;
    background-color: #FFF;
    text-align: center;
    padding: 30px 10px;
    font-weight: bold;
    -webkit-box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.16);
  }
  .side_info div a.rsv::before {
    content: "\e80c";
    font-family: "fontello";
    margin-bottom: 0.6rem;
    color: var(--green07);
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/* アニメーション設定 -------------------------------------- */
.fade {
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
}
.fade.animation {
  -webkit-animation: fade_anime 0.8s linear forwards 1;
          animation: fade_anime 0.8s linear forwards 1;
}

@-webkit-keyframes fade_anime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade_anime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* キービジュアル -------------------------------------- */
.kv_item {
  position: relative;
  background: var(--green02);
  padding: 0 0 19rem;
  z-index: 1;
}
.kv_item::before {
  content: "";
  display: block;
  width: 100%;
  height: 1.4rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url(../img/index_kv_item_parts01.svg) no-repeat top/100% auto;
}
.kv_item #keyvsl {
  margin: 0;
  max-width: 100%;
  height: 20rem;
  background: url(../img/index_keyvsl01.jpg) no-repeat center center/cover;
}
.kv_item #keyvsl .wrap {
  position: relative;
  height: 100%;
}
.kv_item #keyvsl .wrap .copy_txt {
  width: 90%;
  position: absolute;
  bottom: -17rem;
  left: 0;
  right: 0;
  margin: auto;
}
.kv_item #keyvsl .wrap .copy_txt .bg {
  font-size: 1.2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.83);
  border-radius: 10px;
  position: relative;
}
.kv_item #keyvsl .wrap .copy_txt .bg::before, .kv_item #keyvsl .wrap .copy_txt .bg::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.kv_item #keyvsl .wrap .copy_txt .bg::before {
  background-image: url(../img/index_kv_item_parts02.svg);
  left: -0.4rem;
  top: -1rem;
}
.kv_item #keyvsl .wrap .copy_txt .bg::after {
  background-image: url(../img/index_kv_item_parts03.svg);
  right: -0.4rem;
  bottom: -1rem;
}
.kv_item #keyvsl .wrap .copy_txt .bg p {
  font-size: 110%;
  text-align: center;
  color: var(--green05);
}
.kv_item #keyvsl .wrap .copy_txt .bg li {
  margin: 0 0 1rem;
  position: relative;
  padding-left: 1.4rem;
}
.kv_item #keyvsl .wrap .copy_txt .bg li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--gray12);
}
.kv_item #keyvsl .wrap .copy_txt .bg li:last-child {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .kv_item {
    padding: 0;
  }
  .kv_item::before {
    min-width: 2000px;
    height: 10.3rem;
    background: url(../img/index_kv_item_parts01.svg) no-repeat top/auto auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .kv_item #keyvsl {
    height: 61.7rem;
    background: url(../img/index_keyvsl01.jpg) no-repeat center center/auto auto;
  }
  .kv_item #keyvsl .wrap .copy_txt {
    width: 68rem;
    bottom: 4.5rem;
    left: auto;
  }
  .kv_item #keyvsl .wrap .copy_txt .bg {
    font-size: 2.2rem;
    padding: 2.6rem 2.2rem 2.9rem 3.3rem;
  }
  .kv_item #keyvsl .wrap .copy_txt .bg::before {
    left: 0;
    top: -2rem;
    width: 5rem;
    height: 5.4rem;
  }
  .kv_item #keyvsl .wrap .copy_txt .bg::after {
    right: 0;
    bottom: -3rem;
    width: 8rem;
    height: 7.2rem;
  }
  .kv_item #keyvsl .wrap .copy_txt .bg p {
    margin: 0 0 2rem;
    font-size: 2.4rem;
  }
  .kv_item #keyvsl .wrap .copy_txt .bg li {
    margin: 0 0 0.8rem;
    padding-left: 1.4rem;
  }
  .kv_item #keyvsl .wrap .copy_txt .bg li::before {
    font-size: 3rem;
    left: -12px;
    top: -6px;
  }
}
/* 開院テキスト -------------------------------------- */
.info_txt {
  padding: 2rem 0 1rem;
  background: var(--green06);
  text-align: center;
}
.info_txt .txt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
}
.info_txt .txt::before {
  content: "";
  display: block;
  width: 120%;
  height: 2.6rem;
  background: var(--gray06);
  border-radius: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.info_txt .txt .kaiin {
  margin: 0;
  color: var(--red06);
  font-size: 1.6rem;
}
.info_txt .txt .nairan {
  margin: 0;
  color: var(--green01);
  font-size: 1.4rem;
}
.info_txt .btn_link {
  margin: 2rem auto 0;
  width: 90%;
}
.info_txt .btn_link li {
  margin: 0 0 1rem;
}
.info_txt .btn_link li a {
  border-radius: 40px;
  background: var(--red11);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 0.8rem 1rem;
  position: relative;
}
.info_txt .btn_link li a::after {
  content: "\f006";
  font-family: "fontello";
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.info_txt .btn_link.btn_link--clr02 li a {
  background: var(--green07);
}

@media screen and (min-width: 48em), print {
  .info_txt {
    padding: 2.2rem 0 4.8rem;
  }
  .info_txt .txt {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .info_txt .txt::before {
    width: calc(100% + 6rem);
    height: 3rem;
    bottom: -9px;
  }
  .info_txt .txt .kaiin {
    font-size: 2.6rem;
  }
  .info_txt .txt .nairan {
    font-size: 2.2rem;
  }
  .info_txt .btn_link {
    margin: 6rem auto 0;
    width: 800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .info_txt .btn_link li {
    margin: 0;
    width: 60%;
  }
  .info_txt .btn_link li ~ li {
    width: 38%;
  }
  .info_txt .btn_link li a {
    height: 100%;
    font-size: 2.2rem;
    padding: 0.5rem 1rem;
  }
  .info_txt .btn_link li a::after {
    right: 2rem;
  }
  .info_txt .btn_link li a span {
    font-size: 80%;
  }
  .info_txt .btn_link.btn_link--clr02 {
    margin: 4rem auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .info_txt .btn_link.btn_link--clr02 li a {
    padding: 2rem 1rem;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 2rem 0 4rem;
  background: var(--green06);
  position: relative;
  overflow: hidden;
}
.info::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/index_info_bg01.svg) no-repeat top 4rem center/200% auto;
  position: absolute;
  top: -6rem;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
}
.info .tit_info {
  padding: 0.4rem 1.2rem;
  background-color: var(--green07);
  overflow: hidden;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 28% auto;
  background-image: url(../img/index_info_tit.svg);
  color: var(--gray06);
  font-size: 1.6rem;
  margin: 0 0 2rem;
  position: relative;
  z-index: 1;
}
.info dl {
  margin: 0;
  line-height: 1.4;
  padding: 0 0.6rem;
  overflow-y: scroll;
  max-height: 20rem;
  position: relative;
  z-index: 1;
}
.info dl .line {
  padding: 0.4rem 0 0.2rem;
}
.info dl .line:first-child::before, .info dl .line::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px; /* 点線の高さ */
  background-image: repeating-linear-gradient(to right, #8b847f 0%, #8b847f 2px, transparent 2px, transparent 8px);
  background-size: 8px 2px;
}
.info dl .line:first-child::before {
  margin-bottom: 0.8rem;
}
.info dl .line dt {
  margin-bottom: 0.4rem;
  padding-left: 2rem;
  color: var(--green07);
  font-size: 110%;
  cursor: pointer;
  display: table;
  position: relative;
}
.info dl .line dt::before {
  content: "\f005";
  font-family: "fontello";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gray06);
  font-size: 1rem;
  background: var(--green07);
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.info dl .line dt.close::before {
  content: "\f004";
}
.info dl .line dt span {
  font-size: 1.2rem;
  color: var(--gray11);
  display: inline-block;
  margin-left: 0.4rem;
}
.info dl .line dt:hover {
  opacity: 0.8;
}
.info dl .line dd {
  padding: 0;
  margin: 0 0 1rem;
  display: none;
}
.info dl .line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 2.5rem 0 9.2rem;
  }
  .info::before {
    content: "";
    background: url(../img/index_info_bg01.svg) no-repeat bottom center/auto auto;
    top: auto;
    bottom: -7.3rem;
  }
  .info .tit_info {
    width: 23rem;
    height: 22.8rem;
    text-align: center;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-position: center;
    background-size: auto auto;
    font-size: 2.4rem;
    margin: 0 2.5rem 0 0;
  }
  .info .wrap {
    padding: 2.5rem 2rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .info .wrap dl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
    max-height: 23rem;
    height: 23rem;
  }
  .info .wrap dl .line {
    padding: 0;
    margin: 0;
  }
  .info .wrap dl .line:first-child::before, .info .wrap dl .line::after {
    margin: 1.7rem 0;
  }
  .info .wrap dl .line:first-child::before {
    margin-bottom: 1.7rem;
  }
  .info .wrap dl .line dt {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
    padding-left: 3.4rem;
  }
  .info .wrap dl .line dt::before {
    width: 2.3rem;
    height: 2.3rem;
    top: 0.4rem;
  }
  .info .wrap dl .line dt span {
    font-size: 1.4rem;
    margin-left: 1.2rem;
  }
  .info .wrap dl .line dd {
    padding: 0 2rem 0 3.4rem;
    margin: 1rem 0 0;
    display: none;
  }
  .info .wrap dl .line dd p {
    margin: 0;
  }
}
/* クリニックの特徴 -------------------------------------- */
.feature {
  padding: 2rem 0 2rem;
  position: relative;
}
.feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 2rem;
  background: url(../img/index_feature_section01.svg) no-repeat top center/100% auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.feature .wrap {
  position: relative;
}
.feature .wrap::before, .feature .wrap::after {
  content: "";
  display: block;
  width: 6rem;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: -2rem;
  background-position: center center;
  background-repeat: repeat-y;
  background-size: contain;
}
.feature .wrap::before {
  background-image: url(../img/index_feature_bg01.svg);
  left: 0;
}
.feature .wrap::after {
  background-image: url(../img/index_feature_bg02.svg);
  right: 0;
}
.feature .wrap section {
  margin: 0 0 4rem;
}
.feature .wrap section .tit_feature {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--red07);
  font-size: 1.6rem;
}
.feature .wrap section .tit_feature::before, .feature .wrap section .tit_feature::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.feature .wrap section .tit_feature::before {
  background-image: url(../img/index_feature_tit_parts01.svg);
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
.feature .wrap section .tit_feature::after {
  background-image: url(../img/index_feature_tit_parts02.svg);
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 1rem;
}
.feature .wrap section figure figcaption {
  margin: 1.2rem auto 2.2rem;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 6.6rem 0 0;
  }
  .feature::before {
    min-width: 2000px;
    height: 12.6rem;
    background: url(../img/index_feature_section01.svg) no-repeat top center/auto auto;
    top: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .feature .wrap::before, .feature .wrap::after {
    width: 20rem;
    top: 0;
    background-repeat: no-repeat;
  }
  .feature .wrap::before {
    left: -28.75rem;
  }
  .feature .wrap::after {
    right: -27.9rem;
  }
  .feature .wrap .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .feature .wrap .flex section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 49rem;
    margin: 0 0 4rem;
  }
  .feature .wrap .flex section .tit_feature {
    width: 100%;
    font-size: 2.8rem;
    min-height: 9rem;
    margin: 0 0 3rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .feature .wrap .flex section .tit_feature::before {
    width: 6.5rem;
    height: 6.5rem;
    margin-right: 0;
  }
  .feature .wrap .flex section .tit_feature::after {
    width: 5.3rem;
    height: 4.1rem;
    margin-left: 0;
  }
  .feature .wrap .flex section figure {
    margin: 0;
  }
  .feature .wrap .flex section figure figcaption {
    margin: 0;
  }
  .feature .wrap .flex section figure img {
    display: block;
    margin: 4rem auto 0;
  }
}
/* ご挨拶 -------------------------------------- */
.topGreeting {
  padding: 2rem 0 2rem;
}
.topGreeting .flex {
  padding: 0 1.2rem;
}
.topGreeting .flex img {
  display: block;
  max-width: 72%;
  margin: 0 auto 1.4rem;
  border-radius: 10px;
}
.topGreeting .flex .tit_topGreeting {
  color: var(--red07);
  font-size: 1.8rem;
}
.topGreeting .flex .dr_name {
  text-align: right;
}
.topGreeting .flex .dr_name span {
  font-size: 1.8rem;
}
.topGreeting .flex .btn_more a {
  background: var(--green07);
  -webkit-box-shadow: 3px 3px 0 var(--gray04);
          box-shadow: 3px 3px 0 var(--gray04);
}
.topGreeting .flex .btn_more a span::after {
  content: "\e814";
  font-family: "fontello";
  margin-left: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .topGreeting {
    padding: 9.2rem 0 0;
  }
  .topGreeting .flex {
    position: relative;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0 5rem;
  }
  .topGreeting .flex img {
    max-width: 31.1rem;
    margin: -4.4rem 0 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .topGreeting .flex section {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .topGreeting .flex section .tit_topGreeting {
    font-size: 2.6rem;
    margin: 0 0 2.6rem;
  }
  .topGreeting .flex section .txt {
    font-size: 1.6rem;
    line-height: 2;
  }
  .topGreeting .flex section .dr_name span {
    font-size: 2rem;
  }
  .topGreeting .flex section .btn_more {
    position: absolute;
    right: 1rem;
    bottom: -2.3rem;
    z-index: 2;
  }
  .topGreeting .flex section .btn_more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    width: 9.6rem;
    height: 9.6rem;
    border-radius: 50%;
    -webkit-box-shadow: 4px 4px 0 var(--gray04);
            box-shadow: 4px 4px 0 var(--gray04);
  }
  .topGreeting .flex section .btn_more a span::after {
    font-size: 1.2rem;
  }
  .topGreeting .flex section .btn_more a:hover {
    cursor: pointer;
    opacity: 1 !important;
    -webkit-filter: contrast(1.4);
            filter: contrast(1.4);
  }
}
/* 診療案内 -------------------------------------- */
.clinicMenu {
  padding: 2rem 0 2rem;
  position: relative;
}
.clinicMenu::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--green06); /* 背景色を設定 */
  position: absolute;
  left: 0;
  right: 0;
  top: -20rem;
  z-index: -2;
}
.clinicMenu .bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 1.4rem;
  background-image: url(../img/index_clinicMenu_section01.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -20rem;
  z-index: -1;
}
.clinicMenu .bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.4rem;
  background-image: url(../img/index_clinicMenu_section02.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19.4rem;
  z-index: -1;
}
.clinicMenu .bg .wrap > ul > li:not(.column),
.clinicMenu .bg .wrap > ul .column div {
  padding: 1rem 2rem 1.4rem;
  margin: 0 0 2.2rem;
  background: linear-gradient(135deg, #b5e1f6 2.6rem, #ffffff 2.6rem);
  border-radius: 0 10px 10px 10px;
  -webkit-box-shadow: 7px 7px 0 rgba(173, 204, 192, 0.5);
          box-shadow: 7px 7px 0 rgba(173, 204, 192, 0.5);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu::before {
  content: "";
  display: block;
  margin: 0 auto 1rem;
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.lifestyle_disease::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.lifestyle_disease::before {
  background-image: url(../img/index_clinicMenu_lifestyle_disease.svg);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.internal::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.internal::before {
  background-image: url(../img/index_clinicMenu_internal.svg);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.cardiology::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.cardiology::before {
  background-image: url(../img/index_clinicMenu_cardiology.svg);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.visittingcare::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.visittingcare::before {
  background-image: url(../img/index_clinicMenu_visittingcare.svg);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.fever::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.fever::before {
  background-image: url(../img/index_clinicMenu_fever.svg);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.obesity::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.obesity::before {
  background-image: url(../img/index_clinicMenu_obesity.svg);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.selfpay::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.selfpay::before {
  background-image: url(../img/index_clinicMenu_selfpay.svg);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.pediatrics::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.pediatrics::before {
  background-image: url(../img/index_clinicMenu_pediatrics.svg);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.vaccination::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.vaccination::before {
  background-image: url(../img/index_clinicMenu_vaccination.svg);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.travel_vaccination::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.travel_vaccination::before {
  display: none;
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.examination::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.examination::before {
  background-image: url(../img/index_clinicMenu_examination.svg);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.way::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.way::before {
  /*background-image: url(../img/index_clinicMenu_way.svg);*/
  display: none;
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.symptom,
.clinicMenu .bg .wrap > ul .column div .btn_menu.symptom {
  margin: 0 auto 1.6rem;
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.symptom::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu.symptom::before {
  content: none;
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.symptom a,
.clinicMenu .bg .wrap > ul .column div .btn_menu.symptom a {
  min-width: 40%;
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu a,
.clinicMenu .bg .wrap > ul .column div .btn_menu a {
  background: var(--green07);
  text-decoration: none !important;
  min-width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 3px 3px 0 var(--green08);
          box-shadow: 3px 3px 0 var(--green08);
}
.clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu a::before,
.clinicMenu .bg .wrap > ul .column div .btn_menu a::before {
  content: "\e804";
  font-family: "fontello";
  margin-right: 0.6rem;
  font-size: 1rem;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}
.clinicMenu .bg .wrap > ul > li:not(.column) > ul li a,
.clinicMenu .bg .wrap > ul .column div > ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  color: var(--gray09);
}
.clinicMenu .bg .wrap > ul > li:not(.column) > ul li a::before,
.clinicMenu .bg .wrap > ul .column div > ul li a::before {
  content: "\e804";
  font-family: "fontello";
  margin-right: 0.6rem;
  font-size: 1rem;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  color: var(--red07);
}

@media screen and (min-width: 48em), print {
  .clinicMenu {
    padding: 6.2rem 0 15rem;
  }
  .clinicMenu::before {
    top: -20rem;
  }
  .clinicMenu .bg::before {
    min-width: 2000px;
    height: 10.3rem;
    background-size: auto auto;
    top: -20rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .clinicMenu .bg::after {
    min-width: 2000px;
    height: 10.3rem;
    background-size: auto auto;
    bottom: 9.9rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .clinicMenu .bg .wrap > ul > li:not(.column),
  .clinicMenu .bg .wrap > ul .column div {
    padding: 1rem 2rem 1.4rem;
    margin: 0 0 2.2rem;
    background: linear-gradient(135deg, #b5e1f6 3rem, #ffffff 3rem);
  }
  .clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu::before,
  .clinicMenu .bg .wrap > ul .column div .btn_menu::before {
    content: "";
    display: block;
    margin: 0 auto 1rem;
    width: 5rem;
    height: 5rem;
  }
  .clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.cardiology,
  .clinicMenu .bg .wrap > ul .column div .btn_menu.cardiology {
    margin: 0 0 1.2rem !important;
  }
  .clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.way::before,
  .clinicMenu .bg .wrap > ul .column div .btn_menu.way::before {
    display: none;
  }
  .clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.travel_vaccination::before,
  .clinicMenu .bg .wrap > ul .column div .btn_menu.travel_vaccination::before {
    display: none;
  }
  .clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.symptom,
  .clinicMenu .bg .wrap > ul .column div .btn_menu.symptom {
    margin: 0 auto 1.2rem !important;
  }
  .clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu.symptom a,
  .clinicMenu .bg .wrap > ul .column div .btn_menu.symptom a {
    padding: 0.2rem 1rem;
    min-width: 10rem;
    font-size: 1.8rem;
  }
  .clinicMenu .bg .wrap > ul > li:not(.column) .btn_menu a,
  .clinicMenu .bg .wrap > ul .column div .btn_menu a {
    min-width: auto;
    border-radius: 40px;
    display: block;
    font-size: 2rem;
    padding: 0.6rem 1.6rem;
  }
  .clinicMenu .bg .wrap > ul > li:not(.column) > ul li,
  .clinicMenu .bg .wrap > ul .column div > ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 0.4rem;
  }
  .clinicMenu .bg .wrap > ul.card {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, 25.2rem);
    padding: 0;
    gap: 0 2rem;
  }
  .clinicMenu .bg .wrap > ul.card > li {
    margin: 0 0 3.2rem;
    padding: 4.5rem 2rem 3.6rem 2rem;
    min-height: 16rem;
    /*min-height: 34.3rem;*/
  }
  .clinicMenu .bg .wrap > ul.card > li.short {
    min-height: auto;
  }
  .clinicMenu .bg .wrap > ul.card > li .btn_menu {
    margin: 0 0 1rem;
  }
  .clinicMenu .bg .wrap > ul.card > li .btn_menu.line2a {
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  .clinicMenu .bg .wrap > ul.card > li .btn_menu.line2b {
    margin-bottom: 1rem;
    padding-top: 0;
  }
  .clinicMenu .bg .wrap > ul.card > li .btn_menu.line2c {
    padding-top: 1rem;
    line-height: 1.4;
  }
  .clinicMenu .bg .wrap > ul.card > li.column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    gap: 2rem 0;
  }
  .clinicMenu .bg .wrap > ul.card > li.column div {
    padding: 4.5rem 0.4rem 2.6rem 2rem;
    margin: 0;
    width: 100%;
  }
  .clinicMenu .bg .wrap > ul.card > li.column div .btn_menu {
    margin: 0 0 1rem;
  }
  .clinicMenu .bg .wrap > ul.card > li.second {
    min-height: 16.6rem;
    padding: 4.5rem 2rem 3.6rem 2rem;
  }
  .clinicMenu .bg .wrap > ul.card > li.second .btn_menu {
    margin: 0;
  }
  .clinicMenu .bg .wrap > ul.card.col5 {
    grid-template-columns: repeat(auto-fill, 19.8rem);
  }
  .clinicMenu .bg .wrap > ul.card.col5 .btn_menu {
    display: block;
    padding-top: 6rem;
    text-align: center;
    position: relative;
  }
  .clinicMenu .bg .wrap > ul.card.col5 .btn_menu::before {
    content: "";
    display: block;
    margin-right: 0.8rem;
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: 0;
    left: 40%;
  }
  .clinicMenu .bg .wrap > ul.card.col5 .btn_menu a {
    width: 100%;
    display: block;
    line-height: 1.4;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    width: 1100px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body:not(.index) .breadcrumb_list li {
    display: inline-block;
    font-size: 1.6rem;
  }
  body:not(.index) .breadcrumb_list li:not(:last-child)::after {
    content: "＞";
    display: inline-block;
    margin: 0 1rem;
    color: var(--red07);
  }
  body:not(.index) .breadcrumb_list li a {
    color: var(--red07);
  }
  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: 0 0 10rem;
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    line-height: 2;
  }
}

@media screen and (min-width: 48em), print {
  body:not(.index) .header {
    margin: 0 0 6rem;
  }
  body:not(.index) .header .low_kv {
    padding: 1.6rem 0 0;
  }
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
/* ドクター紹介 */
.doctor .dr_name {
  text-align: right;
}
.doctor .dr_name span {
  margin-left: 0.8rem;
  font-size: 120%;
}

/* クリニック紹介 */
*[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(--gray03);
  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: -webkit-grab;
  cursor: grab;
}
*[id*=thumbnail_slider] .slick-list .thumbnail-item img:active {
  cursor: -webkit-grabbing;
  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(--gray02);
}
*[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(--gray02);
}

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

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

.device li {
  margin: 0 0 2rem;
  text-align: center;
}
.device li img {
  display: block;
  margin: 0 auto 0.6rem;
  max-width: 80%;
  height: auto;
}

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

@media screen and (min-width: 48em), print {
  .access .gmap {
    height: 50rem;
  }
}
.selfpay dl.qa dt {
  color: #638F7D;
  font-size: 100%;
}
.selfpay dl.qa dd {
  margin-left: 0 !important;
  margin-bottom: 1.5rem;
}
.selfpay dl.qa dd span {
  color: #D4645A;
  font-size: 100%;
}

@media screen and (min-width: 48em), print {
  .selfpay dl.qa dt {
    font-size: 120%;
  }
  .selfpay dl.qa dd span {
    font-size: 120%;
  }
}