@charset "UTF-8";
/*=================
全体
===================*/

* {
  box-sizing: border-box;
  font-style: normal;
}

html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  min-width: 375px;
}

a {
  text-decoration: none;
  color: #262626;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul li {
  list-style: none;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.middle_wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.text_align {
  text-align: center;
}

.text_align_right {
  text-align: right;
}

.text_align_left {
  text-align: left;
}

.font_bold {
  font-weight: bold;
}

.jus_right {
  justify-content: right;
}

@media screen and (max-width: 1100px) {
  .wrapper {
    padding: 0 4%;
  }
}

.hover_underline:hover {
  text-decoration: underline;
}

.hover:hover {
  background-color: #e2eade;
  transition: 0.3s ease-in-out;
}

.header_checked {
  background-color: #e2eade;
}

.hover_clear:hover {
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}

@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/*=================
セクション共通
===================*/

.h2_sec {
  font-size: 22px;
  margin-bottom: 27px;
  letter-spacing: 0.1em;
}

.contact_btn {
  background-color: #456800;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
}

.btn_detail:hover {
  background-color: #456800;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.facilities_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .facilities_pc {
    display: none;
  }
  .facilities_sp {
    display: block;
  }
  .h2_sec {
    font-size: 20px;
    margin: 20px 0;
  }

  .under_768 {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .up_768 {
    display: none !important;
  }
}

@media screen and (min-width: 415px) {
  .up_414 {
    display: none !important;
  }
}

@media screen and (min-width: 600px) {
  .up_600 {
    display: none !important;
  }
}

@media screen and (max-width: 500px) {
  .under_500 {
    display: none !important;
  }
}

/*=================
メインビジュアル共通
===================*/

#main_bg {
  padding: 110px 0 100px;
  margin-top: 135px;
}

.main_bg_inner {
  width: 250px;
  height: 90px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 26px 0 19px;
}

.main_bg_inner h1 {
  line-height: 1;
  margin-bottom: 11px;
}

.main_bg_inner h2 {
  line-height: 0.5;
}

@media screen and (max-width: 768px) {
  #main_bg {
    padding: 55px 0;
  }
}

/*================
ヘッダー 
=================*/

header {
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  top: 0;
  z-index: 10000;
  box-shadow: 3px 0 10px rgba(112, 112, 112, 0.3);
}

.main_nav {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .main_nav {
    padding: 0 !important;
  }
}

.main_nav li a {
  display: block;
  font-weight: bold;
  line-height: 35px;
  font-size: clamp(13px, 1.3vw, 16px);
}

.main_nav li {
  width: 10%;
  min-height: 35px;
}

.main_nav li:nth-of-type(3) {
  width: 17%;
}

.main_nav li:nth-of-type(5) {
  width: 12%;
}

.main_nav li:nth-of-type(6) {
  width: 15%;
}

.header_logo_inner {
  min-height: 100px;
  height: 100px;
  padding: 17px 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo_inner h1 img {
  width: 146px;
}

.contact_doc_inner {
  /* max-width: 490px; */
  display: flex;
  gap: 53px;
  text-align: center;
}

.contact_doc_inner div a {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  background: url(/img/ico_freedial_02.png) no-repeat left center;
  background-size: 27px;
  padding-left: 35px;
}

.contact_doc_inner div address {
  font-size: 14px;
  font-weight: bold;
  margin-top: -6px;
}

.contact_doc_inner a.contact_btn {
  text-align: center;
  font-weight: bold;
  width: 200px;
  height: 60px;
  line-height: 60px;
  background-image: url(/img/footer_logo_arrow.png);
  background-position: center right 15px;
  background-repeat: no-repeat;
  background-size: 6px 10px;
}

.contact_doc_inner a.contact_btn span {
  padding-left: 26px;
  background-image: url(/img/form_mail_icon.png);
  background-size: 19px 14px;
  background-position: left center;
  background-repeat: no-repeat;
}

.contact_doc_inner p {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .under_768 {
    display: none;
  }

  .header_logo_inner {
    padding: 8px 10px;
    min-height: 60px;
    height: 60px;
  }

  .header_logo_inner h1 img {
    width: 100px;
    vertical-align: middle;
  }

  #main_bg {
    margin-top: 60px;
  }

  /*=====================
    ハンバーガーメニュー 内部
    ======================*/
  .contact_doc_inner_hum {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 30px;
  }

  .contact_doc_inner_hum div a {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    background: url(/img/ico_freedial_02.png) no-repeat left center;
    background-size: 27px;
    padding-left: 35px;
  }

  .contact_doc_inner_hum div address {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
  }

  .contact_doc_inner_hum a.contact_btn {
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    width: 100%;
    margin-top: 13px;
    /* padding-left: 26px; */
  }

  .contact_doc_inner_hum a.contact_btn span {
    background-image: url(/img/form_mail_icon.png);
    padding-left: 26px;
    background-size: 19px 14px;
    background-position: left center;
  }
}

@media screen and (max-width: 410px) {
  .contact_doc_inner_hum {
    margin-top: 20px;
  }
}

/* ============
フッター 
================*/

.footer_inner_txt {
  font-size: clamp(18px, 2.16vw, 26px);
  padding: 32px 4%;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #456800;
}

.form_btn_area {
  padding: 54px 0 64px;
  /* max-width: 798px; */
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1.5px solid #e2eade;
}

.form_btn_area_sec {
  padding: 0 4% 0;
}

#form_btn_area_sec_footer {
  background-color: #fff;
}

.form_btn_area_p {
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 32px;
}

.form_btn_area_list {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.form_btn_area_list li {
  width: calc(100% / 2);
}

.form_btn_area_list li a {
  display: block;
  height: 74px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
}

.form_btn_area_list p {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: bold;
  text-align: center;
  color: #456800;
}

.form_btn_area_list li:first-of-type a {
  border: 3px solid #456800;
  font-size: 30px;
  color: #456800;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.form_btn_area_list li:first-of-type a img {
  /* margin: 0 12px 15px 0; */
  vertical-align: baseline;
}

.form_btn_area_list li:first-of-type a span {
  margin-left: 12px;
}

.form_btn_area_list li:last-of-type a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #456800;
}

.form_btn_area_list li:last-of-type a:hover,
.form_btn_area_sec div.cp_bnr a:hover {
  opacity: 0.7;
}

.form_btn_area_list li:last-of-type a {
  transition: 0.3s ease-in-out;
  box-shadow: 5px 6px 0px rgba(0, 0, 0, 0.1);
  background-image: url(/img/form_arrow_icon.png);
  background-position: right 20px center;
  background-size: 18px 23px;
  background-repeat: no-repeat;
}

.form_btn_area_list li:last-of-type a span {
  color: #fff;
  font-size: 22px;
  padding-left: 43px;
  background-image: url(/img/form_mail_icon.png);
  background-size: 28px 20px;
  background-position: left center;
  background-repeat: no-repeat;
}

.form_btn_area_sec div.cp_bnr {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}

@media screen and (min-width: 769px) and (max-width: 850px) {
  .form_btn_area_list li:last-of-type a span {
    font-size: 18px;
  }
}

.footer_logo_area {
  /* padding: 40px; */
  padding: 80px 0px;
  background-color: #e2eade;
}

.footer_logo_area_inner {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 4%;
}

.footer_inner_logo_contact {
  margin-bottom: 40px;
  font-weight: bold;
  text-align: left;
}

/* .footer_inner_logo_contact a:first-of-type {
  font-size: 28px;
  font-weight: bold;
  background: url(/img/ico_freedial_02.png) no-repeat left center;
  background-size: 27px;
  padding-left: 35px;
} */

.footer_inner_logo_contact a.footer_contact_btn {
  display: block;
  /* margin-top: 1rem; */
  width: 316px;
  height: 60px;
  line-height: 60px;
  background-color: #456800;
  font-weight: bold;
  color: #fff;
  border-radius: 10px;
  background-image: url(/img/footer_logo_arrow.png);
  background-position: center right 20px;
  background-size: 6px 10px;
  background-repeat: no-repeat;
}

.footer_inner_logo_contact a.footer_contact_btn span {
  padding-left: 28px;
  background-image: url(/img/form_mail_icon.png);
  background-size: 19px 14px;
  background-position: left center;
  background-repeat: no-repeat;
}

.footer_inner_nav {
  width: 50%;
}

.footer_nav_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer_inner_nav ul li {
  text-align: left;
  font-weight: bold;
}
.footer_inner_nav ul:nth-child(2) li:nth-of-type(5) {
  margin-top: 20px;
}

.footer_inner_nav ul li a {
  padding-left: 1rem;
  background-image: url(/img/footer_nav_arrow.png);
  background-size: 7px 9px;
  background-repeat: no-repeat;
  background-position: left center;
}
.footer_facilities li a {
  padding-left: 2rem !important;
  background-position: 20px center !important;
}
.footer_inner_nav ul li a.foots_separate_nav {
  background-image: url(/img/footer_nav_arrow_sepa.png);
}

.footer_logo_area img {
  width: 181px;
}

.footer_logo_area address {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #6b4a3c;
}

.footer_bg_area {
  height: 300px;
  color: #fff;
  background: url(/img/footer_bg.png) no-repeat center center / cover;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer_inner_txt {
    padding: 40px 4%;
    line-height: 30px;
  }

  .form_btn_area {
    padding: 10px 0 32px;
    position: relative;
  }

  #form_btn_area_top {
    padding: 10px 0 80px;
  }

  .form_btn_area_list li:last-of-type a {
    background-image: url(/img/footer_logo_arrow.png);
    background-position: right 20px center;
    background-size: 10px 14px;
  }

  .form_btn_area_sec {
    padding: 0 4% 0;
    position: relative;
    z-index: 1;
  }

  img.Watercolor_pink_contact_sp_top {
    position: absolute;
    width: 174px;
    bottom: 0px;
    left: -50px;
    /* z-index: -1; */
  }

  .form_btn_area_list {
    flex-direction: column;
    align-items: center;
  }

  .form_btn_area_list li {
    width: 100%;
  }

  .form_btn_area_p {
    font-size: 16px;
  }

  .form_btn_area_list p {
    font-size: 16px;
  }

  .form_btn_area_list li:first-of-type p span {
    background-image: url(/img/sp/contact_phone-alt.png);
    padding-left: 18px;
    background-position: left center;
    background-size: 15px;
  }

  .form_btn_area_list li:nth-of-type(2) p span {
    background-image: url(/img/sp/form_mail_icon_sp.png);
    padding-left: 24px;
    background-position: left center;
    background-size: 18px 13px;
  }

  .form_btn_area_list li:first-of-type a {
    /* border: none; */
    font-size: 24px;
    /* background-color: #fff; */
    color: #456800;
    box-shadow: 5px 6px 0px rgba(0, 0, 0, 0.1);
  }

  /* .form_btn_area_list li:first-of-type a img {
       margin: 0 12px 10px 0; 
    } */

  .form_btn_area_list li a {
    height: 60px;
  }

  .form_btn_area_list li:last-of-type a span {
    font-size: 18px;
    background-image: none;
    padding-left: 0;
  }

  .form_btn_area_list {
    gap: 24px;
  }

  .footer_logo_area {
    padding: 20px 30px 50px;
  }

  .footer_logo_area img {
    width: 157px;
  }

  /* ハンバーガーメニュー */
  /* .hum_btn a {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #456800;
        border-radius: 10px;
        height: 50px;
        color: #fff;
        font-weight: bold;
    }

    .hum_btn {
        margin-top: 13px;
    } */

  .footer_bg_area {
    height: 200px;
    background: url(/img/sp/footer_bg_sp.png) no-repeat center center / cover;
    font-size: 18px;
  }

  .footer_logo_area_inner {
    flex-direction: column;
    padding: 0;
  }

  .footer_inner_nav {
    width: 100%;
    margin-bottom: 38px;
  }

  .footer_inner_nav ul li a {
    font-size: 14px;
  }

  .footer_inner_nav ul {
    gap: 16px;
    max-width: 600px;
    justify-content: space-around;
  }

  #form_btn_area_sec_footer {
    background-color: #e2eade;
  }

  img.Watercolor_pink_contact_sp {
    position: absolute;
    top: -30%;
    left: -50px;
    width: 210px;
  }
}
/* .facilities_tab-container {
  top: 95px;
  position: sticky;
  background-color: #fff;
  z-index: 99;
  display: flex;
  border-bottom: #456800 solid 2px;
  justify-content: center;
  padding: 60px 0 0;
}
.facilities_tab {
  display: flex;
  justify-content: center;
  cursor: pointer;
  padding: 9px 0;
  background-color: #fff;
  border: 2px solid #456800;
  border-radius: 10px 10px 0 0;
  transition: background-color 0.3s;
  color: #456800;
  font-size: 22px;
  margin: 0 5px;
  width: 192px;
  border-bottom: none;
  box-shadow: rgb(0, 0, 0, 0.2) 4px 3px 0px;
  font-weight: 600;
  align-items: center;
}
.facilities_tab:hover {
  background-color: #456800;
  color: #fff;
}

.facilities_active-tab {
  background-color: #456800;
  border-radius: 10px 10px 0 0;
  color: #fff;
}



.facilities_tab-wrapper {
  position: relative;
}

.facilities_tab-fade {
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.facilities_tab-fade.left {
  left: 0;
  background: linear-gradient(to right, #fff 60%, rgba(255,255,255,0));
}

.facilities_tab-fade.right {
  right: 0;
  background: linear-gradient(to left, #fff 60%, rgba(255,255,255,0));
}

.facilities_tab-fade.show {
  opacity: 1;
} */

/* .facilities_tab-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid #456800;
  cursor: pointer;
  z-index: 7;
}

.facilities_tab-arrow.prev { left: 5px; }
.facilities_tab-arrow.next { right: 5px; }
.facilities_tab-arrow.hidden { display: none; }
.facilities_tab-content {
  display: none;
}

.facilities_active-content {
  display: block;
}
.facilities_tab-arrow {
  display: none;
} */

/* PC共通 */
.facilities_tab-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 2px solid #456800;
  top: 95px;
  position: sticky;
  z-index: 99;
  padding: 60px 0 0;
}

.facilities_tab-container {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
}

.facilities_tab {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 9px 0;
  background-color: #fff;
  border: 3px solid #456800;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  color: #456800;
  font-size: 22px;
  font-weight: 600;
  width: 192px;
  margin: 0 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 4px 3px 0px;
  transition: background-color 0.3s, color 0.3s;
}

.facilities_tab:hover {
  background-color: #456800;
  color: #fff;
}

.facilities_active-tab {
  background-color: #456800;
  color: #fff;
}

/* フェード部分 */
.facilities_tab-fade {
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.facilities_tab-fade.left {
  left: 0;
  background: linear-gradient(to right, #fff 70%, rgba(255, 255, 255, 0));
}

.facilities_tab-fade.right {
  right: 0;
  background: linear-gradient(to left, #fff 70%, rgba(255, 255, 255, 0));
}

.facilities_tab-fade.show {
  opacity: 1;
}



/* タブコンテンツ */
.facilities_tab-content {
  display: none;
}
.facilities_active-content {
  display: block;
}

/* ---------- SP専用 ---------- */
@media screen and (max-width: 768px) {
  .facilities_tab-wrapper {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    top: 35px;
    max-height: 0; /* 高さをなくす */
    overflow: hidden; /* 中身を隠す */
    padding: 0;
  }

  .facilities_tab-container {
    overflow-x: auto;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    padding-right: 15px;
  }
  .facilities_tab-wrapper.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 60px 0 0;
    max-height: unset;
  }
  .facilities_tab-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .facilities_tab {
    min-width: 108px;
    font-size: 18px;
    margin: 0 4px;
    box-shadow: none;
    height: 60px;
  }
  .facilities_tab-arrow.prev {
  left: 5px;
}
.facilities_tab-arrow.next {
  right: 5px;
}
.facilities_tab-arrow.hidden {
  display: none;
}
  .facilities_tab-arrow {
    position: fixed;
    top: 70px;
    background: #fff;
    border: 3px solid #456800;
    border-radius: 10px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    width: 41px;
    height: 41px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
  }

  .facilities_tab-arrow img {
    width: 12px;
    position: relative;
    top: -2px;
  }
  .facilities_tab:first-of-type {
    margin-left: 15px;
  }
  .facilities_tab:last-of-type {
    margin-right: 15px;
  }
}

@media screen and (max-width: 790px) {
  .facilities_page-menu {
    margin: 20px auto;
    width: 85.3%;
  }
  .facilities_page-menu ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 10px;
    margin: 0 auto;
  }
  .facilities_page-menu ul li {
    border: 1px solid #456800;
    height: 44px;
    position: relative;
    width: 48.4%;
    color: #456800;
    padding: 9px 0;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
  }
  .facilities_page-menu ul li:nth-of-type(3) {
    padding: 2px 0;
    line-height: 1.2;
  }
  .facilities_page-menu__active-tab {
    color: #fff !important;
    background-color: #456800;
  }

  /* .facilities_tab-content-container {
    margin: -120px 0 120px;
  } */

  .facilities_tab-arrow.prev {
    left: 10px;
  }
  .facilities_tab-arrow.next {
    right: 10px;
  }
  .facilities_tab-arrow {
    display: block;
  }
  .facilities_tab-arrow.hidden {
    display: none;
  }
}

/*----------------------
メインビジュアル 
-----------------------*/
.facilities_main_bg_inner {
  width: 250px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px 0 19px;
}
.facilities_main_bg_inner h1 {
  line-height: 1;
}
.facilities_main_bg_inner img {
  width: 135px;
}
.facilities_main_bg_inner h2 {
  line-height: 0.5;
}
/*--------------------------------
協力医療機関
-----------------------------------*/

/* 共通 */

.care_sec h3 {
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #456800;
}
#care_sec_coop {
  background-color: #eef2ec;
  padding: 55px 0 60px;
  letter-spacing: 0.1em;
}

.care_sec_coop_inner {
  padding: 0 4%;
}

.care_sec_coop_inner h3 {
  margin-bottom: 22px;
}
.care_sec_coop_inner section {
  margin-bottom: 55px;
}

.care_sec_coop_inner h4 {
  font-size: 22px;
  margin-bottom: 1rem;
}

.care_sec_coop_inner section p {
  line-height: 1.7;
}

.care_sec_coop_inner section:last-of-type {
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  /* 共通 */
  .care_sec h3 {
    font-size: 18px;
    letter-spacing: 0.15em;
  }
  .care_sec_coop_inner section:first-of-type h4 {
    font-size: 16px;
    text-align: center;
    background-color: #fff;
    height: 60px;
    line-height: 60px;
    border-radius: 10px 10px 0 0;
  }
  .care_sec_coop_inner section {
    margin-bottom: 35px;
  }
  .care_sec_coop_inner h4 {
    font-size: 18px;
    letter-spacing: 0.15em;
  }
  .care_sec_coop_inner section:not(section:first-of-type) h4 {
    color: #456800;
    padding-left: 35px;
    position: relative;
  }
  .care_sec_coop_inner section:not(section:first-of-type) h4::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f8c5ac;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .care_sec_coop_inner section address {
    letter-spacing: 0.05em;
    line-height: 2;
    font-size: 14px;
  }
}

#access_sec_info .access_sec_info_inner_txt {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding: 40px 0 40px;
}

#price_sec h3 img {
  width: 65px;
}
#price_sec h4 img {
  width: 55px;
}
.font_26_pc {
  /* font-size: 26px; */
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: 0.1em;
  font-weight: bold;
}

.font_22_pc {
  /* font-size: 22px; */
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.1em;
  font-weight: bold;
}

.font_20_pc {
  font-size: 20px;
}

.font_18_pc {
  /* font-size: 18px; */
  font-size: clamp(16px, 1.5vw, 18px);
}

.font_24_pc {
  font-size: 24px;
}

.font_50_pc {
  font-size: 50px;
}

.nth_second_tr_text {
  text-align: center;
}
#space_sec_top h3 img {
  width: 65px;
}
#space_sec_top h4 img {
  width: 106px;
}
#price_sec h3,
#space_sec_top h3,
#common_facilities_sec_top h3,
#access_sec_car h2 {
  margin-bottom: 10px;
}
#price_sec h4,
#space_sec_top h4,
#common_facilities_sec_top h4,
#access_sec_car h4 {
  margin-bottom: 30px;
}

#common_facilities_sec_top h3 img {
  width: 65px;
}
#common_facilities_sec_top h4 img {
  width: 151px;
}
#access_sec_car h2 img {
  width: 65px;
}
#access_sec_car h4 img {
  width: 129px;
}
.access_sec_web_inner {
  max-width: 1000px;
  margin: 0 auto;
}
.access_sec_web_inner p {
  margin: 80px 0 40px !important;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .facilities_tab-container {
    top: 15px;
  }
  #price_sec h4 {
    margin-bottom: 0px;
  }

  .space_sec_second_h3_sp h3 img {
    width: 65px;
  }
  .space_sec_second_h3_sp h4 img {
    width: 124px;
  }
  .space_sec_second_h3_sp h4 {
    margin-bottom: 16px;
  }
  #space_sec_top h4 img {
    width: 119px;
  }
  #common_facilities_sec_top h4 img {
    width: 165px;
  }
  .common_facilities_sec_intro_inner h3 img {
    width: 65px;
  }
  .common_facilities_sec_intro_inner h3 {
    margin-bottom: 0;
  }
  .common_facilities_sec_intro_inner h2 {
    text-align: center;
    padding-left: 0;
    margin-bottom: 20px;
  }
  .common_facilities_sec_intro_inner h2 img {
    width: 172px;
  }
  .price_sec_inner h4 img,
  #space_sec_top h4,
  #common_facilities_sec_top h4,
  #access_sec_car h4 {
    margin-bottom: 20px;
  }
  #access_sec_car h4 img {
    width: 97.7px;
  }
  /* .access_sec {
    padding: 20px 0;
  } */
  #access_sec_car section h3 {
    background-color: #e2eade;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
  #access_sec_info .access_sec_info_inner_txt {
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: normal;
    padding: 0px 0 10px;
  }

  #access_sec_car h4 {
    margin-bottom: 0;
  }
  #access_sec_web {
    padding: 0 0 40px;
  }
  .access_sec_web_sec {
    padding: 0 4%;
  }
  .access_sec_web_inner p {
    margin: 40px 0 !important;
  }
  .access_sec_web_sec iframe {
    max-height: 530px;
  }
}

.facilities_tab-container-under {
  border-bottom: unset !important;
  margin-top: 0 !important;
  border-top: #456800 solid 2px;
  position: relative;
  z-index: 9;
  margin-bottom: 26px;
}
.facilities_tab_under {
  border-radius: 0 0 10px 10px;
  border-top: none;
  border-bottom: #456800 solid 2px;
  box-shadow: rgb(0, 0, 0, 0.2) 4px 0px 0px;
}

@media screen and (max-width: 768px) {
  .facilities_tab-container-under {
    padding: 0 0 40px;
    background-color: #e2eade;
    margin: 0;
  }
  .facilities_tab_under {
    box-shadow: unset;
  }
}
