:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --text-main: #1f1f1f;
  --text-sub: #666666;
  --accent: #0f918d;
  --site-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --button-dark: #1f1f1f;
  --button-light: #ffffff;
  --border: rgba(31, 31, 31, 0.12);
  --header-h: 68px;
  --banner-h: 0px;
  --header-progress-h: 3px;
  --footer-h: 0px;
  --header-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(250, 248, 243, 0.78) 100%);
  --header-glass-scrolled: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 248, 243, 0.92) 100%);
  --accent-soft: rgba(15, 145, 141, 0.12);
  --accent-glow: rgba(15, 145, 141, 0.28);
  --admin-bar-offset: 0px;
  --section-py: clamp(20px, 3.2vh, 32px);
  --ease: cubic-bezier(0.2, 0.85, 0.2, 1);
  --ease-section: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 14px 40px rgba(31, 31, 31, 0.06);
  --section-seam-h: clamp(28px, 5vh, 52px);
  --section-seam-feather-top: rgba(255, 255, 255, 0.36);
  --section-seam-feather-bottom: rgba(255, 255, 255, 0.2);
  --section-seam-line: rgba(255, 255, 255, 0.48);
  --section-seam-shadow: rgba(31, 31, 31, 0.028);
  --radius: 20px;
  --max-w: 1440px;
  --anim-down-scale-min: 0.32;
  --anim-down-scale-max: 1.18;
  --anim-down-y-start: -52px;
  --anim-down-y-end: 22px;
  --anim-down-z-start: -520px;
  --anim-down-z-end: 0px;
  --anim-up-scale-max: 1;
  --anim-up-scale-min: 0.42;
  --anim-up-y-start: 0px;
  --anim-up-y-end: 28px;
  --anim-up-z-start: 0px;
  --anim-up-z-end: -320px;
  /* Page / section fades — single place to tune (sync with cube-top.js WSC_SECTION_TRANSITION_MS) */
  --fade-reveal: 2.6s;
  --fade-hero: 1.65s;
  --fade-concept: 2.3s;
  --fade-section-shell: 2.35s;
  --fade-section-enter: 1.05s;
  --fade-bridge-settle: 0.37s;
  --fade-access-flow: 3.05s;
  /* Section scroll affordance — fixed right inset (no floating nav) */
  --floating-nav-safe-inline: 0px;
  /* Fixed .section-scroll-affordance — width + gap left of nav (sync with cube-top.js gap) */
  --section-scroll-affordance-width: 46px;
  --section-scroll-affordance-gap: 14px;
  --section-scroll-affordance-safe-inline: calc(
    var(--section-scroll-affordance-width) + var(--section-scroll-affordance-gap)
  );
}

* { box-sizing: border-box; }
html {
  height: 100%;
  scroll-behavior: smooth;
}
/* TEMP: hero-concept bridge disabled
html:has(body.is-home-concept-bridge) {
  scroll-behavior: auto;
}
*/
body {
  min-height: 100%;
}
html.is-section-snap-active {
  scroll-behavior: auto;
  overscroll-behavior-y: none;
  /* Section snap uses programmatic scrollTo — hide the document scrollbar so it
     does not stack with nested section scroll areas (#plan .plan-scroll, etc.). */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html.is-section-snap-active::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  font-family: var(--site-font-family);
  color: var(--text-main);
  background-color: var(--bg);
  line-height: 1.7;
  letter-spacing: 0.01em;
  padding-bottom: 0;
  transition:
    padding-bottom 0.45s var(--ease),
    background-color 0.55s var(--ease),
    background-image 0.55s var(--ease);
}
body.is-floating-cta-visible {
  padding-bottom: var(--footer-h, 90px);
  overscroll-behavior-y: auto;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max-w), calc(100% - 48px));
  margin-inline: auto;
}

/* #siteHeader: fixed header on top page */
#siteHeader.site-header {
  position: fixed;
  top: var(--admin-bar-offset);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  min-height: var(--header-h);
  height: auto;
  border-bottom: 1px solid rgba(31, 31, 31, 0.07);
  background: var(--header-glass);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 10px 30px rgba(31, 31, 31, 0.03);
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
body.admin-bar {
  --admin-bar-offset: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar {
    --admin-bar-offset: 46px;
  }
}
#siteHeader.site-header.is-scrolled {
  background: var(--header-glass-scrolled);
  border-color: rgba(31, 31, 31, 0.11);
  box-shadow:
    0 10px 32px rgba(31, 31, 31, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}
.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: 0;
}
.logo {
  justify-self: start;
}
.site-nav {
  justify-self: center;
}
.header-actions {
  display: flex;
  gap: clamp(8px, 1.2vw, 12px);
  align-items: center;
  justify-self: end;
  min-width: 0;
}

.cube-lang-switcher ul {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cube-lang-switcher a {
  display: inline-flex;
  align-items: center;
  min-width: 2rem;
  justify-content: center;
  padding: 4px 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: rgba(31, 31, 31, 0.58);
  border: 0;
  background: transparent;
  transition: color 0.25s ease, background 0.25s ease;
}

.cube-lang-switcher a:hover,
.cube-lang-switcher a:focus-visible {
  color: var(--accent);
  background: rgba(15, 145, 141, 0.08);
}
.cube-lang-switcher li.current-lang a {
  color: var(--text-main);
  background: rgba(31, 31, 31, 0.06);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.3s var(--ease), opacity 0.3s ease;
}
.logo::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, #12a09c, var(--accent));
  box-shadow: 0 0 0 2px rgba(15, 145, 141, 0.12);
  flex-shrink: 0;
}
.logo--image::before {
  content: none;
}
.logo__image {
  display: block;
  width: auto;
  max-width: min(180px, 42vw);
  max-height: 42px;
  object-fit: contain;
}
.logo:hover,
.logo:focus-visible {
  color: var(--accent);
}
.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(2px, 0.8vw, 6px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.76rem, 0.72rem + 0.18vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.045em;
  color: rgba(31, 31, 31, 0.68);
  transition: color 0.25s var(--ease);
  position: relative;
  padding: 8px clamp(8px, 0.9vw, 12px);
  border-radius: 0;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: clamp(8px, 0.9vw, 12px);
  right: clamp(8px, 0.9vw, 12px);
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s var(--ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent);
  background: transparent;
}
.nav-link.is-active {
  color: var(--text-main);
  font-weight: 600;
  background: transparent;
  box-shadow: none;
}
.nav-link.is-active::after {
  transform: scaleX(1);
}
.nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, #12a09c 0%, var(--accent) 52%, #0b7f7b 100%);
  color: var(--button-light);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 9px 16px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(15, 145, 141, 0.22), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s ease;
}
.header-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 6px 18px rgba(15, 145, 141, 0.28), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.header-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 245, 240, 0.88));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(31, 31, 31, 0.05);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.hamburger:hover {
  border-color: rgba(15, 145, 141, 0.28);
  box-shadow: 0 4px 14px rgba(15, 145, 141, 0.12);
}
.hamburger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.hamburger[aria-expanded="true"] {
  background: rgba(15, 145, 141, 0.1);
  border-color: rgba(15, 145, 141, 0.32);
}
.hamburger-lines,
.hamburger-lines::before,
.hamburger-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
  transition: transform 0.35s var(--ease), opacity 0.3s ease, background 0.25s ease;
  content: "";
}
.hamburger-lines { position: relative; }
.hamburger-lines::before { position: absolute; top: -6px; left: 0; }
.hamburger-lines::after { position: absolute; top: 6px; left: 0; }
.hamburger[aria-expanded="true"] .hamburger-lines {
  transform: rotate(45deg);
  background: var(--accent);
}
.hamburger[aria-expanded="true"] .hamburger-lines::before { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger-lines::after {
  transform: rotate(-90deg) translateX(6px);
  top: 0;
  background: var(--accent);
}

.mobile-menu {
  position: fixed;
  top: calc(var(--admin-bar-offset) + var(--header-h) + var(--banner-h, 0px) + 8px);
  left: 12px;
  right: 12px;
  z-index: 950;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 248, 243, 0.93));
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(31, 31, 31, 0.1), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.3s ease, transform 0.35s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  border-bottom: 0;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-main);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(15, 145, 141, 0.1);
  color: var(--accent);
  transform: translateX(2px);
}
.mobile-menu a.is-active {
  background: rgba(15, 145, 141, 0.14);
  color: var(--accent);
  font-weight: 600;
}
.floating-section-nav {
  display: none !important;
  position: fixed;
  top: calc(var(--admin-bar-offset) + var(--header-h) + var(--banner-h, 0px) + 12px);
  right: 18px;
  z-index: 970;
  display: grid;
  gap: 5px;
  padding: 10px 9px;
  max-height: calc(100dvh - var(--header-h) - var(--banner-h, 0px) - var(--footer-h, 0px) - 120px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 245, 240, 0.78));
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 12px 30px rgba(31, 31, 31, 0.12);
}
.global-progress {
  position: fixed;
  top: calc(var(--admin-bar-offset) + var(--header-h) + var(--banner-h, 0px) - var(--header-progress-h));
  left: 0;
  width: 100%;
  height: var(--header-progress-h);
  z-index: 1001;
  pointer-events: none;
  background: rgba(31, 31, 31, 0.06);
}
.global-progress span {
  display: block;
  height: 100%;
  width: 8px;
  min-width: 8px;
  background: linear-gradient(90deg, rgba(15, 145, 141, 0.55), rgba(15, 145, 141, 0.95));
  box-shadow: 0 0 10px rgba(15, 145, 141, 0.28);
  transition: width 0.65s var(--ease);
}
.floating-section-nav a {
  position: relative;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-sub);
  padding: 6px 10px 6px 20px;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.floating-section-nav a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(31, 31, 31, 0.24);
  transform: translateY(-50%);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.floating-section-nav a.is-active {
  color: var(--text-main);
  background: rgba(15, 145, 141, 0.12);
  transform: translateX(-2px);
}
.floating-section-nav a.is-active::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 145, 141, 0.18);
  transform: translateY(-50%) scale(1.1);
}
/* Fixed scroll hint — sits left of .floating-section-nav when a section scrolls internally */
.section-scroll-affordance {
  --section-scroll-affordance-right: calc(18px + 92px + var(--section-scroll-affordance-gap));
  position: fixed;
  top: 50%;
  right: var(--section-scroll-affordance-right);
  z-index: 969;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 11px 9px;
  border: 1px solid rgba(15, 145, 141, 0.22);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 245, 240, 0.82));
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow:
    0 10px 26px rgba(31, 31, 31, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    opacity 0.45s var(--ease),
    visibility 0.45s var(--ease),
    transform 0.45s var(--ease);
}
.section-scroll-affordance.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
}
.section-scroll-affordance.is-faded {
  opacity: 0.42;
  pointer-events: none;
}
.section-scroll-affordance__chev {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  opacity: 0.28;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.section-scroll-affordance__chev--up {
  transform: rotate(-135deg);
}
.section-scroll-affordance__chev--down {
  transform: rotate(45deg);
}
.section-scroll-affordance:not(.is-at-top) .section-scroll-affordance__chev--up {
  opacity: 0.92;
}
.section-scroll-affordance:not(.is-at-bottom) .section-scroll-affordance__chev--down {
  opacity: 0.92;
  animation: section-scroll-affordance-bounce 2.2s ease-in-out infinite;
}
.section-scroll-affordance__track {
  position: relative;
  width: 3px;
  height: clamp(36px, 8vh, 52px);
  border-radius: 999px;
  background: rgba(15, 145, 141, 0.14);
  overflow: hidden;
}
.section-scroll-affordance__thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 32%;
  min-height: 8px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(15, 145, 141, 0.72), var(--accent));
  box-shadow: 0 0 8px rgba(15, 145, 141, 0.28);
  transform: translateY(0);
  transition: transform 0.18s ease;
  will-change: transform;
}
.section-scroll-affordance__label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--accent);
  line-height: 1;
  user-select: none;
}
@keyframes section-scroll-affordance-bounce {
  0%, 72%, 100% { transform: rotate(45deg) translateY(0); }
  84% { transform: rotate(45deg) translateY(4px); }
  92% { transform: rotate(45deg) translateY(0); }
}

.floating-section-step {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transition: bottom 0.45s var(--ease);
}
body.is-floating-cta-visible .floating-section-step {
  bottom: calc(var(--footer-h, 74px) + 18px + env(safe-area-inset-bottom, 0px));
  z-index: 1110;
}
.floating-section-step__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 88px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 245, 240, 0.86));
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 10px 26px rgba(31, 31, 31, 0.1);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), opacity 0.28s ease, border-color 0.28s ease;
}
.floating-section-step__btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(31, 31, 31, 0.12);
  border-color: rgba(15, 145, 141, 0.28);
}
.floating-section-step__btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}
.floating-section-step__icon {
  font-size: 0.82rem;
  line-height: 1;
  color: var(--accent);
}
body[data-active-section="home"] .floating-section-step__btn {
  color: var(--text-main);
}
body[data-active-section="home"] .floating-section-step {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}
body[data-active-section="home"] .floating-section-step__btn {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 245, 240, 0.82));
}

.hero {
  min-height: 100dvh;
  max-height: 100dvh;
  height: 100dvh;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(180deg, transparent calc(100% - var(--section-seam-h)), rgba(13, 15, 16, 0.18) 100%),
    linear-gradient(to top, rgba(13, 15, 16, 0.55), rgba(13, 15, 16, 0.32)),
    var(--hero-bg-image, url("images/hero.jpg"));
  background-size: cover;
  background-position: center;
  padding-top: calc(var(--admin-bar-offset) + var(--header-h) + var(--banner-h, 0px));
  padding-bottom: clamp(24px, 4vh, 40px);
  padding-inline: clamp(16px, 4vw, 32px);
  color: #ffffff;
  text-align: center;
}
.hero-content {
  width: min(1080px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: clamp(4px, 2vw, 20px);
}
.hero-kicker {
  margin: 0 0 clamp(12px, 2.2vh, 20px);
  font-size: clamp(0.68rem, 1.05vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}
.hero-title {
  margin: 0 auto;
  font-size: clamp(2.05rem, 7.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #ffffff;
  text-shadow:
    0 4px 32px rgba(0, 0, 0, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(0, 0, 0, 0.7);
}
.hero-sub {
  margin: clamp(20px, 3.2vh, 34px) auto 0;
  font-size: clamp(0.875rem, 1.55vw, 1.05rem);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0.03em;
  max-width: 30em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.42),
    0 1px 4px rgba(0, 0, 0, 0.48);
}
.scroll-hint {
  position: absolute;
  bottom: clamp(24px, 4vh, 40px);
  left: 0;
  right: 0;
  width: fit-content;
  margin-inline: auto;
  margin-top: 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
  color: rgba(255, 255, 255, 0.92);
  animation: scroll-hint-bounce 5s ease-in-out infinite;
  cursor: pointer;
  z-index: 3;
}
/* Home-news seam overlay (z-index 5) sits on the hero bottom; lift SCROLL above it (desktop only) */
@media (min-width: 821px) {
  #home.hero:has(+ #home-news) .scroll-hint {
    bottom: clamp(96px, 15vh, 140px);
  }
}
.scroll-arrow {
  display: inline-block;
  margin-left: 6px;
}
@keyframes scroll-hint-bounce {
  0%, 78%, 100% { transform: translateY(0); opacity: 0.88; }
  84% { transform: translateY(6px); opacity: 1; }
  90% { transform: translateY(0); opacity: 0.92; }
  94% { transform: translateY(3px); opacity: 1; }
}

.cube-main {
  display: flex;
  flex-direction: column;
}

/* WSC: fixed full-viewport stack — one section visible at a time */
.cube-main.wsc-section-scroll {
  position: relative;
  /* Overridden inline on front-page.php; JS re-syncs from rendered .section-anchor count */
  --wsc-section-count: 1;
  --wsc-vh: 100dvh;
}
.cube-main.wsc-section-scroll::after {
  content: "";
  display: block;
  height: calc(var(--wsc-section-count) * var(--wsc-vh));
  pointer-events: none;
}
.cube-main.wsc-section-scroll .section-anchor.cube-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* #access ID rule below must not override fixed stack positioning */
.cube-main.wsc-section-scroll #access.section-anchor.cube-screen {
  position: fixed;
  inset: 0;
  width: 100%;
}
.cube-main.wsc-section-scroll .section-anchor.cube-screen.is-current {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  transition: opacity var(--fade-section-enter) var(--ease-section);
}
.cube-main.wsc-section-scroll .section-anchor.cube-screen:not(.is-current):not(.is-leaving-down):not(.is-leaving-up):not(.is-entering-down):not(.is-entering-up) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cube-main.wsc-section-scroll #home.hero.is-current {
  background-color: transparent;
  background-image:
    linear-gradient(to top, rgba(13, 15, 16, 0.55), rgba(13, 15, 16, 0.32)),
    var(--hero-bg-image, url("images/hero.jpg"));
  background-size: cover;
  background-position: center;
}
.cube-main.wsc-section-scroll .section-anchor.cube-screen:not(.is-current) .hero-content,
.cube-main.wsc-section-scroll .section-anchor.cube-screen:not(.is-current) .scroll-hint {
  opacity: 0;
  pointer-events: none;
}
.cube-main.wsc-section-scroll .section-anchor.is-leaving-down {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
  animation: wsc-leave-down var(--fade-section-enter) var(--ease-section) forwards;
}
.cube-main.wsc-section-scroll .section-anchor.is-leaving-up {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
  animation: wsc-leave-up var(--fade-section-enter) var(--ease-section) forwards;
}
.cube-main.wsc-section-scroll .section-anchor.is-entering-down {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 3;
  will-change: transform, opacity;
  animation: wsc-enter-down var(--fade-section-enter) var(--ease-section);
}
.cube-main.wsc-section-scroll .section-anchor.is-entering-up {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 3;
  will-change: transform, opacity;
  animation: wsc-enter-up var(--fade-section-enter) var(--ease-section);
}
@keyframes wsc-leave-down {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0; transform: translate3d(0, -22px, 0); visibility: hidden; }
}
@keyframes wsc-leave-up {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0; transform: translate3d(0, 22px, 0); visibility: hidden; }
}
@keyframes wsc-enter-down {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes wsc-enter-up {
  from { opacity: 0; transform: translate3d(0, -28px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* TEMP: hero-concept bridge disabled — Concept flash prevention (scroll-restore guard)
body:not(.is-wsc-ready) .cube-main.wsc-section-scroll #concept {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
*/

/* TEMP: hero-concept bridge disabled — Home ↔ Concept scroll-linked crossfade
body.is-home-concept-bridge .cube-main.wsc-section-scroll .section-anchor.cube-screen.is-bridge-visible {
  opacity: var(--bridge-opacity, 1);
  visibility: visible !important;
  pointer-events: none;
  animation: none !important;
  transition: none;
  will-change: opacity;
}
body.is-home-concept-bridge .cube-main.wsc-section-scroll #home.hero.cube-screen.is-bridge-visible {
  background-color: transparent !important;
  background-image:
    linear-gradient(to top, rgba(13, 15, 16, 0.38), rgba(13, 15, 16, 0.2)),
    var(--hero-bg-image, url("images/hero.jpg")) !important;
  background-size: cover !important;
  background-position: center !important;
  z-index: 2;
}
body.is-home-concept-bridge .cube-main.wsc-section-scroll #concept.is-bridge-visible {
  z-index: 3;
}
body.is-home-concept-bridge .cube-main.wsc-section-scroll #home.hero.cube-screen.is-bridge-visible .hero-content,
body.is-home-concept-bridge .cube-main.wsc-section-scroll #home.hero.cube-screen.is-bridge-visible .scroll-hint {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
}
body.is-home-concept-bridge .cube-main.wsc-section-scroll #concept.is-bridge-visible .container {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
body.is-home-concept-bridge .cube-main.wsc-section-scroll #concept.is-bridge-visible .js-fade,
body.is-home-concept-bridge .cube-main.wsc-section-scroll #concept.is-bridge-visible .concept-fade h2,
body.is-home-concept-bridge .cube-main.wsc-section-scroll #concept.is-bridge-visible .concept-fade .lead {
  opacity: var(--bridge-content-opacity, 0);
  transform: none !important;
  filter: none !important;
  transition: none;
}
body.is-home-concept-bridge .cube-main.wsc-section-scroll .section-anchor.cube-screen.is-bridge-visible.is-bridge-top {
  pointer-events: auto;
}
body.is-home-concept-bridge .cube-main.wsc-section-scroll #concept.is-bridge-visible.is-bridge-top {
  pointer-events: auto;
}
body.is-home-concept-bridge .cube-main.wsc-section-scroll #home.hero.is-bridge-visible.is-bridge-top {
  pointer-events: auto;
}
body:not(.is-home-concept-bridge) .cube-main.wsc-section-scroll .section-anchor.cube-screen.is-bridge-visible {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  will-change: auto;
}
*/

.section {
  padding: var(--section-py) 0;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* 1 画面 = 100dvh に収める（はみ出しは縮小で吸収、内側スクロールなし） */
.section-anchor.cube-screen {
  position: relative;
  min-height: 100dvh;
  max-height: 100dvh;
  height: 100dvh;
  box-sizing: border-box;
  padding-block: 0;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  align-content: stretch;
  --text-progress: 0;
}

/*
 * Natural document-flow scroll (front page default).
 * WSC fixed-stack rules above/below apply only when .wsc-section-scroll is present.
 */
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen {
  min-height: 80dvh;
  max-height: none;
  height: auto;
  overflow: visible;
  display: block;
  padding-block: 0;
}
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container.cube-screen-inner,
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container {
  width: min(var(--max-w), calc(100% - 40px));
  margin-inline: auto;
  min-height: 0;
  max-height: none;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(12px, 2vh, 20px);
  padding-top: calc(var(--header-h) + clamp(16px, 3vh, 32px));
  padding-bottom: clamp(24px, 4vh, 48px);
  box-sizing: border-box;
  overflow: visible;
  transform: none;
}
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container > [class*="-grid"],
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container > .floor-layout,
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container > .cta-panel,
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container > .access-flow,
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container > .concept-block,
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container > .value-outline,
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container > .value-chooser-wrap,
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container > .value-card,
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container > article.value-card {
  flex: none;
  min-height: auto;
  overflow: visible;
}
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen > .container > .value-chooser-wrap {
  overflow: visible;
}
.cube-main:not(.wsc-section-scroll) .section-anchor .container {
  opacity: 1;
  transform: none;
}
.cube-main:not(.wsc-section-scroll) #home.hero {
  min-height: 100dvh;
  max-height: none;
  height: 100dvh;
  display: grid;
  align-items: center;
  justify-content: center;
}
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen:not(#home) > .container,
.cube-main:not(.wsc-section-scroll) .section-anchor.cube-screen:not(#home) > .container.cube-screen-inner {
  position: relative;
  z-index: 1;
}
.cube-main:not(.wsc-section-scroll) #plan.section-anchor.cube-screen > .container.cube-screen-inner,
.cube-main:not(.wsc-section-scroll) #plan.section-anchor.cube-screen > .container {
  justify-content: flex-start;
  overflow: visible;
  transform: none;
  padding-bottom: clamp(24px, 4vh, 48px);
  gap: clamp(12px, 2vh, 20px);
}
.cube-main:not(.wsc-section-scroll) #plan.section-anchor.cube-screen > .container .plan-scroll {
  flex: none;
  min-height: auto;
  overflow: visible;
  overscroll-behavior: auto;
  padding-bottom: 0;
  scrollbar-width: auto;
  -ms-overflow-style: auto;
}
.cube-main:not(.wsc-section-scroll) #plan.section-anchor.cube-screen > .container .plan-scroll::-webkit-scrollbar {
  display: initial;
  width: auto;
  height: auto;
}
.cube-main:not(.wsc-section-scroll) #floor.section-anchor.cube-screen > .container > .floor-layout {
  overflow: visible;
}
.cube-main:not(.wsc-section-scroll) #access .container.cube-screen-inner,
.cube-main:not(.wsc-section-scroll) #access .container {
  max-height: none;
  height: auto;
  min-height: 0;
}
.cube-main:not(.wsc-section-scroll) #access .access-flow {
  transform: none;
  opacity: 1;
}
.cube-main:not(.wsc-section-scroll) #concept.is-detail-mode.section-anchor.cube-screen,
.cube-main:not(.wsc-section-scroll) #campaign.is-detail-mode.section-anchor.cube-screen,
.cube-main:not(.wsc-section-scroll) #news.is-detail-mode.section-anchor.cube-screen,
.cube-main:not(.wsc-section-scroll) #howto.is-detail-mode.section-anchor.cube-screen {
  position: relative;
  inset: auto;
  width: auto;
  min-height: auto;
  height: auto;
}
.cube-main:not(.wsc-section-scroll) #concept.is-detail-mode.section-anchor.cube-screen > .container,
.cube-main:not(.wsc-section-scroll) #campaign.is-detail-mode.section-anchor.cube-screen > .container,
.cube-main:not(.wsc-section-scroll) #news.is-detail-mode.section-anchor.cube-screen > .container,
.cube-main:not(.wsc-section-scroll) #howto.is-detail-mode.section-anchor.cube-screen > .container {
  height: auto;
  min-height: 0;
}

/* Per-section pastel gradients (discrete one-screen-at-a-time; #home keeps hero photo) */
#concept.section-anchor.cube-screen {
  background-color: #ffffff;
  background-image: var(--section-seam-bg);
}
#service.section-anchor.cube-screen {
  background-color: #ffffff;
  background-image: var(--section-seam-bg);
}
#floor.section-anchor.cube-screen {
  background-color: #ffffff;
  background-image: var(--section-seam-bg);
}
#plan.section-anchor.cube-screen {
  background-color: #ffffff;
  background-image: var(--section-seam-bg);
}
#plan-finder.section-anchor.cube-screen {
  background-color: #ffffff;
  background-image: var(--section-seam-bg);
}
#howto.section-anchor.cube-screen {
  background-color: #ffffff;
  background-image: var(--section-seam-bg);
}
#voice.section-anchor.cube-screen {
  background-color: #ffffff;
  background-image: var(--section-seam-bg);
}
#news.section-anchor.cube-screen {
  background-color: #ffffff;
  background-image: var(--section-seam-bg);
}
#access.section-anchor.cube-screen {
  background-color: #ffffff;
  background-image: var(--section-seam-bg);
}
#contact.section-anchor.cube-screen {
  background-color: #ffffff;
  background-image: var(--section-seam-bg);
}

/*
 * Section seams — neutral white feather + hairline (within section bounds; no tint overlap).
 */
.cube-main .section-anchor.cube-screen:not(#home) {
  --section-seam-bg:
    linear-gradient(180deg, var(--section-seam-feather-top) 0%, transparent var(--section-seam-h)),
    linear-gradient(0deg, var(--section-seam-feather-bottom) 0%, transparent calc(var(--section-seam-h) * 0.88));
  box-shadow:
    inset 0 1px 0 var(--section-seam-line),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    inset 0 14px 26px -22px var(--section-seam-shadow);
}

/*
 * Diagonal background image slice (add .section-has-bg-slice + --section-bg-image).
 * Pastel gradient stays on the section; ::after reveals a photo wedge on one side.
 * Wedge side alternates automatically: 1st bg-slice section = left, 2nd = right, …
 * (.section-bg-slice--left / --top still override manually if needed.)
 */
.cube-main .section-anchor.cube-screen.section-has-bg-slice {
  --section-bg-slice: polygon(76% 0, 100% 0, 100% 100%, 54% 100%);
  --section-bg-position: 78% 42%;
  --section-bg-overlay: linear-gradient(
    148deg,
    rgba(255, 248, 252, 0.62) 0%,
    rgba(243, 238, 255, 0.38) 55%,
    rgba(255, 255, 255, 0.22) 100%
  );
}
.cube-main .section-anchor.cube-screen.section-has-bg-slice.section-bg-slice--left,
.cube-main .section-anchor.cube-screen.section-has-bg-slice:nth-child(odd of .section-has-bg-slice) {
  --section-bg-slice: polygon(0 0, 24% 0, 46% 100%, 0 100%);
  --section-bg-position: 22% 42%;
}
.cube-main .section-anchor.cube-screen.section-has-bg-slice.section-bg-slice--top {
  --section-bg-slice: polygon(0 0, 100% 0, 100% 26%, 0 42%);
  --section-bg-position: center 22%;
}
.cube-main .section-anchor.cube-screen.section-has-bg-slice::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--section-bg-overlay), var(--section-bg-image);
  background-size: cover;
  background-position: var(--section-bg-position);
  background-repeat: no-repeat;
  clip-path: var(--section-bg-slice);
  -webkit-clip-path: var(--section-bg-slice);
}
#concept.section-has-bg-slice {
  --section-bg-image: none;
  --section-bg-position: 28% 50%;
}
#concept.section-no-bg-slice::after {
  display: none;
}
#service.section-has-bg-slice {
  --section-bg-image: url("images/hero.jpg");
  --section-bg-slice: polygon(74% 0, 100% 0, 100% 100%, 50% 100%);
  --section-bg-position: 76% 38%;
}
#floor.section-has-bg-slice {
  --section-bg-image: url("images/hero.jpg");
  --section-bg-position: 72% 52%;
}
#campaign.section-has-bg-slice {
  --section-bg-image: url("images/hero.jpg");
  --section-bg-position: 70% 40%;
}
#plan.section-has-bg-slice {
  --section-bg-image: url("images/hero.jpg");
  --section-bg-position: 26% 52%;
}
#plan-finder.section-has-bg-slice {
  --section-bg-image: url("images/hero.jpg");
  --section-bg-position: 72% 48%;
}
#howto.section-has-bg-slice {
  --section-bg-image: url("images/hero.jpg");
  --section-bg-position: 76% 38%;
}
#voice.section-has-bg-slice {
  --section-bg-image: url("images/hero.jpg");
  --section-bg-position: 28% 44%;
}
#news.section-has-bg-slice {
  --section-bg-image: url("images/hero.jpg");
  --section-bg-position: 70% 46%;
}
#contact.section-has-bg-slice {
  --section-bg-image: url("images/hero.jpg");
  --section-bg-position: 26% 32%;
}

/*
 * Keep section titles/descriptions readable: wedge stays in the corner;
 * text-shadow on title/lead; no panel/frame on .section-head.
 * --slice-text-max / --slice-text-align follow wedge side (right | left | top).
 */
.cube-main .section-has-bg-slice {
  --slice-text-max: min(65%, 680px);
  --slice-text-align: flex-start;
  --slice-text-gutter-inline: clamp(16px, 7vw, 72px);
  --slice-text-gutter-block: 0;
}
.cube-main .section-has-bg-slice.section-bg-slice--left,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) {
  --slice-text-max: min(65%, 680px);
  --slice-text-align: flex-end;
}
.cube-main .section-has-bg-slice.section-bg-slice--top {
  --slice-text-max: min(680px, 90%);
  --slice-text-align: stretch;
  --slice-text-gutter-inline: 0;
  --slice-text-gutter-block: clamp(24px, 11vh, 88px);
}
.cube-main .section-has-bg-slice.section-bg-slice--top > .container {
  justify-content: flex-end;
  padding-top: clamp(28px, 10vh, 80px);
  padding-bottom: clamp(20px, 4vh, 44px);
}
.cube-main .section-has-bg-slice .section-head {
  position: relative;
  z-index: 1;
  max-width: var(--slice-text-max);
  align-self: var(--slice-text-align);
  width: min(100%, var(--slice-text-max));
  box-sizing: border-box;
  margin-inline-end: var(--slice-text-gutter-inline);
  margin-inline-start: 0;
  margin-top: var(--slice-text-gutter-block);
  text-align: start;
}
.cube-main .section-has-bg-slice .cta-panel > :first-child {
  text-align: start;
}
.cube-main .section-has-bg-slice.section-bg-slice--left .section-head,
.cube-main .section-has-bg-slice.section-bg-slice--left .cta-panel > :first-child,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) .section-head,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) .cta-panel > :first-child {
  text-align: end;
}
.cube-main .section-has-bg-slice.section-bg-slice--left .section-head,
.cube-main .section-has-bg-slice.section-bg-slice--left .concept-block,
.cube-main .section-has-bg-slice.section-bg-slice--left .value-outline,
.cube-main .section-has-bg-slice.section-bg-slice--left .value-chooser-wrap,
.cube-main .section-has-bg-slice.section-bg-slice--left .value-card.value-layout,
.cube-main .section-has-bg-slice.section-bg-slice--left .cta-panel,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) .section-head,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) .concept-block,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) .value-outline,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) .value-chooser-wrap,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) .value-card.value-layout,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) .cta-panel {
  margin-inline-end: var(--slice-text-gutter-inline);
  margin-inline-start: var(--slice-text-gutter-inline);
}
#plan.section-has-bg-slice .section-head {
  margin-inline-end: max(
    var(--slice-text-gutter-inline),
    var(--section-scroll-affordance-safe-inline)
  );
}
.cube-main .section-has-bg-slice .value-outline,
.cube-main .section-has-bg-slice .value-chooser-wrap {
  position: relative;
  z-index: 1;
  align-self: var(--slice-text-align);
  max-width: var(--slice-text-max);
  width: 100%;
  box-sizing: border-box;
  margin-inline-end: var(--slice-text-gutter-inline);
  margin-inline-start: 0;
  margin-top: clamp(6px, 1vh, 12px);
}
.cube-main .section-has-bg-slice .concept-block {
  align-self: var(--slice-text-align);
  max-width: var(--slice-text-max);
  width: 100%;
  box-sizing: border-box;
  margin-inline-end: var(--slice-text-gutter-inline);
  margin-inline-start: 0;
  margin-top: var(--slice-text-gutter-block);
}
.cube-main .section-has-bg-slice .value-card.value-layout {
  align-self: var(--slice-text-align);
  max-width: var(--slice-text-max);
  width: 100%;
  box-sizing: border-box;
  margin-inline-end: var(--slice-text-gutter-inline);
  margin-inline-start: 0;
  margin-top: var(--slice-text-gutter-block);
}
.cube-main .section-has-bg-slice .cta-panel {
  align-self: var(--slice-text-align);
  max-width: var(--slice-text-max);
  width: min(100%, var(--slice-text-max));
  box-sizing: border-box;
  margin-inline-end: var(--slice-text-gutter-inline);
  margin-inline-start: 0;
  margin-top: var(--slice-text-gutter-block);
}
.cube-main .section-has-bg-slice .section-title,
.cube-main .section-has-bg-slice .section-kicker,
.cube-main .section-has-bg-slice .lead {
  position: relative;
  z-index: 1;
  text-shadow:
    0 0 14px rgba(255, 251, 246, 0.85),
    0 1px 1px rgba(255, 251, 246, 0.55);
}
/* Subcopy: fill section-head width (override global .lead max-width: 44em). */
.cube-main .section-has-bg-slice .section-head .lead,
.cube-main .section-has-bg-slice .cta-panel > :first-child .lead {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

/* #howto: top wedge — sit below wedge tip */
.cube-main #howto.section-has-bg-slice.section-bg-slice--top {
  --slice-text-gutter-block: clamp(12px, 4.5vh, 36px);
}
.cube-main #howto.section-has-bg-slice.section-bg-slice--top > .container {
  justify-content: flex-start;
  padding-top: clamp(28px, 7vh, 56px);
  padding-bottom: clamp(16px, 3vh, 36px);
}
/* #howto: no panel on .section-head — text-shadow only (see global slice rules) */
.cube-main #howto.section-has-bg-slice .section-kicker,
.cube-main #howto.section-has-bg-slice .section-title,
.cube-main #howto.section-has-bg-slice .lead {
  text-shadow:
    0 0 18px rgba(255, 251, 246, 0.92),
    0 1px 2px rgba(255, 255, 255, 0.85),
    0 2px 10px rgba(31, 31, 31, 0.12);
}
.cube-main #howto.section-has-bg-slice .lead {
  color: rgba(31, 31, 31, 0.78);
}

.cube-main.wsc-section-scroll .section-anchor.cube-screen:not(#home) > .container,
.cube-main.wsc-section-scroll .section-anchor.cube-screen:not(#home) > .container.cube-screen-inner {
  position: relative;
  z-index: 1;
}

#home.hero {
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-image:
    linear-gradient(180deg, transparent calc(100% - var(--section-seam-h)), rgba(13, 15, 16, 0.18) 100%),
    linear-gradient(to top, rgba(13, 15, 16, 0.55), rgba(13, 15, 16, 0.32)),
    var(--hero-bg-image, url("images/hero.jpg"));
  background-size: cover;
  background-position: center;
}

.section-anchor.cube-screen > .container.cube-screen-inner,
.section-anchor.cube-screen > .container {
  width: min(var(--max-w), calc(100% - 40px));
  margin-inline: auto;
  min-height: 0;
  max-height: calc(100dvh - var(--header-h) - var(--footer-h, 0px) - 6px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(6px, 1vh, 12px);
  padding-top: calc(var(--header-h) + 6px);
  padding-bottom: 8px;
  box-sizing: border-box;
  overflow: hidden;
  transform: scale(var(--section-fit-scale, 1));
  transform-origin: center center;
}
@media (min-width: 821px) {
  .cube-main .section-anchor.cube-screen.section-has-bg-slice::after {
    right: 0;
  }
}
.section-anchor.cube-screen > .container > .section-head {
  flex-shrink: 0;
}
.section-anchor.cube-screen > .container > [class*="-grid"],
.section-anchor.cube-screen > .container > .floor-layout,
.section-anchor.cube-screen > .container > .cta-panel,
.section-anchor.cube-screen > .container > .access-flow,
.section-anchor.cube-screen > .container > .concept-block,
.section-anchor.cube-screen > .container > .value-outline,
.section-anchor.cube-screen > .container > .value-chooser-wrap,
.section-anchor.cube-screen > .container > .value-card,
.section-anchor.cube-screen > .container > article.value-card {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.section-anchor.cube-screen > .container > .value-chooser-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vh, 16px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.section-anchor.cube-screen.value-section.is-detail-mode > .container > .value-chooser-wrap,
.section-anchor.cube-screen.campaign-section.is-detail-mode > .container > .value-chooser-wrap,
.section-anchor.cube-screen.news-section.is-detail-mode > .container > .value-chooser-wrap,
.section-anchor.cube-screen.howto-section.is-detail-mode > .container > .howto-content-wrap {
  flex: 1 1 auto;
}
.section-anchor.cube-screen.value-section.is-detail-mode > .container > .section-head,
.section-anchor.cube-screen.campaign-section.is-detail-mode > .container > .section-head,
.section-anchor.cube-screen.news-section.is-detail-mode > .container > .section-head,
.section-anchor.cube-screen.howto-section.is-detail-mode > .container > .section-head {
  flex-shrink: 0;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

#access .container.cube-screen-inner,
#access .container {
  --access-content-inset: clamp(16px, 2vw, 32px);
  --access-head-gap: 0;
  --access-map-desc-gap: clamp(1px, 0.18vw, 3px);
  --access-video-gap: clamp(4px, 0.65vh, 10px);
  --access-panel-radius: 18px;
  --access-panel-border: 1px solid rgba(255, 255, 255, 0.78);
  --access-panel-bg: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(247, 245, 240, 0.72) 100%
  );
  --access-panel-shadow:
    0 14px 36px rgba(31, 31, 31, 0.08),
    0 2px 8px rgba(15, 145, 141, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  min-height: 0;
  height: 100%;
  max-height: calc(100dvh - var(--header-h) - var(--footer-h, 0px) - 6px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--access-head-gap);
  width: min(1880px, 100%);
  margin-inline: 0 auto;
  padding: clamp(1px, 0.3vw, 4px) var(--floating-nav-safe-inline) clamp(1px, 0.3vw, 4px) 0;
  padding-top: clamp(calc(var(--header-h) + 1px), calc(var(--header-h) + 0.55vh), calc(var(--header-h) + 6px));
  overflow: hidden;
  transform: none;
  transform-origin: top center;
}
#access .section-head {
  flex-shrink: 0;
  max-width: 100%;
  align-self: stretch;
  padding-inline: var(--access-content-inset);
  margin-top: 0;
  margin-bottom: 0;
}
#access .section-head .lead {
  margin-top: clamp(3px, 0.45vh, 5px);
  margin-bottom: 0;
}
@media (min-width: 1081px) {
  #access .section-head .lead {
    display: none;
  }
  #access .section-head--compact {
    margin-bottom: 0;
  }
  #access .section-head--compact .section-head__row {
    gap: clamp(12px, 1.8vw, 28px);
    align-items: center;
  }
  #access .section-head .access-venue-summary.route-address {
    padding: 10px 14px;
  }
}
#access .section-head__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 40px);
  width: 100%;
}
#access .section-head__main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(680px, 58%);
}
#access .section-head .access-venue-summary {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  min-width: auto;
  margin: 0;
  margin-top: clamp(4px, 0.6vh, 8px);
  margin-right: clamp(10px, 1.4vw, 18px);
  align-self: flex-start;
}

/* Access 全画面レイヤー: 暗幕なし・枠なし（動画はホバー再生） */
body.is-access-layer {
  overscroll-behavior-y: auto;
}
#access.section-anchor.is-access-layer {
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
}
#access.section-anchor.is-access-layer .container,
#access.section-anchor.is-access-layer .container.cube-screen-inner {
  min-height: min(100dvh, 100vh);
  width: min(1880px, 100%);
  max-width: 100%;
  margin-inline: 0 auto;
  padding: clamp(4px, 0.8vw, 10px) var(--floating-nav-safe-inline) clamp(4px, 0.8vw, 10px) 0;
  padding-top: clamp(calc(var(--header-h) + 2px), calc(var(--header-h) + 0.8vh), calc(var(--header-h) + 8px));
}

/*
 * Snap mode: wheel/touch are handled in JS (preventDefault). Do NOT set overflow:hidden
 * on html/body — it breaks native Home→Concept scroll and can block programmatic scrollTo.
 */
body.is-section-snap-active {
  overscroll-behavior-y: none;
}

.section-anchor .container {
  opacity: 0.92;
  transform: translate3d(0, 8px, 0);
  transition: opacity var(--fade-section-shell) var(--ease), transform var(--fade-section-shell) var(--ease);
}
.section-anchor.is-current .container {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.section-anchor.is-scrolling .container {
  transform: translate3d(0, 0, 0);
}
.section-anchor .section-head h2 {
  transform: translate3d(0, var(--title-pos-y, 0px), 0);
  opacity: 1;
}
.section-anchor.is-leaving-down .container {
  transform: translate3d(0, -28px, 0);
  opacity: 0.4;
}
.section-anchor.is-leaving-up .container {
  transform: translate3d(0, 28px, 0);
  opacity: 0.4;
}
.section-anchor.is-entering-down .container {
  animation: section-enter-down var(--fade-section-enter) var(--ease-section);
}
.section-anchor.is-entering-up .container {
  animation: section-enter-up var(--fade-section-enter) var(--ease-section);
}
@keyframes section-enter-down {
  from { opacity: 0.34; transform: translate3d(0, 28px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes section-enter-up {
  from { opacity: 0.34; transform: translate3d(0, -28px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.section-alt:not(.cube-screen) { background: transparent; }
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: clamp(12px, 2vh, 20px);
  max-width: 780px;
}
/* Shrink-wrap kicker + title so kicker 左頭 matches title text left edge. */
.section-head__title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}
.section-head__title-group .section-kicker,
.section-head__title-group .section-title {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* Right-wedge sections: pin title group to inline end; lead keeps section-head width. */
.cube-main .section-has-bg-slice.section-bg-slice--left .section-head .section-head__title-group,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) .section-head .section-head__title-group,
.cube-main .section-has-bg-slice.section-bg-slice--left .cta-panel > :first-child .section-head__title-group,
.cube-main .section-has-bg-slice:nth-child(odd of .section-has-bg-slice) .cta-panel > :first-child .section-head__title-group {
  margin-inline-start: auto;
}
.section-head > .lead {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.section-kicker {
  --kicker-tracking: 0.13em;
  display: block;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 14px;
  margin-inline-end: calc(-1 * var(--kicker-tracking));
  text-align: inherit;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
}
.section-head .section-title,
.section-head .section-kicker,
.section-head__main .section-kicker,
.cta-panel > :first-child .section-kicker,
.cta-panel > :first-child .section-title {
  text-align: inherit;
}
.section-head__title-group .section-kicker,
.section-head__title-group .section-title,
.cta-panel .section-head__title-group .section-kicker,
.cta-panel .section-head__title-group .section-title {
  text-align: start;
}
h2 {
  margin: 0;
  line-height: 1.28;
  letter-spacing: 0.01em;
}
.section-title {
  --title-pos-y: 0px;
  font-size: clamp(1.28rem, 2.85vw, 2.28rem);
}
.section-title--highlight {
  --section-title-highlight: #ffda5e;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}
.section-title__highlight {
  display: inline;
  padding: 0 0.1em;
  background:
    linear-gradient(
      180deg,
      transparent 58%,
      color-mix(in srgb, var(--section-title-highlight) 58%, transparent) 58%,
      color-mix(in srgb, var(--section-title-highlight) 22%, transparent) 100%
    )
    no-repeat;
  background-size: 0% 100%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.section-anchor.is-current .section-title__highlight,
body:not(.js-enabled) .section-title__highlight {
  animation: cubeTitleHighlight 0.68s ease-out 0.18s forwards;
}
@keyframes cubeTitleHighlight {
  from {
    background-size: 0% 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
#concept .section-title {
  font-size: clamp(1.4rem, 3.05vw, 2.45rem);
  --title-pos-y: -2px;
}
#service .section-title {
  font-size: clamp(1.32rem, 2.85vw, 2.32rem);
  --title-pos-y: 1px;
}
#floor .section-title {
  font-size: clamp(1.32rem, 2.85vw, 2.32rem);
  --title-pos-y: 0px;
}
#plan .section-title {
  font-size: clamp(1.32rem, 2.85vw, 2.32rem);
  --title-pos-y: 2px;
}
#howto .section-title {
  font-size: clamp(1.28rem, 2.75vw, 2.2rem);
  --title-pos-y: 0px;
}
#voice .section-title {
  font-size: clamp(1.28rem, 2.75vw, 2.2rem);
  --title-pos-y: 0px;
}
#news .section-title {
  font-size: clamp(1.28rem, 2.75vw, 2.2rem);
  --title-pos-y: 0px;
}

/* Share Lounge–style news list (front page) */
#news .cube-news-list-wrap {
  width: min(100%, 760px);
  margin: clamp(18px, 3vw, 28px) auto 0;
}

#news .cube-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

#news .cube-news-list__item + .cube-news-list__item {
  border-top: 1px solid rgba(255, 255, 255, 0.95);
}

#news .cube-news-list__link {
  display: block;
  padding: clamp(14px, 2.2vw, 18px) clamp(16px, 2.4vw, 22px);
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

#news .cube-news-list__link:hover,
#news .cube-news-list__link:focus-visible {
  background: rgba(15, 145, 141, 0.06);
}

#news .cube-news-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 8px;
}

#news .cube-news-list__badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: #3a3a3a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

#news .cube-news-list__date {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-sub, #777);
  letter-spacing: 0.02em;
}

#news .cube-news-list__title {
  display: block;
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--text-main, #1f1f1f);
}

#news .cube-news-list__more {
  margin: clamp(14px, 2vw, 18px) 0 0;
  text-align: right;
}

#news .cube-news-list__more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main, #1f1f1f);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

#news .cube-news-list__more-link:hover,
#news .cube-news-list__more-link:focus-visible {
  color: #0f918d;
}

#news .cube-news-list__more-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Event section carousel */
#event.section-anchor.cube-screen {
  background:
    linear-gradient(180deg, rgba(250, 248, 243, 0.96), rgba(255, 255, 255, 0.98)),
    var(--bg);
}

#event.event-section > .container {
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(44px, 8vh, 86px));
  text-align: center;
}

.event-section .section-head,
.event-section .section-head__title-group {
  align-items: center;
  margin-inline: auto;
  text-align: center;
}

.event-section .section-head {
  width: min(100%, 820px);
}

.event-section .section-head .lead {
  margin-inline: auto;
  text-align: center;
}

.event-section .section-head__title-group .section-kicker,
.event-section .section-head__title-group .section-title {
  text-align: center;
}

.event-section .section-head__title-group .section-kicker {
  margin-inline-end: 0;
}

.event-section .event-card-carousel {
  width: min(100%, 1040px);
  margin: clamp(20px, 4vw, 36px) auto 0;
}

.event-section .home-news-carousel {
  align-items: stretch;
  justify-content: center;
}

.event-section .home-news-carousel__track {
  justify-content: center;
}

.event-section .home-news-carousel__viewport {
  padding: 4px;
}

.event-section .home-news-carousel__nav {
  width: 38px;
  height: 38px;
  align-self: center;
  border: 1px solid rgba(15, 145, 141, 0.24);
  border-radius: 50%;
  background: #fff;
  color: #0f918d;
  text-shadow: none;
  box-shadow: 0 8px 22px rgba(31, 31, 31, 0.08);
}

.event-section .home-news-carousel__nav:hover:not(:disabled),
.event-section .home-news-carousel__nav:focus-visible:not(:disabled) {
  background: #0f918d;
  color: #fff;
  text-shadow: none;
}

.event-section .home-news-card {
  flex-basis: clamp(230px, 28vw, 320px);
  border-radius: 0;
  box-shadow: 0 16px 38px rgba(31, 31, 31, 0.08);
  text-align: left;
}

.event-section .home-news-card__media {
  border-radius: 0;
}

.event-section .home-news-card__body {
  gap: 0.5em;
  padding: clamp(14px, 2vw, 18px);
}

.event-section .home-news-card__title {
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
}

.event-card__excerpt {
  display: -webkit-box;
  color: var(--text-sub, #666);
  font-size: 0.86rem;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-section .section-archive-cta {
  margin-top: clamp(18px, 3vw, 28px);
  text-align: center;
}

/* Home news rail — float overlay at hero/concept seam (not a section) */
.home-news-rail {
  position: relative;
  z-index: 5;
  height: 0;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
  transition:
    opacity 0.32s var(--ease),
    visibility 0.32s var(--ease);
}
.home-news-rail__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  margin: 0 auto;
  padding: clamp(8px, 1.4vh, 12px) clamp(16px, 4vw, 32px);
  pointer-events: auto;
}
.home-news-rail__row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
  min-width: 0;
}
.home-news-rail__more {
  margin: 6px 34px 0 0;
  text-align: right;
}
.home-news-rail__more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.52),
    0 0 1px rgba(0, 0, 0, 0.68);
}
.home-news-rail__more a:hover,
.home-news-rail__more a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.home-news-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.home-news-carousel {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  gap: clamp(4px, 1vw, 8px);
}
.home-news-carousel__nav {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.52),
    0 0 1px rgba(0, 0, 0, 0.68);
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease, text-shadow 0.2s ease;
}
.home-news-carousel__nav:hover:not(:disabled),
.home-news-carousel__nav:focus-visible:not(:disabled) {
  color: #fff;
  text-shadow:
    0 1px 6px rgba(0, 0, 0, 0.62),
    0 0 2px rgba(0, 0, 0, 0.78);
}
.home-news-carousel__nav:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  pointer-events: none;
}
.home-news-carousel__nav-icon {
  font-size: 1.05rem;
  line-height: 1;
}
.home-news-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.home-news-carousel__viewport::-webkit-scrollbar {
  display: none;
}
.home-news-carousel__viewport:focus-visible {
  outline: 2px solid rgba(15, 145, 141, 0.45);
  outline-offset: 2px;
}
.home-news-carousel__track {
  display: flex;
  gap: clamp(10px, 1.6vw, 14px);
  padding: 1px 0 2px;
}
.home-news-card {
  flex: 0 0 clamp(200px, 26vw, 248px);
  scroll-snap-align: start;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  border: 1px solid rgba(31, 31, 31, 0.07);
  box-shadow: 0 2px 10px rgba(31, 31, 31, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.home-news-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e8e4dc center / cover no-repeat;
}
.home-news-card__media--placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.35) 75%, transparent 75%, transparent),
    linear-gradient(161deg, #f0eaff 0%, #faf7ff 55%, #eef5ff 100%);
}
.home-news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  padding: clamp(8px, 1.2vw, 10px) clamp(10px, 1.4vw, 12px);
}
.home-news-card__date {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-sub, #777);
  letter-spacing: 0.02em;
}
.home-news-card__title {
  margin: 0;
  font-size: clamp(0.8rem, 1.1vw, 0.88rem);
  line-height: 1.4;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news-card:hover,
.home-news-card:focus-within {
  border-color: rgba(15, 145, 141, 0.22);
  box-shadow: 0 4px 14px rgba(31, 31, 31, 0.07);
}

#access .section-title {
  font-size: clamp(1.28rem, 2.75vw, 2.2rem);
  --title-pos-y: 1px;
}
#access.section-anchor.is-current .section-head h2,
#access.section-anchor.is-current.is-scroll-down .section-head h2,
#access.section-anchor.is-current.is-scroll-up .section-head h2 {
  transform: none;
  opacity: 1;
}
#contact .section-title {
  font-size: clamp(1.36rem, 2.95vw, 2.4rem);
  --title-pos-y: -1px;
}
.lead {
  margin: 10px 0 0;
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  color: var(--text-sub);
  max-width: 44em;
}

.section-head--compact {
  margin-bottom: clamp(6px, 1vh, 12px);
}
.section-head--compact .lead {
  margin-top: 6px;
  line-height: 1.55;
}

#concept .feature-strip {
  --feature-strip-rail: rgba(15, 145, 141, 0.13);
  list-style: none;
  margin: clamp(16px, 2.2vh, 24px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 16px);
  max-width: 780px;
  counter-reset: feature-point;
  position: relative;
}
#concept .feature-strip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--feature-strip-rail) 16%,
    var(--feature-strip-rail) 84%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}
#concept .feature-strip li {
  counter-increment: feature-point;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: clamp(5px, 0.7vh, 8px);
  min-width: 0;
  padding: clamp(16px, 2vw, 20px) clamp(14px, 1.6vw, 18px) clamp(14px, 1.8vw, 18px)
    clamp(18px, 2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(247, 245, 240, 0.56) 100%
  );
  backdrop-filter: blur(12px) saturate(118%);
  -webkit-backdrop-filter: blur(12px) saturate(118%);
  box-shadow:
    0 10px 28px rgba(31, 31, 31, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  isolation: isolate;
  overflow: hidden;
}
#concept .feature-strip li::before {
  content: counter(feature-point, decimal-leading-zero);
  font-size: 0.66rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--accent);
  opacity: 0.78;
}
#concept .feature-strip li::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(
    180deg,
    rgba(15, 145, 141, 0.88) 0%,
    rgba(15, 145, 141, 0.28) 100%
  );
}
#concept .feature-strip strong {
  margin: 0;
  padding-bottom: clamp(5px, 0.7vh, 7px);
  border-bottom: 1px solid rgba(15, 145, 141, 0.12);
  font-size: clamp(0.82rem, 1.05vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.38;
}
#concept .feature-strip span {
  margin: 0;
  color: var(--text-sub);
  font-size: clamp(0.74rem, 0.95vw, 0.82rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.value-outline {
  --value-outline-rail: rgba(15, 145, 141, 0.14);
  list-style: none;
  margin: clamp(10px, 1.8vh, 18px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 14px);
  max-width: 780px;
  position: relative;
}
.value-outline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--value-outline-rail) 18%,
    var(--value-outline-rail) 82%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}
.value-outline li {
  display: block;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.value-outline__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 104px;
  padding: 15px 14px 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(247, 245, 240, 0.6) 100%
  );
  backdrop-filter: blur(12px) saturate(118%);
  -webkit-backdrop-filter: blur(12px) saturate(118%);
  box-shadow:
    0 10px 28px rgba(31, 31, 31, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.value-outline__link::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 16px 0 0 16px;
  opacity: 0.94;
  transition: width 0.28s var(--ease), opacity 0.28s var(--ease);
}
.value-outline__link::after {
  content: "→";
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(31, 31, 31, 0.26);
  transition: transform 0.28s var(--ease), color 0.28s var(--ease);
}
.value-outline li:nth-child(1) .value-outline__link::before {
  background: linear-gradient(180deg, #ffb86c 0%, #ff8fab 100%);
}
.value-outline li:nth-child(2) .value-outline__link::before {
  background: linear-gradient(180deg, #7c9cff 0%, #a78bfa 100%);
}
.value-outline li:nth-child(3) .value-outline__link::before {
  background: linear-gradient(180deg, #ff8fab 0%, #c4b5fd 100%);
}
.value-outline li:nth-child(1) .value-outline__link:hover,
.value-outline li:nth-child(1) .value-outline__link:focus-visible {
  border-color: rgba(255, 143, 120, 0.42);
  background: linear-gradient(
    165deg,
    rgba(255, 248, 240, 0.96) 0%,
    rgba(255, 236, 224, 0.78) 100%
  );
}
.value-outline li:nth-child(2) .value-outline__link:hover,
.value-outline li:nth-child(2) .value-outline__link:focus-visible {
  border-color: rgba(124, 156, 255, 0.42);
  background: linear-gradient(
    165deg,
    rgba(244, 247, 255, 0.96) 0%,
    rgba(232, 238, 255, 0.78) 100%
  );
}
.value-outline li:nth-child(3) .value-outline__link:hover,
.value-outline li:nth-child(3) .value-outline__link:focus-visible {
  border-color: rgba(255, 143, 171, 0.42);
  background: linear-gradient(
    165deg,
    rgba(255, 245, 251, 0.96) 0%,
    rgba(255, 232, 242, 0.78) 100%
  );
}
.value-outline__link:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(31, 31, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.value-outline__link:hover::before {
  width: 5px;
}
.value-outline__link:hover::after {
  transform: translateX(3px);
  color: var(--accent);
}
.value-outline__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.value-outline__t {
  padding-right: 18px;
  line-height: 1.38;
  font-size: clamp(0.76rem, 1vw, 0.84rem);
  letter-spacing: 0.02em;
}

.cube-main #concept.section-has-bg-slice {
  --slice-text-max: min(88%, 920px);
}
.cube-main #concept.section-has-bg-slice.section-bg-slice--left,
.cube-main #concept.section-has-bg-slice:nth-child(odd of .section-has-bg-slice) {
  --slice-text-max: min(88%, 920px);
}
.cube-main #concept.section-has-bg-slice .value-chooser-wrap,
.cube-main #concept.section-has-bg-slice .value-card.value-layout,
.cube-main #campaign.section-has-bg-slice .value-chooser-wrap, .cube-main #news.section-has-bg-slice .value-chooser-wrap {
  max-width: min(100%, 1480px);
  width: 100%;
}
.cube-main #campaign.section-has-bg-slice, .cube-main #news.section-has-bg-slice {
  --slice-text-max: min(88%, 920px);
}
.cube-main #concept.section-has-bg-slice:not(.is-detail-mode) .value-chooser-wrap {
  align-self: stretch;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

.value-chooser-wrap {
  width: 100%;
  max-width: min(1480px, 100%);
  margin-inline: auto;
  position: relative;
}
.cube-main #concept.section-has-bg-slice:not(.is-detail-mode) .value-chooser-wrap,
.cube-main #campaign.section-has-bg-slice:not(.is-detail-mode) .value-chooser-wrap,
.cube-main #news.section-has-bg-slice:not(.is-detail-mode) .value-chooser-wrap {
  max-width: min(100%, 1480px);
  width: 100%;
  align-self: stretch;
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.value-chooser {
  display: grid;
  grid-template-columns: repeat(3, minmax(min(260px, 100%), 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  transition:
    opacity 0.34s var(--ease),
    visibility 0.34s var(--ease),
    transform 0.34s var(--ease);
}
.value-chooser__btn {
  --value-bg-split-top: 74%;
  --value-bg-split-bottom: 46%;
  cursor: pointer;
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  min-height: clamp(200px, 24dvh, 280px);
  padding: clamp(18px, 2vw, 26px) clamp(22px, 2.8vw, 34px);
  border-radius: 22px;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
#concept:not(.is-detail-mode) .value-chooser__btn {
  border-color: rgba(216, 222, 220, 0.92);
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.value-chooser__btn .value-outline__body {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 2;
  justify-content: flex-end;
  min-height: 100%;
}
.value-chooser__btn .value-outline__t {
  display: inline-block;
  max-width: calc(100% - 8px);
  padding-right: 34px;
  font-size: clamp(1.05rem, 1.65vw, 1.38rem);
  line-height: 1.42;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: rgba(26, 40, 39, 0.93);
  text-shadow:
    0 0 10px rgba(255, 251, 246, 0.72),
    0 1px 2px rgba(255, 251, 246, 0.48);
}
.value-chooser__btn.is-active,
.value-chooser__btn[aria-selected="true"] {
  border-color: rgba(15, 145, 141, 0.38);
  box-shadow:
    0 18px 40px rgba(15, 145, 141, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-3px);
}
.value-chooser__btn.is-active::after,
.value-chooser__btn[aria-selected="true"]::after {
  color: rgba(15, 145, 141, 0.72);
  transform: translate(2px, -2px);
}
.value-chooser__bg {
  position: absolute;
  inset: -8% -6%;
  z-index: 0;
  pointer-events: none;
  background: #ddd7cc center / cover no-repeat;
  background-image: var(--value-card-image);
  transform: scale(1.06);
  transform-origin: center right;
  clip-path: polygon(
    var(--value-bg-split-top) 0,
    100% 0,
    100% 100%,
    var(--value-bg-split-bottom) 100%
  );
  opacity: 0.92;
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}
#concept:not(.is-detail-mode) .value-chooser__bg {
  display: none;
}
.value-chooser__btn:hover .value-chooser__bg,
.value-chooser__btn:focus-visible .value-chooser__bg {
  opacity: 0.98;
  transform: scale(1.08);
}
#concept:not(.is-detail-mode) .value-chooser__btn:hover .value-chooser__bg,
#concept:not(.is-detail-mode) .value-chooser__btn:focus-visible .value-chooser__bg {
  opacity: 1;
}
.value-chooser__btn.value-outline__link::after {
  right: clamp(16px, 2vw, 22px);
  bottom: clamp(16px, 2vw, 22px);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}
.value-outline__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.value-outline__date {
  display: block;
  margin-bottom: 0.35em;
  font-size: clamp(0.72rem, 0.95vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(26, 40, 39, 0.62);
}
.value-chooser > .value-chooser__btn:nth-child(1)::before {
  background: linear-gradient(180deg, #ffb86c 0%, #ff8fab 100%);
}
.value-chooser > .value-chooser__btn:nth-child(2)::before {
  background: linear-gradient(180deg, #7c9cff 0%, #a78bfa 100%);
}
.value-chooser > .value-chooser__btn:nth-child(3)::before {
  background: linear-gradient(180deg, #ff8fab 0%, #c4b5fd 100%);
}
.value-chooser > .value-chooser__btn:nth-child(1):hover,
.value-chooser > .value-chooser__btn:nth-child(1):focus-visible,
.value-chooser > .value-chooser__btn:nth-child(1).is-active {
  border-color: rgba(255, 143, 120, 0.42);
  background: linear-gradient(
    165deg,
    rgba(255, 248, 240, 0.6) 0%,
    rgba(255, 236, 224, 0.6) 100%
  );
}
#concept:not(.is-detail-mode) .value-chooser > .value-chooser__btn:nth-child(1):hover,
#concept:not(.is-detail-mode) .value-chooser > .value-chooser__btn:nth-child(1):focus-visible,
#concept:not(.is-detail-mode) .value-chooser > .value-chooser__btn:nth-child(1).is-active {
  background: #fff;
}
.value-chooser > .value-chooser__btn:nth-child(2):hover,
.value-chooser > .value-chooser__btn:nth-child(2):focus-visible,
.value-chooser > .value-chooser__btn:nth-child(2).is-active {
  border-color: rgba(124, 156, 255, 0.42);
  background: linear-gradient(
    165deg,
    rgba(244, 247, 255, 0.6) 0%,
    rgba(232, 238, 255, 0.6) 100%
  );
}
#concept:not(.is-detail-mode) .value-chooser > .value-chooser__btn:nth-child(2):hover,
#concept:not(.is-detail-mode) .value-chooser > .value-chooser__btn:nth-child(2):focus-visible,
#concept:not(.is-detail-mode) .value-chooser > .value-chooser__btn:nth-child(2).is-active {
  background: #fff;
}
.value-chooser > .value-chooser__btn:nth-child(3):hover,
.value-chooser > .value-chooser__btn:nth-child(3):focus-visible,
.value-chooser > .value-chooser__btn:nth-child(3).is-active {
  border-color: rgba(255, 143, 171, 0.42);
  background: linear-gradient(
    165deg,
    rgba(255, 245, 250, 0.6) 0%,
    rgba(255, 232, 242, 0.6) 100%
  );
}
#concept:not(.is-detail-mode) .value-chooser > .value-chooser__btn:nth-child(3):hover,
#concept:not(.is-detail-mode) .value-chooser > .value-chooser__btn:nth-child(3):focus-visible,
#concept:not(.is-detail-mode) .value-chooser > .value-chooser__btn:nth-child(3).is-active {
  background: #fff;
}

/* Campaign chooser: cycle accent gradients for N cards */
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+1)::before {
  background: linear-gradient(180deg, #ffb86c 0%, #ff8fab 100%);
}
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+2)::before {
  background: linear-gradient(180deg, #7c9cff 0%, #a78bfa 100%);
}
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+3)::before {
  background: linear-gradient(180deg, #ff8fab 0%, #c4b5fd 100%);
}
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+1):hover,
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+1):focus-visible,
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+1).is-active {
  border-color: rgba(255, 143, 120, 0.42);
  background: linear-gradient(
    165deg,
    rgba(255, 248, 240, 0.6) 0%,
    rgba(255, 236, 224, 0.6) 100%
  );
}
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+2):hover,
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+2):focus-visible,
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+2).is-active {
  border-color: rgba(124, 156, 255, 0.42);
  background: linear-gradient(
    165deg,
    rgba(244, 247, 255, 0.6) 0%,
    rgba(232, 238, 255, 0.6) 100%
  );
}
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+3):hover,
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+3):focus-visible,
#campaign .value-chooser > .value-chooser__btn, #news .value-chooser > .value-chooser__btn:nth-child(3n+3).is-active {
  border-color: rgba(255, 143, 171, 0.42);
  background: linear-gradient(
    165deg,
    rgba(255, 245, 250, 0.6) 0%,
    rgba(255, 232, 242, 0.6) 100%
  );
}

/* Detail mode: hide chooser, expand panel with diagonal bg */
#concept.value-section,
#campaign.campaign-section, #news.news-section {
  /* Do not set position here — section id beats WSC fixed stack and scrolls off-screen. */
  overflow: hidden;
  transition:
    background-color 0.48s var(--ease),
    background-image 0.48s var(--ease);
}
.cube-main:not(.wsc-section-scroll) #concept.value-section:not(.is-detail-mode),
.cube-main:not(.wsc-section-scroll) #campaign.campaign-section:not(.is-detail-mode),
.cube-main:not(.wsc-section-scroll) #news.news-section:not(.is-detail-mode) {
  overflow: visible;
}
/* WSC one-screen stack: keep detail sections fixed like other .cube-screen sections. */
.cube-main.wsc-section-scroll #concept.value-section.section-anchor.cube-screen,
.cube-main.wsc-section-scroll #campaign.campaign-section.section-anchor.cube-screen,
.cube-main.wsc-section-scroll #news.news-section.section-anchor.cube-screen,
.cube-main.wsc-section-scroll #howto.howto-section.section-anchor.cube-screen {
  position: fixed;
  inset: 0;
  width: 100%;
}
#concept .value-detail-bg,
#campaign .value-detail-bg, #news .value-detail-bg,
#howto .value-detail-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.48s var(--ease),
    visibility 0.48s var(--ease);
  background-image: var(--value-detail-image, none);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--value-detail-position, 75% 42%);
  clip-path: polygon(74% 0, 100% 0, 100% 100%, 60% 100%);
  transform: rotate(0deg);
}
#concept.is-detail-mode .value-detail-bg,
#campaign.is-detail-mode .value-detail-bg, #news.is-detail-mode .value-detail-bg,
#howto.is-detail-mode .value-detail-bg {
  opacity: 1;
  visibility: visible;
}
#concept.is-detail-mode.section-has-bg-slice::after,
#campaign.is-detail-mode.section-has-bg-slice::after, #news.is-detail-mode.section-has-bg-slice::after,
#howto.is-detail-mode.section-has-bg-slice::after {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.48s var(--ease),
    visibility 0.48s var(--ease);
}
#concept.is-detail-mode > .container,
#campaign.is-detail-mode > .container, #news.is-detail-mode > .container,
#howto.is-detail-mode > .container {
  position: relative;
  z-index: 1;
}
#concept.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner,
#concept.is-detail-mode.section-anchor.cube-screen > .container,
#campaign.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner, #news.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner,
#campaign.is-detail-mode.section-anchor.cube-screen > .container, #news.is-detail-mode.section-anchor.cube-screen > .container,
#howto.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner,
#howto.is-detail-mode.section-anchor.cube-screen > .container {
  justify-content: flex-start;
}
#concept.is-detail-mode > .container > .value-chooser-wrap,
#campaign.is-detail-mode > .container, #news.is-detail-mode > .container > .value-chooser-wrap,
#howto.is-detail-mode > .container > .howto-content-wrap {
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
}
#concept.is-detail-mode[data-value-index="0"] {
  background-color: #fff8f2;
  background-image: var(--section-seam-bg), linear-gradient(155deg, #ffe9d6 0%, #fff5f0 45%, #fff0f5 100%);
}
#concept.is-detail-mode[data-value-index="1"] {
  background-color: #f2f6ff;
  background-image: var(--section-seam-bg), linear-gradient(155deg, #e4ebff 0%, #f4f7ff 45%, #f0ecff 100%);
}
#concept.is-detail-mode[data-value-index="2"] {
  background-color: #fff5fa;
  background-image: var(--section-seam-bg), linear-gradient(155deg, #ffe8f2 0%, #fff5fa 45%, #f3efff 100%);
}
#concept.is-detail-mode .value-chooser,
#campaign.is-detail-mode .value-chooser, #news.is-detail-mode .value-chooser,
#howto.is-detail-mode .howto-summary {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 0.34s var(--ease),
    visibility 0.34s var(--ease),
    transform 0.34s var(--ease);
}
#concept.is-detail-mode .concept-block,
#concept.is-detail-mode .section-head--concept,
#campaign.is-detail-mode .section-head, #news.is-detail-mode .section-head,
#howto.is-detail-mode .section-head {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s var(--ease),
    visibility 0.32s var(--ease),
    max-height 0.32s var(--ease);
}
#news .section-head,
#howto .section-head,
#campaign .section-head {
  transition:
    opacity 0.32s var(--ease),
    visibility 0.32s var(--ease),
    max-height 0.32s var(--ease);
}

.value-panel {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease),
    transform 0.4s var(--ease);
}
#concept.is-detail-mode .value-panel,
#campaign.is-detail-mode .value-panel, #news.is-detail-mode .value-panel,
#howto.is-detail-mode .howto-detail-panel.value-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  align-items: stretch;
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.value-detail-chrome {
  flex-shrink: 0;
  width: 100%;
  max-width: min(58%, 520px);
  margin: 0 0 clamp(12px, 1.6vh, 18px);
  padding: clamp(4px, 0.8vh, 8px) 0;
}
.value-detail-chrome__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  flex-shrink: 0;
  margin: 0;
  padding: 0.35em 0.2em 0.35em 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.24s var(--ease), opacity 0.24s var(--ease);
}
.value-detail-chrome__icon {
  font-size: 1.05em;
  line-height: 1;
}
.value-detail-chrome__back:hover,
.value-detail-chrome__back:focus-visible {
  color: #0a706c;
  outline: none;
}
.value-detail-chrome__back:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.value-panel__back {
  display: none;
}
.value-panel__pane {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  animation: value-panel-in 0.42s var(--ease) both;
}
.value-panel__pane .value-card.value-layout {
  max-width: min(920px, 100%);
}
#concept.is-detail-mode .value-panel__pane,
#campaign.is-detail-mode .value-panel__pane,
#news.is-detail-mode .value-panel__pane,
#howto.is-detail-mode .value-panel__pane {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}
#concept.is-detail-mode .value-panel__pane[hidden],
#campaign.is-detail-mode .value-panel__pane[hidden],
#news.is-detail-mode .value-panel__pane[hidden],
#howto.is-detail-mode .value-panel__pane[hidden] {
  display: none !important;
}
#concept.is-detail-mode .value-panel__pane .value-card.value-layout,
#campaign.is-detail-mode .value-panel__pane .value-card.value-layout,
#news.is-detail-mode .value-panel__pane .value-card.value-layout,
#howto.is-detail-mode .value-panel__pane .value-card.value-layout {
  flex-shrink: 0;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
#concept.is-detail-mode .value-panel__pane .value-media,
#campaign.is-detail-mode .value-panel__pane .value-media,
#news.is-detail-mode .value-panel__pane .value-media,
#howto.is-detail-mode .value-panel__pane .value-media {
  display: none;
}
#concept.is-detail-mode .value-panel__pane .value-copy h3,
#campaign.is-detail-mode .value-panel__pane .value-copy h3,
#news.is-detail-mode .value-panel__pane .value-copy h3,
#howto.is-detail-mode .value-panel__pane .value-copy h3 {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.32;
  letter-spacing: 0.015em;
  font-weight: 700;
  margin: 0 0 clamp(18px, 2.8vh, 28px);
  color: var(--text-main, #1f1f1f);
  max-width: min(20em, 100%);
}
#concept.is-detail-mode .value-panel__pane .value-copy p,
#concept.is-detail-mode .value-panel__pane .value-copy .value-reason,
#concept.is-detail-mode .value-panel__pane .value-copy .value-body,
#campaign.is-detail-mode .value-panel__pane .value-copy p,
#campaign.is-detail-mode .value-panel__pane .value-copy .value-reason,
#campaign.is-detail-mode .value-panel__pane .value-copy .value-body,
#news.is-detail-mode .value-panel__pane .value-copy p,
#news.is-detail-mode .value-panel__pane .value-copy .value-reason,
#news.is-detail-mode .value-panel__pane .value-copy .value-body,
#howto.is-detail-mode .value-panel__pane .value-copy p,
#howto.is-detail-mode .value-panel__pane .value-copy .value-reason,
#howto.is-detail-mode .value-panel__pane .value-copy .value-body {
  color: #3a3a3a;
}
#concept.is-detail-mode .value-panel__pane .value-copy .value-body--page > :first-child,
#campaign.is-detail-mode .value-panel__pane .value-copy .value-body--page > :first-child,
#news.is-detail-mode .value-panel__pane .value-copy .value-body--page > :first-child,
#howto.is-detail-mode .value-panel__pane .value-copy .value-body--page > :first-child {
  margin-top: 0;
}
#concept.is-detail-mode .value-panel__pane .value-copy .value-body--page > :last-child,
#campaign.is-detail-mode .value-panel__pane .value-copy .value-body--page > :last-child,
#news.is-detail-mode .value-panel__pane .value-copy .value-body--page > :last-child,
#howto.is-detail-mode .value-panel__pane .value-copy .value-body--page > :last-child {
  margin-bottom: 0;
}

/* Value / campaign / howto detail: immersive edge-to-edge viewport */
body.is-value-detail-mode #siteHeader.site-header,
body.is-campaign-detail-mode #siteHeader.site-header,
body.is-news-detail-mode #siteHeader.site-header,
body.is-howto-detail-mode #siteHeader.site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-110%);
  transition:
    opacity 0.32s var(--ease),
    visibility 0.32s var(--ease),
    transform 0.32s var(--ease);
}
body.is-value-detail-mode .floating-cta,
body.is-news-detail-mode .floating-cta,
body.is-howto-detail-mode .floating-cta,
body.is-value-detail-mode .floating-campaign,
body.is-news-detail-mode .floating-campaign,
body.is-howto-detail-mode .floating-campaign,
body.is-value-detail-mode .home-news-rail,
body.is-news-detail-mode .home-news-rail,
body.is-howto-detail-mode .home-news-rail,
body.is-campaign-detail-mode .home-news-rail {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.is-value-detail-mode .global-progress,
body.is-campaign-detail-mode .global-progress,
body.is-news-detail-mode .global-progress,
body.is-howto-detail-mode .global-progress {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s var(--ease),
    visibility 0.32s var(--ease);
}
body.is-value-detail-mode .cube-main.wsc-section-scroll #concept.is-detail-mode.section-anchor.cube-screen,
body.is-campaign-detail-mode .cube-main.wsc-section-scroll #campaign.is-detail-mode.section-anchor.cube-screen,
body.is-news-detail-mode .cube-main.wsc-section-scroll #news.is-detail-mode.section-anchor.cube-screen,
body.is-howto-detail-mode .cube-main.wsc-section-scroll #howto.is-detail-mode.section-anchor.cube-screen {
  top: var(--admin-bar-offset);
  bottom: 0;
  height: auto;
}
body.is-howto-detail-mode .cube-main:not(.wsc-section-scroll) #howto.is-detail-mode.section-anchor.cube-screen {
  position: fixed;
  top: var(--admin-bar-offset);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: auto;
  min-height: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#concept.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner,
#concept.is-detail-mode.section-anchor.cube-screen > .container,
#campaign.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner, #news.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner,
#campaign.is-detail-mode.section-anchor.cube-screen > .container, #news.is-detail-mode.section-anchor.cube-screen > .container,
#howto.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner,
#howto.is-detail-mode.section-anchor.cube-screen > .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  max-height: none;
  height: 100%;
  min-height: 0;
  padding: 0;
  gap: 0;
  transform: none;
  justify-content: stretch;
}
@media (min-width: 821px) {
  #concept.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner,
  #concept.is-detail-mode.section-anchor.cube-screen > .container,
  #campaign.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner, #news.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner,
  #campaign.is-detail-mode.section-anchor.cube-screen > .container, #news.is-detail-mode.section-anchor.cube-screen > .container,
  #howto.is-detail-mode.section-anchor.cube-screen > .container.cube-screen-inner,
  #howto.is-detail-mode.section-anchor.cube-screen > .container {
    padding-inline-end: 0;
  }
}
#concept.is-detail-mode > .container > .value-chooser-wrap,
#campaign.is-detail-mode > .container, #news.is-detail-mode > .container > .value-chooser-wrap,
#howto.is-detail-mode > .container > .howto-content-wrap {
  gap: 0;
  height: 100%;
}
#concept.is-detail-mode .value-panel,
#campaign.is-detail-mode .value-panel, #news.is-detail-mode .value-panel,
#howto.is-detail-mode .howto-detail-panel.value-panel {
  height: 100%;
}
#concept.is-detail-mode .value-detail-bg,
#campaign.is-detail-mode .value-detail-bg, #news.is-detail-mode .value-detail-bg,
#howto.is-detail-mode .value-detail-bg {
  clip-path: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  inset: 0;
}
#concept.is-detail-mode,
#campaign.is-detail-mode,
#news.is-detail-mode,
#howto.is-detail-mode {
  --value-detail-safe-top: max(env(safe-area-inset-top, 0px), 12px);
  --value-detail-back-row: 46px;
  --value-detail-title-gap: clamp(16px, 2.4vh, 24px);
  --value-detail-content-inset-x: max(env(safe-area-inset-left, 0px), clamp(16px, 4vw, 28px));
  --value-detail-header-offset: calc(
    var(--admin-bar-offset, 0px) + var(--value-detail-safe-top) +
    var(--value-detail-back-row) + var(--value-detail-title-gap)
  );
}
#concept.is-detail-mode .value-detail-chrome,
#campaign.is-detail-mode .value-detail-chrome,
#news.is-detail-mode .value-detail-chrome,
#howto.is-detail-mode .value-detail-chrome {
  position: fixed;
  top: calc(var(--admin-bar-offset, 0px) + var(--value-detail-safe-top));
  left: max(env(safe-area-inset-left, 0px), clamp(12px, 3vw, 20px));
  z-index: 1001;
  width: auto;
  max-width: calc(100% - 2 * max(env(safe-area-inset-left, 0px), 12px));
  margin: 0;
  padding: 0;
}
#concept.is-detail-mode .value-detail-chrome__back,
#campaign.is-detail-mode .value-detail-chrome__back,
#news.is-detail-mode .value-detail-chrome__back,
#howto.is-detail-mode .value-detail-chrome__back {
  padding: 0.55em 1em 0.55em 0.75em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 2px 12px rgba(31, 31, 31, 0.08);
}
#concept.is-detail-mode .value-panel__pane,
#campaign.is-detail-mode .value-panel__pane,
#news.is-detail-mode .value-panel__pane,
#howto.is-detail-mode .value-panel__pane {
  height: 100%;
  scroll-padding-top: var(--value-detail-header-offset);
}
#howto.is-detail-mode .howto-detail-panel.value-panel {
  height: calc(100dvh - var(--admin-bar-offset, 0px));
  max-height: calc(100dvh - var(--admin-bar-offset, 0px));
  min-height: 0;
  overflow: hidden;
}
#howto.is-detail-mode .value-panel__pane {
  height: calc(100dvh - var(--admin-bar-offset, 0px));
  max-height: calc(100dvh - var(--admin-bar-offset, 0px));
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  scrollbar-gutter: stable;
}
#howto.is-detail-mode .value-panel__pane .value-card.value-layout {
  min-height: auto;
  width: min(100%, 960px);
  margin-inline: auto;
}
#howto.is-detail-mode .value-panel__pane .value-copy,
#howto.is-detail-mode .value-panel__pane .value-body--page {
  max-width: min(760px, 100%);
  margin-inline: auto;
}
#concept.is-detail-mode .value-panel__pane .value-card.value-layout,
#campaign.is-detail-mode .value-panel__pane .value-card.value-layout,
#news.is-detail-mode .value-panel__pane .value-card.value-layout,
#howto.is-detail-mode .value-panel__pane .value-card.value-layout {
  box-sizing: border-box;
  padding:
    var(--value-detail-header-offset)
    max(env(safe-area-inset-right, 0px), clamp(16px, 4vw, 28px))
    max(env(safe-area-inset-bottom, 0px), clamp(20px, 4vh, 40px))
    var(--value-detail-content-inset-x);
}

#concept.is-detail-mode .value-panel__pane .value-card.value-layout {
  width: min(920px, calc(100% - clamp(28px, 7vw, 96px)));
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: clamp(24px, 4vh, 44px);
  padding:
    var(--value-detail-header-offset)
    clamp(22px, 4vw, 46px)
    clamp(26px, 4vw, 48px);
  border: 1px solid rgba(15, 145, 141, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 54px rgba(31, 31, 31, 0.12);
}

#concept.is-detail-mode .value-panel__pane .value-copy {
  max-width: 760px;
  margin-inline: auto;
}

#concept.is-detail-mode .value-panel__pane .value-body--page {
  font-size: clamp(0.92rem, 1.15vw, 1rem);
  line-height: 1.9;
}

#concept.is-detail-mode .value-panel__pane .value-body--page h2,
#concept.is-detail-mode .value-panel__pane .value-body--page h3,
#concept.is-detail-mode .value-panel__pane .value-body--page h4 {
  margin: 1.7em 0 0.7em;
  line-height: 1.45;
  color: var(--text-main);
}

#concept.is-detail-mode .value-panel__pane .value-body--page ul,
#concept.is-detail-mode .value-panel__pane .value-body--page ol {
  margin: 1em 0;
  padding-left: 1.4em;
}

#concept.is-detail-mode .value-panel__pane .value-body--page li + li {
  margin-top: 0.35em;
}

#concept.is-detail-mode .value-panel__pane .value-body--page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

#concept.is-detail-mode .value-panel__pane .value-body--page img,
#concept.is-detail-mode .value-panel__pane .value-body--page figure {
  max-width: 100%;
  height: auto;
}

/* Hide global section chrome while immersive detail is open */
body.is-value-detail-mode .floating-section-nav,
body.is-value-detail-mode .floating-section-step,
body.is-value-detail-mode .section-scroll-affordance,
body.is-campaign-detail-mode .floating-section-nav,
body.is-news-detail-mode .floating-section-nav,
body.is-campaign-detail-mode .floating-section-step,
body.is-news-detail-mode .floating-section-step,
body.is-campaign-detail-mode .section-scroll-affordance,
body.is-news-detail-mode .section-scroll-affordance,
body.is-howto-detail-mode .floating-section-nav,
body.is-howto-detail-mode .floating-section-step,
body.is-howto-detail-mode .section-scroll-affordance,
.section-scroll-affordance.is-suppressed-by-value-detail,
.section-scroll-affordance.is-suppressed-by-campaign-detail, .section-scroll-affordance.is-suppressed-by-news-detail,
.section-scroll-affordance.is-suppressed-by-howto-detail {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.32s var(--ease),
    visibility 0.32s var(--ease);
}

@keyframes value-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 6px;
}

.check-mini {
  margin: 10px 0 0;
  padding: 0 0 0 1.1em;
  font-size: 0.76rem;
  color: var(--text-sub);
  line-height: 1.45;
}
.check-mini li {
  margin: 4px 0 0;
}

.plan-bullets {
  margin: clamp(12px, 1.6vw, 16px) 0 0;
  padding: 0;
  list-style: none;
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  color: var(--text-sub);
  line-height: 1.55;
}
.plan-bullets li {
  position: relative;
  margin: 0;
  padding: 5px 0 5px 0.95em;
}
.plan-bullets li + li {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.plan-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(15, 145, 141, 0.55);
}

.plan-note {
  margin: clamp(14px, 2vw, 20px) 0 0;
  font-size: clamp(0.68rem, 0.95vw, 0.74rem);
  color: var(--text-sub);
  opacity: 0.85;
  line-height: 1.55;
  text-align: right;
}

.plan-finder-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 28px);
  position: relative;
  left: 50%;
  width: 100dvw;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(15, 145, 141, 0.18);
  border-right: none;
  border-left: none;
  border-radius: 0;
  translate: -50% 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 247, 0.92)),
    linear-gradient(90deg, rgba(255, 218, 94, 0.16), rgba(15, 145, 141, 0.08));
  box-shadow: 0 16px 42px rgba(31, 31, 31, 0.08);
  overflow: hidden;
}
.plan-finder-banner.has-bg {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(90deg, rgba(13, 15, 16, 0.68), rgba(13, 15, 16, 0.24)),
    var(--plan-finder-banner-bg);
  background-position: center;
  background-size: cover;
  color: #fff;
}
.plan-finder-banner.has-bg .plan-finder-banner__kicker,
.plan-finder-banner.has-bg .plan-finder-banner__copy strong,
.plan-finder-banner.has-bg .plan-finder-banner__copy span:last-child {
  color: #fff;
}
.plan-finder-banner.has-bg .plan-finder-banner__copy span:last-child {
  opacity: 0.88;
}
.plan-finder-banner__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  min-width: 0;
}
.plan-finder-banner__kicker {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan-finder-banner__copy strong {
  color: var(--text-main);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.28;
}
.plan-finder-banner__copy span:last-child {
  color: var(--text-sub);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.6;
}
.plan-finder-banner__btn {
  display: inline-flex;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border: 1px solid rgba(15, 145, 141, 0.36);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 145, 141, 0.2);
  transition:
    background 0.24s var(--ease),
    box-shadow 0.24s var(--ease),
    transform 0.24s var(--ease);
}
.plan-finder-banner__btn:hover,
.plan-finder-banner__btn:focus-visible {
  background: #0b7f7b;
  box-shadow: 0 16px 34px rgba(15, 145, 141, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.plan-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 32px);
}

.plan-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  width: min(100%, 520px);
  padding: clamp(12px, 1.8vw, 15px) clamp(22px, 3.2vw, 32px);
  border: 1px solid rgba(15, 145, 141, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  font-size: clamp(0.76rem, 1.05vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.plan-cta__btn::after {
  content: "";
  flex-shrink: 0;
  width: 0.42em;
  height: 0.42em;
  margin-top: -0.06em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.72;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}
.plan-cta__btn:hover,
.plan-cta__btn:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(15, 145, 141, 0.48);
  color: #0b7f7b;
  box-shadow: 0 4px 16px rgba(15, 145, 141, 0.1);
}
.plan-cta__btn:hover::after,
.plan-cta__btn:focus-visible::after {
  transform: rotate(-45deg) translate(2px, 0);
  opacity: 1;
}
.plan-cta__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.plan-cta__btn--finder {
  border-color: rgba(15, 145, 141, 0.48);
  background: linear-gradient(135deg, #12a09c 0%, var(--accent) 64%, #0b7f7b 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 145, 141, 0.2);
  cursor: pointer;
}
.plan-cta__btn--finder:hover,
.plan-cta__btn--finder:focus-visible {
  background: linear-gradient(135deg, #16aaa6 0%, #0f918d 64%, #08736f 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(15, 145, 141, 0.28);
}

.section-archive-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(20px, 3vw, 32px);
}

#campaign .section-archive-cta,
#news .section-archive-cta {
  position: relative;
  z-index: 2;
}


/* ── Plan blocks ── */
.plan-block {
  position: relative;
}
.plan-block:first-of-type {
  margin-top: clamp(8px, 1.4vw, 14px);
}

.plan-subhead {
  margin: 0 0 clamp(10px, 1.6vw, 16px);
}
.plan-block--monthly .plan-subhead {
  text-align: center;
}
.plan-subhead__kicker {
  display: block;
  margin: 0;
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-sub);
}

/* ── Drop-in — boutique price list ── */
.plan-block--dropin,
.plan-block--monthly {
  margin-inline-start: auto;
  margin-inline-end: var(--section-scroll-affordance-safe-inline);
}
.plan-block--dropin {
  max-width: min(100%, 520px);
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.dropin-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropin-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(11px, 1.6vw, 15px) 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.dropin-row.has-thumb {
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
}
.dropin-row__thumb {
  flex-shrink: 0;
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  border-radius: 8px;
  object-fit: cover;
  background: rgba(15, 23, 42, 0.04);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}
.dropin-row:first-child {
  padding-top: 0;
}
.dropin-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dropin-row__main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.dropin-row__name {
  font-size: clamp(0.84rem, 1.25vw, 0.94rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-main);
  line-height: 1.4;
}
.dropin-row__note {
  font-size: clamp(0.68rem, 0.95vw, 0.74rem);
  line-height: 1.5;
  color: var(--text-sub);
  opacity: 0.88;
}
.dropin-row__price {
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}
.dropin-row__amount {
  font-size: clamp(0.92rem, 1.35vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}
.dropin-row__unit {
  display: block;
  margin-top: 2px;
  font-size: clamp(0.62rem, 0.85vw, 0.68rem);
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0.02em;
}

/* ── Monthly — pricing table (料金表) ── */
.plan-block--monthly {
  max-width: min(100%, 980px);
  margin-top: clamp(30px, 4.8vw, 48px);
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.plan-table-wrap {
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.plan-table {
  width: 100%;
  min-width: min(100%, 720px);
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: clamp(0.76rem, 1vw, 0.84rem);
  line-height: 1.55;
  color: var(--text-main);
}

.plan-table__corner {
  width: clamp(92px, 12vw, 124px);
  padding: 0;
  border: none;
  background: #f7f8f8;
}

.plan-table__row-label {
  padding: clamp(14px, 1.8vw, 18px) clamp(14px, 1.8vw, 18px);
  font-size: clamp(0.64rem, 0.9vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.68);
  text-align: left;
  vertical-align: top;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #f7f8f8;
}

.plan-table__plan {
  padding: clamp(16px, 2vw, 22px) clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  text-align: center;
  vertical-align: bottom;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 1px solid rgba(15, 23, 42, 0.05);
  background: #ffffff;
}

.plan-table__plan.is-highlight {
  background: #ffffff;
  box-shadow: inset 0 2px 0 var(--accent);
}

.plan-table__badge {
  display: block;
  margin: 0 0 6px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.plan-table__image-wrap {
  display: block;
  margin: 0 auto 8px;
  max-width: clamp(52px, 8vw, 72px);
}
.plan-table__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(15, 23, 42, 0.04);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.plan-table__name {
  display: block;
  font-size: clamp(0.84rem, 1.15vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: var(--text-main);
}

.plan-table__cell {
  padding: clamp(14px, 1.8vw, 20px) clamp(15px, 1.8vw, 20px);
  text-align: center;
  vertical-align: top;
  border-left: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.plan-table__cell.is-highlight {
  background: #ffffff;
}

.plan-table__row:last-child .plan-table__row-label,
.plan-table__row:last-child .plan-table__cell {
  border-bottom: none;
}

.plan-table__cell--price {
  vertical-align: middle;
  background: #fbfcfc;
}

.plan-table__amount {
  display: block;
  font-size: clamp(1.28rem, 2.35vw, 1.7rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  color: var(--text-main);
}

.plan-table__unit {
  display: block;
  margin-top: 4px;
  font-size: clamp(0.62rem, 0.85vw, 0.68rem);
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0.02em;
}

.plan-table__cell--desc {
  font-size: clamp(0.74rem, 1vw, 0.8rem);
  color: var(--text-sub);
  line-height: 1.65;
}

.plan-table__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: clamp(0.7rem, 0.95vw, 0.76rem);
  color: var(--text-sub);
  line-height: 1.5;
}

.plan-table__bullets li {
  position: relative;
  margin: 0;
  padding: 4px 0 4px 1em;
}

.plan-table__bullets li + li {
  margin-top: 2px;
}

.plan-table__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(15, 145, 141, 0.55);
}

.plan-table__empty {
  color: rgba(15, 23, 42, 0.22);
}

#plan .plan-table-wrap {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

#plan .monthly-table {
  margin: 0;
}

#plan .plan-table__plan.is-highlight .plan-table__name {
  color: var(--text-main);
}

.price-card--has-image {
  padding: 0;
  overflow: hidden;
}

.price-card-image {
  aspect-ratio: 16 / 9;
  background: #dedad2 center / cover no-repeat;
}

.price-card-body {
  padding: clamp(16px, 2.4vw, 22px);
}

.price-card .price-unit {
  margin-left: 0.12em;
  font-size: 0.52em;
  font-weight: 600;
  color: var(--text-sub);
  letter-spacing: 0;
}

.visit-bullets {
  margin: 12px 0 0;
  padding: 0 0 0 1.1em;
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.5;
}
.visit-bullets li {
  margin: 4px 0 0;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: clamp(12px, 2vw, 22px);
  align-items: center;
  max-width: 960px;
  margin-inline: auto;
}

.space-grid--fit {
  gap: 8px;
  flex: 1;
  min-height: 0;
}
.space-grid--fit .space-image {
  aspect-ratio: 3 / 1;
}
.space-grid--fit .space-copy {
  padding: 8px 10px;
}
.space-grid--fit .space-copy h3 {
  font-size: 0.78rem;
}
.space-grid--fit .space-copy p {
  font-size: 0.68rem;
  margin-top: 4px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.floor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(168px, 240px);
  gap: clamp(8px, 1.2vw, 18px);
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.floor-layout--map-only {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}
.floor-layout--with-services {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
}
.floor-layout--seats-only {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}
.floor-layout--seats-only .floor-seats {
  width: min(100%, 280px);
}
.floor-layout__main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.floor-map {
  margin: 0;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
  max-width: min(820px, 100%);
  width: 100%;
}
.floor-map__frame {
  position: relative;
  width: 100%;
}
.floor-map__pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 50;
}
.floor-map__pin {
  position: absolute;
  left: var(--pin-x, 50%);
  top: var(--pin-y, 50%);
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
  pointer-events: auto;
  max-width: min(120px, 28vw);
}
.floor-map__pin-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, #7b6fd4 0%, #5b4ea8 100%);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(31, 31, 31, 0.28);
  flex-shrink: 0;
}
.floor-map__pin.has-image .floor-map__pin-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 4vw, 44px);
  height: clamp(34px, 4vw, 44px);
  border-radius: 12px;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(31, 31, 31, 0.22);
  overflow: hidden;
}
.floor-map__pin-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floor-map__pin-label {
  display: block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(91, 78, 168, 0.22);
  box-shadow: 0 4px 12px rgba(31, 31, 31, 0.1);
  font-size: 0.62rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.floor-map__pin-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  min-width: min(190px, 52vw);
  max-width: min(240px, 70vw);
  padding: 10px 12px;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(91, 78, 168, 0.18);
  box-shadow: 0 10px 28px rgba(31, 31, 31, 0.14);
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-sub);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 9999;
}
.floor-map__pin-tip-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 6px);
  object-fit: cover;
  background: linear-gradient(165deg, rgba(237, 232, 255, 0.55) 0%, rgba(240, 244, 255, 0.35) 100%);
}
.floor-map__pin-tip-title {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  color: var(--text-main);
}
.floor-map__pin-tip-text {
  display: block;
}
.floor-map__pin-tip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 6px;
  font-size: 0.68rem;
  color: rgba(91, 78, 168, 0.95);
  font-weight: 600;
}
.floor-map__pin:hover .floor-map__pin-tip,
.floor-map__pin:focus-visible .floor-map__pin-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.floor-map__pin:hover,
.floor-map__pin:focus-visible {
  z-index: 9999;
}
.floor-map__pin:focus-visible {
  outline: none;
}
.floor-map__pin:focus-visible .floor-map__pin-dot {
  box-shadow: 0 0 0 3px rgba(91, 78, 168, 0.35), 0 2px 8px rgba(31, 31, 31, 0.28);
}
.floor-map__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
}
.floor-map__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(48vh, 420px);
  object-fit: contain;
  background: linear-gradient(165deg, rgba(237, 232, 255, 0.55) 0%, rgba(240, 244, 255, 0.35) 100%);
}
.floor-map__zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 31, 31, 0.72);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.floor-map__caption {
  margin: 0;
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--text-sub);
  text-align: center;
}
.floor-services {
  align-self: center;
  width: 100%;
  min-width: 0;
}
.floor-services__heading {
  margin: 0 0 clamp(10px, 1.4vh, 14px);
  color: var(--text-main);
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-align: center;
}
.floor-services__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vh, 12px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.floor-services__item {
  display: grid;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  place-content: center;
  gap: 8px;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 12px;
  border: 1px solid rgba(15, 145, 141, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.06);
  text-align: center;
  overflow: hidden;
}
.floor-services__icon.material-symbols-rounded {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 44px !important;
  inline-size: 44px !important;
  block-size: 44px !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  border-radius: 999px;
  background: rgba(15, 145, 141, 0.1);
  color: var(--accent);
  font-family: "Material Symbols Rounded";
  font-size: 1.45rem;
  line-height: 44px !important;
  text-align: center;
  padding-top: 2px;
  box-sizing: border-box;
  vertical-align: middle;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}
.floor-services__copy {
  display: grid;
  gap: 2px;
  justify-items: center;
  min-width: 0;
  max-width: 100%;
}
.floor-services__title {
  color: var(--text-main);
  font-size: clamp(0.74rem, 0.82vw, 0.86rem);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.floor-services__text {
  color: var(--text-sub);
  font-size: clamp(0.62rem, 0.7vw, 0.7rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.floor-seats {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.floor-seats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vh, 12px);
}
.floor-seats__item {
  margin: 0;
}
.floor-seat-thumb {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 14px rgba(31, 31, 31, 0.06);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.floor-seat-thumb:hover,
.floor-seat-thumb:focus-visible {
  border-color: rgba(91, 78, 168, 0.45);
  box-shadow: 0 8px 20px rgba(91, 78, 168, 0.14);
  transform: translateY(-1px);
  outline: none;
}
.floor-seat-thumb__image,
.floor-seat-thumb__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 4px);
  object-fit: contain;
  background: linear-gradient(165deg, rgba(237, 232, 255, 0.55) 0%, rgba(240, 244, 255, 0.35) 100%);
}
.floor-seat-thumb__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--text-main);
}
.floor-map-lightbox,
.floor-seat-modal {
  width: min(96vw, 720px);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  color: var(--text-main);
}
.floor-map-lightbox[open],
.floor-seat-modal[open] {
  pointer-events: auto;
}
.floor-map-lightbox[open],
.floor-seat-modal[open],
.floor-map-lightbox[open] *,
.floor-seat-modal[open] * {
  pointer-events: auto;
}
.floor-map-lightbox::backdrop,
.floor-seat-modal::backdrop {
  background: rgba(13, 15, 16, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.28s var(--ease), backdrop-filter 0.28s var(--ease);
}
.floor-map-lightbox[open]::backdrop,
.floor-seat-modal[open]::backdrop {
  animation: floor-modal-backdrop-in 0.32s var(--ease);
}
@keyframes floor-modal-backdrop-in {
  from { background: rgba(13, 15, 16, 0); }
  to { background: rgba(13, 15, 16, 0.62); }
}
.floor-map-lightbox__panel,
.floor-seat-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: min(92vh, 860px);
  border: 1px solid rgba(15, 145, 141, 0.14);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  box-shadow:
    0 28px 72px rgba(31, 31, 31, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
  overflow: hidden;
  animation: floor-modal-panel-in 0.34s var(--ease);
}
@keyframes floor-modal-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.floor-map-lightbox {
  width: min(96vw, 1200px);
}
.floor-map-lightbox__panel {
  max-height: 92vh;
}
.floor-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(15, 145, 141, 0.18);
  border-radius: 999px;
  background: rgba(250, 248, 243, 0.94);
  color: var(--accent);
  box-shadow: 0 8px 22px rgba(31, 31, 31, 0.12);
  cursor: pointer;
  transition:
    transform 0.24s var(--ease),
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s var(--ease);
}
.floor-modal__close:hover {
  transform: translateY(-1px) scale(1.04);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px var(--accent-glow);
}
.floor-modal__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.floor-modal__close-icon {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-1px);
}
.floor-map-lightbox__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(15, 145, 141, 0.08), transparent 42%),
    linear-gradient(165deg, rgba(237, 232, 255, 0.28) 0%, rgba(240, 244, 255, 0.16) 100%);
}
.floor-map-lightbox__image,
.floor-seat-modal__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.floor-map-lightbox__image {
  max-height: calc(92vh - 36px);
}
.floor-seat-modal__media {
  padding: 18px 18px 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(15, 145, 141, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(15, 145, 141, 0.05) 0%, transparent 100%);
}
.floor-seat-modal__media[hidden] {
  display: none;
}
.floor-seat-modal__image {
  max-height: min(52vh, 420px);
  border-radius: calc(var(--radius) - 6px);
  box-shadow: 0 12px 32px rgba(31, 31, 31, 0.1);
}
.floor-seat-modal__body {
  padding: 20px 22px 24px;
}
.floor-seat-modal__label {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.floor-seat-modal__title {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 145, 141, 0.12);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.floor-seat-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 14px;
  padding: 0;
  list-style: none;
}
.floor-seat-modal__meta[hidden] {
  display: none;
}
.floor-seat-modal__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(15, 145, 141, 0.08);
  border: 1px solid rgba(15, 145, 141, 0.14);
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-main);
}
.floor-seat-modal__meta-item[hidden] {
  display: none;
}
.floor-seat-modal__meta-label {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.floor-seat-modal__meta-value {
  font-weight: 600;
}
.floor-seat-modal__desc[hidden] {
  display: none;
}
.floor-seat-modal__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-sub);
}
body.is-cube-modal-open {
  overscroll-behavior: contain;
}

/*
 * #floor — flex-fit map & seat thumbs inside one screen (no clip).
 * Overrides cube-screen overflow chain + fixed vh max-heights for this section only.
 */
#floor.section-anchor.cube-screen > .container > .floor-layout {
  overflow: visible;
}
#floor .floor-layout {
  overflow: visible;
  align-items: stretch;
}
#floor .floor-layout__main {
  min-height: 0;
  overflow: visible;
  align-self: stretch;
}
#floor .floor-map {
  overflow: visible;
  flex-shrink: 1;
  align-self: stretch;
  max-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
#floor .floor-map__frame {
  position: relative;
  z-index: 20;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
#floor .floor-map__trigger {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#floor .floor-map__image {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
#floor .floor-map__caption {
  flex-shrink: 0;
}
#floor .floor-map__pins {
  max-height: 100%;
}

.service-modal {
  width: min(96vw, 760px);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  color: var(--text-main);
}
.service-modal[open] {
  pointer-events: auto;
}
.service-modal[open],
.service-modal[open] * {
  pointer-events: auto;
}
.service-modal::backdrop {
  background: rgba(13, 15, 16, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.28s var(--ease), backdrop-filter 0.28s var(--ease);
}
.service-modal[open]::backdrop {
  animation: floor-modal-backdrop-in 0.32s var(--ease);
}
.service-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: min(92vh, 860px);
  border: 1px solid rgba(15, 145, 141, 0.14);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  box-shadow:
    0 28px 72px rgba(31, 31, 31, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
  overflow: hidden;
  animation: floor-modal-panel-in 0.34s var(--ease);
}
.service-modal__media {
  padding: 18px 18px 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(15, 145, 141, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(15, 145, 141, 0.05) 0%, transparent 100%);
}
.service-modal__media[hidden] {
  display: none;
}
.service-modal__gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 145, 141, 0.35) transparent;
}
.service-modal__gallery--single {
  overflow: visible;
}
.service-modal__gallery-item {
  flex: 0 0 min(100%, 520px);
  margin: 0;
  scroll-snap-align: start;
}
.service-modal__gallery--single .service-modal__gallery-item {
  flex-basis: 100%;
}
.service-modal__gallery-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 420px);
  object-fit: contain;
  border-radius: calc(var(--radius) - 6px);
  box-shadow: 0 12px 32px rgba(31, 31, 31, 0.1);
}
.service-modal__body {
  padding: 20px 22px 24px;
}
.service-modal__label {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.service-modal__title {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 145, 141, 0.12);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.service-modal__desc[hidden] {
  display: none;
}
.service-modal__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-sub);
}

/*
 * #plan — drop-in packs + monthly cards exceed one viewport; scroll inside, no clip.
 * Overrides cube-screen overflow chain + fit-scale for this section only.
 * .plan-scroll holds pricing content (sole scroll surface); .plan-cta is a fixed footer.
 * Native scrollbar is hidden — .section-scroll-affordance is the scroll UI.
 */
#plan.section-anchor.cube-screen > .container.cube-screen-inner,
#plan.section-anchor.cube-screen > .container {
  justify-content: flex-start;
  overflow: visible;
  transform: none;
  padding-bottom: 0;
  gap: clamp(4px, 0.6vh, 8px);
}
.cube-main:not(.wsc-section-scroll) #plan.section-anchor.cube-screen > .container.cube-screen-inner,
.cube-main:not(.wsc-section-scroll) #plan.section-anchor.cube-screen > .container {
  padding-bottom: 0;
}
#plan.section-anchor.cube-screen > .container .plan-scroll {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding-bottom: clamp(8px, 1.2vh, 12px);
  /* Native scrollbar hidden — .section-scroll-affordance is the sole scroll UI. */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#plan.section-anchor.cube-screen > .container .plan-scroll > .section-head {
  flex-shrink: 0;
}
#plan.section-anchor.cube-screen > .container .plan-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
#plan.section-anchor.cube-screen > .container > .plan-block,
#plan.section-anchor.cube-screen > .container > .plan-cta,
#plan.section-anchor.cube-screen > .container > .plan-note,
#plan.section-anchor.cube-screen > .container > .dropin-list,
#plan.section-anchor.cube-screen > .container > .plan-table-wrap,
#plan.section-anchor.cube-screen > .container .plan-scroll > .plan-block,
#plan.section-anchor.cube-screen > .container .plan-scroll > .plan-note,
#plan.section-anchor.cube-screen > .container .plan-scroll > .dropin-list,
#plan.section-anchor.cube-screen > .container .plan-scroll > .plan-table-wrap {
  flex-shrink: 0;
  overflow: visible;
}
#plan.section-anchor.cube-screen > .container > .dropin-list,
#plan.section-anchor.cube-screen > .container > .plan-table-wrap,
#plan.section-anchor.cube-screen > .container .plan-scroll > .dropin-list,
#plan.section-anchor.cube-screen > .container .plan-scroll > .plan-table-wrap {
  flex: 0 0 auto;
  min-height: auto;
}
#plan .plan-block {
  margin-top: clamp(8px, 1.2vw, 14px);
}
#plan .plan-block:first-of-type {
  margin-top: clamp(6px, 1vw, 10px);
}
#plan .plan-block--dropin {
  padding: 0;
}
#plan .plan-block--monthly {
  margin-top: clamp(24px, 3.5vw, 36px);
  padding-top: clamp(22px, 3.2vw, 32px);
}
#plan .plan-cta {
  position: static;
  flex: 0 0 auto;
  z-index: 1;
  margin-top: auto;
  padding-top: clamp(8px, 1.2vw, 12px);
  padding-bottom: clamp(6px, 1vh, 10px);
  border-top: none;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
#plan .plan-finder-banner {
  flex: 0 0 auto;
  margin-bottom: 0;
}
#plan .plan-subhead {
  margin-bottom: clamp(8px, 1.2vw, 12px);
}
.plan-finder {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
  width: min(100%, 1040px);
  margin-inline: auto;
}
.plan-finder-modal[hidden] {
  display: none;
}
.plan-finder-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) max(20px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
}
.plan-finder-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 145, 141, 0.28), transparent 34%),
    linear-gradient(315deg, rgba(255, 218, 94, 0.2), transparent 32%),
    rgba(8, 13, 15, 0.68);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}
.plan-finder-modal__panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(88dvh, 760px);
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.96)),
    linear-gradient(135deg, rgba(15, 145, 141, 0.08), rgba(255, 218, 94, 0.1));
  box-shadow:
    0 30px 90px rgba(8, 13, 15, 0.36),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  overflow: auto;
}
.plan-finder-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--accent), #ffda5e 58%, #20b7b1);
}
.plan-finder-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 145, 141, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.1);
  transition: background 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}
.plan-finder-modal__close:hover,
.plan-finder-modal__close:focus-visible {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 145, 141, 0.22);
  transform: translateY(-1px);
  outline: none;
}
.plan-finder-modal__head {
  max-width: 720px;
  margin: 0 auto clamp(20px, 2.8vw, 30px);
  text-align: center;
}
.plan-finder-modal__head .section-head__title-group {
  align-items: center;
}
.plan-finder-modal__head .lead {
  max-width: 620px;
  margin-inline: auto;
}
.plan-finder--game {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  width: 100%;
}
.plan-finder--game .plan-finder__choice {
  position: relative;
  border-radius: 12px;
}
.plan-finder--game .plan-finder__choice::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.36;
  transform: translateY(-50%) rotate(-45deg);
}
.plan-finder--game .plan-finder__choice.is-active {
  background:
    linear-gradient(90deg, rgba(15, 145, 141, 0.14), rgba(255, 255, 255, 0.95));
}
.plan-finder--game .plan-finder__choice-number {
  background: var(--accent);
  color: #fff;
}
.plan-finder--game .plan-finder__result {
  border-radius: 14px;
}
body.is-plan-finder-modal-open {
  overflow: hidden;
}
.plan-finder__questions {
  display: grid;
  gap: 16px;
  position: relative;
}
.plan-finder__questions[hidden],
.plan-finder__analyzing[hidden],
.plan-finder__result[hidden] {
  display: none;
}
.plan-finder__progress {
  display: flex;
  justify-content: center;
}
.plan-finder__progress span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(15, 145, 141, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(15, 145, 141, 0.1);
}
.plan-finder__question {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
  position: relative;
  padding: clamp(24px, 3.8vw, 40px);
  border: 1px solid rgba(15, 145, 141, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.96)),
    linear-gradient(135deg, rgba(15, 145, 141, 0.08), transparent 42%);
  box-shadow:
    0 18px 48px rgba(31, 31, 31, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}
.plan-finder__question::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 145, 141, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 145, 141, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
}
.plan-finder__question[hidden] {
  display: none;
}
.plan-finder__question-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  position: relative;
  z-index: 1;
  width: fit-content;
  min-width: 52px;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(15, 145, 141, 0.22);
}
.plan-finder__question-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-main);
  font-size: clamp(1.24rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  text-align: center;
}
.plan-finder__answers {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.plan-finder__answer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid rgba(15, 145, 141, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  font-size: clamp(0.84rem, 1.1vw, 0.94rem);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.06);
  transition:
    background 0.22s var(--ease),
    border-color 0.22s var(--ease),
    color 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    transform 0.22s var(--ease);
}
.plan-finder__answer:hover,
.plan-finder__answer:focus-visible,
.plan-finder__answer.is-active {
  border-color: rgba(15, 145, 141, 0.46);
  background: rgba(15, 145, 141, 0.08);
  color: #0b7f7b;
  box-shadow: 0 16px 32px rgba(15, 145, 141, 0.14);
  transform: translateY(-1px);
  outline: none;
}
.plan-finder__answer.is-active {
  border-color: var(--accent);
  background:
    linear-gradient(135deg, #12a09c 0%, var(--accent) 72%, #08736f 100%);
  color: #fff;
}
.plan-finder__back-btn,
.plan-finder__restart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid rgba(15, 145, 141, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.06);
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.plan-finder__back-btn[hidden] {
  display: none;
}
.plan-finder__back-btn:hover,
.plan-finder__back-btn:focus-visible,
.plan-finder__restart-btn:hover,
.plan-finder__restart-btn:focus-visible {
  border-color: rgba(15, 145, 141, 0.42);
  background: rgba(15, 145, 141, 0.1);
  transform: translateY(-1px);
  outline: none;
}
.plan-finder__result-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(15, 145, 141, 0.38);
  border-radius: 999px;
  background: var(--text-main);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(31, 31, 31, 0.16);
  transition:
    background 0.22s var(--ease),
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}
.plan-finder__result-btn:hover,
.plan-finder__result-btn:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(15, 145, 141, 0.22);
  outline: none;
}
.plan-finder__analyzing {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  min-height: clamp(280px, 48vh, 430px);
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(15, 145, 141, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 28%, rgba(15, 145, 141, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 249, 0.96));
  box-shadow:
    0 20px 54px rgba(31, 31, 31, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  text-align: center;
}
.plan-finder__analyzing-orbit {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 1px solid rgba(15, 145, 141, 0.2);
  background: rgba(255, 255, 255, 0.62);
}
.plan-finder__analyzing-orbit::before,
.plan-finder__analyzing-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}
.plan-finder__analyzing-orbit::before {
  inset: 10px;
  border: 3px solid rgba(15, 145, 141, 0.16);
  border-top-color: var(--accent);
  animation: plan-finder-spin 0.9s linear infinite;
}
.plan-finder__analyzing-orbit::after {
  inset: 34px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(15, 145, 141, 0.28);
}
.plan-finder__analyzing strong {
  color: var(--text-main);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
.plan-finder__analyzing span:not(.plan-finder__analyzing-orbit) {
  color: var(--text-sub);
  font-size: 0.9rem;
}
.plan-finder__analyzing i {
  display: block;
  width: min(360px, 100%);
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 145, 141, 0.12);
  overflow: hidden;
}
.plan-finder__analyzing i::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: plan-finder-scan 1.05s var(--ease) infinite;
}
@keyframes plan-finder-spin {
  to { transform: rotate(360deg); }
}
@keyframes plan-finder-scan {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(250%); }
}
.plan-finder__chart {
  display: grid;
  gap: 10px;
}
.plan-finder__choice {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 145, 141, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.06);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}
.plan-finder__choice:hover,
.plan-finder__choice:focus-visible,
.plan-finder__choice.is-active {
  border-color: rgba(15, 145, 141, 0.42);
  box-shadow: 0 14px 34px rgba(15, 145, 141, 0.13);
  transform: translateY(-1px);
  outline: none;
}
.plan-finder__choice-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(15, 145, 141, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.plan-finder__choice-copy {
  display: grid;
  gap: 3px;
}
.plan-finder__choice-copy strong {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.35;
}
.plan-finder__choice-copy span {
  color: var(--text-sub);
  font-size: 0.78rem;
  line-height: 1.45;
}
.plan-finder__result {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(15, 145, 141, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(15, 145, 141, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 249, 0.95));
  box-shadow:
    0 20px 54px rgba(31, 31, 31, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}
.plan-finder__result.is-complete {
  display: grid;
  gap: 14px;
}
.plan-finder__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  min-height: 100%;
  padding: clamp(30px, 4.5vw, 52px) clamp(22px, 4vw, 44px);
}
.plan-finder__panel[hidden] {
  display: none;
}
.plan-finder__result-media {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(15, 145, 141, 0.08);
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 38px rgba(31, 31, 31, 0.12);
}
.plan-finder__result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plan-finder__result-copy {
  display: grid;
  justify-items: start;
  gap: 12px;
  text-align: left;
}
.plan-finder__result-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 145, 141, 0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.plan-finder__panel h3 {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(1.62rem, 3.4vw, 2.35rem);
  line-height: 1.25;
}
.plan-finder__panel p {
  margin: 0;
  color: var(--text-sub);
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.8;
}
.plan-finder__result-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--text-main) !important;
}
.plan-finder__result-price strong {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
}
.plan-finder__result-price span {
  color: var(--text-sub);
  font-size: 0.9rem;
}
.plan-finder__result-bullets {
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.plan-finder__result-bullets li {
  position: relative;
  padding-left: 1.25em;
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.65;
}
.plan-finder__result-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.48em;
  height: 0.48em;
  border-radius: 999px;
  background: var(--accent);
}
#plan .plan-bullets {
  margin-top: clamp(10px, 1.4vw, 14px);
}
#plan .plan-bullets li {
  padding-top: 6px;
  padding-bottom: 6px;
}
#plan .plan-bullets li::before {
  top: 0.85em;
}
#plan .plan-note {
  margin-top: clamp(10px, 1.4vw, 14px);
  margin-inline-end: var(--section-scroll-affordance-safe-inline);
  padding-bottom: 2px;
}

.price-grid--fit {
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.price-grid--fit .card {
  padding: 10px 12px;
}
.price-grid--fit .price-card--has-image {
  padding: 0;
}
.price-grid--fit .price-card--has-image .price-card-body {
  padding: 10px 12px;
}
.price-grid--fit .price-card .price {
  margin-top: 8px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}
.price-grid--fit .price-sub {
  font-size: 0.72rem;
  margin-top: 4px;
}

.steps-grid--fit {
  gap: clamp(14px, 1.8vw, 22px);
  flex: 1;
  min-height: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.steps-grid--fit .card {
  padding: clamp(16px, 1.7vw, 22px);
}
.steps-grid--fit .step-number {
  width: auto;
  height: auto;
  font-size: 0.72rem;
  margin-bottom: 12px;
}
.steps-grid--fit h3 {
  font-size: clamp(0.94rem, 1.14vw, 1.04rem);
}
.steps-grid--fit p {
  font-size: clamp(0.76rem, 0.95vw, 0.84rem);
  margin-top: 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#howto .steps-grid {
  counter-reset: howto-step;
}

#howto .howto-step-card {
  position: relative;
  min-height: clamp(190px, 23vh, 252px);
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border-color: rgba(15, 23, 42, 0.11);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

#howto .howto-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
}

#howto .howto-step-card__media {
  margin: calc(-1 * clamp(16px, 1.7vw, 22px)) calc(-1 * clamp(16px, 1.7vw, 22px)) 14px;
  aspect-ratio: 16 / 9;
  background: rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

#howto .howto-step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#howto .howto-step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 2;
  width: 28px;
  height: 1px;
  border: 0;
  background: rgba(15, 145, 141, 0.32);
  transform: translateY(-50%);
}

#howto .howto-step-card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 3;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(15, 145, 141, 0.5);
  border-right: 1px solid rgba(15, 145, 141, 0.5);
  transform: translateY(-50%) rotate(45deg);
}

#howto .howto-step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 6px;
  padding: 4px 9px 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 145, 141, 0.2);
  background: #f7fbfa;
  color: rgba(31, 31, 31, 0.82);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

#howto .howto-step-card .step-number::before {
  content: "STEP";
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

#howto .howto-step-card h3 {
  margin: 0;
  line-height: 1.45;
  color: var(--text-main);
}

#howto .howto-step-card p {
  color: rgba(31, 31, 31, 0.68);
}

#howto .howto-content-wrap {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-height: auto;
}
#howto .howto-summary {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-height: auto;
}
#howto:not(.is-detail-mode) .steps-grid--fit {
  flex: 0 0 auto;
  min-height: auto;
}
#howto:not(.is-detail-mode) .howto-detail-panel.value-panel {
  display: none;
}
#howto.is-detail-mode .howto-content-wrap,
#howto.is-detail-mode .howto-summary {
  flex: 1 1 auto;
  min-height: 0;
}
.howto-detail-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(10px, 1.6vh, 16px);
  flex-shrink: 0;
}
.howto-detail-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  width: min(100%, 420px);
  padding: clamp(10px, 1.5vw, 13px) clamp(20px, 3vw, 28px);
  border: 1px solid rgba(15, 145, 141, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  font: inherit;
  font-size: clamp(0.74rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.howto-detail-cta__btn::after {
  content: "";
  flex-shrink: 0;
  width: 0.42em;
  height: 0.42em;
  margin-top: -0.06em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.72;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}
.howto-detail-cta__btn:hover,
.howto-detail-cta__btn:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(15, 145, 141, 0.42);
  color: #0a706c;
  outline: none;
}
.howto-detail-cta__btn:hover::after,
.howto-detail-cta__btn:focus-visible::after {
  transform: rotate(-45deg) translate(2px, 2px);
  opacity: 1;
}
.howto-detail-cta__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.howto-detail-cta__btn:disabled,
.howto-detail-cta__btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.46;
  border-color: rgba(15, 145, 141, 0.14);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}
.howto-detail-cta__btn:disabled::after,
.howto-detail-cta__btn[aria-disabled="true"]::after {
  opacity: 0.4;
}

.voice-grid--fit {
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.voice-grid--fit .voice-card {
  padding: 10px 12px;
}
.voice-grid--fit .rating {
  margin-bottom: 8px;
  font-size: 0.72rem;
}
.voice-grid--fit h3 {
  font-size: 0.82rem;
}
.voice-grid--fit p {
  font-size: 0.72rem;
  margin-top: 4px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.voice-grid--fit footer {
  margin-top: 8px;
  font-size: 0.72rem;
}

.voice-embed {
  width: 100%;
  min-height: 0;
}
.voice-embed--widget,
.voice-embed--shortcode {
  margin-top: 4px;
}
.voice-empty {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted, #666);
}
.voice-google-link {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.78rem;
}
.voice-google-link a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.voice-google-attribution {
  margin: 8px 0 0;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted, #888);
}

.news-grid--fit {
  gap: 8px;
  flex: 1;
  min-height: 0;
}
.news-grid--fit .card {
  padding: 10px 12px;
}
.page-card-grid--fit .page-card {
  padding: 0;
}
.news-grid--fit h3,
.page-card-grid--fit h3 {
  font-size: 0.82rem;
}
.news-grid--fit p,
.page-card-grid--fit p {
  font-size: 0.72rem;
  margin-top: 4px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#contact .cta-panel {
  margin-inline: auto;
  padding: clamp(14px, 2.5vw, 22px);
  max-width: min(680px, 92%);
  width: 100%;
  box-sizing: border-box;
}

/* Center contact CTA — override bg-slice wedge left/right alignment */
#contact.section-has-bg-slice {
  --slice-text-align: center;
  --slice-text-max: min(680px, 92%);
}

#contact.section-anchor.cube-screen > .container,
#contact.section-anchor.cube-screen > .container.cube-screen-inner,
.cube-main:not(.wsc-section-scroll) #contact.section-anchor.cube-screen > .container,
.cube-main:not(.wsc-section-scroll) #contact.section-anchor.cube-screen > .container.cube-screen-inner {
  align-items: center;
  justify-content: center;
}

.cube-main .section-has-bg-slice#contact .cta-panel {
  align-self: center;
  margin-inline: auto;
  max-width: var(--slice-text-max);
  width: min(100%, var(--slice-text-max));
}

.cube-main .section-has-bg-slice#contact .cta-panel > :first-child {
  text-align: center;
}

.cube-main .section-has-bg-slice#contact .cta-panel .section-head__title-group {
  margin-inline: 0;
}

#contact .cta-panel .section-head__title-group .section-kicker,
#contact .cta-panel .section-head__title-group .section-title {
  text-align: center;
}

#contact .cta-panel .lead {
  margin-inline: auto;
}

#contact .cta-panel .visit-bullets {
  width: fit-content;
  margin-inline: auto;
  text-align: start;
}

#contact .cta-panel .btn-group {
  justify-content: center;
}
.space-grid,
.price-grid,
.steps-grid,
.voice-grid,
.news-grid { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.page-card-grid { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.space-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.space-grid.space-grid--fit { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.voice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.page-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.campaign-grid--fit { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.page-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
a.page-card:hover,
a.page-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(36, 28, 58, 0.1);
}
.page-card__media {
  aspect-ratio: 16 / 9;
  background: #e8e4dc center / cover no-repeat;
}
.page-card__media--placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.35) 75%, transparent 75%, transparent),
    #e8e4dc;
  background-size: 18px 18px, auto;
}
.page-card__body {
  padding: 12px 14px;
  flex: 1;
}
.page-card__body h3 {
  font-size: 0.92rem;
  line-height: 1.35;
}
.page-card__body p {
  margin-top: 6px;
  color: rgba(36, 28, 58, 0.72);
}
.page-card-grid--fit .page-card__media {
  aspect-ratio: 16 / 10;
}
.page-card-grid--fit .page-card__body {
  padding: 8px 10px;
}

.value-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: clamp(8px, 1.2vh, 14px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.value-back::before {
  content: "←";
  font-size: 0.9em;
  line-height: 1;
  transition: transform 0.2s ease;
}
.value-back:hover {
  color: color-mix(in srgb, var(--accent) 78%, var(--text-main));
}
.value-back:hover::before {
  transform: translateX(-2px);
}
.value-back:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.value-single {
  display: block;
}
.value-card {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(16px, 2vw, 20px);
  overflow: hidden;
}
.concept-block {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 14px);
  max-width: 800px;
}

.value-card.value-layout {
  max-width: 1080px;
  margin-inline: auto;
  padding: 0;
}
.value-card-plain {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.value-card-plain:hover {
  transform: none;
  box-shadow: none;
}
.value-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(28dvh, 220px);
  border-radius: 10px;
  background: #ddd7cc center / cover no-repeat;
  margin-bottom: 0;
  flex-shrink: 0;
}
.value-media--placeholder {
  background-image: linear-gradient(
    135deg,
    rgba(221, 215, 204, 0.95) 0%,
    rgba(201, 194, 182, 0.82) 100%
  );
}
.value-copy {
  padding: 0;
}
.value-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(0.9rem, 1.22vw, 1.06rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  font-weight: 700;
}
.value-reason {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
}

.card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(14px, 1.9vw, 22px);
  box-shadow: 0 10px 30px rgba(31, 31, 31, 0.03);
}
.card h3 {
  margin: 0;
  font-size: clamp(0.9rem, 1.22vw, 1.06rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.card p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--text-sub);
}
.card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 31, 31, 0.08);
}

.space-card,
.home-news-card { padding: 0; overflow: hidden; }
button.space-card.space-card--clickable {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
button.space-card.space-card--clickable:hover,
button.space-card.space-card--clickable:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 31, 31, 0.08);
}
button.space-card.space-card--clickable:focus-visible {
  outline: 2px solid rgba(15, 145, 141, 0.45);
  outline-offset: 3px;
}
button.space-card.space-card--clickable .space-copy h3,
button.space-card.space-card--clickable .space-copy p {
  pointer-events: none;
}
.space-image {
  aspect-ratio: 4 / 3;
  background: #dedad2 center / cover no-repeat;
}
.space-copy { padding: 14px; }
.space-copy h3 { font-size: 0.92rem; }

.price-card .price {
  margin-top: 16px;
  font-size: clamp(1.32rem, 2.35vw, 1.95rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.price-card .price-sub {
  margin-top: 8px;
  font-size: 0.86rem;
  color: var(--text-sub);
}
.price-card.is-highlight {
  border-color: rgba(15, 145, 141, 0.42);
  box-shadow: 0 18px 44px rgba(15, 145, 141, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 253, 252, 0.94));
}
.price-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 14px;
  background: #ffffff;
}

.rating {
  color: #d4a947;
  letter-spacing: 0.12em;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.voice-card footer {
  margin-top: 14px;
  color: var(--text-sub);
  font-size: 0.8rem;
}

.news-date {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  color: var(--text-sub);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.access-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}
#access .access-guide__body {
  display: contents;
}
#access .access-flow {
  --access-media-aspect: 9 / 16;
  /* JS updateAccessFitScale sets --access-media-max-height from available flow height */
  --access-media-max-height: min(
    60vh,
    calc(100dvh - var(--header-h) - var(--footer-h, 0px) - 240px)
  );
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(2px, 0.28vw, 4px) var(--access-map-desc-gap);
  align-items: start;
  justify-content: stretch;
  justify-items: stretch;
  min-height: 0;
  flex: 1 1 auto;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 0 var(--access-content-inset);
  box-shadow: none;
  transform-origin: top center;
  transform: translateY(18px) scale(var(--access-fit-scale, 1));
  opacity: 0.88;
  transition: transform var(--fade-access-flow) var(--ease), opacity var(--fade-access-flow) var(--ease);
}
#access .access-map-col {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
#access .access-video-col {
  grid-column: 2;
  grid-row: 1;
}
#access .access-route-col {
  grid-column: 3;
  grid-row: 1;
}
#access .access-guide {
  display: contents;
}
#access .access-route__head {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 14px);
  margin: 0;
  padding: clamp(14px, 1.3vh, 18px) clamp(14px, 1.4vw, 18px) clamp(12px, 1.1vh, 16px);
  border-bottom: 1px solid rgba(15, 145, 141, 0.12);
  background: linear-gradient(
    108deg,
    rgba(15, 145, 141, 0.08) 0%,
    rgba(241, 253, 252, 0.45) 42%,
    rgba(255, 255, 255, 0.55) 100%
  );
  position: relative;
  flex-shrink: 0;
}
#access .access-route__head::after {
  content: "";
  position: absolute;
  left: clamp(14px, 1.4vw, 18px);
  right: clamp(14px, 1.4vw, 18px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(15, 145, 141, 0.32) 0%,
    rgba(15, 145, 141, 0.08) 45%,
    transparent 100%
  );
  pointer-events: none;
}
#access .access-route__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2rem, 2.3vw, 2.25rem);
  height: clamp(2rem, 2.3vw, 2.25rem);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--accent) 0%, #12a8a3 100%);
  box-shadow:
    0 5px 16px rgba(15, 145, 141, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}
#access .access-route__icon svg {
  display: block;
  width: clamp(0.92rem, 1.05vw, 1rem);
  height: clamp(0.92rem, 1.05vw, 1rem);
}
#access .access-route__head-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(3px, 0.4vh, 5px);
}
#access .access-route__title {
  margin: 0;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.38;
  color: var(--text-main);
  text-wrap: pretty;
}
#access.section-anchor.is-current .access-flow {
  transform: translateY(0) scale(var(--access-fit-scale, 1));
  opacity: 1;
  box-shadow: none;
}
.access-video-col {
  position: relative;
  top: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}
#access .access-video-col {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-self: stretch;
  overflow: visible;
  padding-bottom: var(--access-video-gap);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.access-route-col { display: grid; gap: 16px; align-content: start; }
#access .access-route-col {
  gap: 0;
  min-height: 0;
  max-height: var(--access-route-max-height, none);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: var(--access-panel-border);
  border-radius: var(--access-panel-radius);
  background: var(--access-panel-bg);
  backdrop-filter: blur(12px) saturate(118%);
  -webkit-backdrop-filter: blur(12px) saturate(118%);
  box-shadow: var(--access-panel-shadow);
  overscroll-behavior: auto;
}
.access-map-col {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vh, 12px);
  min-height: 0;
  min-width: 0;
}
#access .access-map-col {
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  margin-left: 0;
  margin-right: 0;
  gap: clamp(4px, 0.5vh, 6px);
}
#access .access-venue-summary h3 {
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
#access .access-venue-summary p {
  margin-top: 6px;
  line-height: 1.5;
  white-space: nowrap;
}
#access .access-venue-summary__address-link,
.route-address .access-venue-summary__address-link {
  color: inherit;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}
#access .access-venue-summary__address-link:hover,
#access .access-venue-summary__address-link:focus-visible,
.route-address .access-venue-summary__address-link:hover,
.route-address .access-venue-summary__address-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}
#access .access-map-col.is-map-focused .route-map,
#access-map.is-map-focused.route-map {
  box-shadow:
    0 0 0 3px rgba(15, 145, 141, 0.42),
    0 14px 36px rgba(31, 31, 31, 0.1);
  transition: box-shadow 0.35s ease;
}
#access .access-venue-summary p + p {
  margin-top: 4px;
}
#access .access-venue-summary__note {
  white-space: normal;
}
#access .access-venue-summary__note strong {
  font-weight: 700;
  color: var(--text-main);
}
#access .access-map-col .route-map {
  flex: 0 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  aspect-ratio: var(--access-media-aspect);
  max-height: var(--access-media-max-height);
  width: 100%;
  box-sizing: border-box;
}
#access .route-steps-scroll {
  flex: 1 1 auto;
  min-height: 0;
  gap: 0;
  padding: clamp(6px, 0.65vh, 10px) clamp(8px, 0.85vw, 12px) clamp(10px, 1vh, 14px);
  margin: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  overflow-y: auto;
  overscroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#access .route-steps-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
#access .route-steps-scroll li {
  position: relative;
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: clamp(8px, 0.75vw, 10px);
  align-items: start;
  flex: 0 0 auto;
  min-height: 0;
  margin-bottom: 0;
  padding: clamp(8px, 0.85vh, 11px) clamp(8px, 0.85vw, 10px);
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  isolation: isolate;
  border: 0;
  border-radius: 12px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 0.28s var(--ease),
    color 0.28s var(--ease);
}
#access .route-steps-scroll li + li {
  margin-top: clamp(2px, 0.25vh, 4px);
}
#access .route-step__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, rgba(15, 145, 141, 0.72) 0%, rgba(18, 168, 163, 0.72) 100%);
  flex-shrink: 0;
  transition: background 0.28s var(--ease), transform 0.28s var(--ease);
}
#access .route-steps-scroll li:not(.is-active) .route-step__n {
  opacity: 0.88;
}
#access .route-step__text {
  margin: 0;
  padding-top: 0.12rem;
  line-height: 1.42;
  letter-spacing: 0.01em;
  color: var(--text-sub);
  max-width: 36em;
  text-wrap: pretty;
  transition: color 0.28s var(--ease);
}
#access .route-steps-scroll li.is-active {
  background: linear-gradient(
    165deg,
    rgba(241, 253, 252, 0.92) 0%,
    rgba(255, 255, 255, 0.78) 100%
  );
}
#access .route-steps-scroll li.is-active::after {
  content: "";
  position: absolute;
  inset: 6px auto 6px 0;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--accent) 0%, #12a8a3 100%);
  opacity: 0.92;
}
#access .route-steps-scroll li.is-active .route-step__n {
  background: linear-gradient(135deg, var(--accent) 0%, #12a8a3 100%);
  transform: scale(1.02);
}
#access .route-steps-scroll li.is-active .route-step__text {
  color: var(--text-main);
  font-weight: 600;
}
.map-placeholder,
.media-placeholder {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #e8e3d9 center / cover no-repeat;
  min-height: 260px;
}
.map-placeholder {
  background-image:
    linear-gradient(120deg, rgba(15,145,141,0.11), rgba(255,255,255,0.5)),
    url("images/access-map.jpg");
}
.media-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 20px);
}
.media-placeholder.photo {
  background-image: url("images/access-photo.jpg");
}
.media-placeholder.video {
  background-image:
    linear-gradient(rgba(19, 19, 19, 0.2), rgba(19, 19, 19, 0.2)),
    url("images/access-video-thumb.jpg");
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.route-scroll {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}
.route-video-wrap {
  position: relative;
  aspect-ratio: var(--access-media-aspect, 9 / 16);
  height: var(--access-media-max-height, calc(100dvh - var(--header-h) - var(--footer-h, 0px) - 6px));
  width: auto;
  max-width: 100%;
  max-height: var(--access-media-max-height, calc(100dvh - var(--header-h) - var(--footer-h, 0px) - 6px));
  background: #d7d1c5;
  touch-action: none;
  overscroll-behavior: contain;
  box-sizing: border-box;
}
#access .route-video-wrap {
  width: 100%;
  min-height: min(56vh, var(--access-media-max-height));
  height: var(--access-media-max-height);
  max-height: var(--access-media-max-height);
  margin-inline: 0;
  margin-bottom: 0;
  justify-self: center;
  flex: 0 0 auto;
  border: var(--access-panel-border);
  border-radius: var(--access-panel-radius) var(--access-panel-radius) 0 0;
  background: linear-gradient(180deg, #ebe6dc 0%, #d7d1c5 48%, #cfc9bd 100%);
  box-shadow: var(--access-panel-shadow);
  overflow: hidden;
}
#access .access-video-col .route-progress {
  width: 100%;
  max-width: 100%;
  align-self: center;
  height: 5px;
  margin: 0 0 var(--access-video-gap);
  border: var(--access-panel-border);
  border-top: 0;
  border-radius: 0 0 var(--access-panel-radius) var(--access-panel-radius);
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  box-shadow: var(--access-panel-shadow);
}
#access .access-video-col .route-progress span {
  border-radius: 0 0 0 2px;
  background: linear-gradient(90deg, var(--accent) 0%, #12a8a3 100%);
}
#access .route-map {
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: var(--access-panel-border);
  border-radius: var(--access-panel-radius);
  background: var(--access-panel-bg);
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  box-shadow: var(--access-panel-shadow);
  overflow: hidden;
}
#access .access-map-col .route-map iframe,
#access .route-map iframe {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
}
.route-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.route-overlay {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  pointer-events: none;
}
.route-progress {
  height: 4px;
  background: rgba(31, 31, 31, 0.1);
}
.route-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.12s linear;
}
.route-steps {
  margin: 0;
  padding: 14px 18px 16px 34px;
  list-style: decimal;
}
.route-steps-scroll {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.route-steps li {
  color: var(--text-sub);
  font-size: 0.86rem;
  margin: 0;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.route-steps-scroll li {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  padding: 10px 12px;
}
.route-address {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  padding: 10px 12px;
}
#access .section-head .access-venue-summary.route-address {
  border: var(--access-panel-border);
  border-radius: 16px;
  background: var(--access-panel-bg);
  backdrop-filter: blur(12px) saturate(118%);
  -webkit-backdrop-filter: blur(12px) saturate(118%);
  box-shadow: var(--access-panel-shadow);
  padding: 12px 16px;
}
#access .section-head .access-venue-summary.route-address h3 {
  color: var(--text-main);
  font-weight: 700;
}
.route-address h3 {
  margin: 0;
  font-size: 0.92rem;
}
.route-address p {
  margin: 8px 0 0;
  font-size: 0.84rem;
  color: var(--text-sub);
}
.route-map {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  min-height: 140px;
  box-sizing: border-box;
}
.route-map iframe {
  width: 100%;
  height: clamp(140px, 18vh, 200px);
  border: 0;
  display: block;
}
#access .route-map iframe {
  border-radius: calc(var(--access-panel-radius) - 2px);
}
.cta-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(18px, 3.2vw, 34px);
  display: grid;
  gap: 24px;
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}
.btn-dark {
  background: var(--button-dark);
  color: var(--button-light);
}
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-main);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* Site banners — fixed strip below header */
.site-banners {
  position: fixed;
  top: calc(var(--admin-bar-offset) + var(--header-h));
  left: 0;
  right: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.site-banner {
  position: relative;
  pointer-events: auto;
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
  background: var(--accent-soft);
}
.site-banner--image {
  background: #1f1f1f;
}
.site-banner__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 12px clamp(16px, 3vw, 24px);
  color: inherit;
  text-decoration: none;
}
.site-banner--image .site-banner__link {
  min-height: 80px;
  color: #ffffff;
}
.site-banner__media {
  flex: 0 0 auto;
  width: clamp(84px, 14vw, 140px);
  height: 52px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 14px rgba(31, 31, 31, 0.12);
}
.site-banner--image .site-banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.88;
}
.site-banner--image .site-banner__copy {
  position: relative;
  z-index: 1;
}
.site-banner__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.site-banner__title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.site-banner__sub {
  font-size: 0.72rem;
  line-height: 1.4;
  opacity: 0.88;
}
.site-banner--text .site-banner__sub {
  color: var(--text-sub);
}

.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: rgba(250, 248, 243, 0.84);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  pointer-events: none;
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease),
    visibility 0.45s var(--ease);
}
body.is-floating-cta-visible .floating-cta {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-inner {
  width: min(var(--max-w), calc(100% - 24px));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 0;
}
.floating-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.floating-btn {
  background: var(--button-dark);
  color: var(--button-light);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 12px 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.floating-campaign {
  --fc-width: 220px;
  --fc-thumb: 220px;
  --fc-link-pad: 12px;
  --fc-link-pad-right: 36px;
  --fc-link-min-h: auto;
  --fc-title-size: 0.92rem;
  --fc-sub-size: 0.78rem;
  --fc-label-size: 0.68rem;
  --fc-thumb-radius: 12px;
  --fc-thumb-aspect: 3 / 4.4;
  position: fixed;
  left: max(16px, env(safe-area-inset-left, 0px));
  bottom: calc(var(--footer-h, 0px) + 18px + env(safe-area-inset-bottom, 0px));
  z-index: 1125;
  width: min(var(--fc-width), calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    visibility 0.4s var(--ease),
    bottom 0.35s var(--ease);
}
.floating-campaign--side-right {
  left: auto;
  right: max(16px, env(safe-area-inset-right, 0px));
}
body:not(.is-floating-campaign-visible) .floating-campaign--side-left {
  transform: translate(-24px, 12px);
}
body:not(.is-floating-campaign-visible) .floating-campaign--side-right {
  transform: translate(24px, 12px);
}
@media (min-width: 821px) {
  .floating-campaign--size-desktop-small {
    --fc-width: 180px;
    --fc-thumb: 180px;
    --fc-link-min-h: auto;
    --fc-title-size: 0.88rem;
    --fc-sub-size: 0.76rem;
  }
  .floating-campaign--size-desktop-medium {
    --fc-width: 220px;
    --fc-thumb: 220px;
    --fc-link-min-h: auto;
    --fc-title-size: 0.92rem;
    --fc-sub-size: 0.78rem;
  }
  .floating-campaign--size-desktop-large {
    --fc-width: 280px;
    --fc-link-pad: 14px;
    --fc-link-pad-right: 14px;
    --fc-link-min-h: auto;
    --fc-title-size: 0.98rem;
    --fc-sub-size: 0.82rem;
    --fc-label-size: 0.72rem;
    --fc-thumb-aspect: 3 / 4.4;
  }
  .floating-campaign--size-desktop-large .floating-campaign__link {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 var(--fc-link-pad);
  }
  .floating-campaign--size-desktop-large .floating-campaign__thumb {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: var(--fc-thumb-aspect);
    border-radius: 0;
  }
  .floating-campaign--size-desktop-large .floating-campaign__copy {
    padding: var(--fc-link-pad) var(--fc-link-pad-right) 0 var(--fc-link-pad);
    gap: 4px;
  }
  .floating-campaign--size-desktop-large:not(:has(.floating-campaign__thumb)) .floating-campaign__link {
    padding: var(--fc-link-pad) 36px var(--fc-link-pad) var(--fc-link-pad);
  }
  .floating-campaign--size-desktop-large:not(:has(.floating-campaign__thumb)) .floating-campaign__copy {
    padding: 0;
  }
  .floating-campaign--size-desktop-large .floating-campaign__sub {
    -webkit-line-clamp: 3;
  }
}
body.is-floating-campaign-visible .floating-campaign {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  pointer-events: auto;
}
body:not(.is-floating-cta-visible) .floating-campaign {
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
}
.floating-campaign__inner {
  position: relative;
  border: 1px solid rgba(15, 145, 141, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(31, 31, 31, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.floating-campaign__close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(31, 31, 31, 0.62);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.floating-campaign__close:hover,
.floating-campaign__close:focus-visible {
  color: var(--text-main);
  background: #fff;
}
.floating-campaign__link {
  display: block;
  padding: 0;
  min-height: var(--fc-link-min-h);
}
.floating-campaign__link:not(:has(.floating-campaign__copy)) {
  display: block;
  padding: 0;
  min-height: 0;
}
.floating-campaign__link:not(:has(.floating-campaign__copy)) .floating-campaign__thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--fc-thumb-aspect, 4 / 3);
  flex: none;
  border-radius: 0;
}
.floating-campaign__link:hover .floating-campaign__title {
  color: var(--accent, #0f918d);
}
.floating-campaign__thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--fc-thumb-aspect);
  border-radius: 0;
  background-size: cover;
  background-position: center;
  background-color: rgba(15, 145, 141, 0.08);
}
.floating-campaign__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}
.floating-campaign__label {
  font-size: var(--fc-label-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #0f918d);
}
.floating-campaign__title {
  font-size: var(--fc-title-size);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-main);
  transition: color 0.2s ease;
}
.floating-campaign__sub {
  font-size: var(--fc-sub-size);
  line-height: 1.45;
  color: rgba(31, 31, 31, 0.68);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#concept .section-head--concept {
  margin-top: clamp(-48px, -6.5vh, -32px);
  margin-bottom: clamp(6px, 1vh, 12px);
}
#concept .section-head--compact .lead {
  margin-top: 4px;
}
.cube-main:not(.wsc-section-scroll) #concept.value-section:not(.is-detail-mode).section-anchor.cube-screen > .container,
.cube-main:not(.wsc-section-scroll) #concept.value-section:not(.is-detail-mode).section-anchor.cube-screen > .container.cube-screen-inner {
  gap: clamp(8px, 1.2vh, 14px);
  padding-bottom: clamp(16px, 2.5vh, 32px);
}
.cube-main #concept.section-has-bg-slice:not(.is-detail-mode) .value-chooser-wrap {
  margin-top: clamp(2px, 0.5vh, 6px);
}
#concept:not(.is-detail-mode) .value-chooser {
  gap: clamp(10px, 1.4vw, 18px);
}
#concept:not(.is-detail-mode) .value-chooser__btn {
  min-height: clamp(168px, 20dvh, 240px);
  padding: clamp(14px, 1.6vw, 22px) clamp(18px, 2.4vw, 28px);
}

/* Clear home-news seam overlay / in-flow band from concept title (#home-news sits between #home and #concept) */
@media (min-width: 821px) {
  #home-news + #concept:not(.is-detail-mode).section-anchor > .container,
  #home-news + #concept:not(.is-detail-mode).section-anchor > .container.cube-screen-inner {
    padding-top: calc(var(--header-h) + clamp(16px, 3vh, 32px) + clamp(52px, 9vh, 104px));
  }
  .cube-main.wsc-section-scroll #home-news + #concept:not(.is-detail-mode) > .container,
  .cube-main.wsc-section-scroll #home-news + #concept:not(.is-detail-mode) > .container.cube-screen-inner {
    padding-top: calc(var(--header-h) + 6px + clamp(52px, 9vh, 104px));
  }
}
@media (max-width: 820px) {
  #home-news + #concept:not(.is-detail-mode) {
    padding-top: clamp(8px, 1.5vh, 14px);
  }
  #home-news + #concept:not(.is-detail-mode).section-anchor > .container,
  #home-news + #concept:not(.is-detail-mode).section-anchor > .container.cube-screen-inner {
    padding-top: calc(var(--header-h) + clamp(20px, 4vh, 36px));
  }
}
.cube-main.wsc-section-scroll #concept.value-section.section-anchor.cube-screen > .container.cube-screen-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(4px, 0.8vh, 10px);
  padding-top: calc(var(--header-h) + clamp(72px, 10vh, 104px));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.floating-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

body.js-enabled [data-section-animation="fade-up"] .js-fade {
  opacity: 0;
  transform: perspective(1200px) translate3d(0, 12px, -320px) scale(0.8) rotateX(10deg);
  transform-origin: 50% 80%;
  filter: blur(14px);
  transition: opacity var(--fade-reveal) var(--ease), transform var(--fade-reveal) var(--ease), filter var(--fade-reveal) var(--ease);
  will-change: transform, opacity, filter;
}
body.js-enabled [data-section-animation="fade-up"] .js-fade.is-show {
  opacity: 1;
  transform: perspective(1200px) translate3d(0, 0, 0) scale(1) rotateX(0);
  filter: blur(0);
}
/* 見出しを含む js-fade は親の scale / Z を使わない（子 h2 のサイズが変わらない） */
body.js-enabled [data-section-animation="fade-up"] .js-fade:has(.section-head),
body.js-enabled [data-section-animation="fade-up"] .concept-block.js-fade {
  transform: translate3d(0, 12px, 0);
  transform-origin: 50% 50%;
  filter: blur(6px);
}
body.js-enabled [data-section-animation="fade-up"] .js-fade:has(.section-head).is-show,
body.js-enabled [data-section-animation="fade-up"] .concept-block.js-fade.is-show {
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
body.js-enabled [data-section-animation="fade-up"] .plan-cta.js-fade {
  transform: translate3d(0, 8px, 0);
  transform-origin: 50% 50%;
  filter: blur(4px);
}
body.js-enabled [data-section-animation="fade-up"] .plan-cta.js-fade.is-show,
body.js-enabled [data-section-animation="fade-up"] #plan.is-current .plan-cta.js-fade {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
.hero-title,
.hero-sub,
.hero-kicker {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--fade-hero) var(--ease), transform var(--fade-hero) var(--ease);
}
#home[data-section-animation="none"] .hero-title,
#home[data-section-animation="none"] .hero-sub,
#home[data-section-animation="none"] .hero-kicker {
  transition: none;
}
#home[data-section-animation="fade-in"] .hero-title,
#home[data-section-animation="fade-in"] .hero-sub,
#home[data-section-animation="fade-in"] .hero-kicker {
  transform: none;
}
#home[data-section-animation="fade-left"] .hero-title,
#home[data-section-animation="fade-left"] .hero-sub,
#home[data-section-animation="fade-left"] .hero-kicker {
  transform: translateX(-24px);
}
#home[data-section-animation="fade-right"] .hero-title,
#home[data-section-animation="fade-right"] .hero-sub,
#home[data-section-animation="fade-right"] .hero-kicker {
  transform: translateX(24px);
}
#home[data-section-animation="scale-in"] .hero-title,
#home[data-section-animation="scale-in"] .hero-sub,
#home[data-section-animation="scale-in"] .hero-kicker {
  transform: scale(0.88);
}
#home[data-section-animation="slide-up"] .hero-title,
#home[data-section-animation="slide-up"] .hero-sub,
#home[data-section-animation="slide-up"] .hero-kicker {
  transform: translateY(10px);
}
body.is-loaded #home[data-section-animation="none"] .hero-kicker,
body.is-loaded #home[data-section-animation="none"] .hero-title,
body.is-loaded #home[data-section-animation="none"] .hero-sub {
  transition-delay: 0s;
}
body.is-loaded .hero-kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
body.is-loaded .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.09s;
}
body.is-loaded .hero-sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.21s;
}
body.is-loaded #home[data-section-animation="fade-in"] .hero-kicker,
body.is-loaded #home[data-section-animation="fade-in"] .hero-title,
body.is-loaded #home[data-section-animation="fade-in"] .hero-sub,
body.is-loaded #home[data-section-animation="fade-left"] .hero-kicker,
body.is-loaded #home[data-section-animation="fade-left"] .hero-title,
body.is-loaded #home[data-section-animation="fade-left"] .hero-sub,
body.is-loaded #home[data-section-animation="fade-right"] .hero-kicker,
body.is-loaded #home[data-section-animation="fade-right"] .hero-title,
body.is-loaded #home[data-section-animation="fade-right"] .hero-sub,
body.is-loaded #home[data-section-animation="scale-in"] .hero-kicker,
body.is-loaded #home[data-section-animation="scale-in"] .hero-title,
body.is-loaded #home[data-section-animation="scale-in"] .hero-sub,
body.is-loaded #home[data-section-animation="slide-up"] .hero-kicker,
body.is-loaded #home[data-section-animation="slide-up"] .hero-title,
body.is-loaded #home[data-section-animation="slide-up"] .hero-sub {
  transform: none;
}

/* Positionセクションは見出しと本文を段階的にフェード表示（見出しは Y + opacity のみ） */
[data-section-animation="fade-up"] .concept-fade h2,
[data-section-animation="fade-up"] .concept-fade .lead {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  filter: blur(8px);
  transition: opacity var(--fade-concept) var(--ease), transform var(--fade-concept) var(--ease), filter var(--fade-concept) var(--ease);
}
[data-section-animation="fade-up"] .concept-fade.is-show h2 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition-delay: 0.15s;
}
[data-section-animation="fade-up"] .concept-fade.is-show .lead {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition-delay: 0.32s;
}
/* セクション見出し: js-fade でも scale / Z 奥行きなし（子要素のサイズを変えない） */
body.js-enabled [data-section-animation="fade-up"] .section-head.js-fade {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  filter: blur(6px);
  transition: opacity var(--fade-reveal) var(--ease), transform var(--fade-reveal) var(--ease), filter var(--fade-reveal) var(--ease);
}
body.js-enabled [data-section-animation="fade-up"] .section-head.js-fade.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
body.js-enabled [data-section-animation="fade-up"] .value-chooser.js-fade {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transform-origin: 50% 50%;
  filter: blur(6px);
  transition: opacity var(--fade-reveal) var(--ease), transform var(--fade-reveal) var(--ease), filter var(--fade-reveal) var(--ease);
}
body.js-enabled [data-section-animation="fade-up"] .value-chooser.js-fade.is-show,
body.js-enabled [data-section-animation="fade-up"] #concept.is-current .value-chooser.js-fade,
body.js-enabled [data-section-animation="fade-up"] #campaign.is-current .value-chooser.js-fade, body.js-enabled [data-section-animation="fade-up"] #news.is-current .value-chooser.js-fade {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
/* Fallback: chooser must stay visible on the active step (not detail mode). */
#concept.is-current:not(.is-detail-mode) .value-chooser,
#concept.is-current:not(.is-detail-mode) .value-chooser.js-fade,
body[data-active-section="concept"] #concept:not(.is-detail-mode) .value-chooser,
body[data-active-section="concept"] #concept:not(.is-detail-mode) .value-chooser.js-fade,
#news.is-current:not(.is-detail-mode) .value-chooser,
#news.is-current:not(.is-detail-mode) .value-chooser.js-fade,
body[data-active-section="news"] #news:not(.is-detail-mode) .value-chooser,
body[data-active-section="news"] #news:not(.is-detail-mode) .value-chooser.js-fade {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  filter: none !important;
}
#concept.is-current:not(.is-detail-mode) .section-head--concept,
#concept.is-current:not(.is-detail-mode) .section-head--concept.js-fade,
body[data-active-section="concept"] #concept:not(.is-detail-mode) .section-head--concept,
body[data-active-section="concept"] #concept:not(.is-detail-mode) .section-head--concept.js-fade,
#news.is-current:not(.is-detail-mode) .section-head,
#news.is-current:not(.is-detail-mode) .section-head.js-fade,
body[data-active-section="news"] #news:not(.is-detail-mode) .section-head,
body[data-active-section="news"] #news:not(.is-detail-mode) .section-head.js-fade {
  opacity: 1 !important;
  visibility: visible !important;
  max-height: none !important;
  overflow: visible !important;
  pointer-events: auto !important;
  filter: none !important;
  transform: none !important;
}
/* Campaign: keep left/right slide-in until reveal completes. */
body.js-enabled #campaign[data-section-animation="fade-left"]:not(.is-detail-mode) .js-fade:not(.is-show),
body.js-enabled #campaign[data-section-animation="fade-right"]:not(.is-detail-mode) .js-fade:not(.is-show) {
  opacity: 0;
  filter: blur(4px);
}
body.js-enabled #campaign[data-section-animation="fade-left"]:not(.is-detail-mode) .js-fade:not(.is-show) {
  transform: translate3d(-28px, 0, 0);
}
body.js-enabled #campaign[data-section-animation="fade-right"]:not(.is-detail-mode) .js-fade:not(.is-show) {
  transform: translate3d(28px, 0, 0);
}
body.js-enabled #campaign[data-section-animation="fade-left"]:not(.is-detail-mode) .js-fade.is-show,
body.js-enabled #campaign[data-section-animation="fade-right"]:not(.is-detail-mode) .js-fade.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
body.js-enabled [data-section-animation="fade-up"] #concept.is-current .section-head--concept.js-fade,
body.js-enabled [data-section-animation="fade-up"] #campaign.is-current .section-head.js-fade, body.js-enabled [data-section-animation="fade-up"] #news.is-current .section-head.js-fade {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* --- Alternate section reveal animations --- */
body.js-enabled [data-section-animation="none"] .js-fade {
  opacity: 0;
  transform: none;
  filter: none;
  transition: none;
  will-change: auto;
}
body.js-enabled [data-section-animation="none"] .js-fade.is-show {
  opacity: 1;
  transform: none;
  filter: none;
}
body.js-enabled [data-section-animation="none"] .concept-fade h2,
body.js-enabled [data-section-animation="none"] .concept-fade .lead {
  opacity: 0;
  transform: none;
  filter: none;
  transition: none;
}
body.js-enabled [data-section-animation="none"] .concept-fade.is-show h2,
body.js-enabled [data-section-animation="none"] .concept-fade.is-show .lead {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 0s;
}

body.js-enabled [data-section-animation="fade-in"] .js-fade,
body.js-enabled [data-section-animation="fade-left"] .js-fade,
body.js-enabled [data-section-animation="fade-right"] .js-fade,
body.js-enabled [data-section-animation="scale-in"] .js-fade,
body.js-enabled [data-section-animation="slide-up"] .js-fade {
  opacity: 0;
  transform-origin: 50% 50%;
  transition: opacity var(--fade-reveal) var(--ease), transform var(--fade-reveal) var(--ease), filter var(--fade-reveal) var(--ease);
  will-change: transform, opacity;
}
body.js-enabled [data-section-animation="fade-in"] .js-fade {
  transform: none;
  filter: blur(8px);
}
body.js-enabled [data-section-animation="fade-left"] .js-fade {
  transform: translate3d(-28px, 0, 0);
  filter: blur(4px);
}
body.js-enabled [data-section-animation="fade-right"] .js-fade {
  transform: translate3d(28px, 0, 0);
  filter: blur(4px);
}
body.js-enabled [data-section-animation="scale-in"] .js-fade {
  transform: scale(0.88);
  filter: blur(6px);
}
body.js-enabled [data-section-animation="slide-up"] .js-fade {
  transform: translate3d(0, 10px, 0);
  filter: none;
}
body.js-enabled [data-section-animation="fade-in"] .js-fade.is-show,
body.js-enabled [data-section-animation="fade-left"] .js-fade.is-show,
body.js-enabled [data-section-animation="fade-right"] .js-fade.is-show,
body.js-enabled [data-section-animation="scale-in"] .js-fade.is-show,
body.js-enabled [data-section-animation="slide-up"] .js-fade.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
body.js-enabled [data-section-animation="fade-in"] .concept-fade h2,
body.js-enabled [data-section-animation="fade-in"] .concept-fade .lead,
body.js-enabled [data-section-animation="fade-left"] .concept-fade h2,
body.js-enabled [data-section-animation="fade-left"] .concept-fade .lead,
body.js-enabled [data-section-animation="fade-right"] .concept-fade h2,
body.js-enabled [data-section-animation="fade-right"] .concept-fade .lead,
body.js-enabled [data-section-animation="scale-in"] .concept-fade h2,
body.js-enabled [data-section-animation="scale-in"] .concept-fade .lead,
body.js-enabled [data-section-animation="slide-up"] .concept-fade h2,
body.js-enabled [data-section-animation="slide-up"] .concept-fade .lead {
  opacity: 0;
  transition: opacity var(--fade-concept) var(--ease), transform var(--fade-concept) var(--ease), filter var(--fade-concept) var(--ease);
}
body.js-enabled [data-section-animation="fade-in"] .concept-fade h2,
body.js-enabled [data-section-animation="fade-in"] .concept-fade .lead {
  transform: none;
  filter: blur(6px);
}
body.js-enabled [data-section-animation="fade-left"] .concept-fade h2,
body.js-enabled [data-section-animation="fade-left"] .concept-fade .lead {
  transform: translate3d(-20px, 0, 0);
  filter: blur(4px);
}
body.js-enabled [data-section-animation="fade-right"] .concept-fade h2,
body.js-enabled [data-section-animation="fade-right"] .concept-fade .lead {
  transform: translate3d(20px, 0, 0);
  filter: blur(4px);
}
body.js-enabled [data-section-animation="scale-in"] .concept-fade h2,
body.js-enabled [data-section-animation="scale-in"] .concept-fade .lead {
  transform: scale(0.92);
  filter: blur(6px);
}
body.js-enabled [data-section-animation="slide-up"] .concept-fade h2,
body.js-enabled [data-section-animation="slide-up"] .concept-fade .lead {
  transform: translate3d(0, 8px, 0);
  filter: none;
}
body.js-enabled [data-section-animation="fade-in"] .concept-fade.is-show h2,
body.js-enabled [data-section-animation="fade-left"] .concept-fade.is-show h2,
body.js-enabled [data-section-animation="fade-right"] .concept-fade.is-show h2,
body.js-enabled [data-section-animation="scale-in"] .concept-fade.is-show h2,
body.js-enabled [data-section-animation="slide-up"] .concept-fade.is-show h2,
body.js-enabled [data-section-animation="fade-in"] .concept-fade.is-show .lead,
body.js-enabled [data-section-animation="fade-left"] .concept-fade.is-show .lead,
body.js-enabled [data-section-animation="fade-right"] .concept-fade.is-show .lead,
body.js-enabled [data-section-animation="scale-in"] .concept-fade.is-show .lead,
body.js-enabled [data-section-animation="slide-up"] .concept-fade.is-show .lead {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
body.js-enabled [data-section-animation="fade-in"] .concept-fade.is-show h2,
body.js-enabled [data-section-animation="fade-left"] .concept-fade.is-show h2,
body.js-enabled [data-section-animation="fade-right"] .concept-fade.is-show h2,
body.js-enabled [data-section-animation="scale-in"] .concept-fade.is-show h2,
body.js-enabled [data-section-animation="slide-up"] .concept-fade.is-show h2 {
  transition-delay: 0.1s;
}
body.js-enabled [data-section-animation="fade-in"] .concept-fade.is-show .lead,
body.js-enabled [data-section-animation="fade-left"] .concept-fade.is-show .lead,
body.js-enabled [data-section-animation="fade-right"] .concept-fade.is-show .lead,
body.js-enabled [data-section-animation="scale-in"] .concept-fade.is-show .lead,
body.js-enabled [data-section-animation="slide-up"] .concept-fade.is-show .lead {
  transition-delay: 0.21s;
}

body.js-enabled .section-head.js-fade,
body.js-enabled .section-head.js-fade.is-show,
body.js-enabled .concept-fade,
body.js-enabled .concept-fade.is-show,
body.js-enabled .concept-fade h2,
body.js-enabled .concept-fade .lead,
body.js-enabled .concept-fade.is-show h2,
body.js-enabled .concept-fade.is-show .lead {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  transition-delay: 0s !important;
  will-change: auto !important;
}

body.js-enabled [data-head-animation="false"] .section-head.js-fade,
body.js-enabled [data-head-animation="false"] .section-head.js-fade.is-show,
body.js-enabled [data-head-animation="false"] .concept-fade,
body.js-enabled [data-head-animation="false"] .concept-fade.is-show,
body.js-enabled [data-head-animation="false"] .concept-fade h2,
body.js-enabled [data-head-animation="false"] .concept-fade .lead,
body.js-enabled [data-head-animation="false"] .concept-fade.is-show h2,
body.js-enabled [data-head-animation="false"] .concept-fade.is-show .lead,
body.js-enabled [data-content-animation="false"] .js-fade:not(.section-head):not(.concept-fade),
body.js-enabled [data-content-animation="false"] .js-fade:not(.section-head):not(.concept-fade).is-show {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  transition-delay: 0s !important;
  will-change: auto !important;
}

#home[data-head-animation="false"] .hero-title,
#home[data-head-animation="false"] .hero-sub,
#home[data-head-animation="false"] .hero-kicker,
body.is-loaded #home[data-head-animation="false"] .hero-title,
body.is-loaded #home[data-head-animation="false"] .hero-sub,
body.is-loaded #home[data-head-animation="false"] .hero-kicker {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  transition-delay: 0s !important;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --fade-section-enter: 0.01ms;
  }
  html,
  body {
    transition: none;
  }
  .cube-main.wsc-section-scroll .section-anchor.cube-screen {
    transition: none;
  }
  .cube-main.wsc-section-scroll .section-anchor.is-leaving-down,
  .cube-main.wsc-section-scroll .section-anchor.is-leaving-up,
  .cube-main.wsc-section-scroll .section-anchor.is-entering-down,
  .cube-main.wsc-section-scroll .section-anchor.is-entering-up {
    animation: none;
    will-change: auto;
  }
  .section-anchor .container {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .hero-title,
  .hero-sub,
  .hero-kicker {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-hint,
  .scroll-arrow {
    animation: none;
    transform: none;
  }
  .section-scroll-affordance:not(.is-at-bottom) .section-scroll-affordance__chev--down {
    animation: none;
  }
  #access .access-flow {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  #access .route-steps-scroll li.is-active {
    transform: none;
  }
  .js-fade,
  .js-fade:has(.section-head),
  .concept-block.js-fade,
  .section-head.js-fade,
  .concept-fade h2,
  .concept-fade .lead {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .value-outline__link,
  .value-outline__link::before,
  .value-outline__link::after {
    transition: none;
  }
  .value-outline__link:hover {
    transform: none;
  }
  .value-outline__link:hover::after {
    transform: none;
  }
  .floor-map-lightbox[open]::backdrop,
  .floor-seat-modal[open]::backdrop,
  .service-modal[open]::backdrop,
  .floor-map-lightbox__panel,
  .floor-seat-modal__panel,
  .service-modal__panel {
    animation: none;
  }
}

/* グリッド要素を順番に見せる */
.space-grid .space-card:nth-child(1) { transition-delay: 0.02s; }
.space-grid .space-card:nth-child(2) { transition-delay: 0.08s; }
.space-grid .space-card:nth-child(3) { transition-delay: 0.14s; }
.space-grid .space-card:nth-child(4) { transition-delay: 0.2s; }
.space-grid .space-card:nth-child(5) { transition-delay: 0.26s; }
.space-grid .space-card:nth-child(6) { transition-delay: 0.32s; }
.steps-grid .card:nth-child(1),
.voice-grid .card:nth-child(1),
.news-grid .card:nth-child(1),
.page-card-grid .page-card:nth-child(1) { transition-delay: 0.04s; }
.steps-grid .card:nth-child(2),
.voice-grid .card:nth-child(2),
.news-grid .card:nth-child(2),
.page-card-grid .page-card:nth-child(2) { transition-delay: 0.12s; }
.steps-grid .card:nth-child(3),
.voice-grid .card:nth-child(3),
.news-grid .card:nth-child(3),
.page-card-grid .page-card:nth-child(3) { transition-delay: 0.2s; }
.steps-grid .card:nth-child(4) { transition-delay: 0.28s; }

@media (max-width: 1080px) {
  .price-grid,
  .voice-grid,
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .campaign-grid--fit { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .space-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .space-grid.space-grid--fit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid.steps-grid--fit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #howto .howto-step-card:nth-child(2n)::after,
  #howto .howto-step-card:nth-child(2n)::before {
    display: none;
  }
  .access-wrap { grid-template-columns: 1fr; }
  .floor-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(12px, 1.5vh, 18px);
  }
  .plan-finder {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
  }
  .plan-finder-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .plan-finder-banner__btn {
    width: 100%;
  }
  .plan-finder__result {
    min-height: 180px;
  }
  .plan-finder__panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .plan-finder__result-media {
    width: min(100%, 320px);
  }
  .plan-finder__result-copy {
    justify-items: center;
    text-align: center;
  }
  .floor-layout--with-services {
    grid-template-columns: minmax(0, 1fr);
  }
  .floor-services__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .floor-services__item {
    min-height: 0;
  }
  .floor-layout__main {
    width: 100%;
  }
  .floor-map__image {
    max-height: min(40vh, 340px);
  }
  .floor-seats__list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .floor-seats__item {
    flex: 0 0 min(144px, 36vw);
    scroll-snap-align: start;
  }
  .floor-seat-thumb {
    min-height: 100%;
  }
  #floor .floor-layout,
  #floor .floor-layout__main,
  #floor .floor-seats {
    overflow: visible;
  }
  #floor .floor-map {
    height: auto;
    max-height: none;
  }
  #floor .floor-map__trigger {
    display: block;
  }
  #floor .floor-map__image {
    max-height: min(42vh, 380px);
    width: 100%;
    height: auto;
  }
  #floor .floor-seats {
    width: 100%;
  }
  #floor .floor-seats__list {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
  }
  #floor .floor-seats__item {
    flex: 0 0 min(144px, 36vw);
    min-height: auto;
    display: block;
  }
  #floor .floor-seat-thumb {
    height: auto;
    min-height: 100%;
  }
  #floor .floor-seat-thumb__image,
  #floor .floor-seat-thumb__placeholder {
    flex: none;
    aspect-ratio: 4 / 3;
    max-height: none;
    object-fit: contain;
  }
  #access .access-flow {
    --access-media-max-height: min(
      28vh,
      calc(100dvh - var(--header-h) - var(--footer-h, 0px) - 280px)
    );
    --access-map-desc-gap: clamp(2px, 0.4vh, 5px);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--access-map-desc-gap);
    align-items: center;
    justify-content: center;
    justify-items: center;
  }
  #access .access-map-col,
  #access .access-video-col,
  #access .access-route-col {
    grid-column: auto;
    grid-row: auto;
  }
  #access .access-guide {
    display: flex;
    flex-direction: column;
    gap: var(--access-map-desc-gap);
    width: min(100%, 520px);
    justify-self: center;
  }
  #access .access-guide__body {
    display: flex;
    flex-direction: column;
    gap: var(--access-map-desc-gap);
    width: 100%;
  }
  #access .access-route__head {
    padding: clamp(12px, 1.2vh, 16px) clamp(12px, 3vw, 16px);
  }
  #access .access-route__title {
    font-size: clamp(0.95rem, 3.8vw, 1.08rem);
  }
  #access .access-video-col {
    width: min(100%, 520px);
    justify-self: center;
  }
  #access .access-route-col {
    width: min(100%, 520px);
    max-width: min(100%, 520px);
    overflow: hidden;
    margin-left: 0;
    justify-self: center;
  }
  #access .access-map-col {
    width: min(100%, 520px);
    margin-left: 0;
    margin-right: 0;
    justify-self: start;
  }
  #access .section-head {
    padding-inline: var(--access-content-inset);
  }
  #access .section-head__row {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(8px, 1.2vh, 12px);
  }
  #access .section-head__main {
    max-width: 100%;
  }
  #access .section-head .access-venue-summary {
    width: min(100%, 520px);
    max-width: 100%;
    min-width: 0;
    margin-inline: 0;
    margin-top: clamp(2px, 0.35vh, 5px);
    margin-right: 0;
    flex: 0 1 auto;
  }
  #access .access-venue-summary h3,
  #access .access-venue-summary p {
    white-space: normal;
  }
  #access .route-video-wrap {
    max-height: var(--access-media-max-height);
    width: 100%;
    margin-inline: 0;
  }
  #access .access-map-col .route-map {
    max-height: var(--access-media-max-height);
    width: min(100%, 520px);
    margin-inline: 0;
  }
  #access .route-video-wrap {
    height: var(--access-media-max-height);
    width: 100%;
    max-height: var(--access-media-max-height);
  }
  #access .access-map-col .route-map {
    height: auto;
  }
  #access .route-map iframe {
    min-height: 0;
    height: 100%;
  }
  #access .route-steps-scroll {
    gap: 0;
    margin-left: 0;
    width: 100%;
    padding: clamp(4px, 0.5vh, 8px) clamp(6px, 2vw, 10px) clamp(8px, 1vh, 12px);
  }
  #access .route-steps-scroll li {
    padding: clamp(7px, 0.9vh, 10px) clamp(6px, 2vw, 8px);
    gap: clamp(7px, 2vw, 9px);
  }
  #access .route-steps-scroll li.is-active {
    transform: none;
  }
  #access .access-video-col .route-progress {
    width: min(100%, 480px);
  }
  #access .container,
  #access .container.cube-screen-inner {
    --access-content-inset: clamp(16px, 4vw, 32px);
    min-height: 0;
    justify-content: flex-start;
    width: min(1880px, 100%);
    margin-inline: auto;
    padding: 0 var(--floating-nav-safe-inline) 0 0;
    padding-top: clamp(calc(var(--header-h) + 2px), calc(var(--header-h) + 0.75vh), calc(var(--header-h) + 8px));
  }
  .mobile-menu { right: 18px; left: 18px; }
  .value-layout {
    grid-template-columns: 1fr;
  }
  #concept .feature-strip,
  .value-outline {
    grid-template-columns: 1fr;
  }
  #concept .feature-strip::before {
    display: none;
  }
  #concept .feature-strip li {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    padding: 12px 14px 12px 16px;
  }
  #concept .feature-strip li::before {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: start;
    padding-top: 3px;
    font-size: 0.72rem;
  }
  #concept .feature-strip strong {
    grid-column: 2;
    grid-row: 1;
    padding-bottom: 4px;
  }
  #concept .feature-strip span {
    grid-column: 2;
    grid-row: 2;
  }
  .value-outline::before {
    display: none;
  }
  .value-outline__link {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 12px 38px 12px 14px;
  }
  .value-outline__link::after {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .value-outline__link:hover::after {
    transform: translateY(-50%) translateX(3px);
  }
  .value-outline__t {
    padding-right: 0;
  }
  .value-chooser {
    grid-template-columns: 1fr;
    gap: clamp(14px, 3vw, 20px);
  }
  .value-chooser > .value-chooser__btn.value-outline__link {
    flex-direction: column;
    align-items: stretch;
    min-height: clamp(160px, 20dvh, 220px);
    padding: clamp(18px, 4vw, 24px) clamp(20px, 5vw, 28px);
  }
  .value-chooser > .value-chooser__btn .value-outline__t {
    font-size: clamp(1rem, 4.2vw, 1.22rem);
  }
  .value-chooser > .value-chooser__btn.value-outline__link::after {
    top: auto;
    bottom: clamp(16px, 4vw, 20px);
    transform: none;
  }
  .value-chooser > .value-chooser__btn.value-outline__link:hover::after {
    transform: translateX(3px);
  }
  .value-chooser > .value-chooser__btn {
    --value-bg-split-top: 72%;
    --value-bg-split-bottom: 48%;
  }
  #concept:not(.is-detail-mode) .value-chooser {
    gap: clamp(10px, 2.5vw, 16px);
  }
  #concept:not(.is-detail-mode) .value-chooser > .value-chooser__btn.value-outline__link {
    min-height: clamp(140px, 17dvh, 190px);
    padding: clamp(14px, 3.5vw, 20px) clamp(18px, 4.5vw, 24px);
  }
  .value-chooser > .value-chooser__btn .value-chooser__bg {
    inset: -6% -4%;
    transform: scale(1.04);
  }
  #concept .value-detail-bg,
  #campaign .value-detail-bg, #news .value-detail-bg {
    clip-path: polygon(0 72%, 100% 25%, 100% 100%, 0 100%);
    background-position: center 25%;
  }
  #concept.is-detail-mode .value-panel__pane .value-card.value-layout,
  #campaign.is-detail-mode .value-panel__pane .value-card.value-layout,
  #news.is-detail-mode .value-panel__pane .value-card.value-layout {
    padding-inline:
      max(env(safe-area-inset-left, 0px), clamp(14px, 4vw, 20px))
      max(env(safe-area-inset-right, 0px), clamp(14px, 4vw, 20px));
    padding-bottom: max(env(safe-area-inset-bottom, 0px), clamp(16px, 3vh, 28px));
  }
  #concept.is-detail-mode .value-detail-chrome,
  #campaign.is-detail-mode .value-detail-chrome,
  #news.is-detail-mode .value-detail-chrome {
    left: max(env(safe-area-inset-left, 0px), 12px);
  }
  #concept.is-detail-mode .value-detail-chrome__back,
  #campaign.is-detail-mode .value-detail-chrome__back,
  #news.is-detail-mode .value-detail-chrome__back {
    font-size: 0.76rem;
  }
  .cube-main #concept.section-has-bg-slice:not(.is-detail-mode) .value-chooser-wrap,
  .cube-main #campaign.section-has-bg-slice, .cube-main #news.section-has-bg-slice:not(.is-detail-mode) .value-chooser-wrap {
    max-width: 100%;
    width: 100%;
    align-self: stretch;
    margin-inline-start: var(--slice-text-gutter-inline);
    margin-inline-end: var(--slice-text-gutter-inline);
  }
  .cube-main #concept.section-has-bg-slice:not(.is-detail-mode) .value-chooser-wrap {
    width: min(100%, 480px);
    max-width: calc(100% - 32px);
    align-self: center;
    margin-inline: auto;
  }
  .cube-main .section-has-bg-slice {
    --slice-text-max: min(100%, 480px);
    --slice-text-gutter-inline: clamp(10px, 4vw, 32px);
  }
  .cube-main .section-has-bg-slice.section-bg-slice--top {
    --slice-text-gutter-block: clamp(16px, 8vh, 56px);
  }
  .cube-main .section-has-bg-slice.section-bg-slice--top > .container {
    justify-content: flex-end;
    padding-top: clamp(20px, 8vh, 56px);
    padding-bottom: clamp(12px, 3vh, 28px);
  }
  .cube-main #howto.section-has-bg-slice.section-bg-slice--top {
    --slice-text-gutter-block: clamp(8px, 3.5vh, 24px);
  }
  .cube-main #howto.section-has-bg-slice.section-bg-slice--top > .container {
    justify-content: flex-start;
    padding-top: clamp(20px, 5.5vh, 40px);
  }
  .cube-main .section-anchor.cube-screen.section-has-bg-slice {
    --section-bg-slice: polygon(84% 0, 100% 0, 100% 100%, 64% 100%);
  }
  .cube-main .section-anchor.cube-screen.section-has-bg-slice.section-bg-slice--left,
  .cube-main .section-anchor.cube-screen.section-has-bg-slice:nth-child(odd of .section-has-bg-slice) {
    --section-bg-slice: polygon(0 0, 16% 0, 34% 100%, 0 100%);
  }
  .cube-main .section-anchor.cube-screen.section-has-bg-slice.section-bg-slice--top {
    --section-bg-slice: polygon(0 0, 100% 0, 100% 20%, 0 34%);
  }
  #service.section-has-bg-slice {
    --section-bg-slice: polygon(82% 0, 100% 0, 100% 100%, 60% 100%);
  }
}
@media (max-width: 980px) {
  .site-nav { display: none; }
  .hamburger { display: inline-flex; }
  .header-inner {
    grid-template-columns: auto 1fr;
  }
  .header-actions {
    justify-self: end;
  }
}
@media (max-width: 820px) {
  .cube-main .section-has-bg-slice {
    --slice-text-align: stretch;
  }
  .header-inner {
    grid-template-columns: auto 1fr;
    justify-content: space-between;
  }
  .logo,
  .header-actions {
    justify-self: auto;
  }
  .header-actions {
    justify-self: end;
  }
  .floating-section-nav { display: none; }
  :root {
    --section-scroll-affordance-width: 38px;
    --section-scroll-affordance-safe-inline: calc(
      10px + var(--section-scroll-affordance-width) + 12px
    );
  }
  .section-scroll-affordance {
    --section-scroll-affordance-right: 10px;
    padding: 9px 7px;
    gap: 5px;
  }
  .section-scroll-affordance__label {
    font-size: 0.54rem;
  }
  #access .container,
  #access .container.cube-screen-inner {
    padding-right: 0;
  }
  .floating-section-step {
    right: 12px;
    bottom: 12px;
    flex-direction: row;
    justify-content: flex-end;
  }
  body.is-floating-cta-visible .floating-section-step {
    bottom: calc(var(--footer-h, 82px) + 12px + env(safe-area-inset-bottom, 0px));
    z-index: 1110;
  }
  .floating-section-step__btn {
    min-width: 0;
    padding: 10px 12px;
  }
  .floating-section-step__label {
    font-size: 0.72rem;
  }
  .floating-cta { padding-right: 0; }
  .header-cta { font-size: 0.78rem; padding: 8px 12px; }
  .container { width: min(var(--max-w), calc(100% - 32px)); }
  body.is-floating-cta-visible { padding-bottom: var(--footer-h, 96px); }
  .floating-campaign {
    inset: 0;
    width: 100vw;
    height: 100dvh;
    padding:
      max(22px, env(safe-area-inset-top, 0px))
      max(18px, env(safe-area-inset-right, 0px))
      max(22px, env(safe-area-inset-bottom, 0px))
      max(18px, env(safe-area-inset-left, 0px));
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 15, 16, 0.48);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-sizing: border-box;
  }
  body:not(.is-floating-campaign-visible) .floating-campaign,
  body:not(.is-floating-campaign-visible) .floating-campaign--side-left,
  body:not(.is-floating-campaign-visible) .floating-campaign--side-right {
    transform: translateY(16px);
  }
  .floating-campaign--side-right {
    right: auto;
  }
  .floating-campaign__inner {
    width: min(100%, 420px);
    max-height: calc(100dvh - 44px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    border-radius: 18px;
    overflow: hidden;
  }
  .floating-campaign__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }
  .floating-campaign__link,
  .floating-campaign--size-mobile-small .floating-campaign__link,
  .floating-campaign--size-mobile-medium .floating-campaign__link,
  .floating-campaign--size-mobile-large .floating-campaign__link {
    display: block;
    min-height: 0;
    max-height: inherit;
    overflow-y: auto;
    padding: 0;
  }
  .floating-campaign--size-mobile-small,
  .floating-campaign--size-mobile-medium,
  .floating-campaign--size-mobile-large {
    --fc-link-pad: 14px;
    --fc-link-pad-right: 14px;
    --fc-link-min-h: auto;
    --fc-title-size: 0.98rem;
    --fc-sub-size: 0.82rem;
    --fc-label-size: 0.72rem;
    --fc-thumb-aspect: 3 / 4.8;
  }
  .floating-campaign--size-mobile-small { --fc-title-size: 0.92rem; --fc-sub-size: 0.78rem; }
  .floating-campaign--size-mobile-large { --fc-title-size: 1.08rem; --fc-sub-size: 0.9rem; }
  .floating-campaign__thumb,
  .floating-campaign--size-mobile-small .floating-campaign__thumb,
  .floating-campaign--size-mobile-medium .floating-campaign__thumb,
  .floating-campaign--size-mobile-large .floating-campaign__thumb {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: var(--fc-thumb-aspect);
    border-radius: 0;
  }
  .floating-campaign__link:not(:has(.floating-campaign__thumb)),
  .floating-campaign--size-mobile-small:not(:has(.floating-campaign__thumb)) .floating-campaign__link,
  .floating-campaign--size-mobile-medium:not(:has(.floating-campaign__thumb)) .floating-campaign__link,
  .floating-campaign--size-mobile-large:not(:has(.floating-campaign__thumb)) .floating-campaign__link {
    min-height: 240px;
    background: rgba(15, 145, 141, 0.08);
  }
  /* In-flow band between hero and concept (not seam overlay) */
  .home-news-rail {
    height: auto;
    overflow: visible;
    pointer-events: auto;
    background: linear-gradient(
      180deg,
      rgba(255, 252, 250, 0.96) 0%,
      rgba(255, 246, 251, 0.98) 100%
    );
    border-top: 1px solid rgba(31, 31, 31, 0.08);
    border-bottom: 1px solid rgba(31, 31, 31, 0.1);
    box-shadow: 0 6px 20px rgba(13, 15, 16, 0.06);
    padding-block: 10px;
  }
  .home-news-rail__inner {
    position: static;
    transform: none;
    width: 100%;
    margin: 0;
    padding: 0 clamp(12px, 3vw, 20px);
  }
  .home-news-rail__row {
    gap: 0;
  }
  .home-news-rail__more {
    margin: 8px 0 0;
    text-align: right;
  }
  .home-news-rail__more a {
    color: var(--text-main, #1f1f1f);
    text-shadow: none;
  }
  .home-news-list {
    display: block;
    width: 100%;
  }
  .home-news-carousel {
    display: none;
  }
  .event-section .home-news-carousel {
    display: flex;
  }
  .event-section .home-news-carousel__nav {
    display: none;
  }
  .event-section .home-news-carousel__viewport {
    overflow-x: auto;
  }
  .event-section .home-news-card {
    flex-basis: min(82vw, 320px);
  }
  .home-news-rail .cube-news-list__item + .cube-news-list__item {
    border-top: 1px solid rgba(31, 31, 31, 0.1);
  }
  .home-news-rail .cube-news-list__link {
    display: block;
    padding: 8px 0;
    color: var(--text-main, #1f1f1f);
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .home-news-rail .cube-news-list__link:hover,
  .home-news-rail .cube-news-list__link:focus-visible {
    background: rgba(15, 145, 141, 0.06);
  }
  .home-news-rail .cube-news-list__body {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px 10px;
    min-width: 0;
  }
  .home-news-rail .cube-news-list__meta {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    flex-shrink: 0;
  }
  .home-news-rail .cube-news-list__badge {
    min-height: 20px;
    padding: 0 8px;
    font-size: 0.62rem;
    background: #3a3a3a;
    color: #fff;
    border: none;
  }
  .home-news-rail .cube-news-list__date {
    font-size: 0.68rem;
    color: var(--text-sub, #666);
    white-space: nowrap;
  }
  .home-news-rail .cube-news-list__title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-main, #1f1f1f);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 900px) and (min-width: 641px) {
  .hero-title {
    font-size: clamp(2rem, 6.5vw, 3.35rem);
  }
}
@media (max-width: 640px) {
  .space-grid,
  .price-grid,
  .steps-grid,
  .voice-grid,
  .news-grid { grid-template-columns: 1fr; }
  .page-card-grid { grid-template-columns: 1fr; }
  .campaign-grid--fit { grid-template-columns: 1fr; }
  #plan .plan-block--dropin {
    max-width: min(100%, 520px);
  }
  #plan .plan-block--monthly {
    max-width: min(100%, 920px);
    margin-top: 28px;
    padding-top: 24px;
  }
  #plan .dropin-row {
    gap: 12px;
    padding: 10px 0;
  }
  #plan .dropin-row__thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }
  #plan .dropin-row__name {
    font-size: 0.82rem;
  }
  #plan .dropin-row__amount {
    font-size: 0.88rem;
  }
  #plan .plan-table-wrap {
    margin-inline-start: calc(-1 * clamp(8px, 2vw, 16px));
    margin-inline-end: 0;
    padding-inline-start: clamp(8px, 2vw, 16px);
    padding-inline-end: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
  }
  #plan .monthly-table {
    min-width: 520px;
  }
  #plan .plan-table__row-label {
    position: sticky;
    left: 0;
    z-index: 1;
    min-width: 68px;
    box-shadow: 1px 0 0 rgba(15, 23, 42, 0.06);
  }
  #plan .plan-table__image-wrap {
    max-width: 48px;
    margin-bottom: 6px;
  }
  #plan .section-head--compact {
    margin-bottom: 6px;
  }
  #plan .section-head--compact .lead {
    margin-top: 4px;
    font-size: 0.76rem;
  }
  #plan .plan-cta {
    padding-top: 10px;
    padding-bottom: 6px;
  }
  #plan .plan-cta__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }
  .plan-finder-modal {
    padding: 12px;
  }
  .plan-finder-modal__panel {
    max-height: min(92dvh, 760px);
    padding: 22px 14px 20px;
    border-radius: 16px;
  }
  .plan-finder-modal__panel::before {
    border-radius: 16px 16px 0 0;
  }
  .plan-finder-banner {
    width: 100dvw;
    margin-right: 0;
    margin-left: 0;
  }
  .plan-finder__answers {
    grid-template-columns: 1fr;
  }
  .plan-finder__question {
    padding: 22px 14px;
    border-radius: 14px;
  }
  .plan-finder__question-title {
    font-size: 1.08rem;
  }
  .plan-finder__answer {
    min-height: 46px;
  }
  .space-grid.space-grid--fit {
    grid-template-columns: 1fr;
  }
  .steps-grid.steps-grid--fit {
    grid-template-columns: 1fr;
  }
  #howto .howto-step-card {
    min-height: auto;
  }
  #howto .howto-step-card:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -14px;
    width: 1px;
    height: 28px;
    transform: translateX(50%);
  }
  #howto .howto-step-card:not(:last-child)::before {
    top: auto;
    right: 50%;
    bottom: -15px;
    transform: translateX(50%) rotate(135deg);
  }
  .floor-seats__item {
    flex-basis: min(128px, 40vw);
  }
  .floor-seat-modal__body {
    padding: 16px 16px 20px;
  }
  .floor-modal__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }
  .hero {
    padding-top: calc(var(--admin-bar-offset) + var(--header-h) + var(--banner-h, 0px));
    padding-bottom: clamp(20px, 3vh, 32px);
    padding-inline: clamp(12px, 5vw, 24px);
  }
  .hero-title {
    white-space: normal;
    font-size: clamp(1.65rem, 8.2vw, 2.65rem);
    letter-spacing: 0.04em;
    line-height: 1.14;
  }
  .hero-sub {
    max-width: 26em;
    font-size: clamp(0.82rem, 3.6vw, 0.95rem);
    font-weight: 500;
    margin-top: clamp(16px, 2.8vh, 24px);
  }
  .hero-kicker {
    letter-spacing: 0.18em;
    margin-bottom: clamp(10px, 2vh, 16px);
  }
  .floating-inner { min-height: 82px; }
  .floating-title { font-size: 0.84rem; }
  .floating-btn { padding: 12px 18px; }
}


/* Value / campaign intro — chooser visible immediately when section is active (no fade wait). */
#concept.is-current:not(.is-detail-mode) .value-chooser-wrap,
body[data-active-section="concept"] #concept:not(.is-detail-mode) .value-chooser-wrap,
#news.is-current:not(.is-detail-mode) .value-chooser-wrap,
body[data-active-section="news"] #news:not(.is-detail-mode) .value-chooser-wrap {
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible;
}
body[data-active-section="concept"] #concept:not(.is-detail-mode) .value-chooser,
body[data-active-section="concept"] #concept:not(.is-detail-mode) .value-chooser.js-fade,
body[data-active-section="concept"] #concept:not(.is-detail-mode) .value-chooser__btn,
#concept.is-current:not(.is-detail-mode) .value-chooser,
#concept.is-current:not(.is-detail-mode) .value-chooser.js-fade,
#concept.is-current:not(.is-detail-mode) .value-chooser__btn,
body[data-active-section="news"] #news:not(.is-detail-mode) .value-chooser,
body[data-active-section="news"] #news:not(.is-detail-mode) .value-chooser.js-fade,
body[data-active-section="news"] #news:not(.is-detail-mode) .value-chooser__btn,
#news.is-current:not(.is-detail-mode) .value-chooser,
#news.is-current:not(.is-detail-mode) .value-chooser.js-fade,
#news.is-current:not(.is-detail-mode) .value-chooser__btn {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
  pointer-events: auto !important;
}
#campaign.is-current:not(.is-detail-mode) .value-chooser-wrap,
body[data-active-section="campaign"] #campaign:not(.is-detail-mode) .value-chooser-wrap {
  visibility: visible !important;
  overflow: visible;
}
body[data-active-section="campaign"] #campaign:not(.is-detail-mode) .value-chooser,
body[data-active-section="campaign"] #campaign:not(.is-detail-mode) .value-chooser.js-fade,
#campaign.is-current:not(.is-detail-mode) .value-chooser,
#campaign.is-current:not(.is-detail-mode) .value-chooser.js-fade {
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Cowa header — reinforce fixed glass bar when Lightning parent styles are present */
#siteHeader.site-header:not(.site-header--inner) {
  position: fixed;
  top: var(--admin-bar-offset);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-glass);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

body[data-active-section="home"] #siteHeader.site-header:not(.is-scrolled):not(.site-header--inner) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

body[data-active-section="home"] #siteHeader.site-header:not(.is-scrolled):not(.site-header--inner) .logo,
body[data-active-section="home"] #siteHeader.site-header:not(.is-scrolled):not(.site-header--inner) .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

body[data-active-section="home"] #siteHeader.site-header:not(.is-scrolled):not(.site-header--inner) .nav-link.is-active {
  color: #fff;
}

body[data-active-section="home"] #siteHeader.site-header:not(.is-scrolled):not(.site-header--inner) .cube-lang-switcher a {
  color: rgba(255, 255, 255, 0.72);
}

body[data-active-section="home"] #siteHeader.site-header:not(.is-scrolled):not(.site-header--inner) .hamburger {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

body[data-active-section="home"] #siteHeader.site-header:not(.is-scrolled):not(.site-header--inner) .hamburger-lines,
body[data-active-section="home"] #siteHeader.site-header:not(.is-scrolled):not(.site-header--inner) .hamburger-lines::before,
body[data-active-section="home"] #siteHeader.site-header:not(.is-scrolled):not(.site-header--inner) .hamburger-lines::after {
  background: #fff;
}

/* Free content — native scroll section (not WSC snap). */
.free-content-section {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cube-main:not(.wsc-section-scroll) .free-content-section.section-anchor.cube-screen > .container,
.free-content-section > .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 72px);
}
.free-content-section .section-head {
  margin-bottom: clamp(20px, 3vw, 32px);
}
.free-content-body {
  width: 100%;
  max-width: none;
  color: var(--text-sub);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.85;
  text-align: center;
}
.free-content-body > :first-child {
  margin-top: 0;
}
.free-content-body > :last-child {
  margin-bottom: 0;
}
.free-content-body h3,
.free-content-body h4 {
  color: var(--text-main);
  margin: 1.6em 0 0.6em;
  line-height: 1.45;
}
.free-content-body p {
  margin: 0 0 1em;
}
.free-content-body ul,
.free-content-body ol {
  display: inline-block;
  margin: 0 auto 1em;
  padding-left: 1.35em;
  text-align: left;
}
.free-content-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.free-content-body a:hover,
.free-content-body a:focus-visible {
  opacity: 0.85;
}
.free-content-pages {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(24px, 4vw, 40px);
}
.free-content-page {
  width: 100%;
  max-width: none;
  padding-top: clamp(18px, 2.5vw, 28px);
  border-top: 1px solid var(--border);
}
.free-content-page__title {
  margin: 0 0 0.7em;
  color: var(--text-main);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.45;
}
