@charset "UTF-8";
/*****************************************************

 SCSS用
 
*****************************************************/
/* PC/SP 表示・非表示
----------------------------------------------------*/
@media screen and (min-width: 897px) {
  .pc_none {
    display: none !important;
  }
}

@media screen and (max-width: 896px) {
  .sp_none {
    display: none !important;
  }
}

/* =================================================
   circle button
================================================= */
.c_circle_btn {
  width: 140px;
  height: 140px;
  background: #f49f2d;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 26px;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: opacity 0.2s ease, transform 0.06s ease;
}
.c_circle_btn:hover {
  opacity: 0.9;
}
.c_circle_btn:active {
  transform: translateY(1px);
}
.c_circle_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.c_circle_btn i {
  margin-top: 8px;
  font-size: 20px;
}
@media screen and (max-width: 896px) {
  .c_circle_btn {
    width: 100px;
    height: 100px;
    font-size: 20px;
  }
  .c_circle_btn i {
    margin-top: 6px;
    font-size: 16px;
  }
}
.c_circle_btn.c_circle_btn_sm {
  width: 70px;
  height: 70px;
  font-size: 14px;
}
.c_circle_btn.c_circle_btn_sm i {
  margin-top: 6px;
  font-size: 13px;
}
.c_circle_btn.c_circle_btn_info {
  font-size: 26px;
}

/* =================================================
   header
================================================= */
.c_header {
  margin-top: 16px;
  padding: 0;
}
@media screen and (max-width: 896px) {
  .c_header {
    margin-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.c_header_img {
  border-radius: clamp(8px, 4.17vw, 80px);
  overflow: hidden;
  width: calc(100% - 4px);
  height: calc(100% - 1px);
}
.c_header_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 896px) {
  .c_header_img {
    border-radius: 8px;
    width: 100%;
    height: auto;
  }
}

/* =================================================
   section head
================================================= */
.c_section_head {
  position: relative;
  padding-top: 70px;
  min-height: 184px;
  overflow: hidden;
}
.c_section_head::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 440px;
  width: 1025px;
  height: 170px;
  background: url("../images/common/midasi_bg.png") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}
.c_section_head > * {
  position: relative;
  z-index: 1;
}
.c_section_head--no_bg::before {
  display: none;
}
@media screen and (max-width: 896px) {
  .c_section_head {
    padding: 24px 4% 0;
    min-height: 0;
  }
  .c_section_head::before {
    left: auto;
    right: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-image: url("../images/common/h_back_sp.png");
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
  }
}

.c_section_head_ja_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  position: relative;
}
.c_section_head_ja_wrap::before {
  content: "";
  display: block;
  width: 37px;
  height: 29px;
  flex-shrink: 0;
  background-image: url("../images/common/h_icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c_section_head_ja {
  margin: 0;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 896px) {
  .c_section_head_ja {
    font-size: 20px;
  }
}

.c_heading_main {
  display: block;
  margin-top: -8px;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 64px;
  font-weight: 500;
  color: #2778bd;
  line-height: normal;
}
@media screen and (max-width: 896px) {
  .c_heading_main {
    margin-top: -4px;
    font-size: clamp(32px, 8.5vw, 64px);
  }
}

.c_sub_head {
  display: inline-flex;
  align-items: center;
  height: 47px;
  padding: 0 24px;
  margin-top: 0;
  background: #2778bd;
  color: #ffffff;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media screen and (max-width: 896px) {
  .c_sub_head {
    height: auto;
    font-size: 16px;
    padding: 8px 14px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}

/* =================================================
   icon head
================================================= */
.c_icon_head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 24px 0 0;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2778bd;
  line-height: 1.4;
}
.c_icon_head::before {
  content: "";
  display: block;
  width: 8px;
  height: 18px;
  background: #2778bd;
  border-radius: 2px;
  flex-shrink: 0;
}
@media screen and (max-width: 896px) {
  .c_icon_head {
    font-size: 14px;
    align-items: flex-start;
  }
  .c_icon_head::before {
    height: 16px;
    margin-top: 0.2em;
  }
}

/* =================================================
   hamburger
================================================= */
.c_hamburger {
  display: none;
}
@media screen and (max-width: 896px) {
  .c_hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
    z-index: 1102;
    padding: 0;
    border: 0;
    background: transparent;
    color: #2778bd;
    cursor: pointer;
  }
}

@media screen and (max-width: 896px) {
  .c_hamburger_bar {
    width: 28px;
    height: 2px;
    background-color: #2778bd;
    transform-origin: center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  }

  body.is_menu_open .c_hamburger_bar:nth-child(1) {
    transform: translateY(9px) rotate(35deg);
  }
  body.is_menu_open .c_hamburger_bar:nth-child(2) {
    opacity: 0;
  }
  body.is_menu_open .c_hamburger_bar:nth-child(3) {
    transform: translateY(-9px) rotate(-35deg);
  }

  .c_menu_overlay {
    background: #000;
  }
}
/* =================================================
   facility color
================================================= */
.is_incle {
  --facility_color: #21549a;
}

.is_delato {
  --facility_color: #50b4c4;
}

.is_raport {
  --facility_color: #c76d6e;
}

.is_asort,
.is_asoto {
  --facility_color: #81b37d;
}

.is_delabi {
  --facility_color: #f19cbd;
}

.is_delato_support {
  --facility_color: #b86ba4;
}

.is_goodson {
  --facility_color: #f49f2d;
}

.is_miyato {
  --facility_color: #e1443a;
}

.is_all {
  --facility_color: #007D52;
}

.is_info {
  --facility_color: #EA5B75;
}

/* =================================================
   filter button
================================================= */
.c_filter_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 46px;
  padding: 0 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  font-feature-settings: "palt" 0;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 23px;
  border: none;
  background: #ffffff;
  color: var(--facility_color, #2778bd);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.c_filter_btn.is_active, .c_filter_btn[aria-current=true] {
  background: var(--facility_color, #2778bd);
  color: #ffffff;
  box-shadow: none;
}
@media (hover: hover) {
  .c_filter_btn:hover {
    opacity: .85;
  }
}
@media screen and (max-width: 896px) {
  .c_filter_btn {
    font-size: 13px;
    padding: 10px 8px;
  }
}

/* =================================================
   facility card
================================================= */
.c_facility_card {
  background: transparent;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.08));
}
.c_facility_card:focus-within {
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.12));
}

.c_facility_card_link,
.p_facilities_card {
  color: inherit;
  text-decoration: none;
}

/* =================================================
   facility media
================================================= */
.c_facility_card_media,
.p_facilities_card_media {
  border-radius: 40px 0 0 40px;
  background: #eee;
}
.c_facility_card_media img,
.p_facilities_card_media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 896px) {
  .c_facility_card_media,
  .p_facilities_card_media {
    border-radius: 20px 20px 0 0;
  }
}

/* =================================================
   facility body
================================================= */
.c_facility_card_body,
.p_facilities_card_body {
  border-radius: 0 40px 40px 0;
  background: #fff;
  color: #222;
}
@media screen and (max-width: 896px) {
  .c_facility_card_body,
  .p_facilities_card_body {
    border-radius: 0 0 20px 20px;
  }
}

/* =================================================
   tag
================================================= */
.c_facility_card_tag,
.p_facilities_card_tag {
  display: inline-block;
  align-self: flex-start;
  font-size: clamp(12px, 0.833vw, 16px);
  color: #ffffff;
  background: var(--facility_color, #2778bd);
  border-radius: 9999px;
  padding: 4px clamp(8px, 0.833vw, 16px);
}

/* =================================================
   title
================================================= */
.c_facility_card_name,
.p_facilities_card_title {
  font-size: 28px;
  line-height: 1.4;
  color: var(--facility_color, #2778bd);
  font-weight: 400;
}

/* =================================================
   text
================================================= */
.c_facility_card_text,
.p_facilities_card_text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.65);
}

/* =================================================
   more button
================================================= */
.c_facility_card_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  align-self: flex-start;
  min-width: 88px;
  height: 32px;
  padding: 0 16px;
  border-radius: 9999px;
  background: #f49f2d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.c_facility_card_more i {
  font-size: 10px;
}
@media screen and (max-width: 896px) {
  .c_facility_card_more {
    min-width: 80px;
  }
}

.p_facilities_card_more {
  align-self: flex-end;
}

/* =================================================
   delabi adjust
================================================= */
.is_delabi .c_facility_card_tag,
.is_delabi .p_facilities_card_tag {
  font-size: clamp(11px, 0.781vw, 15px);
}

/* =================================================
   facility detail tag
================================================= */
.p_facilities_detail_tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 47px;
  padding: 0 24px;
  margin: 0;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
  line-height: 1;
  border-radius: 0;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media screen and (max-width: 896px) {
  .p_facilities_detail_tag {
    height: 44px;
    padding: 0 18px;
  }
}

.p_facilities_detail_tag_type {
  font-size: 18px;
}
@media screen and (max-width: 896px) {
  .p_facilities_detail_tag_type {
    font-size: 16px;
  }
}

.p_facilities_detail_tag_name {
  font-size: 24px;
  line-height: 2;
  padding-left: 8px;
}
@media screen and (max-width: 896px) {
  .p_facilities_detail_tag_name {
    font-size: 20px;
  }
}

/* =================================================
   facility info
================================================= */
.p_facility_detail_top_info .p_facility_detail_info {
  border-top: 1px solid #ccc;
}
.p_facility_detail_top_info .p_facility_detail_info_row {
  border-bottom: 1px solid #ccc;
}

.p_facility_detail_info_term {
  font-weight: 500;
  color: var(--facility_color, #2778bd);
}

/* =================================================
   bullet
================================================= */
.p_bullet {
  font-size: 14px;
  line-height: 1.2;
  margin-right: .4em;
}

.p_facility_detail_text .p_bullet {
  vertical-align: middle;
}
.p_facility_detail_text mark {
  background: transparent;
  padding: 0;
}

.p_facility_detail_list mark {
  background: transparent;
  padding: 0;
}

/* =================================================
   gallery
================================================= */
.p_facility_detail_gallery_wrap > .swiper-button-prev,
.p_facility_detail_gallery_wrap > .swiper-button-next {
  background: none;
  box-shadow: none;
}
.p_facility_detail_gallery_wrap > .swiper-button-prev::after,
.p_facility_detail_gallery_wrap > .swiper-button-next::after {
  content: "";
  display: none;
}
.p_facility_detail_gallery_wrap > .swiper-button-prev i,
.p_facility_detail_gallery_wrap > .swiper-button-next i {
  font-size: 40px;
  color: var(--facility_color, #2778bd);
}
@media screen and (max-width: 896px) {
  .p_facility_detail_gallery_wrap > .swiper-button-prev i,
  .p_facility_detail_gallery_wrap > .swiper-button-next i {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =================================================
   swiper
================================================= */
.p_facility_detail_swiper .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 16px;
}
.p_facility_detail_swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #cfcfcf;
}
.p_facility_detail_swiper .swiper-pagination-bullet-active {
  background: #333;
}

.p_facility_detail_caption {
  font-size: 14px;
  margin: 8px 0 0;
  text-align: center;
}

/* =================================================
   facility color theme
================================================= */
.p_facility_detail .p_facilities_detail_tag,
.p_facilities_detail .p_facilities_detail_tag {
  background: var(--facility_color, #2778bd);
  color: #fff;
}
.p_facility_detail .p_facilities_detail_dt,
.p_facilities_detail .p_facilities_detail_dt {
  color: var(--facility_color, #2778bd);
}
.p_facility_detail .p_facility_detail_text .p_bullet,
.p_facility_detail .p_facility_detail_bullets .p_bullet,
.p_facility_detail .p_facilities_detail_bullets .p_bullet,
.p_facility_detail .p_facilities_detail_note .p_bullet,
.p_facilities_detail .p_facility_detail_text .p_bullet,
.p_facilities_detail .p_facility_detail_bullets .p_bullet,
.p_facilities_detail .p_facilities_detail_bullets .p_bullet,
.p_facilities_detail .p_facilities_detail_note .p_bullet {
  color: var(--facility_color, #2778bd);
}
.p_facility_detail .p_facility_detail_color_box .p_bullet,
.p_facilities_detail .p_facility_detail_color_box .p_bullet {
  color: #fff;
}
.p_facility_detail .p_facilities_detail_contacts a,
.p_facility_detail .p_facilities_detail_contacts span,
.p_facility_detail .p_facilities_detail_contacts i,
.p_facilities_detail .p_facilities_detail_contacts a,
.p_facilities_detail .p_facilities_detail_contacts span,
.p_facilities_detail .p_facilities_detail_contacts i {
  color: var(--facility_color, #2778bd);
}
.p_facility_detail .is_facility_color_text,
.p_facilities_detail .is_facility_color_text {
  color: var(--facility_color, #2778bd);
}
.p_facility_detail .p_facility_detail_swiper .swiper-pagination-bullet-active,
.p_facilities_detail .p_facility_detail_swiper .swiper-pagination-bullet-active {
  background: var(--facility_color, #2778bd);
}

/* =================================================
   white card
================================================= */
.c_white_card {
  padding: 40px;
  /*> *:first-child {
    margin-top: 0;
  }*/
}
@media screen and (max-width: 896px) {
  .c_white_card {
    padding: 24px;
  }
}

.c_white_card:not(.u_bg_bleed_right) {
  background: #ffffff;
  border-radius: 80px 0 0 80px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 896px) {
  .c_white_card:not(.u_bg_bleed_right) {
    border-radius: 20px;
  }
}

.c_timeline {
  --tl_year_w: 110px;
  --tl_year_w_sp: 56px;
  --tl_line_w: 40px;
  --tl_line_w_sp: 21px;
  --tl_month_w: 54px;
  --tl_month_w_sp: 46px;
  --tl_font_size: 14px;
  --tl_font_size_sp: 14px;
  --tl_text_size: 14px;
  --tl_text_size_sp: 14px;
  --tl_dot_top: 6px;
  --tl_line_color: #3fb3b9;
  --tl_dot_color: #3fb3b9;
  margin-top: 28px;
  position: relative;
}
.c_timeline::before {
  content: "";
  position: absolute;
  top: var(--tl_dot_top);
  bottom: var(--tl_dot_top);
  left: calc(var(--tl_year_w) + 18px + 10px);
  width: 2px;
  background: var(--tl_line_color);
}
.c_timeline.is_facility {
  --tl_year_w: 90px;
  --tl_year_w_sp: 48px;
  --tl_month_w: 40px;
  --tl_month_w_sp: 36px;
  --tl_font_size: 14px;
  --tl_font_size_sp: 14px;
  --tl_text_size: 14px;
  --tl_text_size_sp: 14px;
  --tl_dot_top: 4px;
  --tl_line_color: #50b4c4;
  --tl_dot_color: #50b4c4;
}
.c_timeline.is_facility .c_timeline_row {
  padding: 14px 0;
}
.c_timeline.is_overview .c_timeline_row {
  margin-top: 32px;
}
.c_timeline.is_overview .c_timeline_row:first-child {
  margin-top: 0;
}
.c_timeline.is_overview .c_timeline_year,
.c_timeline.is_overview .c_timeline_month,
.c_timeline.is_overview .c_timeline_text {
  line-height: 2.2;
}
.c_timeline.is_overview .c_timeline_body {
  column-gap: 16px;
}

@media screen and (max-width: 896px) {
  .c_timeline::before {
    left: calc(var(--tl_year_w_sp) + 12px + 10px);
  }
  .c_timeline.is_overview .c_timeline_row {
    margin-top: 24px;
  }
  .c_timeline.is_overview .c_timeline_row:first-child {
    margin-top: 0;
  }
  .c_timeline.is_overview .c_timeline_body {
    column-gap: 8px;
  }
  .c_timeline.is_facility .c_timeline_row {
    padding: 10px 0;
  }
}
.c_timeline_row {
  display: grid;
  grid-template-columns: var(--tl_year_w) var(--tl_line_w) 1fr;
  column-gap: 18px;
  align-items: start;
}

@media screen and (max-width: 896px) {
  .c_timeline_row {
    grid-template-columns: var(--tl_year_w_sp) var(--tl_line_w_sp) 1fr;
    column-gap: 12px;
  }
}
.c_timeline_row_sub {
  display: grid;
  grid-template-columns: var(--tl_year_w) var(--tl_line_w) 1fr;
  column-gap: 18px;
  align-items: start;
  margin-top: 4px;
}

@media screen and (max-width: 896px) {
  .c_timeline_row_sub {
    grid-template-columns: var(--tl_year_w_sp) var(--tl_line_w_sp) 1fr;
    column-gap: 12px;
    margin-top: 4px;
  }
}
.c_timeline_year {
  margin: 0;
  font-size: var(--tl_font_size);
  color: var(--tl_dot_color);
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 896px) {
  .c_timeline_year {
    font-size: var(--tl_font_size_sp);
  }
}
.c_timeline_line {
  position: relative;
  width: 2px;
  margin-left: 10px;
  background: transparent;
}

.c_timeline_dot {
  position: absolute;
  left: 50%;
  top: var(--tl_dot_top);
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--tl_dot_color);
}

@media screen and (max-width: 896px) {
  .c_timeline_dot {
    width: 9px;
    height: 9px;
  }
}
.c_timeline_body {
  display: grid;
  grid-template-columns: var(--tl_month_w) 1fr;
  column-gap: 12px;
  align-items: start;
}

@media screen and (max-width: 896px) {
  .c_timeline_body {
    grid-template-columns: var(--tl_month_w_sp) 1fr;
    column-gap: 8px;
  }
}
.c_timeline_month {
  margin: 0;
  font-size: var(--tl_font_size);
  color: var(--tl_dot_color);
  line-height: 1.6;
}

@media screen and (max-width: 896px) {
  .c_timeline_month {
    font-size: var(--tl_font_size_sp);
  }
}
.c_timeline_text {
  margin: 0;
  font-size: var(--tl_text_size);
  line-height: 1.9;
  color: #333;
}

@media screen and (max-width: 896px) {
  .c_timeline_text {
    font-size: var(--tl_text_size_sp);
  }
}
@media screen and (max-width: 896px) {
  .js_lightbox_target {
    cursor: zoom-in;
  }
}
.c_lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c_lightbox.is_active {
  display: flex;
  opacity: 1;
}

.c_lightbox_img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  touch-action: pinch-zoom;
}

.c_lightbox_close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.c_lightbox_close:active {
  background: rgba(255, 255, 255, 0.4);
}

.p_home_top_slider {
  position: relative;
  width: calc(100% + 16px + 48px);
  margin-top: 16px;
  margin-left: -16px;
  margin-right: -48px;
  padding: 24px 48px 16px 16px;
}
.p_home_top_slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(300px, 82.19vw, 1578px);
  aspect-ratio: 1578/892;
  background: url("../images/home/slider_bg.png") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}
.p_home_top_slider > * {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 896px) {
  .p_home_top_slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    margin-top: 8px;
    padding: 0;
  }
  .p_home_top_slider::before {
    display: none;
  }
}
.p_home_top_slider_inner {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 896px) {
  .p_home_top_slider_inner {
    flex-direction: column;
    gap: 0;
  }
}
.p_home_slider_box {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1;
  border-radius: clamp(8px, 4.17vw, 80px);
  overflow: hidden;
}
.p_home_slider_box .swiper {
  width: 100%;
  height: 100%;
}
.p_home_slider_box .swiper-wrapper {
  height: 100%;
}
.p_home_slider_box .swiper-slide {
  height: 100%;
}
.p_home_slider_box .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 896px) {
  .p_home_slider_box:nth-child(2) {
    display: none;
  }

  .p_home_slider_box {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    border-radius: 8px;
  }
}
.p_home_information {
  margin-top: 0;
}

.p_home_information_layout {
  display: flex;
  gap: clamp(16px, 2.08vw, 40px);
  align-items: flex-start;
}
@media screen and (max-width: 896px) {
  .p_home_information_layout {
    flex-direction: column;
    gap: 0;
  }
}

.p_home_information_head {
  flex: 0 0 auto;
  max-width: 35%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.p_home_information_head .c_section_head {
  margin-top: clamp(-41px, calc(-2.4vw + 5.13px), -15px);
  padding-top: clamp(26px, calc(4.1vw - 8.75px), 70px);
  min-height: clamp(69px, calc(10.78vw - 23px), 184px);
}
@media screen and (max-width: 896px) {
  .p_home_information_head .c_section_head {
    margin-top: 16px;
    padding-top: 24px;
    min-height: 0;
  }
}
.p_home_information_head .c_heading_main {
  font-size: clamp(24px, calc(3.65vw - 8px), 64px);
}
.p_home_information_head .c_section_head_ja {
  font-size: clamp(14px, calc(2.11vw - 4.5px), 36px);
}
.p_home_information_head .c_section_head_ja_wrap {
  gap: clamp(6px, calc(.94vw - 2px), 16px);
}
.p_home_information_head .c_section_head_ja_wrap::before {
  width: clamp(14px, calc(2.17vw - 4.63px), 37px);
  height: clamp(11px, calc(1.7vw - 3.63px), 29px);
}
@media screen and (max-width: 896px) {
  .p_home_information_head {
    display: contents;
    overflow: visible;
  }
}

.p_home_information_more {
  width: clamp(52px, 7.29vw, 140px);
  height: clamp(52px, 7.29vw, 140px);
  margin-top: clamp(9px, 1.25vw, 24px);
  font-size: clamp(10px, 1.354vw, 26px);
}
.p_home_information_more i {
  margin-top: clamp(3px, 0.417vw, 8px);
  font-size: clamp(8px, 1.042vw, 20px);
}
@media screen and (max-width: 896px) {
  .p_home_information_more {
    align-self: center;
    margin-top: 20px;
    order: 10;
    width: auto;
    height: auto;
    border-radius: 9999px;
    flex-direction: row;
    gap: 8px;
    padding: 12px 32px;
    font-size: 14px;
  }
  .p_home_information_more i {
    margin-top: 0;
    font-size: 14px;
  }
}

.p_home_information_body {
  flex: 1;
  min-width: 0;
  position: relative;
  top: 8px;
  left: clamp(0px, 1.875vw, 36px);
}
.p_home_information_body .p_information_list {
  margin-top: 0;
}
.p_home_information_body .p_information_arrow {
  left: -2px;
}

.p_home_facilities_inner > .c_section_head {
  margin-top: -24px;
}

.p_home_facilities_grid {
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .p_home_facilities_grid {
    margin-top: 16px;
  }
}

.p_information_inner {
  margin-top: 56px;
  padding-top: 16px;
}
@media screen and (max-width: 896px) {
  .p_information_inner {
    margin-top: 32px;
    padding: 24px 16px;
  }
}

.p_information_list {
  margin-top: 24px;
  display: grid;
  row-gap: 0;
}

.p_information_item {
  display: grid;
  grid-template-columns: clamp(80px, 6.25vw, 120px) 1fr 24px;
  column-gap: clamp(16px, 2.08vw, 40px);
  align-items: center;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px dashed #808080;
}
.p_information_item:first-child {
  border-top: none;
}
@media screen and (max-width: 896px) {
  .p_information_item {
    grid-template-columns: 80px 1fr;
    column-gap: 16px;
  }
}

.p_information_thumb {
  display: block;
  width: clamp(80px, 6.25vw, 120px);
  height: clamp(80px, 6.25vw, 120px);
  border-radius: 999px;
  object-fit: cover;
  background: #f0f0f0;
}
@media screen and (max-width: 896px) {
  .p_information_thumb {
    width: 80px;
    height: 80px;
  }
}

.p_information_meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p_information_date {
  font-size: 14px;
  opacity: 0.7;
}

.p_information_cat {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  min-width: 80px;
  text-align: center;
  display: inline-block;
}

.p_information_text {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 896px) {
  .p_information_text {
    font-size: 15px;
    line-height: 1.5;
  }
}

.p_information_arrow {
  font-size: 18px;
  color: #2778bd;
  position: relative;
  left: 32px;
}
@media screen and (max-width: 896px) {
  .p_information_arrow {
    display: none;
  }
}

.p_information {
  margin-top: 40px;
}

.p_information_filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 24px;
  justify-content: start;
}
@media screen and (max-width: 896px) {
  .p_information_filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }
}

.p_home_information .p_information_cat,
.p_information .p_information_cat,
.p_information_detail .p_information_cat {
  background: var(--facility_color, #2778bd);
  color: #ffffff;
}

.p_information_detail .p_information_inner {
  padding: 20px clamp(20px, 2.08vw, 40px);
}

.p_information_detail_meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p_information_detail_date {
  font-size: 14px;
  opacity: 0.7;
}

.p_information_detail_title {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 896px) {
  .p_information_detail_title {
    font-size: 20px;
  }
}

.p_information_detail_body {
  margin-top: 0;
}

.p_information_detail_gallery {
  margin-bottom: 32px;
}
.p_information_detail_gallery_main, .p_information_detail_gallery_item {
  margin: 0;
}
.p_information_detail_gallery_main img, .p_information_detail_gallery_item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.p_information_detail_gallery.is_3 .p_information_detail_gallery_sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
@media screen and (max-width: 896px) {
  .p_information_detail_gallery.is_3 .p_information_detail_gallery_sub {
    gap: 8px;
    margin-top: 8px;
  }
}
.p_information_detail_gallery.is_3 .p_information_detail_gallery_item img {
  border-radius: 0;
}

.p_information_detail_gallery.is_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 896px) {
  .p_information_detail_gallery.is_2 {
    gap: 8px;
  }
}

.p_information_detail_content {
  margin-top: 32px;
}
.p_information_detail_content:first-child {
  margin-top: 0;
}

.p_information_detail_h2 {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p_information_detail_h2::before {
  content: "○";
  font-size: 18px;
  color: #21549a;
  flex-shrink: 0;
}
.p_information_detail_h2:first-child {
  margin-top: 0;
}
@media screen and (max-width: 896px) {
  .p_information_detail_h2 {
    font-size: 16px;
  }
  .p_information_detail_h2::before {
    font-size: 16px;
  }
}

.p_information_detail_h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #50b4c4;
  margin-top: 24px;
}
@media screen and (max-width: 896px) {
  .p_information_detail_h3 {
    font-size: 14px;
  }
}

.p_information_detail_p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 896px) {
  .p_information_detail_p {
    font-size: 14px;
  }
}

.p_information_detail_back {
  margin-top: 64px;
  text-align: center;
}

.p_information_detail_back_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 288px;
  height: 48px;
  border-radius: 23px;
  background: #f49f2d;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.p_information_detail_back_btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 896px) {
  .p_information_detail_back_btn {
    width: 240px;
    height: 40px;
    font-size: 14px;
  }
}

.p_information_pager {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 896px) {
  .p_information_pager {
    margin-top: 40px;
  }
}

.p_information_pager_btn {
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #f49f2d;
  background: #fff;
  color: #f49f2d;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.p_information_pager_btn.is_active {
  background: #f49f2d;
  border-color: #f49f2d;
  color: #fff;
}
@media screen and (max-width: 896px) {
  .p_information_pager_btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

@media screen and (max-width: 896px) {
  .p_overview {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p_overview_inner {
  padding-bottom: 0;
}
@media screen and (max-width: 896px) {
  .p_overview_inner {
    padding-bottom: 0;
  }
}

.p_overview_kv {
  margin-top: 16px;
}

.p_overview_kv_img {
  border-radius: 32px;
  overflow: hidden;
}
.p_overview_kv_img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 896px) {
  .p_overview_kv_img {
    border-radius: 20px;
  }
}

.p_overview_section {
  margin-top: 40px;
  display: flow-root;
}
@media screen and (max-width: 896px) {
  .p_overview_section {
    margin-top: 32px;
  }
}

.p_overview_section--about > .c_sub_head, .p_overview_section--rinen > .c_sub_head, .p_overview_section--enkaku > .c_sub_head, .p_overview_section--joho > .c_sub_head, .p_overview_section--link > .c_sub_head {
  margin-top: 24px;
}
@media screen and (max-width: 896px) {
  .p_overview_section--about > .c_sub_head, .p_overview_section--rinen > .c_sub_head, .p_overview_section--enkaku > .c_sub_head, .p_overview_section--joho > .c_sub_head, .p_overview_section--link > .c_sub_head {
    margin-top: 32px;
  }
}
.p_overview_section--meibo, .p_overview_section--chart {
  margin-top: 32px;
}
.p_overview_section--meibo .c_icon_head, .p_overview_section--chart .c_icon_head {
  margin-top: 0;
}
.p_overview_section--staff {
  margin-top: 68px;
}

.p_overview_greeting_wrap {
  padding: clamp(20px, 2.08vw, 40px) clamp(20px, 2.08vw, 40px) clamp(20px, 3.33vw, 64px);
}
@media screen and (max-width: 896px) {
  .p_overview_greeting_wrap {
    padding: 20px;
  }
}

.p_overview_greeting {
  margin-top: 40px;
  display: grid;
  grid-template-columns: clamp(300px, 24.17vw, 464px) minmax(0, 1fr);
  column-gap: clamp(16px, 2.71vw, 52px);
  align-items: start;
}
@media screen and (max-width: 896px) {
  .p_overview_greeting {
    grid-template-columns: 1fr;
    margin-top: 24px;
    row-gap: 16px;
  }
}

.p_overview_greeting_img {
  overflow: hidden;
  width: clamp(300px, 24.17vw, 464px);
  height: clamp(200px, 18.23vw, 350px);
}
.p_overview_greeting_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 896px) {
  .p_overview_greeting_img {
    width: 100%;
    height: auto;
    justify-self: center;
  }
}

.p_overview_greeting_text {
  margin: -8px -40px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}
@media screen and (max-width: 896px) {
  .p_overview_greeting_text {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
  }
}

.p_overview_about_grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 756fr) minmax(0, 742fr);
  column-gap: clamp(20px, 1.98vw, 38px);
  align-items: start;
}
@media screen and (max-width: 896px) {
  .p_overview_about_grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.p_overview_about_text {
  padding-right: 16px;
}
.p_overview_about_text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.p_overview_about_text p + p {
  margin-top: 18px;
}
@media screen and (max-width: 896px) {
  .p_overview_about_text p {
    font-size: 13px;
    line-height: 1.9;
  }
}

.p_overview_about_info {
  background: #ffffff;
  padding: 32px 0 32px 28px;
}
@media screen and (max-width: 896px) {
  .p_overview_about_info {
    padding: 0;
  }
}

.p_overview_info_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.p_overview_info_table th,
.p_overview_info_table td {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 14px 24px;
  font-size: 16px;
  line-height: 1.8;
  vertical-align: middle;
}
@media screen and (max-width: 896px) {
  .p_overview_info_table th,
  .p_overview_info_table td {
    padding: 14px 14px;
    font-size: 15px;
  }
}
.p_overview_info_table tr:last-child th,
.p_overview_info_table tr:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.p_overview_info_table th {
  width: 170px;
  padding-left: 32px;
  color: #2778bd;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .p_overview_info_table th {
    width: 100px;
    padding-left: 14px;
  }
}
.p_overview_info_table td {
  padding-left: 32px;
}

.p_overview_qa {
  background: #D3E4F5;
  padding: clamp(24px, 2.08vw, 40px);
}
@media screen and (max-width: 896px) {
  .p_overview_qa {
    padding: 24px 18px;
  }
}

.p_overview_qa_row + .p_overview_qa_row {
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .p_overview_qa_row + .p_overview_qa_row {
    margin-top: 21px;
  }
}

.p_overview_qa_rect {
  background: #f5fafe;
  margin: 0;
  padding: clamp(18px, 2.08vw, 40px) 0 clamp(18px, 1.67vw, 32px);
  text-align: center;
}
@media screen and (max-width: 896px) {
  .p_overview_qa_rect {
    padding: 18px 16px;
  }
}

.p_overview_qa_rect_title {
  display: inline-block;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #2778bd;
}
.p_overview_qa_rect_title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #2778bd;
  margin: 8px auto 0;
}

.p_overview_qa_rect_text {
  margin: 40px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 896px) {
  .p_overview_qa_rect_text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.9;
  }
}

.p_overview_qa_row--badge {
  display: grid;
  grid-template-columns: clamp(120px, 7.29vw, 140px) 1fr;
  column-gap: clamp(16px, 1.82vw, 35px);
  align-items: center;
}
@media screen and (max-width: 896px) {
  .p_overview_qa_row--badge {
    grid-template-columns: 1fr;
    row-gap: 12px;
    justify-items: center;
  }
}

.p_overview_qa_badge img {
  display: block;
  width: 140px;
  height: 146px;
  object-fit: contain;
}
@media screen and (max-width: 896px) {
  .p_overview_qa_badge img {
    width: 120px;
    height: auto;
  }
}

.p_overview_qa_texts {
  display: grid;
  row-gap: 16px;
}
@media screen and (max-width: 896px) {
  .p_overview_qa_texts {
    row-gap: 12px;
  }
}

.p_overview_qa_text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #333;
}
@media screen and (max-width: 896px) {
  .p_overview_qa_text {
    font-size: 13px;
    line-height: 1.9;
  }
}

.p_overview_section--enkaku .c_timeline.is_overview {
  --tl_year_w: 66px;
  --tl_line_w: 24px;
  --tl_line_w_sp: 24px;
  --tl_dot_top: 8px;
  --tl_month_w: 36px;
  margin-top: 40px;
}

.p_overview_quote {
  margin-top: 40px;
}

.p_overview_quote_lead {
  margin: 0;
  font-size: 18px;
  color: #333;
}
@media screen and (max-width: 896px) {
  .p_overview_quote_lead {
    font-size: 16px;
  }
}

.p_overview_quote_sub {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #333;
}
@media screen and (max-width: 896px) {
  .p_overview_quote_sub {
    font-size: 13px;
    line-height: 1.9;
  }
}

.p_overview_quote_border {
  border-bottom: 1px solid #2778bd;
  padding-bottom: 2px;
}

.p_overview_policy_grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  justify-items: center;
}
@media screen and (max-width: 896px) {
  .p_overview_policy_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.p_overview_policy_card {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 32px 18px 28px;
  width: 100%;
  max-width: 296px;
  min-height: 328px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 896px) {
  .p_overview_policy_card {
    flex-direction: row;
    max-width: 100%;
    min-height: auto;
    padding: 16px 20px;
    gap: 16px;
  }
}

.p_overview_policy_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}
.p_overview_policy_icon img {
  display: block;
  width: auto;
  height: auto;
  max-height: 100%;
}
@media screen and (max-width: 896px) {
  .p_overview_policy_icon {
    height: auto;
    width: 64px;
    flex-shrink: 0;
  }
  .p_overview_policy_icon img {
    max-width: 64px;
    max-height: 64px;
  }
}

.p_overview_policy_text {
  margin: 48px 0 0;
  max-width: 210px;
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .p_overview_policy_text {
    max-width: none;
    margin-top: 0;
    text-align: center;
  }
}

.p_overview_pdf_list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  row-gap: 10px;
}

.p_overview_pdf_item--border_top {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 0.5px solid #2778bd;
}

.p_overview_pdf_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}
.p_overview_pdf_link i {
  color: #f49f2d;
  font-size: 18px;
}
.p_overview_pdf_link:hover {
  text-decoration: underline;
}

.p_overview_roster_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.292vw, 44px);
}
@media screen and (max-width: 896px) {
  .p_overview_roster_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.p_overview_roster_block {
  min-width: 0;
}

.p_overview_roster_date {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.p_overview_roster_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-top: 14px;
}
.p_overview_roster_table thead th {
  background: #a9d5da;
  color: #333;
  font-weight: 500;
  text-align: left;
}
.p_overview_roster_table th,
.p_overview_roster_table td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: clamp(36px, 2.344vw, 45px);
  padding: 0 clamp(14px, 1.563vw, 30px);
  font-size: clamp(13px, 0.781vw, 15px);
  line-height: 1.7;
  vertical-align: middle;
}
@media screen and (max-width: 896px) {
  .p_overview_roster_table th,
  .p_overview_roster_table td {
    height: auto;
    padding: 4px 6px;
    font-size: 11px;
  }
}
.p_overview_roster_table th:first-child,
.p_overview_roster_table td:first-child {
  width: clamp(140px, 11.458vw, 220px);
}
@media screen and (max-width: 896px) {
  .p_overview_roster_table th:first-child,
  .p_overview_roster_table td:first-child {
    width: auto;
  }
}
.p_overview_roster_table tbody td {
  background: #ffffff;
}
.p_overview_roster_table tbody td:nth-child(2) {
  background: #F5FAFA;
}
.p_overview_roster_table tbody td:first-child {
  background: #eaf6f7;
  font-weight: 500;
}
.p_overview_roster_table tbody td:nth-child(3), .p_overview_roster_table tbody td:nth-child(4) {
  background: #ffffff;
}
@media screen and (max-width: 896px) {
  .p_overview_roster_table {
    table-layout: auto;
  }
}
.p_overview_roster_table--council th:nth-child(1),
.p_overview_roster_table--council td:nth-child(1) {
  width: clamp(140px, 11.458vw, 220px);
}
.p_overview_roster_table--council th:nth-child(2),
.p_overview_roster_table--council td:nth-child(2) {
  width: clamp(180px, 14.219vw, 273px);
}
.p_overview_roster_table--council th:nth-child(3),
.p_overview_roster_table--council td:nth-child(3) {
  width: clamp(80px, 6.25vw, 120px);
}
.p_overview_roster_table--council th:nth-child(4),
.p_overview_roster_table--council td:nth-child(4) {
  width: clamp(80px, 6.25vw, 120px);
}
.p_overview_roster_table--council thead th:nth-child(3),
.p_overview_roster_table--council thead th:nth-child(4) {
  white-space: nowrap;
  text-align: left;
}
.p_overview_roster_table--council tbody td:nth-child(3),
.p_overview_roster_table--council tbody td:nth-child(4) {
  text-align: left;
}
@media screen and (max-width: 896px) {
  .p_overview_roster_table--council th,
  .p_overview_roster_table--council td {
    width: auto !important;
  }
}

@media screen and (max-width: 896px) {
  .p_overview_roster_scroll {
    overflow-x: visible;
  }
}
.p_overview_roster_note {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.p_overview_chart {
  margin-top: 14px;
}
@media screen and (max-width: 896px) {
  .p_overview_chart {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.p_overview_chart img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 896px) {
  .p_overview_chart img {
    width: 100%;
  }
}

.p_overview_section--staff .p_facility_detail_bullets {
  margin-top: 32px;
}

.p_overview .p_facility_detail_bullets .p_bullet {
  color: #2778bd;
}

.p_overview_links {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 896px) {
  .p_overview_links {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.p_overview_links_link {
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p_overview_links_link:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.p_overview_links_link img {
  display: block;
  width: 100%;
  height: auto;
}

.p_facilities_detail_tag {
  margin-bottom: 40px;
}
@media screen and (max-width: 896px) {
  .p_facilities_detail_tag {
    margin-bottom: 24px;
  }
}

.is_incle.p_facilities_detail {
  margin-top: 64px;
}

.is_miyato .p_facilities_detail_inner {
  position: relative;
  top: 6px;
}

.p_facility_detail {
  width: 100%;
  padding-bottom: 64px;
}
.p_facility_detail_header {
  width: 100%;
}
.p_facility_detail_main_visual {
  width: 100%;
  margin: 0;
}
.p_facility_detail_main_visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 563/348;
  object-fit: cover;
}
.p_facility_detail_top {
  display: grid;
  grid-template-columns: minmax(0, clamp(350px, 29.32vw, 563px)) 1fr;
  gap: clamp(16px, 2.92vw, 56px);
  margin-top: 24px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_top {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p_facility_detail_top_left {
  display: flex;
  flex-direction: column;
  margin-top: 13px;
}
.p_facility_detail_top_info {
  width: 100%;
}
.p_facility_detail_section {
  margin-top: 32px;
}
.p_facility_detail_section:has(.p_facility_detail_color_box) + .p_facility_detail_section {
  margin-top: 46px;
}
.p_facility_detail_section[aria-label="運営方針"], .p_facility_detail_section[aria-label="活動日課"] {
  margin-top: 40px;
}
.p_facility_detail_section[aria-label="児童発達支援1日の流れ"] {
  margin-top: 42px;
  line-height: 1.7;
}
.p_facility_detail_section[aria-label="児童発達支援1日の流れ"] > .p_facility_detail_day_img {
  margin-top: 21px;
  margin-bottom: 28px;
}
.p_facility_detail .c_timeline.is_facility {
  margin-top: 21px;
}
.p_facility_detail .c_timeline.is_facility::before {
  left: calc(var(--tl_year_w) + 5px);
  top: var(--tl_dot_top);
  bottom: 0;
}
.p_facility_detail .c_timeline.is_facility .c_timeline_dot {
  left: -22px;
}
.p_facility_detail .c_timeline.is_facility .c_timeline_body {
  margin-left: -39px;
}
.p_facility_detail .c_timeline.is_facility .c_timeline_row {
  padding: 0;
}
.p_facility_detail .c_timeline.is_facility .c_timeline_row + .c_timeline_row {
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail .c_timeline.is_facility::before {
    left: calc(var(--tl_year_w_sp) + 12px + 10px);
    top: var(--tl_dot_top);
    bottom: var(--tl_dot_top);
  }
  .p_facility_detail .c_timeline.is_facility .c_timeline_dot {
    left: 50%;
  }
  .p_facility_detail .c_timeline.is_facility .c_timeline_body {
    margin-left: 0;
  }
  .p_facility_detail .c_timeline.is_facility .c_timeline_row {
    padding: 10px 0;
  }
  .p_facility_detail .c_timeline.is_facility .c_timeline_row + .c_timeline_row {
    margin-top: 0;
  }
}

.is_delabi .p_facility_detail_section[aria-label="運営方針"] > .c_icon_head {
  margin-bottom: 22px;
}

.p_facility_detail_block_title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #2778bd;
}

.p_facility_detail_text {
  margin-top: 0;
  font-weight: 400;
}

.p_facility_detail_header > .p_facility_detail_text {
  margin-right: -1em;
  line-height: 1.6;
}
.p_facility_detail_header > .p_facility_detail_text + .p_facility_detail_header > .p_facility_detail_text {
  margin-top: 16px;
  width: 100%;
}

.p_facility_detail_block_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.p_facility_detail_gmap {
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  aspect-ratio: 563/233;
}
.p_facility_detail_gmap iframe,
.p_facility_detail_gmap .p_facility_detail_gmap_dummy {
  width: 100%;
  display: block;
  border: 0;
  height: calc(100% + 220px);
  margin-top: -110px;
}

.p_facility_detail_map_gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_map_gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    margin-left: -24px;
    margin-right: -24px;
  }
}

.p_facility_detail_floor_map {
  max-width: 544px;
  justify-self: center;
  margin: 0 -16px 0 0;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_floor_map {
    max-width: none;
    justify-self: stretch;
    margin: 0;
  }
}
.p_facility_detail_floor_map img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 544/392;
  object-fit: contain;
}

.p_facility_detail_gallery_wrap {
  width: 100%;
  max-width: clamp(350px, 26.04vw, 500px);
  min-width: 0;
  overflow: visible;
  position: relative;
  justify-self: center;
  margin-right: clamp(-80px, -4.17vw, 0px);
}
@media screen and (max-width: 896px) {
  .p_facility_detail_gallery_wrap {
    max-width: none;
    justify-self: stretch;
    margin-right: 0;
  }
}
.p_facility_detail_gallery_wrap > .swiper-button-prev,
.p_facility_detail_gallery_wrap > .swiper-button-next {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  margin-top: 0;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_gallery_wrap > .swiper-button-prev,
  .p_facility_detail_gallery_wrap > .swiper-button-next {
    width: 32px;
    height: 32px;
    top: 43%;
  }
}
.p_facility_detail_gallery_wrap > .swiper-button-prev {
  left: -104px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_gallery_wrap > .swiper-button-prev {
    left: 8px;
  }
}
.p_facility_detail_gallery_wrap > .swiper-button-next {
  right: -104px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_gallery_wrap > .swiper-button-next {
    right: 8px;
  }
}

.p_facility_detail_swiper {
  width: 100%;
}
.p_facility_detail_swiper .swiper-slide figure {
  margin: 0;
}
.p_facility_detail_swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 500/343;
  object-fit: cover;
  border-radius: 16px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_swiper .swiper-slide img {
    border-radius: 8px;
  }
}
@media screen and (max-width: 896px) {
  .p_facility_detail_swiper .swiper-slide {
    width: 100% !important;
  }
}

.p_facility_detail_day_cols {
  display: flex;
  align-items: start;
  gap: clamp(16px, 2.86vw, 55px);
  margin-top: 16px;
  margin-top-width: 100%;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_day_cols {
    flex-direction: column;
    gap: 16px;
  }
}

.p_facility_detail_day_text {
  width: fit-content;
}

.p_facility_detail_day_img {
  margin: 0;
}
.p_facility_detail_day_img img {
  display: block;
  height: auto;
}

.p_facility_detail_color_box {
  margin-top: 16px;
  margin-top-width: 100%;
  padding: 16px 46px;
  background: var(--facility_color, #2778bd);
  border-radius: 8px;
  color: #fff;
}
.p_facility_detail_color_box.is_no_radius {
  border-radius: 0;
}
.p_facility_detail_color_box p {
  margin: 0;
}
.p_facility_detail_color_box p + p {
  margin-top: 8px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_color_box {
    padding: 16px;
  }
}

.p_facility_detail_bullets,
.p_facilities_detail_bullets {
  margin: 15px 0 0;
  padding-left: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.1;
}
.p_facility_detail_bullets:first-child,
.p_facilities_detail_bullets:first-child {
  margin-top: 0;
}
.p_facility_detail_bullets li,
.p_facilities_detail_bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_bullets li,
  .p_facilities_detail_bullets li {
    align-items: flex-start;
  }
  .p_facility_detail_bullets li .p_bullet,
  .p_facilities_detail_bullets li .p_bullet {
    margin-top: 0.55em;
  }
}

.p_facility_detail_bullets + .p_facility_detail_text {
  margin-top: 18px;
  line-height: 1.5;
}

.p_facility_detail_info_row {
  display: grid;
  grid-template-columns: 10em 1fr;
  column-gap: 12px;
  padding: 16px 0 16px 32px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_info_row {
    grid-template-columns: 1fr;
    row-gap: 4px;
    padding: 8px 0;
  }
}

.p_facility_detail_info_term {
  margin: 0;
  font-size: 16px;
  padding-left: 5px;
  white-space: nowrap;
}

.p_facility_detail_info_desc {
  margin: 0;
  font-size: 16px;
  padding-left: 21px;
}

.p_facility_detail_flow_img {
  margin: 0;
}
.p_facility_detail_flow_img img {
  width: 100%;
  height: auto;
  display: block;
}

.p_facility_detail_map img {
  width: 100%;
  height: auto;
  display: block;
}

.p_facility_detail_links {
  margin: 0;
  padding-left: 1.2em;
}

.p_facilities_detail {
  position: relative;
  margin-top: 48px;
}
.p_facilities_detail:first-of-type {
  margin-top: 56px;
}
@media screen and (max-width: 896px) {
  .p_facilities_detail {
    margin-top: 24px;
  }
}
.p_facilities_detail_inner {
  position: relative;
  padding-bottom: 64px;
}
.p_facilities_detail_card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
@media screen and (max-width: 1300px) {
  .p_facilities_detail_card {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 896px) {
  .p_facilities_detail_card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.p_facilities_detail_media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 475/319;
  border-radius: 0;
}

.p_facilities_detail_map {
  width: 100%;
  margin-left: 14px;
  overflow: hidden;
  aspect-ratio: 475/319;
}
.p_facilities_detail_map iframe {
  width: 100%;
  display: block;
  border: 0;
  height: calc(100% + 220px);
  margin-top: -110px;
}

.p_facilities_detail_info {
  width: 100%;
  padding: 0 0 0 clamp(16px, 2.08vw, 40px);
}
@media screen and (max-width: 1300px) {
  .p_facilities_detail_info {
    grid-column: 1/-1;
    padding-left: 0;
  }
}

.p_facilities_detail_list {
  margin: 0;
  border-top: 1px solid #ccc;
}

.p_facilities_detail_row {
  display: grid;
  grid-template-columns: 10em 1fr;
  column-gap: 8px;
  padding: 14px 0 14px 8px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 896px) {
  .p_facilities_detail_row {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
}

.p_facilities_detail_dt,
.p_facilities_detail_dd {
  margin: 0;
  font-size: 14px;
}

.p_facilities_detail_note_inline {
  line-height: 1.5;
}

.p_facilities_detail_body {
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .p_facilities_detail_body {
    margin-top: 14px;
  }
}

.p_facilities_detail_heading {
  margin-top: 40px;
}
.p_facilities_detail_heading:first-child {
  margin-top: 0;
}

.p_facilities_detail_note {
  margin-top: 16px;
  margin-top-width: 100%;
}
.p_facilities_detail_note:has(.p_bullet) {
  margin-top: 24px;
}
.p_facilities_detail_note:has(.p_bullet) .p_bullet {
  margin-right: 1em;
}

.p_facilities_detail_flow {
  max-width: 1152px;
  margin-top: 40px;
}
.p_facilities_detail_flow img {
  width: 100%;
  height: auto;
  display: block;
}

.p_facilities_detail_contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 32px;
  margin-top: 8px;
}

.p_facilities_detail_contact_item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 30px;
}
.p_facilities_detail_contact_item i {
  font-size: 24px;
}
.p_facilities_detail_contact_item a {
  text-decoration: none;
}

.p_facility_detail_section[aria-label=自己評価] {
  margin-top: 55px;
}
.p_facility_detail_section[aria-label=Instagram] > .c_icon_head {
  margin-top: 35px;
}

.p_facility_detail_eval_title {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.p_facility_detail_eval_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 21px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_eval_grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

.p_facility_detail_eval_card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: #F2F2F2;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.p_facility_detail_eval_card:hover {
  opacity: .75;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_eval_card {
    height: auto;
    padding: 12px;
  }
}

.p_facility_detail_eval_icon {
  color: #f49f2d;
  font-size: 16px;
  flex-shrink: 0;
}

.p_facility_detail_instagram {
  width: calc(100% + 35px);
  margin-top: 32px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_instagram {
    margin-top: 16px;
    width: 100%;
  }
}
.p_facility_detail_instagram .sbi_load_btn {
  background: #333 !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-family: "Kiwi Maru", sans-serif !important;
  font-weight: 500 !important;
  transition: opacity .2s ease;
}
.p_facility_detail_instagram .sbi_load_btn:hover {
  opacity: .85;
}
.p_facility_detail_instagram .sbi_follow_btn a {
  background: #2778bd !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-family: "Kiwi Maru", sans-serif !important;
  font-weight: 500 !important;
  transition: opacity .2s ease;
}
.p_facility_detail_instagram .sbi_follow_btn a:hover {
  opacity: .85;
}

.p_facility_detail_instagram_placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 638px;
  padding: 48px 24px;
  background: #fafafa;
  border: 2px dashed #ddd;
  text-align: center;
  color: #999;
}
.p_facility_detail_instagram_placeholder i {
  font-size: 48px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p_facility_detail_instagram_placeholder p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_instagram_placeholder {
    min-height: 400px;
    padding: 32px 16px;
  }
  .p_facility_detail_instagram_placeholder i {
    font-size: 36px;
  }
}

.p_facility_detail_instagram_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_instagram_btns {
    margin-top: 16px;
    width: 100%;
  }
}

.p_facility_detail_instagram_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  color: #fff;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s ease;
}
.p_facility_detail_instagram_btn:hover {
  opacity: .85;
}
.p_facility_detail_instagram_btn i {
  font-size: 16px;
}
@media screen and (max-width: 896px) {
  .p_facility_detail_instagram_btn {
    padding: 12px 24px;
  }
}
.p_facility_detail_instagram_btn.is_load_more {
  background: #333;
}
.p_facility_detail_instagram_btn.is_follow {
  background: #2778bd;
}

.l_recruit_archive_head {
  margin-top: 16px;
}

.p_recruit_filter {
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .p_recruit_filter {
    margin-top: 16px;
  }
}

.p_recruit_filter_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
}
@media screen and (max-width: 896px) {
  .p_recruit_filter_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }
}

.p_recruit_filter_item {
  margin: 0;
  padding: 0;
}

.l_recruit_archive {
  margin-top: 56px;
  padding-bottom: 24px;
}
@media screen and (max-width: 896px) {
  .l_recruit_archive {
    margin-top: 20px;
    padding-bottom: 16px;
  }
}

.p_recruit_empty {
  padding: 48px 24px;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .p_recruit_empty {
    padding: 32px 16px;
  }
}
.p_recruit_empty_text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 896px) {
  .p_recruit_empty_text {
    font-size: 14px;
  }
}

.l_recruit_card_head {
  display: grid;
  gap: 8px;
}

.l_recruit_card_body {
  margin-top: 16px;
}

.l_recruit_detail_list {
  margin: 0;
  padding: 0;
}

.l_recruit_detail_row {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 245px 1fr;
  border-bottom: none;
}
@media screen and (max-width: 896px) {
  .l_recruit_detail_row {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}
.l_recruit_detail_row:first-child .c_recruit_detail_dt {
  border-top: 1px solid #2778BD;
}
.l_recruit_detail_row:first-child .c_recruit_detail_dd {
  border-top: 1px solid #ccc;
}

.l_recruit_actions {
  margin-top: 40px;
}
.l_recruit_actions.is_hidden {
  display: none;
}
@media screen and (max-width: 896px) {
  .l_recruit_actions {
    margin-top: 24px;
  }
}
.l_recruit_actions_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.l_recruit_actions_inner > * {
  flex: 1 1 0;
}
.l_recruit_actions_inner > *:only-child {
  flex: 1 1 100%;
}
@media screen and (max-width: 896px) {
  .l_recruit_actions_inner {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
  .l_recruit_actions_inner > * {
    width: 100%;
    max-width: none;
  }
}

.p_recruit_card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding-bottom: 36px;
}
@media screen and (max-width: 896px) {
  .p_recruit_card {
    padding: 24px 20px 24px;
  }
}
.p_recruit_card + .p_recruit_card {
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .p_recruit_card + .p_recruit_card {
    margin-top: 32px;
  }
}

.c_recruit_card_facility {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #2778bd;
  position: relative;
  padding-left: 20px;
}
.c_recruit_card_facility::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 18px;
  background: #2778bd;
  border-radius: 0;
}
@media screen and (max-width: 896px) {
  .c_recruit_card_facility {
    font-size: 13px;
    padding-left: 16px;
  }
}

.c_recruit_card_title {
  margin: 0;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 500;
  color: #2778bd;
  padding-left: 16px;
}
@media screen and (max-width: 896px) {
  .c_recruit_card_title {
    font-size: 20px;
    padding-left: 12px;
  }
}

.c_recruit_detail_dt {
  border-bottom: 1px solid #2778BD;
  margin: 0;
  padding: 16px 24px 16px 32px;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 896px) {
  .c_recruit_detail_dt {
    font-size: 14px;
    padding: 16px 12px 8px;
    background: rgba(39, 120, 189, 0.06);
  }
}

.c_recruit_detail_dd {
  border-bottom: 1px solid #ccc;
  margin: 0;
  padding: 16px 24px 16px 28px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}
.c_recruit_detail_dd.is_bracket_start,
.c_recruit_detail_dd .is_bracket_start {
  text-indent: -0.5em;
}
@media screen and (max-width: 896px) {
  .c_recruit_detail_dd {
    font-size: 14px;
    padding: 0 0 16px 0;
  }
}

.c_recruit_action_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 16px 24px;
  border-radius: 30px;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  background: #ffffff;
}
.c_recruit_action_btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.c_recruit_action_btn:active {
  transform: translateY(2px);
}
.c_recruit_action_btn i {
  margin-right: 8px;
  font-size: 24px;
}
@media (hover: hover) {
  .c_recruit_action_btn:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 896px) {
  .c_recruit_action_btn {
    font-size: 16px;
    padding: 16px 20px;
    min-height: 56px;
  }
}
.c_recruit_action_btn.is_phone, .c_recruit_action_btn.is_hellowork {
  border: 2px solid #f49f2d;
  color: #f49f2d;
}

.p_contact {
  padding-bottom: 0;
}
.p_contact .c_sub_head + .p_contact_tel_grid + .c_sub_head {
  margin-top: 64px;
}

.p_contact_tel_grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 896px) {
  .p_contact_tel_grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
  }
}

.p_contact_tel_card {
  background: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  min-height: 120px;
  padding: 24px 8px 16px;
  text-align: center;
}
.p_contact_tel_card:nth-child(n+7) {
  min-height: 152px;
}
.p_contact_tel_card .p_contact_tel_name,
.p_contact_tel_card .p_contact_tel_time {
  color: var(--facility_color, inherit);
}
@media screen and (max-width: 896px) {
  .p_contact_tel_card {
    min-height: auto;
    padding: 20px 16px 8px;
  }
  .p_contact_tel_card:nth-child(n+7) {
    min-height: auto;
  }
}

.p_contact_tel_name {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 500;
}

.p_contact_tel_time {
  margin: 0;
  font-size: 14px;
}

.p_contact_tel_num {
  margin: 8px 0 0;
  font-size: clamp(16px, 1.25vw, 24px);
}
.p_contact_tel_num + .p_contact_tel_num {
  margin-top: 0;
}

.p_contact_tel_label {
  font-weight: 500;
  font-size: 16px;
}

.p_contact_tel_spacer {
  display: inline-block;
  width: 16px;
}

.p_contact_mail_lead {
  margin-top: 32px;
  display: grid;
  gap: 8px;
}
.p_contact_mail_lead p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.p_contact_policy {
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .p_contact_policy {
    margin-top: 24px;
  }
}

.p_contact_policy_box {
  background: #fff;
  border: 1px solid #2778bd;
  border-radius: 0;
  padding: 24px;
  max-height: 320px;
  line-height: 1.65;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #2778bd #c5dbed;
}
.p_contact_policy_box::-webkit-scrollbar {
  width: 8px;
}
.p_contact_policy_box::-webkit-scrollbar-track {
  background: #c5dbed;
  border-radius: 4px;
}
.p_contact_policy_box::-webkit-scrollbar-thumb {
  background: #2778bd;
  border-radius: 4px;
  min-height: 70px;
}
.p_contact_policy_box .p_contact_policy_title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.p_contact_policy_box .pp_text_dl {
  margin-top: 16px;
}
.p_contact_policy_box .pp_text_dl > dt {
  margin: 16px 0 8px;
  font-weight: 600;
}
.p_contact_policy_box .pp_text_dl > dd {
  margin-left: 0;
}
.p_contact_policy_box .pp_text_dl > dd > ul li {
  padding-left: 14px;
  text-indent: -14px;
}
.p_contact_policy_box .pp_text_dl > dd > ul li + li {
  margin-top: 4px;
}
@media screen and (max-width: 896px) {
  .p_contact_policy_box {
    padding: 16px;
    max-height: 240px;
  }
  .p_contact_policy_box .p_contact_policy_title {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .p_contact_policy_box .pp_text_dl {
    margin-top: 12px;
  }
  .p_contact_policy_box .pp_text_dl > dt {
    margin: 12px 0 6px;
  }
  .p_contact_policy_box .pp_text_dl > dd > ul li + li {
    margin-top: 3px;
  }
}

.p_contact_form_wrap {
  margin-top: 80px;
}
.p_contact_form_wrap .p_contact_required_note {
  margin: 0 0 16px;
  font-size: 15px;
  color: #333;
}
.p_contact_form_wrap .required {
  color: #D4145A;
}
.p_contact_form_wrap .wpcf7 {
  width: 100%;
}
.p_contact_form_wrap .wpcf7-form {
  width: 100%;
  display: grid;
  gap: 0;
}
.p_contact_form_wrap .wpcf7-form p {
  margin: 0;
}
.p_contact_form_wrap .wpcf7-form > p {
  padding: 24px 0;
  border-bottom: 1px solid #ccc;
}
.p_contact_form_wrap .wpcf7-form > p:first-of-type {
  border-top: 1px solid #ccc;
}
.p_contact_form_wrap .wpcf7-form > p:last-of-type {
  border-bottom: none;
  padding-top: 32px;
}
.p_contact_form_wrap .wpcf7-form > p > label {
  width: 100%;
  display: grid;
  grid-template-columns: 360px 1fr;
  column-gap: 8px;
  align-items: center;
}
@media screen and (max-width: 896px) {
  .p_contact_form_wrap .wpcf7-form > p > label {
    grid-template-columns: 1fr;
    row-gap: 6px;
    align-items: start;
  }
}
.p_contact_form_wrap .wpcf7-form input.wpcf7-text,
.p_contact_form_wrap .wpcf7-form input.wpcf7-email,
.p_contact_form_wrap .wpcf7-form input.wpcf7-tel,
.p_contact_form_wrap .wpcf7-form textarea.wpcf7-textarea {
  width: 100%;
  max-width: none;
  display: block;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.4;
}
.p_contact_form_wrap .wpcf7-form input.wpcf7-text,
.p_contact_form_wrap .wpcf7-form input.wpcf7-email,
.p_contact_form_wrap .wpcf7-form input.wpcf7-tel {
  height: 40px;
  padding: 0 12px;
}
.p_contact_form_wrap .wpcf7-form textarea.wpcf7-textarea {
  min-height: 160px;
  padding: 12px;
}
.p_contact_form_wrap .wpcf7-form ::placeholder {
  color: #ccc;
}
.p_contact_form_wrap .wpcf7-form input.wpcf7-submit {
  display: block;
  width: 288px;
  height: 48px;
  margin: 32px auto 0;
  border: none;
  border-radius: 999px;
  background: #f49f2d;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .2s ease, transform .06s ease;
}
.p_contact_form_wrap .wpcf7-form input.wpcf7-submit:hover {
  opacity: .88;
}
.p_contact_form_wrap .wpcf7-form input.wpcf7-submit:active {
  transform: translateY(1px);
}
@media screen and (max-width: 896px) {
  .p_contact_form_wrap .wpcf7-form input.wpcf7-submit {
    width: 100%;
  }
}
.p_contact_form_wrap .wpcf7-form .wpcf7-not-valid {
  border-color: #e1443a;
}
.p_contact_form_wrap .wpcf7-form.invalid .wpcf7-response-output, .p_contact_form_wrap .wpcf7-form.failed .wpcf7-response-output, .p_contact_form_wrap .wpcf7-form.spam .wpcf7-response-output {
  display: block;
  border-color: #e1443a;
  color: #e1443a;
}
.p_contact_form_wrap .wpcf7-form.sent .wpcf7-response-output {
  display: block;
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.7);
}
.p_contact_form_wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p_contact_form_wrap .p_contact_form_label {
  display: block;
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}
.p_contact_form_wrap .p_contact_form_acceptance {
  display: block;
}
.p_contact_form_wrap .p_contact_form_acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.p_contact_form_wrap .p_contact_form_acceptance input[type=checkbox] {
  width: auto;
  height: auto;
  display: inline-block;
}
.p_contact_form_wrap .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 12px;
  color: #e1443a;
}
.p_contact_form_wrap .wpcf7-response-output {
  display: none;
  margin: 16px 0 0;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.7);
}
.p_contact_form_wrap .wpcf7-spinner {
  margin: 0 0 0 8px;
  vertical-align: middle;
}

/*　editor_area エディター装飾
----------------------------------------------------*/
.editor_area {
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.65;
}
.editor_area a {
  color: #f3a84e;
}
.editor_area img {
  display: block;
  max-width: 100%;
  height: auto;
}
.editor_area img:first-child, .editor_area p:first-child, .editor_area ul:first-child, .editor_area ol:first-child, .editor_area h4:first-child, .editor_area h5:first-child {
  margin-top: 0;
}
.editor_area .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 32px;
}
.editor_area .gallery > br {
  display: none;
}
.editor_area .gallery > dl dd {
  margin-top: 12px;
  text-align: center;
}
.editor_area .gallery.gallery-columns-2 dl {
  width: 48%;
  height: auto;
  margin-top: 24px;
}
.editor_area .gallery.gallery-columns-2 dl:nth-child(-n+2) {
  margin-top: 0;
}
.editor_area .gallery.gallery-columns-3 dl {
  width: 31%;
  height: auto;
  margin-top: 24px;
}
.editor_area .gallery.gallery-columns-3 dl:nth-child(-n+3) {
  margin-top: 0;
}
.editor_area .gallery.gallery-columns-3::after {
  content: "";
  display: block;
  width: 31%;
}
.editor_area p {
  margin-top: 32px;
}
.editor_area p + p {
  margin-top: 24px;
}
.editor_area strong {
  font-weight: 700;
}
.editor_area em {
  font-style: italic;
}
.editor_area ul {
  margin-top: 32px;
  list-style: disc;
  padding-left: 2.2rem;
}
.editor_area ul li {
  margin-top: 16px;
}
.editor_area ul li:first-child {
  margin-top: 0;
}
.editor_area ol {
  margin-top: 32px;
  list-style: decimal;
  padding-left: 2.2rem;
}
.editor_area ol li {
  margin-top: 16px;
}
.editor_area ol li:first-child {
  margin-top: 0;
}
.editor_area hr {
  border: 0;
  border-top: 1px #cccccc dotted;
  margin: 48px 0;
}
.editor_area hr + img, .editor_area hr + p, .editor_area hr + ul, .editor_area hr + ol, .editor_area hr + h4, .editor_area hr + h5 {
  margin-top: 0;
}
.editor_area h2 {
  margin: 40px 0 24px;
  font-size: 18px;
  font-weight: 700;
}
.editor_area h2::before {
  font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
  content: "";
  margin-right: 8px;
  font-weight: 500;
  color: #21549a;
}
.editor_area h2 + img, .editor_area h2 + p, .editor_area h2 + ul, .editor_area h2 + ol, .editor_area h2 + h4, .editor_area h2 + h5 {
  margin-top: 0;
}
.editor_area h3 {
  margin: 32px 0 24px;
  font-size: 16px;
  font-weight: 700;
  color: #50b4c4;
}
.editor_area h3 + img, .editor_area h3 + p, .editor_area h3 + ul, .editor_area h3 + ol, .editor_area h3 + h4, .editor_area h3 + h5 {
  margin-top: 0;
}

@media screen and (max-width: 896px) {
  .editor_area {
    font-size: 13px;
  }
  .editor_area .gallery {
    margin-top: 24px;
  }
  .editor_area .gallery > dl dd {
    margin-top: 8px;
  }
  .editor_area .gallery.gallery-columns-2 dl {
    margin-top: 24px;
  }
  .editor_area .gallery.gallery-columns-3 dl {
    margin-top: 24px;
  }
  .editor_area p {
    margin-top: 24px;
  }
  .editor_area p + p {
    margin-top: 16px;
  }
  .editor_area ul {
    margin-top: 24px;
    padding-left: 1.8rem;
  }
  .editor_area ul li {
    margin-top: 8px;
  }
  .editor_area ol {
    margin-top: 24px;
    padding-left: 1.8rem;
  }
  .editor_area ol li {
    margin-top: 8px;
  }
  .editor_area hr {
    margin: 32px 0;
  }
  .editor_area h2 {
    margin: 32px 0 16px;
    font-size: 14px;
    line-height: 1.45;
  }
  .editor_area h2::before {
    margin-right: 6px;
  }
  .editor_area h3 {
    margin: 24px 0 16px;
    font-size: 13px;
  }
}
