/*
 * ============================================================
 * パルミラ夜市 特設LP — メインスタイルシート
 * ============================================================
 * デザインコンセプト:
 *   ネイビー背景（#050a1a）× ネオンカラー（シアン・マゼンタ・イエロー）
 *   見出し: Noto Serif JP（明朝体・クリーム色）
 *   本文:   Noto Sans JP（ゴシック体）
 *   英数字: Bebas Neue（アクセント）
 * ============================================================
 */

/* ============================================================
 * 1. カスタムプロパティ（デザイントークン）
 * ============================================================ */
:root {
  /* --- カラーパレット --- */
  --color-bg:        #050a1a;   /* ページ背景: ディープネイビー */
  --color-bg-card:   #0b0e2a;   /* カード背景 */
  --color-bg-mid:    #0e1235;   /* セクション中間背景 */

  --color-cyan:      #00e5ff;   /* ネオンシアン: 時刻・アクセント */
  --color-magenta:   #ff2d9b;   /* ネオンマゼンタ: CTAボタン・アクセント */
  --color-yellow:    #ffe600;   /* ネオンイエロー: 日付・ハイライト */
  --color-purple:    #c84bff;   /* ネオンパープル: アクセント */

  --color-cream:     #f5ead8;   /* クリーム: 見出しテキスト */
  --color-white:     #ffffff;   /* 白: 本文テキスト */
  --color-muted:     rgba(245, 234, 216, 0.55); /* 薄いクリーム: サブテキスト */

  /* --- タイポグラフィ --- */
  --font-serif:   'Noto Serif JP', serif;   /* 明朝体: 見出し */
  --font-sans:    'Noto Sans JP', sans-serif; /* ゴシック体: 本文 */
  --font-bebas:   'Bebas Neue', cursive;    /* 英数字アクセント */

  /* --- スペーシング --- */
  --section-py:  5rem;   /* セクション上下パディング */
  --container-max: 1100px; /* コンテナ最大幅 */
}

/* ============================================================
 * 2. リセット・ベーススタイル
 * ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth; /* スムーズスクロール */
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
 * 3. ユーティリティクラス
 * ============================================================ */

/* コンテナ: 中央揃え・レスポンシブパディング */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* セクション共通パディング */
.section-pad {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* ============================================================
 * 4. セクションタイトル共通スタイル
 *    ガイド画像準拠: ラベル + 区切り線 + 明朝体大見出し
 * ============================================================ */

/* セクションラベル（例: "CONCEPT" / "SHOP LINEUP"） */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-label__icon {
  /* 提灯アイコン */
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  opacity: 0.75;
}

.section-label__text {
  font-family: var(--font-bebas);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--color-cyan);
}

.section-label__line {
  /* ラベル右の区切り線 */
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 229, 255, 0.4), transparent);
}

/* セクション見出し（明朝体・クリーム） */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

/* セクション見出し下の装飾区切り線 */
.section-divider {
  width: 3rem;
  height: 2px;
  background: linear-gradient(to right, var(--color-magenta), var(--color-cyan));
  margin-bottom: 2rem;
}

/* ============================================================
 * 5. ナビゲーションバー
 * ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 3.5rem;
  background: rgba(5, 10, 26, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.12);
  transition: background 0.3s ease;
}

/* ナビロゴ（テキスト） */
.navbar__logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.08em;
}

/* ナビリンク群 */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar__links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245, 234, 216, 0.75);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.navbar__links a:hover {
  color: var(--color-cyan);
}

/* ナビのInstagramボタン */
.navbar__cta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  background: var(--color-magenta);
  color: #fff;
  letter-spacing: 0.06em;
  box-shadow: 0 0 16px rgba(255, 45, 155, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.navbar__cta:hover {
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(255, 45, 155, 0.75);
}

/* モバイルではナビリンクを非表示 */
@media (max-width: 640px) {
  .navbar__links {
    display: none;
  }
}

/* ============================================================
 * 6. ヒーローセクション（FV）
 * ============================================================ */
#hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-bg);
}

/* 背景画像レイヤー（パララックス用） */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
}

/* 下部グラデーションオーバーレイ */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 26, 0) 0%,
    rgba(5, 10, 26, 0.05) 20%,
    rgba(5, 10, 26, 0.35) 50%,
    rgba(5, 10, 26, 0.85) 75%,
    rgba(5, 10, 26, 0.97) 100%
  );
}

/* ヒーローコンテンツ（中央揃え） */
.hero__content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

/* ロゴ画像ラッパー */
.hero__logo-wrap {
  width: 100%;
  max-width: min(900px, 92vw);
  padding: 0 1rem;
  margin-bottom: 1.5rem;
  /* フェードイン + 浮き上がりアニメーション */
  animation: heroFadeUp 1.3s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

.hero__logo {
  width: 100%;
  height: auto;
  /* ネオングロー脈動アニメーション */
  animation: logoGlow 3.5s ease-in-out 1.5s infinite;
}

/* 日時・場所情報ブロック（枠装飾） */
.hero__info-box {
  position: relative;
  width: 100%;
  max-width: min(640px, 92vw);
  padding: 1.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 229, 255, 0.45);
  background: rgba(5, 10, 26, 0.65);
  backdrop-filter: blur(6px);
  box-shadow:
    0 0 0 1px rgba(255, 45, 155, 0.15) inset,
    0 0 40px rgba(0, 229, 255, 0.08),
    0 0 80px rgba(255, 45, 155, 0.06);
  animation: heroFadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.9s both;
}

/* 四隅の装飾ライン */
.hero__info-box::before,
.hero__info-box::after {
  content: '';
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
}

/* 左上コーナー */
.corner-tl {
  position: absolute;
  top: 0; left: 0;
  width: 1.25rem; height: 1.25rem;
  border-top: 2px solid rgba(0, 229, 255, 0.8);
  border-left: 2px solid rgba(0, 229, 255, 0.8);
}

/* 右上コーナー */
.corner-tr {
  position: absolute;
  top: 0; right: 0;
  width: 1.25rem; height: 1.25rem;
  border-top: 2px solid rgba(255, 45, 155, 0.8);
  border-right: 2px solid rgba(255, 45, 155, 0.8);
}

/* 左下コーナー */
.corner-bl {
  position: absolute;
  bottom: 0; left: 0;
  width: 1.25rem; height: 1.25rem;
  border-bottom: 2px solid rgba(255, 45, 155, 0.8);
  border-left: 2px solid rgba(255, 45, 155, 0.8);
}

/* 右下コーナー */
.corner-br {
  position: absolute;
  bottom: 0; right: 0;
  width: 1.25rem; height: 1.25rem;
  border-bottom: 2px solid rgba(0, 229, 255, 0.8);
  border-right: 2px solid rgba(0, 229, 255, 0.8);
}

/* 提灯アイコン（左右） */
.hero__lantern {
  position: absolute;
  top: 50%;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  opacity: 0.6;
  pointer-events: none;
  animation: sway 4s ease-in-out infinite;
}

.hero__lantern--left  { left: 0.75rem;  transform: translateY(-50%); }
.hero__lantern--right { right: 0.75rem; transform: translateY(-50%) scaleX(-1); animation-delay: 0.4s; }

/* 枠内の区切り線 */
.hero__divider {
  height: 1px;
  margin: 0.75rem 0;
}

.hero__divider--top {
  background: linear-gradient(to right, transparent, rgba(0, 229, 255, 0.5), rgba(255, 45, 155, 0.5), transparent);
}

.hero__divider--mid {
  background: linear-gradient(to right, transparent, rgba(255, 230, 0, 0.35), transparent);
}

.hero__divider--bottom {
  background: linear-gradient(to right, transparent, rgba(255, 45, 155, 0.5), rgba(0, 229, 255, 0.5), transparent);
}

/* 日付テキスト */
.hero__date {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.05rem, 4vw, 1.9rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.hero__date-highlight {
  color: var(--color-yellow);
  margin: 0 0.2em;
}

.hero__date-sep {
  color: rgba(255, 255, 255, 0.35);
}

/* 時刻テキスト（大きなネオン表示） */
.hero__time {
  font-family: var(--font-bebas);
  font-size: clamp(2.4rem, 9.5vw, 4.8rem);
  color: var(--color-cyan);
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 0 22px rgba(0, 229, 255, 0.85), 0 0 55px rgba(0, 229, 255, 0.4);
  margin-bottom: 0.75rem;
}

/* 場所テキスト */
.hero__venue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(0.78rem, 2.4vw, 0.92rem);
  color: rgba(245, 234, 216, 0.88);
  letter-spacing: 0.08em;
}

.hero__venue-icon {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  opacity: 0.6;
  filter: hue-rotate(180deg) brightness(1.8);
}

/* CTAボタン群 */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0 1rem;
  animation: heroFadeUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 1.55s both;
}

@media (min-width: 480px) {
  .hero__cta-group {
    flex-direction: row;
  }
}

/* Instagramボタン */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  background: var(--color-magenta);
  color: #fff;
  box-shadow: 0 0 28px rgba(255, 45, 155, 0.65), 0 4px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.btn-instagram:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 45, 155, 0.85); }
.btn-instagram:active { transform: scale(0.97); }

/* 出店一覧ボタン */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(245, 234, 216, 0.45);
  transition: transform 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.btn-outline:hover { transform: scale(1.05); border-color: rgba(245, 234, 216, 0.75); }
.btn-outline:active { transform: scale(0.97); }

/* スクロール誘導 */
.hero__scroll {
  text-align: center;
  padding-top: 1.5rem;
  animation: fadeIn 0.6s ease 2.1s both;
}

.hero__scroll-label {
  font-family: var(--font-bebas);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: rgba(245, 234, 216, 0.3);
  margin-bottom: 0.25rem;
}

.hero__scroll-arrow {
  color: rgba(245, 234, 216, 0.3);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ============================================================
 * 7. コンセプトセクション
 * ============================================================ */
#concept {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-mid) 50%, var(--color-bg) 100%);
}

/* 装飾雲（左上） */
.concept__cloud-pink {
  position: absolute;
  top: -2rem;
  left: -3rem;
  width: clamp(8rem, 20vw, 14rem);
  opacity: 0.55;
  pointer-events: none;
}

/* 装飾雲（右上） */
.concept__cloud-purple {
  position: absolute;
  top: 1rem;
  right: -2rem;
  width: clamp(6rem, 15vw, 10rem);
  opacity: 0.4;
  pointer-events: none;
}

/* ハイビスカス（右下） */
.concept__hibiscus {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  width: clamp(5rem, 12vw, 8rem);
  opacity: 0.3;
  pointer-events: none;
}

/* 2カラムグリッド（PC: 左テキスト + 右写真） */
.concept__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .concept__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* コンセプトキャッチコピー */
.concept__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

/* キャッチコピー内のネオン強調 */
.concept__headline-accent {
  color: var(--color-cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

/* バッジ群（入場無料・2日間限定・7/10・11開催） */
.concept__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.concept__badge {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--color-cyan);
  letter-spacing: 0.06em;
  background: rgba(0, 229, 255, 0.06);
}

/* コンセプト本文 */
.concept__body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(245, 234, 216, 0.8);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* 数字ハイライトグリッド（20+ / 2 / 5H / FREE） */
.concept__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.concept__stat-card {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-top: 3px solid;
  border-left: 1px solid;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

/* 数字（大きなネオン表示） */
.concept__stat-value {
  font-family: var(--font-bebas);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1;
}

/* ラベル */
.concept__stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  margin-top: 0.375rem;
}

/* 実写写真エリア */
.concept__photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 写真フレーム（ネオン枠） */
.photo-frame {
  position: relative;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  object-fit: cover;
}

.photo-frame--main img { aspect-ratio: 4 / 3; }
.photo-frame--sub  img { aspect-ratio: 16 / 9; }

/* 写真下部グラデーション */
.photo-frame__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4rem;
  background: linear-gradient(to top, rgba(5, 10, 26, 0.7), transparent);
  pointer-events: none;
}

/* 写真四隅装飾 */
.photo-frame__corner {
  position: absolute;
  width: 1rem;
  height: 1rem;
}

.photo-frame__corner--tl { top: 0; left: 0; border-top: 2px solid rgba(0, 229, 255, 0.7); border-left: 2px solid rgba(0, 229, 255, 0.7); }
.photo-frame__corner--tr { top: 0; right: 0; border-top: 2px solid rgba(255, 45, 155, 0.7); border-right: 2px solid rgba(255, 45, 155, 0.7); }
.photo-frame__corner--bl { bottom: 0; left: 0; border-bottom: 2px solid rgba(255, 45, 155, 0.7); border-left: 2px solid rgba(255, 45, 155, 0.7); }
.photo-frame__corner--br { bottom: 0; right: 0; border-bottom: 2px solid rgba(0, 229, 255, 0.7); border-right: 2px solid rgba(0, 229, 255, 0.7); }

/* ============================================================
 * 8. 出店一覧セクション
 * ============================================================ */
#shops {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-card) 40%, var(--color-bg) 100%);
}

/* 出店カードグリッド（最大4カラム） */
.shops__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

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

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

/* 出店カード */
.shop-card {
  position: relative;
  overflow: hidden;
  background: rgba(11, 14, 42, 0.85);
  border: 1px solid;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-3px);
}

/* カード上辺のネオンライン */
.shop-card__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 1;
}

/* 写真エリア（4:3比率） */
.shop-card__image-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  background: var(--color-bg-card);
}

.shop-card__image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(11, 14, 42, 0.97) 0%, rgba(14, 18, 53, 0.97) 100%);
}

/* Coming Soon テキスト */
.shop-card__coming-soon {
  font-family: var(--font-bebas);
  letter-spacing: 0.18em;
  text-align: center;
  font-size: clamp(0.9rem, 3.2vw, 1.4rem);
}

/* 店舗写真（画像がある場合） */
.shop-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* カード下部テキストエリア */
.shop-card__body {
  padding: 0.875rem;
}

.shop-card__genre {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
  padding: 0.2rem 0.5rem;
  display: inline-block;
  border: 1px solid;
}

.shop-card__name {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.shop-card__desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* 出店募集CTAブロック */
.shops__recruit {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.03);
}

.shops__recruit-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.shops__recruit-body {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ============================================================
 * 9. マップ＆アクセスセクション
 * ============================================================ */
#access {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

/* マップ + アクセス情報の2カラム */
.access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .access__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* Googleマップiframe */
.access__map-wrap {
  position: relative;
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.08);
  overflow: hidden;
}

.access__map-wrap iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
  filter: invert(90%) hue-rotate(180deg); /* ダークマップ風フィルター */
}

@media (min-width: 768px) {
  .access__map-wrap iframe { height: 380px; }
}

/* アクセス情報リスト */
.access__info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* アクセス情報アイテム */
.access__info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid;
}

.access__info-label {
  font-family: var(--font-bebas);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  min-width: 3rem;
  padding-top: 0.1rem;
}

.access__info-content {
  flex: 1;
}

.access__info-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-cream);
  margin-bottom: 0.25rem;
}

.access__info-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* 胡屋バス停強調バナー */
.access__bus-banner {
  text-align: center;
  padding: 1.25rem;
  margin-top: 1rem;
  background: rgba(255, 45, 155, 0.06);
  border: 1px solid rgba(255, 45, 155, 0.25);
}

.access__bus-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(245, 234, 216, 0.85);
}

.access__bus-highlight {
  font-weight: 900;
  color: var(--color-magenta);
  font-size: 1.1rem;
}

/* 注意事項ボックス */
.access__notice {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 230, 0, 0.2);
  background: rgba(255, 230, 0, 0.03);
}

.access__notice-title {
  font-family: var(--font-bebas);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}

.access__notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.access__notice-list li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-muted);
  padding-left: 0.75rem;
  position: relative;
}

.access__notice-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* ============================================================
 * 10. タイムテーブルセクション
 * ============================================================ */
#schedule {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-card) 30%, var(--color-bg-mid) 60%, var(--color-bg-card) 100%);
}

/* タイムライン縦線 */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 2.25rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.3) 10%, rgba(255, 45, 155, 0.3) 90%, transparent);
}

/* タイムラインアイテム */
.timeline__item {
  display: flex;
  gap: 1.25rem;
  padding: 0 0 2.5rem 0;
  position: relative;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

/* 提灯マーカー */
.timeline__marker {
  flex-shrink: 0;
  width: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding-top: 0.25rem;
}

.timeline__lantern {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  animation: sway 4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 45, 155, 0.5));
}

/* 時刻表示 */
.timeline__time {
  font-family: var(--font-bebas);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

/* タイムラインコンテンツ */
.timeline__content {
  flex: 1;
  padding: 1rem 1.25rem;
  border-left: 3px solid;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

/* ハイライトアイテム（エイサー演舞） */
.timeline__content--highlight {
  background: rgba(255, 230, 0, 0.04);
  box-shadow: 0 0 30px rgba(255, 230, 0, 0.06);
}

.timeline__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.375rem;
}

.timeline__desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ハイライトバッジ */
.timeline__badge {
  display: inline-block;
  font-family: var(--font-bebas);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.5rem;
  background: var(--color-yellow);
  color: #050a1a;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* スケジュール注記 */
.schedule__note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--color-muted);
}

.schedule__note a {
  color: var(--color-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
 * 11. フッター / CTAセクション
 * ============================================================ */
#footer-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg) 0%, #080d22 100%);
  text-align: center;
}

/* FOLLOW & CONTACT ラベル */
.footer-cta__label {
  font-family: var(--font-bebas);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--color-magenta);
  margin-bottom: 1.5rem;
}

/* CTA見出し */
.footer-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.footer-cta__title span {
  color: var(--color-magenta);
  text-shadow: 0 0 20px rgba(255, 45, 155, 0.5);
}

.footer-cta__body {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* KOZAROCKS2026 バナー */
.kozarocks-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 230, 0, 0.2);
  transition: border-color 0.2s ease;
}

.kozarocks-banner:hover {
  border-color: rgba(255, 230, 0, 0.5);
}

.kozarocks-banner__label {
  font-family: var(--font-bebas);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-yellow);
  margin-bottom: 0.25rem;
}

.kozarocks-banner__name {
  font-family: var(--font-bebas);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--color-cream);
}

.kozarocks-banner__desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-muted);
}

.kozarocks-banner__arrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-yellow);
  white-space: nowrap;
}

/* フッター下部 */
footer {
  background: #030710;
  padding: 2.5rem 1.25rem;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.25rem;
}

.footer__brand-en {
  font-family: var(--font-bebas);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.footer__brand-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.footer__nav-title {
  font-family: var(--font-bebas);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-cyan);
  margin-bottom: 0.75rem;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__nav-list a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.footer__nav-list a:hover {
  color: var(--color-cream);
}

.footer__copyright {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(245, 234, 216, 0.3);
}

/* ============================================================
 * 12. スクロールアニメーション（ScrollReveal）
 * ============================================================ */

/* 初期状態: 非表示 */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.reveal--left  { transform: translateX(-2rem); }
.reveal.reveal--right { transform: translateX(2rem); }
.reveal.reveal--up    { transform: translateY(2rem); }

/* 表示状態: アニメーション後 */
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
 * 13. キーフレームアニメーション
 * ============================================================ */

/* ヒーローFV フェードアップ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* フェードイン */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ロゴネオングロー脈動 */
@keyframes logoGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 24px rgba(0, 229, 255, 0.55))
      drop-shadow(0 0 50px rgba(255, 0, 170, 0.38))
      drop-shadow(0 0 10px rgba(255, 230, 0, 0.28));
  }
  50% {
    filter:
      drop-shadow(0 0 42px rgba(0, 229, 255, 0.95))
      drop-shadow(0 0 80px rgba(255, 0, 170, 0.7))
      drop-shadow(0 0 24px rgba(255, 230, 0, 0.5));
  }
}

/* 提灯の揺れ */
@keyframes sway {
  0%, 100% { transform: rotate(-4deg); }
  50%       { transform: rotate(4deg); }
}

/* スクロール矢印バウンス */
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
 * 14. アクセシビリティ: モーション軽減設定
 * ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
