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

:root {
  --cream: #fdf8ee;
  --ivory: #fef9f0;
  --beige: #f5ead6;
  --orange: #f47c20;
  --orange-light: #ffa94d;
  --orange-dark: #e06010;
  --pink: #f06292;
  --pink-light: #f8bbd0;
  --red: #e53935;
  --red-dark: #c62828;
  --green: #66bb6a;
  --green-dark: #388e3c;
  --blue: #42a5f5;
  --blue-dark: #1565c0;
  --yellow: #ffee58;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-full: 9999px;
  --font-round: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  --font-base: 'Noto Sans JP', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  left: 16px;
  bottom: 20px;
  z-index: 1000;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(244,124,32,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 180px;
}

.floating-cta__label {
  font-family: var(--font-round);
  font-size: 10px;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}

.floating-cta .btn {
  padding: 6px 16px;
  font-size: 13px;
}

.floating-cta__sub {
  font-size: 9px;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-full);
  font-family: var(--font-round);
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  padding: 12px 28px;
  font-size: 15px;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn:active {
  transform: translateY(0);
}

.btn--female {
  background: linear-gradient(135deg, #e91e8c, #f06292);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(233,30,140,0.4);
}

.btn--male {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(26,35,126,0.4);
}

.btn--main {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,124,32,0.5);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 18px;
}

.btn--sm {
  padding: 6px 16px;
  font-size: 12px;
}

.btn--reserve {
  min-width: 220px;
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
}

.tag--orange { background: var(--orange); color: var(--white); }
.tag--pink { background: var(--pink); color: var(--white); }
.tag--green { background: var(--green); color: var(--white); }
.tag--blue { background: var(--blue); color: var(--white); }
.tag--red { background: var(--red); color: var(--white); }
.tag--sm { font-size: 11px; padding: 3px 10px; }

/* ===== SECTION COMMON ===== */
.section {
  padding: 60px 0;
}

.section__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.section__label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.section__title {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(22px, 5vw, 30px);
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ===== HERO ===== */
.hero {
  background: #0a0a1a;
  padding: 40px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-bottom: 4px solid rgba(255,100,200,0.5);
}

.hero__neon-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,50,150,0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(80,200,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero__badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
}

.hero__badge {
  background: linear-gradient(135deg, #e91e8c, #ff4081);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(233,30,140,0.6), 0 0 24px rgba(233,30,140,0.3);
}

.hero__badge--sub {
  background: linear-gradient(135deg, #ff6d00, #ff9100);
  font-size: 12px;
  box-shadow: 0 0 12px rgba(255,109,0,0.6), 0 0 24px rgba(255,109,0,0.3);
}

.hero__logo-wrap {
  z-index: 1;
  max-width: 520px;
  width: 100%;
  padding: 8px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero__logo {
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.85)) drop-shadow(0 0 20px rgba(255,80,120,0.5));
}

.hero__date-place {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__date {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 28px;
  box-shadow: 0 0 20px rgba(255,100,200,0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
}

.hero__year {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.hero__day {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(32px, 8vw, 48px);
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,200,100,0.8), 0 0 20px rgba(255,150,50,0.5);
}

.hero__day small {
  font-size: 0.5em;
  color: rgba(255,255,255,0.8);
}

.hero__time {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}

.hero__place {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  z-index: 1;
}

.hero__cta {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__cta-sub {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* Hero decorations */
.hero__deco {
  position: absolute;
  font-size: 28px;
  opacity: 0.7;
  animation: float 3s ease-in-out infinite;
  z-index: 1;
  filter: drop-shadow(0 0 8px currentColor);
}

.hero__deco--star1 { top: 10%; left: 5%; color: #ffee58; animation-delay: 0s; }
.hero__deco--star2 { top: 20%; right: 8%; color: #ff9100; animation-delay: 1s; }
.hero__deco--heart1 { bottom: 25%; left: 8%; color: #ff4081; animation-delay: 0.5s; }
.hero__deco--heart2 { bottom: 35%; right: 5%; color: #ff1744; animation-delay: 1.5s; }
.hero__deco--card { top: 40%; left: 3%; animation-delay: 2s; }
.hero__deco--magic { top: 35%; right: 3%; animation-delay: 0.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--ivory);
  border-bottom: 4px dashed var(--pink-light);
}

.about__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 2px solid var(--beige);
}

.about__lead {
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text);
}

.about__lead strong {
  color: var(--orange-dark);
}

.about__bubbles {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.bubble {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-round);
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--beige);
  position: relative;
  flex: 1;
  min-width: 130px;
  max-width: 180px;
}

.bubble--left {
  border-color: var(--orange-light);
  background: #fff8f0;
}

.bubble--right {
  border-color: var(--pink-light);
  background: #fff0f5;
}

.bubble__icon {
  font-size: 22px;
}

.bubble strong {
  color: var(--orange-dark);
}

.about__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--orange);
  font-size: 14px;
  line-height: 1.7;
}

.about__point-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__point strong {
  display: block;
  color: var(--orange-dark);
  font-family: var(--font-round);
  font-weight: 800;
  margin-bottom: 2px;
}

/* ===== FEATURES ===== */
.features {
  background: linear-gradient(180deg, var(--cream) 0%, #fce4ec 100%);
  border-bottom: 4px dashed #a5d6a7;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  border: 3px solid var(--orange-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.feature-card--pink {
  border-color: var(--pink-light);
}

.feature-card--pink::before {
  background: linear-gradient(90deg, var(--pink), #f48fb1);
}

.feature-card--green {
  border-color: #a5d6a7;
}

.feature-card--green::before {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.feature-card__point-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.feature-card__point-badge--pink {
  background: var(--pink);
}

.feature-card__point-badge--green {
  background: var(--green-dark);
}

.feature-card__point-sub {
  font-family: var(--font-round);
  font-size: 11px;
  font-weight: 700;
  opacity: 0.9;
}

.feature-card__point-num {
  font-family: var(--font-round);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.feature-card__title {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 16px;
}

.feature-card__icon-wrap {
  margin: 16px 0;
}

.feature-card__emoji-big {
  font-size: 48px;
  line-height: 1.2;
}

.feature-card__desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  text-align: left;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 8px;
}

/* ===== FLOW ===== */
.flow {
  background: var(--ivory);
  border-bottom: 4px dashed var(--blue);
}

.flow__timeline {
  position: relative;
  padding-left: 20px;
}

.flow__item {
  display: grid;
  grid-template-columns: 90px 24px 1fr;
  gap: 0 8px;
  margin-bottom: 24px;
  position: relative;
}

.flow__item--last {
  margin-bottom: 0;
}

.flow__time {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 11px;
  color: var(--orange-dark);
  padding-top: 16px;
  text-align: right;
  flex-shrink: 0;
  grid-column: 1;
}

/* 縦線・丸のコンテナ */
.flow__dot-col {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.flow__dot {
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
  flex-shrink: 0;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.flow__line {
  flex: 1;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), var(--pink));
  border-radius: 2px;
  margin-top: 2px;
}

.flow__item--last .flow__line {
  display: none;
}

.flow__content {
  grid-column: 3;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 2px solid var(--beige);
  margin-bottom: 8px;
}

.flow__icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.flow__text strong {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 15px;
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}

.flow__text p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== DETAIL ===== */
.detail {
  background: var(--cream);
  border-bottom: 4px dashed var(--orange-light);
}

.detail__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--beige);
}

.detail__table {
  width: 100%;
  border-collapse: collapse;
}

.detail__table th,
.detail__table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--beige);
  font-size: 14px;
  vertical-align: top;
  line-height: 1.8;
}

.detail__table th {
  background: var(--cream);
  font-family: var(--font-round);
  font-weight: 800;
  color: var(--orange-dark);
  width: 90px;
  white-space: nowrap;
}

.detail__table tr:last-child th,
.detail__table tr:last-child td {
  border-bottom: none;
}

.detail__price {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.detail__price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  min-width: 110px;
}

.detail__price-item--male {
  background: #e8eaf6;
  border: 2px solid #3949ab;
}

.detail__price-item--female {
  background: #fce4ec;
  border: 2px solid var(--pink);
}

.detail__price-gender {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 4px;
}

.detail__price-amount {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 22px;
  color: var(--dark);
}

.detail__price-note {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== FRIEND DISCOUNT ===== */
.friend-discount {
  background: linear-gradient(160deg, #fce4ec 0%, #e8f5e9 100%);
  border-bottom: 4px dashed var(--pink-light);
}

.friend-discount__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: center;
}

.friend-discount__tab {
  flex: 1;
  max-width: 200px;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid var(--beige);
  background: var(--white);
  color: var(--text-light);
  transition: all 0.2s ease;
}

.friend-discount__tab--active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(244,124,32,0.4);
}

.friend-discount__content {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.friend-discount__content--hidden {
  display: none;
}

.friend-discount__header {
  padding: 20px;
  text-align: center;
  background: var(--cream);
  border-bottom: 2px solid var(--beige);
}

.friend-discount__header-sub {
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.friend-discount__header-title {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 26px;
}

.male-title { color: #1a237e; }
.female-title { color: var(--pink); }

.friend-discount__img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
}

/* ===== ACCESS ===== */
.access {
  background: var(--ivory);
}

.access__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--beige);
}

.access__venue {
  padding: 24px;
  border-bottom: 2px solid var(--beige);
}

.access__venue-name {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
}

.access__venue-address {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}

.access__venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.access__map-placeholder {
  background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access__map-inner {
  text-align: center;
  padding: 32px;
}

.access__map-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.access__map-inner p {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 4px;
}

.access__map-sub {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--text-light) !important;
  margin-bottom: 16px !important;
}

/* ===== NOTES ===== */
.notes {
  background: var(--cream);
}

.notes__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--beige);
}

.notes__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notes__list li {
  padding: 10px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  padding-left: 32px;
  position: relative;
}

.notes__list li::before {
  content: '⚠️';
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 14px;
}

/* ===== RESERVE ===== */
.reserve {
  background: linear-gradient(135deg, #fff8e1 0%, #fce4ec 50%, #e8f5e9 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reserve__deco {
  position: absolute;
  font-size: 32px;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

.reserve__deco--1 { top: 10%; left: 5%; color: var(--yellow); animation-delay: 0s; }
.reserve__deco--2 { top: 15%; right: 8%; color: var(--pink); animation-delay: 1s; }
.reserve__deco--3 { bottom: 15%; left: 10%; color: var(--orange); animation-delay: 0.5s; }

.reserve__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.reserve__title {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(28px, 6vw, 40px);
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
  text-shadow: 3px 3px 0 rgba(244,124,32,0.15);
}

.reserve__sub {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 32px;
}

.reserve__btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

.reserve__info {
  background: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.reserve__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-family: var(--font-round);
  font-weight: 700;
}

.reserve__info-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
}

.footer__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__logo-img {
  max-width: 200px;
  margin: 0 auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.footer__info {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.footer__links {
  display: flex;
  gap: 16px;
}

.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

.footer__link:hover {
  color: var(--white);
}

.footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .floating-cta {
    left: 10px;
    bottom: 16px;
    max-width: 160px;
    padding: 8px 10px;
  }

  .hero {
    padding: 30px 16px 50px;
    gap: 20px;
  }

  .hero__date {
    padding: 10px 20px;
    gap: 6px;
  }

  .hero__day {
    font-size: 36px;
  }

  .hero__time {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .flow__item {
    grid-template-columns: 70px 20px 1fr;
  }

  .flow__time {
    font-size: 10px;
  }

  .detail__table th {
    width: 70px;
    font-size: 12px;
    padding: 12px 10px;
  }

  .detail__table td {
    font-size: 13px;
    padding: 12px 10px;
  }

  .reserve__btns {
    width: 100%;
  }

  .btn--reserve {
    width: 100%;
    max-width: 320px;
  }
}

@media (min-width: 600px) {
  .reserve__btns {
    flex-direction: row;
    justify-content: center;
  }

  .about__bubbles {
    flex-wrap: nowrap;
  }
}

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ILLUSTRATIONS ===== */
.hero__illust-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 520px;
  z-index: 1;
}

.hero__illust {
  width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  max-height: 300px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

/* ===== FRIEND DISCOUNT BOTH COLUMNS ===== */
.friend-discount__both {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.friend-discount__col {
  flex: 1;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.friend-discount__col-header {
  padding: 14px 16px;
  text-align: center;
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}

.male-header {
  background: linear-gradient(135deg, #1a237e, #3949ab);
}

.female-header {
  background: linear-gradient(135deg, #c62828, var(--pink));
}

/* ===== PAST EVENT ===== */
.past-event {
  background: var(--ivory);
  border-bottom: 4px dashed var(--orange-light);
}

.past-event__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--beige);
  margin-bottom: 28px;
}

.past-event__photo {
  width: 100%;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

.past-event__caption {
  padding: 10px 16px;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  background: var(--cream);
}

/* ===== NEWS CARD ===== */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid #ffcc02;
}

.news-card__label {
  background: #ffcc02;
  color: var(--dark);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  display: inline-block;
}

.news-card__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 16px;
  color: var(--dark);
  padding: 12px 16px 8px;
  line-height: 1.5;
}

.news-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card__link:hover .news-card__img {
  opacity: 0.9;
}

.news-card__img {
  width: 100%;
  display: block;
  transition: opacity 0.2s;
}

.news-card__btn {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  padding: 14px 20px;
  transition: background 0.2s;
}

.news-card__link:hover .news-card__btn {
  background: var(--orange-dark);
}

/* ===== ACCESS MAP EMBED ===== */
.access__map-embed {
  padding: 20px;
  background: var(--cream);
}

.access__map-embed iframe {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.access__map-caption {
  text-align: center;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 10px;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 560px) {
  .hero__illust-row {
    flex-direction: column;
    max-width: 100%;
  }
  .hero__illust {
    max-height: 160px;
  }
  .friend-discount__both {
    flex-direction: column;
  }
  .friend-discount__col {
    min-width: 100%;
  }
}
