@charset "UTF-8";
:root {
  --main-bg-color: brown;
  --blue: #1D50A2;
  --blue02: #002B60;
  --blue03: #21ABE3;
  --blue04: #1C50A1;
  --blue05: #d3e9f6;
  --gray: #DDDDDD;
  --gray02: #F8F5F1;
  --gray03: #F5F5F5;
  --gray04: #F8F5F1;
  --brown: #A39783;
}

/* ----------------------------------------------------------------------------------
リセット　_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;
}

.clr_blue {
  color: var(--blue);
}

.clr_white {
  color: #fff;
}

.red {
  color: #ff0000;
}

/* 汎用性ボタン -------------------------------------- */
.btn_detail {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.4rem 2rem;
  background: var(--blue02);
  color: #fff;
  text-decoration: none !important;
  border-radius: 1rem;
}

@media screen and (min-width: 48em), print {
  .btn_detail:is(:hover, :focus-visible) {
    background: var(--blue);
    color: #fff;
    opacity: 1;
  }
}
/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 4rem 6rem 4rem;
    margin-bottom: 3rem;
  }
}
*[class*=frame_].frame_01 {
  background: var(--gray02);
}
*[class*=frame_].frame_02 {
  background: var(--gray03);
}
*[class*=frame_].frame_03 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(28, 80, 161, 0.9)), to(rgba(33, 171, 227, 0.9)));
  background: linear-gradient(to right, rgba(28, 80, 161, 0.9), rgba(33, 171, 227, 0.9));
}

/* 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;
  }
}
.img_icon {
  width: 100%;
  max-width: 32px;
  margin: 0 auto;
}

@media screen and (min-width: 48em), print {
  .img_icon {
    max-width: 38px;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

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

.mt30 {
  margin-top: 3rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.mb40 {
  margin-bottom: 4rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.mb10 {
  margin-bottom: 1rem !important;
}

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 !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .mb40 {
    margin-bottom: 8rem !important;
  }
  .mb30 {
    margin-bottom: 6rem !important;
  }
  .mb20 {
    margin-bottom: 4rem !important;
  }
  .mb10 {
    margin-bottom: 2rem !important;
  }
  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: fixed;
  background: -webkit-gradient(linear, left top, right top, from(#1c50a1), to(#21abe3));
  background: linear-gradient(to right, #1c50a1, #21abe3);
}
.tbl_time caption {
  font-family: 500;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.6rem;
}
.tbl_time caption .box {
  padding: 0.2rem 0.4rem;
  margin: 1.2rem 1rem 0 0;
  font-weight: bold;
  display: inline-block;
  border: 1px solid var(--blue);
  color: var(--blue);
  text-align: center;
}
.tbl_time tr th {
  font-weight: bold;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  color: #fff;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  line-height: 1.2;
  padding: 1.2rem 0;
  background: #fff;
  border-bottom: 1px solid var(--gray);
}
.tbl_time tr th.time span {
  text-align: center;
  display: block;
  font-size: 80%;
}
.tbl_time tr td {
  text-align: center;
  color: var(--blue);
  padding: 1.2rem 0.4rem;
  background: #fff;
  border-bottom: 1px solid var(--gray);
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.8rem;
  }
  .tbl_time caption {
    margin-top: 1.5rem;
  }
  .tbl_time caption .box {
    margin-right: 1rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.1rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr th.time {
    padding: 1.8rem 0;
  }
  .tbl_time tr td {
    padding: 1.8rem 0;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center/cover;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 3rem;
  padding: 1rem 0.4rem;
  min-height: 10rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.tit_02 {
  color: #111111;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 2.4rem;
  padding: 0;
  line-height: 1.2;
}

body.index .tit_02 .eng_txt {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-center;
  justify-content: space-center;
  font-size: 1.2rem;
  display: block;
  color: var(--blue02);
  font-family: "EB Garamond", serif;
  font-weight: 500;
}
body.index .tit_02 .eng_txt::before, body.index .tit_02 .eng_txt::after {
  content: "";
  width: 1.6rem;
  height: 0.2rem;
  margin: 0 0.2rem;
  position: relative;
  bottom: 0.2rem;
  display: inline-block;
  vertical-align: middle;
  background: -webkit-gradient(linear, left top, right top, from(var(--blue04)), to(var(--blue03)));
  background: linear-gradient(to right, var(--blue04), var(--blue03));
}

body:not(.index) .tit_02::after {
  content: "";
  width: 3.2rem;
  height: 0.2rem;
  margin: 1.2rem auto 0;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(var(--blue04)), to(var(--blue03)));
  background: linear-gradient(to right, var(--blue04), var(--blue03));
}

.tit_03 {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(var(--blue04)), to(var(--blue03)));
  background: linear-gradient(to right, var(--blue04), var(--blue03));
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.4rem 0.8rem;
  margin: 0 0 1rem;
}
.tit_03__bold {
  color: initial;
  background: initial;
  font-size: initial;
  font-weight: bold;
  line-height: initial;
  padding: initial;
  margin: 0 0 1rem;
}

.tit_04 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--blue02);
  margin: 0 0 1rem;
  padding: 0 0 0 2rem;
  line-height: 1.2;
  position: relative;
}
.tit_04::before {
  content: "";
  height: 0.1rem;
  width: 1.4rem;
  font-weight: normal;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(var(--blue04)), to(var(--blue03)));
  background: linear-gradient(to right, var(--blue04), var(--blue03));
  position: absolute;
  top: 1.1rem;
  left: 0;
}

.tit_05 {
  color: #fff;
  background: var(--blue02);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.2rem 0.6rem 0.3rem;
  margin: 0 0 1rem;
}

.tit_06 {
  color: var(--blue02);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0;
  margin: 0 0 1rem;
}
.tit_06::before, .tit_06::after {
  content: "";
  width: 100%;
  height: 1px;
  margin: 0.2rem 0 0.2rem;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(var(--blue04)), to(var(--blue03)));
  background: linear-gradient(to right, var(--blue04), var(--blue03));
}

.tit_07 {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--blue02);
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center/cover;
    min-height: 30rem;
    font-size: 4.8rem;
    padding: 2rem;
    margin: 0 0 1rem;
  }
  .tit_02 {
    font-size: 4rem;
    letter-spacing: 0.1rem;
    margin: 0 0 6rem;
  }
  body.index .tit_02 .eng_txt {
    margin: 1.2rem 0 0;
    font-size: 1.8rem;
  }
  body.index .tit_02 .eng_txt::before, body.index .tit_02 .eng_txt::after {
    width: 3rem;
    margin: 0 1rem;
  }
  body:not(.index) .tit_02 {
    line-height: 1.2;
  }
  body:not(.index) .tit_02::after {
    height: 1px;
    width: 6rem;
    margin: 2.2rem auto 0;
  }
  .tit_03 {
    font-size: 3.2rem;
    margin: 0 0 3rem;
    padding: 2rem 1.5rem;
  }
  .tit_03__bold {
    font-size: 1.8rem;
    line-height: 1.7;
    padding: initial;
    margin: 0 0 1rem;
  }
  .tit_04 {
    font-size: 2.6rem;
    margin: 0 0 3rem;
    padding: 0 0 0 3rem;
  }
  .tit_04::before {
    width: 2rem;
    top: 1.8rem;
  }
  .tit_05 {
    font-size: 2.2rem;
    margin: 0 0 2rem;
    padding: 1.3rem 1rem;
  }
  .tit_06 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
  .tit_06::before, .tit_06::after {
    margin: 1.2rem 0;
  }
  .tit_07 {
    font-size: 2rem;
    margin: 0 0 1.5rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  padding-left: 1.6rem;
  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;
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--blue);
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li::before {
    font-size: 1.2rem;
    top: 0.4rem;
  }
}
.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_ul02 {
  gap: 2rem 0;
}
.lst_ul02 li {
  width: 98%;
  margin-bottom: 2rem;
}
.lst_ul02 li a, .lst_ul02 li span {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  font-weight: bold;
  text-align: center;
  color: var(--blue02);
  text-decoration: none !important;
  background: #fff;
  position: relative;
}
.lst_ul02 li a::before, .lst_ul02 li span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: -0.6rem;
  bottom: -0.6rem;
  border: 1px solid #fff;
}
.lst_ul02 li:last-child {
  padding-bottom: 0;
}
.lst_ul02 li::before {
  content: "●";
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--blue);
}
@media screen and (min-width: 48em), print {
  .lst_ul02 li::before {
    font-size: 1.2rem;
    top: 0.4rem;
  }
}
.lst_ul02 li.none::before {
  content: none;
}

.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-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .lst_dl01 div dt {
    width: 20rem;
  }
  .lst_dl01 div dd {
    flex: 1;
  }
}
/* フレックス回り -------------------------------------- */
.flex2 > img {
  margin: 1rem 0 1rem;
}

.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,
  .flex2 > * {
    width: 48%;
    margin: 0 !important;
  }
  .flex2 > img {
    display: block;
    margin: 4rem 0 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
.img_flex > * {
  display: block;
  margin: 1rem auto 0;
}

@media screen and (min-width: 48em), print {
  .img_flex {
    margin: 4rem 0 6rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .img_flex > * {
    width: 30%;
    margin: 0;
  }
}
.sns {
  width: 35%;
  margin: 0 auto 3.5rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.sns li {
  margin: 0 1.25rem;
}
@media screen and (min-width: 48em), print {
  .sns {
    width: 10%;
  }
}

/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  background: var(--blue);
  color: #fff;
  text-align: center;
  margin: 1.4rem auto;
  padding: 1rem 2rem;
  max-width: 90%;
  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;
  text-decoration: none !important;
  position: relative;
  -webkit-transform: translate(-5px, -5px);
          transform: translate(-5px, -5px);
}
*[class*=btn_] a::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid var(--blue);
  position: absolute;
  left: 5px;
  bottom: -5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
  *[class*=btn_] a {
    display: inline-flex;
    padding: 2.2rem 1.6rem;
  }
  *[class*=btn_] a:hover {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    background: var(--blue02);
  }
  *[class*=btn_] a:hover::after {
    left: 0;
    bottom: 0;
  }
}

.txt_link {
  color: #222;
  border-bottom: 1px solid #222;
  font-weight: bold;
  text-decoration: none !important;
}
.txt_link:hover {
  opacity: 1;
  color: #3b3b3b;
  border-bottom: none;
}

/* フローチャート -------------------------------------- */
.lst_flow li {
  margin: 0 0 6rem;
  padding: 2rem;
  border: 1px solid var(--gray);
  position: relative;
}
.lst_flow li:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .lst_flow li {
    margin: 0 0 6rem;
    padding: 3rem;
  }
}
.lst_flow li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--blue02);
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}
.lst_flow li .tit {
  margin: 0 0 1rem;
  font-size: 120%;
  color: var(--blue02);
}

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low thead th {
  background: var(--blue);
  padding: 0.8rem;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 48em), print {
  .tbl_low thead th {
    padding: 1.2rem;
  }
}
.tbl_low tbody th {
  width: 30%;
  padding: 0.8rem;
  background: #fff;
  font-weight: bold;
  text-align: center;
  border: 1px solid var(--blue);
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody th {
    padding: 1.2rem;
  }
}
.tbl_low tbody td {
  padding: 0.8rem;
  border: 1px solid var(--blue);
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody td {
    padding: 1.2rem;
  }
}
.tbl_low.price {
  margin: 2rem 0 2rem;
}
@media screen and (min-width: 48em), print {
  .tbl_low.price {
    margin: 6rem 0 6rem;
  }
}
.tbl_low.price thead tr th:first-child {
  width: 76%;
}
@media screen and (min-width: 48em), print {
  .tbl_low.price thead tr th:first-child {
    width: 80%;
  }
}
.tbl_low.price tbody tr th {
  text-align: left;
  padding: 1.2rem 1.2rem 1.2rem 2rem;
}
.tbl_low.price tbody tr td {
  text-align: right;
}
@media screen and (min-width: 48em), print {
  .tbl_low.price tbody tr td {
    padding: 1.2rem 2rem 1.2rem 0.4rem;
  }
}
.tbl_low.price.line2 tbody tr th:first-child {
  width: 76%;
  background: var(--blue05);
  padding: 1.2rem;
}
@media screen and (min-width: 48em), print {
  .tbl_low.price.line2 tbody tr th:first-child {
    width: 80%;
  }
}

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

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

html {
  font-size: 3.125vw;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

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

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

.wrap {
  padding: 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: 1200px;
  }
  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 {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .main {
    font-size: 1.8rem;
    padding: 0 0 0;
    width: 100%;
  }
}
.contact_box {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.contact_box li {
  width: 50%;
}
.contact_box li.telephone {
  text-align: center;
}
.contact_box li.telephone span {
  width: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#1D54A4), to(#3A75C4));
  background: linear-gradient(to right, #1D54A4, #3A75C4);
  color: #fff;
  padding: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.contact_box li.telephone span:hover {
  opacity: 0.8;
  text-decoration: none;
}
.contact_box li.rsv {
  text-align: center;
}
.contact_box li.rsv a {
  width: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#e7274e), to(#ff7f98));
  background: linear-gradient(to right, #e7274e, #ff7f98);
  text-decoration: none;
  color: #fff;
  padding: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.contact_box li.rsv a:hover {
  opacity: 0.8;
  text-decoration: none;
}

@media screen and (min-width: 48em), print {
  .contact_box li.rsv a {
    padding: 2rem;
    font-size: 1.8rem;
  }
  .contact_box li.telephone span {
    padding: 2rem;
    font-size: 1.8rem;
  }
}
/* アイコンフォント -------------------------------------- */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
/* ヘッダー -------------------------------------- */
.header .wrap {
  margin: 2.4rem 1rem 1rem;
}
.header .wrap .logo {
  height: 3.2rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .headR {
  margin: 2rem 0 0;
}
.header .wrap .headR .contact_box {
  margin-top: 1rem;
}
.header .wrap .headR .head_access {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.header .wrap .headR .head_access::before {
  content: "\e8eb";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 1.8rem;
  background: -webkit-linear-gradient(left, #1c50a1, #21abe3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header .wrap .headR .head_access ul li {
  font-size: 1.2rem;
}
.header .wrap .headR .head_tel {
  margin: 1rem 0 0;
  padding: 0.4rem 0 1.5rem;
  text-align: center;
  background: #f2f2f2;
}
.header .wrap .headR .head_tel .tel {
  font-family: "EB Garamond", serif;
  display: inline-block;
  font-size: 2.4rem;
}
.header .wrap .headR .head_tel .tel::before {
  content: "\e8ee";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 1.8rem;
  background: -webkit-linear-gradient(left, #1c50a1, #21abe3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header .wrap .headR .head_tel .tel a {
  display: inline-block;
}
.header .wrap .headR .head_tel p {
  margin-bottom: 0;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 2rem auto 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .header .wrap .logo {
    width: 57.3rem;
    height: 8rem;
  }
  .header .wrap .headR {
    margin: 0;
    flex: 1 1 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
  }
  .header .wrap .headR .contact_box {
    width: 340px;
    margin-top: 0rem;
    margin-left: 1rem;
  }
  .header .wrap .headR .head_access::before {
    margin-right: 0.6rem;
    font-size: 2.2rem;
  }
  .header .wrap .headR .head_access ul li {
    font-size: 1.6rem;
  }
  .header .wrap .headR .head_tel {
    margin: 0 0 0 2rem;
    padding: 0;
    background: none;
  }
  .header .wrap .headR .head_tel p {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .header .wrap .headR .head_tel .tel {
    display: inline-block;
    font-size: 3rem;
  }
  .header .wrap .headR .head_tel .tel::before {
    margin-right: 0.4rem;
    font-size: 2rem;
  }
}
/* SP ドロップダウンメニュー -------------------------------------- */
#menu {
  z-index: 9999;
  width: 100%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#menu .fixed_menu_btn {
  width: 6rem;
  height: 5.6rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0.4rem 0.4rem;
  position: fixed;
  top: 1.4rem;
  right: 1rem;
  z-index: 204;
}
#menu .fixed_menu_btn .hamburger {
  height: 100%;
}
#menu .fixed_menu_btn .hamburger a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0.8rem 0rem;
  height: 100%;
  text-decoration: none;
  background: rgba(29, 80, 162, 0.96);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 5px;
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "\e806";
  font-family: "fontello";
  font-size: 2.6rem;
  line-height: 0.8;
}
#menu .fixed_menu_btn .hamburger a::after {
  content: "MENU";
  font-size: 1rem;
}
#menu .fixed_menu_btn.active .hamburger a::before {
  content: "\e807";
}
#menu .fixed_menu_btn.active .hamburger a::after {
  content: "CLOSE";
}
#menu #nav {
  display: none;
}
#menu #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 8rem 2rem 10rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(28, 80, 161, 0.9)), to(rgba(33, 171, 227, 0.9)));
  background: linear-gradient(to right, rgba(28, 80, 161, 0.9), rgba(33, 171, 227, 0.9));
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 203;
  -webkit-transform: translate(27rem);
  transform: translate(27rem);
}
#menu #nav.sp_nav.open {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#menu #nav.sp_nav ul {
  display: -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;
  font-size: 1.2rem;
}
#menu #nav.sp_nav ul li {
  width: 100%;
  text-align: left;
  margin: 0;
  border-bottom: 1px solid #fff;
  order: 1;
}
#menu #nav.sp_nav ul li.treatment {
  order: 2;
}
#menu #nav.sp_nav ul li a {
  display: block;
  padding: 1.2rem 0.2rem 1.2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none !important;
}
#menu #nav.sp_nav ul li a.sub {
  pointer-events: none;
  margin: 0;
  padding: 1.2rem 0.2rem 0.4rem;
}
#menu #nav.sp_nav ul li a.sub + .subnav {
  padding: 0.8rem 0.2rem 1.2rem;
  display: flex !important;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#menu #nav.sp_nav ul li a.sub + .subnav li {
  width: 100%;
  margin: 0 0 0.8rem;
  border-bottom: none;
  text-align: left;
}
#menu #nav.sp_nav ul li a.sub + .subnav li a {
  font-weight: normal;
  color: #fff;
  padding: 0.4rem 0.2rem 0.4rem 2rem;
  position: relative;
}
#menu #nav.sp_nav ul li a.sub + .subnav li a::after {
  content: none;
}
#menu #nav.sp_nav ul li a.sub + .subnav li a::before {
  content: "\f1db";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0.6rem;
}
#menu #nav.sp_nav ul li a:not(.sub) {
  position: relative;
}
#menu #nav.sp_nav ul li a:not(.sub)::after {
  content: "\f006";
  color: #8fd6e5;
  font-family: "fontello";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#menu #nav.sp_nav ul.sns {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 40%;
  margin: 2.5rem auto;
}
#menu #nav.sp_nav ul.sns li {
  border: none;
}
#menu #nav.sp_nav ul.sns li a:not(.sub)::after {
  content: none;
}
#menu .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#menu .overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

#nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_menu_btn {
    display: none;
  }
  #menu {
    display: block;
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: #fff;
  }
  #menu #nav.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    margin: auto;
    -webkit-box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.16);
  }
  #menu #nav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  #menu #nav .gnav li {
    width: auto;
  }
  #menu #nav .gnav li a {
    display: block;
    font-weight: bold;
    text-align: center;
    color: var(--blue02);
    line-height: 1.6;
    padding: 1.4rem 0 1.7rem;
    font-size: 2rem;
  }
  #menu #nav .gnav li a:hover {
    opacity: 0.7;
  }
  #menu #nav .gnav li a.sub {
    position: relative;
  }
  #menu #nav .gnav li a.sub::after {
    content: "\e8ec";
    font-size: 1rem;
    font-family: "fontello";
    font-weight: normal;
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #menu #nav .gnav li .subnav {
    max-width: 50rem;
    display: none;
    position: absolute;
    z-index: 20;
  }
  #menu #nav .gnav li .subnav ul {
    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;
    background: -webkit-gradient(linear, left top, right top, from(rgba(28, 80, 161, 0.9)), to(rgba(33, 171, 227, 0.9)));
    background: linear-gradient(to right, rgba(28, 80, 161, 0.9), rgba(33, 171, 227, 0.9));
    padding: 1.5rem 1.5rem 0;
  }
  #menu #nav .gnav li .subnav ul li {
    flex: 0 0 auto;
    margin: 0 0 1.5rem;
  }
  #menu #nav .gnav li .subnav ul li a {
    display: block;
    width: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 0;
    margin: 0 2rem 0 0;
    text-align: center;
    color: #fff;
  }
  #menu #nav .gnav li .subnav ul li a::before {
    content: "\f1db";
    font-family: "fontello";
    font-size: 1rem;
    font-weight: normal;
    margin-right: 0.4rem;
    position: relative;
    top: -0.2rem;
  }
  #menu #nav .gnav li .subnav ul li a:hover {
    opacity: 0.7;
  }
  #menu #nav .sns {
    display: none;
  }
  #menu {
    /* Gナビ　ハイライト */
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 0rem 0;
  font-size: 1.4rem;
  line-height: 1.6;
  background: var(--gray02);
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 90%;
  height: auto;
}
.overview > .wrap {
  padding: 0 1.8rem 3rem;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
}
.overview > .wrap .overviewL .tbl_gaiyo tbody:first-child tr th {
  border-top: 1px solid var(--blue);
}
.overview > .wrap .overviewL .tbl_gaiyo tbody:first-child tr td {
  border-top: 1px solid var(--gray);
}
.overview > .wrap .overviewL .tbl_gaiyo tbody th {
  width: 24%;
  text-align: left;
  padding: 0.8rem 0.2rem;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
}
.overview > .wrap .overviewL .tbl_gaiyo tbody td {
  padding: 0.8rem 0.4rem 0.8rem 1rem;
  border-bottom: 1px solid var(--gray);
}
.overview > .wrap .overviewL .tbl_gaiyo tbody td .right_txt span {
  display: block;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview .gmap {
  height: 30rem;
}
.overview .gmap iframe {
  height: 100%;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 0 0;
    padding: 8rem 0 0;
    font-size: 1.8rem;
  }
  .overview .clinic_name {
    margin: 0 0 6rem;
  }
  .overview .clinic_name img {
    max-width: 57.3rem;
  }
  .overview > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 0 8rem;
  }
  .overview > .wrap .overviewL,
  .overview > .wrap .overviewR {
    width: 57rem;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tbody th {
    width: 12rem;
    padding: 2rem 0;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tbody td {
    padding: 2rem 0;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    margin: 0;
  }
  .overview > .wrap .overviewR .tbl_time {
    margin: 0;
  }
  .overview .gmap {
    height: 50rem;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 29;
  cursor: pointer;
}
#pageup a {
  display: block;
  width: 3rem;
  height: 3rem;
  font-size: 1.6rem;
  text-decoration: none !important;
  text-align: center;
  padding: 0.4rem;
  background: #fff;
  border-radius: 50%;
  position: relative;
  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;
}
#pageup a::before {
  text-align: center;
  font-size: 2rem;
  font-family: "fontello";
  content: "\e8f2";
  background: -webkit-linear-gradient(left, #1c50a1, #21abe3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#pageup a::after {
  content: "";
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#1c50a1), to(#21abe3));
  background: linear-gradient(to right, #1c50a1, #21abe3);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    right: 6rem;
    bottom: 9rem;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  #pageup:hover {
    opacity: 0.8;
  }
  #pageup a {
    width: 6rem;
    height: 6rem;
  }
  #pageup a::before {
    font-size: 3.2rem;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    bottom: 0.4rem;
  }
  #pageup a::after {
    width: 6.4rem;
    height: 6.4rem;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  #pageup a:hover {
    opacity: 1;
  }
}
.footer_tel {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  height: 5rem;
}
.footer_tel p {
  text-align: center;
  margin: 1rem 0 0;
  width: 80%;
  font-size: 1.6rem;
}
.footer_tel .contact_box {
  width: 84%;
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .footer_tel {
    display: none !important;
  }
  .footer_tel .telephone {
    display: none;
  }
}
.floating_bnr {
  display: none;
}

@media screen and (min-width: 48em), print {
  .floating_bnr {
    display: block;
    position: fixed;
    top: 30%;
    right: 0rem;
    z-index: 30;
  }
  .floating_bnr li.rsv {
    text-align: center;
  }
  .floating_bnr li.rsv a {
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(#e7274e), to(#ff7f98));
    background: linear-gradient(to right, #e7274e 0%, #ff7f98 100%);
    color: #fff;
    padding: 2rem 2rem;
    font-size: 1.8rem;
    line-height: 1.5;
    border-radius: 5px 0 0 5px;
  }
  .floating_bnr li.rsv a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.footer {
  text-align: center;
  padding: 0 0 5rem;
}
.footer ul {
  display: none;
}
.footer .copy {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#1c50a1), to(#21abe3));
  background: linear-gradient(to right, #1c50a1, #21abe3);
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 4rem 0 0;
  }
  .footer ul {
    display: block;
    text-align: center;
    margin: 0 auto 1.6rem;
  }
  .footer ul:last-child {
    margin: 0 auto;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.8rem;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1.6rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer .copy {
    margin: 4rem 0 0;
    padding: 1.3rem 0;
    font-size: 1.8rem;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
.overflow {
  overflow-x: hidden;
}

/* キービジュアル -------------------------------------- */
#keyvsl {
  margin: 0 0 12rem;
  max-width: 100%;
  height: 20rem;
  background: url(../img/index_keyvsl01.jpg) no-repeat center center/cover;
}
#keyvsl .wrap {
  height: 100%;
  position: relative;
}
#keyvsl .wrap .kv_txt {
  font-weight: bold;
  color: #fff;
  font-size: 1.4rem;
  position: absolute;
  left: 1rem;
  bottom: 2rem;
}
#keyvsl .wrap .kv_txt p {
  text-align: left;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 0 10px #111111, 0 0 10px #111111;
}
#keyvsl .wrap .kv_info {
  width: 100%;
  padding: 0 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -13.4rem;
}
#keyvsl .wrap .kv_info p {
  padding: 1.4rem 1rem;
  width: 49%;
  min-height: 11.4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  display: flex !important;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: #222;
  position: relative;
}
#keyvsl .wrap .kv_info p::before, #keyvsl .wrap .kv_info p::after {
  content: "";
  width: 20%;
  height: 1px;
  display: block;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
#keyvsl .wrap .kv_info p::before {
  top: 1rem;
}
#keyvsl .wrap .kv_info p::after {
  bottom: 1rem;
}
#keyvsl .wrap .kv_info p.item_01 {
  background: rgba(33, 171, 227, 0.8);
}
#keyvsl .wrap .kv_info p.item_02 {
  background: rgba(163, 151, 131, 0.8);
  text-align: center;
}
#keyvsl .wrap .kv_info p .mt {
  display: block;
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  #keyvsl {
    margin: 0 auto 0;
    padding: 0;
    min-height: 62rem;
    background: url(../img/index_keyvsl01.jpg) no-repeat center center/auto auto;
  }
  #keyvsl .wrap .kv_txt {
    font-size: 3.2rem;
    left: 0;
    bottom: 5.4rem;
  }
  #keyvsl .wrap .kv_txt p {
    line-height: 1.8;
    letter-spacing: 0.3rem;
  }
  #keyvsl .wrap .kv_info {
    width: auto;
    padding: 0;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    left: auto;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    bottom: 5rem;
  }
  #keyvsl .wrap .kv_info p {
    margin: 0;
    padding: 0 1.6rem;
    line-height: 1.4;
    width: 20rem;
    height: 18rem;
    font-size: 2.4rem;
  }
  #keyvsl .wrap .kv_info p::before, #keyvsl .wrap .kv_info p::after {
    width: 6rem;
  }
  #keyvsl .wrap .kv_info p::before {
    top: 1.4rem;
  }
  #keyvsl .wrap .kv_info p::after {
    bottom: 1.4rem;
  }
  #keyvsl .wrap .kv_info p.item_02 {
    margin-left: 2rem;
  }
}
/* バナー　 -------------------------------------- */
.bnr_area {
  width: 100%;
}
.bnr_area p {
  text-align: center;
  margin: 2rem auto;
  display: inline-block;
}
.bnr_area p img {
  width: 95%;
}

@media screen and (min-width: 48em), print {
  .bnr_area {
    margin: 5rem auto;
    width: 100%;
  }
  .bnr_area p {
    text-align: center;
    display: block;
  }
  .bnr_area p img {
    width: 450px;
    height: 110px;
  }
}
/* アクセス/診療時間表 -------------------------------------- */
.access_hourtable {
  padding: 2rem 0 2rem;
  overflow: hidden;
}
.access_hourtable .wrap {
  position: relative;
  padding: 0 1rem;
}
.access_hourtable .wrap::before, .access_hourtable .wrap::after {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/index_accessHourtable_parts01.svg");
  position: absolute;
  z-index: -1;
}
.access_hourtable .wrap::before {
  width: 12rem;
  height: 12rem;
  top: -5rem;
  left: -1rem;
}
.access_hourtable .wrap::after {
  width: 10rem;
  height: 10rem;
  top: 8rem;
  right: -1rem;
}
.access_hourtable .wrap .access_area {
  background: rgba(245, 245, 245, 0.6);
  padding: 1rem;
  margin: 0 0 2rem;
}

@media screen and (min-width: 48em), print {
  .access_hourtable {
    padding: 8rem 0 8rem;
  }
  .access_hourtable .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .access_hourtable .wrap::before {
    width: 36rem;
    height: 38rem;
    top: 50%;
    left: -18rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .access_hourtable .wrap::after {
    width: 22rem;
    height: 23rem;
    top: 38%;
    right: -18rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .access_hourtable .wrap > * {
    width: 57rem;
  }
  .access_hourtable .wrap .access_area {
    padding: 1rem 3rem;
    margin: 0;
    background: var(--gray03);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 2rem 0 2rem;
  background: var(--gray04);
}
.info dl {
  margin: 0;
  line-height: 1.4;
  padding: 0 1rem;
  height: 100%;
}
.info dl .line {
  border-bottom: 1px solid var(--gray);
  margin: 0 0 1rem;
}
.info dl .line:nth-of-type(n + 4) dd {
  display: none;
}
.info dl .line dt {
  margin-bottom: 0.8rem;
  font-weight: bold;
  color: var(--blue02);
  font-size: 110%;
  cursor: pointer;
  display: table;
}
.info dl .line dt::before {
  content: "\e80a";
  font-family: "fontello";
  margin-right: 0.4rem;
}
.info dl .line dt:hover {
  opacity: 0.8;
}
.info dl .line dt.close::before {
  content: "\e80d";
}
.info dl .line dd {
  padding: 0.2rem 0 1rem;
  margin: 0;
}
.info dl .line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 10rem 0 8.5rem;
  }
  .info .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .info .wrap .tit_02 {
    min-width: 34.5rem;
    flex: 0 0 auto;
  }
  .info .wrap dl {
    flex: 1 1 auto;
    padding: 0;
  }
  .info .wrap dl .line {
    border-bottom: 1px solid var(--gray);
    margin: 0 0 1rem;
  }
  .info .wrap dl .line dt {
    margin-bottom: 0.8rem;
    font-size: 2rem;
  }
  .info .wrap dl .line dt::before {
    margin-right: 0.4rem;
  }
  .info .wrap dl .line dd {
    font-size: 1.8rem;
    padding: 0.2rem 0 1rem;
  }
}
/* 当院の特長 -------------------------------------- */
.feature {
  background: #fff;
  padding: 2rem 0 2rem;
}
.feature dl {
  width: 80%;
  margin: 0 auto;
  counter-reset: feature_num;
}
.feature dl div {
  counter-increment: feature_num 1;
  margin: 0 0 2rem;
  padding: 2rem;
}
.feature dl div:last-child {
  margin: 0;
}
.feature dl div dt {
  text-align: center;
  position: relative;
  padding: 1.6rem 0 1.4rem;
  margin: 0 0 1.2rem;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
}
.feature dl div dt::before {
  content: counter(feature_num, decimal-leading-zero);
  display: block;
  font-size: 14rem;
  line-height: 1;
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-family: "EB Garamond", serif;
  opacity: 0.2;
}
.feature dl div dt::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto 0;
}
.feature dl div dd {
  color: #fff;
  margin: 0;
}
.feature dl div.item_01 {
  background: url("../img/index_feature_bg01.jpg") no-repeat center/cover;
}
.feature dl div.item_02 {
  background: url("../img/index_feature_bg02.jpg") no-repeat center/cover;
}
.feature dl div.item_03 {
  background: url("../img/index_feature_bg03.jpg") no-repeat center/cover;
}
.feature dl div.item_04 {
  background: url("../img/index_feature_bg04.jpg") no-repeat center/cover;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 10rem 0 4rem;
  }
  .feature dl {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .feature dl div {
    width: 57rem;
    margin: 0 0 6rem;
    padding: 5.5rem 3rem;
  }
  .feature dl div:last-child {
    margin: 0 0 6rem;
  }
  .feature dl div dt {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 0 1.2rem;
    padding: 0 0 1.4rem;
    min-height: 7.5rem;
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .feature dl div dt::before {
    font-size: 10rem;
    line-height: 1.4;
    top: 34%;
    left: 50%;
  }
  .feature dl div dt::after {
    width: 6rem;
    margin: 0 auto 0;
    bottom: -0.8rem;
  }
  .feature dl div dd {
    padding: 2rem 0 0;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
/* reservation -------------------------------------- */
.reservation {
  background: #fff;
  padding: 2rem 0 2rem;
}
.reservation div {
  width: 80%;
  margin: 0 auto;
}
.reservation div p {
  margin: 0;
}
.reservation div .tel {
  font-family: "EB Garamond", serif;
  display: inline-block;
  font-size: 2.4rem;
}
.reservation div .tel::before {
  content: "\e8ee";
  font-family: "fontello";
  margin-right: 0.4rem;
  font-size: 1.8rem;
  background: -webkit-linear-gradient(left, #b73e90, #e43a94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 48em), print {
  .reservation {
    padding: 10rem 0 4rem;
    text-align: center;
  }
  .reservation div {
    width: 800px;
    margin: 0 auto;
  }
  .reservation div .tel {
    font-size: 3rem;
  }
  .reservation div p {
    margin: 0;
  }
}
/* ごあいさつ -------------------------------------- */
.greeting {
  background: var(--gray03);
  padding: 2rem 0 2rem;
}
.greeting .wrap {
  position: relative;
}
.greeting .wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 10rem;
  background: url("../img/index_greeting_img01.jpg") no-repeat center left/contain, url("../img/index_greeting_img02.jpg") no-repeat center right/contain;
  margin: 0 0 2rem;
}
.greeting .wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 10rem;
  background: url("../img/index_greeting_img03.jpg") no-repeat center left/contain, url("../img/index_greeting_img04.jpg") no-repeat center right/contain;
  margin: 2rem 0 0;
}
.greeting .wrap .content {
  position: relative;
}
.greeting .wrap .content::before {
  content: "";
  display: block;
  width: 20rem;
  height: 23rem;
  background: url("../img/index_greeting_parts03.svg") no-repeat center/contain;
  position: absolute;
  left: -1rem;
  top: 11rem;
}
.greeting .wrap .content .txt_area {
  padding: 0.4rem 1.4rem;
  line-height: 1.6;
  text-align: justify;
  position: relative;
}
.greeting .wrap .content .txt_area::before, .greeting .wrap .content .txt_area::after {
  content: "";
  display: block;
  width: 2rem;
  height: 6rem;
  position: absolute;
}
.greeting .wrap .content .txt_area::before {
  background: url("../img/index_greeting_parts01.svg") no-repeat center/contain;
  left: 0rem;
  top: 0rem;
}
.greeting .wrap .content .txt_area::after {
  background: url("../img/index_greeting_parts02.svg") no-repeat center/contain;
  right: 0rem;
  bottom: 0rem;
}
.greeting .wrap .content .txt_area .dr_txt {
  text-align: right;
  font-weight: 700;
  padding-right: 0.8rem;
}
.greeting .wrap .content .txt_area .dr_txt .size_l {
  font-size: 120%;
}
.greeting .wrap .content .txt_area .dr_txt .status {
  margin: 1rem 0 0;
  display: block;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 11.5rem 0 10rem;
    overflow: hidden;
    min-height: 78rem;
  }
  .greeting .wrap {
    position: relative;
  }
  .greeting .wrap::before {
    width: 50rem;
    height: 100%;
    min-height: 78rem;
    background: url("../img/index_greeting_img01.jpg") no-repeat center top/contain, url("../img/index_greeting_img02.jpg") no-repeat center bottom/contain;
    margin: 0;
    position: absolute;
    z-index: 2;
    left: -40rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .greeting .wrap::after {
    width: 50rem;
    height: 100%;
    min-height: 78rem;
    background: url("../img/index_greeting_img03.jpg") no-repeat center top/contain, url("../img/index_greeting_img04.jpg") no-repeat center bottom/contain;
    margin: 0;
    position: absolute;
    right: -40rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .greeting .wrap .content {
    width: 85rem;
    margin: 6rem auto 0;
  }
  .greeting .wrap .content::before {
    width: 36rem;
    height: 40rem;
    left: -16rem;
    top: 8rem;
  }
  .greeting .wrap .content .txt_area {
    padding: 0;
    margin: 0 auto;
    width: 73rem;
    line-height: 1.8;
  }
  .greeting .wrap .content .txt_area::before, .greeting .wrap .content .txt_area::after {
    width: 4rem;
    height: 8rem;
  }
  .greeting .wrap .content .txt_area::before {
    left: -6rem;
    top: -3rem;
  }
  .greeting .wrap .content .txt_area::after {
    right: -6rem;
    bottom: -3rem;
  }
  .greeting .wrap .content .txt_area .dr_txt {
    margin: 3.5rem 0 0;
    padding-right: 0;
  }
  .greeting .wrap .content .txt_area .dr_txt .size_l {
    font-size: 2.4rem;
  }
}
/* 診療案内 -------------------------------------- */
.treatment_menu {
  margin: 2rem 0 2rem;
  padding: 2rem 0 2rem;
  background: url("../img/index_treatmentMenu_bg01.jpg") no-repeat center/cover;
}
.treatment_menu .tit_02 {
  color: #fff;
}
.treatment_menu .tit_02 .eng_txt {
  color: #fff !important;
}
.treatment_menu .tit_02 .eng_txt::before, .treatment_menu .tit_02 .eng_txt::after {
  background: #fff !important;
}
.treatment_menu ul {
  padding: 0 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.treatment_menu ul li {
  width: 46%;
  margin: 0 0 2rem;
}
.treatment_menu ul li a {
  padding: 1rem;
  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;
  height: 100%;
  font-weight: bold;
  text-align: center;
  color: var(--blue02);
  text-decoration: none !important;
  background: #fff;
  position: relative;
}
.treatment_menu ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: -0.6rem;
  bottom: -0.6rem;
  border: 1px solid #fff;
}
.treatment_menu ul li a > span::before {
  content: "";
  display: block;
  margin: 0 auto 0.4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 80%;
  height: 4rem;
}
.treatment_menu ul li a > span .size_s {
  font-size: 1rem;
  display: block;
}
.treatment_menu ul li a.internal > span::before {
  background-image: url("../img/index_treatmentMenu_internal.svg");
}
.treatment_menu ul li a.diabetes > span::before {
  background-image: url("../img/index_treatmentMenu_diabetes.svg");
}
.treatment_menu ul li a.HBP > span::before {
  background-image: url("../img/index_treatmentMenu_HBP.svg");
}
.treatment_menu ul li a.hyperlipidemia > span::before {
  background-image: url("../img/index_treatmentMenu_hyperlipidemia.svg");
}
.treatment_menu ul li a.hyperuricemia > span::before {
  background-image: url("../img/index_treatmentMenu_hyperuricemia.svg");
}
.treatment_menu ul li a.adiposity > span::before {
  background-image: url("../img/index_treatmentMenu_adiposity.svg");
}
.treatment_menu ul li a.vaccination > span::before {
  background-image: url("../img/index_treatmentMenu_vaccination.svg");
}
.treatment_menu ul li a.checkup > span::before {
  background-image: url("../img/index_treatmentMenu_checkup.svg");
}
.treatment_menu ul li a.osteoporosis > span::before {
  background-image: url("../img/index_treatmentMenu_osteoporosis.svg");
}
.treatment_menu ul li a.fever > span::before {
  background-image: url("../img/index_treatmentMenu_fever.svg");
}
.treatment_menu ul li a.freestyle > span::before {
  background-image: url("../img/index_treatmentMenu_freestyle.svg");
}

@media screen and (min-width: 48em), print {
  .treatment_menu {
    margin: 6rem 0 6rem;
    padding: 10rem 0 10rem;
    background: url("../img/index_treatmentMenu_bg01.jpg") no-repeat center/cover;
  }
  .treatment_menu ul {
    padding: 0 0 0 4rem;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .treatment_menu ul li {
    width: 20rem;
    height: 20rem;
    margin: 0 3rem 4rem 0;
  }
  .treatment_menu ul li:nth-child(5n) {
    margin: 0 0 4rem;
  }
  .treatment_menu ul li a {
    padding: 1rem;
    font-size: 2.4rem;
    -webkit-transition: all 0.4s ease-Out;
    transition: all 0.4s ease-Out;
  }
  .treatment_menu ul li a::before {
    right: -1rem;
    bottom: -1rem;
  }
  .treatment_menu ul li a > span::before {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1rem;
  }
  .treatment_menu ul li a > span .size_s {
    font-size: 1.6rem;
  }
  .treatment_menu ul li a:hover {
    opacity: 1;
    background: #fff;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    color: var(--blue03);
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    width: 1200px;
    margin: 1.5rem auto 0;
    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.8rem;
    display: inline-block;
  }
  body:not(.index) .breadcrumb_list li:not(:last-child)::after {
    content: "＞";
    display: inline-block;
    margin: 0 1rem;
  }
  body:not(.index) .breadcrumb_list li a {
    color: var(--blue);
    text-decoration: underline;
  }
  body:not(.index) .breadcrumb_list li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
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.8rem;
    line-height: 1.7;
  }
}

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

@media screen and (min-width: 48em), print {
  .doctor .dr_txt {
    margin: 6rem 0 0;
  }
  .doctor .dr_txt span {
    display: inline-block;
    margin-left: 2rem;
  }
  .flex2 section {
    margin: 4rem 0 0 !important;
    height: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: stretch;
  }
  .flex2 > div section ~ section {
    margin: 8rem 0 0 !important;
  }
}
/* クリニック紹介 */
.lst_clinic li {
  margin: 0 0 2rem;
  text-align: center;
}
.lst_clinic li figure img {
  display: block;
  margin: 0 auto 0.6rem;
  max-width: 80%;
  height: auto;
}
.lst_clinic li figure figcaption {
  padding: 0.4rem 0;
}

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

@media screen and (min-width: 48em), print {
  .access main .tbl_time .time {
    font-size: 2rem;
  }
  .access .flex_map {
    margin: 6rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .access .flex_map > div {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    width: 49%;
  }
  .access .flex_map > div.gmap {
    margin: 0 0 0 4rem;
    height: auto;
  }
  .access .flex_map > div.gmap iframe {
    height: 100%;
  }
}
/* フリースタイルリブレ2 */
.freestyle .price_wrap {
  font-weight: bold;
  display: block;
}

@media screen and (min-width: 48em), print {
  .freestyle .price_wrap {
    display: inline-block;
    width: 23em;
  }
}