@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 {
  /* テーマカラー — PIW 2026（新規層向け・爽やか＋華やか） */
  --c-primary: #2B6CB0;
  --c-primary-dark: #1E4E8C;
  --c-primary-lighter: #EBF4FF;
  --c-accent: #E8567F;
  --c-accent-light: #FDE8EE;
  --c-gold: #D4A843;
  --c-gold-light: #FBF3E0;

  --bg-ice: #F7FAFD;
  --bg-alt: #EBF4FF;

  --ice-gradient: linear-gradient(135deg, #2B6CB0 0%, #4299E1 50%, #63B3ED 100%);
  --ice-gradient-soft: linear-gradient(135deg, #EBF4FF 0%, #F7FAFD 50%, #FDE8EE 100%);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 16px;

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

  /* フォント */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Poppins", sans-serif;

  /* レイアウト */
  --kv-ratio: 40%;
}

/* 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);
    --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: #2D3748;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-ice);
}

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; } }

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

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

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

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

/* ============================================
   スプリットスクリーン レイアウト
   ============================================ */
.layout {
  display: block;
}

@media (min-width: 1024px) {
  .layout {
    display: grid;
    grid-template-columns: var(--kv-ratio) 1fr;
    min-height: 100vh;
  }
}

/* ============================================
   左KV（sticky）
   ============================================ */
.kv {
  position: relative;
  overflow: hidden;
}

.kv-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.kv-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 78, 140, 0.85) 0%,
    rgba(30, 78, 140, 0.4) 40%,
    rgba(30, 78, 140, 0.15) 100%
  );
}

.kv-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 24px;
  color: #fff;
  text-align: center;
}

.kv-series {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--c-gold);
  margin-bottom: 12px;
}

.kv-title {
  font-size: var(--fs-24, 24px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.kv-title-sub {
  font-size: var(--fs-16, 16px);
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

.kv-info {
  margin-bottom: 24px;
}

.kv-date {
  font-family: var(--font-en);
  font-size: var(--fs-22, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.kv-date-sep {
  margin: 0 4px;
  opacity: 0.6;
}

.kv-venue {
  font-size: var(--fs-14, 14px);
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.9;
}

/* KV logo animation */
.kv-logo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--easeOutQuint), transform 0.8s var(--easeOutQuint);
}
.kv-logo.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* SP: KV は画像全体表示 */
@media (max-width: 1023px) {
  .kv {
    position: relative;
    height: auto;
  }
  .kv-inner {
    position: relative;
  }
  .kv-bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .kv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(30, 78, 140, 0.75) 0%,
      rgba(30, 78, 140, 0.3) 40%,
      transparent 70%
    );
  }
  .kv-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
  }
}

/* PC: KV は sticky 固定（ヘッダー高さ分オフセット） */
@media (min-width: 1024px) {
  .kv {
    position: sticky;
    top: var(--asoview-bar-h, 48px);
    height: calc(100vh - var(--asoview-bar-h, 48px));
    overflow: hidden;
  }
  .kv-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .kv-content {
    padding: 60px 32px;
  }
  .kv-title {
    font-size: var(--fs-27, 27px);
  }
  .kv-series {
    font-size: 14px;
  }
}

/* ============================================
   右: LPメインコンテンツ
   ============================================ */
.lp-main {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

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

/* PC: ヘッダーは全幅（左KV領域も含む） */
@media (min-width: 1024px) {
  .asoview-bar {
    padding: 12px 32px;
  }
}

.asoview-logo-text {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-accent);
}

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

@media (hover: hover) and (pointer: fine) {
  .asoview-nav a:hover { color: var(--c-accent); }
}

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

/* ============================================
   セクション共通
   ============================================ */
.section {
  padding: 64px 0;
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1023px) {
  .section-inner {
    max-width: 640px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-en {
  font-family: var(--font-en);
  font-size: var(--fs-12, 12px);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--c-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header-title {
  font-size: var(--fs-24, 24px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #2D3748;
}

.section-divider {
  width: 40px;
  height: 3px;
  background: var(--c-accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* 背景交互 */
.section--highlights,
.section--guide,
.section--faq {
  background: var(--bg-alt);
}

.section--cta {
  background: var(--ice-gradient);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-fade,
  .kv-logo {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .faq-answer { transition: none; }
  .gallery-item img { transition: none; }
  .highlight-img-wrap img { transition: none; }
}

/* ============================================
   ボタン共通
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-ja);
  font-size: var(--fs-15, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  border-radius: 999px;
  padding: 14px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn--accent {
  background: var(--c-accent);
  color: #fff;
}

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

.btn--lg {
  font-size: var(--fs-17, 17px);
  padding: 18px 48px;
}

.btn--sm {
  font-size: var(--fs-13, 13px);
  padding: 10px 24px;
}

@media (hover: hover) and (pointer: fine) {
  .btn--accent:hover {
    background: #D14570;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 86, 127, 0.35);
  }
  .btn--outline:hover {
    background: var(--c-primary);
    color: #fff;
    transform: translateY(-1px);
  }
}

/* ============================================
   INTRO セクション
   ============================================ */
.section--intro {
  padding-top: 72px;
}

.intro-body {
  text-align: center;
}

.intro-lead {
  font-size: var(--fs-18, 18px);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #2D3748;
}

.intro-text {
  font-size: var(--fs-15, 15px);
  font-weight: 400;
  line-height: 2;
  color: #4A5568;
  margin-bottom: 16px;
}

.intro-text strong {
  color: var(--c-primary);
  font-weight: 700;
}

.intro-video {
  margin-top: 40px;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

@media (min-width: 1024px) {
  .intro-video {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(880px, 56vw);
    margin-top: 56px;
  }
}

.intro-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================
   3つの魅力 (HIGHLIGHTS)
   ============================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.highlight-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
}

.highlight-number {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 800;
  color: var(--c-primary-lighter);
  padding: 16px 20px 0;
  line-height: 1;
}

.highlight-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 0;
}

.highlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .highlight-card:hover .highlight-img-wrap img {
    transform: scale(1.05);
  }
}

.highlight-title {
  font-size: var(--fs-17, 17px);
  font-weight: 900;
  line-height: 1.4;
  padding: 16px 20px 8px;
  color: #2D3748;
}

.highlight-text {
  font-size: var(--fs-14, 14px);
  line-height: 1.8;
  color: #718096;
  padding: 0 20px 24px;
}

/* ============================================
   ゲストスケーター (SKATERS)
   ============================================ */
.skaters-lead {
  text-align: center;
  font-size: var(--fs-15, 15px);
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 32px;
}

.skaters-group {
  margin-bottom: 32px;
}

.skaters-group-label {
  font-size: var(--fs-15, 15px);
  font-weight: 700;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: var(--c-primary-lighter);
  border-radius: 8px;
  display: inline-block;
  width: 100%;
}

.skaters-group-label span {
  font-weight: 500;
  opacity: 0.8;
  margin-left: 4px;
}

.skaters-grid {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.skaters-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

.skaters-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .skaters-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.skater-card {
  text-align: center;
  width: 100%;
}

.skater-img {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--bg-alt);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 1024px) {
  .section--skaters .section-inner {
    max-width: 880px;
  }
  .skater-img {
    max-width: 190px;
  }
}

.skater-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skater-img--face-top img {
  object-position: center 18%;
}

.skater-name {
  font-size: var(--fs-15, 15px);
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 4px;
}

.skater-role {
  font-size: var(--fs-12, 12px);
  color: #718096;
}

.skaters-alternate {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .skaters-alternate {
    grid-template-columns: 1fr 1fr;
  }
}

.skaters-note {
  font-size: var(--fs-12, 12px);
  color: #A0AEC0;
  text-align: center;
  margin-top: 24px;
}

/* ============================================
   フォトギャラリー (GALLERY)
   ============================================ */
.gallery-note {
  text-align: center;
  font-size: var(--fs-12, 12px);
  color: #A0AEC0;
  margin-bottom: 24px;
  font-style: italic;
}

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

.gallery-grid .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 14px;
  }
  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
  }
  .gallery-grid .gallery-item:nth-child(2) {
    grid-column: span 5;
    grid-row: span 2;
  }
  .gallery-grid .gallery-item:nth-child(3),
  .gallery-grid .gallery-item:nth-child(4),
  .gallery-grid .gallery-item:nth-child(5) {
    grid-column: span 4;
  }
}

@media (min-width: 1024px) {
  .section--gallery .section-inner {
    max-width: 1000px;
  }
  .gallery-grid {
    grid-auto-rows: 220px;
    gap: 16px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }
  .gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.05);
  }
  .gallery-item:hover::after {
    opacity: 1;
  }
}

/* ============================================
   ライトボックス
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.9);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 36px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  z-index: 1;
  transition: opacity 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .lightbox-close:hover {
    opacity: 0.7;
  }
}

/* ============================================
   はじめてガイド (GUIDE)
   ============================================ */
.guide-lead {
  text-align: center;
  font-size: var(--fs-15, 15px);
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 32px;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.guide-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-primary-lighter);
  color: var(--c-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.guide-title {
  font-size: var(--fs-17, 17px);
  font-weight: 700;
  color: #2D3748;
}

.guide-text {
  font-size: var(--fs-14, 14px);
  line-height: 1.8;
  color: #718096;
}

/* ============================================
   スケジュール (SCHEDULE)
   ============================================ */
.schedule-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .schedule-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.schedule-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.schedule-card-header {
  background: var(--c-primary);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.schedule-date {
  font-family: var(--font-en);
  font-size: var(--fs-27, 27px);
  font-weight: 800;
  line-height: 1;
}

.schedule-day {
  font-size: var(--fs-14, 14px);
  font-weight: 600;
  opacity: 0.9;
}

.schedule-day--holiday {
  color: var(--c-gold);
}

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

.schedule-times {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.schedule-time {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.schedule-label {
  font-size: var(--fs-12, 12px);
  font-weight: 700;
  color: #fff;
  background: var(--c-primary);
  padding: 2px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}

.schedule-value {
  font-size: var(--fs-15, 15px);
  font-weight: 600;
  color: #2D3748;
}

.schedule-badge {
  font-size: var(--fs-11, 11px);
  font-weight: 700;
  color: var(--c-accent);
  background: var(--c-accent-light);
  padding: 2px 8px;
  border-radius: 4px;
}

.schedule-guest {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-guest-label {
  font-size: var(--fs-11, 11px);
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.05em;
}

.schedule-guest-names {
  font-size: var(--fs-14, 14px);
  font-weight: 600;
  color: #2D3748;
}

.schedule-note {
  font-size: var(--fs-12, 12px);
  color: #A0AEC0;
  text-align: center;
  margin-top: 24px;
  line-height: 1.8;
}

/* ============================================
   チケット情報 (TICKET)
   ============================================ */
.ticket-table-wrap {
  margin-bottom: 32px;
  overflow-x: auto;
}

.ticket-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-14, 14px);
}

.ticket-table th,
.ticket-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
}

.ticket-table th {
  font-size: var(--fs-12, 12px);
  font-weight: 700;
  color: #fff;
  background: var(--c-primary);
  letter-spacing: 0.05em;
}

.ticket-table td {
  color: #2D3748;
}

.ticket-table td strong {
  font-weight: 700;
}

.ticket-note-inline {
  display: inline-block;
  font-size: var(--fs-11, 11px);
  color: #A0AEC0;
  margin-left: 6px;
  font-weight: 400;
}

.ticket-table tbody tr:nth-child(even) {
  background: #F7FAFD;
}

/* テーブル注釈 */
.ticket-table-note {
  margin-top: 12px;
  font-size: var(--fs-12, 12px);
  color: #718096;
  line-height: 1.7;
}

/* お得チケット */
.ticket-deals {
  margin-bottom: 32px;
}

.ticket-deals-title {
  font-size: var(--fs-18, 18px);
  font-weight: 900;
  color: var(--c-primary);
  margin-bottom: 16px;
  text-align: center;
}

.ticket-deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ticket-deal-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--c-primary);
  display: flex;
  flex-direction: column;
}

.ticket-deal-card--featured {
  border-top-color: var(--c-accent);
  box-shadow: var(--shadow-md);
}

.ticket-deal-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--c-primary);
  color: #fff;
  font-size: var(--fs-12, 12px);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.ticket-deal-badge--strong {
  background: var(--c-accent);
}

.ticket-deal-badge--gold {
  background: var(--c-gold);
}

.ticket-deal-name {
  font-size: var(--fs-18, 18px);
  font-weight: 900;
  color: #2D3748;
  margin: 0 0 4px;
}

.ticket-deal-name-sub {
  font-size: var(--fs-13, 13px);
  font-weight: 600;
  color: #718096;
  margin-left: 4px;
}

.ticket-deal-target {
  font-size: var(--fs-13, 13px);
  color: var(--c-primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.ticket-deal-card--featured .ticket-deal-target {
  color: var(--c-accent);
}

.ticket-deal-prices {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  border-top: 1px solid #E2E8F0;
}

.ticket-deal-prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed #E2E8F0;
  font-size: var(--fs-13, 13px);
  color: #4A5568;
  gap: 8px;
}

.ticket-deal-prices li > span:first-child {
  font-weight: 600;
}

.ticket-deal-prices s {
  color: #A0AEC0;
  font-size: var(--fs-12, 12px);
  margin-right: 4px;
}

.ticket-deal-prices strong {
  color: var(--c-accent);
  font-size: var(--fs-16, 16px);
  font-weight: 700;
}

.ticket-deal-bonus {
  background: var(--c-accent-light);
  color: var(--c-accent);
  font-size: var(--fs-13, 13px);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  text-align: center;
}

.ticket-deal-note {
  font-size: var(--fs-11, 11px);
  color: #A0AEC0;
  line-height: 1.7;
  margin-bottom: 14px;
}

.ticket-deal-card .ticket-cta {
  margin-top: auto;
}

@media (min-width: 768px) {
  .ticket-deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 販売スケジュール注釈 */
.ticket-schedule-note {
  margin-top: 10px;
  font-size: var(--fs-11, 11px);
  color: #A0AEC0;
  line-height: 1.7;
}

/* チケット特典 */
.ticket-special {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--c-gold);
}

.ticket-special-title {
  font-size: var(--fs-17, 17px);
  font-weight: 900;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.ticket-special-text {
  font-size: var(--fs-14, 14px);
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 12px;
}

.ticket-special-text strong {
  color: var(--c-accent);
}

.ticket-special-note {
  font-size: var(--fs-12, 12px);
  color: #A0AEC0;
  line-height: 1.7;
}

.ticket-discount-table {
  margin: 12px 0;
}

.ticket-discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #E2E8F0;
}

.ticket-discount-seat {
  font-size: var(--fs-14, 14px);
  font-weight: 600;
  color: #2D3748;
}

.ticket-discount-price {
  font-size: var(--fs-14, 14px);
  color: #718096;
}

.ticket-discount-price s {
  opacity: 0.5;
}

.ticket-discount-price strong {
  color: var(--c-accent);
  font-size: var(--fs-17, 17px);
}

/* 販売スケジュール */
.ticket-schedule {
  margin-bottom: 24px;
}

.ticket-schedule-title {
  font-size: var(--fs-15, 15px);
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 12px;
}

.ticket-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ticket-schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.ticket-schedule-item--active {
  border: 2px solid var(--c-accent);
  background: var(--c-accent-light);
}

.ticket-schedule-label {
  font-size: var(--fs-14, 14px);
  font-weight: 600;
  color: #2D3748;
}

.ticket-schedule-date {
  font-size: var(--fs-14, 14px);
  font-weight: 700;
  color: var(--c-primary);
}

.ticket-schedule-item--active .ticket-schedule-date {
  color: var(--c-accent);
}

/* 注意事項 */
.ticket-notes {
  margin-bottom: 32px;
}

.ticket-notes-list {
  list-style: none;
  padding: 0;
}

.ticket-notes-list li {
  font-size: var(--fs-12, 12px);
  color: #A0AEC0;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.ticket-notes-list li::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* チケットCTA */
.ticket-cta {
  text-align: center;
}

/* ============================================
   CTAセクション
   ============================================ */
.cta-block {
  text-align: center;
  padding: 40px 20px;
}

.cta-catch {
  font-size: var(--fs-27, 27px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.cta-sub {
  font-size: var(--fs-15, 15px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.section--cta .btn--accent {
  background: #fff;
  color: var(--c-primary);
  font-weight: 800;
}

@media (hover: hover) and (pointer: fine) {
  .section--cta .btn--accent:hover {
    background: var(--c-gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.4);
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  text-align: left;
  font-size: var(--fs-15, 15px);
  font-weight: 600;
  color: #2D3748;
  line-height: 1.5;
  cursor: pointer;
  transition: background 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .faq-question:hover {
    background: #F7FAFD;
  }
}

.faq-q {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: var(--c-primary);
  border-radius: 50%;
}

.faq-question-text {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: #A0AEC0;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding: 0 20px 20px;
}

.faq-answer p {
  font-size: var(--fs-14, 14px);
  line-height: 1.9;
  color: #718096;
  padding-left: 40px;
}

.faq-answer ul {
  list-style: disc outside;
  margin: 8px 0;
  padding: 0 0 0 60px;
}

.faq-answer li {
  font-size: var(--fs-14, 14px);
  line-height: 1.9;
  color: #718096;
}

.faq-answer li::marker {
  color: var(--c-primary);
}

/* ============================================
   フッター
   ============================================ */
.footer {
  background: #1A202C;
  color: #A0AEC0;
  padding: 48px 24px 32px;
}

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

.footer-title {
  font-size: var(--fs-15, 15px);
  font-weight: 700;
  color: #E2E8F0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-meta {
  font-size: var(--fs-12, 12px);
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-copyright {
  font-size: var(--fs-11, 11px);
  margin-top: 24px;
  color: #718096;
}

.footer-asoview {
  font-size: var(--fs-11, 11px);
  margin-top: 8px;
  color: #718096;
}

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

@media (hover: hover) and (pointer: fine) {
  .footer-asoview a:hover {
    text-decoration: underline;
  }
}

/* ============================================
   フローティングCTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: opacity 0.3s ease;
}

.floating-cta-btn {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 14px 32px;
  background: var(--c-accent);
  color: #fff;
  font-size: var(--fs-15, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  text-align: center;
  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .floating-cta-btn:hover {
    background: #D14570;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 86, 127, 0.35);
  }
}

/* PC: フローティングCTAは右カラム内に収める */
@media (min-width: 1024px) {
  .floating-cta {
    left: var(--kv-ratio);
  }
}

/* ============================================
   印刷対策
   ============================================ */
@media print {
  #loading,
  .floating-cta,
  .asoview-bar { display: none; }
  .kv { position: static; height: auto; }
  .layout { display: block; }
  .js-fade { opacity: 1; transform: none; }
}
