:root {
  --black: #050506;
  --ink: #0b0b10;
  --red: #e60012;
  --deep-red: #780007;
  --gold: #ffd45a;
  --gold-2: #b57a18;
  --cyan: #24e8ff;
  --white: #fffaf0;
  --muted: #b8b4aa;
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-feature-settings: "palt";
  text-shadow: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: #120000 url("../img/redcarten.jpg") center top / cover fixed no-repeat;
  color: var(--white);
  font-family: "Noto Sans JP", "M PLUS 1p", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  overflow-x: hidden;
}

body.intro-playing {
  overflow: hidden;
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.intro-video {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #000;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.intro-video.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video-media {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.intro-skip {
  position: absolute;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  min-width: 58px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.intro-skip:hover {
  background: rgba(230, 0, 18, 0.76);
  transform: translateY(-2px);
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.noise {
  overflow: hidden;
  opacity: 1;
  background: none;
  mix-blend-mode: screen;
}

.noise::before,
.noise::after {
  content: "";
  position: absolute;
  inset: -14%;
  background-repeat: repeat;
  will-change: transform, opacity;
}

.noise::before {
  background-image:
    radial-gradient(circle, rgba(255, 244, 196, 0.95) 0 3px, rgba(255, 180, 86, 0.5) 4px, transparent 10px),
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 2px, rgba(255, 210, 120, 0.42) 3px, transparent 8px),
    radial-gradient(circle, rgba(255, 170, 95, 0.55) 0 1px, transparent 5px);
  background-size: 310px 260px, 190px 220px, 96px 120px;
  background-position: 26px 48px, 96px 20px, 12px 80px;
  filter: blur(0.2px);
  animation: particleDriftLarge 18s linear infinite;
}

.noise::after {
  opacity: 0.76;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 1px, rgba(255, 220, 150, 0.38) 2px, transparent 6px),
    radial-gradient(circle, rgba(255, 120, 70, 0.72) 0 2px, transparent 7px),
    radial-gradient(circle, rgba(255, 235, 170, 0.95) 0 4px, rgba(255, 170, 80, 0.4) 5px, transparent 13px);
  background-size: 72px 96px, 230px 190px, 420px 360px;
  background-position: 18px 16px, 120px 70px, 220px 140px;
  filter: blur(0.6px);
  animation: particleDriftSmall 11s linear infinite;
}

.dechau-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 4vw, 44px);
  padding: 8px clamp(12px, 4vw, 40px);
  background: rgba(8, 8, 10, 0.88);
  border-bottom: 1px solid rgba(255, 66, 0, 0.55);
  box-shadow: 0 0 34px rgba(255, 66, 0, 0.25);
  backdrop-filter: blur(14px);
}

main,
.footer {
  position: relative;
  z-index: 2;
}

.dechau-logo {
  display: block;
  width: min(34vw, 210px);
}

.dechau-nav {
  display: flex;
  gap: clamp(8px, 2vw, 18px);
  font-size: clamp(0.72rem, 1.8vw, 0.92rem);
  font-weight: 900;
}

.dechau-nav a {
  padding: 6px 10px;
  border-bottom: 2px solid transparent;
  color: #fff;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.dechau-nav a:hover {
  color: #ff8a4a;
  border-color: #ff4200;
}

.hero {
  position: relative;
  min-height: calc(100vh - 52px);
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px) clamp(16px, 5vw, 76px) 36px;
  isolation: isolate;
  overflow: hidden;
}

.hero-inner {
  width: min(1500px, 100%);
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(10px, 1.4vw, 24px);
}

.hero-logo-wrap {
  position: relative;
}

.store-logo {
  position: relative;
  width: min(560px, 100%);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.78)) drop-shadow(0 0 18px rgba(255, 212, 90, 0.28));
}

.store-logo.reveal,
.store-logo.reveal.is-visible {
  transform: none;
}

.hero-copy {
  text-align: right;
}

.hero-copy h1 {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(4.1rem, 7.35vw, 8.9rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 0 #000, 0 8px 18px rgba(0, 0, 0, 0.9) !important;
  color: var(--white);
}

.remember-line,
.reload-line {
  display: block;
}

.re {
  color: var(--red);
  text-shadow: 0 4px 0 #000, 0 8px 18px rgba(0, 0, 0, 0.9) !important;
}

.catch {
  margin-top: clamp(12px, 1.25vw, 18px);
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.38rem, 2.35vw, 2.15rem);
  line-height: 1.65;
  font-weight: 900;
  text-shadow: 0 3px 0 #000, 0 7px 16px rgba(0, 0, 0, 0.9) !important;
}

.catch-next {
  display: block;
}

.catch strong {
  color: var(--red);
}

.open-panel {
  grid-column: 1 / -1;
  position: relative;
  padding: clamp(8px, 1.1vw, 14px) 0 0;
  background: transparent;
  border-top: 2px solid rgba(255, 212, 90, 0.76);
  border-bottom: 2px solid rgba(230, 0, 18, 0.78);
  box-shadow: none;
  transform: none;
  overflow: hidden;
}

.open-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 34%, rgba(255, 255, 255, 0.16) 46%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: shine 3.4s ease-in-out infinite;
}

.open-panel > * {
  position: relative;
  transform: none;
  text-align: center;
}

.venue {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 4px 0 #000, 0 8px 18px rgba(0, 0, 0, 0.9) !important;
}

.date {
  display: block;
  margin-top: 0.02em;
  color: var(--gold);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(5.7rem, 11.5vw, 12.3rem);
  line-height: 0.82;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.72);
  text-shadow: 0 7px 0 #000, 0 12px 24px rgba(0, 0, 0, 0.9) !important;
}

.date-main {
  font-size: 1em;
}

.date-dot {
  color: var(--red);
  font-size: 0.72em;
  text-shadow: 0 7px 0 #000, 0 12px 24px rgba(0, 0, 0, 0.9) !important;
}

.date-day {
  color: var(--white);
  font-size: 0.38em;
  letter-spacing: 0;
  text-shadow: 0 5px 0 #000, 0 10px 20px rgba(0, 0, 0, 0.9) !important;
}

.renewal {
  font-family: "Anton", "Bebas Neue", sans-serif;
  margin-top: clamp(0px, 0.4vw, 8px);
  font-size: clamp(5.8rem, 14.5vw, 16rem);
  line-height: 0.76;
  text-transform: uppercase;
  text-wrap: balance;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.72);
  text-shadow: 0 8px 0 #000, 0 14px 28px rgba(0, 0, 0, 0.92) !important;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 34px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(58px, 8vw, 106px) clamp(16px, 5vw, 70px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.phase-title {
  width: min(1120px, 100%);
  margin: 0 auto clamp(24px, 4vw, 46px);
  color: var(--gold);
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(3rem, 6.4vw, 7.4rem);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  letter-spacing: 0;
  text-shadow: 0 5px 0 #000, 0 11px 24px rgba(0, 0, 0, 0.88) !important;
}

.phase-title::first-letter {
  color: var(--red);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1.15fr);
  align-items: center;
  gap: clamp(24px, 5vw, 68px);
}

.dechau-section {
  background: transparent;
}

.dechau-section .section-inner {
  width: min(1320px, 100%);
}

.dechau-section .split {
  grid-template-columns: minmax(520px, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(28px, 4vw, 60px);
}

.dechau-section .section-copy {
  max-width: 600px;
}

.dechau-section .section-copy h2 {
  max-width: 600px;
  font-size: clamp(3.4rem, 4.25vw, 5rem);
  line-height: 1.06;
  word-break: keep-all;
  overflow-wrap: normal;
}

.dechau-section .section-copy h2 span {
  white-space: nowrap;
}

.section-copy h2,
.info-title {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.25rem, 5.6vw, 5.8rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.meiyuden-head h2 {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.2rem, 4.8vw, 5.05rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.section-copy h2 span {
  display: inline-block;
  margin-top: 0.16em;
  background: linear-gradient(90deg, #ff2a2a, #ffe45a, #21ff65, #22dfff, #b050ff);
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.22));
}

.section-copy p,
.meiyuden-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
}

.rainbow-card {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 45px rgba(255, 0, 190, 0.2);
  transform: rotate(1.2deg);
}

.rainbow-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(90deg, #ff164a, #ffe24b, #1eff67, #22dfff, #b14dff, #ff164a);
  filter: blur(18px);
  opacity: 0.55;
}

.date-strip {
  width: min(1040px, calc(100% - 64px));
  margin: clamp(40px, 5.8vw, 76px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  border: 0;
  background: transparent;
}

.date-strip div {
  min-height: clamp(132px, 8.8vw, 172px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 16px);
  padding: clamp(14px, 1.5vw, 22px) clamp(18px, 2vw, 28px);
  border: 1px solid rgba(255, 212, 90, 0.42);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.32));
  box-shadow: inset 0 0 30px rgba(255, 212, 90, 0.08), 0 14px 38px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.date-strip div:last-child {
  border-right: 1px solid rgba(255, 212, 90, 0.42);
}

.date-strip strong {
  font-family: "Anton", sans-serif;
  font-size: clamp(4.2rem, 6.9vw, 7.8rem);
  line-height: 0.84;
}

.date-strip span {
  color: var(--gold);
  font-family: "Anton", sans-serif;
  font-size: clamp(1.15rem, 1.65vw, 2rem);
  line-height: 1;
  transform: translateY(0.22em);
}

.meiyuden-section {
  background: transparent;
  overflow: hidden;
}

.meiyuden-head {
  display: grid;
  grid-template-columns: minmax(180px, 340px) 1fr;
  align-items: center;
  gap: clamp(18px, 5vw, 58px);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.meiyuden-head img {
  filter: drop-shadow(0 0 24px rgba(255, 212, 90, 0.35));
}

.meiyuden-head .meiyuden-period {
  display: flex;
  align-items: center;
  gap: 0.22em;
  margin: 0 0 clamp(10px, 1.4vw, 16px);
  color: var(--gold);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2.1rem, 4.7vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 5px 0 #000, 0 10px 22px rgba(0, 0, 0, 0.88) !important;
}

.meiyuden-head .meiyuden-period span {
  display: inline-block;
}

.meiyuden-head .meiyuden-period b {
  color: var(--white);
  font-weight: 400;
}

.poster-marquee {
  width: 100%;
  overflow: hidden;
  padding: 14px 0 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.poster-track {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  width: max-content;
  animation: marquee 42s linear infinite;
}

.poster-marquee.poster-staged .poster-track {
  animation-play-state: paused;
}

.poster-marquee.poster-staged.is-poster-complete .poster-track {
  animation-play-state: running;
}

.poster-marquee:hover .poster-track {
  animation-play-state: paused;
}

.poster-marquee.poster-staged.is-poster-complete:hover .poster-track {
  animation-play-state: paused;
}

.poster-card {
  position: relative;
  flex: 0 0 clamp(168px, 22vw, 270px);
  aspect-ratio: 0.71 / 1;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 212, 90, 0.56);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.64);
  contain: layout paint;
  transform-style: preserve-3d;
  opacity: 1;
  transform: none;
  filter: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  will-change: transform, opacity, filter;
}

.poster-card.poster-waiting {
  opacity: 0;
  transform: translateY(-72px) rotateX(76deg) rotateZ(-14deg) scale(0.84);
  filter: blur(8px) brightness(0.7);
  transition:
    opacity 0.82s ease var(--poster-delay, 0s),
    transform 0.96s cubic-bezier(0.16, 1, 0.3, 1) var(--poster-delay, 0s),
    filter 0.82s ease var(--poster-delay, 0s),
    box-shadow 0.25s ease;
}

.poster-card.poster-waiting.is-card-ready {
  opacity: 1;
  transform: translateY(0) rotateX(0) rotateZ(0) scale(1);
  filter: blur(0) brightness(1);
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.98) 0 4px, transparent 5px),
    radial-gradient(circle at 38% 42%, rgba(255, 244, 190, 0.88) 0 3px, transparent 4px),
    linear-gradient(112deg, transparent 38%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 224, 100, 0.85) 50%, rgba(255, 255, 255, 0.72) 52%, transparent 64%);
  opacity: 0;
  transform: translateX(-76%) rotate(12deg) scale(0.82);
  pointer-events: none;
}

.poster-card.poster-waiting.is-card-ready::before {
  animation: posterRevealSpark 1.08s ease-out calc(var(--poster-delay, 0s) + 0.16s) both;
}

.poster-card::after {
  content: "";
  position: absolute;
  inset: -18% -42%;
  z-index: 1;
  background: linear-gradient(112deg, transparent 30%, rgba(255, 255, 255, 0.18) 42%, rgba(255, 244, 190, 0.86) 50%, rgba(255, 255, 255, 0.18) 58%, transparent 70%);
  transform: translateX(-120%) skewX(-12deg);
  animation: posterGlint 4.8s ease-in-out infinite;
  pointer-events: none;
}

.poster-card:hover {
  transform: translateY(-12px) scale(1.025);
  box-shadow: 0 26px 70px rgba(230, 0, 18, 0.34);
  filter: saturate(1.16);
}

.poster-card:hover::after {
  animation-duration: 1.2s;
}

.poster-card img {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
}

.info-section {
  background: transparent;
}

.info-title {
  margin-bottom: clamp(24px, 5vw, 48px);
  font-family: "Anton", sans-serif;
  text-align: center;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: stretch;
}

.store-facts,
.map-frame {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

.store-facts {
  padding: clamp(18px, 3vw, 34px);
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.cta {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 12px 14px;
  font-weight: 900;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta:hover {
  transform: translateY(-4px);
  filter: brightness(1.12);
}

.cta.line {
  background: linear-gradient(135deg, #08c755, #00a840);
}

.cta.official {
  background: linear-gradient(135deg, #f31818, #93000a);
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  filter: saturate(0.98) contrast(1.05);
}

.footer {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 34px 16px 44px;
  color: rgba(255, 255, 255, 0.62);
  background: #000;
}

.footer img {
  width: min(260px, 70vw);
  filter: drop-shadow(0 0 18px rgba(255, 212, 90, 0.24));
}

.footer p {
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(92vw, 760px);
  max-height: 90vh;
  border: 1px solid rgba(255, 212, 90, 0.7);
  box-shadow: 0 0 80px rgba(230, 0, 18, 0.42);
  transform: scale(0.9) rotate(-1.5deg);
  transition: transform 0.28s cubic-bezier(.2, 1.3, .5, 1);
}

.lightbox.is-open img {
  transform: scale(1) rotate(0);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 0 22px rgba(230, 0, 18, 0.5);
}

@keyframes particleDriftLarge {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.68; }
  35% { opacity: 1; }
  100% { transform: translate3d(70px, -150px, 0) scale(1.04); opacity: 0.74; }
}

@keyframes particleDriftSmall {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
  45% { opacity: 0.95; }
  100% { transform: translate3d(-90px, -110px, 0) scale(1.08); opacity: 0.62; }
}

@keyframes shine {
  0%, 35% { transform: translateX(-130%); }
  70%, 100% { transform: translateX(130%); }
}

@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  80%, 100% { transform: translate(-50%, 22px); opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}

@keyframes posterGlint {
  0%, 58% { transform: translateX(-125%) skewX(-12deg); opacity: 0; }
  66% { opacity: 0.95; }
  82% { transform: translateX(125%) skewX(-12deg); opacity: 0; }
  100% { transform: translateX(125%) skewX(-12deg); opacity: 0; }
}

@keyframes posterRevealSpark {
  0%, 18% {
    opacity: 0;
    transform: translateX(-76%) rotate(12deg) scale(0.82);
  }
  46% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(86%) rotate(12deg) scale(1.08);
  }
}

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

@media (max-width: 1260px) {
  .hero-inner,
  .dechau-section .split {
    grid-template-columns: 1fr;
  }

  .dechau-section .section-copy {
    max-width: none;
  }

  .hero-copy {
    text-align: center;
  }

  .store-logo {
    margin: 0 auto;
  }

  .date-strip {
    width: min(100%, 760px);
  }
}

@media (max-width: 820px) {
  body {
    background-size: 100% auto;
    background-position: center top;
    background-attachment: scroll;
  }

  .dechau-header {
    flex-direction: column;
    gap: 4px;
  }

  .dechau-logo {
    width: min(56vw, 210px);
  }

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

  .hero-inner,
  .split,
  .meiyuden-head,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .dechau-section .section-inner {
    width: min(1120px, 100%);
  }

  .store-logo {
    width: min(390px, 90vw);
  }

  .noise::before {
    opacity: 0.62;
    filter: none;
    animation-duration: 26s;
  }

  .noise::after {
    display: none;
  }

  .poster-marquee {
    width: min(100%, 360px);
    margin-inline: auto;
    padding: 12px 0 28px;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .poster-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    gap: 12px;
    animation: none;
    transform: none;
    will-change: auto;
  }

  .poster-card {
    width: 100%;
    min-width: 0;
    flex-basis: auto;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.54);
  }

  .poster-card::after {
    inset: -16% -48%;
    animation-duration: 5.8s;
  }

  .poster-card[aria-hidden="true"] {
    display: none;
  }

  .poster-card:nth-of-type(7) {
    grid-column: 1 / -1;
    width: calc((100% - 12px) / 2);
    justify-self: center;
  }

  .date-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 340px);
    border: 0;
    background: transparent;
  }

  .date-strip div {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.34em;
    border-right: 0;
    border-bottom: 0;
    border: 1px solid rgba(255, 212, 90, 0.42);
    background: rgba(0, 0, 0, 0.34);
    box-shadow: inset 0 0 24px rgba(255, 212, 90, 0.08);
  }

  .date-strip div:last-child {
    border-bottom: 0;
  }

  .date-strip strong {
    font-size: clamp(3.45rem, 15.8vw, 4.95rem);
    line-height: 0.82;
  }

  .date-strip span {
    font-size: clamp(1.32rem, 5.8vw, 1.9rem);
    line-height: 1;
  }

  .cta-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .dechau-nav {
    width: 100%;
    justify-content: space-between;
  }

  .dechau-nav a {
    padding-inline: 4px;
  }

  .hero-copy h1 {
    font-size: clamp(1.02rem, 8.6vw, 2rem);
    line-height: 1;
    white-space: nowrap;
  }

  .remember-line,
  .reload-line {
    display: inline;
  }

  .remember-line {
    margin-right: 0.18em;
  }

  .catch {
    font-size: clamp(0.62rem, 3.35vw, 0.9rem);
    line-height: 1.35;
    white-space: nowrap;
    margin-top: 8px;
  }

  .catch-next {
    display: inline;
  }

  .venue {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .date {
    font-size: clamp(3.55rem, 15.5vw, 5.2rem);
    line-height: 0.88;
    margin-top: 6px;
  }

  .date-day {
    font-size: 0.36em;
  }

  .renewal {
    margin-top: 8px;
    font-size: clamp(4.35rem, 21vw, 6.8rem);
    line-height: 0.76;
  }

  .section-copy h2,
  .meiyuden-head h2,
  .info-title {
    font-size: clamp(1.72rem, 8.45vw, 2.55rem);
    line-height: 1.1;
  }

  .phase-title {
    margin-bottom: 22px;
    font-size: clamp(2.9rem, 13.8vw, 4.1rem);
    line-height: 0.98;
    white-space: nowrap;
  }

  .section-copy h2 {
    font-size: clamp(1.82rem, 8.7vw, 2.65rem);
  }

  .dechau-section .section-copy h2 {
    max-width: none;
    font-size: clamp(1.82rem, 8.7vw, 2.65rem);
    line-height: 1.1;
    word-break: normal;
    overflow-wrap: normal;
  }

  .meiyuden-head h2 {
    font-size: clamp(1.62rem, 8.15vw, 2.45rem);
    line-height: 1.12;
  }

  .meiyuden-head .meiyuden-period {
    justify-content: center;
    gap: 0.18em;
    margin-bottom: 12px;
    font-size: clamp(2.25rem, 11.5vw, 3.35rem);
    white-space: nowrap;
  }

}
