@charset "UTF-8";

/* ============================================
   リセット & ベース
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s;
}

input, button, textarea, select {
  border: none;
  outline: none;
  background: none;
  vertical-align: baseline;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* ============================================
   CSS カスタムプロパティ
   ============================================ */
:root {
  --c-primary: #1a237e;
  --c-primary-dark: #0d1451;
  --c-primary-lighter: #e8eaf6;
  --c-accent: #e91e8f;
  --c-purple: #4a148c;
  --c-gold: #ffd700;
  --c-pink: #e91e8f;

  --bg-cream: #fdf5f8;
  --bg-gray: #f3e5f5;

  --party-gradient: linear-gradient(135deg, #1a237e 0%, #4a148c 30%, #e91e8f 70%, #ff6b6b 100%);
  --party-gradient-soft: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 50%, #fce4ec 100%);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 16px;

  --easeOutCubic: cubic-bezier(.33, 1, .68, 1);
  --easeOutQuint: cubic-bezier(.22, 1, .36, 1);
  --easeOutQuart: cubic-bezier(.25, 1, .5, 1);
}

/* PC フォントサイズ (clamp) */
@media (min-width: 768px) {
  :root {
    --fs-12: clamp(11px, calc(11px + 1 * ((100vw - 768px) / 472)), 12px);
    --fs-14: clamp(12px, calc(12px + 2 * ((100vw - 768px) / 472)), 14px);
    --fs-15: clamp(13px, calc(13px + 2 * ((100vw - 768px) / 472)), 15px);
    --fs-16: clamp(14px, calc(14px + 2 * ((100vw - 768px) / 472)), 16px);
    --fs-17: clamp(15px, calc(15px + 2 * ((100vw - 768px) / 472)), 17px);
    --fs-18: clamp(16px, calc(16px + 2 * ((100vw - 768px) / 472)), 18px);
    --fs-20: clamp(17px, calc(17px + 3 * ((100vw - 768px) / 472)), 20px);
    --fs-22: clamp(19px, calc(19px + 3 * ((100vw - 768px) / 472)), 22px);
    --fs-24: clamp(20px, calc(20px + 4 * ((100vw - 768px) / 472)), 24px);
    --fs-27: clamp(23px, calc(23px + 4 * ((100vw - 768px) / 472)), 27px);
    --fs-34: clamp(28px, calc(28px + 6 * ((100vw - 768px) / 472)), 34px);
    --fs-50: clamp(40px, calc(40px + 10 * ((100vw - 768px) / 472)), 50px);
    --fs-70: clamp(45px, calc(45px + 25 * ((100vw - 768px) / 472)), 70px);
    --letter-spacing-primary: .12em;
  }
}

/* SP フォントサイズ (vw) */
@media (max-width: 767.98px) {
  :root {
    --fs-10: 2.18vw;
    --fs-11: 2.4vw;
    --fs-12: 2.62vw;
    --fs-13: 2.83vw;
    --fs-14: 3.05vw;
    --fs-15: 3.27vw;
    --fs-16: 3.49vw;
    --fs-17: 3.71vw;
    --fs-18: 3.92vw;
    --fs-20: 4.36vw;
    --fs-22: 4.8vw;
    --fs-24: 5.23vw;
    --fs-25: 5.45vw;
    --fs-28: 6.1vw;
    --fs-30: 6.54vw;
    --letter-spacing-primary: .08em;
  }
}

/* ============================================
   ベーススタイル
   ============================================ */
body {
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .05em;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 70px;
}

body.scroll-hidden {
  overflow: hidden;
}

.sp-only {
  display: none;
}
@media (max-width: 767.98px) {
  .sp-only {
    display: inline;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .is-sp { display: none; }
}
@media (max-width: 767.98px) {
  .is-pc { display: none; }
}

#contents {
  overflow: hidden;
  position: relative;
}

/* ============================================
   ローディング
   ============================================ */
#loading {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: var(--c-primary);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  animation: fadeIn 0.35s ease both;
}

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 0.3em;
  opacity: 0;
  transition: opacity 0.65s var(--easeOutQuint);
}

.loading-text.is-active {
  opacity: 1;
}

/* ============================================
   アソビューヘッダーバー
   ============================================ */
.asoview-bar {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 750px;
  margin: 0 auto;
}

.asoview-logo {
  height: 28px;
}

.asoview-logo img {
  height: 100%;
  width: auto;
}

.asoview-nav {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}

.asoview-nav a:hover { color: var(--c-accent); }

@media (max-width: 600px) {
  .asoview-nav { display: none; }
}

/* 40周年バナー */
.anniversary-banner {
  background: linear-gradient(90deg, var(--c-gold), #ffa000, var(--c-gold));
  text-align: center;
  padding: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.1em;
  max-width: 750px;
  margin: 0 auto;
}

/* ============================================
   キービジュアル（ヒーロー）
   ============================================ */
.key-visual {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.key-visual .kv-img {
  width: 100%;
  height: auto;
  display: block;
}

.kv-main {
  width: 100%;
  max-width: 750px;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}

.kv-badge {
  display: inline-block;
  background: rgba(255,215,0,0.2);
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.kv-title-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.kv-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
}

.kv-subtitle {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--c-gold);
  text-shadow: 0 2px 15px rgba(255,215,0,0.4);
  margin-bottom: 24px;
  opacity: 0;
}

.kv-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  max-width: 650px;
  margin: 0 auto 16px;
  line-height: 1.9;
}

.kv-date {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.15);
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  margin-bottom: 32px;
}

.kv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-gold);
  color: var(--c-primary);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 16px 48px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  transition: all 0.3s ease;
}

.kv-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.5);
}

.kv-logo {
  position: relative;
  z-index: 2;
}

.kv-logo.is-in .kv-title {
  animation: fadeInUp 1.2s var(--easeOutQuint) 0.2s both;
}

.kv-logo.is-in .kv-subtitle {
  animation: fadeInUp 1.2s var(--easeOutQuint) 0.4s both;
}

.kv-logo.is-in .kv-badge,
.kv-logo.is-in .kv-title-sub,
.kv-logo.is-in .kv-desc,
.kv-logo.is-in .kv-date,
.kv-logo.is-in .kv-cta {
  animation: fadeInUp 1s var(--easeOutQuint) 0.6s both;
}


/* ============================================
   イントロ / About セクション
   ============================================ */
.intro {
  background: linear-gradient(180deg, var(--c-primary) 0%, #311b92 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 80px 20px;
}


.intro-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.intro-title {
  font-size: var(--fs-24);
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 1em;
}

.intro-title .marker {
  background: linear-gradient(transparent 60%, rgba(255, 215, 0, 0.7) 60%);
  padding: 0.1em 0.15em;
}

.intro-text {
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: var(--letter-spacing-primary);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2em;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.highlight-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.14);
}

.highlight-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.highlight-title {
  font-size: var(--fs-15);
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 4px;
}

.highlight-desc {
  font-size: var(--fs-12);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .intro {
    padding: 15vw 5%;
  }
  .intro-title {
    font-size: var(--fs-20);
    line-height: 1.7;
  }
  .intro-text {
    font-size: var(--fs-15);
    line-height: 1.9;
    text-align: left;
  }
  .intro-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .highlight-desc {
    text-align: left;
  }
  .history-text {
    text-align: left;
  }
}

/* ============================================
   公演動画
   ============================================ */
.movie {
  background: linear-gradient(180deg, #311b92 0%, var(--c-primary) 100%);
  padding: 60px 20px;
}
.movie-inner {
  max-width: 800px;
  margin: 0 auto;
}
.movie-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
  padding-top: 56.25%; /* 16:9 */
}
.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.movie-play-btn {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0, .65);
  border-radius: 50%;
  pointer-events: none;
  transition: background 0.3s ease;
}
.movie-play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
}
.movie-wrap:hover .movie-play-btn {
  background: rgba(255, 0, 0, .85);
}
@media (max-width: 768px) {
  .movie {
    padding: 10vw 4%;
  }
  .movie-wrap {
    border-radius: 8px;
  }
}

/* ============================================
   フォトギャラリー
   ============================================ */
.gallery {
  background: #fff;
  padding: 80px 20px;
  overflow: hidden;
}

.gallery-inner {
  max-width: 750px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .gallery {
    padding: 15vw 4%;
  }
  .gallery-grid {
    gap: 8px;
  }
}

/* ============================================
   作品カード（5つの物語）
   ============================================ */
.works {
  background: #fff;
  padding: 80px 20px;
}

.works-inner {
  max-width: 750px;
  margin: 0 auto;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.work-visual {
  position: relative;
  overflow: hidden;
}

.work-visual img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.work-visual .work-emoji {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
}


.work-info {
  padding: 20px;
  background: #fff;
}

.work-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.work-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .works {
    padding: 15vw 4%;
  }
  .works-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   特別な見どころ（Features）
   ============================================ */
.features {
  background: linear-gradient(180deg, var(--c-primary) 0%, #311b92 100%);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.features-inner {
  max-width: 750px;
  margin: 0 auto;
}

.features .section-header-en,
.features .section-header-title {
  color: #fff;
}

.features .section-header-inner::before {
  background: var(--c-gold);
  opacity: 1;
}

.features-lead {
  font-size: var(--fs-20);
  font-weight: 700;
  text-align: center;
  color: rgba(255,255,255,0.95);
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

.features-bottom {
  font-size: var(--fs-16);
  font-weight: 600;
  text-align: center;
  color: rgba(255,255,255,0.9);
  margin-top: 32px;
  letter-spacing: 0.1em;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--c-gold);
}

.feature-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.85;
}

@media (max-width: 767.98px) {
  .features {
    padding: 15vw 5%;
  }
  .features-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   セクションヘッダー共通
   ============================================ */
.section-header {
  display: grid;
  justify-items: center;
  width: fit-content;
  text-align: center;
  margin: 0 auto 50px;
  position: relative;
}

.section-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header-inner::before {
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1 / 1;
  background: var(--c-accent);
  border-radius: 50%;
  opacity: 0.3;
  margin-bottom: 4px;
}

.section-header-en {
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.section-header-title {
  font-size: var(--fs-50);
  font-weight: 800;
  line-height: 1;
  letter-spacing: var(--letter-spacing-primary);
  color: var(--c-primary);
  padding-top: 4px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--party-gradient);
  border-radius: 2px;
  margin: 16px auto 0;
}

@media (max-width: 767.98px) {
  .section-header {
    display: block;
    margin-bottom: 7.692vw;
  }

  .section-header-inner::before {
    width: 8.974vw;
    margin-bottom: 1.026vw;
  }

  .section-header-en {
    font-size: var(--fs-12);
  }

  .section-header-title {
    font-size: var(--fs-30);
    padding-top: 1.026vw;
  }
}

/* ============================================
   公演日程・会場
   ============================================ */
.schedule {
  background: #f7f8fc;
  padding: 80px 20px;
}

.schedule-inner {
  max-width: 750px;
  margin: 0 auto;
}

.venue-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.venue-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.venue-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.venue-card-cta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eee;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: color 0.2s;
}

.venue-card:hover .venue-card-cta {
  color: #c2185b;
}

.venue-card-arrow {
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.2s;
}

.venue-card:hover .venue-card-arrow {
  transform: translateX(4px);
}

.venue-card-disabled {
  cursor: default;
  opacity: 0.7;
}

.venue-card-disabled:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.venue-card-cta-disabled {
  color: #999;
}

.venue-card-header {
  padding: 14px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.region-tohoku { background: linear-gradient(135deg, #43a047, #66bb6a); }
.region-kanto { background: linear-gradient(135deg, #1565c0, #42a5f5); }
.region-chubu { background: linear-gradient(135deg, #e65100, #ff9800); }
.region-kansai { background: linear-gradient(135deg, #ad1457, #ec407a); }
.region-chushikoku { background: linear-gradient(135deg, #6a1b9a, #ab47bc); }
.region-kyushu { background: linear-gradient(135deg, #00838f, #26c6da); }

.venue-region {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255,255,255,0.25);
  padding: 2px 10px;
  border-radius: 50px;
}

.venue-city {
  font-size: 1.1rem;
  font-weight: 800;
}

.venue-card-body {
  padding: 20px;
}

.venue-detail {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.venue-detail-label {
  min-width: 48px;
  font-weight: 700;
  color: #888;
  flex-shrink: 0;
}

.venue-detail-value {
  color: #333;
  font-weight: 500;
}

.venue-price-range {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eee;
  font-size: 0.82rem;
  color: #666;
}

.venue-price-highlight {
  font-weight: 800;
  color: var(--c-purple);
  font-size: 1.05rem;
}

@media (max-width: 600px) {
  .schedule {
    padding: 15vw 4%;
  }
  .venue-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   チケット料金テーブル
   ============================================ */
.ticket {
  background: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.ticket-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.ticket-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.ticket-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 700px;
}

.ticket-table thead th {
  background: var(--c-purple);
  color: #fff;
  padding: 12px 10px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.ticket-table thead th:first-child {
  text-align: left;
  padding-left: 16px;
}

.ticket-table tbody td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}

.ticket-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  padding-left: 16px;
  color: #333;
}

.ticket-table tbody tr:hover {
  background: #faf5ff;
}

.ticket-table .price-premium {
  color: var(--c-purple);
  font-weight: 800;
}

.ticket-table .no-seat {
  color: #ccc;
}

.ticket-notes {
  background: #faf5ff;
  border-radius: var(--radius);
  padding: 24px;
  font-size: 0.82rem;
  color: #555;
  line-height: 2;
}

.ticket-notes-title {
  font-weight: 800;
  color: var(--c-purple);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .ticket {
    padding: 15vw 4%;
  }
}

/* ============================================
   CTA セクション
   ============================================ */
.cta-section {
  background: var(--party-gradient);
  text-align: center;
  color: #fff;
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,215,0,0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 40%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.8;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--c-purple);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 56px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ============================================
   FAQ セクション
   ============================================ */
.faq {
  background: #f7f8fc;
  padding: 80px 20px;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: #faf5ff; }

.faq-q-icon {
  background: var(--c-purple);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 24px 18px 64px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.9;
  display: none;
}

.faq-item.is-open .faq-answer { display: block; }

.faq-toggle {
  margin-left: auto;
  font-size: 1.2rem;
  color: #999;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.is-open .faq-toggle { transform: rotate(45deg); }

@media (max-width: 767.98px) {
  .faq {
    padding: 15vw 4%;
  }
}

/* ============================================
   40周年の歩み（Stats）
   ============================================ */
.history {
  background: #fff;
  padding: 80px 20px;
}

.history-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.history-text {
  font-size: 0.92rem;
  color: #444;
  line-height: 2;
  margin-bottom: 32px;
}

.history-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.history-stat {
  text-align: center;
}

.history-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-purple);
}

.history-stat-number span {
  font-size: 1rem;
}

.history-stat-label {
  font-size: 0.8rem;
  color: #888;
  font-weight: 600;
}

/* ============================================
   SNS セクション
   ============================================ */
.sns {
  background: #f7f8fc;
  padding: 60px 20px;
  text-align: center;
}

.sns-inner {
  max-width: 750px;
  margin: 0 auto;
}

.sns-desc {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 24px;
}

.sns-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.sns-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.sns-link-x { background: #1a1a2e; }
.sns-link-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.sns-link-web { background: var(--c-purple); }

/* ============================================
   フッター
   ============================================ */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.6);
  padding: 40px 20px;
  text-align: center;
  font-size: 0.8rem;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 24px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links a:hover { color: #fff; }

.footer-copy {
  margin-top: 8px;
}

.footer-disney-copy {
  margin-top: 8px;
  font-size: 0.7rem;
  opacity: 0.5;
}

/* ============================================
   ライトボックス
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}

.gallery-item {
  cursor: pointer;
}

/* ============================================
   フローティングCTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.3s ease;
}

.floating-cta-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
}

.floating-cta-btn {
  background: var(--c-accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 12px 32px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.floating-cta-btn:hover {
  background: #c2185b;
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .floating-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 16px;
  }
  .floating-cta-text { display: none; }
  .floating-cta-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}

/* ============================================
   デコレーション（円形背景）
   ============================================ */
.circle-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.circle {
  --circle-base: clamp(240px, 28vw, 420px);
  --circle-k: 1;
  --circle-s: calc(var(--circle-base) * var(--circle-k));
  --circle-x: 0%;
  --circle-y: 0%;
  position: absolute;
  left: var(--circle-x);
  top: var(--circle-y);
  width: var(--circle-s);
  height: var(--circle-s);
  border-radius: 50%;
  background: #d194e8;
  filter: blur(20px);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.circle-1 { --circle-k: 0.833; --circle-y: -4%; --circle-x: 38%; }
.circle-2 { --circle-k: 0.905; --circle-y: 26%; --circle-x: 70%; }
.circle-3 { --circle-k: 0.905; --circle-y: 28%; --circle-x: 0%; }

/* ============================================
   アニメーション
   ============================================ */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translate3d(0, -40px, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translate3d(0, 40px, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* スクロール表示アニメーション */
.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--easeOutCubic),
              transform 0.8s var(--easeOutCubic);
}

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