/* =============================================
   おジャ魔女どれみ Magical Drone Show 2026
   メインスタイルシート
============================================= */

/* ===== CSS Variables ===== */
:root {
  --bg-deep: #05040f;
  --bg-dark: #0d0b1e;
  --bg-mid: #130f2a;
  --bg-card: #1a1535;
  --bg-card2: #120e28;

  --pink: #f472b6;
  --pink-light: #fbcfe8;
  --pink-glow: rgba(244, 114, 182, 0.35);
  --purple: #a855f7;
  --purple-light: #d8b4fe;
  --purple-glow: rgba(168, 85, 247, 0.3);
  --yellow: #fbbf24;
  --yellow-light: #fef3c7;
  --cyan: #22d3ee;
  --green: #4ade80;
  --white: #ffffff;
  --gray: #a09cb0;
  --gray-light: #c4bfdc;

  --gold: #f5c842;
  --gold-light: #fde68a;
  --gold-glow: rgba(245, 200, 66, 0.4);

  --gradient-hero: linear-gradient(
    180deg,
    #05040f 0%,
    #0d0b1e 40%,
    #1a0d35 100%
  );
  --gradient-pink: linear-gradient(135deg, #f472b6, #a855f7);
  --gradient-magic: linear-gradient(135deg, #fbbf24, #f472b6, #a855f7, #22d3ee);
  --gradient-card: linear-gradient(160deg, #1e1843 0%, #120e28 100%);

  --font-jp: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  --font-sans: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  --font-en: "Nunito", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-glow-pink:
    0 0 30px rgba(244, 114, 182, 0.5), 0 0 60px rgba(244, 114, 182, 0.2);
  --shadow-glow-purple:
    0 0 30px rgba(168, 85, 247, 0.5), 0 0 60px rgba(168, 85, 247, 0.2);
  --shadow-glow-gold:
    0 0 20px rgba(245, 200, 66, 0.6), 0 0 50px rgba(245, 200, 66, 0.2);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

/* ===== Header ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 4, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.organizer-tag {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 0.08em;
  transition: color 0.2s;
  position: relative;
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-pink);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.header-nav a:hover {
  color: var(--pink-light);
}
.header-nav a:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gray-light);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 64px;
}

/* ===== Hero ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-kv-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d0b1e 0%, #1a0d35 50%, #0d1535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-kv-placeholder span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.3em;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 12px 28px;
  border-radius: 4px;
}

#drone-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 24px 80px;
  max-width: 900px;
}

.hero-sponsor-tag {
  display: inline-block;
  font-size: 13px;
  color: var(--pink-light);
  background: rgba(244, 114, 182, 0.12);
  border: 1px solid rgba(244, 114, 182, 0.3);
  border-radius: 20px;
  padding: 6px 20px;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

.hero-title-block {
  margin-bottom: 40px;
}
.hero-title-jp {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: 0.12em;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(244, 114, 182, 0.4));
  line-height: 1.3;
  margin-bottom: 8px;
}
.hero-title-en {
  font-family: "Nunito", sans-serif;
  font-size: clamp(18px, 3.5vw, 30px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}
.hero-title-sub {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 500;
  color: var(--purple-light);
  letter-spacing: 0.08em;
}

.hero-date-block {
  margin-bottom: 36px;
}
.hero-date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.date-num {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--white);
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}
.date-num.big {
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 900;
  color: var(--white);
  text-shadow: var(--shadow-glow-pink);
  line-height: 1;
  font-family: "Nunito", sans-serif;
}
.date-slash {
  font-size: 28px;
  color: var(--gray);
}
.date-day {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-left: 8px;
}
.date-day.sat {
  color: #93c5fd;
}
.hero-date-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}
.hero-venue,
.hero-time {
  font-size: 15px;
  color: var(--gray-light);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.hero-venue i,
.hero-time i {
  color: var(--pink);
  margin-right: 8px;
}

.hero-drones-count {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  padding: 20px 40px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.drone-num {
  font-family: "Nunito", sans-serif;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  color: var(--gold);
  text-shadow: var(--shadow-glow-gold);
  line-height: 1;
}
.drone-label {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  color: var(--gold-light);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--gradient-pink);
  color: white;
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-glow-pink);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 50px rgba(244, 114, 182, 0.7),
    0 0 100px rgba(244, 114, 182, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  color: var(--purple-light);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(168, 85, 247, 0.5);
  letter-spacing: 0.05em;
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--purple);
}

.hero-scroll-hint {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gray);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.6), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ===== Catchcopy ===== */
#catchcopy {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#catchcopy::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(244, 114, 182, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.catch-inner {
  position: relative;
  z-index: 1;
}
.catch-main {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(26px, 5.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(244, 114, 182, 0.3);
}
.catch-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--gray-light);
  line-height: 2;
  margin-bottom: 40px;
}
.magic-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.magic-star {
  font-size: 20px;
  color: var(--gold);
  text-shadow: var(--shadow-glow-gold);
  animation: spinStar 8s linear infinite;
}
.magic-star:last-child {
  animation-direction: reverse;
}
@keyframes spinStar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.magic-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-shadow: var(--shadow-glow-gold);
}

/* ===== Section Common ===== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}
.section-label {
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--pink);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 60px;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-pink);
  border-radius: 2px;
}

/* ===== About ===== */
#about {
  background: var(--bg-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.about-item {
  background: var(--gradient-card);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.about-item:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 114, 182, 0.4);
}
.about-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.about-label {
  font-size: 20px;
  color: var(--pink);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.about-value {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}
.about-value small {
  font-size: 12px;
  color: var(--gray);
}
.highlight-num {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: var(--shadow-glow-gold);
}
.about-description {
  background: rgba(168, 85, 247, 0.06);
  border-left: 3px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
}
.about-description p {
  color: var(--gray-light);
  line-height: 2;
  font-size: 15px;
}

/* ===== Contents ===== */
#contents {
  background: var(--bg-mid);
}
.contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.content-card {
  background: var(--gradient-card);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.card-num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: "Nunito", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}
.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-magic);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  z-index: 2;
}
.card-icon-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card-kv-blank {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.15),
    rgba(244, 114, 182, 0.1)
  );
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-kv-blank span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3em;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 4px;
}
.card-body {
  padding: 80px 24px 24px 24px;
}
.card-time {
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.card-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}
.card-title span {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  color: var(--purple-light);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.card-desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.card-magic-spell {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--purple-light);
  text-align: center;
  letter-spacing: 0.05em;
}
.card-limit-badge {
  display: inline-block;
  background: rgba(244, 114, 182, 0.15);
  border: 1px solid rgba(244, 114, 182, 0.35);
  color: var(--pink-light);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 20px;
}

.card-drone {
  border-color: rgba(34, 211, 238, 0.25);
}
.card-drone:hover {
  box-shadow: 0 20px 60px rgba(34, 211, 238, 0.15);
}
.card-drone .card-time {
  color: var(--cyan);
}

.card-main {
  border-color: rgba(245, 200, 66, 0.3);
}
.card-main:hover {
  box-shadow: 0 20px 60px rgba(245, 200, 66, 0.2);
}

.card-stage {
  border-color: rgba(244, 114, 182, 0.25);
}
.card-movie {
  border-color: rgba(168, 85, 247, 0.25);
}
.card-photo {
  border-color: rgba(74, 222, 128, 0.25);
}
.card-food {
  border-color: rgba(251, 191, 36, 0.2);
}

/* ===== Timetable ===== */
#timetable {
  background: var(--bg-dark);
}
.timetable-date {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 56px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.timetable-wrap {
  position: relative;
  padding-left: 120px;
}
.timetable-line {
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(168, 85, 247, 0.4) 10%,
    rgba(168, 85, 247, 0.4) 90%,
    transparent
  );
}
.tt-item {
  position: relative;
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.tt-time {
  position: absolute;
  left: -120px;
  width: 100px;
  text-align: right;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  padding-top: 2px;
  letter-spacing: 0.05em;
}
.tt-dot {
  position: absolute;
  left: -8px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid rgba(168, 85, 247, 0.5);
  z-index: 1;
  flex-shrink: 0;
}
.drone-dot {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.2);
}
.movie-dot {
  border-color: var(--purple);
  background: rgba(168, 85, 247, 0.2);
}
.stage-dot {
  border-color: var(--pink);
  background: rgba(244, 114, 182, 0.2);
}
.main-dot {
  border-color: var(--gold);
  background: rgba(245, 200, 66, 0.3);
  box-shadow: 0 0 12px rgba(245, 200, 66, 0.5);
}
.end-dot {
  border-color: var(--gray);
}

.tt-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.tt-highlight .tt-content {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.25);
}
.tt-main .tt-content {
  background: rgba(245, 200, 66, 0.06);
  border-color: rgba(245, 200, 66, 0.3);
}
.tt-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
  background: rgba(34, 211, 238, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.3);
}
.movie-badge {
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple-light);
  border-color: rgba(168, 85, 247, 0.3);
}
.stage-badge {
  background: rgba(244, 114, 182, 0.15);
  color: var(--pink-light);
  border-color: rgba(244, 114, 182, 0.3);
}
.main-badge {
  background: rgba(245, 200, 66, 0.15);
  color: var(--gold);
  border-color: rgba(245, 200, 66, 0.4);
}
.tt-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.tt-desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
}
.tt-duration {
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.08em;
}
.tt-spell {
  display: inline-block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-shadow: var(--shadow-glow-gold);
  margin: 6px 0;
}

/* ===== Ticket ===== */
#ticket {
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}
#ticket::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(244, 114, 182, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.ticket-note-top {
  font-size: 13px;
  color: var(--gray);
  margin-top: -40px;
  margin-bottom: 48px;
}
.ticket-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.ticket-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.ticket-premium {
  background: linear-gradient(145deg, #2d1f50, #1a1035);
  border: 2px solid rgba(245, 200, 66, 0.4);
  box-shadow: 0 0 50px rgba(245, 200, 66, 0.1);
}
.ticket-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 200, 66, 0.06),
    transparent 60%
  );
  pointer-events: none;
}
.ticket-normal {
  background: linear-gradient(145deg, #1a1a35, #100e25);
  border: 2px solid rgba(168, 85, 247, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ticket-ribbon {
  position: absolute;
  top: 20px;
  right: -28px;
  background: var(--gradient-magic);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(30deg);
  letter-spacing: 0.05em;
}
.ticket-type {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.4;
}
.ticket-price-block {
  margin-bottom: 28px;
}
.ticket-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.price-label {
  font-size: 13px;
  color: var(--gray);
  width: 60px;
  flex-shrink: 0;
}
.price-val {
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
}
.ticket-premium .price-val {
  color: var(--gold);
  text-shadow: var(--shadow-glow-gold);
}

.ticket-novelty {
  background: rgba(245, 200, 66, 0.06);
  border: 1px solid rgba(245, 200, 66, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
}
.novelty-title {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.novelty-title i {
  margin-right: 6px;
}

/* ノベルティ画像プレースホルダー */
.novelty-img {
  background: linear-gradient(
    135deg,
    rgba(245, 200, 66, 0.1),
    rgba(244, 114, 182, 0.1)
  );
  border: 2px dashed rgba(245, 200, 66, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.novelty-img span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.2em;
}
.novelty-name {
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}
.novelty-name small {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
}
.novelty-desc {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}

.ticket-includes {
  margin-bottom: 28px;
}
.includes-title {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.ticket-includes ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.check-mark {
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 700;
}

.btn-ticket {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  transition: all 0.25s;
}
.btn-ticket-premium {
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: #fff;
  box-shadow: var(--shadow-glow-gold);
}
.btn-ticket-premium:hover {
  box-shadow: 0 0 60px rgba(245, 200, 66, 0.6);
  transform: translateY(-2px);
}
.btn-ticket-normal {
  background: var(--gradient-pink);
  color: white;
  box-shadow: var(--shadow-glow-pink);
}
.btn-ticket-normal:hover {
  box-shadow: 0 0 50px rgba(244, 114, 182, 0.6);
  transform: translateY(-2px);
}
.btn-ticket-toeivideo {
  background: var(--gradient-magic);
  color: white;
  box-shadow: var(--shadow-glow-pink);
}
.btn-ticket-toeivideo:hover {
  box-shadow: 0 0 50px rgba(244, 114, 182, 0.6);
  transform: translateY(-2px);
}

.ticket-vendor {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}

/* 撮影会チケット */
.ticket-extra {
  display: flex;
  flex-direction: row;
  gap: 24px;
  /* align-items: baseline; */
  justify-content: center;
  background: var(--gradient-card);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.extra-icon {
  font-size: 28px;
  color: var(--green);
  flex-shrink: 0;
}
.extra-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.extra-desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
}
.extra-desc strong {
  color: var(--white);
}
.extra-limit {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--green);
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
}
.extra-img {
  width: 300px;
  height: 100%;
}

/* 注意事項 */
.ticket-common-notes {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.ticket-common-notes h4 {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ticket-common-notes h4 i {
  color: var(--cyan);
  margin-right: 8px;
}
.ticket-common-notes ul li {
  font-size: 13px;
  color: var(--gray);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.ticket-common-notes ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--purple);
}

/* ===== Access ===== */
#access {
  background: var(--bg-dark);
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.access-venue-name {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.access-address {
  font-size: 15px;
  color: var(--gray-light);
  margin-bottom: 36px;
}
.access-address i {
  color: var(--pink);
  margin-right: 8px;
}
.access-transport {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.transport-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.transport-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}
.transport-line {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.transport-detail {
  font-size: 13px;
  color: var(--gray);
}
.access-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.access-map iframe {
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.4) brightness(0.7);
}
.access-map img {
  width: 100%;
  height: 350px;
}

/* ===== Caution ===== */
#caution {
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}
#caution::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(244, 114, 182, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
#caution a {
  text-decoration: underline;
}


/* ===== Footer ===== */
#footer {
  background: #030210;
  border-top: 1px solid rgba(168, 85, 247, 0.15);
  padding: 60px 24px 40px;
}
#footer a {
  text-decoration: underline;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.sponsor-section,
.organizer-section {
  margin-bottom: 40px;
}
.sponsor-label,
.organizer-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gray);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.sponsor-logos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.sponsor-item {
  font-size: 16px;
  color: var(--gray-light);
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}
.sponsor-more {
  font-size: 13px;
  color: var(--gray);
}
.organizer-list {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.organizer-list span {
  font-size: 14px;
  color: var(--gray-light);
}
.footer-title-block {
  margin-bottom: 32px;
}
.footer-event-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.footer-event-sub {
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 4px;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25) !important;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }
  .hero-content {
    padding: 80px 24px 80px;
  }
  .access-map img {
    height: 100%
  }
  .header-nav {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(300px, 80vw);
    height: fit-content;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: rgba(5, 4, 15, 0.98);
    backdrop-filter: blur(16px);
    padding: 80px 32px 40px;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid rgba(168, 85, 247, 0.2);
  }

  .header-nav.open {
    right: 0;
  }

  .header-nav a {
    font-size: 15px;
    width: 100%;
  }

  .header-nav a::after {
    display: none;
  }

  .organizer-tag {
    font-size: 10px;
  }

  .hero-content {
    padding: 60px 20px 60px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .timetable-wrap {
    padding-left: 80px;
  }
  .timetable-line {
    left: 68px;
  }
  .tt-item {
    gap: 20px;
  }
  .tt-time {
    left: -80px;
    width: 70px;
    font-size: 14px;
  }
  .tt-dot {
    left: -8px;
  }

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

  .ticket-card {
    padding: 28px 20px;
  }
  .ticket-ribbon {
    top: 12px;
    right: -32px;
    font-size: 11px;
  }

  .ticket-extra {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

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

  .drone-label {
    font-size: clamp(12px, 2vw, 16px);
  }

  .catch-main {
    font-size: clamp(24px, 4vw, 36px);
  }
  .about-item {
    padding: 32px 4px;
  }

  .extra-title {
    font-size: 15px;
  }

  .ticket-extra {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-drones-count {
    padding: 16px 24px;
  }
  .hero-content {
    padding: 60px 20px 60px;
  }
}

@media (max-width: 389px) {
    .organizer-tag {
        font-size: 8px;
    }
}
