/* ===========================
   Appare! 10th Tour Landing Page
   フライヤーカラー全面適用版
   =========================== */

:root {
  --red: #E8173A;
  --red-vivid: #FF1F47;
  --coral: #FF5C5C;
  --orange: #FF7A00;
  --yellow: #FFD600;
  --sky: #00BFFF;
  --cyan: #00E5C8;
  --purple: #B44FFF;
  --pink: #FF4DA6;
  --navy: #1A0A2E;

  --bg: #FFF0F0;
  --bg-card: #FFFFFF;

  --font-main: 'M PLUS Rounded 1c', 'Zen Maru Gothic', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 32px rgba(232, 23, 58, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--navy);
  overflow-x: hidden;
}

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

/* ===========================
   HERO
   =========================== */
.ap-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 30, 70, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 200, 0, 0.15) 0%, transparent 50%),
    linear-gradient(160deg, #C8001E 0%, #E8173A 35%, #FF5500 65%, #FF9900 100%);
  overflow: hidden;
  padding: 60px 20px 110px;
  min-height: 500px;
}

.ap-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ap-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.ap-hero-layout {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* フライヤー */
.ap-hero-flyer-wrap {
  flex-shrink: 0;
}

.ap-hero-flyer-frame {
  position: relative;
  width: clamp(200px, 32vw, 320px);
  border-radius: 20px;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.4),
    0 0 0 10px rgba(255, 214, 0, 0.3),
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(255, 80, 0, 0.3);
  transform: rotate(-2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.ap-hero-flyer-frame:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.5),
    0 0 0 12px rgba(255, 214, 0, 0.45),
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(255, 80, 0, 0.4);
}

.ap-hero-flyer-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ヒーローテキスト */
.ap-hero-text {
  flex: 1;
  color: #fff;
}

.ap-badge-10th {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
  animation: fadeUp 0.5s ease both;
}

.ap-hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: fadeUp 0.6s ease 0.1s both;
}

.ap-brand {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 214, 0, 0.4);
  line-height: 1.1;
}

.ap-tour-name {
  font-size: clamp(24px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 214, 0, 0.6);
  line-height: 1.2;
}

.ap-exc {
  color: rgba(255, 255, 255, 0.85);
}

.ap-hero-sub {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.15em;
  animation: fadeUp 0.7s ease 0.2s both;
}

.ap-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  padding: 13px 28px;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(255, 255, 255, 0.3);
  animation: fadeUp 0.8s ease 0.3s both;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ap-hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.ap-cta-arrow {
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ap-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  font-size: 0;
}

.ap-wave-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

@media (max-width: 700px) {
  @media (max-width: 700px) {
    .ap-hero-layout {
      flex-direction: column;
      gap: 0;
      text-align: center;
      align-items: center;
    }

    .ap-hero-flyer-wrap {
      width: 100%;
    }

    .ap-hero-flyer-frame {
      width: 100%;
      transform: none;
      border-radius: 0;
      box-shadow: none;
    }

    .ap-hero-flyer-img {
      border-radius: 0;
    }

    .ap-hero-text {
      padding: 24px 20px 0;
    }
  }

  .ap-wave-bottom svg {
    height: 40px;
  }
}

/* ===========================
   CONTAINER
   =========================== */
.ap-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   SECTION TITLE
   =========================== */
.ap-section-title {
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 32px;
}

.ap-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 99px;
  margin: 10px auto 0;
}

/* ===========================
   TICKET LEGEND
   =========================== */
.ap-ticket-legend {
  background: var(--bg);
  padding: 56px 0 40px;
}

.ap-legend-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.ap-legend-card {
  border-radius: var(--radius);
  padding: 24px 36px;
  text-align: center;
  min-width: 320px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
}

.ap-legend-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.ap-legend-card:hover {
  transform: translateY(-5px);
}

.ap-legend-card.ap-tenkyu {
  background: linear-gradient(135deg, var(--red) 0%, var(--coral) 50%, var(--orange) 100%);
  color: #fff;
}

.ap-legend-card.ap-ippan {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  color: var(--navy);
  border: 3px solid var(--red);
}

.ap-legend-badge {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 8px;
}

.ap-legend-price {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ap-legend-card.ap-ippan .ap-legend-price {
  color: var(--red);
}

.ap-legend-desc {
  font-size: 12px;
  margin-top: 6px;
  opacity: 0.8;
}

.ap-legend-note {
  text-align: center;
  font-size: 13px;
  color: #888;
}

.ap-legend-note a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}

.ap-tax {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
  margin-left: 2px;
}

/* ===========================
   SCHEDULE
   =========================== */
.ap-schedule {
  padding: 40px 0 60px;
  background: var(--bg);
}

.ap-tour-group {
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(232, 23, 58, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ap-group-header {
  padding: 20px 24px;
  color: #fff;
}

.ap-g1 {
  background: linear-gradient(120deg, #C8001E 0%, #E8173A 50%, #FF4040 100%);
}

.ap-g2 {
  background: linear-gradient(120deg, #D4000E 0%, #E8173A 40%, #FF6600 100%);
}

.ap-g3 {
  background: linear-gradient(120deg, #B50019 0%, #D4002E 50%, #E83A00 100%);
}

.ap-g4 {
  background: linear-gradient(120deg, #C00030 0%, #E8173A 50%, #C8006A 100%);
}

.ap-g5 {
  background: linear-gradient(120deg, #8C0018 0%, #C8001E 50%, #E8173A 100%);
}

.ap-group-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  padding: 3px 12px;
  margin-right: 10px;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.ap-group-areas {
  font-size: 18px;
  font-weight: 900;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

.ap-group-period {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ap-period-item {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 4px 12px 4px 4px;
}

.ap-period-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 9px;
  border-radius: 999px;
}

.ap-tenkyu-label {
  background: var(--yellow);
  color: var(--navy);
}

.ap-ippan-label {
  background: #fff;
  color: var(--red);
}

.ap-shows-grid {
  background: var(--bg-card);
}

.ap-show-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #FFE8E8;
  transition: background 0.15s;
}

.ap-show-card:last-child {
  border-bottom: none;
}

.ap-show-card:hover {
  background: #FFF5F5;
}

.ap-show-date-block {
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
}

.ap-show-month {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.05em;
}

.ap-show-day {
  display: block;
  font-size: 38px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.ap-show-dow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  background: #FFE8E8;
  border-radius: 4px;
  padding: 1px 6px;
  margin-top: 2px;
}

.ap-dow-sat {
  background: #E0F4FF;
  color: #0088CC;
}

.ap-dow-sun {
  background: #FFE8E8;
  color: var(--red);
}

.ap-dow-week {
  background: #f0f0f0;
  color: #333;
}

.ap-show-info {
  flex: 1;
  min-width: 0;
}

.ap-show-pref {
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.ap-show-venue {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

.ap-show-time {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}

.ap-show-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.ap-btn-tenkyu,
.ap-btn-ippan {
  display: block;
  font-size: 14px;
  font-weight: 900;
  padding: 7px 12px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

.ap-btn-tenkyu:hover,
.ap-btn-ippan:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  color: inherit;
  text-decoration: none;
}

.ap-btn-tenkyu {
  background: linear-gradient(135deg, var(--red-vivid), var(--orange));
  color: #fff;
  box-shadow: 0 3px 10px rgba(232, 23, 58, 0.35);
}

.ap-btn-ippan {
  background: #fff;
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow: 0 2px 8px rgba(232, 23, 58, 0.12);
}

/* ===========================
   YOYOGI SECTION
   =========================== */
.ap-yoyogi-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(160deg, #C8001E 0%, #E8173A 50%, #B00018 100%);
  color: #fff;
  overflow: hidden;
}

.ap-yoyogi-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ap-yoyogi-stars {
  display: none;
}

@keyframes sparkle {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

.ap-yoyogi-section .ap-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ap-yoyogi-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  padding: 6px 22px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255, 214, 0, 0.5);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.4);
  }

  50% {
    box-shadow: 0 4px 40px rgba(255, 214, 0, 0.8);
  }
}

.ap-yoyogi-date-big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  margin-bottom: 12px;
}

.ap-yoyogi-month {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  color: #fff;
}

.ap-yoyogi-day {
  font-size: clamp(72px, 15vw, 120px);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 60px rgba(255, 80, 40, 0.6), 4px 4px 0 rgba(0, 0, 0, 0.4);
  line-height: 1;
}

.ap-yoyogi-dow {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  color: #fff;
}

.ap-yoyogi-venue-name {
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.ap-yoyogi-time {
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

.ap-yoyogi-pref {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD600, #FF8A00);
  color: #1A0010;
  padding: 3px 14px;
  border-radius: 999px;
  margin-bottom: 48px;
  letter-spacing: 0.1em;
}

.ap-yoyogi-tickets {
  background: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.ap-yoyogi-tickets-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--red);
  text-align: center;
}

.ap-yoyogi-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ap-yoyogi-ticket {
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.ap-yoyogi-ticket:hover {
  transform: translateY(-3px);
}

.ap-yoyogi-ticket::before {
  display: none;
}

.ap-yoyogi-ticket.ap-super {
  background: linear-gradient(135deg, #FFD600, #FF8A00);
  color: #1A0010;
}

.ap-yoyogi-ticket.ap-tenkyu {
  background: linear-gradient(135deg, #E8173A, #FF4040);
  color: #fff;
}

.ap-yoyogi-ticket.ap-appare {
  background: linear-gradient(135deg, #0088CC, #00AAFF);
  color: #fff;
}

.ap-yoyogi-ticket.ap-joseiFamily {
  background: linear-gradient(135deg, #E0007A, #FF4DA6);
  color: #fff;
}

.ap-yoyogi-ticket.ap-ippan-y {
  background: linear-gradient(135deg, #00955A, #00C87A);
  color: #fff;
}

.ap-yoyogi-ticket.ap-otameshi {
  background: linear-gradient(135deg, #FF6B00, #FF9500);
  color: #fff;
}

.ap-yt-name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 6px;
}

.ap-yt-price {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.ap-yt-detail {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.85;
  line-height: 1.5;
}

.ap-yt-note {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.7;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 6px;
}

.ap-yoyogi-ticket.ap-super .ap-yt-note {
  border-top-color: rgba(0, 0, 0, 0.15);
}

.ap-yoyogi-sales {
  background: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.ap-yoyogi-sales-block {
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.ap-yoyogi-sales-block:last-of-type {
  margin-bottom: 0;
}

.ap-yoyogi-buy-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.ap-yoyogi-buy-btn {
  display: block;
  font-size: 15px;
  font-weight: 900;
  padding: 14px 24px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ap-yoyogi-buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: inherit;
  text-decoration: none;
}

.ap-btn-premium {
  background: #7D00BE;
  color: #fff;
}

.ap-btn-ippan-y {
  background: linear-gradient(135deg, #00955A, #00C87A);
  color: #fff;
}

.ap-btn-otameshi {
  background: linear-gradient(135deg, #FF6B00, #FF9500);
  color: #fff;
  border: none;
}

.ap-ys-header {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 800;
}

.ap-premium-header {
  background: var(--navy);
}

.ap-standard-header {
  background: #444;
}

.ap-ys-rows {
  background: #f5f5f5;
}

.ap-ys-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 14px 20px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
}

.ap-ys-row:last-child {
  border-bottom: none;
}

.ap-ys-phase {
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 120px;
  text-align: center;
}

.ap-ys-phase.ap-saisoku {
  background: var(--yellow);
  color: var(--navy);
}

.ap-ys-phase.ap-hp {
  background: var(--coral);
  color: #fff;
}

.ap-ys-phase.ap-general {
  background: #eee;
  color: var(--navy);
  border: 1px solid #ccc;
}

.ap-ys-period {
  flex: 1;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  text-align: left;
}

.ap-ys-note {
  font-size: 12px;
  color: #666;
}

.ap-ys-note strong {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  padding: 2px 10px;
}

.ap-yoyogi-coming-soon {
  margin-top: 28px;
  text-align: center;
}

.ap-yoyogi-coming-soon p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.ap-coming-soon-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 100, 60, 0.5);
  color: rgba(255, 150, 100, 0.8);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 10px 32px;
  border-radius: var(--radius-sm);
  animation: blink 2s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ===========================
   NOTES
   =========================== */
.ap-notes-section {
  padding: 60px 0;
  background: var(--bg-card);
}

.ap-notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.ap-notes-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.ap-notes-list li::before {
  content: '!';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 18px;
}

.ap-notes-list a {
  color: var(--red);
  text-decoration: underline;
}

/* ===========================
   FOOTER
   =========================== */
.ap-site-footer {
  background: #7D00BE;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 24px 20px;
  font-weight: 700;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 600px) {
  .ap-show-card {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }

  .ap-show-btns {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .ap-btn-tenkyu,
  .ap-btn-ippan {
    flex: 1;
    font-size: 12px;
    padding: 8px 6px;
  }

  .ap-yoyogi-ticket-grid {
    grid-template-columns: 1fr;
  }

  .ap-ys-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .ap-ys-period {
    white-space: normal;
  }

  .ap-legend-grid {
    flex-direction: column;
    align-items: center;
  }

  .ap-group-period {
    flex-direction: column;
  }
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.ap-tour-group,
.ap-yoyogi-section .ap-container>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ap-tour-group.ap-visible,
.ap-yoyogi-section .ap-container>*.ap-visible {
  opacity: 1;
  transform: translateY(0);
}