@charset "UTF-8";
/* ----------------------------------------------------------------------------------
リセット　_reset.scss
---------------------------------------------------------------------------------- */
html {
  box-sizing: border-box;
}

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

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

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

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

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

.cf::after {
  clear: both;
}

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

.fl_r {
  float: right;
}

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

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.red {
  color: #cf2828;
}

/* 囲い文字 -------------------------------------- */
.frame_01 {
  background: #e6f7ff;
  border-radius: 7px;
  padding: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em), print {
  .frame_01 {
    border-radius: 12px;
    padding: 2.4rem 2rem 2.4rem;
    margin-bottom: 3rem;
  }
  .frame_01.inline {
    display: inline-block;
  }
}

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

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

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

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
@media screen and (min-width: 48em), print {
  .w_50 {
    width: 50%;
  }
}

.d_flex {
  display: flex !important;
}

.d_inline_block {
  display: inline-block !important;
}

.align_center {
  align-items: center !important;
}

/* マージン・パディング回り -------------------------------------- */
.m0 {
  margin: 0 !important;
}

.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.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;
  }
  .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.2rem 0.2rem;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: center;
  font-weight: bold;
  margin-top: 0.4rem;
  color: #667580;
}
.tbl_time tr th {
  font-weight: bold;
  border-radius: 4px;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: #2FA999;
  font-size: 1.2rem;
  color: #fff;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th[scope=col] .behind {
  display: inline-block;
  min-height: 3rem;
  writing-mode: vertical-rl;
  white-space: nowrap;
  margin: 0;
  line-height: 1.2em;
  letter-spacing: 0.3rem;
}
.tbl_time tr th.time {
  background: #F4F5F6;
}
.tbl_time tr td {
  text-align: center;
  font-weight: bold;
  padding: 0.6rem 0.4rem;
  background: #fff;
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.8rem;
    border-spacing: 0.2rem 0.4rem;
  }
  .tbl_time caption {
    font-size: 1.6rem;
    padding: 1.2rem 0 0;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.6rem 0;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 28%;
  }
  .tbl_time tr th[scope=col] .behind {
    display: inline-block;
    min-height: auto;
    writing-mode: horizontal-tb;
    letter-spacing: 0;
  }
  .tbl_time tr td {
    padding: 1rem 0;
  }
}
/* グーグルマップ -------------------------------------- */
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* タイトル回り -------------------------------------- */
.tit_01 {
  text-align: center;
  font-weight: bold;
  color: #2FA999;
  font-size: 2.2rem;
  padding: 3rem 1rem;
  margin: 0 0 3rem;
  position: relative;
  z-index: -1;
}
.tit_01::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: -8rem;
  display: block;
  width: 100%;
  height: 14rem;
  background: url("../img/a_common_bg01.svg") no-repeat center/cover;
}

.tit_02 {
  color: #675844;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 1rem;
  padding: 1rem 0;
  line-height: 1.2;
  letter-spacing: 0.2rem;
}
.tit_02 span {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 1.4rem;
  color: #2FA999;
  letter-spacing: 0;
}

body:not(.index) .tit_02 {
  display: inline-block;
  color: #36414D;
  text-align: left;
  padding: 1rem 0 0.4rem;
  border-bottom: 3px solid #2FA999;
}
body:not(.index) .tit_02 span {
  display: inline;
  color: inherit;
  font-size: inherit;
}

.tit_03 {
  display: inline-block;
  color: #36414D;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0.6rem 0.8rem;
  background: #EFF7EE;
}

.tit_04 {
  display: inline-block;
  color: #36414D;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 1rem 0.8rem 0.4rem;
  border-bottom: 2px solid #CCC;
}

.tit_05 {
  display: inline-block;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0 0.8rem 0.4rem;
  border-bottom: 2px dotted #CCC;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 4.2rem;
    height: 24rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 0 3rem;
  }
  .tit_01::after {
    height: 52rem;
    bottom: -30rem;
  }
  .tit_02 {
    font-size: 3.2rem;
    margin: 0 0 2rem;
    letter-spacing: 0.4rem;
  }
  .tit_02 span {
    font-size: 2rem;
    margin: 0 0 1.7rem;
    letter-spacing: 0.1rem;
  }
  body:not(.index) .tit_02 {
    border-bottom: 4px solid #2FA999;
  }
  .tit_03 {
    font-size: 2rem;
    padding: 1.5rem 2rem;
    margin: 0 0 1rem;
  }
  .tit_04 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
  }
  .tit_05 {
    font-size: 1.7rem;
    padding: 0 0 0.4rem;
    margin: 0 0 1rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  text-indent: -1.6rem;
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
}
.lst_ul01 li:last-child {
  padding-bottom: 0;
}
.lst_ul01 li::before {
  content: "■";
  font-size: 1.2rem;
  margin-right: 0.4rem;
  color: #2FA999;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li::before {
    position: relative;
    bottom: 0.2rem;
  }
}
.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_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-family: "Lato", sans-serif;
  color: clr_blue;
  font-weight: bold;
}

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 dt {
    float: left;
    width: 6rem;
    clear: left;
  }
  .lst_dl01 dd {
    margin: 0 0 0.6rem;
    padding-left: 6.4rem;
  }
}
/* フレックス回り -------------------------------------- */
.flex3 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li {
    width: 50%;
    margin: 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
.btn_01 {
  display: block;
}
.btn_01 a {
  background: #2FA999;
  border: 2px solid #2FA999;
  color: #fff;
  text-align: center;
  padding: 0.8rem 2rem 0.6rem 1rem;
  border-radius: 7px;
  display: block;
  text-decoration: none !important;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .btn_01 a {
    border-radius: 16px;
    min-width: 28rem;
    padding: 1rem 4rem 0.8rem;
    display: inline-block;
  }
}
.btn_01 a::after {
  content: "\f138";
  font-family: "fontello";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.btn_01 a:hover {
  background: #fff;
  color: #2FA999;
  opacity: 1;
}

.txt_link {
  color: #2FA999;
}
.txt_link::after {
  content: "\f14c";
  font-family: "fontello";
  margin: 0 0.2rem;
}

.lst_link {
  padding: 1rem;
  background: #ecfff1;
  border-radius: 7px;
}
.lst_link li ~ li {
  margin: 1rem 0 0;
}

@media screen and (min-width: 48em), print {
  .lst_link {
    padding: 2rem 1rem;
    border-radius: 17px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .lst_link li {
    width: 24%;
  }
  .lst_link li ~ li {
    margin: 0;
  }
  .lst_link li a {
    width: 100%;
    min-width: auto;
    padding: 1rem 2rem;
  }
}
/* テーブル -------------------------------------- */
.tbl_01 {
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  width: 100%;
  border: 2px solid #667580;
}
.tbl_01 tr:first-child {
  border-radius: 10px 10px 0 0;
}
.tbl_01 tr:first-child > * {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.tbl_01 tr:first-child > *:first-child {
  border-radius: 10px 0 0 0;
}
.tbl_01 tr:first-child > *:last-child {
  border-radius: 0 10px 0 0;
  border-right: none;
}
.tbl_01 tr:last-child > * {
  border-bottom: none;
}
.tbl_01 tr:last-child > *:first-child {
  border-radius: 0 0 0 10px;
}
.tbl_01 tr:last-child > *:last-child {
  border-radius: 0 0 10px 0;
}
.tbl_01 tr th {
  width: 30%;
  background: #EFF7EE;
  text-align: center;
  font-weight: normal;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.tbl_01 tr th:last-child {
  border-right: none;
}
.tbl_01 tr td {
  padding: 0.8rem;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.tbl_01 tr td:last-child {
  border-right: none;
}

.tbl_02 {
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  width: 100%;
  border: 2px solid #667580;
}
.tbl_02 tr:first-child {
  border-radius: 10px 10px 0 0;
}
.tbl_02 tr:first-child th {
  text-align: center;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 48em), print {
  .tbl_02 tr:first-child th {
    font-size: 0.2 0.4rem;
    padding: 1.6rem 0;
  }
}
.tbl_02 tr th {
  background: #EFF7EE;
  text-align: left;
  font-weight: normal;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 0.4rem 0.6rem;
}
@media screen and (min-width: 48em), print {
  .tbl_02 tr th {
    padding: 1.4rem 1.4rem;
  }
}
.tbl_02 tr th:last-child {
  border-right: none;
}
.tbl_02 tr td {
  padding: 0.8rem;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 48em), print {
  .tbl_02 tr td {
    padding: 1.4rem 1.4rem;
  }
}
.tbl_02 tr td:last-child {
  border-right: none;
}

.tbl_access {
  table-layout: fixed;
  border-collapse: separate;
  border-collapse: 0.2rem;
}
.tbl_access tr th {
  width: 37%;
  background: #d9edac;
  text-align: center;
  font-weight: normal;
  padding: 0.8rem;
}
.tbl_access tr td {
  padding: 0.8rem;
}

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

.footer_menu .online a {
  position: relative;
  padding: 0 0 1rem;
}
.footer_menu .online a::after {
  content: "※準備中";
  color: #fff;
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: normal;
  font-size: 1rem;
}

.link_item .online a {
  position: relative;
  padding: 0 0 1rem;
}
.link_item .online a::after {
  content: "※準備中";
  color: #fff;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: normal;
  font-size: 1.4rem;
}

html {
  font-size: 3.125vw;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

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

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

.wrap {
  padding: 0 1rem 0;
}

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1150px;
  }
  body > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 8rem auto 0;
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1120px;
    padding: 0;
    margin: 0 auto;
  }
  .main {
    font-size: 1.6rem;
    padding: 0 0 0;
    width: 100%;
  }
}
/* アイコンフォント -------------------------------------- */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
/* ヘッダー -------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
}
.header.-scroll .headR, .header.-scroll .dept_txt {
  max-height: 500px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.header.-scroll.is-active .headR, .header.-scroll.is-active .dept_txt {
  max-height: 0;
  opacity: 0;
}
.header .wrap {
  padding: 1rem 0.9rem 0;
}
.header .wrap .logo {
  padding-top: 0.5em;
  width: 80%;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center;
  background-size: 100%;
  padding: 1em 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .wrap .dept_txt {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1em;
}
.header .wrap .dept_txt > span {
  color: #2FA999;
}
.header .wrap .dept_txt .black {
  color: #475866;
  font-size: 1.2rem;
}
.header .wrap .header_menu {
  width: 100%;
  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;
  gap: 1rem;
}
.header .wrap .header_menu > * {
  flex: 1 1 50%;
  text-align: center;
}
.header .wrap .header_menu .tel {
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  width: 70%;
  line-height: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  border-radius: 7px;
  background: linear-gradient(125deg, #65C4F2, #65B6F2);
}
.header .wrap .header_menu .tel::before {
  content: "\e800";
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: normal;
  font-family: "fontello";
  font-size: 1.2rem;
  margin-right: 0.2rem;
}
.header .wrap .header_menu > div a {
  padding: 1.2rem 0;
  border-radius: 7px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .wrap .header_menu > div.rsv a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(125deg, #65C4F2, #65B6F2);
}
.header .wrap .header_menu > div.rsv a::before {
  content: "\e802";
  color: #fff;
  font-weight: normal;
  font-family: "fontello";
  font-size: 1.2rem;
  margin-right: 0.2rem;
}
.header .wrap .header_menu + p {
  font-size: 1.4rem;
  text-align: center;
}
.header .wrap .headR {
  margin: 1rem auto 0;
}
.header .wrap .headR .guide {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  display: none;
}
.header .wrap .headR .guide .tel {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.header .wrap .headR .guide .tel::before {
  content: "\e800";
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: normal;
  font-family: "fontello";
  font-size: 1.2rem;
  margin-right: 0.2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #65C4F2;
}
.header .wrap .headR .guide .tel a {
  display: inline-block;
}
.header .wrap .headR .guide .map {
  margin-left: 2rem;
}
.header .wrap .headR .guide .map a {
  font-weight: bold;
}
.header .wrap .headR .guide .map a::before {
  content: "\f138";
  color: #65C4F2;
  font-family: "fontello";
  margin-right: 0.2rem;
  font-weight: normal;
}
.header .wrap .headR .access {
  margin: 0.6rem 0 0;
}
.header .wrap .headR .access li {
  margin: 0 0 0.4rem;
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.header .wrap .headR .access li *[class*=bus] {
  color: #fff;
  margin-right: 0.6rem;
  padding: 0.6rem 0.1rem;
  border-radius: 8px;
  min-width: 5.4rem;
  text-align: center;
}
.header .wrap .headR .access li .bus01 {
  background: #2FA999;
}
.header .wrap .headR .access li .bus02 {
  background: #F2798D;
}

@media screen and (min-width: 48em), print {
  .header {
    position: initial;
  }
  .header .wrap {
    padding: initial;
    margin: 3.5rem auto 1.5rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: baseline;
    gap: 4rem;
  }
  .header .wrap .logo {
    width: 51.2rem;
    height: 6rem;
  }
  .header .wrap .logo a {
    padding: 3em 0;
    height: 2rem;
  }
  .header .wrap .dept_txt .black {
    font-size: 1.8rem;
    padding-left: initial;
  }
  .header .wrap .dept_txt {
    font-size: 3rem;
    margin: 1.8rem 0 0;
  }
  .header .wrap .header_menu {
    width: 75%;
    margin: 1rem auto 0;
    font-size: 1rem;
  }
  .header .wrap .header_menu > div a {
    font-size: 1.7rem;
  }
  .header .wrap .header_menu .tel {
    font-size: 1.8rem;
  }
  .header .wrap .header_menu .tel::before {
    font-size: 1.6rem;
    margin-right: 0.3rem;
  }
  .header .wrap .header_menu > div.rsv a::before {
    font-size: 1.8rem;
    margin-right: 0;
  }
  .header .wrap .header_menu + p {
    font-size: 1.8rem;
  }
  .header .wrap .headR {
    margin: 0;
    width: 70%;
  }
  .header .wrap .headR ul.guide {
    display: flex;
    gap: 2em;
    margin-block-end: 2rem;
  }
  .header .wrap .headR ul.guide li {
    font-size: initial;
  }
  .header .wrap .headR ul.guide .tel {
    font-size: 2.4rem;
  }
  .header .wrap .headR ul.guide .tel::before {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.4rem;
  }
  .header .wrap .headR ul.guide .map {
    font-size: 1.4rem;
    margin: 1.1rem 0 0;
  }
  .header .wrap .headR ul.access {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.5em;
    margin: 0;
  }
  .header .wrap .headR ul.access li {
    flex: 1 1 calc(50% - 1rem);
    line-height: 1.5;
    font-size: 1.3rem;
    margin: 0 0 0.6rem;
  }
  .header .wrap .headR ul.access li *[class*=bus] {
    padding: 0.8rem 0.2rem 0.6rem;
    margin-right: 0.8rem;
    line-height: 1;
  }
  .header .wrap .headR ul.access2 {
    margin-bottom: 2rem;
  }
  .header .wrap .headR ul.access2 li {
    line-height: 1.5;
    font-size: 1.6rem;
    margin: 0;
    font-weight: bold;
  }
  .header .wrap .headR ul.access2 li span {
    color: #2FA999;
    font-size: 1.4rem;
  }
}
/* SP ドロップダウンメニュー（Slick Nav） -------------------------------------- */
.slicknav_menu {
  position: fixed;
  top: 1rem;
  right: 0;
  font-size: 4.4rem;
  display: inline-block;
  background: none;
  padding: 0;
  z-index: 1000;
}
.slicknav_menu .slicknav_btn {
  width: 5rem;
  height: 5rem;
  color: #2FA999;
  background: none;
  text-shadow: none;
  border-radius: 0;
  text-align: center;
  line-height: 1;
  margin: 0 1rem;
  padding: 0;
  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;
}
.slicknav_menu .slicknav_btn.slicknav_collapsed::before {
  display: block;
  font-family: "fontello";
  content: "\f0c9";
  font-size: 2.8rem;
  line-height: 0.8;
}
.slicknav_menu .slicknav_btn.slicknav_collapsed::after {
  margin: 0.2rem 0 0;
  display: block;
  content: "MENU";
  font-size: 1rem;
}
.slicknav_menu .slicknav_btn.slicknav_open::before {
  display: block;
  font-family: "fontello";
  content: "\f0c8";
  font-size: 2.8rem;
  line-height: 0.8;
}
.slicknav_menu .slicknav_btn.slicknav_open::after {
  margin: 0.2rem 0 0;
  display: block;
  content: "CLOSE";
  font-size: 1rem;
}
.slicknav_menu .slicknav_nav {
  width: 94vw;
  height: calc(100vh - 6rem);
  background: #fff;
  padding: 1rem 1.2rem 1.8rem;
  position: absolute;
  top: 6rem;
  right: 1rem;
  margin: auto;
  border-radius: 7px;
  box-shadow: 0 0 20px 10px rgba(0, 104, 156, 0.1);
  overflow-y: auto;
}
.slicknav_menu .slicknav_nav .gnav {
  margin: 0;
}
.slicknav_menu .slicknav_nav .gnav li {
  border-bottom: 1px solid #b5c6d5;
  padding: 0 0.6rem;
}
.slicknav_menu .slicknav_nav .gnav li a {
  display: block;
  color: #475866;
  padding: 1rem 0;
  font-size: 1.6rem;
  position: relative;
}
.slicknav_menu .slicknav_nav .gnav li a::after {
  position: absolute;
  right: 1rem;
  font-family: "fontello";
  content: "\f138";
  font-size: 2rem;
}
.slicknav_menu .slicknav_nav .gnav li a:hover {
  background: none;
}
.slicknav_menu .slicknav_nav .gnav li.slicknav_parent a.slicknav_item {
  padding: 0;
}
.slicknav_menu .slicknav_nav .gnav li.slicknav_parent ul li:last-child {
  border: none;
}
.slicknav_menu .slicknav_nav .gnav li.slicknav_open > a.slicknav_item .sub::after {
  font-family: "fontello";
  content: "\e804";
}
.slicknav_menu .slicknav_nav .gnav li.treatment {
  display: none;
}
.slicknav_menu .slicknav_nav .treatment_menu p {
  text-align: center;
  font-weight: bold;
  color: #475866;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  margin: 1.6rem 0 1.4rem;
  padding: 0 0 0.3rem;
  border-bottom: 3px solid #475866;
}
.slicknav_menu .slicknav_nav .treatment_menu ul {
  margin: 0;
  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;
}
.slicknav_menu .slicknav_nav .treatment_menu ul li {
  width: 50%;
  border-bottom: 1px solid #b5c6d5;
  border-right: 1px solid #b5c6d5;
}
.slicknav_menu .slicknav_nav .treatment_menu ul li:nth-child(1), .slicknav_menu .slicknav_nav .treatment_menu ul li:nth-child(2) {
  border-top: 1px solid #b5c6d5;
}
.slicknav_menu .slicknav_nav .treatment_menu ul li:nth-child(odd) {
  border-left: 1px solid #b5c6d5;
}
.slicknav_menu .slicknav_nav .treatment_menu ul li a {
  font-size: 1.6rem;
  text-align: center;
  margin: 0;
  padding: 0.8rem 0;
  color: #475866;
}
.slicknav_menu .slicknav_nav .treatment_menu ul li a:hover {
  background: none;
  border-radius: 0;
}
.slicknav_menu .slicknav_icon, .slicknav_menu .slicknav_icon-bar, .slicknav_menu .slicknav_arrow, .slicknav_menu .slicknav_row:after {
  display: none !important;
}

#nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .slicknav_menu {
    display: none;
  }
  #nav {
    display: block;
    padding: 3.6rem 0;
    border-top: 2px solid #009CBC;
    position: relative;
    z-index: 220;
  }
  #nav .gnav {
    width: 1120px;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  #nav .gnav li {
    width: auto;
    padding-right: 4rem;
  }
  #nav .gnav li:last-child {
    padding-right: 0;
  }
  #nav .gnav li.treatment {
    position: relative;
  }
  #nav .gnav li a {
    display: inline-block;
    width: auto;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
  }
  #nav .gnav li a::before {
    content: "●";
    font-size: 1rem;
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: block;
    color: #2FA999;
    opacity: 0;
    transition: all 0.4s;
  }
  #nav .gnav li a:hover {
    opacity: 1;
    color: #2FA999;
  }
  #nav .gnav li a:hover::before {
    opacity: 1;
  }
  #nav .gnav li .subnav {
    width: 44rem;
    display: none;
    position: absolute;
    top: 4.6rem;
    left: -2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px 10px rgba(0, 104, 156, 0.1);
    overflow: hidden;
  }
  #nav .gnav li .subnav ul {
    border-radius: 12px;
    background: #f5f5f5;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #nav .gnav li .subnav ul li {
    width: 50%;
    padding-right: 0;
    background: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    border-top: 1px solid #f3f8ee;
  }
  #nav .gnav li .subnav ul li:nth-child(odd) {
    border-right: 1px solid #f3f8ee;
  }
  #nav .gnav li .subnav ul li:nth-child(1), #nav .gnav li .subnav ul li:nth-child(2) {
    border-top: none;
  }
  #nav .gnav li .subnav ul li a {
    display: block;
    width: 100%;
    padding: 1.6rem 0;
    text-align: center;
  }
  #nav .gnav li .subnav ul li a::before {
    content: none;
  }
  #nav .gnav li .subnav ul li a:hover {
    opacity: 1;
    background: #f3f8ee;
  }
  #nav .treatment_menu {
    display: none;
  }
  /* Gナビ　ハイライト */
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.overview::before, .overview::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  z-index: -1;
}
.overview::before {
  background: url("../img/overview_bg01.svg") no-repeat center bottom/contain, linear-gradient(to top, rgba(161, 201, 120, 0.1) 71.3rem, rgba(255, 255, 255, 0) 71.3rem);
  height: 71.3rem;
  left: 0;
  bottom: 0;
}
.overview::after {
  background: url("../img/overview_bg02.svg") no-repeat center/contain;
  height: 7rem;
  left: 0;
  bottom: 70rem;
}
.overview > .wrap {
  border-radius: 10px;
  padding: 1.4rem 1rem 1.4rem;
  background: #fff;
  box-shadow: 0 0 20px 10px rgba(0, 104, 156, 0.1);
}
.overview > .wrap .overviewL .clinic_logo {
  text-align: center;
  margin: 0 0 2rem;
}
.overview > .wrap .overviewL .clinic_logo img {
  max-width: 30%;
  height: auto;
}
.overview > .wrap .overviewL .clinic_name {
  text-align: center;
  color: #675844;
  font-weight: bold;
}
.overview > .wrap .overviewL .tbl_gaiyo {
  width: 100%;
  border-collapse: collapse;
}
.overview > .wrap .overviewL .tbl_gaiyo tr th {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: bold;
}
.overview > .wrap .overviewL .tbl_gaiyo tr td {
  display: block;
  width: 100%;
  padding: 0.4rem 0 0.6rem;
  margin: 0 0 0.6rem;
  border-bottom: 1px solid #E2E2E3;
}
.overview > .wrap .overviewL .tbl_gaiyo tr:last-child td {
  border-bottom: none;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .tbl_time {
  margin: 1.6rem 0;
}
.overview > .wrap .overviewR .gmap {
  text-align: right;
}
.overview > .wrap .overviewR .gmap iframe {
  height: 30rem;
}

.overview_dl {
  margin-top: 0;
}
.overview_dl dd {
  margin: 0;
}
.overview_dl dd .sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 0 0;
    padding: 10rem 0 29rem;
    font-size: 1.8rem;
  }
  .overview::before {
    background: url("../img/overview_bg01.svg") no-repeat center bottom/auto auto, linear-gradient(to top, rgba(161, 201, 120, 0.1) 100rem, rgba(255, 255, 255, 0) 100rem);
    height: 120rem;
    left: 0;
    bottom: 0;
  }
  .overview::after {
    background: url("../img/overview_bg02.svg") no-repeat center/auto auto;
    height: 28rem;
    left: 0;
    bottom: 100rem;
  }
  .overview > .wrap {
    padding: 8rem 4rem 8rem 8rem;
    border-radius: 40px;
    box-shadow: 0 0 30px 10px rgba(0, 104, 156, 0.1);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 48%;
  }
  .overview > .wrap .overviewL {
    padding: 0 0;
  }
  .overview > .wrap .overviewL .clinic_logo {
    margin: 0 0 6.4rem;
  }
  .overview > .wrap .overviewL .clinic_logo img {
    width: 18rem;
    height: 16rem;
    max-width: 100%;
  }
  .overview > .wrap .overviewL .clinic_name {
    font-size: 3.2rem;
    letter-spacing: 0.2rem;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr th {
    padding: 2.4rem 0;
    display: table-cell;
    vertical-align: top;
    width: 11.4rem;
    border-bottom: 2px solid #E2E2E3;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr td {
    padding: 2.4rem 0;
    display: table-cell;
    width: auto;
    border-bottom: 2px solid #E2E2E3;
  }
  .overview > .wrap .overviewL .tbl_gaiyo tr:last-child th {
    border-bottom: none;
  }
  .overview > .wrap .overviewR {
    padding: 0 0;
    margin: 0;
  }
  .overview > .wrap .overviewR .tbl_time {
    margin: 0 0 3.5rem;
  }
  .overview > .wrap .overviewR .gmap iframe {
    border-radius: 10px;
    height: 67rem;
  }
}
/* フッター -------------------------------------- */
#pageup {
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 1rem;
  z-index: 100;
  cursor: pointer;
}
#pageup a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.4rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 15px 2px rgba(64, 26, 255, 0.1);
}
#pageup a::before {
  text-align: center;
  font-size: 2rem;
  font-family: "fontello";
  content: "\e801";
  color: #999;
}

@media screen and (min-width: 48em), print {
  #pageup {
    right: 13rem;
  }
  #pageup a {
    width: 8rem;
    height: 8rem;
  }
  #pageup a::before {
    font-size: 3.6rem;
  }
}
.footer_menu {
  width: 100%;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  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;
}
.footer_menu .tel {
  text-align: center;
  padding: 1.2rem 0;
  width: 70%;
  line-height: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.footer_menu .tel::before {
  content: "\e800";
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: normal;
  font-family: "fontello";
  font-size: 1.2rem;
  margin-right: 0.2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #65C4F2;
}
.footer_menu > div {
  position: fixed;
  bottom: 0.4rem;
}
.footer_menu > div a {
  width: 6.8rem;
  height: 5rem;
  border-radius: 7px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer_menu > div.rsv {
  right: 0.8rem;
}
.footer_menu > div.rsv a {
  background: linear-gradient(125deg, #65C4F2, #65B6F2);
}
.footer_menu > div.online {
  right: 8.2rem;
}
.footer_menu > div.online a {
  background: linear-gradient(125deg, #99CE63, #66BF5E);
}

@media screen and (min-width: 48em), print {
  .footer_menu {
    display: none;
  }
  .footer_menu .tel {
    display: none;
  }
  .footer_menu > * {
    display: none;
  }
}
.link_item {
  display: none;
}

@media screen and (min-width: 48em), print {
  .link_item {
    display: block;
    position: fixed;
    z-index: 200;
    right: 0;
    top: 29rem;
    margin: auto;
    width: 12rem;
    height: 25.6rem;
  }
  .link_item li a {
    position: relative;
    width: 12rem;
    height: 12rem;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    text-align: center;
    border-radius: 24px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0px 17px 12px -14px rgba(0, 104, 156, 0.1);
    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;
  }
  .link_item li a::after {
    content: "\e802";
    font-family: "fontello";
    font-weight: normal;
    margin-top: 0.2rem;
    font-size: 2.2rem;
  }
  .link_item li a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    border-radius: 24px;
    opacity: 0;
    transition: all 0.2s;
  }
  .link_item li a:hover {
    opacity: 1;
  }
  .link_item li a:hover::before {
    opacity: 0.2;
  }
  .link_item li.online {
    margin-bottom: 1.6rem;
  }
  .link_item li.online a {
    background: linear-gradient(125deg, #99CE63, #66BF5E);
  }
  .link_item li.rsv a {
    background: linear-gradient(125deg, #65C4F2, #65B6F2);
  }
}
.footer {
  text-align: center;
  background: #E7EBD5;
  padding: 5.4rem 0 5.4rem;
  position: relative;
  z-index: 1;
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background: url("../img/footer_bg01.svg") no-repeat bottom/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
}
.footer ul {
  display: none;
}
.footer .copy {
  display: block;
  color: #fff;
  padding: 2.4rem 1rem 0.6rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 10rem 0 0;
    z-index: 2;
  }
  .footer::before {
    height: 66rem;
    background: url("../img/footer_bg01.svg") no-repeat bottom/auto auto;
  }
  .footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -8rem;
    z-index: -1;
    margin: auto;
    display: block;
    background: url("../img/footer_bg02.png") center top/auto auto no-repeat;
    width: 100%;
    height: 57.2rem;
  }
  .footer ul {
    display: block;
    text-align: center;
    margin: 5rem auto 0;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.6rem;
    margin: 0 1rem 0;
  }
  .footer ul li a {
    font-weight: bold;
    color: #fff;
    opacity: 1;
    letter-spacing: 0.1rem;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer .copy {
    font-size: 1.4rem;
    margin: 7.6rem auto 0;
    padding: 4.8rem 0;
  }
}
/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
.index .main {
  padding: 4rem 0 0;
}

/* キービジュアル -------------------------------------- */
.kv_area {
  background: url("../img/a_common_bg01.svg") no-repeat bottom center/cover;
  position: relative;
  z-index: 1;
}
.kv_area .wrap {
  padding: 0 0;
  position: relative;
  z-index: 200;
}
.kv_area .wrap #keyvsl {
  position: relative;
  z-index: 0;
}
.kv_area .wrap #keyvsl li {
  padding: 1rem;
}
.kv_area .wrap #keyvsl li *[class*=img_] {
  height: 20rem;
  width: 100%;
  border-radius: 10px;
  position: relative;
}
.kv_area .wrap #keyvsl li *[class*=img_]::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 12px 5px rgba(0, 104, 156, 0.1);
  position: absolute;
  left: 0;
  top: 0;
}
.kv_area .wrap #keyvsl li *[class*=img_].img_04 {
  background: url("../img/index_keyvsl04.jpg") no-repeat center/cover;
}
.kv_area .wrap #keyvsl li *[class*=img_].img_01 {
  background: url("../img/index_keyvsl01.jpg") no-repeat center/cover;
}
.kv_area .wrap #keyvsl li *[class*=img_].img_02 {
  background: url("../img/index_keyvsl02.jpg") no-repeat center/cover;
}
.kv_area .wrap #keyvsl li *[class*=img_].img_03 {
  background: url("../img/index_keyvsl03.jpg") no-repeat center/cover;
}
.kv_area .wrap .kv_txt {
  text-align: right;
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  right: 0.2rem;
}
.kv_area .wrap .kv_txt span {
  display: inline-block;
  text-align: right;
  color: #2FA999;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 0.4rem 0.6rem;
  margin: 0.2rem 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 12px 5px rgba(74, 88, 255, 0.1);
}

@media screen and (min-width: 48em), print {
  .kv_area {
    margin: 0 0 8rem;
    background: url("../img/a_common_bg01.svg") no-repeat center center/auto auto;
  }
  .kv_area .wrap {
    left: -1rem;
  }
  .kv_area .wrap .bx-wrapper {
    width: 1040px;
    border-radius: 24px;
  }
  .kv_area .wrap #keyvsl li *[class*=img_] {
    height: 60rem;
    border-radius: 24px;
  }
  .kv_area .wrap #keyvsl li *[class*=img_]::before {
    width: 1020px;
    border-radius: 24px;
    box-shadow: 0 0 12px 5px rgba(0, 104, 156, 0.1);
  }
  .kv_area .wrap #keyvsl li *[class*=img_].img_01 {
    background: url("../img/index_keyvsl01.jpg") no-repeat center/auto auto;
  }
  .kv_area .wrap #keyvsl li *[class*=img_].img_02 {
    background: url("../img/index_keyvsl02.jpg") no-repeat center/auto auto;
  }
  .kv_area .wrap #keyvsl li *[class*=img_].img_03 {
    background: url("../img/index_keyvsl03.jpg") no-repeat center/auto auto;
  }
  .kv_area .wrap .kv_txt {
    bottom: 4rem;
  }
  .kv_area .wrap .kv_txt span {
    font-size: 4.2rem;
    border-radius: 16px;
    padding: 1.8rem 3.9rem 1.6rem;
    margin: 0 0 1.6rem;
    letter-spacing: 0.4rem;
  }
}
/* 発熱案内バナー -------------------------------------- */
.bnr_fever a {
  display: block;
  text-align: right;
  border-radius: 10px 10px 0 0;
  background: url("../img/index_bnrFever_parts01.png") no-repeat bottom left/contain, url("../img/index_bnrFever_bg01.svg") no-repeat center/cover;
  text-decoration: none !important;
  position: relative;
  z-index: 1;
}
.bnr_fever a > div {
  position: relative;
  z-index: 2;
  padding: 0 0 2rem;
}
.bnr_fever a p {
  color: #475866;
  margin: 0;
  font-size: 1.2rem;
}
.bnr_fever a p.lead {
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 0.6rem;
  padding: 1rem 1rem 0.8rem;
}
.bnr_fever a p.lead span {
  border-bottom: 3px solid #2FA999;
}
.bnr_fever a p.lead span::after {
  content: "\f138";
  font-family: "fontello";
  margin-left: 0.2rem;
  font-weight: normal;
  color: #2FA999;
}
.bnr_fever a p.lead span.border_none {
  border-bottom: none;
}
.bnr_fever a p.lead .border {
  border-bottom: 3px solid #2FA999;
}
.bnr_fever a p.lead .border::after {
  content: none;
}
.bnr_fever a p.lead:first-of-type {
  display: inline-block !important;
  text-align: left;
  background: none;
  background: rgba(255, 255, 255, 0.7);
  margin: 1rem;
  padding: 1rem;
}
.bnr_fever a p.size_m {
  color: #008371;
  font-size: 1.4rem;
  font-weight: bold;
}
.bnr_fever a p.bg {
  display: block;
  text-align: left;
  font-size: 1.1rem;
  width: 100%;
  border-radius: 0 0 10px 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.1rem;
  margin: 0 auto;
  padding: 0.2rem 0.6rem;
  background: #2FA999;
  color: #fff;
}
.bnr_fever .text {
  font-size: 1.25rem;
  background: #2fa999;
  color: #fff;
  text-align: center;
  padding-inline: 0.9rem;
  padding-block: 0.8rem;
  margin: initial;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 12px 5px rgba(0, 104, 156, 0.1);
  text-align: center;
}
.bnr_fever.-bnr_03 a {
  background: url("../img/index_bnrFever_parts03.png") no-repeat bottom left/contain, url("../img/index_bnrFever_bg01.svg") no-repeat center/cover;
}

.bnr_extend .bnr_extend_body {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: url("../img/index_bnrFever_parts02.png") no-repeat top left/cover, url("../img/index_bnrFever_bg01.svg") no-repeat center/cover;
}
.bnr_extend p {
  color: #475866;
  margin: 0;
}
.bnr_extend p.lead a {
  text-decoration: none;
}
.bnr_extend p.lead {
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 0.6rem;
  padding: 1rem 1rem 0.8rem;
}
.bnr_extend p.lead span {
  border-bottom: 3px solid #2FA999;
}
.bnr_extend p.lead span::after {
  content: "\f138";
  font-family: "fontello";
  margin-left: 0.2rem;
  font-weight: normal;
  color: #2FA999;
}
.bnr_extend p.lead span.border_none {
  border-bottom: none;
}
.bnr_extend p.lead .border {
  border-bottom: 3px solid #2FA999;
}
.bnr_extend p.lead .border::after {
  content: none;
}
.bnr_extend p.lead:first-of-type {
  display: inline-block !important;
  text-align: left;
  background: none;
  background: rgba(255, 255, 255, 0.7);
  margin: 1rem;
  padding: 1rem;
}
.bnr_extend p.size_m {
  color: #008371;
  font-size: 1.4rem;
  font-weight: bold;
}
.bnr_extend p.bg {
  display: block;
  text-align: left;
  font-size: 1.1rem;
  width: 100%;
  border-radius: 0 0 10px 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.1rem;
  margin: 0 auto;
  padding: 0.2rem 0.6rem;
  background: #2FA999;
  color: #fff;
}
.bnr_extend .text {
  font-size: 1.25rem;
  background: #2fa999;
  color: #fff;
  text-align: center;
  padding-inline: 0.9rem;
  padding-block: 0.8rem;
  margin: initial;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 12px 5px rgba(0, 104, 156, 0.1);
  text-align: center;
}

.bnr:not(:last-of-type) {
  margin-block-end: 2.5rem;
}

@media screen and (min-width: 48em), print {
  .bnr_fever a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 0;
    height: 26rem;
    background: url("../img/index_bnrFever_parts01.png") no-repeat bottom left 8rem/auto auto, url("../img/index_bnrFever_bg01.svg") no-repeat left top/auto auto;
  }
  .bnr_fever a > div {
    padding: 0;
    padding-right: 5.6rem;
  }
  .bnr_fever a p {
    font-size: 2rem;
    padding-top: 2rem;
  }
  .bnr_fever a p.lead {
    font-size: 3.2rem;
    padding: 0;
  }
  .bnr_fever a p.lead:first-of-type {
    margin: initial;
    text-align: center;
  }
  .bnr_fever a p.lead + .lead {
    margin-top: 2rem;
  }
  .bnr_fever a p.size_m {
    text-align: left;
    position: static;
    font-size: 3rem;
    color: #2FA999;
    margin: 0.6rem 0 0.2rem;
  }
  .bnr_fever a p.bg {
    position: static;
    padding: 0.2rem 0;
    font-size: 2rem;
    background: none;
    color: inherit;
  }
  .bnr_fever .text {
    padding-block: 0.8rem;
    font-size: xx-large;
    text-align: center;
  }
  .bnr_extend .bnr_extend_body {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 0;
    height: 26rem;
    background: url("../img/index_bnrFever_parts02.png") no-repeat bottom left/contain, url("../img/index_bnrFever_bg01.svg") no-repeat center/cover;
  }
  .bnr_extend p {
    color: #475866;
    margin: 0;
    font-size: 1.2rem;
  }
  .bnr_extend p.lead {
    font-size: 3.2rem;
    padding: 0;
  }
  .bnr_extend p.lead span {
    border-bottom: 3px solid #2FA999;
  }
  .bnr_extend p.lead span::after {
    content: "\f138";
    font-family: "fontello";
    margin-left: 0.2rem;
    font-weight: normal;
    color: #2FA999;
  }
  .bnr_extend p.lead span.border_none {
    border-bottom: none;
  }
  .bnr_extend p.lead .border {
    border-bottom: 3px solid #2FA999;
  }
  .bnr_extend p.lead .border::after {
    content: none;
  }
  .bnr_extend p.lead.lead + .lead {
    margin-top: 2rem;
  }
  .bnr_extend p.lead:first-of-type {
    margin: initial;
    text-align: center;
  }
  .bnr_extend p.size_m {
    text-align: left;
    position: static;
    font-size: 3rem;
    color: #2FA999;
    margin: 0.6rem 0 0.2rem;
  }
  .bnr_extend .text {
    padding-block: 0.8rem;
    font-size: xx-large;
    text-align: center;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 2rem 0 4.4rem;
  position: relative;
  z-index: 1;
}
.info .wrap {
  position: relative;
  z-index: 1;
}
.info .wrap::before, .info .wrap::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.info .wrap::before {
  background: url("../img/index_info_parts01.svg") no-repeat center/contain;
  width: 4rem;
  height: 3rem;
  left: 0;
  bottom: -4rem;
  opacity: 0.5;
}
.info .wrap::after {
  background: url("../img/index_info_parts02.svg") no-repeat center/contain;
  width: 6rem;
  height: 6rem;
  right: 0;
  top: 3rem;
}
.info dl {
  margin: 0;
  line-height: 1.4;
  padding: 0.4rem 0 0.4rem 1.2rem;
  height: 100%;
  position: relative;
}
.info dl::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0.2rem;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 156, 188, 0.5), rgba(8, 158, 182, 0.5) 1rem, rgba(33, 164, 167, 0.5) 2.3rem, rgba(72, 174, 143, 0.5) 4.6rem, rgba(127, 188, 110, 0.5) 6rem, rgba(143, 192, 101, 0.5) 100%);
}
.info dl .line {
  margin: 0 0 1rem;
  border-bottom: 1px solid #CCCCCC;
}
.info dl .line dd {
  display: none;
}
.info dl .line:last-child {
  border-bottom: none;
}
.info dl .line dt {
  margin: 0 0 0.4rem;
}
.info dl .line dt .date {
  display: block;
  font-weight: bold;
  color: #B3B3B3;
  font-size: 1.2rem;
}
.info dl .line dt .tit {
  cursor: pointer;
  position: relative;
  padding-left: 1.4rem;
  font-weight: bold;
  color: #36414D;
  font-size: 110%;
  display: table;
}
.info dl .line dt .tit:hover {
  opacity: 0.8;
}
.info dl .line dt .tit::before {
  content: "\e801";
  font-size: 1.2rem;
  font-family: "fontello";
  position: absolute;
  left: 0;
  top: 0.2rem;
  transform: rotate(180deg);
}
.info dl .line dt.close .tit::before {
  content: "\e801";
  transform: rotate(0deg);
}
.info dl .line dd {
  padding: 0 0 1rem;
  margin: 0;
}
.info dl .line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 4rem 0 0;
  }
  .info .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .info .wrap::before {
    width: 9rem;
    height: 6rem;
    bottom: 3rem;
  }
  .info .wrap::after {
    width: 16rem;
    height: 20rem;
    top: 10rem;
  }
  .info .wrap .tit_02 {
    width: 24rem;
    min-width: 24rem;
    text-align: left;
    padding: 0;
    margin: 3.4rem 0 0;
  }
  .info .wrap .tit_02 span {
    margin: 0 0 2rem;
  }
  .info .wrap dl {
    width: 68rem;
    padding: 4rem 0 3.5rem 7.5rem;
  }
  .info .wrap dl::before {
    width: 0.4rem;
    background: linear-gradient(to bottom, rgba(0, 156, 188, 0.5), rgba(8, 158, 182, 0.5) 13rem, rgba(33, 164, 167, 0.5) 20rem, rgba(72, 174, 143, 0.5) 30rem, rgba(127, 188, 110, 0.5) 37rem, rgba(143, 192, 101, 0.5) 100%);
  }
  .info .wrap dl .line {
    margin: 0 0 3.2rem;
  }
  .info .wrap dl dt .date {
    font-size: 1.4rem;
    margin: 0 0 1.6rem;
  }
  .info .wrap dl dt .tit {
    font-size: 1.6rem;
    margin: 0 0 1.6rem;
  }
  .info .wrap dl dd {
    font-size: 1.6rem;
    margin: 0 0 4.8rem;
  }
}
/* ごあいさつ -------------------------------------- */
.greeting {
  padding: 1rem 0 2rem;
  position: relative;
}
.greeting::after {
  content: "";
  display: block;
  width: 100%;
  height: 10rem;
  background: url("../img/index_info_bg01.svg") no-repeat center bottom/100% auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.greeting img {
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  max-width: 80%;
  height: auto;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 0;
  }
  .greeting::after {
    height: 43.3rem;
    background: url("../img/index_info_bg01.svg") no-repeat center bottom/auto auto;
    bottom: 0;
  }
  .greeting .wrap {
    position: relative;
    z-index: 2;
  }
  .greeting .wrap .tit_02, .greeting .wrap > div {
    width: 48rem;
    margin: 0 0 0 auto;
  }
  .greeting .wrap .tit_02 {
    text-align: left;
    padding: 5rem 0 2.8rem;
    border-bottom: 2px solid #ccc;
  }
  .greeting .wrap .tit_02 span {
    margin: 0 0 2.2rem;
  }
  .greeting .wrap img {
    position: absolute;
    left: 0;
    top: 13rem;
    max-width: 48rem;
  }
  .greeting .wrap p {
    font-size: 1.6rem;
    font-weight: bold;
  }
}
/* 特長 -------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
}
.feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/index_feature_bg01.svg") no-repeat top/100% auto, linear-gradient(to top, #EFF3EC 97.34%, rgba(255, 255, 255, 0) 97.34%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.feature::after {
  content: "";
  display: block;
  width: 100%;
  height: 20rem;
  background: url("../img/index_feature_bg02.svg") no-repeat bottom/100% auto;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: -1;
}
.feature ul {
  counter-reset: feature_number;
}
.feature ul li {
  margin: 0 0 2rem;
  padding: 0 1rem;
  counter-increment: feature_number 1;
}
.feature ul li img {
  display: block;
  border-radius: 40px;
  box-shadow: 0 0 12px 5px rgba(0, 104, 156, 0.1);
}
.feature ul li .tit {
  color: #36414D;
  font-weight: bold;
  border-bottom: 2px solid #CCCCCC;
  font-size: 1.8rem;
  margin: 1rem 0 0.4rem;
  padding: 0 0 0.2rem 1.2rem;
  position: relative;
}
.feature ul li .tit::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: #2FA999;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
.feature ul li .tit::after {
  content: counter(feature_number, decimal-leading-zero);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.8rem;
  color: #2FA999;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1rem;
  border-radius: 16px;
  background: #fff;
  position: absolute;
  left: 2rem;
  bottom: 3.2rem;
}
.feature ul li p {
  margin: 0;
  color: #475866;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 28rem 0 0;
    background: linear-gradient(to top, #fff 28%, #EFF3EC 28%);
  }
  .feature::before {
    width: 100%;
    height: 24rem;
    background: url("../img/index_feature_bg01.svg") no-repeat top/auto auto, #fff;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .feature::after {
    height: 27.4rem;
    background: url("../img/index_feature_bg02.svg") no-repeat center center/auto auto;
    left: 0;
    bottom: 49rem;
  }
  .feature ul {
    margin: 7rem auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .feature ul li {
    width: 53.6rem;
    margin: 0 0 8rem;
    padding: 0;
  }
  .feature ul li > div {
    padding: 0 2.2rem;
  }
  .feature ul li .tit {
    font-size: 3.2rem;
    margin: 6.2rem 0 2.4rem;
    padding: 0 0 1rem 3.7rem;
    line-height: 1.3;
  }
  .feature ul li .tit::before {
    width: 1.2rem;
    height: 1.2rem;
  }
  .feature ul li .tit::after {
    font-size: 3.6rem;
    border-radius: 24px;
    width: 7.2rem;
    height: 7.2rem;
    left: 2rem;
    bottom: 8rem;
  }
  .feature ul li p {
    font-size: 1.8rem;
    text-align: justify;
  }
}
/* 診療内容 -------------------------------------- */
.treatmentMenu {
  position: relative;
  z-index: 2;
  padding: 2rem 0 2rem;
}
.treatmentMenu::before {
  content: "";
  display: block;
  width: 100%;
  height: 63rem;
  background: url("../img/index_treatmentMenu_bg01.svg") no-repeat top/100% auto, linear-gradient(to top, #F9F3EC 59rem, #fff 59rem);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.treatmentMenu::after {
  content: "";
  display: block;
  width: 100%;
  height: 72%;
  background: url("../img/index_treatmentMenu_bg02.svg") no-repeat top/100% auto, linear-gradient(to top, rgba(161, 201, 120, 0.2) 81%, rgba(255, 255, 255, 0) 81%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.treatmentMenu ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.treatmentMenu ul::before, .treatmentMenu ul::after {
  content: "";
  display: block;
  position: absolute;
}
.treatmentMenu ul::before {
  top: -5.2rem;
  right: 0;
  width: 7rem;
  height: 7rem;
  background: url("../img/index_treatmentMenu_parts01.svg") no-repeat center/contain;
  z-index: -1;
}
.treatmentMenu ul::after {
  bottom: -5.2rem;
  left: 0;
  width: 5rem;
  height: 6rem;
  background: url("../img/index_treatmentMenu_parts02.svg") no-repeat center/contain;
  z-index: -1;
}
.treatmentMenu ul li {
  width: 48%;
  margin: 0 0 2rem;
}
.treatmentMenu ul li a {
  text-decoration: none !important;
  display: block;
  height: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
  color: #475866;
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0px 0px 10px 1px rgba(0, 104, 156, 0.1);
}
.treatmentMenu ul li a::before {
  content: "";
  font-family: "fontello";
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  font-size: 3.6rem;
  font-weight: normal;
  width: 3rem;
  height: 4rem;
  color: #2FA999;
}
.treatmentMenu ul li a.internal::before {
  content: "\e825";
}
.treatmentMenu ul li a.cardiovascular::before {
  content: "\e826";
}
.treatmentMenu ul li a.arteriosclerosis::before {
  content: "\e827";
}
.treatmentMenu ul li a.high_blood_pressure::before {
  content: "\e828";
}
.treatmentMenu ul li a.diabetes::before {
  content: "\e829";
}
.treatmentMenu ul li a.dyslipidemia::before {
  content: "\e82a";
}
.treatmentMenu ul li a.gout::before {
  content: "\e82b";
}
.treatmentMenu ul li a.sas::before {
  content: "\e82c";
}
.treatmentMenu ul li a.fever::before {
  content: "\e82f";
}
.treatmentMenu ul li a.endoscopy::before {
  content: "\e838";
}
.treatmentMenu ul li a.colonography::before {
  content: "\e823";
}
.treatmentMenu ul li a.vaccination::before {
  content: "\e82d";
}
.treatmentMenu ul li a.checkup::before {
  content: "\e82e";
}
.treatmentMenu ul li a.pcr::before {
  content: "\e83e";
}
.treatmentMenu ul li a .br:before {
  content: "\a";
  white-space: pre;
}
@media screen and (min-width: 48em), print {
  .treatmentMenu ul li a .br:before {
    content: none;
  }
}

@media screen and (min-width: 48em), print {
  .treatmentMenu {
    padding: 10rem 0 16rem;
    overflow: hidden;
  }
  .treatmentMenu::before {
    height: 117rem;
    background: url("../img/index_treatmentMenu_bg01.svg") no-repeat top/auto auto, linear-gradient(to top, #F9F3EC 91rem, #fff 91rem);
  }
  .treatmentMenu::after {
    height: 82rem;
    background: url("../img/index_treatmentMenu_bg02.svg") no-repeat top/auto auto, linear-gradient(to top, rgba(161, 201, 120, 0.2) 18rem, rgba(255, 255, 255, 0) 18rem);
  }
  .treatmentMenu ul {
    justify-content: left;
    margin: 10rem auto 0;
    padding: 0 4rem;
  }
  .treatmentMenu ul::before {
    top: -8rem;
    right: -29rem;
    width: 40rem;
    height: 24rem;
  }
  .treatmentMenu ul::after {
    bottom: 0;
    left: -10rem;
    width: 12rem;
    height: 17.4rem;
  }
  .treatmentMenu ul li {
    width: 24.2rem;
    margin: 0 2.4rem 2.4rem 0;
  }
  .treatmentMenu ul li:nth-child(4n), .treatmentMenu ul li:last-child {
    margin: 0 0 2.4rem;
  }
  .treatmentMenu ul li a {
    height: 24.4rem;
    font-size: 2rem;
    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;
    position: relative;
  }
  .treatmentMenu ul li a::before {
    content: "";
    font-family: "fontello";
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 auto 0.4rem;
    text-align: center;
    font-size: 13rem;
    width: 12rem;
    height: 12rem;
    color: #2FA999;
  }
  .treatmentMenu ul li a::after {
    visibility: hidden;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFF;
    opacity: 0;
    transition: all 0.2s;
  }
  .treatmentMenu ul li a:hover {
    opacity: 1;
  }
  .treatmentMenu ul li a:hover::after {
    visibility: visible;
    opacity: 0.5;
  }
  .treatmentMenu ul li a.pcr::before {
    font-size: 11rem;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .breadcrumb_list {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .breadcrumb_list {
    width: 1120px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  body:not(.index) .breadcrumb_list li {
    font-size: 1.4rem;
    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:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
body:not(.index) .main {
  margin: 0 1rem 4rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 6rem;
  }
  body:not(.index) .main p {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
  }
}
body:not(.index) .main img {
  border-radius: 10px;
  box-shadow: 0 0 12px 5px rgba(0, 104, 156, 0.1);
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main img {
    border-radius: 24px;
  }
}
body:not(.index) .overview {
  display: none;
}
body:not(.index) .overview::before, body:not(.index) .overview::after {
  display: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .overview {
    display: block;
    padding: 10rem 0 21rem;
  }
}
body:not(.index) .footer {
  background: none;
}

@media screen and (min-width: 48em), print {
  .cf .img_l, .cf .img_r {
    margin: 9rem 0 2rem 2rem;
    max-width: 40%;
    height: auto;
  }
  .cf .img_l.-m_ini, .cf .img_r.-m_ini {
    margin-top: initial;
  }
}
/* 医師紹介 */
.doctor .flex > div .doctor_name {
  text-align: right;
  font-size: 110%;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

@media screen and (min-width: 48em), print {
  .doctor .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .doctor .flex figure {
    width: 30%;
    order: 2;
    margin: 0;
  }
  .doctor .flex figure figcaption {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    padding: 0.8rem 0 0.2rem;
  }
  .doctor .flex > div {
    width: 66%;
    order: 1;
    margin-right: 3%;
  }
}
/* クリニック紹介 */
#clinicslide {
  margin-bottom: 8rem;
}
#clinicslide img, #clinicslide p {
  display: none;
}

.sp-layer.sp-black.sp-padding {
  text-align: center;
  font-size: 2.4rem;
}

.sp-selected-thumbnail {
  border: 4px solid #000;
}

.img_device {
  margin: 1rem 0 0;
}
.img_device li {
  margin: 0 0 2rem;
  text-align: center;
}
.img_device li figure {
  margin: 0;
  padding: 0;
}
.img_device li figure p {
  text-align: center;
  padding: 0 0 0.2rem;
  margin: 0;
  font-weight: bold;
  font-size: 1.6rem !important;
}
.img_device li figure img {
  display: block;
  margin: 0 auto 0;
  max-width: 80%;
  height: auto;
}
.img_device li figure figcaption {
  text-align: left;
  padding: 0.8rem 0 0;
}

@media screen and (min-width: 48em), print {
  .img_device {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .img_device li {
    width: 48%;
    margin: 0 0 6rem;
  }
  .img_device li figure p {
    font-size: 2.2rem !important;
    padding: 0 0 0.8rem;
  }
  .img_device li figure img {
    max-width: 100%;
  }
}
/* 初めての方へ */
.first .rsv_box > div {
  overflow: hidden;
  border: 1px solid #2fa999;
  border-radius: 7px;
  background: #eafbf9;
  text-align: center;
}
.first .rsv_box > div .tel_item {
  display: flex !important;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  font-weight: bold;
  margin: 0 0 0.8rem;
}
.first .rsv_box > div .tel_item .point {
  width: 40%;
  padding: 0.4rem 0.2rem;
  background: #2fa999;
  color: #fff;
  border-radius: 0 0 7px 0;
}
.first .rsv_box > div .tel_item .tel {
  width: 58%;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
}
.first .rsv_box > div .tel_item .tel::before {
  content: "\e800";
  font-family: "fontello";
  margin-right: 0.3rem;
  font-weight: normal;
}
.first .rsv_box > div .btn_01 {
  margin: 0.2rem 0.8rem 0.6rem;
}
.first .rsv_box > div .btn_01 a {
  width: 100%;
  font-weight: bold;
  border: none;
  background: linear-gradient(125deg, #99CE63, #66BF5E);
}

@media screen and (min-width: 48em), print {
  .first .main .flex_img {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .first .main .flex_img img {
    width: 40%;
    margin: 0 !important;
    order: 2;
  }
  .first .main .flex_img > div {
    width: 52%;
    order: 1;
  }
  .first .main .flex {
    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;
  }
  .first .main .flex > p {
    margin: 0 0 2rem 2rem;
  }
  .first .main .flex .rsv_box {
    width: 100%;
  }
  .first .rsv_box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .first .rsv_box > div {
    width: auto;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .first .rsv_box > div .tel_item {
    margin: 0;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .first .rsv_box > div .tel_item .point {
    width: 20rem;
    border-radius: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .first .rsv_box > div .tel_item .tel {
    margin-left: 2.4rem;
    font-size: 2.2rem;
    width: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .first .rsv_box > div .btn_01 {
    text-align: right;
    margin: 1.2rem 2rem 1.2rem 2rem;
  }
  .first .rsv_box > div .btn_01 a {
    width: auto;
    margin: 0 0 0 auto;
    font-size: 2rem;
  }
  .first .rsv_box > div .btn_01 a:hover {
    color: #fff;
    opacity: 0.8;
  }
}
.flow {
  counter-reset: flow_number;
}
.flow div {
  counter-increment: flow_number 1;
}
.flow div dt::before {
  content: counter(flow_number) ".";
  margin-right: 0.4rem;
}
.flow div dd {
  margin: 0;
  padding: 1rem;
  background: #fffbf0;
  border-radius: 12px;
  text-align: justify;
}
.flow div:not(:last-child) dd {
  margin: 0 0 6rem;
  position: relative;
}
.flow div:not(:last-child) dd::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #ede1bf;
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .flow div {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .flow div dt {
    width: 7em;
    text-align: center;
  }
  .flow div dd {
    flex: 1;
    margin: 0 0 0 1.6rem;
    padding: 2rem;
  }
  .flow div:not(:last-child) dd {
    margin: 0 0 10rem 1.6rem;
  }
}
/* 診療時間・アクセス */
.access .main .access_info .tit_03 {
  margin: 0;
}
.access .main .flex dl {
  margin: 0 0 1rem;
}
.access .main .flex dl dt {
  font-weight: bold;
}
.access .main .flex dl dt::before {
  content: "■";
  font-size: 1.2rem;
  margin-right: 0.4rem;
  color: #2FA999;
}
.access .main .flex dl dd {
  margin: 0 0 0.8rem;
}
.access .main .flex img {
  display: block;
  margin: 2rem auto 0;
  border: 2px solid #bfc0c0;
}
.access .main #clinicroute {
  margin: 1rem auto 0;
}
.access .main .img_flex {
  margin: 1rem 0 0;
}
.access .main .img_flex img ~ img {
  margin: 2rem 0 0;
}

@media screen and (min-width: 48em), print {
  .access .main {
    margin: 0 0 20rem !important;
  }
  .access .main .tbl_time caption {
    font-size: 2rem;
  }
  .access .main .tbl_time tr th {
    padding: 1.4rem;
  }
  .access .main .tbl_time tr td {
    padding: 1.8rem;
  }
  .access .main .access_info > section {
    margin: 1.4rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  .access .main .access_info > section .tit_03 {
    min-width: 12rem;
    text-align: center;
  }
  .access .main .access_info > section p {
    margin-left: 2rem;
    font-size: 1.8rem;
  }
  .access .main .access_info + .mt20 {
    margin: 1.4rem 0 0;
  }
  .access .main .flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .access .main .flex > div {
    width: 61%;
    margin: 0 0 2rem;
    font-size: 1.8rem;
  }
  .access .main .flex > div dl {
    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;
  }
  .access .main .flex > div dl dt {
    width: 19%;
    position: relative;
    margin-right: 2%;
  }
  .access .main .flex > div dl dt span {
    position: absolute;
    right: 0;
  }
  .access .main .flex > div dl dd {
    width: 79%;
  }
  .access .main .flex img {
    width: 38%;
    margin: -7rem 0 0;
  }
  .access .main #clinicroute {
    margin: 2rem auto 0 0;
  }
  .access .main .img_flex {
    margin: 2rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .access .main .img_flex img {
    width: 48%;
    margin: 0;
  }
  .access .main .img_flex img ~ img {
    margin: 0;
  }
}
/* 発熱外来 */
.fever .tel_item {
  font-size: 1.8rem !important;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 48em), print {
  .fever .tel_item {
    font-size: 2.8rem !important;
  }
}
.fever .tel_item::before {
  content: "\e800";
  font-family: "fontello";
  margin: 0 0.4rem;
  font-weight: normal;
}/*# sourceMappingURL=style.css.map */