/* ===========================
   LOVE MY KIDS STYLE - MAIN CSS
   Palette: mint, pink, yellow, lavender, coral
   =========================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Noto+Sans+JP:wght@400;700;900&display=swap');

:root {
  --mint:    #4DD9AC;
  --mint-lt: #B2F0E0;
  --pink:    #FF6B9D;
  --pink-lt: #FFD6E7;
  --yellow:  #FFD93D;
  --yellow-lt:#FFF5B7;
  --lavender:#A78BFA;
  --lav-lt:  #EDE9FE;
  --coral:   #FF8C69;
  --coral-lt:#FFE4DA;
  --sky:     #60C8F5;
  --sky-lt:  #D0EEFF;
  --white:   #FFFFFF;
  --dark:    #1A1A2E;
  --text:    #333355;
  --radius:  20px;
  --shadow:  0 8px 32px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Nunito', sans-serif;
  background: #FAFEFF;
  color: var(--text);
  overflow-x: hidden;
}

/* ---- Utility ---- */
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.tag {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ---- Wave divider ---- */
.wave-top, .wave-bottom { display:block; width:100%; line-height:0; }
.wave-top  { margin-bottom:-2px; }
.wave-bottom { margin-top:-2px; }

/* ---- Section heading ---- */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading .label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .15em;
  padding: 4px 20px;
  border-radius: 20px;
  margin-bottom: 10px;
  color: #fff;
}
.section-heading h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.3;
}
.section-heading p {
  margin-top: 10px;
  font-size: 1rem;
  color: #666;
}

/* ===========================
   STICKY CTA BAR
   =========================== */
#sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--pink) 0%, var(--coral) 100%);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -4px 20px rgba(255,107,157,.35);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#sticky-bar.show { transform: translateY(0); }
#sticky-bar a {
  background: #fff;
  color: var(--pink);
  font-weight: 900;
  font-size: .9rem;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .2s;
}
#sticky-bar a:hover { transform: scale(1.05); }

/* ===========================
   HERO / FIRST VIEW
   =========================== */
#hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(135deg, #1A3A2E 0%, #0D2233 60%, #2D1040 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* hero background image overlay */
#hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/team-stadium.jpg') center/cover no-repeat;
  opacity: .25;
}

/* floating decorations */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-deco span {
  position: absolute;
  font-size: 2rem;
  animation: floatUp 6s infinite linear;
  opacity: 0;
}
.hero-deco span:nth-child(1){ left:8%;  animation-delay:0s;   font-size:1.8rem; }
.hero-deco span:nth-child(2){ left:22%; animation-delay:1.2s; font-size:2.5rem; }
.hero-deco span:nth-child(3){ left:40%; animation-delay:2.4s; font-size:1.5rem; }
.hero-deco span:nth-child(4){ left:60%; animation-delay:0.8s; font-size:2rem;   }
.hero-deco span:nth-child(5){ left:78%; animation-delay:1.9s; font-size:1.8rem; }
.hero-deco span:nth-child(6){ left:90%; animation-delay:3.1s; font-size:2.2rem; }
@keyframes floatUp {
  0%   { transform:translateY(100vh) rotate(0deg);   opacity:0; }
  10%  { opacity:.8; }
  90%  { opacity:.6; }
  100% { transform:translateY(-120px) rotate(360deg); opacity:0; }
}

/* jersey numbers */
.jersey-nums {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.jersey-num {
  position: absolute;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  animation: numPulse 4s ease-in-out infinite;
}
@keyframes numPulse {
  0%,100% { opacity:.04; transform: scale(1); }
  50%      { opacity:.10; transform: scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 20px 60px;
}

/* top badges row */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-badge {
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .06em;
}
.badge-free  { background: var(--yellow);  color: #333; }
.badge-kids  { background: var(--mint);    color: #fff; }
.badge-fan   { background: var(--lavender);color: #fff; }

/* main catch */
.hero-catch {
  text-align: center;
  margin-bottom: 28px;
}
.hero-catch .rainbow-text {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 4.5rem);
  background: linear-gradient(90deg, var(--yellow), var(--pink), var(--mint), var(--lavender), var(--coral));
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbowFlow 4s linear infinite;
  line-height: 1.2;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(255,217,61,.4));
}
@keyframes rainbowFlow {
  0%   { background-position: 0%; }
  100% { background-position: 300%; }
}
.hero-catch .sub {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  margin-top: 10px;
  font-weight: 700;
}
.hero-catch .sub2 {
  display: block;
  color: var(--yellow);
  font-size: clamp(.85rem, 2vw, 1.1rem);
  margin-top: 6px;
  font-weight: 700;
}

/* prizes row */
.hero-prizes {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.prize-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 16px 20px;
  text-align: center;
  width: 130px;
  transition: transform .3s;
  cursor: default;
}
.prize-card:hover { transform: translateY(-6px) scale(1.04); }
.prize-card img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 8px;
}
.prize-card .p-name {
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 900;
}
.prize-card .p-label {
  color: rgba(255,255,255,.8);
  font-size: .65rem;
}

/* date card */
.hero-info-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 24px;
  max-width: 520px;
  margin: 0 auto 32px;
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: center;
}
.info-item .label2 {
  font-size: .65rem;
  color: var(--mint-lt);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.info-item .value {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  margin-top: 4px;
}

/* hero CTA */
.hero-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255,107,157,.5);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .05em;
  border: 3px solid rgba(255,255,255,.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(255,107,157,.65);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.4);
  transition: all .2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.hero-note {
  color: rgba(255,255,255,.6);
  font-size: .75rem;
}

/* free badge big */
.free-badge {
  position: absolute;
  top: 30px;
  right: 24px;
  width: 100px;
  height: 100px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(255,217,61,.6);
  animation: badgePop .8s cubic-bezier(.34,1.56,.64,1) .5s both;
}
.free-badge .big { font-size: 1.5rem; font-weight: 900; color: #333; line-height:1; }
.free-badge .small { font-size: .6rem; font-weight: 900; color: #555; }
@keyframes badgePop {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg);   opacity: 1; }
}

/* scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 2rem;
  animation: bounce 1.5s infinite;
  z-index: 5;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* team image strip */
.hero-team-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: url('../images/team-aerial.jpg') center 60%/cover no-repeat;
  mask-image: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  z-index: 1;
}

/* ===========================
   MARQUEE BANNER
   =========================== */
.marquee-section {
  background: linear-gradient(90deg, var(--pink), var(--coral), var(--yellow), var(--mint), var(--lavender));
  background-size: 400%;
  animation: gradShift 6s ease infinite;
  padding: 14px 0;
  overflow: hidden;
}
@keyframes gradShift {
  0%,100% { background-position: 0%; }
  50%      { background-position: 100%; }
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .05em;
  padding: 0 24px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================
   LOTTERY SECTION  (sec-2)
   =========================== */
#lottery {
  background: linear-gradient(180deg, var(--pink-lt) 0%, var(--yellow-lt) 100%);
  padding: 80px 0;
  position: relative;
}
.lottery-heading .label { background: var(--pink); }

.prize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.prize-big-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s;
  position: relative;
}
.prize-big-card:hover { transform: translateY(-8px); }

.prize-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: #333;
  font-weight: 900;
  font-size: .75rem;
  padding: 4px 14px;
  border-radius: 20px;
}
.prize-big-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.prize-big-info {
  padding: 18px 20px 22px;
  text-align: center;
}
.prize-big-info .name {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--pink);
  margin-bottom: 4px;
}
.prize-big-info .desc {
  font-size: .82rem;
  color: #888;
}

/* lottery steps */
.lottery-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}
.lottery-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--pink) 0 16px, transparent 16px 28px);
  border-radius: 2px;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.step-num.s1 { background: linear-gradient(135deg,var(--pink),var(--coral)); }
.step-num.s2 { background: linear-gradient(135deg,var(--mint),var(--sky)); }
.step-num.s3 { background: linear-gradient(135deg,var(--yellow),var(--coral)); }
.step-label {
  font-weight: 900;
  font-size: .95rem;
  text-align: center;
  margin-bottom: 6px;
}
.step-desc {
  font-size: .78rem;
  text-align: center;
  color: #777;
  line-height: 1.5;
}

/* ===========================
   EVENT OVERVIEW  (sec-3)
   =========================== */
#overview {
  background: #fff;
  padding: 80px 0;
  position: relative;
}
.overview-heading .label { background: var(--mint); }

.overview-photo-wrap {
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.overview-photo-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.overview-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  padding: 20px 24px 18px;
  font-weight: 900;
  font-size: 1.1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.info-box {
  background: var(--sky-lt);
  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  transition: transform .3s;
}
.info-box:hover { transform: scale(1.04); }
.info-box .icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.info-box .key  { font-size: .7rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: .1em; }
.info-box .val  { font-size: 1rem; font-weight: 900; color: var(--dark); margin-top: 4px; }

/* timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0; bottom: 0;
  width: 4px;
  background: repeating-linear-gradient(180deg,var(--mint) 0 12px, transparent 12px 20px);
  border-radius: 2px;
}
.tl-item {
  position: relative;
  padding: 0 0 24px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--mint);
}
.tl-time {
  font-size: .8rem;
  font-weight: 900;
  color: var(--mint);
  min-width: 50px;
  padding-top: 2px;
}
.tl-body .tl-title { font-weight: 900; font-size: .95rem; }
.tl-body .tl-desc  { font-size: .8rem; color: #888; margin-top: 2px; }
.tl-emoji { font-size: 1.3rem; }

/* ===========================
   KIDS ZONE  (sec-4)
   =========================== */
#kids-zone {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, var(--mint-lt) 0%, var(--yellow-lt) 100%);
}
.kids-heading .label { background: var(--coral); }

/* circular photo + text */
.kids-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
@media(max-width:640px){ .kids-feature { grid-template-columns:1fr; } }

.kids-photo-circle {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.kids-photo-circle img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(77,217,172,.35);
  border: 8px solid #fff;
}
.kids-photo-sticker {
  position: absolute;
  background: var(--yellow);
  color: #333;
  font-weight: 900;
  font-size: .8rem;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.kids-photo-sticker.s1 { top: 10%;  right: -10%; }
.kids-photo-sticker.s2 { bottom: 12%; left: -8%; }

.kids-text h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.4;
}
.activity-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.activity-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 3px 12px rgba(0,0,0,.07);
  transition: transform .2s;
}
.activity-list li:hover { transform: translateX(6px); }
.activity-list li .ai { font-size: 1.4rem; }

/* ===========================
   CLINIC  (sec-5)
   =========================== */
#clinic {
  background: var(--dark);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.clinic-bg-deco {
  position: absolute;
  inset: 0;
  background: url('../images/kids-soccer.jpg') center/cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.clinic-heading .label { background: var(--lavender); }
.clinic-heading h2 { color: #fff; }
.clinic-heading p   { color: rgba(255,255,255,.6); }

.clinic-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media(max-width:640px){ .clinic-layout { grid-template-columns:1fr; } }

.clinic-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  position: relative;
}
.clinic-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.clinic-badge-limited {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  font-size: .8rem;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(255,107,157,.5);
}

.clinic-text h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.4;
}
.clinic-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.clinic-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
}
.clinic-text ul li .ci { font-size: 1.1rem; }

.btn-accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--coral));
  color: #333;
  font-weight: 900;
  font-size: .95rem;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255,217,61,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,217,61,.5);
}

/* ===========================
   BUS ARRIVAL  (sec-6)
   =========================== */
#bus-arrival {
  background: linear-gradient(180deg, var(--lav-lt) 0%, var(--pink-lt) 100%);
  padding: 80px 0;
}
.bus-heading .label { background: var(--lavender); }

.bus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
@media(max-width:640px){ .bus-layout { grid-template-columns:1fr; } }

.bus-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bus-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.bus-text h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.4;
}
.bus-points { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bus-points li {
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0,0,0,.07);
}
.bus-points li .bi { font-size: 1.4rem; }

/* ===========================
   WARMUP  (sec-7)
   =========================== */
#warmup {
  background: #fff;
  padding: 80px 0;
}
.warmup-heading .label { background: var(--mint); }

.warmup-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
@media(max-width:640px){ .warmup-layout { grid-template-columns:1fr; flex-direction:column; } }

.warmup-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.warmup-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.warmup-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--mint);
  color: #fff;
  font-weight: 900;
  font-size: .8rem;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(77,217,172,.5);
}

.warmup-text h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}
.warmup-text p {
  font-size: .92rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 16px;
}
.highlight-box {
  background: var(--mint-lt);
  border-left: 5px solid var(--mint);
  border-radius: 0 16px 16px 0;
  padding: 14px 18px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
}

/* ===========================
   MATCH  (sec-8)
   =========================== */
#match {
  background: linear-gradient(180deg, #0D1F35 0%, #1A3050 100%);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.match-bg {
  position: absolute;
  inset: 0;
  background: url('../images/soccer-action.jpg') center/cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.match-heading .label { background: var(--sky); color: #fff; }
.match-heading h2 { color: #fff; }
.match-heading p   { color: rgba(255,255,255,.6); }

.match-scoreboard {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  backdrop-filter: blur(8px);
}
.match-scoreboard .vs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.team-name {
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.3;
}
.vs-text {
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255,107,157,.5);
}
.match-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.match-meta .meta-item {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.match-meta .meta-item strong {
  display: block;
  color: var(--yellow);
  font-size: 1rem;
}

.match-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.perk-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: transform .3s;
}
.perk-card:hover { transform: translateY(-6px); }
.perk-card .pe { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.perk-card h4 { font-size: .95rem; font-weight: 900; color: var(--yellow); margin-bottom: 6px; }
.perk-card p  { font-size: .78rem; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ===========================
   HALFTIME  (sec-9)
   =========================== */
#halftime {
  background: linear-gradient(135deg, #2D1040 0%, #1A0B2E 50%, #0D2233 100%);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.halftime-bg {
  position: absolute;
  inset: 0;
  background: url('../images/dance-show.jpg') center/cover no-repeat;
  opacity: .2;
  pointer-events: none;
}
.halftime-lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hl-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .4;
  animation: spotPulse 3s ease-in-out infinite;
}
.hl-spot.a { width:300px; height:300px; background:var(--lavender); top:-50px;  left:-50px; animation-delay:0s;  }
.hl-spot.b { width:250px; height:250px; background:var(--pink);     top:20%;    right:0;    animation-delay:1s;  }
.hl-spot.c { width:200px; height:200px; background:var(--mint);     bottom:0;   left:30%;   animation-delay:2s;  }
@keyframes spotPulse {
  0%,100%{ opacity:.3; }
  50%     { opacity:.6; }
}
.halftime-heading .label { background: rgba(255,255,255,.2); }
.halftime-heading h2 { color: #fff; }
.halftime-heading p   { color: rgba(255,255,255,.6); }

.halftime-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.ht-icon-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 3rem;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ht-icon-row span { animation: iconBounce 1.5s ease-in-out infinite; }
.ht-icon-row span:nth-child(2){ animation-delay:.3s; }
.ht-icon-row span:nth-child(3){ animation-delay:.6s; }
.ht-icon-row span:nth-child(4){ animation-delay:.9s; }
@keyframes iconBounce {
  0%,100%{ transform:translateY(0) scale(1); }
  50%    { transform:translateY(-12px) scale(1.1); }
}

.ht-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ht-feat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 20px 28px;
  text-align: center;
  backdrop-filter: blur(4px);
  min-width: 160px;
}
.ht-feat .fe { font-size: 2rem; margin-bottom: 8px; display: block; }
.ht-feat .ft { font-size: .9rem; font-weight: 900; color: var(--yellow); }
.ht-feat .fd { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 4px; }

/* floating notes */
.note-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.note-float span {
  position: absolute;
  font-size: 1.5rem;
  animation: noteRise 5s ease-in-out infinite;
  opacity: 0;
}
.note-float span:nth-child(1){ left:15%; animation-delay:0s; }
.note-float span:nth-child(2){ left:35%; animation-delay:1.2s; }
.note-float span:nth-child(3){ left:55%; animation-delay:2.4s; }
.note-float span:nth-child(4){ left:75%; animation-delay:0.8s; }
@keyframes noteRise {
  0%   { transform:translateY(100px); opacity:0; }
  20%  { opacity:.8; }
  100% { transform:translateY(-200px) rotate(30deg); opacity:0; }
}

/* ===========================
   AFTER MATCH  (sec-10)
   =========================== */
#after-match {
  background: linear-gradient(180deg, var(--yellow-lt) 0%, var(--mint-lt) 100%);
  padding: 80px 0;
}
.after-heading .label { background: var(--coral); }

.after-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
@media(max-width:640px){ .after-layout { grid-template-columns:1fr; } }

.after-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.after-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.after-text h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.4;
}
.after-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.after-list li {
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 3px 10px rgba(0,0,0,.07);
  transition: transform .2s;
}
.after-list li:hover { transform: translateX(6px); }
.after-list li .ali { font-size: 1.4rem; }

/* ===========================
   FAQ  (sec-11)
   =========================== */
#faq {
  background: #fff;
  padding: 80px 0;
}
.faq-heading .label { background: var(--sky); color: #fff; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 2px solid var(--sky-lt);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item.open { box-shadow: 0 8px 28px rgba(96,200,245,.2); border-color: var(--sky); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.faq-q .q-text {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
  font-size: .95rem;
}
.faq-q .q-mark {
  background: var(--sky);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .9rem;
  flex-shrink: 0;
}
.faq-toggle {
  background: var(--sky-lt);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s, background .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--sky); }
.faq-toggle svg { width:16px; height:16px; stroke: var(--text); }
.faq-item.open .faq-toggle svg { stroke: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }
.faq-a p {
  font-size: .88rem;
  line-height: 1.7;
  color: #666;
  border-top: 1px solid var(--sky-lt);
  padding-top: 14px;
}

/* ===========================
   CTA FINAL  (sec-12)
   =========================== */
#cta-final {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1040 50%, #1A3A2E 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}
.cta-circle.c1 { width:400px; height:400px; background:var(--mint);    top:-100px;  left:-100px; }
.cta-circle.c2 { width:300px; height:300px; background:var(--pink);    bottom:-80px; right:-80px; }
.cta-circle.c3 { width:200px; height:200px; background:var(--yellow);  top:50%;      right:15%; }

.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-inner .rainbow-text {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(90deg, var(--yellow), var(--pink), var(--mint), var(--lavender), var(--coral));
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbowFlow 4s linear infinite;
  margin-bottom: 20px;
}
.cta-inner .sub {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.btn-cta-main {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(255,107,157,.55);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .05em;
  border: 3px solid rgba(255,255,255,.25);
  animation: pulseCta 2.5s ease-in-out infinite;
}
.btn-cta-main:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 48px rgba(255,107,157,.7);
}
@keyframes pulseCta {
  0%,100%{ box-shadow: 0 10px 32px rgba(255,107,157,.55); }
  50%    { box-shadow: 0 10px 48px rgba(255,107,157,.85); }
}
.btn-cta-sub {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--coral));
  color: #333;
  font-weight: 900;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255,217,61,.4);
  transition: transform .2s;
}
.btn-cta-sub:hover { transform: translateY(-3px); }

.cta-note {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  margin-top: 16px;
}

.sns-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.sns-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 700;
  transition: all .2s;
}
.sns-btn:hover { background: rgba(255,255,255,.2); color: #fff; }

/* footer */
footer {
  background: #0A0A14;
  color: rgba(255,255,255,.4);
  text-align: center;
  padding: 24px 20px;
  font-size: .78rem;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: .1s; }
.fade-in.delay-2 { transition-delay: .2s; }
.fade-in.delay-3 { transition-delay: .3s; }
.fade-in.delay-4 { transition-delay: .4s; }

/* ===========================
   HERO POSTER BG
   =========================== */
.hero-poster-bg {
  position: absolute;
  inset: 0;
  background: url('../images/team-poster.jpg') center top/cover no-repeat;
  opacity: .18;
  z-index: 0;
}

/* ===========================
   NOVELTY CARD
   =========================== */
.novelty-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #fff 60%, var(--mint-lt) 100%);
  border: 3px solid var(--mint);
  border-radius: 28px;
  padding: 28px 32px;
  margin: 48px 0 0;
  box-shadow: 0 8px 32px rgba(77,217,172,.2);
  flex-wrap: wrap;
}
.novelty-img-wrap {
  flex-shrink: 0;
  width: 160px;
}
.novelty-img-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.novelty-text {
  flex: 1;
  min-width: 220px;
}
.novelty-label {
  display: inline-block;
  background: var(--mint);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .1em;
}
.novelty-text h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.novelty-text p {
  font-size: .85rem;
  color: #666;
  line-height: 1.65;
}

/* ===========================
   VEHICLE ZONE (kids-zone)
   =========================== */
.vehicle-zone {
  margin-top: 16px;
}
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media(max-width:600px){ .vehicle-grid { grid-template-columns:1fr; } }

.vehicle-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: visible;
  box-shadow: var(--shadow);
}
.vehicle-img-wrap {
  border-radius: 24px;
  overflow: hidden;
}
.vehicle-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.04); }
.vehicle-label {
  text-align: center;
  font-weight: 900;
  font-size: .9rem;
  padding: 12px 16px 16px;
  color: var(--dark);
}

/* ===========================
   SPEECH BUBBLE
   =========================== */
.speech-bubble {
  position: absolute;
  top: -52px;
  left: 16px;
  background: var(--yellow);
  color: #333;
  font-weight: 900;
  font-size: .78rem;
  line-height: 1.5;
  padding: 10px 16px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  white-space: nowrap;
  z-index: 10;
  animation: bobble 2.5s ease-in-out infinite;
}
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20px;
  border-width: 10px 8px 0;
  border-style: solid;
  border-color: var(--yellow) transparent transparent;
}
.speech-bubble--right {
  left: auto;
  right: 16px;
  background: var(--mint);
}
.speech-bubble--right::after {
  left: auto;
  right: 20px;
  border-color: var(--mint) transparent transparent;
}
.speech-bubble--top {
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
}
.speech-bubble--top::after {
  left: 50%;
  transform: translateX(-50%);
  border-color: var(--coral) transparent transparent;
}
@keyframes bobble {
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(-6px); }
}
.speech-bubble--right { animation: bobbleR 2.8s ease-in-out infinite; }
@keyframes bobbleR {
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(-6px); }
}
.speech-bubble--top { animation: bobbleT 3s ease-in-out infinite; }
@keyframes bobbleT {
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%    { transform:translateX(-50%) translateY(-6px); }
}

/* ===========================
   KITCHEN CAR ZONE
   =========================== */
.kitchencar-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media(max-width:640px){ .kitchencar-layout { grid-template-columns:1fr; } }

.kitchencar-img {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.kitchencar-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: block;
}
.kitchencar-text h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}
.kitchencar-text p {
  font-size: .88rem;
  color: #666;
  line-height: 1.6;
}

/* ===========================
   COACH CARDS (clinic)
   =========================== */
.coaches-section { position: relative; z-index: 2; }
.coaches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media(max-width:600px){ .coaches-grid { grid-template-columns:1fr; } }

.coach-card {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  gap: 0;
  flex-direction: column;
  backdrop-filter: blur(6px);
  transition: transform .3s;
}
.coach-card:hover { transform: translateY(-6px); }
.coach-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.coach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s;
}
.coach-card:hover .coach-img-wrap img { transform: scale(1.05); }
.coach-info {
  padding: 20px 22px 24px;
}
.coach-badge {
  display: inline-block;
  background: var(--yellow);
  color: #333;
  font-size: .68rem;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: .06em;
}
.coach-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.coach-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

/* ===========================
   MATCH LAYOUT (new 2-col)
   =========================== */
.match-poster-bg {
  position: absolute;
  inset: 0;
  background: url('../images/team-poster.jpg') center/cover no-repeat;
  opacity: .28;
  z-index: 0;
}
.match-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13,31,53,.82) 0%,
    rgba(13,31,53,.75) 100%);
  z-index: 1;
}
.match-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 0;
}
@media(max-width:640px){ .match-layout { grid-template-columns:1fr; } }

.match-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
}
.match-photo-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.match-photo-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--yellow);
  color: #333;
  font-weight: 900;
  font-size: .85rem;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
/* スコアボードをグリッド内に収める */
.match-scoreboard {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 28px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media(max-width:768px) {
  .hero-prizes { gap: 10px; }
  .prize-card  { width: 100px; }
  .prize-card img { width: 60px; height: 44px; }
  .hero-info-card { grid-template-columns:1fr; }
  .free-badge { width:80px; height:80px; top:20px; right:16px; }
  .free-badge .big { font-size:1.2rem; }
  .lottery-steps::before { display: none; }
  .step-item { width: 140px; }
  .match-scoreboard { padding: 24px 18px; }
  .ht-features { gap: 12px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media(max-width:480px) {
  .hero-catch .rainbow-text { font-size: 1.8rem; }
  .prize-grid { grid-template-columns: 1fr 1fr; }
  .prize-big-card img { height: 130px; }
}
