:root {
  color-scheme: light;
  --paper: #f5f2eb;
  --paper-bright: #fbfaf6;
  --ink: #0b1824;
  --ink-soft: #3d4b56;
  --navy: #07131f;
  --navy-2: #0d2436;
  --blue: #18a8df;
  --blue-deep: #0876ad;
  --sand: #d8c6a2;
  --line: rgba(11, 24, 36, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --content: min(1180px, calc(100% - 96px));
  --serif: "Shippori Mincho", serif;
  --sans: "Zen Kaku Gothic New", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* 日本語の折り返しを自然にする。
   auto-phrase = 文節で改行する／pretty = 最終行に1〜2文字だけ残さない */
p,
h1,
h2,
h3,
dd,
figcaption,
.lead,
.display-title,
.cast-card p,
.venue-access-note {
  word-break: auto-phrase;
  text-wrap: pretty;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

figure,
h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

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

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 200;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #8ce6ff);
  box-shadow: 0 0 12px rgba(24, 168, 223, 0.6);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 42px;
  color: #fff;
  transition: background 0.35s ease, min-height 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled,
.site-header.open {
  min-height: 68px;
  background: rgba(7, 19, 31, 0.94);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.site-brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 132px;
}

.site-brand img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-ticket)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-ticket {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-ticket:hover {
  border-color: var(--blue);
  background: var(--blue);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url("/img/hero-desktop.jpg") center 50% / cover no-repeat;
  animation: hero-enter 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-enter {
  from { opacity: 0.45; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 14, 24, 0.84) 0%, rgba(4, 14, 24, 0.38) 42%, rgba(4, 14, 24, 0.06) 72%),
    linear-gradient(0deg, rgba(4, 14, 24, 0.76) 0%, transparent 43%, rgba(4, 14, 24, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 96px));
  margin: 0 0 clamp(72px, 10vh, 112px) max(48px, calc((100vw - 1180px) / 2));
}

.hero-kicker {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.hero-title-logo {
  width: clamp(310px, 38vw, 560px);
  filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.hero h1 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.85;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-copy-line {
  display: block;
  white-space: nowrap;
}

.hero-release {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 28px;
}

.hero-release p:first-child {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.hero-release strong {
  font-family: var(--serif);
  font-size: clamp(27px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-release span,
.hero-release p:last-child {
  padding-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: #25b9ef;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--navy);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.play-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 10px;
}

.countdown {
  position: absolute;
  right: max(48px, calc((100vw - 1180px) / 2));
  bottom: clamp(76px, 10vh, 116px);
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: end;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.countdown > span {
  grid-column: 1;
  grid-row: 1;
  padding-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.countdown strong {
  grid-column: 2;
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.85;
}

.countdown small {
  grid-column: 1;
  grid-row: 2;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.scroll-cue {
  position: absolute;
  right: 30px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.24em;
  text-decoration: none;
}

.scroll-cue i {
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #fff;
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  from { transform: translateY(-20px); }
  to { transform: translateY(40px); }
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(92px, 10vw, 150px) 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
  color: var(--blue-deep);
}

.section-label span {
  font-family: var(--serif);
  font-size: 12px;
}

.section-label span::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 0 3px 14px;
  background: currentColor;
}

.section-label p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

/* 語句の途中で折り返さず、まとまりごとに改行させるための単位 */
.wrap-unit {
  display: inline-block;
}

/* カラム幅は1180pxで頭打ちになるため、上限を54pxに抑えて<br />の改行位置を保つ */
.display-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.25vw, 54px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.55;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: end;
}

.intro-copy,
.story-copy,
.director-message {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.15;
}

.intro-copy p + p,
.story-copy p + p,
.director-message p + p {
  margin-top: 20px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.65fr);
  gap: 0;
  width: min(1320px, calc(100% - 48px));
  padding-top: 0;
}

.trailer-feature {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b1721;
  box-shadow: 0 24px 70px rgba(7, 19, 31, 0.18);
}

.trailer-feature iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.screening-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
  background: var(--navy);
  color: #fff;
}

.summary-kicker {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.screening-summary h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.summary-date {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 50px);
  white-space: nowrap;
}

.summary-date small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.screening-summary dl {
  margin-top: 28px;
  border-top: 1px solid var(--white-line);
}

.screening-summary dl div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--white-line);
  font-size: 12px;
}

.screening-summary dt {
  color: rgba(255, 255, 255, 0.52);
}

.arrow-link {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.story {
  width: 100%;
  min-height: clamp(680px, 66vw, 860px);
  padding-right: max(48px, calc((100vw - 1180px) / 2));
  padding-left: max(48px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 15, 27, 0.82) 0%, rgba(4, 15, 27, 0.58) 54%, rgba(4, 15, 27, 0.3) 100%),
    linear-gradient(0deg, rgba(4, 15, 27, 0.42), rgba(4, 15, 27, 0.06)),
    url("/img/memory-pair-2.jpg") center 52% / cover no-repeat;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.7fr);
  gap: clamp(60px, 10vw, 150px);
}

.story .section-label {
  color: rgba(255, 255, 255, 0.76);
}

.lead {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2;
}

.story .lead {
  color: rgba(255, 255, 255, 0.9);
}

.story-copy {
  padding-top: 18px;
}

.story .story-copy {
  color: rgba(255, 255, 255, 0.82);
}

.director-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(60px, 11vw, 170px);
  align-items: start;
}

.director-name {
  padding: 32px 0 32px 32px;
  border-left: 2px solid var(--blue);
}

.director-photo {
  margin-top: 36px;
  margin-left: 34px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: 0 24px 56px rgba(43, 112, 139, 0.16);
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.director-name small {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.director-name h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.director-message h3 {
  margin-bottom: 26px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.director-lines {
  color: var(--ink);
}

.director-sign {
  margin-top: 32px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-align: right;
}

.section-dark {
  position: relative;
  width: 100%;
  padding-right: max(48px, calc((100vw - 1180px) / 2));
  padding-left: max(48px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: #fff;
}

.section-dark .section-label {
  color: var(--blue);
}

.cast {
  width: 100%;
  padding-right: max(48px, calc((100vw - 1180px) / 2));
  padding-left: max(48px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.96), transparent 32%),
    linear-gradient(145deg, #e7f7fc 0%, #f7fbfc 52%, #dff2f8 100%);
}

.cast .section-label {
  color: var(--blue-deep);
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 28px;
  margin-top: 68px;
}

.cast-card {
  position: relative;
}

.cast-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #d8edf4 center / cover no-repeat;
  box-shadow: 0 20px 50px rgba(43, 112, 139, 0.12);
}

.cast-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(transparent, rgba(16, 83, 109, 0.08));
}

.cast-role {
  display: block;
  margin-top: 18px;
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.cast-card h3 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.cast-card h3 small {
  color: rgba(11, 24, 36, 0.5);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
}

.cast-card p {
  margin-top: 12px;
  color: rgba(11, 24, 36, 0.62);
  font-size: 12px;
  line-height: 1.9;
}

.motion-strip {
  position: relative;
  overflow: hidden;
  margin-top: clamp(-72px, -5vw, -40px);
  padding-bottom: clamp(68px, 7vw, 96px);
  background: var(--paper);
}

.motion-strip-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  width: var(--content);
  margin: 0 auto 16px;
  color: var(--blue-deep);
}

.motion-strip-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.motion-strip-heading span,
.motion-strip-heading p {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.motion-strip-heading p {
  color: rgba(11, 24, 36, 0.46);
}

.motion-strip-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.motion-strip-track {
  --reel-gap: 8px;
  display: flex;
  gap: var(--reel-gap);
  width: max-content;
  animation: motion-strip-scroll 92s linear infinite;
  will-change: transform;
}

.motion-strip-viewport:hover .motion-strip-track {
  animation-play-state: paused;
}

.motion-strip-set {
  display: flex;
  gap: var(--reel-gap);
}

.motion-strip-set figure {
  position: relative;
  width: clamp(190px, 18vw, 270px);
  height: clamp(126px, 12vw, 180px);
  flex: none;
  overflow: hidden;
  background: #d8e9ef;
}

.motion-strip-set figure:nth-child(4n + 2) {
  width: clamp(160px, 15vw, 225px);
}

.motion-strip-set img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.01);
  transition: filter 0.35s ease, transform 0.45s ease;
}

.motion-strip-set figure:hover img {
  filter: saturate(1.06) contrast(1);
  transform: scale(1.025);
}

.motion-strip-set figure > span {
  position: absolute;
  right: 8px;
  bottom: 7px;
  display: grid;
  min-width: 25px;
  height: 20px;
  padding: 0 6px;
  place-items: center;
  background: rgba(5, 16, 26, 0.68);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: 8px;
  letter-spacing: 0.08em;
}

@keyframes motion-strip-scroll {
  to {
    transform: translateX(calc(-50% - (var(--reel-gap) / 2)));
  }
}

/* キャストのInstagramリンク */
.cast-insta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cast-insta::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: none;
  border: 1.4px solid currentColor;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 50%, currentColor 0 1.6px, transparent 1.9px),
    radial-gradient(circle at 76% 24%, currentColor 0 0.9px, transparent 1.2px);
}

.cast-insta:hover {
  border-color: var(--blue);
  background: rgba(24, 168, 223, 0.08);
}

.gallery-section {
  width: min(1380px, calc(100% - 48px));
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  width: min(1180px, 100%);
  margin: 0 auto 52px;
}

.gallery-heading > p {
  padding-bottom: 15px;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.gallery-section > .section-label {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(150px, 16vw, 240px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--navy) center / cover no-repeat;
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: none;
}

.production-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.production-visual {
  position: sticky;
  top: 100px;
  height: min(70vh, 720px);
  overflow: hidden;
}

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

.journal-list {
  border-top: 1px solid var(--line);
}

.journal-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.journal-list article > span {
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: 13px;
}

.journal-list h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.journal-list p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

.location {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  background: #e8edf0;
}

.location > .section-label,
.location-heading {
  width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.location-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.location-heading > p {
  padding-bottom: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

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

.location-grid figure {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy);
}

.location-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.location-grid figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.location-grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.credits-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 11vw, 150px);
}

.credits-grid h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.credits-grid .credits-subheading {
  margin-top: 54px;
}

.credits-grid dl {
  border-top: 1px solid var(--white-line);
}

.credits-grid dl div {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--white-line);
  font-size: 12px;
  line-height: 1.8;
}

.credits-grid dt {
  color: rgba(255, 255, 255, 0.45);
}

.credits-grid dd {
  color: rgba(255, 255, 255, 0.83);
}

/* Special Thanks（支援者ウォール・順不同） */
.thanks-wall {
  margin-top: clamp(48px, 7vw, 90px);
  padding-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--white-line);
}

.thanks-wall h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: #fff;
}

.thanks-note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.thanks-names {
  max-width: 960px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.02em;
  word-break: break-word;
}

.screening {
  width: min(1000px, calc(100% - 96px));
}

/* 会場アクセス（Googleマップ埋め込み） */
.venue-access {
  margin-top: 30px;
}

.venue-access-label {
  margin-bottom: 12px;
  color: rgba(11, 24, 36, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.venue-access iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(7, 19, 31, 0.14);
}

.venue-access-note {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.95;
}

.venue-access .button {
  margin-top: 16px;
}

/* 明るい背景の上に置く outline ボタン */
.button-dark {
  border-color: var(--line);
  color: var(--navy);
}

.button-dark:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
}

.screening-header {
  text-align: center;
}

.screening-header-secondary {
  margin-top: 112px;
}

.screening-header > p {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.screening-header h2 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 500;
  line-height: 1;
}

.screening-header h2 small {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.screening-header h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.ticket {
  display: grid;
  grid-template-columns: 1fr 180px;
  margin-top: 56px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 30px 80px rgba(7, 19, 31, 0.2);
}

.ticket-main {
  padding: clamp(38px, 6vw, 68px);
}

.ticket dl {
  border-top: 1px solid var(--white-line);
}

.ticket dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--white-line);
  font-size: 14px;
}

.ticket dt {
  color: rgba(255, 255, 255, 0.48);
}

.ticket dd {
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.ticket-stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-left: 1px dashed rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, var(--navy-2), #0a5881);
  text-align: center;
}

.ticket-stub span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.ticket-stub b {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

.news {
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 76px);
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.news-list p,
.news-list a {
  font-size: 13px;
}

.news-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-list a:hover {
  color: var(--blue-deep);
}

.news-list a .news-title {
  flex: 1;
  color: inherit;
  font-size: inherit;
}

.news-list a > span[aria-hidden] {
  flex: none;
  color: var(--blue-deep);
  font-size: 16px;
}

.news-article-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.article-header {
  background: rgba(7, 19, 31, 0.97);
}

.article-back {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.news-article {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(150px, 16vw, 210px) 0 clamp(100px, 12vw, 160px);
}

.news-article-label {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.news-article h1 {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  word-break: normal;
  text-wrap: wrap;
}

.news-article-date {
  display: block;
  margin-top: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news-article-body {
  padding-top: clamp(44px, 7vw, 70px);
}

.news-article-body > p {
  font-size: 15px;
  line-height: 2.2;
  word-break: normal;
  text-wrap: wrap;
}

.news-article-body > p + p {
  margin-top: 24px;
}

.news-article-body h2 {
  margin-top: 58px;
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 500;
}

.news-screening-info {
  margin-top: 28px;
  padding: 30px 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-screening-info dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 12px 0;
}

.news-screening-info dt {
  color: var(--ink-soft);
  font-size: 12px;
}

.news-screening-info dd {
  font-size: 14px;
  font-weight: 700;
}

.news-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.news-article-note {
  margin-top: 58px;
  padding: 30px 34px;
  background: rgba(24, 168, 223, 0.07);
}

.news-article-note h2 {
  margin-top: 0;
  font-size: 22px;
}

.news-article-note p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 2;
}

.news-article-closing {
  margin-top: 52px !important;
  font-family: var(--serif);
  font-size: 18px !important;
  text-align: center;
}

.news-article-footer {
  padding: 38px 24px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
}

.closing {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.closing-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(6, 19, 31, 0.58), rgba(6, 19, 31, 0.78)),
    url("/img/closing-crowdfunding.jpg") center / cover no-repeat;
}

.closing-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 48px));
}

.closing-content > p:first-child {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.closing-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 5vw, 64px);
  margin-top: 42px;
}

.closing-support > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 190px;
}

.closing-support strong {
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.closing-support strong em {
  margin-right: 0.08em;
  font-size: 0.78em;
  font-style: normal;
  letter-spacing: 0;
  vertical-align: 0.03em;
}

.closing-support .closing-total strong {
  font-size: clamp(42px, 4.8vw, 62px);
}

.closing-support small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.closing-support i {
  width: 1px;
  height: 86px;
  background: rgba(255, 255, 255, 0.3);
}

.closing h2 {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.65;
}

.closing-copy {
  max-width: 620px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 2;
}

.closing .button {
  margin-top: 34px;
}

.footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 56px max(48px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: rgba(255, 255, 255, 0.48);
}

.footer img {
  width: 170px;
  filter: brightness(0) invert(1);
}

.footer p {
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: right;
}

.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 80;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(7, 19, 31, 0.86);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  padding: 40px;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(3, 10, 16, 0.94);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  z-index: 2;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}

.lightbox-dialog {
  display: grid;
  max-height: calc(100vh - 100px);
  place-items: center;
}

.lightbox-dialog img {
  max-width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --content: min(100% - 48px, 760px);
  }

  .site-header {
    padding: 0 24px;
  }

  .hero-content {
    width: min(620px, calc(100% - 80px));
    margin-left: 40px;
  }

  .countdown {
    right: 40px;
  }

  .intro-grid,
  .story-grid,
  .director-grid,
  .production-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-copy,
  .story-copy,
  .director-message {
    max-width: 620px;
  }

  .feature {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

  .production-visual {
    position: relative;
    top: auto;
    height: 540px;
  }

  .credits-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

}

@media (max-width: 760px) {
  p,
  h1,
  h2,
  h3,
  dd,
  figcaption,
  .lead,
  .display-title,
  .cast-card p,
  .venue-access-note {
    word-break: normal;
    line-break: strict;
    text-wrap: wrap;
  }

  :root {
    --content: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 64px;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.open {
    min-height: 62px;
    padding: 0 20px;
  }

  .site-brand {
    width: 108px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 10px 7px;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-header.open .menu-button > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.open .menu-button > span:nth-child(2) {
    opacity: 0;
  }

  .site-header.open .menu-button > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    inset: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 88px 28px 28px;
    background: rgba(7, 19, 31, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
  }

  .nav-ticket {
    min-height: auto;
    margin-top: 8px;
    padding: 14px 0 !important;
    border: 0;
    border-radius: 0;
    color: var(--blue) !important;
  }

  .hero {
    min-height: 760px;
    align-items: stretch;
  }

  .hero-photo {
    background-image: url("/img/hero-mobile.jpg");
    background-position: center 45%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 14, 24, 0.2) 0%, rgba(4, 14, 24, 0.05) 34%, rgba(4, 14, 24, 0.88) 100%),
      linear-gradient(90deg, rgba(4, 14, 24, 0.28), transparent 60%);
  }

  /* スマホは上部の空スペースにタイトルを置き、その他は下部に寄せる */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 40px);
    margin: 0 20px 44px;
    padding-top: 150px;
  }

  .hero-kicker {
    display: none;
  }

  .hero-title-logo {
    order: -1;
    margin: 0 0 auto;
    width: min(76vw, 330px);
  }

  .hero h1 {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-release {
    gap: 14px;
    margin-top: 18px;
  }

  .hero-release strong {
    font-size: 28px;
  }

  .hero-release span,
  .hero-release p:last-child {
    font-size: 10px;
  }

  .hero-actions {
    gap: 20px;
    margin-top: 22px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 0 20px;
    font-size: 10px;
  }

  .text-button {
    font-size: 10px;
  }

  .play-icon {
    width: 38px;
    height: 38px;
  }

  .countdown {
    top: 86px;
    right: 18px;
    bottom: auto;
    padding-left: 12px;
  }

  .countdown > span {
    font-size: 9px;
  }

  .countdown strong {
    font-size: 52px;
  }

  .countdown small {
    font-size: 7px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-label {
    margin-bottom: 30px;
  }

  /* 意図した2行の改行位置を保てるサイズに抑える（3行に折り返さない） */
  .display-title {
    font-size: clamp(24px, 7.7vw, 42px);
    letter-spacing: 0.02em;
    line-height: 1.55;
  }

  .intro-grid,
  .story-grid,
  .director-grid,
  .production-grid {
    gap: 32px;
  }

  .intro-copy,
  .story-copy,
  .director-message {
    font-size: 13.5px;
    line-height: 2.05;
  }

  .feature {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0;
  }

  .screening-summary {
    padding: 42px 24px;
  }

  .summary-date {
    font-size: 38px;
  }

  .story {
    min-height: 720px;
    padding: 88px 20px;
    background:
      linear-gradient(180deg, rgba(4, 15, 27, 0.72) 0%, rgba(4, 15, 27, 0.5) 45%, rgba(4, 15, 27, 0.82) 100%),
      url("/img/memory-pair-2.jpg") 58% center / cover no-repeat;
  }

  .lead {
    margin-top: 24px;
    font-size: 15px;
  }

  .director-name {
    padding-left: 20px;
  }

  .director-name h2 {
    font-size: 48px;
  }

  /* 名前の左パディングに合わせて写真の左マージンも揃える */
  .director-photo {
    margin-top: 28px;
    margin-left: 20px;
  }

  .section-dark {
    padding-right: 20px;
    padding-left: 20px;
  }

  .cast {
    padding-right: 20px;
    padding-left: 20px;
  }

  .cast-grid {
    gap: 44px 12px;
    margin-top: 48px;
  }

  .cast-card h3 {
    display: block;
    font-size: 20px;
  }

  .cast-card h3 small {
    display: block;
    margin-top: 4px;
    font-size: 10px;
  }

  .cast-card p {
    font-size: 11px;
    line-height: 1.75;
  }

  .gallery-section {
    width: 100%;
  }

  .motion-strip {
    margin-top: -34px;
    padding-bottom: 64px;
  }

  .motion-strip-heading {
    width: calc(100% - 40px);
    margin-bottom: 12px;
    gap: 10px;
  }

  .motion-strip-heading span,
  .motion-strip-heading p {
    font-size: 7px;
    letter-spacing: 0.16em;
  }

  .motion-strip-track {
    --reel-gap: 6px;
    animation-duration: 74s;
  }

  .motion-strip-set figure,
  .motion-strip-set figure:nth-child(4n + 2) {
    width: 150px;
    height: 100px;
  }

  .motion-strip-set figure > span {
    display: none;
  }

  .gallery-section > .section-label,
  .gallery-heading {
    width: calc(100% - 40px);
  }

  .gallery-heading {
    display: block;
    margin-bottom: 34px;
  }

  .gallery-heading > p {
    margin-top: 18px;
    padding: 0;
    font-size: 12px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 42vw;
    gap: 4px;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .production-visual {
    height: 110vw;
    max-height: 540px;
  }

  .journal-list article {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .location {
    padding-top: 82px;
  }

  .location > .section-label,
  .location-heading {
    width: calc(100% - 40px);
  }

  .location-heading {
    display: block;
    margin-bottom: 34px;
  }

  .location-heading > p {
    margin-top: 18px;
    padding: 0;
    font-size: 13px;
  }

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

  .credits-grid {
    gap: 56px;
  }

  .credits-grid dl div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .screening {
    width: calc(100% - 40px);
  }

  .screening-header h2 {
    font-size: 48px;
  }

  .ticket {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .ticket-main {
    padding: 28px 22px;
  }

  .ticket dl div {
    grid-template-columns: 96px 1fr;
    gap: 16px;
    font-size: 12px;
  }

  .ticket-stub {
    flex-direction: row;
    justify-content: space-between;
    min-height: 92px;
    padding: 0 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .ticket-stub b {
    font-size: 18px;
    line-height: 1.2;
  }

  .button-row .button {
    width: 100%;
  }

  .news {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .news-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-list a {
    align-items: flex-start;
    line-height: 1.8;
  }

  .news-article {
    width: calc(100% - 40px);
    padding-top: 126px;
  }

  .news-article h1 {
    font-size: clamp(26px, 7.1vw, 30px);
    letter-spacing: 0.02em;
  }

  .news-article-body > p {
    font-size: 14px;
    line-height: 2.05;
  }

  .news-article-closing {
    font-size: 16px !important;
    line-height: 2;
  }

  .news-screening-info,
  .news-article-note {
    padding: 24px 20px;
  }

  .news-screening-info dl div {
    grid-template-columns: 82px 1fr;
    gap: 14px;
  }

  .news-article-actions .button {
    width: 100%;
  }

  .closing {
    min-height: 650px;
  }

  .closing h2 {
    font-size: clamp(22px, 6.9vw, 28px);
  }

  .closing-support {
    gap: 18px;
    margin-top: 34px;
  }

  /* flex:1 で等幅にすると「424,000」が枠からはみ出すため内容幅に合わせる */
  .closing-support > span {
    min-width: 0;
    flex: 0 1 auto;
  }

  .closing-support strong {
    font-size: clamp(42px, 13vw, 58px);
  }

  .closing-support .closing-total strong {
    font-size: clamp(29px, 8.8vw, 38px);
  }

  .closing-support i {
    height: 66px;
  }

  .closing-copy {
    font-size: 12px;
  }

  .footer {
    display: block;
    padding: 42px 24px;
    text-align: center;
  }

  .footer img {
    width: 150px;
    margin: 0 auto;
  }

  .footer p {
    margin-top: 24px;
    text-align: center;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
  }

  .lightbox {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .motion-strip-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }
  .motion-strip-viewport::-webkit-scrollbar { display: none; }
  .motion-strip-track {
    animation: none !important;
    transform: none;
  }
  .motion-strip-set[aria-hidden="true"] { display: none; }
}
