/* ============================================================
   させぼ競輪 新メインスタンド オープニングイベント LP
   ============================================================ */

:root {
  --gold: #FFD700;
  --gold-dark: #E6B800;
  --gold-deep: #B8860B;
  --blue: #1E3A8A;
  --blue-bright: #2563EB;
  --red: #DC2626;
  --red-dark: #991B1B;
  --white: #FFFFFF;
  --cream: #FFF9E6;
  --navy: #0F172A;
  --gray: #64748B;

  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-en: 'Bebas Neue', 'Noto Sans JP', sans-serif;

  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.6);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.2);

  --gradient-gold: linear-gradient(135deg, #FFE27A 0%, #FFD700 40%, #E6B800 70%, #B8860B 100%);
  --gradient-red: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #991B1B 100%);
  --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #1E3A8A 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--navy);
  background: #FFFBEA;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   CONFETTI CANVAS
   ============================================================ */
#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SECTION TITLE
   ============================================================ */
.sec-title {
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 40px;
  color: var(--navy);
  position: relative;
  padding: 20px 10px 0;
}
.sec-title-sub {
  display: block;
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  margin-bottom: 6px;
  font-weight: 400;
}
.sec-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 14px auto 0;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 20px 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 244, 184, 0.35) 0%, rgba(255, 215, 0, 0.25) 40%, rgba(30, 58, 138, 0.55) 100%),
    radial-gradient(ellipse at top, #FFF4B8 0%, #FFE27A 25%, #FFD700 50%, #E6B800 75%, #1E3A8A 100%);
  text-align: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 170%;
  max-width: 2200px;
  min-width: 1400px;
  opacity: 0.75;
  filter: saturate(1.05) contrast(1.02);
}
.hero-rays {
  position: absolute;
  inset: -10%;
  background:
    repeating-conic-gradient(
      from 0deg at 50% 40%,
      rgba(255,255,255,0.12) 0deg 6deg,
      transparent 6deg 20deg
    );
  animation: rotateRays 60s linear infinite;
  opacity: 0.35;
}
@keyframes rotateRays { to { transform: rotate(360deg); } }

.hero-sparkles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 2px),
    radial-gradient(circle, rgba(255,255,200,0.7) 1.5px, transparent 3px);
  background-size: 120px 120px, 200px 200px;
  background-position: 0 0, 40px 60px;
  animation: sparkle 6s ease-in-out infinite alternate;
  opacity: 0.5;
}
@keyframes sparkle {
  from { opacity: 0.3; }
  to { opacity: 0.7; }
}

/* ---------- Floating Colorful Balloons ---------- */
.floating-balloons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.fb {
  position: absolute;
  bottom: -180px;
  width: 56px;
  height: 70px;
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  box-shadow: inset -8px -14px 18px rgba(0,0,0,0.22), inset 6px 6px 10px rgba(255,255,255,0.55);
  animation: balloonRise linear infinite;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2));
}
.fb::before {
  /* string */
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 70px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.1));
  transform: translateX(-50%);
}
.fb::after {
  /* knot */
  content: "";
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  width: 10px; height: 8px;
  background: inherit;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: 0.85;
}
@keyframes balloonRise {
  0%   { transform: translate(0, 0) rotate(-4deg); }
  50%  { transform: translate(20px, -55vh) rotate(3deg); }
  100% { transform: translate(-10px, -120vh) rotate(-3deg); }
}

/* colors + positions + timing per balloon */
.fb-1  { left:  4%; background: radial-gradient(circle at 30% 30%, #FF9AA2, #FF5A6E); animation-duration: 18s; animation-delay: -1s; }
.fb-2  { left: 12%; background: radial-gradient(circle at 30% 30%, #FFD27A, #F59E0B); animation-duration: 22s; animation-delay: -5s; width: 48px; height: 60px; }
.fb-3  { left: 20%; background: radial-gradient(circle at 30% 30%, #A5D8FF, #2563EB); animation-duration: 20s; animation-delay: -9s; }
.fb-4  { left: 28%; background: radial-gradient(circle at 30% 30%, #C8B6FF, #7C3AED); animation-duration: 24s; animation-delay: -3s; width: 62px; height: 78px; }
.fb-5  { left: 36%; background: radial-gradient(circle at 30% 30%, #B7F7C3, #16A34A); animation-duration: 19s; animation-delay: -12s; }
.fb-6  { left: 44%; background: radial-gradient(circle at 30% 30%, #FFE27A, #E6B800); animation-duration: 21s; animation-delay: -7s; }
.fb-7  { left: 52%; background: radial-gradient(circle at 30% 30%, #FFB0C8, #DC2626); animation-duration: 23s; animation-delay: -2s; width: 52px; height: 66px; }
.fb-8  { left: 60%; background: radial-gradient(circle at 30% 30%, #B9E5FF, #1E3A8A); animation-duration: 17s; animation-delay: -10s; }
.fb-9  { left: 68%; background: radial-gradient(circle at 30% 30%, #FFD27A, #F59E0B); animation-duration: 25s; animation-delay: -4s; width: 60px; height: 76px; }
.fb-10 { left: 76%; background: radial-gradient(circle at 30% 30%, #FF9AA2, #EF4444); animation-duration: 20s; animation-delay: -14s; }
.fb-11 { left: 84%; background: radial-gradient(circle at 30% 30%, #B7F7C3, #10B981); animation-duration: 22s; animation-delay: -6s; width: 50px; height: 64px; }
.fb-12 { left: 92%; background: radial-gradient(circle at 30% 30%, #C8B6FF, #6D28D9); animation-duration: 19s; animation-delay: -11s; }
.fb-13 { left: 16%; background: radial-gradient(circle at 30% 30%, #FFF4B0, #FFD700); animation-duration: 26s; animation-delay: -15s; width: 44px; height: 56px; }
.fb-14 { left: 72%; background: radial-gradient(circle at 30% 30%, #FFFFFF, #D1D5DB); animation-duration: 24s; animation-delay: -8s; width: 46px; height: 58px; }

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  padding-top: 40px;
}

.hero-tagline {
  font-family: var(--font-en);
  letter-spacing: 0.25em;
  margin-bottom: 28px;
  font-weight: 700;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tagline-line {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0 0.1em;
  /* initial hidden — revealed by wipe animation */
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  animation: taglineWipe 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.tagline-line::before {
  /* wipe highlight bar that travels with the reveal */
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 60px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.9), transparent);
  filter: blur(6px);
  animation: taglineWipeBar 1s cubic-bezier(.2,.7,.2,1) forwards;
  z-index: 1;
}

.tagline-line.line-1 {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: var(--navy);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 215, 0, 0.5);
  animation-delay: 0.9s;
}
.tagline-line.line-1::before { animation-delay: 0.9s; }

.tagline-line.line-2 {
  font-size: clamp(1.8rem, 5.5vw, 3.4rem);
  letter-spacing: 0.18em;
  color: transparent;
  background: linear-gradient(
    100deg,
    #991B1B 0%,
    #DC2626 30%,
    #FFE27A 48%,
    #FFFFFF 52%,
    #FFE27A 56%,
    #DC2626 75%,
    #991B1B 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 3px 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(220, 38, 38, 0.35));
  animation:
    taglineWipe 1.1s cubic-bezier(.2,.7,.2,1) 1.5s forwards,
    taglineShine 4s linear 2.8s infinite;
}
.tagline-line.line-2::before { animation-delay: 1.5s; }

@keyframes taglineWipe {
  0%   { clip-path: inset(0 100% 0 0); opacity: 0; transform: translateY(10px); }
  30%  { opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; transform: translateY(0); }
}
@keyframes taglineWipeBar {
  0%   { right: 100%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { right: -20%; opacity: 0; }
}
@keyframes taglineShine {
  0%   { background-position: 150% 0; }
  100% { background-position: -150% 0; }
}

.hero-logo-wrap {
  position: relative;
  margin: 0 auto 32px;
  display: block;
  width: 100%;
  max-width: 1150px;
  animation: logoIn 1.6s cubic-bezier(.2,.9,.3,1.2) both;
}
.hero-logo {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 18px 34px rgba(0,0,0,0.5))
    drop-shadow(0 0 40px rgba(255, 215, 0, 0.75));
  animation: logoPulse 3.2s ease-in-out infinite;
}
@keyframes logoIn {
  0%   { opacity: 0; transform: scale(0.25) rotate(-10deg); filter: blur(8px); }
  50%  { opacity: 1; transform: scale(1.15) rotate(3deg); filter: blur(0); }
  75%  { transform: scale(0.96) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); filter: blur(0); }
}
@keyframes logoPulse {
  0%, 100% {
    filter: drop-shadow(0 18px 34px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.75));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 22px 44px rgba(0,0,0,0.55)) drop-shadow(0 0 70px rgba(255, 215, 0, 1));
    transform: scale(1.03);
  }
}

/* Logo glow aura behind */
.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 140%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at center,
      rgba(255, 235, 150, 0.85) 0%,
      rgba(255, 215, 0, 0.55) 25%,
      rgba(255, 165, 0, 0.25) 45%,
      transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 3.2s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

/* Shimmer sweep across logo */
.logo-shimmer {
  position: absolute;
  top: 0; left: -30%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(2px);
  animation: shimmerSweep 4.5s ease-in-out infinite;
  animation-delay: 1.5s;
}
@keyframes shimmerSweep {
  0%   { left: -40%; opacity: 0; }
  15%  { opacity: 1; }
  55%  { left: 110%; opacity: 0; }
  100% { left: 110%; opacity: 0; }
}

/* Sparkle stars */
.logo-sparkle {
  position: absolute;
  color: #FFF8C4;
  font-size: clamp(18px, 3vw, 32px);
  z-index: 4;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.9), 0 0 24px rgba(255, 255, 255, 0.7);
  animation: sparkleTwinkle 2s ease-in-out infinite;
  pointer-events: none;
}
.logo-sparkle.s1 { top: -10px; left: 8%;   animation-delay: 0s; }
.logo-sparkle.s2 { top: 12%;   right: 4%;  animation-delay: 0.5s; }
.logo-sparkle.s3 { bottom: 10%; left: 3%;  animation-delay: 1s; }
.logo-sparkle.s4 { bottom: -8px; right: 12%; animation-delay: 1.5s; }
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* Hero intro text block */
.hero-intro {
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid var(--gold);
  border-radius: 18px;
  padding: 22px 28px;
  max-width: 680px;
  margin: 0 auto 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(4px);
  animation: introFadeIn 1.2s ease 0.8s both;
}
@keyframes introFadeIn {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-intro-lead {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
}
.hero-intro-date {
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.hero-intro-body {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  color: var(--navy);
  line-height: 1.75;
  font-weight: 700;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-weight: 900;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  text-decoration: none;
  border-radius: 999px;
  min-height: 48px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.05em;
}
.btn-primary {
  background: var(--gradient-red);
  color: var(--white);
  box-shadow: 0 8px 0 var(--red-dark), 0 15px 30px rgba(220, 38, 38, 0.4);
  border: 3px solid var(--gold);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 var(--red-dark), 0 20px 40px rgba(220, 38, 38, 0.5), 0 0 30px var(--gold);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(2px); box-shadow: 0 4px 0 var(--red-dark); }
.hero-cta { animation: ctaBounce 2.2s ease-in-out infinite; }
@keyframes ctaBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hero-concierges {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(10px, 5vw, 40px);
  z-index: 4;
  padding: 0 20px;
}
.mini-char {
  width: clamp(90px, 16vw, 160px);
  height: clamp(90px, 16vw, 160px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.3));
  animation: miniBob 3s ease-in-out infinite;
}
.mini-char:nth-child(1) { animation-delay: 0s; }
.mini-char:nth-child(2) { animation-delay: 0.4s; }
.mini-char:nth-child(3) { animation-delay: 0.8s; }
@keyframes miniBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-sec {
  background: var(--navy);
  color: var(--white);
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.countdown-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.2), transparent 50%);
  z-index: 0;
}
.countdown-sec .sec-title { color: var(--white); position: relative; z-index: 1; }
.countdown-sec .sec-title-sub { color: var(--gold); }

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 1.5vw, 16px);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin: 20px auto;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(70px, 15vw, 120px);
  padding: 12px 8px;
  background: linear-gradient(180deg, #1a2744 0%, #0a1226 100%);
  border: 2px solid var(--gold);
  border-radius: 12px;
  box-shadow: var(--shadow-gold), inset 0 2px 10px rgba(255,215,0,0.15);
}
.cd-num {
  font-family: var(--font-en);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255,215,0,0.6);
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cd-num.flip { animation: cdFlip 0.5s ease; }
@keyframes cdFlip {
  0%   { transform: rotateX(0); }
  50%  { transform: rotateX(90deg); opacity: 0.4; }
  100% { transform: rotateX(0); }
}
.cd-label {
  font-family: var(--font-en);
  font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 4px;
}
.cd-colon {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--gold);
  animation: colonBlink 1s ease-in-out infinite;
}
@keyframes colonBlink { 0%,100% {opacity:1;} 50% {opacity:0.3;} }

.countdown-target {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--gold);
  font-weight: 700;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   EVENT SECTION (Hoikenta)
   ============================================================ */
.event-sec {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(180deg, #FFFBEA 0%, #FFF0D0 100%);
  overflow: hidden;
}
.event-stage-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(255, 215, 0, 0.3), transparent 60%),
    repeating-linear-gradient(
      90deg,
      rgba(220, 38, 38, 0.08) 0 30px,
      rgba(220, 38, 38, 0.15) 30px 60px
    );
  z-index: 0;
  pointer-events: none;
}
.event-sec .container { position: relative; z-index: 1; }

.hoikenta-card {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  border: 6px solid var(--red);
  padding: 48px 36px 36px;
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2), inset 0 0 0 3px var(--white), inset 0 0 0 5px rgba(255, 215, 0, 0.4);
  max-width: 920px;
  margin: 0 auto;
}
.hoikenta-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--red);
  border: 4px solid var(--red);
  padding: 8px 30px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
  white-space: nowrap;
}
.hoikenta-body {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: 30px;
  align-items: center;
}
.hoikenta-photo {
  text-align: center;
}
.hoikenta-photo img {
  max-height: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}
.hoikenta-info { text-align: left; }
.hoikenta-time {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.hoikenta-name {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 0 rgba(220, 38, 38, 0.15);
}
.hoikenta-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hoikenta-tags .tag {
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 900;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}
.sub-mc {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--gray);
}
.sub-mc strong {
  color: var(--navy);
  font-weight: 900;
  font-size: 1.1em;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-sec {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}
.timeline {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}
.timeline li {
  display: grid;
  grid-template-columns: 110px 60px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 8px;
  position: relative;
}
.tl-time {
  font-family: var(--font-en);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: right;
  padding-right: 16px;
}
.tl-icon {
  font-size: 1.8rem;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 4px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1;
}
.tl-text {
  font-size: 1.05rem;
  font-weight: 700;
  padding-left: 10px;
}
.tl-highlight .tl-text {
  color: var(--red);
  font-size: 1.15rem;
}
.tl-highlight .tl-icon {
  background: var(--gradient-red);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
}
.tl-highlight .tl-time { color: var(--red); }

/* ============================================================
   CONTENTS (4 cards)
   ============================================================ */
.contents-sec {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFBEA 0%, #FFE8B3 100%);
  position: relative;
  overflow: hidden;
}
.contents-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,215,0,0.3) 1px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
}
.card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.25);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.3), transparent 70%);
  pointer-events: none;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.card-mini {
  width: 70px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}
.card-num {
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 8px;
}
.card-title {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-left: auto;
  flex: 1 1 100%;
  order: 3;
}
.card-hook {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 10px;
  line-height: 1.4;
}
.card-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.7;
}
.card-points {
  list-style: none;
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 18px;
}
.card-points li {
  padding: 6px 0;
  font-weight: 700;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
}
.card-points li:last-child { border-bottom: none; }
.card-points strong { color: var(--red); font-size: 1.1em; }

/* Mystery card prize list */
.prize-list {
  margin-top: 10px;
  background: linear-gradient(135deg, #FFF8D6 0%, #FFE98A 100%);
  padding: 20px;
  border-radius: 14px;
  border: 2px dashed var(--gold-dark);
}
.prize-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.4;
}
.prize-total {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.8em;
  color: var(--red);
  margin: 0 6px;
  vertical-align: -2px;
  text-shadow: 2px 2px 0 var(--gold);
}
.prize-list ul { list-style: none; }
.prize {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 6px;
  border-bottom: 1px dashed rgba(0,0,0,0.15);
  font-size: 0.92rem;
  font-weight: 700;
}
.prize:last-child { border-bottom: none; }
.prize .rank {
  background: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 900;
  white-space: nowrap;
  font-size: 0.9em;
}
.prize.prize-1 .rank { background: var(--gradient-gold); color: var(--navy); box-shadow: 0 2px 6px rgba(255,215,0,0.5); }
.prize.prize-1 .item { color: var(--red); font-weight: 900; font-size: 1.05em; }
.prize .val { font-family: var(--font-en); letter-spacing: 0.05em; color: var(--navy); text-align: right; }
.prize .val small { display: block; font-size: 0.75em; color: var(--gray); font-family: var(--font-jp); letter-spacing: 0; }

/* Special card backgrounds */
.card-mystery { background: linear-gradient(135deg, #FFFFFF 0%, #FFF4D6 100%); }
.card-kids    { background: linear-gradient(135deg, #FFFFFF 0%, #DBEAFE 100%); }
.card-balloon { background: linear-gradient(135deg, #FFFFFF 0%, #FEE2E2 100%); }
.card-mochi   { background: linear-gradient(135deg, #FFFFFF 0%, #FFE4B8 100%); }

/* ============================================================
   FACILITY
   ============================================================ */
.facility-sec {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}
.facility-lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 40px;
  font-weight: 700;
}
.facility-lead strong { color: var(--red); }

.concierges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.conci {
  text-align: center;
  position: relative;
}
.conci img {
  max-height: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.18));
  transition: transform 0.3s ease;
}
.conci:hover img { transform: translateY(-8px); }
.conci figcaption {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.conci-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
}
.conci-nami {
  font-family: var(--font-en);
  letter-spacing: 0.25em;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.floors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.floor {
  padding: 26px 22px;
  background: linear-gradient(180deg, var(--cream), var(--white));
  border-radius: 16px;
  border-top: 6px solid var(--gold);
  box-shadow: var(--shadow-card);
  position: relative;
}
.floor-label {
  position: absolute;
  top: -20px;
  left: 20px;
  background: var(--gradient-blue);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.floor-title {
  font-size: 1.1rem;
  font-weight: 900;
  margin: 10px 0 8px;
  color: var(--navy);
}
.floor p {
  font-size: 0.93rem;
  color: var(--gray);
}
.facility-more {
  text-align: center;
  margin-top: 30px;
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================================
   CONTINUED
   ============================================================ */
.continued-sec {
  padding: 80px 20px;
  background:
    linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.continued-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,215,0,0.2), transparent 50%);
}
.continued-sec .container { position: relative; z-index: 1; }
.continued-kicker {
  display: inline-block;
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: 0.15em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 4px 20px;
  margin-bottom: 10px;
  font-weight: 400;
}
.continued-title {
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.4;
}
.continued-desc {
  font-size: 1.05rem;
  line-height: 2;
  color: #E5E7EB;
}
.continued-desc strong {
  color: var(--gold);
  font-weight: 900;
}

.web-release {
  position: relative;
  display: inline-block;
  margin-top: 32px;
  padding: 22px 40px 22px 68px;
  background: var(--white);
  border: 4px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35), 0 0 40px rgba(255, 215, 0, 0.25);
  animation: webReleasePulse 2.2s ease-in-out infinite;
}
@keyframes webReleasePulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35), 0 0 40px rgba(255, 215, 0, 0.25); }
  50%      { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(255, 215, 0, 0.55), 0 0 55px rgba(255, 215, 0, 0.4); }
}
.web-release-badge {
  position: absolute;
  top: -16px;
  left: 18px;
  background: var(--gradient-red);
  color: var(--gold);
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  padding: 5px 16px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
  font-weight: 900;
}
.web-release-text {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  text-align: left;
}
.web-release-text strong {
  color: var(--red);
  font-size: 1.25em;
  letter-spacing: 0.02em;
}
.web-release::before {
  content: "🌐";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

/* ============================================================
   ACCESS
   ============================================================ */
.access-sec {
  padding: 80px 0;
  background: var(--cream);
}
.access-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  background: var(--white);
  padding: 36px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--gold);
}
.access-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  border-left: 6px solid var(--red);
  padding-left: 14px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.access-addr {
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 500;
}
.access-tel {
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.access-tel a {
  color: var(--red);
  text-decoration: none;
  font-family: var(--font-en);
  font-size: 1.3em;
  letter-spacing: 0.05em;
}
.access-web a {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue-bright);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--blue-bright);
  padding-bottom: 2px;
}
.access-web a:hover { color: var(--red); border-color: var(--red); }
.access-map iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: #CBD5E1;
  padding: 50px 20px 30px;
  text-align: center;
}
.footer .notes {
  list-style: none;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: #9CA3AF;
  line-height: 1.9;
}
.footer-host {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.copy {
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: #64748B;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero { padding-bottom: 180px; }
  .hoikenta-card { padding: 42px 20px 26px; }
  .hoikenta-body { grid-template-columns: 1fr; gap: 14px; }
  .hoikenta-photo img { max-height: 260px; }
  .hoikenta-info { text-align: center; }
  .hoikenta-tags { justify-content: center; }
  .hoikenta-badge { font-size: 1rem; padding: 6px 22px; }
  .cards { grid-template-columns: 1fr; gap: 22px; }
  .concierges { gap: 10px; }
  .conci img { max-height: 280px; }
  .floors { grid-template-columns: 1fr; gap: 28px; }
  .access-block { grid-template-columns: 1fr; padding: 24px; }
  .timeline::before { left: 85px; }
  .timeline li { grid-template-columns: 75px 50px 1fr; gap: 8px; }
  .tl-time { font-size: 1.3rem; padding-right: 8px; }
  .tl-icon { width: 46px; height: 46px; font-size: 1.4rem; }
  .tl-text { font-size: 0.95rem; padding-left: 4px; }
  .tl-highlight .tl-text { font-size: 1rem; }
  .deco-balloon-left  { top: 10%; left: -60px; }
  .deco-balloon-right { top: 22%; right: -60px; }
  .hero { padding-top: 60px; padding-bottom: 140px; min-height: 95vh; }
  .hero-concierges { gap: 4px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-intro { padding: 18px 18px; }
  .btn { padding: 14px 28px; }
  .web-release { padding: 18px 22px 18px 52px; }
  .web-release::before { font-size: 1.5rem; left: 14px; }
  .cd-unit { min-width: 62px; padding: 10px 4px; }
  .cd-label { font-size: 0.6rem; }
  .card { padding: 24px 18px; }
  .card-header { gap: 10px; }
  .card-mini { width: 54px; }
  .prize { grid-template-columns: auto 1fr; grid-template-rows: auto auto; font-size: 0.85rem; }
  .prize .val { grid-column: 1 / -1; text-align: left; padding-left: 4px; }
  .speech-bubble { font-size: 0.9rem; padding: 10px 16px; top: 0; right: 10px; }
  .sec-title { margin-bottom: 30px; }
  .concierges { grid-template-columns: repeat(3, 1fr); }
  .conci img { max-height: 200px; }
  .conci-name { font-size: 0.85rem; }
  .conci-nami { font-size: 0.7rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-rays { display: none; }
}
