:root {
  --ink: #111111;
  --muted: #666666;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --line: #111111;
  --subline: #d8d8d8;
  --accent: #d71920;
  --header-height: 72px;
  --axis-y: 62px;
  --year-side: 170px;
  --sticky-left: calc(50vw - (var(--year-side) / 2));
  --card-width: 280px;
  --card-gap: 30px;
  --section-end-space: 170px;
  --hero-marquee-duration: 52s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

@media (hover: none) and (pointer: coarse) {
  html,
  body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
}

body.is-loading {
  overflow: hidden;
}

body.is-page-leaving {
  cursor: progress;
}

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

.spbr {
	display: none;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.site-loader img {
  width: min(82vw, 480px);
  height: auto;
}

body.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-transition-overlay {
  position: fixed;
  top: var(--transition-y, 50vh);
  left: var(--transition-x, 50vw);
  z-index: 10000;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 42px rgba(255, 255, 255, 0.92);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.2);
  transition: transform 0.56s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.16s ease;
  will-change: transform, opacity;
}

body.is-page-leaving .page-transition-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(190);
}

.page-transition-image {
  position: fixed;
  z-index: 10001;
  display: block;
  object-fit: cover;
  overflow: hidden;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
  transition:
    top 0.62s cubic-bezier(0.76, 0, 0.24, 1),
    left 0.62s cubic-bezier(0.76, 0, 0.24, 1),
    width 0.62s cubic-bezier(0.76, 0, 0.24, 1),
    height 0.62s cubic-bezier(0.76, 0, 0.24, 1),
    border-radius 0.62s cubic-bezier(0.76, 0, 0.24, 1),
    box-shadow 0.62s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition-image.is-open {
  border-radius: 3px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.click-stamp {
  position: fixed;
  top: var(--stamp-y);
  left: var(--stamp-x);
  z-index: 10002;
  min-width: 42px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  color: #111111;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--stamp-rotate, 0deg)) scale(0.74);
  animation: click-stamp-pop 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
}

@keyframes click-stamp-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--stamp-rotate, 0deg)) scale(0.74);
  }

  26% {
    opacity: 1;
    transform: translate(-50%, -70%) rotate(var(--stamp-rotate, 0deg)) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -122%) rotate(var(--stamp-rotate, 0deg)) scale(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mobile-header-socials {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-loader {
    transition: none;
  }

  .page-transition-overlay {
    display: none;
  }

  .page-transition-image,
  .click-stamp {
    display: none;
  }
}

.site-header {
  position: relative;
  z-index: 30;
  height: var(--header-height);
  background: #ff0000;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.72s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-top-visible .site-header {
  opacity: 1;
  transform: translateY(0);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand h1 {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 0;
}

.brand img {
  width: auto;
  height: clamp(36px, 4.5vw, 48px);
  max-width: min(52vw, 260px);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: currentColor;
}

.site-nav__socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  line-height: 1;
}

.site-nav__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.site-nav .site-nav__social {
  border-bottom-color: rgba(17, 17, 17, 0.12);
}

.site-nav__social:hover,
.site-nav__social:focus-visible {
  border-color: var(--ink);
  background: rgba(17, 17, 17, 0.04);
  transform: translateY(-1px);
}

.mobile-header-socials {
  display: none;
}

/* top */

.top {
  position: relative;
  width: 100%;
  min-height: calc(130svh - var(--header-height));
  background-color: #dbe5ec;
  background-image: url("../images/news.jpg");
  background-repeat: no-repeat;
  background-position: center 18%;
  background-size: cover;
  overflow: hidden;
  isolation: isolate;
}

.top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.22) 44%,
    rgba(0, 0, 0, 0) 76%
  );
  z-index: 1;
  pointer-events: none;
}

.top-stickers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.top-sticker {
  position: absolute;
  left: var(--sticker-x, 50%);
  top: var(--sticker-y, 50%);
  width: var(--sticker-size, 90px);
  opacity: 0.99;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
  transform:
    translate3d(-50%, -50%, 0)
    rotate(var(--sticker-rotate, 0deg))
    scale(1);
  transform-origin: center;
  backface-visibility: hidden;
  contain: layout paint;
  will-change: opacity, transform;
}

.top-sticker img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

body.is-top-visible .top-sticker {
  animation:
    top-sticker-scatter var(--sticker-duration, 3.4s)
    cubic-bezier(0.18, 0.88, 0.24, 1)
    var(--sticker-delay, 0s)
    forwards;
}

@keyframes top-sticker-scatter {
  0% {
    opacity: 0.99;
    transform:
      translate3d(-50%, -50%, 0)
      rotate(var(--sticker-rotate, 0deg))
      scale(1);
  }

  8% {
    opacity: 0.99;
    transform:
      translate3d(-50%, -50%, 0)
      rotate(var(--sticker-rotate, 0deg))
      scale(1);
  }

  28% {
    opacity: 0.94;
    transform:
      translate3d(
        calc(-50% + var(--sticker-pop-x, 8vw)),
        calc(-50% + var(--sticker-pop-y, 6vh)),
        0
      )
      rotate(calc(var(--sticker-rotate, 0deg) + var(--sticker-pop-spin, 24deg)))
      scale(0.98);
  }

  66% {
    opacity: 0.66;
    transform:
      translate3d(
        calc(-50% + var(--sticker-mid-x, 26vw)),
        calc(-50% + var(--sticker-mid-y, 22vh)),
        0
      )
      rotate(calc(var(--sticker-rotate, 0deg) + var(--sticker-mid-spin, 64deg)))
      scale(0.82);
  }

  100% {
    opacity: 0;
    transform:
      translate3d(
        calc(-50% + var(--sticker-dx, 36vw)),
        calc(-50% + var(--sticker-dy, 30vh)),
        0
      )
      rotate(calc(var(--sticker-rotate, 0deg) + var(--sticker-spin, 90deg)))
      scale(0.7);
  }
}

.top-copy {
  position: absolute;
  left: clamp(24px, 6vw, 88px);
  bottom: clamp(48px, 9vw, 120px);
  z-index: 3;
  color: #ffffff;
}

.top-copy__lead {
  margin: 0;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: clamp(2.5rem, 7vw, 6.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.72s ease 0.68s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.68s;
}

body.is-top-visible .top-copy__lead {
  animation: top-copy-flicker 4.8s linear 1.55s infinite;
}

@keyframes top-copy-flicker {
  0%,
  8%,
  10%,
  13%,
  17%,
  19%,
  28%,
  100% {
    opacity: 1;
    text-shadow:
      0 12px 34px rgba(0, 0, 0, 0.32),
      0 0 16px rgba(255, 255, 255, 0.42);
  }

  9%,
  14%,
  18% {
    opacity: 0.48;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  }

  11%,
  16% {
    opacity: 0.82;
  }
}

.top + .hero {
  padding-top: clamp(28px, 3.4vw, 40px);
}

body.is-top-visible .top-copy__lead {
  opacity: 1;
  transform: translateY(0);
}


/* hero */

.hero {
  min-height: calc(100svh - var(--header-height));
  padding: 44px 0 56px;
  display: grid;
  align-content: start;
  overflow: hidden;
  background: #eef5fa;
  clip-path: inset(0 100% 0 0);
  transition:
    background-color 0.55s ease,
    clip-path 1.15s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: clip-path;
}

body[data-history-year="2026"] .hero {
  background: #eef5fa;
}

body[data-history-year="2027"] .hero {
  background: #f7eff7;
}

body[data-history-year="2028"] .hero {
  background: #f4f7ed;
}

body.is-history-visible .hero {
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    transition: none;
  }

  .top-copy__lead {
    animation: none !important;
  }
}

.hero-copy {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;

}




.page-title {
  margin: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.hero-marquee {
  width: 100vw;
  margin: 20px 0;
  overflow: hidden;
  color: rgba(161, 146, 107, 0.16);
  pointer-events: none;
}

.hero-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: hero-marquee var(--hero-marquee-duration) linear infinite;
  will-change: transform;
}

.hero-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 74px);
  padding-right: clamp(36px, 5vw, 74px);
}

.hero-marquee span {
  flex: 0 0 auto;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(5.6rem, 17vw, 15.5rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0.035em;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes hero-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track {
    animation: none;
  }
}


.history {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.history::before {
  content: "NEWS HISTORY";
  position: absolute;
  top: 116px;
  left: clamp(22px, 3.4vw, 56px);
  z-index: 8;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  text-transform: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.history-scroller {
  position: relative;
  width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) transparent;
  cursor: grab;
  touch-action: pan-x;
}

.history-scroller.is-dragging {
  cursor: grabbing;
}

.history-scroller::-webkit-scrollbar {
  height: 8px;
}

.history-scroller::-webkit-scrollbar-track {
  background: transparent;
}

.history-scroller::-webkit-scrollbar-thumb {
  background: var(--ink);
  border-radius: 8px;
}

.history-track {
  width: max-content;
  min-height: 472px;
  padding: 0 clamp(120px, 10vw, 180px) 46px 0;
  display: flex;
  align-items: flex-start;
}

.year-section {
  position: relative;
  flex: 0 0 auto;
  width: auto;
  min-width: calc(var(--year-side) + var(--card-width) + var(--section-end-space));
  min-height: 472px;
}

.year-section::before {
  content: "";
  position: absolute;
  top: var(--axis-y);
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  pointer-events: none;
}

.year-side {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  pointer-events: none;
}

.year-sticky {
  position: sticky;
  left: var(--sticky-left);
  width: var(--year-side);
  height: 120px;
  padding-top: 0;
  pointer-events: none;
}

.year-label {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  transition: transform 0.3s ease;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
}

.year-dot {
  position: absolute;
  top: var(--axis-y);
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}

.year-section.is-current-year .year-label {
  transform: translateY(-2px);
}

.year-section.is-current-year .year-dot {
  width: 24px;
  height: 24px;
}

.year-section.is-year-bounce .year-dot {
  animation: year-dot-bounce 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes year-dot-bounce {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  38% {
    transform: translate(-50%, -66%) scale(1.36);
  }

  68% {
    transform: translate(-50%, -48%) scale(0.9);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.year-content {
  --event-content-offset: 92px;
  position: relative;
  z-index: 1;
  width: max-content;
  display: flex;
  align-items: flex-start;
  gap: var(--card-gap);
  margin-left: var(--year-side);
  padding-top: var(--event-content-offset);
  padding-right: var(--section-end-space);
}

.history-event {
  position: relative;
  flex: 0 0 var(--card-width);
  width: var(--card-width);
}

.history-motion-ready .history-event {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 26px, 0) scale(0.985);
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--history-event-delay, 0ms);
  will-change: opacity, transform, filter;
}

.history-motion-ready .history-event.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.history-event::before {
  content: "";
  position: absolute;
  top: calc(var(--axis-y) - var(--event-content-offset));
  left: 50%;
  z-index: 3;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.56);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.history-motion-ready .history-event::before {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 14px)) scale(0.72);
  transition:
    opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--history-event-delay, 0ms) + 50ms);
}

.history-motion-ready .history-event.is-revealed::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: history-dot-pulse 2.4s ease-in-out calc(var(--history-event-delay, 0ms) + 0.7s) infinite;
}

@keyframes history-dot-pulse {
  0%,
  100% {
    background: rgba(17, 17, 17, 0.56);
    box-shadow: 0 0 0 rgba(17, 17, 17, 0);
    transform: translate(-50%, -50%) scale(1);
  }

  46% {
    background: rgba(17, 17, 17, 0.88);
    box-shadow: 0 0 0 8px rgba(17, 17, 17, 0.08);
    transform: translate(-50%, -50%) scale(1.24);
  }

  58% {
    transform: translate(-50%, -50%) scale(0.95);
  }
}

.month {
  min-height: 20px;
  margin: 0 0 12px;
  color: #222222;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
}

.history-card {
  position: relative;
  width: var(--card-width);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "artwork"
    "title"
    "tag"
    "text"
    "more";
  align-items: center;
  justify-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  text-align: left;
}

.history-event--anniversary .month {
  color: #ff0000;
  text-shadow: 0 0 18px rgba(255, 0, 0, 0.24);
}

.history-event--anniversary::before {
  background: #ff0000;
  box-shadow:
    0 0 0 5px rgba(255, 0, 0, 0.14),
    0 0 24px rgba(255, 0, 0, 0.42);
}

.history-event--upcoming-dot {
  flex: 0 0 128px;
  width: 128px;
  min-height: 32px;
}

.history-event--upcoming-dot::before {
  width: 14px;
  height: 14px;
  background: #111111;
  box-shadow: none;
}

.history-motion-ready .history-event--upcoming-dot.is-revealed::before {
  animation: history-dot-pulse 2.4s ease-in-out calc(var(--history-event-delay, 0ms) + 0.7s) infinite;
}

.red-frame {
  grid-template-areas:
    "artwork"
    "tag"
    "title"
    "text"
    "more";
  border: 2px solid #ff0000 !important;
  box-shadow:
    0 22px 54px rgba(255, 0, 0, 0.18),
    0 0 0 6px rgba(255, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.red-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 0, 0, 0.18), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 84% 12%, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0) 34%);
  pointer-events: none;
}



.red-frame .card-title {
  color: #ff0000;
  font-size: 1.04rem;
  letter-spacing: 0;
}

.anniversary-badge {
  grid-area: tag;
  justify-self: center;
  margin: 13px 14px 0;
  padding: 6px 10px 5px;
  border: 1px solid #ff0000;
  border-radius: 999px;
  color: #ffffff;
  background: #ff0000;
  box-shadow: 0 9px 18px rgba(255, 0, 0, 0.2);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.history-motion-ready .history-event--anniversary.is-revealed::before {
  animation: anniversary-dot-pulse 2.4s ease-in-out calc(var(--history-event-delay, 0ms) + 0.7s) infinite;
}

@keyframes anniversary-dot-pulse {
  0%,
  100% {
    background: #ff0000;
    box-shadow:
      0 0 0 5px rgba(255, 0, 0, 0.14),
      0 0 24px rgba(255, 0, 0, 0.42);
    transform: translate(-50%, -50%) scale(1);
  }

  46% {
    background: #ff0000;
    box-shadow:
      0 0 0 10px rgba(255, 0, 0, 0.08),
      0 0 32px rgba(255, 0, 0, 0.52);
    transform: translate(-50%, -50%) scale(1.24);
  }

  58% {
    transform: translate(-50%, -50%) scale(0.95);
  }
}

.history-card--movie {
  cursor: pointer;
}

.history-card--link {
  -webkit-tap-highlight-color: rgba(75, 99, 211, 0.16);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.history-card--link:hover,
.history-card--link:focus-visible {
  border-color: rgba(0, 149, 246, 0.46);
  box-shadow:
    0 22px 52px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  outline: 0;
  transform: translateY(-2px);
}

.red-frame.history-card--link:hover,
.red-frame.history-card--link:focus-visible {
  border-color: #ff0000;
  box-shadow:
    0 26px 62px rgba(255, 0, 0, 0.24),
    0 0 0 7px rgba(255, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.card-more-link {
  grid-area: more;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  margin: 0 16px 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #0095f6;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  touch-action: manipulation;
}

.card-more-link:hover,
.card-more-link:focus-visible {
  color: #0074cc;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.history-card--movie:hover,
.history-card--movie:focus-within {
  border-color: rgba(0, 149, 246, 0.46);
  box-shadow:
    0 22px 52px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.history-card > * {
  position: relative;
  z-index: 1;
}

.date {
  grid-area: date;
  align-self: center;
  margin: 13px 0 13px 14px;
  min-width: 0;
  color: #111111;
  font-size: 0.82rem;
  line-height: 1.25;
}

.history-card .tag {
  grid-area: tag;
  justify-self: start;
  min-width: auto;
  margin: 0 16px 12px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  color: #111111;
  background: #f5f5f5;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.artwork {
  grid-area: artwork;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  background: #fff;
}

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

.history-card--movie .artwork::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17, 17, 17, 0.18);
}

.history-video-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 149, 246, 0.92);
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.24);
}

.history-video-trigger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #ffffff;
  transform: translate(-50%, -50%);
}

.history-video-trigger:focus-visible {
  outline: 2px solid #0095f6;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  body.is-top-visible .top-sticker {
    animation: none;
    opacity: 0.86;
    transform:
      translate(-50%, -50%)
      rotate(var(--sticker-rotate, 0deg))
      scale(1);
  }

  .year-section.is-year-bounce .year-dot {
    animation: none;
  }

  .history-motion-ready .history-event.is-revealed::before {
    animation: none;
  }

  .history-motion-ready .history-event,
  .history-motion-ready .history-event::before {
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%);
    transition: none;
  }

  .history-motion-ready .history-event {
    transform: none;
  }
}

.card-title {
  grid-area: title;
  text-align: center;
  padding:  14px 16px 14px;
  margin : 0;
  color: #111111;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.45;
}

.purple {
	background: #9966FF;
	color: #fff;
}

.yellow {
	background: #FFD700;
	color: #fff;
}

.green {
	background: #00AA00;
	color: #fff;
}


.card-text {
  grid-area: text;
  margin: 0 16px 16px;
  color: #262626;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.62;
}

.card-text a {
  color: #0095f6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.card-text a:hover,
.card-text a:focus-visible {
  opacity: 0.72;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: clamp(12px, 3vw, 34px);
  display: grid;
  place-items: center;
  background: rgba(12, 16, 24, 0.94);
}

.video-modal[hidden] {
  display: none;
}

.video-modal-frame {
  width: min(92vw, 1280px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #000000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.video-modal-frame iframe,
.video-modal-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-modal-frame video {
  background: #000000;
}

.video-modal-frame iframe[hidden],
.video-modal-frame video[hidden] {
  display: none;
}

.video-modal-close {
  position: fixed;
  top: clamp(12px, 2vw, 22px);
  right: clamp(12px, 2vw, 22px);
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

body.video-modal-open {
  overflow: hidden;
}

.movie-section {
  padding: clamp(35px, 5vw, 60px) 16px;
  background: #000000;
}

.movie-section__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.movie-section__slider-wrap {
  position: relative;
  display: grid;
  align-items: center;
}

.movie-section__slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: clamp(16px, 3vw, 28px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.movie-section__slider::-webkit-scrollbar {
  display: none;
}

.movie-section__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.05s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: clip-path;
}

.movie-section.is-visible .movie-section__frame {
  clip-path: inset(0 0 0 0);
}

.movie-section__slide {
  scroll-snap-align: center;
}

.movie-section__player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  object-fit: cover;
}

.movie-section__frame--button {
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.movie-section__thumbnail {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-section__frame--button:hover .movie-section__thumbnail,
.movie-section__frame--button:focus-visible .movie-section__thumbnail {
  filter: brightness(0.78);
  transform: scale(1.035);
}

.movie-section__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(38px, 4.4vw, 52px);
  height: clamp(56px, 6vw, 76px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  opacity: 0.82;
  transform: translateY(-50%);
  transition: background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.movie-section__nav::before {
  content: "";
  display: block;
  width: 24%;
  height: 16%;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.movie-section__nav--prev {
  left: clamp(10px, 2vw, 24px);
}

.movie-section__nav--prev::before {
  transform: translateX(10%) rotate(225deg);
}

.movie-section__nav--next {
  right: clamp(10px, 2vw, 24px);
}

.movie-section__nav--next::before {
  transform: translateX(-10%) rotate(45deg);
}

.movie-section__nav:hover,
.movie-section__nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
  outline: 0;
  transform: translateY(-50%) scale(1.03);
}

.movie-section__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(78px, 9vw, 116px);
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.movie-section__play img {
  width: 100%;
  height: auto;
  display: block;
}

.movie-section__play--youtube {
  width: clamp(82px, 9vw, 124px);
  aspect-ratio: 1.42 / 1;
  background: transparent;
  color: #ff0033;
  font-size: clamp(42px, 5vw, 66px);
}

.movie-section__play--youtube i {
  line-height: 1;
}

.movie-section__play:hover,
.movie-section__play:focus-visible {
  outline: 0;
  transform: translate(-50%, -50%) scale(1.06);
}

.movie-section__frame.is-playing .movie-section__play {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .movie-section__frame {
    clip-path: inset(0 0 0 0);
    transition: none;
  }
}

@media (max-width: 560px) {
  .movie-section__nav {
    display: none;
  }

  .movie-section__play {
    width: clamp(48px, 14vw, 60px);
  }
}

.detail-body {
  min-height: 100vh;
  background: #ffffff;
}

.detail-main {
  width: min(460px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(36px, 7vw, 68px) 0 clamp(48px, 9vw, 92px);
}

.detail-loading {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.detail-loading-text {
  margin: 0;
  color: #777777;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.detail-title {
  margin: 0;
  color: #111111;
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
}

.detail-lead {
  display: none;
  max-width: 680px;
  margin: 20px 0 42px;
  color: #5f6673;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 500;
  line-height: 1.8;
  white-space: pre-line;
}

.detail-panel {
  display: grid;
  justify-items: center;
}

.detail-body.is-detail-ready .detail-title,
.detail-body.is-detail-ready .detail-meta,
.detail-body.is-detail-ready .detail-artwork,
.detail-body.is-detail-ready .detail-content,
.detail-body.is-detail-ready .detail-back {
  opacity: 0;
  transform: translateY(18px);
}

.detail-body.is-detail-ready .detail-artwork {
  clip-path: inset(0 0 10% 0);
  transform: translateY(22px) scale(0.985);
}

.detail-body.is-detail-ready.is-detail-visible .detail-title,
.detail-body.is-detail-ready.is-detail-visible .detail-meta,
.detail-body.is-detail-ready.is-detail-visible .detail-artwork,
.detail-body.is-detail-ready.is-detail-visible .detail-content,
.detail-body.is-detail-ready.is-detail-visible .detail-back {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.58s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), clip-path 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.detail-body.is-detail-ready.is-detail-visible .detail-meta {
  transition-delay: 0.08s;
}

.detail-body.is-detail-ready.is-detail-visible .detail-artwork {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.16s;
}

.detail-body.is-detail-ready.is-detail-visible .detail-content {
  transition-delay: 0.26s;
}

.detail-body.is-detail-ready.is-detail-visible .detail-back {
  transition-delay: 0.34s;
}

.detail-artwork {
  width: 100%;
  margin: 18px 0 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 3px;
  background: #ffffff;
}

.detail-artwork img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.detail-content {
  width: 100%;
}

.detail-meta {
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  line-height: 1;
}

.detail-meta .date {
  margin: 0;
  color: #222222;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.detail-meta .tag {
  margin: 0;
  display: inline-block;
  min-width: 120px;
  padding: 7px 18px;
  color: #ffffff;
  background: #c8c8c8;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.detail-text {
  color: #111111;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.85;
  text-align: left;
}

.detail-text p {
  margin: 0;
  white-space: pre-line;
}

.detail-text p + p {
  margin-top: 1.2em;
}

.detail-links {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
}

.detail-links a,
.detail-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.detail-links a:hover,
.detail-links a:focus-visible,
.detail-back a:hover,
.detail-back a:focus-visible {
  color: #ffffff;
  background: var(--ink);
}

.detail-back {
  margin: 38px 0 0;
  text-align: center;
}

.detail-back a {
  min-height: auto;
  padding: 0;
  border: 0;
  color: #777777;
  background: transparent;
  font-size: 0.78rem;
}

.detail-back a:hover,
.detail-back a:focus-visible {
  color: var(--ink);
  background: transparent;
}

.detail-error {
  min-height: 100vh;
  display: grid;
  align-content: center;
}

.detail-error .detail-lead {
  display: block;
  margin: 18px 0 28px;
  text-align: center;
}

.history-controls {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) auto;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.history-finale {
  position: fixed;
  inset: 0;
  z-index: 60;
  width: 100vw;
  height: 100vh;
  padding: clamp(28px, 6vw, 64px);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.36s ease, transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.36s ease;
  backdrop-filter: blur(10px);
}

.history-finale__close {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  width: 48px;
  height: 48px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  color: #111111;
  background: rgba(255, 255, 255, 0.68);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.history-finale__close:hover,
.history-finale__close:focus-visible {
  border-color: rgba(17, 17, 17, 0.36);
  background: #ffffff;
  transform: scale(1.04);
  outline: 0;
}

.history-finale__message {
  margin: 0;
  color: #111111;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4.7rem, 13vw, 15rem);
  font-weight: 400;
  line-height: 0.86;
  text-align: left;
  letter-spacing: 0;
}

.history-finale__message span {
  display: block;
}

.history.is-finale-visible .history-finale {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.progress {
  height: 2px;
  overflow: hidden;
  background: var(--subline);
}

.progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
}

.buttons {
  display: flex;
  gap: 8px;
}

.history-button {
  width: 38px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.history-button:hover,
.history-button:focus-visible {
  color: #ffffff;
  background: var(--ink);
}

.history-year-nav {
	display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 40;
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.history-year-nav.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.share-section {
  background: #ff0000;
}

.share-section__inner {
  min-height: clamp(110px, 8.6vw, 176px);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 4.2vw, 82px);
}

.share-section__title {
  margin: 0;
  color: #ffffff;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.4rem, 5vw, 6.2rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.06em;
}

.share-section__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-section__link {
  width: clamp(62px, 4.3vw, 86px);
  height: clamp(62px, 4.3vw, 86px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #3a3a3a;
  background: #ffffff;
  font-size: clamp(2rem, 2.55vw, 3.2rem);
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.share-section__link:hover,
.share-section__link:focus-visible {
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.18);
}

.history-year-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  margin: 0;
  padding: 12px 22px;
  list-style: none;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.15);
  backdrop-filter: blur(8px);
}

.history-year-nav a {
  display: inline-block;
  color: var(--muted);
  font-size: clamp(1.2rem, 1.9vw, 2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  opacity: 0.74;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.history-year-nav a:hover,
.history-year-nav a:focus-visible {
  color: var(--ink);
  opacity: 1;
  transform: translateY(-1px);
}

.history-year-nav a.is-active {
  color: var(--ink);
  opacity: 1;
}

.site-footer {
  padding: 28px 20px 34px;
  color: #ffffff;
  background: var(--ink);
  font-size: 0.78rem;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

@media (max-width: 980px) {
  :root {
    --header-height: 0px;
    --sticky-left: 28px;
    --year-side: 132px;
    --card-width: 190px;
    --card-gap: 42px;
    --section-end-space: 100px;
  }

  .site-header {
    height: auto;
    backdrop-filter: none;
       border-bottom: none;
  }

  .header-inner {
    min-height: 0;
    height: auto;
    padding: 20px 0;
    justify-content: center;
  }

  .header-inner,
  .hero-copy,
  .history-controls {
    width: calc(100% - 28px);
  }

  .site-nav {
    display: none;
  }

  .brand img {
    width: min(88vw, 420px);
    height: auto;
    max-width: none;
  }

  .top {
    min-height: 0;
    aspect-ratio: 4953 / 3715;
    background-position: center top;
    background-size: 100% auto;
  }

  .top::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 28%,
      rgba(0, 0, 0, 0.18) 58%,
      rgba(0, 0, 0, 0.54) 100%
    );
  }

  .top-copy {
    left: 18px;
    right: 18px;
    bottom: clamp(18px, 8vw, 44px);
  }

  .top-copy__lead {
    font-size: clamp(1.35rem, 6.1vw, 3.4rem);
    line-height: 1.12;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-header-socials {
    padding: 0 20px 18px;
    display: flex;
    justify-content: center;
    gap: 14px;
    background: #ff0000;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.72s ease 0.1s,
      transform 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
  }

  body.is-top-visible .mobile-header-socials {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-header-socials .site-nav__social {
    width: 38px;
    height: 38px;
    color: var(--ink);
    font-size: 1rem;
    text-decoration: none;
  }

  .share-section__inner {
    min-height: 108px;
    padding: 24px 16px;
    gap: 18px;
  }

  .share-section__title {
    font-size: clamp(2.7rem, 8vw, 4.3rem);
    letter-spacing: 0.04em;
  }

  .share-section__list {
    gap: 12px;
  }

  .share-section__link {
    width: clamp(42px, 11vw, 52px);
    height: clamp(42px, 11vw, 52px);
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }

  .hero {
    min-height: 0;
    padding-top: 24px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 3rem;
  }

  .year-label {
    font-size: 2.1rem;
  }

  .year-content {
    padding-right: var(--section-end-space);
  }

  .artwork {
    width: 100%;
  }

  .history-finale__close {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
}

@media (max-width: 560px) {
  :root {
    --axis-y: 58px;
    --year-side: 82px;
    --sticky-left: calc(50vw - (var(--year-side) / 2));
    --card-width: clamp(220px, 72vw, 248px);
    --card-gap: 16px;
    --section-end-space: 32px;
  }
  
  .spbr {
	  display: inherit;
  }

  .page-title {
    font-size: 2.28rem;
  }

  .top-copy__lead {
    font-size: clamp(1.22rem, 5.8vw, 2rem);
  }

  .history::before {
    display: none;
  }

  .history-scroller {
    cursor: auto;
    touch-action: pan-x pan-y;
    scroll-snap-type: none;
  }

  .history-track,
  .year-section,
  .year-content,
  .history-event {
    touch-action: pan-x pan-y;
  }

  .history-event {
    scroll-snap-align: start;
  }

  .history-track {
    min-height: 430px;
    padding-right: 16px;
  }

  .year-section {
    min-height: 430px;
  }

  .year-content {
    --event-content-offset: 88px;
    gap: 16px;
    padding-right: var(--section-end-space);
  }

  .year-label {
    font-size: 1.9rem;
  }

  .year-dot {
    width: 18px;
    height: 18px;
  }

  .month {
    font-size: 1.2rem;
  }

  .history-finale__close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 1.45rem;
  }

  .history-finale {
    padding: 24px;
  }

  .history-finale__message {
    font-size: clamp(4.2rem, 19vw, 7.4rem);
    line-height: 0.9;
  }

  .history-card {
    min-height: auto;
    padding: 0;
  }

  .artwork {
    width: 100%;
  }

  .detail-main {
    width: calc(100% - 28px);
    padding-top: 36px;
  }

  .detail-panel {
    grid-template-columns: 1fr;
  }

  .history-year-nav {
    right: 10px;
    bottom: 10px;
    left: 10px;
    transform: translateY(10px);
  }

  .history-year-nav.is-visible {
    transform: translateY(0);
  }

  .history-year-nav ul {
    width: 100%;
    justify-content: center;
    gap: 18px;
    padding: 10px 14px;
  }

  .history-year-nav a {
    font-size: clamp(1.1rem, 6vw, 1.45rem);
  }

  .history-controls,
  .history-year-nav {
    display: none;
  }

}
