:root {
  --ink: #1f2528;
  --indigo: #15324a;
  --snow: #f7fafc;
  --ice: #dceaf2;
  --gold: #c7a66a;
  --wood: #8b5e3c;
  --persimmon: #b95f3b;
  --paper: #fffdf7;
  --line: rgba(21, 50, 74, 0.15);
  --shadow: 0 24px 60px rgba(21, 50, 74, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.85;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(21, 50, 74, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(21, 50, 74, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
  mix-blend-mode: multiply;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: anywhere;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--indigo);
  color: #fff;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-grid;
  grid-template-columns: 44px auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.25;
}

.brand-sub {
  display: block;
  color: rgba(31, 37, 40, 0.68);
  font-size: 12px;
  line-height: 1.35;
}

.nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  color: rgba(31, 37, 40, 0.78);
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list .current {
  color: var(--indigo);
  border-bottom-color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--indigo);
  border-radius: 4px;
  background: var(--indigo);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  background: #224967;
  border-color: #224967;
}

.button.secondary {
  background: transparent;
  color: var(--indigo);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(21, 50, 74, 0.06);
}

.hero {
  position: relative;
  min-height: clamp(680px, 88vh, 860px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--indigo);
  color: #fff;
}

.hero-stage {
  position: absolute;
  inset: 0;
  background: var(--indigo);
  transform: scale(1.01);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(10, 24, 34, 0.72), rgba(10, 24, 34, 0.28) 48%, rgba(10, 24, 34, 0.1)),
    linear-gradient(180deg, transparent 66%, rgba(10, 24, 34, 0.72)),
    radial-gradient(circle at 24% 28%, rgba(247, 250, 252, 0.16), transparent 26%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: hero-slide 77s infinite;
  will-change: opacity, transform;
}

.hero-slide:first-child {
  opacity: 1;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
.hero-slide:nth-child(4) { animation-delay: 21s; }
.hero-slide:nth-child(5) { animation-delay: 28s; }
.hero-slide:nth-child(6) { animation-delay: 35s; }
.hero-slide:nth-child(7) { animation-delay: 42s; }
.hero-slide:nth-child(8) { animation-delay: 49s; }
.hero-slide:nth-child(9) { animation-delay: 56s; }
.hero-slide:nth-child(10) { animation-delay: 63s; }
.hero-slide:nth-child(11) { animation-delay: 70s; }

@keyframes hero-slide {
  0% { opacity: 0; transform: scale(1.05); }
  2.2% { opacity: 1; }
  8.4% { opacity: 1; }
  10.8% { opacity: 0; transform: scale(1.01); }
  100% { opacity: 0; transform: scale(1.01); }
}

.fusuma-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 52%;
  background:
    linear-gradient(90deg, rgba(139, 94, 60, 0.88), rgba(199, 166, 106, 0.34), rgba(139, 94, 60, 0.9)),
    repeating-linear-gradient(0deg, rgba(255, 253, 247, 0.26), rgba(255, 253, 247, 0.26) 1px, transparent 1px, transparent 18px),
    linear-gradient(135deg, #a87342, #d2b173 45%, #8b5e3c);
  box-shadow: inset 0 0 0 12px rgba(87, 55, 31, 0.35), inset 0 0 0 14px rgba(255, 253, 247, 0.12);
  opacity: 0.94;
  transform: translateX(0);
  will-change: transform;
}

.fusuma-panel::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 253, 247, 0.42);
  background: rgba(255, 253, 247, 0.12);
}

.fusuma-panel.left {
  left: 0;
  transform: translateX(-86%);
}

.fusuma-panel.right {
  right: 0;
  transform: translateX(86%);
}

.j .fusuma-panel.left {
  animation: fusuma-left 1.9s cubic-bezier(0.21, 0.72, 0.2, 1) 0.25s both;
}

.j .fusuma-panel.right {
  animation: fusuma-right 1.9s cubic-bezier(0.21, 0.72, 0.2, 1) 0.25s both;
}

@keyframes fusuma-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-86%); }
}

@keyframes fusuma-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(86%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 140px 0 72px;
  display: grid;
  align-content: end;
  min-height: inherit;
}

.hero-copy {
  width: min(760px, 100%);
}

.j .hero-copy {
  animation: copy-in 0.9s ease 1.25s both;
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1,
.section-title,
.article-title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 700;
  text-wrap: balance;
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions .button.secondary:hover,
.hero-actions .button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(247, 250, 252, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 13px;
}

main {
  overflow: hidden;
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section.alt {
  background: var(--snow);
}

.section.deep {
  background: var(--indigo);
  color: #fff;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.62fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--persimmon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--indigo);
  font-size: clamp(30px, 4.5vw, 56px);
}

.section.deep .section-title,
.section.deep .section-kicker {
  color: #fff;
}

.section-note {
  margin: 0;
  color: rgba(31, 37, 40, 0.72);
}

.section.deep .section-note {
  color: rgba(255, 255, 255, 0.75);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.lead-statement {
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.lead-statement p {
  margin: 0;
  color: var(--indigo);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.55;
}

.lead-copy p {
  margin: 0 0 18px;
  color: rgba(31, 37, 40, 0.76);
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 12px;
  background: var(--gold);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
  display: grid;
  align-content: space-between;
}

.stat strong {
  color: var(--indigo);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.95;
  font-weight: 700;
}

.stat span {
  display: block;
  color: rgba(31, 37, 40, 0.75);
}

.zigzag {
  display: grid;
  gap: clamp(52px, 8vw, 96px);
}

.zig {
  display: grid;
  grid-template-columns: minmax(280px, 1.04fr) minmax(280px, 0.76fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.zig:nth-child(even) {
  grid-template-columns: minmax(280px, 0.76fr) minmax(280px, 1.04fr);
}

.zig:nth-child(even) .zig-media {
  order: 2;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ice);
  aspect-ratio: 16 / 9;
}

.media-frame.tall {
  aspect-ratio: 4 / 3;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption-tab {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--indigo);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.zig-text h3,
.card h3,
.step h3,
.faq-item h3 {
  margin: 0 0 10px;
  color: var(--indigo);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
}

.card h3 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.zig-text p {
  margin: 0;
  color: rgba(31, 37, 40, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(280px, 1.12fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.sticky-note {
  position: sticky;
  top: 112px;
}

.reason-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: reasons;
}

.reason-list li {
  counter-increment: reasons;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.reason-list li::before {
  content: counter(reasons, decimal-leading-zero);
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 50px;
  line-height: 1;
}

.reason-list h3 {
  margin: 0 0 8px;
  color: var(--indigo);
  font-size: 22px;
}

.reason-list p {
  margin: 0;
  color: rgba(31, 37, 40, 0.72);
}

.gallery {
  display: grid;
  gap: 18px;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1.2fr 0.86fr 0.96fr;
  gap: 18px;
}

.gallery-row:nth-child(even) {
  grid-template-columns: 0.86fr 1.1fr 1fr;
}

.gallery .media-frame {
  aspect-ratio: 5 / 3.2;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card p {
  margin: 0;
  color: rgba(31, 37, 40, 0.72);
}

.card .small {
  display: block;
  margin-top: 18px;
  color: var(--persimmon);
  font-size: 13px;
  font-weight: 700;
}

.supporter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.supporter-card {
  min-height: 118px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.supporter-name {
  display: block;
  color: var(--indigo);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.45;
}

.supporter-company {
  display: block;
  margin-top: 18px;
  color: rgba(31, 37, 40, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.bbq-slider {
  display: flex;
  margin: 18px 0 0;
  overflow: hidden;
}

.bbq-slider figure {
  flex: 0 0 100%;
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(21, 50, 74, 0.08);
  animation: bbq-auto-slide 9s infinite;
}

.bbq-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bbq-slider:hover figure {
  animation-play-state: paused;
}

@keyframes bbq-auto-slide {
  0%, 28% {
    transform: translateX(0);
  }

  33%, 61% {
    transform: translateX(-100%);
  }

  66%, 94% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbq-slider {
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
  }

  .bbq-slider figure {
    animation: none;
    scroll-snap-align: start;
  }
}

.access-map-stack {
  display: grid;
  gap: 24px;
  margin: 34px 0 26px;
}

.access-map {
  position: relative;
  margin: 0;
  border: 1px solid rgba(21, 50, 74, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.82), rgba(220, 234, 242, 0.58)),
    radial-gradient(circle at 78% 34%, rgba(134, 196, 205, 0.22), transparent 30%),
    var(--snow);
  box-shadow: 0 18px 44px rgba(21, 50, 74, 0.08);
}

.access-map figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px 0;
  color: rgba(31, 37, 40, 0.72);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 700;
}

.access-map figcaption strong {
  color: var(--indigo);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.access-map svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px;
}

.access-map .map-route {
  fill: none;
  stroke: #d6a426;
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.94;
}

.access-map .map-rail {
  fill: none;
  stroke: #15324a;
  stroke-width: 7;
  stroke-dasharray: 18 13;
  stroke-linecap: round;
  opacity: 0.72;
}

.access-map .map-link {
  stroke: rgba(21, 50, 74, 0.58);
  stroke-width: 3;
  fill: none;
}

.access-map .map-water {
  fill: rgba(134, 196, 205, 0.36);
}

.access-map .map-land {
  fill: rgba(245, 241, 231, 0.86);
  stroke: rgba(21, 50, 74, 0.12);
  stroke-width: 2;
}

.access-map .map-landmark {
  fill: #fffdf7;
  stroke: rgba(21, 50, 74, 0.38);
  stroke-width: 3;
}

.access-map .map-home {
  fill: #b95f3b;
  stroke: #15324a;
  stroke-width: 4;
}

.access-map .map-pin {
  fill: #b95f3b;
}

.access-map .map-label rect {
  fill: rgba(21, 50, 74, 0.88);
  rx: 8;
}

.access-map .map-label text {
  fill: #fffdf7;
  font-family: var(--sans);
  font-weight: 700;
}

.access-map .map-label .label-title {
  font-size: 25px;
}

.access-map .map-label .label-sub {
  font-size: 17px;
  fill: rgba(255, 253, 247, 0.78);
}

.access-map .map-title {
  font-family: var(--serif);
  fill: var(--indigo);
  font-size: 38px;
  font-weight: 800;
}

.access-map .map-note {
  font-family: var(--sans);
  fill: rgba(31, 37, 40, 0.72);
  font-size: 18px;
  font-weight: 700;
}

.access-map .guide-banner {
  fill: #0d4fb8;
}

.access-map .guide-node {
  fill: #0872ce;
}

.access-map .guide-destination {
  fill: #fffdf7;
  stroke: #0872ce;
  stroke-width: 6;
}

.access-map .guide-line {
  fill: none;
  stroke: #0872ce;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-map .guide-title,
.access-map .guide-text,
.access-map .guide-small,
.access-map .guide-white {
  font-family: var(--sans);
  font-weight: 700;
}

.access-map .guide-title {
  fill: #fffdf7;
  font-size: 34px;
  letter-spacing: 0;
}

.access-map .guide-text {
  fill: #1f2528;
  font-size: 18px;
}

.access-map .guide-small {
  fill: #1f2528;
  font-size: 16px;
}

.access-map .guide-white {
  fill: #fffdf7;
  font-size: 30px;
}

.access-map .guide-white.small {
  font-size: 22px;
}

.access-map .guide-white.ic-name {
  font-size: 24px;
}

@media (max-width: 760px) {
  .access-map figcaption {
    display: block;
    padding: 16px 16px 0;
  }

  .access-map figcaption span {
    display: block;
    margin-top: 6px;
  }

  .access-map svg {
    min-height: 430px;
  }
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.step {
  min-height: 240px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.step span {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 22px;
}

.step h3 {
  color: #fff;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item h3 {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.faq-item h3::before {
  content: "Q";
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 0.9;
}

.faq-item p {
  margin: 0;
  color: rgba(31, 37, 40, 0.72);
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--indigo);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(21, 50, 74, 0.92), rgba(21, 50, 74, 0.68)), var(--cta-image);
  background-size: cover;
  background-position: center;
}

.cta-panel {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(84px, 10vw, 132px) 0;
  text-align: center;
}

.cta-panel h2 {
  margin: 0 0 18px;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.25;
}

.cta-panel p {
  margin: 0 auto 28px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  padding: clamp(88px, 11vw, 142px) 0 clamp(54px, 8vw, 88px);
  background: linear-gradient(120deg, var(--indigo), #244966);
  color: #fff;
}

.page-hero h1 {
  margin: 12px 0 14px;
  max-width: 900px;
  font-size: clamp(36px, 6vw, 72px);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

.info-table th,
.info-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.info-table th {
  width: 32%;
  color: var(--indigo);
  background: rgba(220, 234, 242, 0.32);
}

.info-table a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-weight: 700;
}

.form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--indigo);
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(21, 50, 74, 0.24);
  border-radius: 4px;
  background: var(--snow);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.booking-summary {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-summary h2 {
  margin: 0;
  color: var(--indigo);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.booking-status {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 4px;
  background: rgba(220, 234, 242, 0.45);
  color: var(--indigo);
  font-weight: 700;
}

.booking-status.is-ng {
  background: rgba(185, 95, 59, 0.12);
  color: var(--persimmon);
}

.price-lines {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-lines li,
.booking-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.price-lines small {
  display: block;
  color: rgba(31, 37, 40, 0.62);
}

.booking-total {
  align-items: baseline;
  padding: 12px 0 0;
  border-bottom: 0;
  color: var(--indigo);
  font-weight: 700;
}

.booking-total strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.square-button[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.48;
}

.booking-note {
  margin: 0;
  color: rgba(31, 37, 40, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.booking-rules {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.rule-pill {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 12px;
  padding: 12px;
  background: rgba(220, 234, 242, 0.28);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.rule-pill strong {
  color: var(--indigo);
}

.checkbox-list {
  display: grid;
  gap: 10px;
}

.activity-option {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(246, 243, 236, 0.55);
}

.checkbox-list label,
.activity-option label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
  color: rgba(31, 37, 40, 0.78);
}

.activity-quantity {
  display: grid;
  grid-template-columns: minmax(92px, auto) minmax(84px, 140px);
  gap: 10px;
  align-items: center;
  margin-left: 30px;
}

.activity-quantity[hidden] {
  display: none;
}

.activity-quantity label {
  display: block;
  color: rgba(31, 37, 40, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.activity-quantity input {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.news-card time {
  color: var(--persimmon);
  font-size: 13px;
  font-weight: 700;
}

.news-card h2,
.news-card h3 {
  margin: 4px 0 8px;
  color: var(--indigo);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  line-height: 1.35;
}

.news-card p {
  margin: 0;
  color: rgba(31, 37, 40, 0.72);
}

.article {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
}

.article-title {
  margin: 10px 0 18px;
  color: var(--indigo);
  font-size: clamp(34px, 5vw, 58px);
}

.article-meta {
  color: var(--persimmon);
  font-weight: 700;
}

.article-body {
  margin-top: 34px;
  font-size: 17px;
}

.article-body p {
  margin: 0 0 22px;
}

.quote-emphasis {
  color: var(--persimmon);
  font-weight: 800;
}

.site-footer {
  background: #101e2a;
  color: #fff;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(260px, 1.08fr);
  gap: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-logo {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}

.footer-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-logo strong {
  display: block;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 24px;
}

.footer-logo span,
.footer-note,
.footer-nap,
.footer-nav a,
.copyright {
  color: rgba(255, 255, 255, 0.72);
}

.footer-note {
  max-width: 520px;
  margin: 18px 0 0;
}

.footer-nap {
  display: grid;
  gap: 8px;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

.copyright {
  margin: 24px 0 0;
  font-size: 12px;
}

.hidden {
  display: none;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 12px 0;
  }

  .nav-list {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 8px 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .section-head,
  .lead-grid,
  .split,
  .booking-layout,
  .page-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .cards,
  .supporter-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zig,
  .zig:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .zig:nth-child(even) .zig-media {
    order: initial;
  }

  .sticky-note {
    position: static;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 28px;
  }

  .page-hero {
    padding: 78px 0 54px;
  }

  .footer-inner {
    padding-top: 48px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 126px;
  }

  .brand-sub {
    display: none;
  }

  .nav-list {
    font-size: 13px;
  }

  .hero-actions .button,
  .button {
    width: 100%;
  }

  .stats-grid,
  .cards,
  .supporter-grid,
  .process,
  .gallery-row,
  .gallery-row:nth-child(even),
  .two-fields,
  .activity-quantity,
  .rule-pill,
  .news-card {
    grid-template-columns: 1fr;
  }

  .activity-quantity {
    margin-left: 0;
  }

  .stat {
    min-height: 172px;
  }

  .reason-list li {
    grid-template-columns: 62px 1fr;
    gap: 14px;
  }

  .reason-list li::before {
    font-size: 38px;
  }

  .news-card img {
    height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .fusuma-panel.left {
    transform: translateX(-86%);
  }

  .fusuma-panel.right {
    transform: translateX(86%);
  }

  .hero-slide {
    animation: none !important;
    opacity: 0;
    transform: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.nav-list .current-menu-item > a,
.nav-list .current_page_item > a {
  color: var(--indigo);
  border-bottom-color: var(--gold);
}
