@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap&family=Oswald&display=swap");
/* ============================================================
   common.scss（簡略化 / 見た目維持）
   - Mobile-first（min-width）
   - 色は _config.scss の定数を直接参照（var二重定義を排除）
============================================================ */
/* ============================================================
  Root Vars（色は置かない：機能系のみ）
============================================================ */
:root {
  --mincho: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Kozuka Mincho Pro",
    "Noto Serif JP", "IPAexMincho", serif;
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
  --safe-left: env(safe-area-inset-left);
  --safe-right: env(safe-area-inset-right);
}

/* ============================================================
  Base
============================================================ */
html {
  font-size: 10px !important;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  scrollbar-gutter: stable;
}

body {
  font-family: "kozuka-gothic-pr6n", "Noto Sans JP", -apple-system, system-ui, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  line-height: 2;
  color: #24313A;
  background: #F7FBFF;
  min-height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
  line-height: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
a:hover {
  opacity: 0.9;
}

/* ============================================================
  Containers
============================================================ */
.h-container, .site-header__inner,
.c-container,
.f-container,
.site-footer__menu-inner,
.site-footer__inner,
.c-inner,
.breadcrumb__inner,
.page-hero__inner,
.page-title__inner {
  position: relative;
  width: 100%;
  max-width: 1072px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 1400px) {
  .c-container,
  .f-container,
  .site-footer__menu-inner,
  .site-footer__inner,
  .c-inner,
  .breadcrumb__inner,
  .page-hero__inner,
  .page-title__inner {
    padding-inline: 0;
  }
}

/* ============================================================
  Visibility helpers
============================================================ */
.sp {
  display: block !important;
}

.pc {
  display: none !important;
}

@media (min-width: 1200px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: initial !important;
  }
}
/* ============================================================
  c-arrow
============================================================ */
.c-arrow {
  --arrow-size: 1.2em;
  --arrow-bg: #6b6b6b;
  --arrow-ink: #FFFFFF;
  --tri-w: 8px;
  --tri-h: 5px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-radius: 50%;
  background: var(--arrow-bg);
  vertical-align: middle;
}
.c-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: var(--tri-w) solid var(--arrow-ink);
  border-top: var(--tri-h) solid transparent;
  border-bottom: var(--tri-h) solid transparent;
  -webkit-transform: translate(-38%, -50%);
          transform: translate(-38%, -50%);
}
@media (min-width: 992px) {
  .c-arrow {
    --arrow-size: 1.4em;
    --tri-w: 10px;
    --tri-h: 7px;
  }
}

/* ============================================================
  c-common-btn（状態切替のための内部varは残す）
============================================================ */
.c-common-btn {
  --common-border: #0066A6;
  --common-bg: #F7FBFF;
  --common-ink: #0F1F2B;
  --common-bg-hover: #0066A6;
  --common-ink-hover: #FFFFFF;
  --common-arrow-bg: #00A3B5;
  --common-arrow-icon: url("/assets/img/common/icon-arrow-r.svg");
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  width: auto;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: 3.2rem;
  margin-top: auto;
  padding: 0.7rem 2rem 0.7rem 2.2rem;
  border-radius: 999px;
  border: 2px solid var(--common-border);
  background: var(--common-bg);
  color: var(--common-ink);
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-common-btn:hover {
  background: var(--common-bg-hover);
  color: var(--common-ink-hover);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 10px rgba(0, 102, 166, 0.33);
          box-shadow: 0 4px 10px rgba(0, 102, 166, 0.33);
}
.c-common-btn:hover .c-common-btn__arrow {
  background: var(--common-arrow-bg);
}
.c-common-btn:hover .c-common-btn__arrow::before {
  background-image: var(--common-arrow-icon);
}
.c-common-btn:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25);
          box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25);
}
.c-common-btn__label {
  line-height: 1;
}
.c-common-btn__arrow {
  --arrow-size: 1.6rem;
  --arrow-icon-scale: .75;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-radius: 50%;
  background: var(--common-arrow-bg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.c-common-btn__arrow::before {
  content: "";
  display: block;
  width: calc(var(--arrow-size) * var(--arrow-icon-scale));
  height: calc(var(--arrow-size) * var(--arrow-icon-scale));
  background-image: var(--common-arrow-icon);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (min-width: 768px) {
  .c-common-btn {
    min-height: 3.6rem;
    padding: 0.8rem 2.4rem 0.8rem 2.6rem;
  }
}
.c-common-btn--large {
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
}
.c-common-btn--large .c-common-btn__arrow {
  --arrow-size: 2.4rem;
}
.c-common-btn--disabled {
  pointer-events: none;
  cursor: default;
  --common-border: #d0d0d0;
  --common-bg: #f5f5f5;
  --common-ink: #9b9b9b;
  --common-bg-hover: #f5f5f5;
  --common-ink-hover: #9b9b9b;
  opacity: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: none;
          transform: none;
}
.c-common-btn--disabled .c-common-btn__arrow {
  background: #d0d0d0;
}
.c-common-btn--disabled .c-common-btn__arrow::before {
  opacity: 0.45;
}
.c-common-btn--disabled:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* ============================================================
  Layout wrapper
============================================================ */
.page,
.page-layout,
.main {
  background: #F7FBFF;
}

.page-container {
  position: relative;
  width: 100%;
}

/* ============================================================
  Page Visual
============================================================ */
.page-visual {
  position: relative;
  width: 100%;
  background: #00131F;
}
.page-visual__bg-box {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-visual__bg-box {
    height: 320px;
  }
}
@media (min-width: 1200px) {
  .page-visual__bg-box {
    height: 416px;
  }
}
.page-visual__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-filter: brightness(0.78) saturate(1.05);
          filter: brightness(0.78) saturate(1.05);
}
.page-visual__title {
  position: absolute;
  inset: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding-inline: 16px;
  text-align: center;
}
.page-visual__title-text {
  margin: 0;
  font-family: var(--mincho);
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .page-visual__title-text {
    font-size: clamp(2.8rem, 2.509rem + 0.91vw, 3.6rem);
  }
}

.page-contents {
  background: #F7FBFF;
  padding: 3.2rem 0 4rem;
}
@media (min-width: 768px) {
  .page-contents {
    padding: 4rem 0 5.2rem;
  }
}

.page-layout__contents {
  position: relative;
}
.page-layout__contents .sns {
  background: #F7FBFF;
  padding: 4rem 0;
}
.page-layout__contents .sns__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  justify-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .page-layout__contents .sns__list {
    -ms-grid-columns: minmax(0, 1fr) 3.2rem minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem 3.2rem;
  }
}
.page-layout__contents .sns .sns-card {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #F7FBFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.page-layout__contents .sns .sns-card__thumb {
  margin: 0;
}
.page-layout__contents .sns .sns-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.page-layout__contents .sns .sns-card:hover {
  opacity: 0.98;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.page-layout__contents .cta__link {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #F7FBFF;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.page-layout__contents .cta__picture {
  display: block;
  line-height: 0;
}
.page-layout__contents .cta__picture img {
  display: block;
  width: 100%;
  height: auto;
}
.page-layout__contents .cta__link:hover {
  opacity: 0.98;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.page-layout__contents .cta__link:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25), 0 10px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25), 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* ============================================================
  Page Contents
============================================================ */
.page-contents .page-intro {
  padding-bottom: 2.4rem;
}
.page-contents .page-intro__lead {
  margin: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 1.6rem;
  padding-left: 0;
  border-bottom: 1px solid #D3DEE7;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.95;
  color: #24313A;
}
@media (min-width: 768px) {
  .page-contents .page-intro {
    padding-bottom: 3.6rem;
  }
  .page-contents .page-intro__lead {
    padding-bottom: 2rem;
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}

/* ============================================================
  main
============================================================ */
.page-main {
  padding-top: 6.2rem;
}
@media (min-width: 768px) {
  .page-main {
    padding-top: 7.2rem;
  }
}

[id] {
  scroll-margin-top: 7.2rem;
}

@media (min-width: 768px) {
  [id] {
    scroll-margin-top: 8rem;
  }
}
/* ============================================================
  site-header
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3, 18, 30, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
  color: rgb(255, 255, 255);
}

/* ============================================================
  site-header / layout
============================================================ */
.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2rem;
  min-height: 5.6rem;
  padding: 1rem;
}
@media (min-width: 768px) {
  .site-header__inner {
    min-height: 7.2rem;
    gap: 1.6rem;
    padding: 1.2rem;
  }
}

/* ============================================================
  site-header / logo
============================================================ */
.site-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.site-header__logo-img {
  display: block;
  width: auto;
  height: 3.6rem;
}
@media (min-width: 768px) {
  .site-header__logo-img {
    height: 4.4rem;
  }
}

/* ============================================================
  site-header / nav (PC)
============================================================ */
.site-header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .site-header__nav {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-left: 2rem;
  }
}
.site-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__nav-item {
  position: relative;
}
.site-header {
  /* CTA：ご予約（将来用：残してOK） */
}
.site-header__nav-link--cta {
  padding: 1.1rem 2.1rem;
  border-radius: 999px;
  background: #0066A6;
  border: 1px solid #0066A6;
  color: #FFFFFF;
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.site-header__nav-link--cta::before {
  display: none;
}
.site-header__nav-link--cta:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
          box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  opacity: 1;
}
.site-header__nav-link--cta:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18), 0 12px 26px rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18), 0 12px 26px rgba(0, 0, 0, 0.18);
}
.site-header {
  /* 通常リンク */
}
.site-header__nav-link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6rem 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 700;
  line-height: 1;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.2s ease, transform 0.15s ease;
  transition: opacity 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.site-header__nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: #0066A6;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.22s ease;
  transition: -webkit-transform 0.22s ease;
  transition: transform 0.22s ease;
  transition: transform 0.22s ease, -webkit-transform 0.22s ease;
}
.site-header__nav-link:hover {
  opacity: 0.92;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.site-header__nav-link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.site-header__nav-link:focus-visible {
  outline: 0;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}
.site-header {
  /* 親ラベル（hover only） */
}
.site-header__nav-label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
}
.site-header__nav-label:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}
.site-header {
  /* 階層あり：▼ */
}
.site-header__nav-item--has-children .site-header__nav-link,
.site-header__nav-item--has-children .site-header__nav-label {
  padding-right: 1.4rem;
}
.site-header__nav-item--has-children .site-header__nav-link::after,
.site-header__nav-item--has-children .site-header__nav-label::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.78);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-35%);
          transform: translateY(-35%);
  -webkit-transform-origin: 50% 35%;
          transform-origin: 50% 35%;
  -webkit-transition: opacity 0.18s ease, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, -webkit-transform 0.18s ease;
  transition: transform 0.18s ease, opacity 0.18s ease;
  transition: transform 0.18s ease, opacity 0.18s ease, -webkit-transform 0.18s ease;
}
.site-header__nav-item--has-children:hover .site-header__nav-link::after,
.site-header__nav-item--has-children:hover .site-header__nav-label::after {
  -webkit-transform: translateY(-35%) rotate(180deg);
          transform: translateY(-35%) rotate(180deg);
  opacity: 1;
}
.site-header__nav-item--has-children:focus-within .site-header__nav-link::after,
.site-header__nav-item--has-children:focus-within .site-header__nav-label::after {
  -webkit-transform: translateY(-35%) rotate(180deg);
          transform: translateY(-35%) rotate(180deg);
  opacity: 1;
}

/* ============================================================
  site-header / dropdown (PC)
============================================================ */
.site-header__nav-item--has-children::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 1.2rem;
  background: transparent;
}
.site-header__nav-item--has-children:hover .site-header__subnav, .site-header__nav-item--has-children:focus-within .site-header__subnav {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  pointer-events: auto;
}
.site-header__subnav {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 1050;
  min-width: 18rem;
  margin-top: 0.8rem;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0.8rem 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 31, 43, 0.96);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, 0.6rem);
          transform: translate(-50%, 0.6rem);
  pointer-events: none;
  -webkit-transition: opacity 0.18s ease, visibility 0.18s ease, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, visibility 0.18s ease, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease, -webkit-transform 0.18s ease;
}
.site-header__subnav::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(15, 31, 43, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.site-header__subnav-item {
  margin: 0;
  padding: 0;
}
.site-header__subnav-link {
  display: block;
  padding: 1rem 1.2rem;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header__subnav-link:hover, .site-header__subnav-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  outline: 0;
}

/* ============================================================
  site-header / actions
============================================================ */
.site-header__actions {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0.8rem;
}
.site-header__actions .site-header__lang {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.site-header__actions .site-header__quick {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.site-header__actions .site-header__menu-toggle {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 768px) {
  .site-header__actions {
    gap: 1rem;
  }
  .site-header__actions .site-header__quick {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .site-header__actions .site-header__lang {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .site-header__actions .site-header__menu-toggle {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .site-header__actions .site-header__lang-btn {
    height: 4rem;
    padding: 0 1.3rem;
    font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  }
}

/* ============================================================
  site-header / quick（PC：イベント・天気・ご予約 / 共通デザイン）
  - 天気/イベントはPHP側で日本語のみ出力
============================================================ */
.site-header__quick {
  display: none;
}
@media (min-width: 768px) {
  .site-header__quick {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.site-header__quick-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
  width: 5.2rem;
  min-height: 5.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.site-header__quick-link:hover {
  background: rgba(255, 255, 255, 0.16);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  opacity: 1;
}
.site-header__quick-link:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}
.site-header__quick-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
  width: 5.2rem;
  min-height: 5.2rem;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.site-header__quick-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  opacity: 1;
}
.site-header__quick-btn:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}
.site-header__quick-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-header__quick-icon img {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
}
.site-header__quick-label {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

/* ============================================================
  site-header / language (BOGO)
============================================================ */
.site-header__lang {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.site-header__lang-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  height: 3.6rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  font-size: clamp(1rem, 0.926rem + 0.23vw, 1.2rem);
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
}
.site-header__lang-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  opacity: 1;
}
.site-header__lang-btn:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}
.site-header__lang-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  position: relative;
}
.site-header__lang-icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.site-header__lang-text {
  display: inline-block;
}
.site-header__lang-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.85);
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  -webkit-transition: -webkit-transform 0.18s ease;
  transition: -webkit-transform 0.18s ease;
  transition: transform 0.18s ease;
  transition: transform 0.18s ease, -webkit-transform 0.18s ease;
}
.site-header__lang-btn[aria-expanded=true] .site-header__lang-caret {
  -webkit-transform: translateY(1px) rotate(180deg);
          transform: translateY(1px) rotate(180deg);
}
.site-header__lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.8rem);
  z-index: 1100;
  min-width: 16rem;
  margin: 0;
  padding: 0.8rem 0;
  list-style: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 31, 43, 0.96);
  -webkit-box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
          box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}
.site-header__lang-menu[hidden] {
  display: none !important;
}
.site-header__lang-item {
  margin: 0;
  padding: 0;
}
.site-header__lang-link {
  display: block;
  padding: 0.9rem 1.2rem;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  -webkit-transition: background-color 0.15s ease, color 0.15s ease;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.site-header__lang-link:hover, .site-header__lang-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  outline: 0;
  opacity: 1;
}
.site-header__lang-link--current {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
}

/* ============================================================
  site-header / menu icon（quick内で使用）
============================================================ */
.site-header__menu-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
}
.site-header__menu-icon::before, .site-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
}
.site-header__menu-icon::before {
  top: -6px;
}
.site-header__menu-icon::after {
  top: 6px;
}

/* ============================================================
  Global Slide Menu（TELはリンク可のまま）
  - イベントボタンはPHP側で日本語のみ出力
============================================================ */
.global-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.global-menu-overlay[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
}

.global-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #F7FBFF;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.global-menu[aria-hidden=false] {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.global-menu__inner {
  padding: 2.4rem 2rem;
}
.global-menu__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2rem;
}
.global-menu__title {
  margin: 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: #0F1F2B;
}
.global-menu__close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F7FBFF;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.15s ease;
}
.global-menu__close:hover {
  background: #F5F8FB;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  opacity: 1;
}
.global-menu__close:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25);
          box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25);
}
.global-menu__close-icon {
  position: relative;
  width: 18px;
  height: 18px;
}
.global-menu__close-icon::before, .global-menu__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #0066A6;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.global-menu__close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.global-menu__close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.global-menu__list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.global-menu__item {
  border-bottom: 1px solid #E3ECF3;
}
.global-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 0;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  color: #0F1F2B;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.global-menu__link:hover {
  color: #0066A6;
  opacity: 1;
}
.global-menu__link:focus-visible {
  outline: 0;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25);
          box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25);
}
.global-menu__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  margin: 0;
  padding: 1.2rem 0;
  border: 0;
  background: transparent;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  color: #0F1F2B;
  text-align: left;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.global-menu__toggle:hover {
  color: #0066A6;
  opacity: 1;
}
.global-menu__toggle:focus-visible {
  outline: 0;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25);
          box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25);
}
.global-menu__toggle-label {
  display: inline-block;
}
.global-menu__toggle-icon {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
}
.global-menu__toggle-icon::before, .global-menu__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #0066A6;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.global-menu__toggle-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.global-menu__toggle[aria-expanded=true] .global-menu__toggle-icon::after {
  opacity: 0;
}
.global-menu__sublist {
  margin: 0;
  padding: 0.4rem 0 1rem 1.2rem;
  border-top: 1px solid #EFF4F8;
  list-style: none;
}
.global-menu__sublist[hidden] {
  display: none !important;
}
.global-menu__subitem {
  border-bottom: 0;
}
.global-menu__sublink {
  display: block;
  padding: 0.9rem 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 700;
  line-height: 1.5;
  color: #0F1F2B;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.global-menu__sublink:hover {
  color: #0066A6;
  opacity: 1;
}
.global-menu__sublink:focus-visible {
  outline: 0;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25);
          box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25);
}
.global-menu__tel {
  margin-top: 2rem;
}
.global-menu__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem 1.2rem;
  border-radius: 10px;
  border: 1px solid #D3DEE7;
  background: rgba(0, 0, 0, 0.02);
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
}
.global-menu__tel-link:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.global-menu__tel-link:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25), 0 10px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25), 0 10px 20px rgba(0, 0, 0, 0.12);
}
.global-menu__tel-label {
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: rgba(15, 31, 43, 0.8);
}
.global-menu__tel-number {
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: #0F1F2B;
  letter-spacing: 0.02em;
}
.global-menu__cta {
  margin-top: 1.6rem;
  display: -ms-grid;
  display: grid;
  gap: 1.2rem;
}
.global-menu__cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 5.2rem;
  padding: 0 1.6rem;
  border-radius: 8px;
  border: 2px solid #0066A6;
  background: #0066A6;
  color: #FFFFFF;
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
}
.global-menu__cta-btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.global-menu__cta-btn:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25), 0 10px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.25), 0 10px 20px rgba(0, 0, 0, 0.12);
}
.global-menu__cta-btn--events {
  border-color: #D3DEE7;
  background: #F7FBFF;
  color: #0F1F2B;
}
.global-menu__cta-btn--events:hover {
  background: rgba(0, 0, 0, 0.03);
}
.global-menu__cta-label {
  white-space: nowrap;
}
.global-menu__sns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}
.global-menu {
  /* SNS（SPメニュー内）
    - PCでも display:none にしない（ここでは非表示指定なし）
    - 薄いグレー罫線で「押せそう」を強調
  */
}
.global-menu__sns-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 12px;
  border: 1px solid #EFF4F8;
  background: #FFFFFF;
  cursor: pointer;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.global-menu__sns-link img {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
}
.global-menu__sns-link:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.02);
  border-color: #D3DEE7;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.global-menu__sns-link:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.18), 0 3px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.18), 0 3px 8px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .global-menu__sns-link {
    width: 4.6rem;
    height: 4.6rem;
  }
  .global-menu__sns-link img {
    width: 2.6rem;
    height: 2.6rem;
  }
}

body.is-menu-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

/* ============================================================
  Footer
============================================================ */
.site-footer {
  background: #031827;
  color: rgb(255, 255, 255);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.site-footer__inner {
  padding: 0;
}
.site-footer__menu-area {
  background: #241C6B;
  color: rgb(255, 255, 255);
}
.site-footer__copyright-area {
  background: #031827;
  color: rgb(255, 255, 255);
}
.site-footer__menu {
  margin: 0;
  padding: 2.8rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer {
  /* フッター本体 */
}
.site-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 2rem;
}
.site-footer__brand {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.site-footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-footer__logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
}
.site-footer {
  /* 電話 */
}
.site-footer__contact {
  width: 100%;
}
.site-footer__contact-sp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.site-footer__phone-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
  min-height: 5.2rem;
  margin: 0 1.4rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
}
.site-footer__phone-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.site-footer__phone-btn:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.site-footer__phone-icon {
  display: block;
  width: 2rem;
  height: 2rem;
}
.site-footer__phone-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3rem;
  min-width: 0;
}
.site-footer__phone-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}
.site-footer__phone-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.site-footer__contact-pc {
  display: none;
}
.site-footer__contact-row {
  margin: 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.site-footer__contact-label {
  margin-right: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
.site-footer__contact-number {
  color: #FFFFFF;
  font-weight: 900;
  white-space: nowrap;
}
.site-footer {
  /* SNS */
}
.site-footer__sns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.site-footer__sns-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
}
.site-footer__sns-link img {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
}
.site-footer__sns-link:hover {
  background: rgba(255, 255, 255, 0.14);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.site-footer__sns-link:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.site-footer {
  /* コピーライト */
}
.site-footer__bottom {
  padding: 1.6rem 0;
  text-align: center;
}
.site-footer__copy {
  margin: 0;
  font-size: clamp(1rem, 0.926rem + 0.23vw, 1.2rem);
  font-weight: bold;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 992px) {
  .site-footer__menu {
    padding: 3.2rem 0 2.4rem;
  }
  .site-footer {
    /* ロゴ / 電話 / SNS の3点で横並び */
  }
  .site-footer__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2.4rem;
  }
  .site-footer__contact {
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .site-footer__contact-sp {
    display: none;
  }
  .site-footer__contact-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2.4rem;
    text-align: left;
  }
  .site-footer__contact-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3rem;
    margin: 0;
    line-height: 1.2;
  }
  .site-footer__contact-label {
    margin-right: 0;
    font-size: clamp(1rem, 0.926rem + 0.23vw, 1.2rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.82);
  }
  .site-footer__contact-number {
    font-size: clamp(2.2rem, 1.982rem + 0.68vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }
  .site-footer {
    /* SNS */
  }
  .site-footer__sns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .site-footer__sns-link {
    width: 4.6rem;
    height: 4.6rem;
  }
  .site-footer__sns-link img {
    width: 2.6rem;
    height: 2.6rem;
  }
  .site-footer__copy {
    font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  }
}

/* ============================================================
  Courses（画像3枚）
============================================================ */
.site-footer-courses__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer-courses__item {
  margin: 0;
  padding: 0;
}
.site-footer-courses__link {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
.site-footer-courses__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* ← 全体を薄暗く */
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
  z-index: 1;
}
.site-footer-courses__link:hover::after {
  background: rgba(0, 0, 0, 0.2); /* ← ホバーで明るく */
}
.site-footer-courses__link:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.site-footer-courses__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6.4/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-footer-courses__label {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2; /* ← オーバーレイより上に */
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
@media (min-width: 768px) {
  .site-footer-courses__list {
    -ms-grid-columns: 1fr 2.4rem 1fr 2.4rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
  .site-footer-courses__label {
    font-size: 2.2rem;
    padding: 0.7rem 1.6rem;
  }
  .site-footer-courses__image {
    aspect-ratio: 16/9;
  }
}

/* ============================================================
  Quick menu（ボタン2段）
============================================================ */
.site-footer-quick {
  margin-top: 2.4rem;
}
.site-footer-quick__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer-quick__item {
  margin: 0;
  padding: 0;
}
.site-footer-quick__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 4.4rem;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  color: #FFFFFF;
  background: transparent;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
}
.site-footer-quick__link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.site-footer-quick__link:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
@media (min-width: 768px) {
  .site-footer-quick {
    margin-top: 3rem;
  }
  .site-footer-quick__list {
    -ms-grid-columns: 1fr 1.2rem 1fr 1.2rem 1fr 1.2rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
}

/* ============================================================
  Page Title（直指定：二重token排除）
============================================================ */
.page-title {
  background: #E8F4FA;
}
.page-title__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  padding: 2.4rem 0;
}
.page-title__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #F7FBFF;
  overflow: hidden;
}
.page-title__icon img {
  display: block;
  width: 100px;
  height: auto;
}
.page-title__headline {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(2.2rem, 1.982rem + 0.68vw, 2.8rem);
  font-weight: 700;
  line-height: 1.5;
  color: #0F1F2B;
  text-align: center;
}
.page-title__headline-main {
  display: block;
}
.page-title__headline-sub {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  font-weight: 400;
  line-height: 1.6;
  color: #24313A;
}
@media (min-width: 768px) {
  .page-title__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.4rem;
    padding: 3.2rem 0;
  }
  .page-title__headline {
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

/* ============================================================
  Page Hero（直指定：二重token排除）
============================================================ */
.page-hero {
  background: #F7FBFF;
  padding: 4rem 0;
}
.page-hero__title {
  margin: 0;
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  font-weight: 700;
  line-height: 1.6;
  color: #0F1F2B;
  text-align: center;
}
.page-hero__underline {
  width: 100%;
  height: 4px;
  margin: 4.8rem auto 3.2rem;
  background: #0066A6;
}
.page-hero__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
.page-hero__image {
  margin: 0;
  width: 100%;
  max-width: 520px;
}
.page-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}
.page-hero__text {
  max-width: 520px;
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  line-height: 1.9;
  color: #24313A;
}
@media (min-width: 768px) {
  .page-hero {
    padding: 4.8rem 0;
  }
  .page-hero__title {
    font-size: clamp(2.2rem, 1.982rem + 0.68vw, 2.8rem);
  }
  .page-hero__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 4rem;
  }
  .page-hero__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    max-width: none;
  }
  .page-hero__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

/* ============================================================
  Breadcrumb
============================================================ */
.breadcrumb {
  background: #F7FBFF;
}
.breadcrumb__inner {
  padding: 0.8rem 0;
  font-size: clamp(1rem, 0.926rem + 0.23vw, 1.2rem);
  line-height: 1.6;
  color: #6F7C86;
}
.breadcrumb a {
  color: #6F7C86;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .breadcrumb_last {
  color: #6F7C86;
  font-weight: 400;
}

@media (min-width: 768px) {
  .breadcrumb__inner {
    padding: 1.2rem 0;
    font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  }
}
/* ============================================================
  Pagination
============================================================ */
.navigation.pagination {
  margin-top: 2.4rem;
}
.navigation.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
}
.navigation.pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 3.2rem;
  height: 3.2rem;
  border: 1px solid #D3DEE7;
  border-radius: 2px;
  background: #F7FBFF;
  color: #24313A;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.05s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, -webkit-transform 0.05s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.05s ease, -webkit-transform 0.05s ease;
}
.navigation.pagination .page-numbers:hover {
  background: rgba(0, 0, 0, 0.04);
  opacity: 1;
}
.navigation.pagination .page-numbers:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.navigation.pagination .page-numbers:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.navigation.pagination .page-numbers.current {
  border-color: #24313A;
  -webkit-box-shadow: inset 0 -2px 0 #24313A;
          box-shadow: inset 0 -2px 0 #24313A;
  pointer-events: none;
}
.navigation.pagination .page-numbers.next, .navigation.pagination .page-numbers.prev {
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
}
.navigation.pagination .page-numbers.next {
  color: #6F7C86;
}

/* ============================================================
  Screen reader text
============================================================ */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================================
  Entry Section
============================================================ */
.entry-section {
  background: #EFF6FA;
  border-radius: 8px;
  padding: 3rem 0;
}
.entry-section__body {
  margin: 0;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  line-height: 2;
  color: #0F1F2B;
  text-align: center;
}
.entry-section__login-required {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 8px;
  background: #E3EFF6;
}
.entry-section__login-required-text {
  margin: 0 0 1.5rem;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  line-height: 2;
  color: #0F1F2B;
}
.entry-section__login-required-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 0;
}
@media (min-width: 768px) {
  .entry-section__login-required-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* ============================================================
  Floating Banner
============================================================ */
.floating-banner {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 1000;
  width: min(240px, 100vw - 24px);
  opacity: 0;
  -webkit-transform: translateY(10px) scale(0.98);
          transform: translateY(10px) scale(0.98);
  pointer-events: none;
  -webkit-transition: opacity 220ms ease, -webkit-transform 220ms ease;
  transition: opacity 220ms ease, -webkit-transform 220ms ease;
  transition: opacity 220ms ease, transform 220ms ease;
  transition: opacity 220ms ease, transform 220ms ease, -webkit-transform 220ms ease;
}
.floating-banner__link {
  display: block;
}
.floating-banner__image {
  display: block;
  width: 100%;
  height: auto;
}
.floating-banner__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 9999px;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  line-height: 1;
  cursor: pointer;
}
.floating-banner--is-visible {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  pointer-events: auto;
}
@media (min-width: 768px) {
  .floating-banner {
    right: 20px;
    bottom: 20px;
    width: min(320px, 100vw - 40px);
  }
}
@media (min-width: 992px) {
  .floating-banner {
    width: 360px;
  }
}

/* ============================================================
  404
============================================================ */
.not-found {
  margin-top: 0;
  padding: 3.6rem 0;
  text-align: center;
}
.not-found__title {
  margin: 0 0 1.6rem;
  font-size: clamp(2.2rem, 1.982rem + 0.68vw, 2.8rem);
  font-weight: 700;
  color: #1B2730;
}
.not-found__lead {
  margin: 0 0 2.4rem;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  line-height: 1.9;
  color: #24313A;
}
.not-found__actions {
  margin-top: 1.6rem;
}
.not-found__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 4.4rem;
  padding: 0 2rem;
  border: 1px solid #0066A6;
  background-color: #FFFFFF;
  color: #0066A6;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.not-found__btn:hover {
  background-color: #0066A6;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .not-found {
    padding: 4.8rem 0;
  }
  .not-found__title {
    font-size: clamp(2.8rem, 2.509rem + 0.91vw, 3.6rem);
  }
  .not-found__lead {
    font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  }
}