/* ----- common ----- */
/* title */
.sub_title {
  width: 100%;
  height: 240px;
  background: #ffffff url(../images/common/subttl_bg_pc.png) no-repeat top center;
  background-size: 100%;
  position: relative;
  text-shadow:
    0 0 6px #fff,
    0 0 6px #fff,
    0 0 6px #fff,
    0 0 12px #fff,
    0 0 12px #fff;
}
.sub_title::after {
  display: block;
  content: "";
  width: 100%;
  height: 10px;
  background: url(../images/common/cont_hr01.png) repeat-x bottom left;
  background-size: auto 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sub_title .ttl_box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.sub_title .ttl_box::before,
.sub_title .ttl_box::after {
  content: "";
  display: block;
  width: 30%;
  max-width: 280px;
  height: 80%;
  max-height: 230px;
  position: absolute;
  bottom: 10px;
  z-index: 5;
}
.sub_title .ttl_box::before {
  background: url(../images/common/sub_ttl_l.png) no-repeat left 0 bottom;
  background-size: contain;
  left: 0;
}
.sub_title .ttl_box::after {
  background: url(../images/common/sub_ttl_r.png) no-repeat right 0 bottom;
  background-size: contain;
  right: 0;
}
.sub_title h2 {
  margin: 0 auto 0 auto;
  font-size: 42px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: #493821;
}
.sub_title h2 span {
  color: #ac734d;
  font-size: 60%;
  position: relative;
  display: block;
  padding: 0 3em;
}
.sub_title h2 span::before,
.sub_title h2 span::after {
  content: "";
  display: block;
  background: url(../images/index/intor_ani01.gif) no-repeat center center;
  background-size: contain;
  width: 3em;
  height: 1.5em;
  position: absolute;
  top: calc(50% - 1em);
}
.sub_title h2 span::before {
  left: 0;
}
.sub_title h2 span::after {
  right: 0;
  transform: scale(-1, 1);
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .sub_title h2 {
    font-size: calc(100vw / 24);
  }
  .sub_title {
    height: 24vw;
  }
}
/* スマホ用のスタイル */
@media screen and (max-width: 768px) {
  .sub_title {
    height: 32vw;
    display: flex;
    align-items: center;
    position: relative;
  }
  .sub_title h2 {
    padding: 2vw 3vw;
    font-size: calc(100vw / 18);
  }
}

/* background */
.box_bg {
  padding: 60px 0;
  background: var(--bg-color);
  position: relative;
}
.box_bg::before,
.box_bg::after {
  content: "";
  display: block;
  width: 100vw;
  height: 140px;
  background: url(../images/common/subttl_bg_pc.png) center top no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1;
}
.box_bg::before {
  top: -120px;
  left: 0;
  transform: scale(1, -1);
}
.box_bg::after {
  bottom: -120px;
  left: 0;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .box_bg {
    padding: 8vw 0 !important;
  }
  .box_bg::before,
  .box_bg::after {
    height: 11vw;
  }
  .box_bg::before {
    top: -10vw;
  }
  .box_bg::after {
    bottom: -10vw;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .box_bg {
    padding: 12vw 0 !important;
  }
  .box_bg::before,
  .box_bg::after {
    height: 14vw;
    background-image: url(../images/common/subttl_bg_sp.png);
  }
  .box_bg::before {
    top: -13vw;
  }
  .box_bg::after {
    bottom: -13vw;
  }
}

/*  introduction   */
.introduction {
  padding: 60px 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.introduction .intro_box h3 {
  font-size: 180%;
  font-weight: bold;
  text-shadow:
    3px 3px 0 #fff,
    -3px -3px 0 #fff,
    -3px 3px 0 #fff,
    3px -3px 0 #fff,
    0px 3px 0 #fff,
    0 -3px 0 #fff,
    -3px 0 0 #fff,
    3px 0 0 #fff;
}
.introduction .intro_box .intro_txt {
  padding: 20px 0;
  text-align: center;
  text-shadow:
    3px 3px 0 #fff,
    3px 3px 5px #fff,
    -3px -3px 5px #fff,
    -3px 3px 5px #fff,
    3px -3px 5px #fff,
    0px 3px 5px #fff,
    0 -3px 5px #fff,
    -3px 0 5px #fff,
    3px 0 5px #fff;
}
.introduction .intro_box .intro_txt strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.4;
  color: var(--main-color);
}
@media (max-width: 1081px) {
  .introduction .intro_box .intro_txt {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .introduction {
    padding: 6vw 0;
  }
  .introduction .intro_box .intro_txt strong {
    font-size: 1.2em;
  }
}

/* 下層個別設定 */
#facility .introduction::before,
#about .introduction::after {
  content: "";
  display: block;
  width: 25%;
  width: clamp(200px, 45%, 320px);
  height: 80%;
  background: url(../images/lower/intro_bg.gif) no-repeat;
  background-size: 100%;
  background-position: center left 5%;
  opacity: 0.5;
  position: absolute;
  top: 0;
  z-index: -10;
}
#facility .introduction::before {
  left: 0;
}
#about .introduction::after {
  right: 0;
  transform: scale(-1, -1);
}

#about .introduction .intro_img1,
#facility .introduction .intro_img2 {
  max-width: fit-content;
  width: 12%;
  position: absolute;
}
#about .introduction .intro_img1 {
  bottom: 20%;
  left: 14%;
  left: clamp(100px, 10%, 320px);
  z-index: -2;
}
#facility .introduction .intro_img2 {
  top: 6%;
  right: 15%;
  right: clamp(80px, 10%, 120px);
  z-index: -1;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #facility .introduction::before {
    width: 100%;
    background-position: top 0 left 0;
    background-size: 35% auto;
  }
  #about .introduction::after {
    width: 100%;
    background-position: bottom 10% left 0;
    background-size: 35% auto;
  }
  #about .introduction .intro_img1 {
    width: 12%;
  }
  #facility .introduction .intro_img2 {
    width: 14%;
  }
  #about .introduction .intro_img1 {
    bottom: 30%;
    left: 5%;
  }
  #facility .introduction .intro_img2 {
    top: 4%;
    right: 4%;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #facility .introduction::before {
    width: 100%;
    background-position: top 0 left -5%;
    background-size: 40% auto;
  }
  #about .introduction::after {
    width: 100%;
    background-position: bottom 10% left 0;
    background-size: 35% auto;
  }
  #about .introduction .intro_img1 {
    width: 18%;
  }
  #facility .introduction .intro_img2 {
    width: 17%;
  }
  #about .introduction .intro_img1 {
    bottom: auto;
    top: 10%;
    left: 5%;
  }
  #facility .introduction .intro_img2 {
    top: 1%;
    right: 2%;
  }
}

/* ----- about.php #about ----- */
/* about */
#about .cntns_hl2::before,
#about .cntns_hl2::after {
  background-image: url(../images/common/icon_02.png);
}
#about .aboutus {
  position: relative;
}

#about .aboutus .cotns_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
#about .aboutus .about_box {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
#about .aboutus .about_info_box {
  width: 100%;
  padding: 30px;
  background: #ffffff;
  border: 4px solid var(--main-color);
  border-radius: 10px;
}
#about .aboutus .about_info_box h4 {
  color: var(--main-color);
  font-size: 1.6em;
  font-weight: 900;
  margin-bottom: 20px;
}
#about .aboutus .about_info_box .about_addr {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
}
#about .aboutus .about_info_box .about_addr dt {
  width: 20%;
  line-height: 1.2;
  position: relative;
}
#about .aboutus .about_info_box .about_addr dt::after {
  content: "：";
  position: absolute;
  right: 0;
}
#about .aboutus .about_info_box .about_addr dd {
  align-items: baseline;
  width: 80%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  line-height: 1.2;
  border-bottom: 2px dotted #ac734d;
}
#about .aboutus .about_info_box .about_addr dd small {
  font-size: 80%;
}
#about .aboutus .about_info {
  margin-top: 10px;
}
#about .aboutus .about_info dt {
  font-size: 120%;
  color: var(--main-color);
  font-weight: bold;
}
#about .aboutus .about_info dd {
  padding-left: 20px;
  line-height: 1.4;
}
#about .aboutus .about_info dd::before {
  margin-left: -20px;
  content: "・";
  color: var(--main-color);
}
#about .aboutus .about_box_img {
  width: 36%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #about .aboutus::before,
  #about .aboutus::after {
    height: 9vw;
  }
  #about .aboutus::before {
    top: -7vw;
  }
  #about .aboutus::after {
    bottom: -8vw;
  }
  #about .aboutus .about_box {
    display: flex;
    flex-wrap: wrap;
    width: 56%;
  }
  #about .aboutus .about_info_box {
    padding: 3vw;
  }
  #about .aboutus .about_box_img {
    width: 42%;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #about .aboutus::before {
    top: -12vw;
    left: 0vw;
  }
  #about .aboutus::before,
  #about .aboutus::after {
    height: 14vw;
  }
  #about .aboutus::after {
    bottom: -12vw;
    left: 0vw;
    z-index: -2;
  }
  #about .aboutus .about_box_img {
    width: 90%;
    margin: 10px auto 0;
    flex-direction: row;
  }
  #about .aboutus .about_box {
    width: 100%;
  }
  #about .aboutus .about_info_box {
    border: 2px solid var(--main-color);
  }
  #about .aboutus .about_info_box h4 {
    margin-bottom: 2vw;
  }
  #about .aboutus .about_info_box .about_addr dt {
    width: 24%;
  }
  #about .aboutus .about_info_box .about_addr dd {
    width: 74%;
  }
  #about .aboutus .about_info dd {
    padding-left: 3vw;
  }
  #about .aboutus .about_info dd::before {
    margin-left: -3vw;
  }
}
@media screen and (max-width: 430px) {
}

/* point */
.point {
  padding: 80px 0;
  margin: 0 auto;
  position: relative;
}

.point_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.point_box .point_txt {
  width: 50%;
}
.point_box .point_img {
  max-width: 60%;
  display: flex;
  flex-wrap: wrap;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .point {
    padding: 10vw 0;
  }
  .point_box {
    gap: 6vw;
  }
  .point_box .point_txt {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 430px) {
}

/* otayori */
.otayori {
  padding: 80px 0;
  margin: 0 auto;
  position: relative;
  background: var(--bg-color) url(../images/lower/about_bg.gif) no-repeat top left 5%;
  background-size: 18% auto;
}
.otayori .otayori_txt {
  padding: 30px 0;
  text-align: center;
}
.otayori .otayori_sample {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.otayori .popup-wrap .thumb {
  max-width: 540px;
  width: 45vw;
  max-height: 418px;
  height: 45vw;
}
.otayori .popup-wrap .thumb img {
  object-fit: contain;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .otayori {
    background-position: top 30% left -6%;
    background-size: 22% auto;
  }
  .otayori .otayori_txt {
    padding: 3vw 0;
  }
}
@media screen and (max-width: 430px) {
}

/* ----- disclosure.php #disclosure ----- */

#disclosure .cntns_hl2::before,
#disclosure .cntns_hl2::after {
  background-image: url(../images/common/icon_05.png);
}
#disclosure .review .review_box {
  width: 85%;
  max-width: 810px;
  margin: 40px auto;
}
#disclosure .review .review_box ul {
  width: 100%;
  padding: 20px 40px;
}
#disclosure .review .review_box .year_heading {
  font-size: 1.6em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  padding: 20px 20px 25px 0;
  position: relative;
}
#disclosure .review .review_box .year_heading::before {
  content: "";
  width: 100%;
  height: 6px;
  background: var(--text-color);
  position: absolute;
  bottom: 15px;
  left: 0;
}
#disclosure .review .review_box .year_heading::after {
  content: "";
  width: 4em;
  height: 6px;
  background: var(--main-color);
  position: absolute;
  bottom: 15px;
  left: 0;
}
#disclosure .review .review_box .review_item {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  margin-bottom: 30px;
  padding: 20px 20px 25px 20px;
  background: #f8f8f7;
  border-top: 2px solid var(--text-color);
  border-left: 6px solid var(--main-color);
  border-right: 2px solid var(--text-color);
  border-bottom: 2px solid var(--text-color);
  gap: 10px;
  position: relative;
}
#disclosure .review .review_box .review_item::before {
  content: "";
  display: inline;
  width: 1.5em;
  height: 1.5em;
  background: url(../images/common/pdf_icon_on.png) no-repeat center center;
  background-size: contain;
}
#disclosure .review .review_box .review_item .title {
  width: 100%;
}
#disclosure .review .review_box .review_item .title a {
  width: 100%;
  display: block;
  line-height: 1.4;
  font-weight: bold;
  transition: all 0.3s ease;
}
#disclosure .review .review_box .review_item .title:hover a {
  color: var(--main-color);
  transition: all 0.3s ease;
}
#disclosure .review .review_box .review_item .day {
  width: 6em;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #disclosure .review .review_box ul {
    padding: 0;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 430px) {
}

/* ----- facility.php #facility ----- */
#facility .cntns_hl2::before,
#facility .cntns_hl2::after {
  background-image: url(../images/common/icon_04.png);
}
#facility .profile {
  background: var(--bg-color) url(../images/lower/facility_bg2.gif) no-repeat right 5% bottom;
  background-size: auto 60%;
}
#facility .profile .profile_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: #ffffff;
  border: 4px solid #37bed7;
  border-radius: 10px;
}
#facility .profile .profile_box_img {
  width: 36%;
  max-height: 250px;
  border: 2px solid #37bed7;
}
#facility .profile .profile_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#facility .profile .profile_info_box {
  width: 60%;
}
#facility .profile .profile_info_box .profile_addr {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
}
#facility .profile .profile_info_box .profile_addr dt {
  width: 20%;
  line-height: 1.2;
  position: relative;
}
#facility .profile .profile_info_box .profile_addr dd {
  align-items: baseline;
  width: calc(80% - 10px);
  margin-bottom: 10px;
  padding: 0 5px 10px;
  line-height: 1.2;
  border-bottom: 2px dotted #ac734d;
}
#facility .profile .profile_info_box .profile_addr dd:last-of-type {
  margin: 0;
}
#facility .profile .profile_info_box .profile_addr dd span {
  margin-bottom: 3px;
  padding-left: 1em;
  text-indent: -1em;
  display: block;
}
#facility .profile .profile_info_box .profile_addr dd span::before {
  content: "・";
  color: #ac734d;
}
#facility .profile .profile_info_box .profile_addr dd small {
  font-size: 80%;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #facility .profile .profile_box {
    width: 100%;
  }
  #facility .profile .profile_info_box {
    padding: 0 3vw;
  }
  #facility .profile .profile_box_img {
    width: 38%;
    height: 40vw;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #facility .profile {
    padding-bottom: 8vw !important;
    background-position: right 0% bottom;
    background-size: auto 40%;
  }
  #facility .profile .profile_box_img {
    width: 100%;
    height: 46vw;
    margin-bottom: 20px;
  }
  #facility .profile .profile_box {
    display: flex;
    flex-wrap: wrap;
    width: 92%;
  }
  #facility .profile .profile_info_box {
    width: 100%;
    padding: 0;
  }
  #facility .profile .profile_info_box .about_addr dt {
    width: 17vw;
  }
  #facility .profile .profile_info_box .about_addr dd {
    width: 58vw;
  }
  #facility .profile .profile_info dd {
    padding-left: 3vw;
  }
  #facility .profile .profile_info dd::before {
    margin-left: -3vw;
  }
  #facility .profile .profile_info_box .profile_addr dt {
    width: 24%;
  }
  #facility .profile .profile_info_box .profile_addr dd {
    width: calc(78% - 10px);
  }
}

#facility .facility {
  padding: 80px 0;
  background: url(../images/lower/facility_bg.png) no-repeat bottom center;
  background-size: 100% auto;
}
#facility .facility .facility_box {
  padding: 60px 0 30px;
}
#facility .facility .facility_img {
  margin-bottom: 30px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 3px dashed #ac734d;
  border-bottom: 3px dashed #ac734d;
}
#facility .facility .facility_img li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% / 4) - 20px);
  text-align: center;
  background: #f8f8f7;
}
#facility .facility .facility_img li .il {
  width: 45%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  object-position: center center;
}
#facility .facility .facility_cntns {
  margin-bottom: 30px;
}
#facility .facility .facility_cntns .facility_hl {
  margin-left: 1em;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: bold;
  position: relative;
  z-index: 0;
}
#facility .facility .facility_cntns .facility_hl span {
  background: #ffffff;
  padding: 0 10px 0 5px;
}
#facility .facility .facility_cntns .facility_hl::before {
  content: "";
  background: url(../images/common/icon_04.png) no-repeat center center;
  background-size: contain;
  width: 1em;
  height: 1em;
  color: #ac734d;
  position: absolute;
  top: 0;
  left: -1em;
}
#facility .facility .facility_cntns .facility_hl::after {
  content: "";
  background: #37bed7;
  width: 0;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transition: all 0.7s;
}
#facility .facility .facility_cntns .facility_hl.is-active::after {
  width: 100%;
  transition: all 0.7s;
}
#facility .facility .facility_cntns .facility_txt {
  padding: 20px;
  line-height: 1.6;
}
/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #facility .profile {
    padding-bottom: 14vw !important;
  }
  #facility .facility .facility_box {
    padding: 6vw 0 3vw;
  }
  #facility .facility .facility_img li .il {
    width: 60%;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #facility .facility {
    background-image: url(../images/lower/facility_bg_sp.png);
  }
  #facility .facility .facility_cntns {
    margin-bottom: 3vw;
  }
  #facility .facility .facility_img li {
    width: calc((100% / 2) - 10px);
    text-align: center;
    background: #f8f8f7;
  }
}
@media screen and (max-width: 430px) {
}
