@charset "UTF-8";

/* =========================================================
   reset
========================================================= */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================================================
   base
========================================================= */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #23404d;
  background: #ffffff;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease, color 0.25s ease, background-color 0.25s ease,
    transform 0.25s ease;
}

a:hover {
  opacity: 1;
}

section {
  position: relative;
}

/* =========================================================
   utility
========================================================= */
.u-desktop-only {
  display: none;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   variables
========================================================= */
:root {
  --sky-main: #aee7ff;
  --sky-light: #f7fbfc;
  --sky-soft: #eaf7f8;
  --sky-deep: #67c6ef;
  --sky-accent: #5fb9c2;
  --sky-border: rgba(103, 198, 239, 0.35);
  --text-main: #23404d;
  --text-sub: #58717d;
  --text-deep: #163942;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(76, 150, 186, 0.12);
  --shadow-header: 0 6px 20px rgba(76, 150, 186, 0.14);
  --overlay-blue: rgba(52, 123, 165, 0.78);
  --overlay-blue-light: rgba(52, 123, 165, 0.72);
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 999px;
}

/* =========================================================
   common button
========================================================= */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #77c8cf 0%, #5fb9c2 100%);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgba(78, 157, 166, 0.18);
}

.c-btn::after {
  content: "›";
  margin-left: 12px;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.c-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.c-btn:hover::after {
  transform: translateX(4px);
}

/* =========================================================
   header
========================================================= */
header {
  position: relative;
  z-index: 999;
}

header.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

header.l-header.is-show {
  transform: translateY(0);
  pointer-events: auto;
}

header.l-header .l-header__top {
  position: relative;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(240, 251, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

header.l-header .header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 90px);
  max-width: 320px;
}

header.l-header .header-logo .header-logo__link {
  display: block;
  width: 100%;
}

header.l-header .header-logo .header-logo__link:hover {
  opacity: 1;
}

header.l-header .header-logo .header-logo__content {
  font-family: "Rounded Mplus 1c", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
  color: var(--text-main);
}

header.l-header .header-logo .header-logo__content .header-logo__title-ja {
  display: block;
  margin-bottom: 2px;
  font-size: 1.7rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.04em;
}

header.l-header .header-logo .header-logo__content .header-logo__title-en {
  display: block;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* =========================================================
   global nav
========================================================= */
header.l-header .g-nav {
  padding-right: 0;
}

header.l-header .g-nav .g-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

header.l-header .g-nav .g-nav__list .g-nav__item {
  position: relative;
  flex: 0 1 auto;
  padding: 0 1.5em;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
}

header.l-header .g-nav .g-nav__list .g-nav__item a {
  position: relative;
  display: block;
  padding: 8px 0;
  color: var(--text-main);
}

header.l-header .g-nav .g-nav__list .g-nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #67c6ef;
  transition: width 0.3s ease;
}

header.l-header .g-nav .g-nav__list .g-nav__item a:hover {
  color: var(--sky-deep);
}

header.l-header .g-nav .g-nav__list .g-nav__item a:hover::after {
  width: 100%;
}

header.l-header .g-nav .g-nav__list .g-nav__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 22px;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, transparent, rgba(103, 198, 239, 0.45), transparent);
}

header.l-header .g-nav .g-nav__list .g-nav__item--home {
  display: none;
}

/* =========================================================
   menu button
========================================================= */
header.l-header .menu-btn {
  position: fixed;
  top: 15px;
  right: 16px;
  z-index: 1001;
  width: 62px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #93ddfb 0%, #67c6ef 100%);
  box-shadow: 0 8px 18px rgba(103, 198, 239, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

header.l-header .menu-btn .menu-btn__bars {
  width: 24px;
}

header.l-header .menu-btn .menu-btn__bars span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background-color: #fff;
}

header.l-header .menu-btn .menu-btn__bars span + span {
  margin-top: 0px;
}

header.l-header .menu-btn .menu-btn__label {
  font-size: 0.9rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.12em;
  font-weight: 700;
}

/* =========================================================
   main / hero
========================================================= */
main.l-main {
  display: block;
  margin: 0;
}

main.l-main .hero-slider {
  position: relative;
}

main.l-main .hero-slider .hero-slider__container {
  position: relative;
  overflow: hidden;
}

main.l-main .hero-slider .hero-slider__list,
main.l-main .hero-slider .hero-slider__list .slick-list,
main.l-main .hero-slider .hero-slider__list .slick-track,
main.l-main .hero-slider .hero-slider__list .slick-slide,
main.l-main .hero-slider .hero-slider__list .slick-slide > div {
  height: 100%;
}

main.l-main .hero-slider .hero-slider__list .hero-slider__item {
  position: relative;
  height: 100vh;
  min-height: 560px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

main.l-main .hero-slider .hero-slider__list .hero-slider__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1);
  transition: transform 7s ease-out;
  will-change: transform;
  z-index: 0;
}

main.l-main .hero-slider .hero-slider__list .hero-slider__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(255, 255, 255, 0.28) 100%),
    linear-gradient(135deg, rgba(174, 231, 255, 0.06) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 1;
}

main.l-main .hero-slider .hero-slider__list .hero-slider__item.is-zooming::before {
  transform: scale(1.08);
}

main.l-main .hero-slider .hero-slider__list .slick-slide {
  opacity: 1 !important;
}

/* =========================================================
   mv logo
========================================================= */
.hero-slider .mv-logo {
  position: absolute;
  top: 24px;
  left: 20px;
  z-index: 20;
  color: #fff;
  pointer-events: none;
}

.hero-slider .mv-logo .title__ja {
  margin-bottom: 4px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.hero-slider .mv-logo .title__en {
  font-size: 1rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

/* =========================================================
   hero content
========================================================= */
main.l-main .hero-content {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 90%;
  max-width: 460px;
  text-align: center;
  pointer-events: none;
}

main.l-main .hero-content .hero-content__logo-wrap {
  display: none;
}

main.l-main .hero-content .hero-content__catch-wrap {
  display: block;
}

main.l-main .hero-content .hero-content__main-logo {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.18));
}

/* =========================================================
   nav overlay
========================================================= */
#js-nav-overlay.nav-overlay {
  position: static;
  inset: auto;
  width: 100%;
  max-width: none;
  transform: none;
  z-index: 30;
  background: var(--overlay-blue);
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow-y: auto;
  display: none;
}

#js-nav-overlay.nav-overlay .nav-overlay__inner {
  min-height: 100%;
  padding: 18px 16px 22px;
}

/* =========================================================
   nav overlay menu
========================================================= */
#js-nav-overlay .g-nav-mobile {
  margin-bottom: 20px;
}

#js-nav-overlay .g-nav-mobile .g-nav-mobile__list {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

#js-nav-overlay .g-nav-mobile .g-nav-mobile__list .g-nav-mobile__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

#js-nav-overlay .g-nav-mobile .g-nav-mobile__list .g-nav-mobile__item a {
  display: block;
  padding: 12px 0;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

#js-nav-overlay .g-nav-mobile .g-nav-mobile__list .g-nav-mobile__item a:hover {
  color: #fff;
  opacity: 0.75;
}

/* =========================================================
   header info
========================================================= */
#js-nav-overlay .header-info {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
}

#js-nav-overlay .header-info .header-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

#js-nav-overlay .header-info .header-info__section {
  display: block;
  padding: 16px 0;
  color: #fff;
}

#js-nav-overlay .header-info .header-info__section:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

#js-nav-overlay .header-info .header-info__label {
  display: block;
  margin-bottom: 8px;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#js-nav-overlay .header-info .header-info__details li {
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

#js-nav-overlay .header-info .header-info__details li + li {
  margin-top: 2px;
}

#js-nav-overlay .header-info .header-info__tag {
  display: inline;
  margin-right: 0.45em;
  font-weight: 700;
  color: #fff;
}

#js-nav-overlay .header-info .header-info__text {
  color: rgba(255, 255, 255, 0.95);
}

#js-nav-overlay .header-info .header-info__note {
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
  text-align: left;
}

#js-nav-overlay .header-info .header-info__note p {
  font-size: 1.35rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

/* =========================================================
   facility icons
========================================================= */
#js-nav-overlay .facility-icon-list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: flex-start;
}

#js-nav-overlay .facility-icon-list .facility-icon-list__item {
  width: calc(50% - 8px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
}

#js-nav-overlay .facility-icon-list .facility-icon-list__item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin: 0;
  filter: brightness(0) invert(1);
}

#js-nav-overlay .facility-icon-list .facility-icon-list__item span {
  display: block;
  font-size: 1.35rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  white-space: normal;
}

/* =========================================================
   footer
========================================================= */
.l_footer {
  background: linear-gradient(180deg, #0a4257 0%, #08384a 100%);
  color: #fff;
  padding: 42px 20px 24px;
  position: relative;
  overflow: hidden;
}

.l_footer a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.l_footer a:hover {
  opacity: 0.75;
}

.l_footer_inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

/* footer nav */
.footer_nav {
  margin-bottom: 42px;
}

.footer_nav_list {
  display: block;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.footer_nav_item {
  position: relative;
  padding: 10px 0px 20px;
  line-height: 1.4;
  margin-bottom: 10px;
  border-bottom: 1px solid #effafe;
}

.footer_nav_item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.2em;
  /* background: rgba(255, 255, 255, 0.45); */
  transform: translateY(-50%);
}

.footer_nav_item:last-child::after {
  display: none;
}

.footer_nav_item a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* footer main */
.footer_main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.footer_main_col {
  min-width: 0;
}

.footer_main_col_right {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 30px;
}

/* footer logo */
.footer_logo {
  margin-bottom: 26px;
}

.footer_logo_link {
  display: inline-block;
}

.footer_logo_content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer_logo_title_ja {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.footer_logo_title_en {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.footer_address {
  margin-bottom: 18px;
}

.footer_address p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.footer_contact_text {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

.footer_tel {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* footer info */
.footer_info_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.footer_info_section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.footer_info_label {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
}

.footer_info_details li {
  margin: 0 0 8px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

.footer_info_details li:last-child {
  margin-bottom: 0;
}

.footer_info_tag {
  display: inline;
  font-weight: 700;
}

.footer_info_text {
  display: inline;
}

.footer_info_note {
  margin-top: 22px;
}

.footer_info_note p {
  margin: 0 0 6px;
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

.footer_info_note p:last-child {
  margin-bottom: 0;
}

/* footer icons */
.facility_icon_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 24px 0 0;
}

.facility_icon_list_item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.facility_icon_list_item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 28px;
}

.facility_icon_list_item span {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
}

/* footer bottom */
.footer_bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_copy,
.footer_policy {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.footer_policy a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* =========================================================
   tablet / pc
========================================================= */
@media screen and (min-width: 1024px) {
  .u-desktop-only {
    display: block;
  }

  .c-btn {
    min-width: 260px;
    min-height: 60px;
    padding: 16px 30px;
    font-size: 1.5rem;
  }

  header.l-header .l-header__top {
    height: 108px;
    padding: 0 28px 0 26px;
  }

  header.l-header .header-logo {
    width: 320px;
    max-width: none;
  }

  header.l-header .header-logo .header-logo__content .header-logo__title-ja {
    font-size: 2.2rem;
  }

  header.l-header .header-logo .header-logo__content .header-logo__title-en {
    font-size: 1.2rem;
  }

  header.l-header .menu-btn {
    top: 22px;
    right: 24px;
    width: 82px;
    height: 72px;
    border-radius: 22px;
    display: none;
  }

  header.l-header .menu-btn .menu-btn__bars {
    width: 30px;
  }

  header.l-header .menu-btn .menu-btn__bars span + span {
    margin-top: 6px;
  }

  header.l-header .menu-btn .menu-btn__label {
    font-size: 1rem;
  }

  main.l-main .hero-slider .hero-slider__item,
  main.l-main .hero-slider .hero-slider__list .hero-slider__item {
    min-height: 720px;
  }

  main.l-main .hero-slider .hero-slider__list .hero-slider__item.is-zooming::before {
    transform: scale(1.1);
  }

  .hero-slider .mv-logo {
    top: 30px;
    left: 30px;
  }

  .hero-slider .mv-logo .title__ja {
    margin-bottom: 6px;
    font-size: 2.4rem;
  }

  .hero-slider .mv-logo .title__en {
    font-size: 1.3rem;
  }

  main.l-main .hero-content {
    max-width: 520px;
  }

  main.l-main .hero-content .hero-content__main-logo {
    max-width: 480px;
  }

  #js-nav-overlay.nav-overlay {
    position: absolute;
    top: inherit;
    left: 50%;
    width: calc(100% - 20px);
    max-width: 1300px;
    transform: translateX(-50%);
    background: var(--overlay-blue);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    bottom: -12%;
    display: block;
  }

  #js-nav-overlay.nav-overlay .nav-overlay__inner {
    padding: 16px 24px 14px;
  }

  #js-nav-overlay .g-nav-mobile {
    margin-bottom: 16px;
  }

  #js-nav-overlay .g-nav-mobile .g-nav-mobile__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-top: 0;
  }

  #js-nav-overlay .g-nav-mobile .g-nav-mobile__list .g-nav-mobile__item {
    position: relative;
    padding: 0 22px;
    border-bottom: 0;
  }

  #js-nav-overlay .g-nav-mobile .g-nav-mobile__list .g-nav-mobile__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 26px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.35);
  }

  #js-nav-overlay .g-nav-mobile .g-nav-mobile__list .g-nav-mobile__item a {
    padding: 0;
    font-size: 1.6rem;
  }

  #js-nav-overlay .header-info .header-info__grid {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  #js-nav-overlay .header-info .header-info__section {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 18px 26px;
  }

  #js-nav-overlay .header-info .header-info__section:first-child {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  #js-nav-overlay .header-info .header-info__label {
    flex: 0 0 78px;
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 1.8;
  }

  #js-nav-overlay .header-info .header-info__details {
    flex: 1 1 auto;
  }

  #js-nav-overlay .header-info .header-info__details li {
    font-size: 1.5rem;
    line-height: 1.9;
  }

  #js-nav-overlay .header-info .header-info__details li + li {
    margin-top: 0;
  }

  #js-nav-overlay .header-info .header-info__note {
    margin-top: 12px;
    text-align: center;
  }

  #js-nav-overlay .header-info .header-info__note p {
    font-size: 1.5rem;
  }

  #js-nav-overlay .facility-icon-list {
    margin-top: 14px;
    justify-content: center;
    gap: 14px 26px;
  }

  #js-nav-overlay .facility-icon-list .facility-icon-list__item {
    width: auto;
    justify-content: center;
  }

  #js-nav-overlay .facility-icon-list .facility-icon-list__item img {
    width: 34px;
    height: 34px;
  }

  #js-nav-overlay .facility-icon-list .facility-icon-list__item span {
    font-size: 1.5rem;
    white-space: nowrap;
  }

  .l_footer {
    padding: 56px 40px 28px;
  }

  .footer_nav {
    margin-bottom: 54px;
  }

  .footer_nav_list {
    justify-content: flex-start;
    display: flex;
  }
.footer_nav_item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.2em;
  background: rgba(255, 255, 255, 0.45); 
  transform: translateY(-50%);
}
  .footer_nav_item {
    padding: 0 20px;
    margin-bottom: 0;
    border-bottom: 0;
  }

  .footer_nav_item:first-child {
    padding-left: 0;
  }

  .footer_main {
    grid-template-columns: minmax(0, 47%) minmax(0, 54%);
    gap: 20px;
  }

  .footer_main_col_right {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
    padding-top: 0;
    padding-left: 38px;
  }

  .footer_logo_title_ja {
    font-size: 3.2rem;
  }

  .footer_logo_title_en {
    font-size: 1.5rem;
  }

  .footer_address p {
    font-size: 1.5rem;
  }

  .footer_contact_text {
    font-size: 1.5rem;
  }

  .footer_tel {
    font-size: 2.8rem;
  }

  .footer_info_section {
    grid-template-columns: 112px 1fr;
    gap: 0 18px;
    align-items: start;
  }

  .footer_info_label {
    font-size: 1.8rem;
    padding-top: 2px;
  }

  .footer_info_details li {
    font-size: 1.6rem;
  }

  .footer_info_note p {
    font-size: 1.5rem;
  }

  .facility_icon_list {
    gap: 14px 24px;
    margin-top: 26px;
  }

  .facility_icon_list_item span {
    font-size: 1.5rem;
  }

  .footer_bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 42px;
    padding-top: 24px;
  }
}


/* =====================================================
sub page hero 共通
facility / food / product
===================================================== */

[class$="-hero"]{
  position:relative;
  overflow:hidden;
  background:#eef7fa;
}


/* 画像 */

[class$="-hero"]__image{
  position:relative;
  width:100%;
  height:250px; /* SP */
  overflow:hidden;
}


[class$="-hero"]__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}


/* うっすら影 */

[class$="-hero"]__image::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.28);
}


/* テキスト */

[class$="-hero"]__inner{
  position:absolute;
  left:50%;
  bottom:34px;
  transform:translateX(-50%);
  width:calc(100% - 40px);
  max-width:1180px;
  text-align:center;
  color:#fff;
  z-index:2;
}


[class$="-hero"]__sub{
  margin:0 0 8px;
  font-size:.8rem;
  letter-spacing:.18em;
  font-weight:600;
  opacity:.9;
}


[class$="-hero"]__title{
  margin:0 0 10px;
  font-size:1.9rem;
  line-height:1.4;
  font-weight:700;
}


[class$="-hero"]__lead{
  margin:0 auto;
  max-width:720px;
  font-size:.95rem;
  line-height:1.9;
}



/* =====================================================
subpage hero 共通
===================================================== */
main{
      margin: 80px 0 0;
}
.subpage-hero {
  position: relative;
  overflow: hidden;
  background: #eef7fa;
}

.subpage-hero__image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.subpage-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.subpage-hero__image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.subpage-hero__inner {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1180px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.subpage-hero__sub {
  margin: 0 0 8px;
  font-size: 0.8rem;
  line-height: 1.6;
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 0.9;
}

.subpage-hero__title {
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1.4;
  font-weight: 700;
}

.subpage-hero__lead {
  margin: 0 auto;
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.9;
}

@media screen and (min-width: 768px) {
  .subpage-hero__title {
    font-size: 2.6rem;
  }

  .subpage-hero__lead {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  main{
      margin: 109px 0 0;
}
  .subpage-hero__image {
    height: 450px;
  }

  .subpage-hero__inner {
    bottom: 170px;
  }

  .subpage-hero__title {
    font-size: 3.2rem;
  }

  .subpage-hero__lead {
    font-size: 1.05rem;
  }
}


/* =====================================================
共通ボタン
===================================================== */

.archive_link{
  margin-top:28px;
  text-align:center;
}

.archive_link a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:320px;
  min-height: 51px;
  padding: 9px 26px;
  border-radius:999px;
  background:linear-gradient(
    135deg,
    #77c8cf 0%,
    #5fb9c2 100%
  );
  color:#fff;
  font-size:1.45rem;
  line-height:1;
  font-weight:700;
  letter-spacing:.06em;
  text-decoration:none;
  box-shadow:
    0 10px 24px rgba(78,157,166,.18);
  transition:
    opacity .3s ease,
    transform .3s ease;
}

.archive_link a:hover{
  opacity:.92;
  transform:translateY(-2px);
}

.archive_link a::after{
  content:"›";
  margin-left:12px;
  font-size:1.8rem;
  line-height:1;

  transition:
    transform .3s ease;
}

.archive_link a:hover::after{
  transform:translateX(4px);
}


/* PC */
@media screen and (min-width:1024px){

  .archive_link a{
    min-height:62px;
    font-size:1.5rem;
  }

}

/* =========================
hamburger
========================= */

.menu-btn{
  position: relative;
  z-index: 1002;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn__bars{
  width: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-btn__bars span{
  display: block;
  width: 100%;
  height: 2px;
  background: #222;
  transition: transform .3s ease, opacity .3s ease;
}

.menu-btn__label{
  margin: 4px 0 0;
  font-size: 1rem;
  line-height: 1;
}

/* 開いた時 */
.menu-btn.is-open .menu-btn__bars span:nth-child(1){
  transform: translateY(9px) rotate(45deg);
}

.menu-btn.is-open .menu-btn__bars span:nth-child(2){
  opacity: 0;
}

.menu-btn.is-open .menu-btn__bars span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}


/* =========================
sp menu
========================= */

.sp-nav{
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(255,255,255,.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.sp-nav.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sp-nav__inner{
  padding: 120px 24px 40px;
  height: 100%;
  overflow-y: auto;
}

.sp-nav__list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-nav__item{
  border-bottom: 1px solid #e5e5e5;
}

.sp-nav__item a{
  display: block;
  padding: 18px 0;
  color: #222;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.6;
}

/* PCでは非表示 */
@media screen and (min-width: 1024px){
  .menu-btn{
    display: none;
  }

  .sp-nav{
    display: none;
  }
}