@charset "UTF-8";
.nolink {
  pointer-events: none !important;
}

:root {
  --main-bg-color: brown;
}

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

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

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

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

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

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

.cf::after {
  clear: both;
}

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

.fl_r {
  float: right;
}

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

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

/* 文字色 -------------------------------------- */
.clr_red {
  color: #f21919;
}

.clr_white {
  color: #fff;
}

/* 文字強調 -------------------------------------- */
.copy {
  font-size: 120%;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.2rem;
}

@media screen and (min-width: 48em), print {
  .center_item {
    display: block;
    text-align: center;
  }
  .center_item > * {
    display: inline-block;
    text-align: left;
  }
}

/* 囲い文字 -------------------------------------- */
*[class*=frame_] {
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 10px;
}
@media screen and (min-width: 48em), print {
  *[class*=frame_] {
    padding: 2.4rem 6rem 2.4rem;
    margin-bottom: 3rem;
    border-radius: 20px;
  }
}
*[class*=frame_].frame_01 {
  background: #e4f4fc;
}
*[class*=frame_].frame_02 {
  background: #d3f4f6;
}

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

.img--w80 {
  margin: 0 auto;
  max-width: 80%;
}

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

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

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.mb40 {
  margin-bottom: 4rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb10 {
  margin-bottom: 1rem;
}

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

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

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

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

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

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .mb40 {
    margin-bottom: 8rem;
  }
  .mb30 {
    margin-bottom: 6rem;
  }
  .mb20 {
    margin-bottom: 4rem;
  }
  .mb10 {
    margin-bottom: 2rem;
  }
  section > section:first-of-type {
    margin-top: 4rem;
  }
  .main > section ~ section,
  .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section,
  .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section,
  .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section,
  .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
/* タイムテーブル -------------------------------------- */
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  table-layout: fixed;
}
.tbl_time caption {
  font-size: 1.4rem;
  caption-side: bottom;
  text-align: left;
  letter-spacing: 0.1rem;
  margin-top: 0.4rem;
}
.tbl_time thead th[scope=col] {
  padding: 0.4rem 0;
  background: #007bbb;
  font-size: 1.2rem;
  color: #fff;
  font-weight: middle;
}
.tbl_time thead th[scope=col]:first-child {
  width: 35%;
  border-radius: 5px 0 0 0;
}
.tbl_time thead th[scope=col]:last-child {
  border-radius: 0 5px 0 0;
  background: #dc456e;
}
.tbl_time tbody tr th {
  padding: 0.8rem 0;
  font-size: 1.2rem;
  background: #fff;
  border-left: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}
.tbl_time tbody tr th.time {
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 1.4rem;
  border-right: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  border-bottom: none;
}
.tbl_time tbody tr.border-bottom--none th,
.tbl_time tbody tr.border-bottom--none td {
  border-bottom: none;
}
.tbl_time tbody tr td {
  text-align: center;
  background: #fff;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  color: #007bbb;
}
.tbl_time tbody tr td.close {
  color: #707070;
}
.tbl_time tbody.am .time {
  background: #fff0d1;
}
.tbl_time tbody.pm tr .time {
  border-radius: 0;
  border-top: 2px solid #007bbb;
  background: #cbedff;
}
.tbl_time tbody.pm tr:last-child th {
  border-radius: 0 0 0 5px;
}
.tbl_time tbody.pm tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 2.2rem;
  }
  .tbl_time caption {
    font-size: 2.2rem;
    margin-top: 1.3rem;
  }
  .tbl_time caption ul li {
    line-height: 1.6;
  }
  .tbl_time thead th[scope=col] {
    padding: 1.4rem 0;
    font-size: 2.2rem;
  }
  .tbl_time thead th[scope=col]:first-child {
    width: 41rem;
    border-radius: 10px 0 0 0;
  }
  .tbl_time thead th[scope=col]:last-child {
    border-radius: 0 10px 0 0;
  }
  .tbl_time tbody tr th {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .tbl_time tbody tr th.time {
    text-align: left;
    padding: 0.8rem 0 0.8rem;
    font-size: 2.2rem;
  }
  .tbl_time tbody tr th.time span {
    text-align: center;
    display: inline-block;
    width: 41rem;
  }
  .tbl_time tbody tr th .clr_red {
    font-size: 2rem;
  }
  .tbl_time tbody tr td {
    padding: 1.8rem;
  }
  .tbl_time tbody.am .time {
    background: #fff0d1;
  }
  .tbl_time tbody.pm tr .time {
    border-radius: 0;
    border-top: 3px solid #007bbb;
  }
  .tbl_time tbody.pm tr:last-child th {
    border-radius: 0 0 0 10px;
  }
  .tbl_time tbody.pm tr:last-child td:last-child {
    border-radius: 0 0 10px 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;
  padding: 3rem 1rem;
  margin: 0 0 3rem;
  min-height: 14rem;
  color: #1e50a2;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.tit_02 {
  color: #333333;
  font-size: 2rem;
  text-align: center;
  margin: 0 0 1.8rem;
  padding: 0;
  line-height: 1.2;
}
.tit_02::before {
  content: "";
  display: block;
  width: 4rem;
  height: 0.4rem;
  background: linear-gradient(to right, #2695de 50%, #1e50a2 50%);
  margin: 0 auto 0.6rem;
}

.tit_03 {
  color: #fff;
  background: #007bbb;
  padding: 0.8rem 1rem 0.8rem 2rem;
  border-radius: 5px;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  position: relative;
}
.tit_03::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.tit_04 {
  color: #513401;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.tit_05 {
  color: #513401;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center/auto auto;
    font-size: 4.4rem;
    padding: 8.9rem 4rem;
    margin: 0 0 3rem;
  }
  .tit_01 span {
    display: block;
    width: 1000px;
    letter-spacing: 0.6rem;
    margin: 0 auto;
    text-align: left;
  }
  .tit_02 {
    font-size: 3.6rem;
    margin: 0 0 3.55rem;
    letter-spacing: 0.4rem;
  }
  .tit_02::before {
    width: 4rem;
    height: 0.5rem;
    margin: 0 auto 1.2rem;
  }
  .tit_03 {
    font-size: 3.2rem;
    border-radius: 10px;
    margin: 0 0 3rem;
    padding: 1.4rem 2rem 1.4rem 3rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
/* リスト回り -------------------------------------- */
.lst_ul01 li {
  padding-left: 2.8rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
.lst_ul01 li:last-child {
  padding-bottom: 0;
}
.lst_ul01 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  background: url(../img/lst_ul01_parts01.svg) no-repeat center/contain;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
}
.lst_ul01 li.none::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul01 li {
    font-size: 2.2rem;
    padding-bottom: 3rem;
    padding-left: 4.5rem;
  }
  .lst_ul01 li::before {
    width: 2.6rem;
    height: 2.6rem;
  }
}
@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%;
  }
}
@media screen and (min-width: 48em), print {
  .lst_ul01.inline {
    gap: 0 2rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.lst_ul01 > .lst_ol01 {
  padding: 1rem 0 0 0;
}
.lst_ul01 > .lst_ol01 li::before {
  color: #333333;
}
.lst_ul01--img02 li::before {
  background: url(../img/lst_ul01_parts02.svg) no-repeat center/contain;
}

.lst_ol01 {
  counter-reset: number;
  margin: 2rem 0 0;
}
.lst_ol01 li {
  counter-increment: number 1;
  padding-left: 2rem;
  padding-bottom: 1rem;
  line-height: 1.4;
  position: relative;
}
.lst_ol01 li:last-child {
  padding-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ol01 li {
    padding-left: 2.8rem;
  }
}
.lst_ol01 li::before {
  display: inline-block;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.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;
  }
}
.lst_dl02 dt {
  font-size: 120%;
  padding: 1rem 1rem;
  background: #e6f7ff;
  border: 1px solid #c9c4be;
  border-bottom: none;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 dt {
    font-size: 2.2rem;
    padding: 2rem 1.8rem;
  }
}
.lst_dl02 dd {
  margin: 0 0 1.8rem;
  padding: 1rem 1rem;
  border: 1px solid #c9c4be;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 dd {
    padding: 1.8rem 1.8rem;
  }
}

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

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex2 > section,
  .flex2 > li {
    width: 48%;
    margin: 0 !important;
  }
  .flex3 li {
    width: 31%;
  }
}
/* リンク -------------------------------------- */
*[class*=btn_] {
  display: block;
  text-align: center;
}
*[class*=btn_] a {
  background: #efefef;
  color: #007bbb;
  text-align: center;
  letter-spacing: 0.1rem;
  padding: 1.6rem 1.6rem;
  border-radius: 50px;
  width: fit-content;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
  z-index: 1;
}
*[class*=btn_] a::after {
  content: "";
  background: #fff;
  border-radius: 50px;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  font-family: "fontello";
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (min-width: 48em), print {
  *[class*=btn_] {
    text-align: left;
  }
  *[class*=btn_] a {
    font-size: 2.2rem;
    margin: 0 auto;
    padding: 1.6rem 1rem;
    min-width: 34rem;
  }
}
*[class*=btn_][class*=tel] a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0.6rem 0;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  background: linear-gradient(to right, #007bbb, #1e50a2);
}
*[class*=btn_][class*=tel] a::before {
  content: "ꀁ";
  font-family: "fontello";
  margin-right: 0.2rem;
}
*[class*=btn_][class*=tel] a::after {
  content: none;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_][class*=tel] a {
    font-size: 2.4rem;
    padding: 2.3rem 3rem;
    pointer-events: none !important;
  }
}
*[class*=btn_][class*=rsv] {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
*[class*=btn_][class*=rsv] a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  padding: 0.6rem 0;
  line-height: 1;
  background: linear-gradient(to right, #60c6cc, #16a3ac);
}
*[class*=btn_][class*=rsv] a::before {
  content: "ꀂ";
  font-family: "fontello";
  margin-right: 0.2rem;
}
*[class*=btn_][class*=rsv] a::after {
  content: none;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_][class*=rsv] a {
    font-size: 2.4rem;
    padding: 2.3rem 2rem;
  }
}
*[class*=btn_][class*=map] a::before {
  content: "ꀔ";
  font-family: "fontello";
  margin-right: 0.4rem;
}
@media screen and (min-width: 48em), print {
  *[class*=btn_][class*=map] {
    text-align: center;
  }
  *[class*=btn_][class*=map] a::before {
    font-size: 2.8rem;
    margin-right: 1rem;
  }
}

.txt_link {
  color: #0574ac;
  text-decoration: none !important;
  border-bottom: 1px solid #0574ac;
}
.txt_link:hover {
  opacity: 0.8;
  border-bottom: none;
}

/* フローチャート -------------------------------------- */
.flow div {
  padding: 1.6rem;
  margin: 0 0 6rem;
  border-radius: 10px;
  border: 2px solid #b6e1d8;
  position: relative;
}
.flow div:last-child {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .flow div {
    border-radius: 20px;
    border: 3px solid #b6e1d8;
    margin: 0 0 7rem;
    padding: 2.2rem 3rem 3rem;
  }
}
.flow div:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 2rem solid #53a756;
  border-right: 4rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 4rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow div:not(:last-child)::after {
    border-right: 7rem solid transparent;
    border-left: 7rem solid transparent;
    border-top: 3rem solid #53a756;
    bottom: -6rem;
  }
}
.flow div dt {
  font-weight: bold;
  font-size: 120%;
  margin: 0 0 1rem;
  color: #53a756;
}
.flow div dd {
  margin: 0;
  padding: 0;
}

/* テーブル -------------------------------------- */
.tbl_low {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.tbl_low thead tr th {
  background: #cbedff;
  text-align: center;
  padding: 0.8rem 1rem;
  border-right: 2px solid #fff;
}
.tbl_low thead tr th:first-child {
  width: 30%;
}
@media screen and (min-width: 48em), print {
  .tbl_low thead tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr th {
  width: 30%;
  padding: 0.8rem;
  background: #fafafa;
  text-align: center;
  font-weight: normal;
  border: 1px solid #c9c4be;
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr th {
    padding: 2rem 2rem;
  }
}
.tbl_low tbody tr td {
  padding: 0.8rem 1rem;
  border: 1px solid #c9c4be;
}
@media screen and (min-width: 48em), print {
  .tbl_low tbody tr td {
    padding: 2rem 2rem;
  }
}
.tbl_low--nohead tbody tr {
  display: block;
}
.tbl_low--nohead tbody tr th {
  display: block;
  background: #e6f7ff;
  width: 100%;
  padding: 1rem;
  text-align: center;
  border-bottom: none;
}
.tbl_low--nohead tbody tr td {
  display: block;
  width: 100%;
  padding: 1.2rem;
  border-bottom: none;
}
.tbl_low--nohead tbody tr:last-child td {
  border-bottom: 1px solid #c9c4be;
}
@media screen and (min-width: 48em), print {
  .tbl_low--nohead tbody tr {
    display: table-row;
  }
  .tbl_low--nohead tbody tr th {
    display: table-cell;
    width: 40%;
  }
  .tbl_low--nohead tbody tr td {
    display: table-cell;
    padding: 2.6rem;
  }
  .tbl_low--nohead tbody tr:last-child th {
    border-bottom: 1px solid #c9c4be;
  }
}
.tbl_low--person {
  table-layout: auto;
}
.tbl_low--person thead {
  display: none;
}
@media screen and (min-width: 48em), print {
  .tbl_low--person thead {
    display: table-header-group;
  }
  .tbl_low--person thead tr th {
    width: 16.6666666667%;
    background: #cbedff;
    padding: 0.8rem 0;
    text-align: center;
  }
  .tbl_low--person thead tr th:first-child {
    width: auto;
    border-radius: 20px 0 0 0;
  }
  .tbl_low--person thead tr th:last-child {
    border-radius: 0 20px 0 0;
  }
}
.tbl_low--person tbody tr td {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-bottom: none;
  gap: 0;
  padding: 0;
}
.tbl_low--person tbody tr td::before {
  content: attr(data-label);
  text-align: center;
  padding: 0.8rem 1rem;
  font-weight: 700;
  width: 100%;
  background: #cbedff;
}
.tbl_low--person tbody tr td .item p {
  height: auto;
  margin: 0;
  padding: 1rem;
  display: flex !important;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 2rem;
}
.tbl_low--person tbody tr td .item p:not(:last-child) {
  border-bottom: 1px solid #aaa;
}
.tbl_low--person tbody tr td .item p .label {
  font-weight: 700;
  width: 20%;
  text-align: right;
  margin: 0;
  padding: 0;
}
.tbl_low--person tbody tr td:last-child {
  border-bottom: 1px solid #c9c4be;
}
@media screen and (min-width: 48em), print {
  .tbl_low--person tbody tr td {
    display: table-cell;
    border-bottom: 1px solid #c9c4be;
  }
  .tbl_low--person tbody tr td::before {
    content: none;
  }
  .tbl_low--person tbody tr td .item {
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 100%;
  }
  .tbl_low--person tbody tr td .item p {
    padding: 0;
    min-height: 17rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .tbl_low--person tbody tr td .item p:not(:last-child) {
    border-bottom: 1px solid #c9c4be;
  }
  .tbl_low--person tbody tr td .item p .label {
    display: none;
  }
}

.tbl_access {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.2rem;
  width: 100%;
}
.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
---------------------------------------------------------------------------------- */
html {
  font-size: 3.125vw;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (min-width: 48em), print {
  html {
    scroll-padding-top: 180px;
  }
}

body {
  background: #fff;
  color: #333333;
  letter-spacing: 0.2rem;
}

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

.overflow {
  overflow-x: hidden;
}

.wrap {
  padding: 0 1rem 0;
}

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 1220px;
    letter-spacing: 1.1px;
  }
  body > .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 10rem auto 0;
  }
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .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");
}
/* ヘッダー -------------------------------------- */
.index .header .logo {
  opacity: 0;
  transition: opacity 1.6s;
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 1rem 1rem 1rem 1rem;
}
.header .logo {
  height: 14rem;
  width: 19rem;
}
.header .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.png) no-repeat center center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (min-width: 48em), print {
  .header {
    width: fit-content;
    top: 19.4rem;
    left: 13.3rem;
  }
  .header .logo {
    width: 70.4rem;
    height: 44.3rem;
  }
}
/* SP ドロップダウンメニュー -------------------------------------- */
#menu {
  z-index: 9999;
  width: 100%;
  height: 0;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#menu .fixed_menu_btn {
  width: 7rem;
  height: 7.4rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  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: #fff;
  color: #3f47cc;
  font-size: 1.2rem;
  border-radius: 0 0 0 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
}
#menu .fixed_menu_btn .hamburger a::before {
  content: "";
  background: url(../img/i_spmenu.svg) no-repeat center/contain;
  width: 3rem;
  height: 3rem;
  font-family: "fontello";
  font-weight: normal;
  font-size: 3.6rem;
  line-height: 0.8;
}
#menu .fixed_menu_btn .hamburger a::after {
  margin: 0.2rem 0 0;
  content: "MENU";
  font-size: 1.2rem;
}
#menu .fixed_menu_btn.active .hamburger a::before {
  content: "\e806";
  background: none;
}
#menu .fixed_menu_btn.active .hamburger a::after {
  content: "CLOSE";
}
#menu #nav {
  display: block;
  visibility: hidden;
  top: 0;
  right: -27rem;
  opacity: 0;
}
#menu #nav.sp_nav {
  width: 27rem;
  height: 100%;
  padding: 10rem 0 12rem;
  background-color: white;
  overflow-y: scroll;
  transition: all 0.5s;
  position: fixed;
  left: auto !important;
  z-index: 203;
}
#menu #nav.sp_nav.open {
  visibility: visible;
  opacity: 1;
  right: 0;
}
#menu #nav.sp_nav > ul {
  display: block;
  font-size: 1.4rem;
}
#menu #nav.sp_nav > ul > li {
  text-align: left;
  margin: 0;
  border-bottom: 1px solid #ccc;
}
#menu #nav.sp_nav > ul > li > a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  padding: 1.6rem 1.2rem 1.6rem 2.6rem;
  color: #333333;
  text-decoration: none !important;
}
#menu #nav.sp_nav > ul > li > a::before {
  font-size: 2.6rem;
  font-family: "fontello";
  margin-right: 1.4rem;
  color: #007bbb;
}
#menu #nav.sp_nav > ul > li > a.home::before {
  content: "ꀃ";
}
#menu #nav.sp_nav > ul > li > a.byouin::before {
  content: "ꀄ";
}
#menu #nav.sp_nav > ul > li > a.access::before {
  content: "ꀅ";
}
#menu #nav.sp_nav > ul > li > a.jushin::before {
  content: "ꀆ";
}
#menu #nav.sp_nav > ul > li > a.recruit::before {
  content: "ꀇ";
}
#menu #nav.sp_nav > ul > li > a.contact::before {
  content: "ꀈ";
}
#menu #nav.sp_nav > ul > li > a.sub {
  position: relative;
}
#menu #nav.sp_nav > ul > li > a.sub::after {
  content: "ꀥ";
  color: #007bbb;
  font-family: "fontello";
  display: inline-block;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: transform 0.2s;
}
#menu #nav.sp_nav > ul > li > a.sub.close::after {
  transform: translateY(-50%) rotateX(180deg);
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav {
  display: none;
  background: #fafafa;
  padding: 1.6rem 1.6rem 1.6rem;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul {
  background: #fff;
  border-radius: 10px;
  margin: 0.2rem 0 0;
  padding: 1.6rem 1rem 1.6rem;
  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 ul li {
  width: 100%;
  border-bottom: none;
  text-align: left;
  margin-bottom: 0.4rem;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a {
  display: block;
  position: relative;
  padding: 1rem 3.4rem 1rem 1rem;
  border-radius: 60px;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a::before {
  content: "ꀧ";
  font-family: "fontello";
  color: #333333;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 1.4rem;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a:hover {
  color: #fff;
  background: #007bbb;
}
#menu #nav.sp_nav > ul > li > a.sub + .subnav ul li a:hover::before {
  color: #fff;
}
#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;
}

@media screen and (min-width: 48em), print {
  .fixed_menu_btn {
    display: none;
  }
  #menu {
    display: block;
    position: fixed;
    z-index: 200;
    top: 3rem;
    right: 3.3rem;
    height: fit-content;
    width: 72rem;
  }
  #menu.overlay {
    display: none;
  }
  #menu #nav {
    all: unset;
    display: block;
    background: none;
  }
  #menu #nav .gnav {
    margin: auto;
    padding: 2.2rem 1.4rem 3.1rem;
    border-radius: 110px;
    background: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 200;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
  }
  #menu #nav .gnav::before {
    content: "";
    display: block;
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    background: rgba(0, 0, 0, 0.2);
    mix-blend-mode: overlay;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    border-radius: 110px;
  }
  #menu #nav .gnav > li {
    width: 16.6666666667%;
  }
  #menu #nav .gnav > li.treatment {
    position: relative;
  }
  #menu #nav .gnav > li > 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;
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
  #menu #nav .gnav > li > a::before {
    content: "";
    font-family: "fontello";
    color: #007bbb;
    font-size: 3.4rem;
    display: block;
    margin: 0 auto 0.6rem;
  }
  #menu #nav .gnav > li > a:hover {
    opacity: 1;
    color: #007bbb;
  }
  #menu #nav .gnav > li > a.sub {
    position: relative;
  }
  #menu #nav .gnav > li > a.sub::after {
    content: "ꀥ";
    font-family: "fontello";
    position: absolute;
    bottom: -2rem;
    margin: auto;
    left: 0;
    right: 0;
    font-size: 1.2rem;
    transition: all 0.2s;
  }
  #menu #nav .gnav > li > a.sub:hover::after {
    color: #007bbb;
  }
  #menu #nav .gnav > li > a.sub.close::after {
    transform: rotateX(180deg);
  }
  #menu #nav .gnav > li > a.home::before {
    content: "ꀃ";
  }
  #menu #nav .gnav > li > a.byouin::before {
    content: "ꀄ";
  }
  #menu #nav .gnav > li > a.access::before {
    content: "ꀅ";
  }
  #menu #nav .gnav > li > a.jushin::before {
    content: "ꀆ";
  }
  #menu #nav .gnav > li > a.recruit::before {
    content: "ꀇ";
  }
  #menu #nav .gnav > li > a.contact::before {
    content: "ꀈ";
  }
  #menu #nav .gnav > li .subnav {
    width: fit-content;
    padding: 2rem 2rem;
    display: none;
    position: absolute;
    top: 11rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(51, 51, 51, 0.15);
  }
  #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;
    gap: 0.8rem 0.6rem;
  }
  #menu #nav .gnav > li .subnav ul li {
    min-width: 26rem;
    width: 100%;
  }
  #menu #nav .gnav > li .subnav ul li a {
    white-space: nowrap;
    color: #333333;
    display: block;
    padding: 1.2rem 3.4rem 1.2rem 2.5rem;
    text-align: left;
    font-size: 1.8rem;
    transition: all 0.2s;
    border-radius: 100px;
    position: relative;
  }
  #menu #nav .gnav > li .subnav ul li a::after {
    content: "ꀧ";
    font-family: "fontello";
    color: #333333;
    font-size: 1.2rem;
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 1.4rem;
    transition: all 0.2s;
  }
  #menu #nav .gnav > li .subnav ul li a:hover {
    color: #fff;
    background: #007bbb;
  }
  #menu #nav .gnav > li .subnav ul li a:hover::after {
    color: #fff;
  }
  #menu {
    /* Gナビ　ハイライト */
  }
}
/* クリニック概要 -------------------------------------- */
.overview {
  padding: 2rem 1rem 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #fafafa;
}
.overview > .wrap .overview_info .address_area {
  text-align: center;
  padding: 1rem 1rem 2rem;
  border-bottom: 1px solid #cccccc;
}
.overview > .wrap .overview_info .contact_area {
  padding: 2rem 1rem 1rem;
}
.overview > .wrap .overview_info .contact_area > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.overview > .wrap .overview_info .contact_area > ul li {
  width: 48%;
}
.overview > .wrap .overview_info .contact_area .fax {
  text-align: center;
}
.overview > .wrap .overview_info .contact_area .fax span {
  font-size: 1.6rem;
}
.overview > .wrap .overview_item {
  padding: 2rem 0 2rem;
}
.overview > .wrap .overview_item .dl_gaiyo div {
  border-bottom: 1px solid #cccccc;
  padding: 1rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.overview > .wrap .overview_item .dl_gaiyo div:first-child {
  border-top: 1px solid #ccc;
}
.overview > .wrap .overview_item .dl_gaiyo div dt {
  width: 28%;
  padding: 0.4rem;
  margin: 0 1rem 0 0;
  text-align: center;
  background: #dfdfdf;
  border-radius: 5px;
}
.overview > .wrap .overview_item .dl_gaiyo div dd {
  flex: 1;
  padding: 0.4rem;
  margin: 0;
}
.overview > .wrap .overview_item .gmap {
  height: 30rem;
}
.overview > .wrap .overview_item .gmap iframe {
  height: 100%;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 0 0;
    padding: 6.85rem 0 5.15rem;
    font-size: 2.2rem;
  }
  .overview > .wrap .overview_info {
    margin: 0 0 3.15rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .overview > .wrap .overview_info .address_area {
    width: 53rem;
    text-align: center;
    padding: 0rem;
    border-right: 1px solid #cccccc;
    border-bottom: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .overview > .wrap .overview_info .contact_area {
    flex: 1;
    padding: 1.4rem 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;
  }
  .overview > .wrap .overview_info .contact_area > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 1.6rem;
  }
  .overview > .wrap .overview_info .contact_area > ul li {
    width: 24rem;
    min-width: auto;
  }
  .overview > .wrap .overview_info .contact_area > ul li a {
    min-width: auto;
  }
  .overview > .wrap .overview_info .contact_area .fax {
    margin: 0;
    font-size: 2.2rem;
  }
  .overview > .wrap .overview_info .contact_area .fax span {
    font-size: 2.8rem;
  }
  .overview > .wrap .overview_item {
    padding: 4.65rem 0 0;
  }
  .overview > .wrap .overview_item .dl_gaiyo {
    margin: 0 0 5.85rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .overview > .wrap .overview_item .dl_gaiyo div {
    width: 58rem;
    padding: 2rem 0;
  }
  .overview > .wrap .overview_item .dl_gaiyo div:nth-child(2) {
    border-top: 1px solid #ccc;
  }
  .overview > .wrap .overview_item .dl_gaiyo div dt {
    width: 17.5;
    padding: 1.5rem 0.2rem;
    margin: 0 2.2rem 0 0;
  }
  .overview > .wrap .overview_item .dl_gaiyo div dd {
    flex: 1;
    padding: 0.4rem;
    margin: 0;
  }
  .overview > .wrap .overview_item .gmap {
    height: 45rem;
    margin-bottom: 4.85rem;
  }
}
/* フッター -------------------------------------- */
#pageup {
  width: 14%;
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 200;
  cursor: pointer;
}
#pageup a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  min-height: 4.6rem;
  text-align: center;
  padding: 0.4rem;
  background: #ffffff;
}
#pageup a::before {
  text-align: center;
  font-size: 1.4rem;
  font-family: "fontello";
  content: "ꀩ";
  color: #333333;
}
#pageup a span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #pageup {
    right: 4.8rem;
    bottom: 5rem;
    width: 7.4rem;
    height: 7.4rem;
  }
  #pageup a {
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
  }
  #pageup a::before {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 2.2rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.footer_menu {
  width: 100%;
  min-height: 4.6rem;
  background: #eee;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  font-size: 1.4rem;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.footer_menu .tel {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  width: 43%;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1;
}
.footer_menu .tel a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  text-align: center;
  padding: 0 1% 0 0;
  line-height: 1;
  background: linear-gradient(to right, #007bbb, #1e50a2);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
}
.footer_menu .tel a::before {
  content: "ꀁ";
  font-family: "fontello";
  margin-right: 0.2rem;
}
.footer_menu .rsv {
  width: 43%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer_menu .rsv a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  text-align: center;
  padding: 0 1% 0 0;
  line-height: 1;
  background: linear-gradient(to right, #60c6cc, #16a3ac);
}
.footer_menu .rsv a::before {
  content: "ꀂ";
  font-family: "fontello";
  margin-right: 0.2rem;
}

@media screen and (min-width: 48em), print {
  .footer_menu {
    width: 47.6rem;
    min-height: 7.4rem;
    bottom: 5rem;
    right: 12.4rem;
    left: auto;
    background: none;
    padding: 0;
    gap: 0 0.2rem;
  }
  .footer_menu .tel {
    width: 24.4rem;
    font-size: 2.4rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    mix-blend-mode: overlay;
    position: relative;
    -webkit-align-items: center;
    align-items: center;
    pointer-events: none !important;
    cursor: text;
  }
  .footer_menu .tel a {
    width: calc(100% - 1.2rem);
    height: calc(100% - 1.2rem);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
    border-radius: 50px;
    font-size: 2.4rem;
    pointer-events: none !important;
  }
  .footer_menu .tel a::before {
    font-size: 2.6rem;
  }
  .footer_menu .rsv {
    width: 24.4rem;
    border-radius: 50px;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    mix-blend-mode: overlay;
    -webkit-align-items: center;
    align-items: center;
  }
  .footer_menu .rsv a {
    width: calc(100% - 1.2rem);
    height: calc(100% - 1.2rem);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
    border-radius: 50px;
    font-size: 2.4rem;
  }
  .footer_menu .rsv a::before {
    font-size: 2.6rem;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4.6rem;
}
.footer .footer_pc {
  display: none;
}
.footer .footer_sp {
  font-size: 1.2rem;
  padding: 0 1.2rem;
  background: #fafafa;
}
.footer .footer_sp ul > li {
  border-bottom: 1px solid #cccccc;
}
.footer .footer_sp ul > li a {
  padding: 2rem 0;
  font-size: 1.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.footer .footer_sp ul > li a.sub {
  position: relative;
}
.footer .footer_sp ul > li a.sub::after {
  content: "ꀥ";
  display: inline-block;
  width: fit-content;
  transition: transform 0.2s;
  font-family: "fontello";
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 1rem;
}
.footer .footer_sp ul > li a.sub.open::after {
  transform: rotate(180deg);
}
.footer .footer_sp ul > li a.sub + .subnav {
  display: none;
  padding: 1rem;
}
.footer .footer_sp ul > li a.sub + .subnav ul {
  border-radius: 10px;
  background: #fff;
}
.footer .footer_sp ul > li a.sub + .subnav ul li {
  border: none;
}
.footer .footer_sp ul > li a.sub + .subnav ul li a {
  text-align: left;
  padding: 1.4rem 1.2rem 1.4rem 1.6rem;
  position: relative;
}
.footer .footer_sp ul > li a.sub + .subnav ul li a::after {
  content: "ꀧ";
  font-family: "fontello";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 0.8rem;
}
.footer .copy {
  display: block;
  background: #007bbb;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 0;
  }
  .footer .footer_pc {
    display: block;
    padding: 6.1rem 0 8.75rem;
  }
  .footer .footer_pc .wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .footer .footer_pc .wrap > ul {
    width: 27rem;
    margin-right: 6.6rem;
    border-right: 1px solid #cccccc;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem 0;
  }
  .footer .footer_pc .wrap > ul li {
    text-align: left;
  }
  .footer .footer_pc .wrap > ul li.treatment {
    display: none;
  }
  .footer .footer_pc .wrap > ul li a {
    font-size: 2.2rem;
    display: inline-block;
  }
  .footer .footer_pc .wrap > div p {
    text-align: left;
    margin: 3.4rem 0 1.4rem;
    font-size: 2.4rem;
    color: #0574ac;
  }
  .footer .footer_pc .wrap > div p:first-of-type {
    margin: 0 0 1.4rem;
  }
  .footer .footer_pc .wrap > div ul {
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.7rem 2.7rem;
  }
  .footer .footer_pc .wrap > div ul li a {
    font-size: 2.2rem;
    display: block;
    text-align: left;
  }
  .footer .footer_pc .wrap > div ul li a::before {
    content: "-";
    margin-right: 0.4rem;
  }
  .footer .footer_sp {
    display: none;
  }
  .footer .copy {
    font-size: 1.6rem;
    padding: 1.4rem 0;
  }
}
/*---------パンくずリスト----------*/
body.index .breadcrumb_area {
  display: none;
}

body:not(.index) .breadcrumb_area {
  display: block;
}

.breadcrumb_list {
  display: -webkit-flex;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.breadcrumb_list li {
  font-size: 1rem;
  display: inline-block;
}
.breadcrumb_list li:not(:last-child)::after {
  content: "ꀧ";
  font-family: "fontello";
  font-size: 1rem;
  transform: scale(0.8);
  margin-right: 0.4rem;
  display: inline-block;
  margin: 0 1rem;
  position: relative;
  top: 0;
}
.breadcrumb_list li a:hover {
  opacity: 1;
  text-decoration: underline;
}
@media screen and (min-width: 48em), print {
  .breadcrumb_list {
    margin: 0 auto;
    padding: 2rem 0 2rem;
    width: 1200px;
  }
  .breadcrumb_list li {
    font-size: 1.6rem;
  }
  .breadcrumb_list li:not(:last-child)::after {
    top: -0.2rem;
  }
}

/* ----------------------------------------------------------------------------------
トップ　_top.scss
---------------------------------------------------------------------------------- */
/*共通の背景パーツ用 -------------------------------------- */
.bg_parts {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  pointer-events: none;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  .bg_parts {
    width: 1200px;
  }
}
.bg_parts .bg_item {
  position: absolute;
}
.bg_parts .bg_item.item_01 {
  background: url(../img/a_bg_parts01.png) no-repeat center/contain;
}
.bg_parts .bg_item.item_02 {
  background: url(../img/a_bg_parts02.png) no-repeat center/contain;
}
.bg_parts .bg_item.item_03 {
  background: url(../img/a_bg_parts01.png) no-repeat center/contain;
}

/* キービジュアル -------------------------------------- */
.keyvsl_area {
  position: relative;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s;
}
.keyvsl_area #keyvsl_sp {
  display: block;
  margin: 0;
  max-width: 100%;
  height: 30rem;
}
.keyvsl_area #keyvsl_sp .slide {
  height: 100%;
}
.keyvsl_area #keyvsl_sp .slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.keyvsl_area #keyvsl {
  display: none;
}
.keyvsl_area .kv_contents .kv_txt {
  padding: 0.2rem;
  font-size: 1.2rem;
  background: linear-gradient(to right, #777ddc, #3e46d2);
}
.keyvsl_area .kv_contents .kv_txt span {
  word-break: auto-phrase;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 1.2rem 1rem;
  gap: 0 1rem;
  color: #fff;
  border: 1px solid #fff;
}
.keyvsl_area .kv_contents .kv_txt span::before, .keyvsl_area .kv_contents .kv_txt span::after {
  font-size: 1rem;
  content: "●";
}

@media screen and (min-width: 48em), print {
  .keyvsl_area #keyvsl_sp {
    display: none;
  }
  .keyvsl_area #keyvsl {
    display: block;
    margin: 0;
    max-width: 100%;
    height: 100.15rem;
  }
  .keyvsl_area #keyvsl .slide {
    height: 100%;
  }
  .keyvsl_area #keyvsl .slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .keyvsl_area .kv_contents {
    width: 56rem;
    position: absolute;
    right: 4.8rem;
    bottom: 28rem;
  }
  .keyvsl_area .kv_contents .kv_txt {
    width: 100%;
    font-size: 2rem;
  }
  .keyvsl_area .kv_contents .kv_txt span {
    padding: 1.3rem 1rem;
    gap: 0 1.4rem;
  }
  .keyvsl_area .kv_contents .kv_txt span::before, .keyvsl_area .kv_contents .kv_txt span::after {
    font-size: 1.4rem;
  }
}
/* お知らせ -------------------------------------- */
.info {
  padding: 2rem 1rem 4rem;
}
.info .wrap {
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  position: relative;
}
.info .wrap::before {
  content: "ꀉ";
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: "fontello";
  color: #fff;
  font-size: 4rem;
  width: 20%;
  height: 6rem;
  position: absolute;
  top: 0;
  left: 2rem;
  background: linear-gradient(to bottom, #007bbb, #1e50a2);
  border-radius: 0 0 85px 85px;
}
.info .wrap .bg_parts {
  z-index: -1;
}
.info .wrap .bg_parts .bg_item {
  bottom: -6rem;
  right: -1rem;
}
.info .wrap .bg_parts .bg_item.item_01 {
  width: 12rem;
  height: 8rem;
}
.info .wrap dl {
  margin: 0;
  line-height: 1.4;
  padding: 1rem;
  height: 100%;
}
.info .wrap dl .news_line {
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid #d8d8d8;
}
.info .wrap dl .news_line:nth-of-type(n + 4) dd {
  display: none;
}
.info .wrap dl .news_line dt {
  margin: 0;
  cursor: pointer;
  display: table;
}
.info .wrap dl .news_line dt .date {
  display: block;
  font-size: 1.2rem;
  color: #007bbb;
  margin: 0 0 0.4rem;
}
.info .wrap dl .news_line dt .tit {
  position: relative;
  color: #333333;
  font-size: 1.6rem;
  padding-left: 2.6rem;
  display: block;
}
.info .wrap dl .news_line dt .tit::before {
  content: "ꀡ";
  font-family: "fontello";
  color: #2695de;
  display: inline-block;
  position: absolute;
  top: -0.2rem;
  left: 0;
  font-size: 2rem;
  transition: transform 0.2s;
}
.info .wrap dl .news_line dt .tit:hover {
  opacity: 0.8;
}
.info .wrap dl .news_line dt.close .tit::before {
  transform: rotate(180deg);
}
.info .wrap dl .news_line dd {
  padding: 1rem 0 0;
  margin: 0;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 500;
}
.info .wrap dl .news_line dd p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 8.2rem 0 4.5rem;
  }
  .info .wrap {
    padding: 5.5rem 6.9rem 4.4rem 4.6rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0 5.7rem;
  }
  .info .wrap::before {
    font-size: 9.6rem;
    width: 15rem;
    height: 15rem;
    left: 4.5rem;
  }
  .info .wrap .tit_02 {
    margin: 22rem 0 0;
    flex: 0 0 auto;
  }
  .info .wrap .bg_parts .bg_item {
    bottom: -10.5rem;
    right: -22.6rem;
  }
  .info .wrap .bg_parts .bg_item.item_01 {
    width: 50rem;
    height: 26.4rem;
  }
  .info .wrap dl {
    flex: 1;
    padding: 0;
  }
  .info .wrap dl .news_line {
    margin: 0 0 2rem;
    padding: 0 0 2rem;
  }
  .info .wrap dl .news_line dt .date {
    font-size: 1.6rem;
    margin: 0 0 0.4rem;
  }
  .info .wrap dl .news_line dt .tit {
    font-size: 2.4rem;
    padding-left: 4.3rem;
  }
  .info .wrap dl .news_line dt .tit::before {
    top: 0;
    font-size: 2.6rem;
  }
  .info .wrap dl .news_line dd {
    font-size: 2rem;
  }
}
/* 受診のご案内 -------------------------------------- */
.guidance {
  padding: 2rem 0 2rem;
  position: relative;
  z-index: 1;
}
.guidance .bg_parts {
  z-index: 0;
}
.guidance .bg_parts .bg_item {
  bottom: -4rem;
  left: 0.2rem;
}
.guidance .bg_parts .bg_item.item_01 {
  width: 12rem;
  height: 8rem;
}
.guidance ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem 0;
}
.guidance ul li {
  width: 48%;
}
.guidance ul li a {
  text-decoration: none !important;
  padding: 0 0 2.6rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: #007bbb;
  color: #fff;
  text-align: center;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  position: relative;
}
.guidance ul li a:hover {
  opacity: 1;
  filter: contrast(1.1);
}
.guidance ul li a img {
  display: block;
  border-radius: 10px 10px 0 0;
}
.guidance ul li a p {
  padding: 1rem 0 1rem;
  height: 100%;
  display: flex !important;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.guidance ul li a p::before, .guidance ul li a p::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  font-family: "fontello";
}
.guidance ul li a p::before {
  top: 6.4rem;
  width: 4.6rem;
  height: 4.6rem;
  font-size: 2.6rem;
  background: #1e50a2;
  border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.guidance ul li a p::after {
  content: "ꀤ";
  bottom: 0.8rem;
  font-size: 2rem;
}
.guidance ul li a.psychiatric p::before {
  content: "ꀐ";
}
.guidance ul li a.memory p::before {
  content: "ꀲ";
}
.guidance ul li a.hospitalization p::before {
  content: "ꀑ";
}
.guidance ul li a.medicalconsultation p::before {
  content: "ꀒ";
}
.guidance ul li a.visitingnursingstation p::before {
  content: "ꀓ";
}
.guidance ul li a.visitingnursingstation p .size_s {
  font-size: 80%;
  letter-spacing: 0;
}
.guidance ul li a.employmentsupport p::before {
  content: "ꀗ";
}
.guidance ul li a.daycare p::before {
  content: "ꀴ";
}
.guidance ul li a.symptoms p::before {
  content: "ꀵ";
}

@media screen and (min-width: 48em), print {
  .guidance {
    padding: 4.5rem 0 16rem;
  }
  .guidance .bg_parts .bg_item {
    bottom: -1rem;
    left: -22rem;
  }
  .guidance .bg_parts .bg_item.item_01 {
    width: 50rem;
    height: 26.4rem;
  }
  .guidance ul {
    margin: 4.6rem 0 0;
    gap: 3rem 3rem;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .guidance ul li {
    width: 27.1rem;
  }
  .guidance ul li a {
    padding: 0 0 4rem;
  }
  .guidance ul li a p {
    padding: 4rem 0 4rem;
    line-height: 1.2;
    font-size: 2.6rem;
  }
  .guidance ul li a p::before {
    top: 11.6rem;
    width: 9.8rem;
    height: 9.8rem;
    font-size: 4.6rem;
  }
  .guidance ul li a p::after {
    bottom: 3.3rem;
    font-size: 4.6rem;
  }
  .guidance ul li a .size_s {
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
    line-height: 1.6;
  }
}
/* 院長挨拶 -------------------------------------- */
/* 秦野厚生病院の特長 -------------------------------------- */
/* 症状・病気について -------------------------------------- */
.section_conditions {
  padding: 2rem 0 2rem;
  background: linear-gradient(to bottom, #ffffff, #007bbb);
}
.section_conditions .wrap .ex_txt {
  text-align: center;
}
.section_conditions .wrap > div {
  box-shadow: 0 10px 30px rgba(72, 129, 159, 0.39);
  position: relative;
  border-radius: 10px;
}
.section_conditions .wrap > div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.section_conditions .wrap > div ~ div {
  margin: 2rem 0 0;
}
.section_conditions .wrap > div > section {
  background: #fff;
  padding: 2.6rem 3rem 3rem;
  border-radius: 10px;
  overflow: hidden;
}
.section_conditions .wrap > div > section .conditions_h3 {
  margin: 0 0 1.2rem;
  display: inline-flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.section_conditions .wrap > div > section .conditions_h3::before {
  content: "";
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  border-radius: 10px;
  margin-right: 1.2rem;
  font-family: "fontello";
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.section_conditions .wrap > div > section .conditions_h3 span {
  font-size: 120%;
}
.section_conditions .wrap > div > section .img {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.section_conditions .wrap > div > section .img img {
  object-fit: cover;
}
.section_conditions .wrap > div > section .lst_ul01 {
  margin: 1.8rem 0 0;
}
.section_conditions .wrap > div > section .lst_ul01 a {
  display: inline-block;
  text-decoration: none !important;
  color: #007bbb;
  border-bottom: 1px solid #007bbb;
}
.section_conditions .wrap > div > section .lst_ul01 a:hover {
  opacity: 0.8;
}
.section_conditions .wrap > div.item_01::before {
  border: 1px solid #007bbb;
  border-radius: 10px;
  right: -0.6rem;
  bottom: -0.6rem;
}
.section_conditions .wrap > div.item_01 section {
  background: url(../img/index_section_conditions_bg01.png) no-repeat top right/100% auto, #fff;
}
.section_conditions .wrap > div.item_01 section .conditions_h3 span {
  color: #007bbb;
}
.section_conditions .wrap > div.item_01 section .conditions_h3::before {
  content: "ꀙ";
  background: #007bbb;
}
.section_conditions .wrap > div.item_01 section .img {
  border-radius: 10px 10px 100px 10px;
}
.section_conditions .wrap > div.item_01 section .lst_ul01 a:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.section_conditions .wrap > div.item_02::before {
  border: 1px solid #1ba6af;
  border-radius: 10px;
  left: -0.6rem;
  bottom: -0.6rem;
}
.section_conditions .wrap > div.item_02 section {
  background: url(../img/index_section_conditions_bg02.png) no-repeat top left/100% auto, #fff;
}
.section_conditions .wrap > div.item_02 section .conditions_h3 span {
  color: #1ba6af;
}
.section_conditions .wrap > div.item_02 section .conditions_h3::before {
  content: "ꀠ";
  background: #1ba6af;
}
.section_conditions .wrap > div.item_02 section .img {
  border-radius: 10px 10px 10px 100px;
}
.section_conditions .wrap > div.item_02 section .lst_ul01 a {
  color: #1ba6af;
}
.section_conditions .wrap > div.item_02 section .lst_ul01 a:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

@media screen and (min-width: 48em), print {
  .section_conditions {
    padding: 7rem 0 12rem;
  }
  .section_conditions .wrap .ex_txt {
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 0.2rem;
    margin: 0 0 6.35rem;
  }
  .section_conditions .wrap .clr_white {
    text-align: center;
    font-size: 2.4rem;
    margin: 4.55rem 0 0;
  }
  .section_conditions .wrap > div::before {
    z-index: 1;
  }
  .section_conditions .wrap > div ~ div {
    margin: 8.8rem 0 0;
  }
  .section_conditions .wrap > div > section {
    padding: 2.6rem 3rem 3rem;
    border-radius: 10px;
    overflow: unset;
    position: relative;
  }
  .section_conditions .wrap > div > section .conditions_h3 {
    margin: 0 0 1.2rem;
    font-size: 2.6rem;
    letter-spacing: 0.2rem;
  }
  .section_conditions .wrap > div > section .conditions_h3::before {
    width: 8.5rem;
    height: 8.5rem;
    font-size: 5.2rem;
    border-radius: 20px;
    margin-right: 1.2rem;
  }
  .section_conditions .wrap > div > section .conditions_h3 span {
    font-size: 3.4rem;
    margin-left: 0.8rem;
  }
  .section_conditions .wrap > div > section .img {
    width: 38.5rem;
    height: 39.5rem;
    position: absolute;
    z-index: 1;
  }
  .section_conditions .wrap > div > section .img img {
    height: 100%;
    max-width: 38.5rem;
  }
  .section_conditions .wrap > div > section .lst_ul01 {
    margin: 1.8rem 0 0;
  }
  .section_conditions .wrap > div > section .lst_ul01 li {
    font-size: 2rem;
  }
  .section_conditions .wrap > div.item_01::before {
    border: 1px solid #007bbb;
    border-radius: 12px;
    right: -1rem;
    bottom: -1rem;
  }
  .section_conditions .wrap > div.item_01 section {
    padding: 3.95rem 2.7rem 5.8rem 32.1rem;
    background: url(../img/index_section_conditions_bg01.png) no-repeat top right/100% auto, url(../img/index_section_conditions_bg03.jpg) no-repeat bottom left -0.4rem/37rem auto, #fff;
  }
  .section_conditions .wrap > div.item_01 section .img {
    border-radius: 10px 10px 200px 10px;
    left: -9.5rem;
    top: 5.2rem;
  }
  .section_conditions .wrap > div.item_01 section .lst_ul01 li {
    width: 100%;
  }
  .section_conditions .wrap > div.item_01 section .lst_ul01 li a:hover {
    color: #007bbb;
  }
  .section_conditions .wrap > div.item_02::before {
    border: 1px solid #1ba6af;
    border-radius: 12px;
    left: -1rem;
    bottom: -1rem;
  }
  .section_conditions .wrap > div.item_02 section {
    padding: 3.95rem 32.1rem 6rem 6.6rem;
    background: url(../img/index_section_conditions_bg02.png) no-repeat top left/100% auto, url(../img/index_section_conditions_bg04.jpg) no-repeat bottom right -0.4rem/37rem auto, #fff;
  }
  .section_conditions .wrap > div.item_02 section .img {
    border-radius: 10px 10px 10px 200px;
    right: -11.4rem;
    top: 6.35rem;
  }
  .section_conditions .wrap > div.item_02 section .lst_ul01 {
    font-size: 2.2rem;
  }
}
/* ----------------------------------------------------------------------------------
下層　_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .header {
  position: relative;
  padding: 0;
}
body:not(.index) .header::before, body:not(.index) .header::after {
  content: "";
  display: block;
  width: 13rem;
  height: 7rem;
  background-image: url(../img/a_bg_parts01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -3rem;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header::before, body:not(.index) .header::after {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 172rem;
    height: 26.4rem;
    bottom: -20rem;
    background-position: left center;
  }
}
body:not(.index) .header::after {
  left: auto;
  right: 0;
  transform: rotateY(180deg);
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header::after {
    transform: translateX(-50%);
    left: 50%;
    right: auto;
    background-position: right center;
  }
}
body:not(.index) .header .tit_01 {
  min-height: 20rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .header {
    width: 100%;
    top: auto;
    left: auto;
  }
  body:not(.index) .header .tit_01 {
    min-height: 56.4rem;
  }
}
body:not(.index) .wrap {
  position: relative;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .wrap {
    width: 1000px;
  }
}
body:not(.index) .main {
  margin: 0 1rem 6rem;
  padding: 4rem 0 4rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 10rem;
    padding: 8.7rem 0 0;
    font-size: 2rem;
  }
}
body:not(.index) .overview {
  display: none;
}
@media screen and (min-width: 48em), print {
  .cf .img_l,
  .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}
/* 法人・施設概要 */
.aboutus .philosophy-feature {
  background: url(../img/aboutus_philosophy-feature_philosophy_bg01.jpg) no-repeat top center/180% auto;
  padding: 2rem 0 2rem;
  position: relative;
  z-index: 1;
}
.aboutus .philosophy-feature > .wrap > .bg_parts {
  z-index: -1;
}
.aboutus .philosophy-feature > .wrap > .bg_parts .bg_item {
  top: 2rem;
  left: 1rem;
}
.aboutus .philosophy-feature > .wrap > .bg_parts .bg_item.item_01 {
  width: 10rem;
  height: 4rem;
}
.aboutus .philosophy-feature > .wrap {
  margin: 0;
  padding: 0;
}
.aboutus .philosophy-feature > .wrap .philosophy-feature_h2 {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
}
.aboutus .philosophy-feature > .wrap .philosophy-feature_h2 span {
  display: block;
  font-size: 1.2rem;
}
.aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3 {
  width: 60%;
  margin: 0 auto -1px;
  padding: 1.4rem 0 1.2rem;
  text-align: center;
  font-size: 1.6rem;
  background: #fff;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3::before, .aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 2rem;
  height: 100%;
}
.aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3::before {
  left: -2rem;
  background: url(../img/aboutus_parts_curve01.svg) no-repeat bottom left/contain;
}
.aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3::after {
  right: -2rem;
  background: url(../img/aboutus_parts_curve02.svg) no-repeat bottom right/contain;
}
.aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3 span {
  display: inline-flex;
  color: #007bbb;
  border-bottom: 1px solid #007bbb;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents {
  padding: 1rem 3rem 2rem;
  background: #fff;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .ex_txt {
  margin: 0 auto 2rem;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 1rem;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .ex_txt::before, .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .ex_txt::after {
  content: "●";
  display: block;
  color: #2695de;
  font-size: 2rem;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul {
  margin: 2rem 0 0;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li {
  padding: 1rem 2.6rem;
  margin: 0 0 1.8rem;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: #222;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li:last-child {
  margin: 0;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li p {
  margin: 0;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li p.tit {
  font-size: 110%;
  letter-spacing: 0.1rem;
  margin: 0 0 1rem;
  text-align: center;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li p.tit::before {
  font-size: 2.8rem;
  font-family: "fontello";
  margin-right: 0.8rem;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.ordermade::before {
  background: linear-gradient(to bottom, #31b7e9, #0189cf);
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.ordermade p.tit {
  color: #007bbb;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.ordermade p.tit::before {
  content: "ꀕ";
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.network::before {
  background: linear-gradient(to bottom, #f8a2cb, #eb68a7);
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.network p.tit {
  color: #eb809d;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.network p.tit::before {
  content: "ꀖ";
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.empowerment::before {
  background: linear-gradient(to bottom, #ffac06, #ee7c09);
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.empowerment p.tit {
  color: #f2a304;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.empowerment p.tit::before {
  content: "ꀗ";
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.partnership::before {
  background: linear-gradient(to bottom, #c0e8bf, #43a400);
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.partnership p.tit {
  color: #4fb74c;
}
.aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li.partnership p.tit::before {
  content: "ꀘ";
}
.aboutus .philosophy-feature > .wrap > section.feature_area {
  padding: 0 0 2rem;
  margin: 0 0 0;
  background: url(../img/aboutus_philosophy-feature_feature_bg01.jpg) no-repeat bottom center/cover;
  position: relative;
  z-index: 1;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .philosophy-feature_h3 {
  background: none;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .philosophy-feature_h3::before, .aboutus .philosophy-feature > .wrap > section.feature_area .philosophy-feature_h3::after {
  content: none;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .bg_parts {
  z-index: -1;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .bg_parts .bg_item.item_01 {
  width: 16rem;
  height: 8rem;
  top: 4rem;
  right: 0.4rem;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .bg_parts .bg_item.item_02 {
  width: 10rem;
  height: 4rem;
  top: 2rem;
  left: 0.4rem;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .bg_parts .bg_item.item_03 {
  width: 13rem;
  height: 6rem;
  bottom: 0.2rem;
  left: 0.4rem;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul {
  margin: 2.4rem 0 0;
  padding: 0 1rem;
  counter-reset: feature_num;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li {
  counter-increment: feature_num 1;
  margin: 0 0 2.4rem;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure {
  margin: 0;
  padding: 0;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure img {
  display: block;
  max-width: 80%;
  border-radius: 10px;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption {
  max-width: 90%;
  background: rgba(255, 255, 255, 0.8);
  margin: -2rem 0 0 auto;
  padding: 0.4rem 1.6rem;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption::before {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: 1px solid #007bbb;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption .num {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  position: absolute;
  left: -1rem;
  top: -2rem;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption .num::before {
  content: counter(feature_num, decimal-leading-zero);
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
  background: #222;
  border-radius: 50%;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption .num::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: -0.2rem;
  bottom: -0.2rem;
  border: 1px solid #1e50a2;
  border-radius: 50%;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption .tit {
  color: #007bbb;
  font-size: 110%;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption .txt {
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 500;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li:nth-child(odd) figure figcaption .num::before {
  background: #007bbb;
}
.aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li:nth-child(even) figure figcaption .num::before {
  background: #1e50a2;
}
@media screen and (min-width: 48em), print {
  .aboutus .philosophy-feature {
    background: url(../img/aboutus_philosophy-feature_philosophy_bg01.jpg) no-repeat top center/auto auto;
    padding: 10.3rem 0 0;
    position: relative;
  }
  .aboutus .philosophy-feature > .wrap {
    width: 1200px;
  }
  .aboutus .philosophy-feature > .wrap > .bg_parts .bg_item {
    top: 15.6rem;
    left: -21rem;
  }
  .aboutus .philosophy-feature > .wrap > .bg_parts .bg_item.item_01 {
    width: 50rem;
    height: 26.4rem;
  }
  .aboutus .philosophy-feature > .wrap {
    margin: 0 auto;
  }
  .aboutus .philosophy-feature > .wrap .philosophy-feature_h2 {
    font-size: 4.8rem;
    margin: 0 0 2rem;
    padding-right: 60.2rem;
  }
  .aboutus .philosophy-feature > .wrap .philosophy-feature_h2 span {
    font-size: 2.4rem;
    margin: 0 0 0.2rem;
  }
  .aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3 {
    width: auto;
    background: none;
    padding: 0.6rem 0 0.6rem;
    font-size: 3.4rem;
    border-radius: 0;
  }
  .aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3::before, .aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3::after {
    content: none;
  }
  .aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3 span {
    display: inline-flex;
    padding: 0 0 0.4rem;
  }
  .aboutus .philosophy-feature > .wrap > section .philosophy-feature_h3.philosophy {
    padding-right: 60.2rem;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area {
    position: relative;
    z-index: 3;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents {
    padding: 0;
    background: none;
    position: relative;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -9999px;
    width: 11353px; /* 全体に伸ばす */
    height: 46rem;
    border-radius: 0 50px 0 0;
    background: #fff;
    z-index: -1;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents::after {
    content: "";
    position: absolute;
    bottom: 4.2rem;
    right: -21.5rem;
    width: 60.92px;
    height: 60.92px;
    background: url(../img/aboutus_parts_curve02.svg) no-repeat right bottom, 60.92px 60.92px;
    z-index: -1;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .txt_c {
    font-size: 2.6rem;
    margin: 0 auto 4.2rem;
    padding-right: 60.2rem;
    letter-spacing: 3.6px;
    line-height: 1.8;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .ex_txt {
    margin: 0 auto 2.2rem;
    padding-right: 60.2rem;
    letter-spacing: 3.6px;
    font-size: 2.6rem;
    gap: 0 0.8rem;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area {
    padding: 0 0 4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    width: 1200px;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area img {
    display: block;
    width: 50.9rem;
    margin-left: 3.8rem;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul {
    margin: 0;
    width: 58.7rem;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li {
    min-height: 9.8rem;
    padding: 0.6rem 1rem;
    margin: 0 0 2.3rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li::before {
    width: 1rem;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li p {
    margin: 0;
    padding: 1.6rem 1rem 1.6rem 1.8rem;
    width: 29rem;
    font-size: 2rem;
    letter-spacing: 1px;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li p.tit {
    font-size: 2.6rem;
    margin: 0;
    padding: 0.4rem 1.4rem 0.4rem 1.6rem;
    letter-spacing: 0.4rem;
    text-align: left;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  .aboutus .philosophy-feature > .wrap > section.philosophy_area .contents .diagram_area ul li p.tit::before {
    font-size: 5.2rem;
    margin-right: 0.8rem;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area {
    position: relative;
    z-index: 2;
    background: none;
    padding: 8.5rem 0 10.8rem;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area::before {
    content: "";
    background-image: url(../img/aboutus_philosophy-feature_feature_bg01.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    z-index: -1;
    display: block;
    min-width: 2000px;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .bg_parts .bg_item.item_01 {
    width: 50rem;
    height: 26.4rem;
    top: 0;
    right: -16rem;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .bg_parts .bg_item.item_02 {
    width: 39.4rem;
    height: 18.2rem;
    top: 3.5rem;
    left: -16rem;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .bg_parts .bg_item.item_03 {
    width: 50rem;
    height: 26.4rem;
    bottom: 7.2rem;
    left: -11.6rem;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .contents {
    padding: 0;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .contents ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 5.2rem 0 0;
    padding: 0;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li {
    margin: 0 0 7.47rem;
    width: 57.9rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure {
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure img {
    max-width: 53rem;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    max-width: 47rem;
    margin: -7.2rem 0 0 auto;
    padding: 3.5rem 5.2rem 4.4rem 5.2rem;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption .num {
    width: 10.8rem;
    height: 10.8rem;
    font-size: 4.4rem;
    left: -5rem;
    top: -7rem;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption .num::after {
    right: -0.5rem;
    bottom: 0;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption .tit {
    font-size: 2.8rem;
    margin: 0 0 2.8rem;
    letter-spacing: 1.3px;
  }
  .aboutus .philosophy-feature > .wrap > section.feature_area .contents ul li figure figcaption .txt {
    margin: 0;
    font-size: 2.2rem;
  }
}
.aboutus .greeting_area {
  margin: 0 0 2rem;
  padding: 2rem 0 0 2.4rem;
  background: linear-gradient(to top, #007bbb, #7ab8d8 40%, #ffffff);
}
.aboutus .greeting_area .wrap {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 2rem 1rem 1.6rem 1.8rem;
}
.aboutus .greeting_area .wrap::before {
  content: "";
  left: -2rem;
  background: url(../img/aboutus_parts_curve01.svg) no-repeat bottom left/contain;
  display: block;
  position: absolute;
  bottom: 0;
  width: 2rem;
  height: 100%;
}
.aboutus .greeting_area .wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw; /* ← 中央+左はみ出し分の幅 */
  height: 100%;
  background: #fff;
  z-index: -1;
  border-radius: 20px 0 0 0;
}
.aboutus .greeting_area .wrap > .bg_parts {
  z-index: 0;
}
.aboutus .greeting_area .wrap > .bg_parts .bg_item {
  top: -4.2rem;
  right: 0.2rem;
}
.aboutus .greeting_area .wrap > .bg_parts .bg_item.item_01 {
  width: 10rem;
  height: 6rem;
}
.aboutus .greeting_area .wrap .contents figure {
  position: relative;
}
.aboutus .greeting_area .wrap .contents figure > .bg_parts {
  z-index: 0;
}
.aboutus .greeting_area .wrap .contents figure > .bg_parts .bg_item {
  bottom: 0rem;
  left: -2.8rem;
}
.aboutus .greeting_area .wrap .contents figure > .bg_parts .bg_item.item_02 {
  width: 10rem;
  height: 6rem;
}
.aboutus .greeting_area .wrap .contents figure img {
  display: block;
  border-radius: 15px;
}
.aboutus .greeting_area .wrap .contents figure figcaption {
  margin: 0.4rem 0 0;
  text-align: center;
}
.aboutus .greeting_area .wrap .contents figure figcaption span {
  font-size: 120%;
}
.aboutus .greeting_area .wrap .contents p {
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 48em), print {
  .aboutus .greeting_area {
    margin: 0 0 7.4rem;
    padding: 12.5rem 0 0 2.4rem;
  }
  .aboutus .greeting_area .wrap {
    padding: 5.6rem 0 6.1rem;
  }
  .aboutus .greeting_area .wrap::before {
    content: "";
    left: -26.8rem;
    background: url(../img/aboutus_parts_curve01.svg) no-repeat bottom left/contain;
    display: block;
    position: absolute;
    bottom: 0;
    width: 6.1rem;
    height: 6.1rem;
  }
  .aboutus .greeting_area .wrap::after {
    left: -208px; /* ← 左に208px分はみ出す */
    width: calc(100vw + 208px); /* ← 中央+左はみ出し分の幅 */
    border-radius: 100px 0 0 0;
  }
  .aboutus .greeting_area .wrap .tit_02 {
    margin: 0 0 5.5rem;
  }
  .aboutus .greeting_area .wrap > .bg_parts .bg_item {
    top: -5.7rem;
    right: -14.4rem;
  }
  .aboutus .greeting_area .wrap > .bg_parts .bg_item.item_01 {
    width: 39.4rem;
    height: 20.8rem;
  }
  .aboutus .greeting_area .wrap .contents {
    padding: 0;
  }
  .aboutus .greeting_area .wrap .contents figure {
    float: left;
    margin: 0 4.1rem 2rem 0;
    width: fit-content;
    height: auto;
  }
  .aboutus .greeting_area .wrap .contents figure > .bg_parts {
    width: 100%;
  }
  .aboutus .greeting_area .wrap .contents figure > .bg_parts .bg_item {
    bottom: 2rem;
    left: -10.7rem;
  }
  .aboutus .greeting_area .wrap .contents figure > .bg_parts .bg_item.item_02 {
    width: 21.1rem;
    height: 9.8rem;
  }
  .aboutus .greeting_area .wrap .contents figure img {
    display: block;
    border-radius: 15px;
  }
  .aboutus .greeting_area .wrap .contents figure figcaption {
    margin: 0.8rem 0 0;
    font-size: 2.4rem;
  }
  .aboutus .greeting_area .wrap .contents figure figcaption span {
    margin-left: 1.7rem;
    font-size: 3.4rem;
  }
  .aboutus .greeting_area .wrap .contents p {
    font-size: 2.2rem;
  }
}
.aboutus .overview {
  display: none;
}

/* ドクター紹介 */
.dr_name {
  margin: 2rem 0 0;
  text-align: right;
}
.dr_name span {
  font-size: 130%;
}

/* クリニック紹介 */
*[id*=slider] {
  margin: 0 auto 0.2rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  *[id*=slider] {
    width: 75rem;
  }
}
*[id*=slider] figure {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
*[id*=slider] figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem 0.6rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  font-size: 1.4rem;
  color: #333;
  background: rgba(243, 249, 244, 0.6);
}
@media screen and (min-width: 48em), print {
  *[id*=slider] figure figcaption {
    padding: 2rem 3rem;
    font-size: 1.8rem;
  }
}
*[id*=slider] figure figcaption p {
  text-align: center;
  font-size: 120%;
  margin: 0;
}

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

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

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

.img_gallery li {
  margin: 0 0 2rem;
  text-align: center;
}
.img_gallery li figure {
  margin: 0;
  padding: 0;
}
.img_gallery li figure img {
  display: block;
  margin: 0 auto 0.6rem;
  max-width: 80%;
  height: auto;
}
.img_gallery li figure figcaption {
  padding: 0;
  text-align: left;
}
.img_gallery li figure figcaption p {
  margin: 0.4rem 0;
  text-align: center;
}

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

@media screen and (min-width: 48em), print {
  .access .gmap {
    height: 50rem;
  }
}