:root {
  color-scheme: light;
  --ink: #14213d;
  --muted: #5d6982;
  --blue: #075ba8;
  --blue-dark: #063e73;
  --gold: #f0c441;
  --red: #ba1b1d;
  --paper: #fbf6ea;
  --line: rgba(20, 33, 61, 0.14);
  --shadow: 0 22px 60px rgba(10, 31, 68, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 246, 234, 0.92)),
    radial-gradient(circle at 14% 4%, rgba(240, 196, 65, 0.22), transparent 32%),
    radial-gradient(circle at 84% 0%, rgba(7, 91, 168, 0.16), transparent 34%),
    var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  background: #0a0a0a;
  color: #fff;
  border-bottom: 4px solid #c5a059;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.archive-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.logo-main {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.1rem, 6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-sub {
  margin-top: 5px;
  color: #c5a059;
  font-family: "Great Vibes", cursive;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.global-nav-shell {
  position: sticky;
  top: 85px;
  z-index: 90;
  width: 100%;
  margin: 0 0 22px;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(197, 160, 89, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.global-menu-toggle {
  display: none;
}

.global-quick-nav {
  display: none;
}

.global-section-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 10px 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.global-section-nav::-webkit-scrollbar {
  display: none;
}

.global-quick-nav a,
.global-section-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.global-quick-nav a:hover,
.global-quick-nav a.active,
.global-section-nav a:hover,
.global-section-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 160, 89, 0.24);
  border-bottom-color: #c5a059;
}

@media (max-width: 980px) {
  .global-nav-shell {
    top: 86px;
    margin: 0 0 18px;
    padding: 10px 14px;
  }

  .global-quick-nav {
    display: flex;
    gap: 4px;
    margin: 0 -4px 10px;
    padding: 0 4px 10px;
    overflow-x: auto;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    scrollbar-width: none;
  }

  .global-quick-nav::-webkit-scrollbar {
    display: none;
  }

  .global-quick-nav a {
    min-height: 34px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
  }

  .global-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 42px;
    padding: 0 2px;
    color: #fff;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(197, 160, 89, 0.22);
    border-bottom: 1px solid rgba(197, 160, 89, 0.22);
    font: inherit;
    cursor: pointer;
  }

  .global-menu-toggle .menu-lines {
    position: relative;
    display: grid;
    gap: 6px;
    width: 34px;
    padding: 2px 0;
  }

  .global-menu-toggle .menu-lines i {
    display: block;
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, #c5a059, rgba(255, 255, 255, 0.78));
    transform-origin: center;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .global-nav-shell.is-open .global-menu-toggle .menu-lines i:nth-child(1) {
    transform: translateY(8px) rotate(36deg);
  }

  .global-nav-shell.is-open .global-menu-toggle .menu-lines i:nth-child(2) {
    opacity: 0;
  }

  .global-nav-shell.is-open .global-menu-toggle .menu-lines i:nth-child(3) {
    transform: translateY(-8px) rotate(-36deg);
  }

  .global-menu-toggle strong {
    color: rgba(255, 255, 255, 0.86);
    font-family: "Oswald", sans-serif;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    white-space: nowrap;
  }

  .global-section-nav {
    display: none;
    grid-template-columns: 1fr;
    gap: 1px;
    margin-top: 10px;
    padding: 0;
    overflow: visible;
    background: rgba(255, 255, 255, 0.08);
  }

  .global-nav-shell.is-open .global-section-nav {
    display: grid;
  }

  .global-section-nav a {
    justify-content: flex-start;
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    background: rgba(10, 10, 10, 0.96);
    font-size: 0.86rem;
  }
}

.walk-local-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1040px;
  margin: -8px auto 18px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
}

.walk-local-nav a {
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
}

.walk-local-nav a:hover {
  background: rgba(7, 91, 168, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
  max-width: 1320px;
  min-height: auto;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 68px) clamp(18px, 5vw, 64px);
}

.hero-media {
  display: block;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span,
h1 strong {
  display: block;
}

h1 span {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(18px, 2.3vw, 30px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

h1 strong {
  font-weight: 900;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.35;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(17px, 1.6vw, 22px);
}

.hero-actions,
.feature-poster .button {
  margin-top: 28px;
}

.hero-actions,
.quick-share {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.quick-share {
  margin-top: 16px;
}

.quick-share button {
  min-height: 42px;
  padding: 0 14px;
  color: var(--blue-dark);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 91, 168, 0.24);
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid var(--blue);
  border-radius: 4px;
}

.button.primary {
  color: white;
  background: var(--blue);
}

.button.secondary {
  margin-left: 10px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.62);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 56px);
}

section[id] {
  scroll-margin-top: 86px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.intro-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-grid article {
  border-top: 6px solid var(--gold);
}

.feature-poster {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}

.poster-button,
.day-card button,
.start-card button {
  appearance: none;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.poster-button img {
  max-height: 780px;
  object-fit: contain;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.day-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.day-card.wide {
  grid-column: span 2;
}

.day-card img {
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top;
  background: white;
  transition: transform 180ms ease;
}

.day-card button:hover img,
.poster-button:hover img,
.start-card button:hover img {
  transform: scale(1.015);
}

.day-card div {
  padding: 18px;
}

.day-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.day-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.start-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.start-card img {
  background: white;
  transition: transform 180ms ease;
}

.start-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
  padding: 20px;
  border-top: 6px solid var(--blue);
}

.start-text-card span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.start-text-card h3 {
  margin: 12px 0;
}

.start-text-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.75;
}

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

.cross-walk-digest {
  max-width: 1180px;
}

.road-movie {
  max-width: 1320px;
}

.road-movie-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  padding: clamp(16px, 3vw, 26px);
  overflow: hidden;
  color: white;
  background:
    linear-gradient(112deg, rgba(8, 18, 34, 0.96), rgba(6, 62, 115, 0.9)),
    url("./assets/og-image.jpg") center / cover;
  border: 1px solid rgba(240, 196, 65, 0.34);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.road-movie-feature + .road-movie-feature {
  margin-top: 22px;
}

.road-movie-feature-alt {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  background:
    linear-gradient(112deg, rgba(20, 33, 61, 0.97), rgba(101, 30, 28, 0.88)),
    url("./assets/day04.jpg") center / cover;
  border-color: rgba(240, 196, 65, 0.42);
  border-left-color: var(--red);
}

.road-movie-feature-alt .road-movie-thumb {
  order: 2;
}

.road-movie-feature-alt .road-movie-copy {
  order: 1;
}

.road-movie-feature-final {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  background:
    linear-gradient(112deg, rgba(3, 19, 25, 0.94), rgba(8, 62, 67, 0.88)),
    url("./assets/rain-traces.jpg") center / cover;
  border-left-color: #89d1d4;
}

.road-movie-thumb {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  color: white;
  text-decoration: none;
  background: #071527;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.road-movie-thumb img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.road-movie-thumb:hover img {
  transform: scale(1.025);
}

.road-movie-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 39, 0.02), rgba(7, 21, 39, 0.48)),
    linear-gradient(90deg, rgba(7, 21, 39, 0.24), transparent 52%);
}

.road-movie-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: clamp(72px, 9vw, 104px);
  height: clamp(52px, 6.4vw, 72px);
  background: rgba(186, 27, 29, 0.96);
  border-radius: 8px;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.36);
}

.road-movie-play::after {
  content: "";
  position: absolute;
  left: 43%;
  top: 50%;
  width: 0;
  height: 0;
  border-bottom: clamp(13px, 1.7vw, 18px) solid transparent;
  border-left: clamp(20px, 2.6vw, 28px) solid white;
  border-top: clamp(13px, 1.7vw, 18px) solid transparent;
  transform: translateY(-50%);
}

.road-movie-status {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  padding: 9px 12px;
  color: #14213d;
  background: var(--gold);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.road-movie-copy {
  min-width: 0;
  align-self: center;
  padding: clamp(10px, 2vw, 18px) clamp(6px, 1vw, 10px);
}

.road-movie-copy h3 {
  margin-bottom: 16px;
  color: white;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.road-movie-copy p {
  color: rgba(255, 255, 255, 0.84);
  overflow-wrap: anywhere;
}

.road-movie-copy .road-movie-lead {
  color: white;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.8;
}

.road-movie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.road-movie-actions .button.primary {
  border-color: var(--gold);
  color: #14213d;
  background: var(--gold);
}

.road-movie-actions .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
}

.trilogy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.trilogy-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 8px;
}

.trilogy-card.current {
  background: rgba(255, 255, 255, 0.9);
  border-top-color: var(--red);
  box-shadow: 0 14px 34px rgba(10, 31, 68, 0.12);
}

.trilogy-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.trilogy-card h3 {
  margin-bottom: 8px;
}

.trilogy-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.75;
}

.documentary-notice {
  position: relative;
  margin-bottom: 24px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  color: white;
  background:
    linear-gradient(110deg, rgba(6, 62, 115, 0.98), rgba(20, 33, 61, 0.92)),
    url("./assets/og-image.jpg") center / cover;
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.documentary-notice::after {
  content: "COMING SOON";
  position: absolute;
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(14px, 3vw, 24px);
  color: rgba(240, 196, 65, 0.18);
  font-size: clamp(34px, 6vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
}

.documentary-kicker {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.documentary-notice h3,
.documentary-notice p {
  position: relative;
  z-index: 1;
}

.documentary-notice h3 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.22;
}

.documentary-notice p:not(.documentary-kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
}

.video-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.digest-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.74fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-bottom: 20px;
  padding: clamp(14px, 3vw, 24px);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.88), rgba(251, 246, 234, 0.82)),
    url("./assets/day01.png") center / cover;
  border: 1px solid rgba(20, 33, 61, 0.14);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(10, 31, 68, 0.13);
}

.digest-thumb {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #071527;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(10, 31, 68, 0.2);
}

.digest-thumb img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 200ms ease;
}

.digest-thumb:hover img {
  transform: scale(1.03);
}

.digest-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 21, 39, 0.42));
}

.digest-copy {
  min-width: 0;
  padding: 8px 4px;
}

.digest-copy h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.digest-copy p {
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.digest-copy .button {
  margin-top: 10px;
}

.video-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.video-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #071527;
  overflow: hidden;
}

.video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.video-link:hover .video-frame img {
  transform: scale(1.035);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 44px;
  background: rgba(186, 27, 29, 0.94);
  border-radius: 8px;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid transparent;
  border-left: 16px solid white;
  border-top: 10px solid transparent;
}

.video-title {
  display: block;
  padding: 16px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.share-section {
  max-width: 1040px;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.share-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 106px;
  padding: 16px;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.share-card span {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.share-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.share-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(10, 31, 68, 0.12);
}

.primary-share {
  color: white;
  background: var(--blue);
}

.primary-share small {
  color: rgba(255, 255, 255, 0.82);
}

.line {
  border-top: 5px solid #06c755;
}

.x {
  border-top: 5px solid #111;
}

.facebook {
  border-top: 5px solid #1877f2;
}

.instagram {
  border-top: 5px solid #e4405f;
}

.copy {
  border-top: 5px solid var(--gold);
}

.closing {
  max-width: 920px;
  text-align: center;
}

.closing h2 {
  color: var(--red);
}

.closing p {
  margin-inline: auto;
  max-width: 720px;
  font-size: clamp(18px, 2vw, 23px);
}

.goto-next {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  max-width: 1320px;
  margin-top: clamp(12px, 3vw, 34px);
  color: white;
  background:
    linear-gradient(112deg, rgba(3, 35, 48, 0.95), rgba(6, 74, 96, 0.9) 48%, rgba(10, 18, 29, 0.96)),
    url("./assets/goto-cross-walk-2026-wide.jpg") center / cover;
  border: 1px solid rgba(137, 209, 212, 0.36);
  border-left: 8px solid #d6a84c;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.goto-poster-button {
  appearance: none;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
  background: rgba(2, 11, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.goto-poster-button img {
  aspect-ratio: 1055 / 1491;
  max-height: 780px;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease;
}

.goto-poster-button:hover img {
  transform: scale(1.018);
}

.goto-copy {
  min-width: 0;
}

.goto-copy .eyebrow {
  color: #89d1d4;
}

.goto-copy h2 {
  color: white;
  font-size: clamp(34px, 5vw, 62px);
  overflow-wrap: anywhere;
}

.goto-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.goto-lead {
  color: white;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 900;
  line-height: 1.8;
}

.goto-route {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
}

.goto-route span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #102235;
  background: linear-gradient(135deg, #f2d37c, #89d1d4);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  font-weight: 900;
}

.goto-info-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
  margin-bottom: 18px;
}

.goto-info-grid article,
.goto-schedule {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.goto-info-grid article {
  padding: 18px;
}

.goto-info-grid h3 {
  color: white;
}

.goto-info-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.goto-schedule {
  overflow: hidden;
}

.goto-schedule-head,
.goto-schedule div {
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) 1fr;
  gap: 12px;
  padding: 12px 16px;
}

.goto-schedule-head {
  display: block;
  color: #102235;
  background: #89d1d4;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.goto-schedule div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.goto-schedule strong,
.goto-schedule span {
  color: white;
  line-height: 1.6;
}

.goto-schedule span {
  color: rgba(255, 255, 255, 0.84);
}

.goto-note {
  margin-top: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.goto-note + .button {
  margin-top: 18px;
  border-color: var(--gold);
  color: #14213d;
  background: var(--gold);
}

.site-footer {
  margin-top: 80px;
  padding: 60px 0 30px;
  color: #fff;
  background: #0a0a0a;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand {
  margin-bottom: 60px;
  text-align: center;
}

.footer-logo {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
}

.footer-desc {
  margin: 0;
  color: #c5a059;
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

.footer-grid {
  display: grid;
  gap: 50px;
}

.footer-col h5 {
  margin: 0 0 25px;
  padding-bottom: 10px;
  color: #c5a059;
  border-bottom: 1px solid #333;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.prog-block {
  margin-bottom: 40px;
}

.prog-title {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.prog-time {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 8px;
  color: #ccc;
  background: #333;
  border-radius: 4px;
  font-size: 0.75rem;
}

.prog-text {
  margin: 0;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.8;
}

.social-block {
  margin-bottom: 40px;
}

.yt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

.yt-btn:hover {
  color: #000;
  background: #c5a059;
  border-color: #c5a059;
}

.yt-icon {
  font-size: 1.2rem;
}

.bank-card {
  margin-bottom: 15px;
  padding: 20px;
  text-align: left;
  background: #1a1a1a;
  border-left: 3px solid #333;
  border-radius: 6px;
}

.bank-label {
  display: block;
  margin: 0 0 8px;
  color: #888;
  font-size: 0.75rem;
  font-weight: bold;
}

.bank-details {
  color: #ddd;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.bank-row {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copyright {
  margin-top: 60px;
  padding-top: 20px;
  color: #666;
  border-top: 1px solid #333;
  font-size: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .footer-desc {
    font-size: 2rem;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
  background: rgba(2, 11, 26, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  color: white;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 980px) {
  .global-section-nav {
    justify-content: flex-start;
  }

  .hero,
  .feature-poster,
  .goto-next {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-media img {
    max-height: none;
    width: 100%;
    margin-inline: auto;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .start-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .road-movie-feature,
  .road-movie-feature-alt,
  .road-movie-feature-final,
  .digest-feature {
    grid-template-columns: 1fr;
  }

  .road-movie-feature-alt .road-movie-thumb,
  .road-movie-feature-alt .road-movie-copy {
    order: initial;
  }

  .road-movie-thumb img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .trilogy-grid {
    grid-template-columns: 1fr;
  }

  .share-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .goto-poster-button {
    max-width: 520px;
    margin-inline: auto;
  }

  .goto-info-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .site-header {
    position: sticky;
    padding: 20px 0;
  }

  .logo-main {
    font-size: 1rem;
  }

  .global-section-nav {
    position: sticky;
    top: 86px;
    justify-content: flex-start;
    gap: 2px;
    margin: 0 0 18px;
    padding: 9px 14px;
  }

  .global-section-nav a {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .walk-local-nav {
    justify-content: flex-start;
    margin-top: -4px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .walk-local-nav a {
    flex: 0 0 auto;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .hero {
    gap: 22px;
    padding: 18px 14px 42px;
  }

  h1 {
    font-size: clamp(34px, 9.4vw, 42px);
    line-height: 1.08;
  }

  h1 span {
    font-size: clamp(15px, 4.5vw, 19px);
    line-height: 1.3;
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  p,
  .hero-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .section {
    padding: 44px 14px;
  }

  .intro-grid article,
  .day-card div {
    padding: 16px;
  }

  .button {
    width: 100%;
  }

  .quick-share {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button.secondary {
    margin: 10px 0 0;
  }

  .poster-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .start-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .video-grid {
    gap: 18px;
  }

  .road-movie-feature,
  .road-movie-feature-final,
  .digest-feature,
  .goto-next {
    padding: 12px;
  }

  .goto-copy h2 {
    font-size: clamp(30px, 8.4vw, 40px);
  }

  .goto-route {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .goto-route span {
    justify-content: center;
  }

  .goto-schedule-head,
  .goto-schedule div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 11px 12px;
  }

  .road-movie-status {
    left: 12px;
    top: 12px;
    font-size: 12px;
  }

  .road-movie-copy {
    padding: 8px 2px 4px;
  }

  .road-movie-copy h3,
  .digest-copy h3 {
    font-size: clamp(25px, 7.2vw, 32px);
  }

  .road-movie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .road-movie-actions .button.secondary {
    margin: 0;
  }

  .share-grid {
    grid-template-columns: 1fr;
  }

  .share-card {
    min-height: 82px;
  }

  .day-card.wide {
    grid-column: auto;
  }

  .poster-button,
  .day-card button {
    border-radius: 6px;
  }

  .poster-button img {
    max-height: none;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.45);
  }

  .site-footer {
    margin-top: 56px;
  }
}
