/* ============================================================
   イタグレ集会 2026 LP
   デザイン語彙は 乗鞍高原はなびりうむ (STUDIO製) を参照:
   明朝×欧文セリフ / 淡青→桜色グラデ / 波形区切り / 上品トーン
   配色方針: メインは昼のアイボリー基調、EVENING セクションのみ夕暮れ
   ============================================================ */

:root {
  --bg-main: #f7f1e3;
  --bg-alt: #f4eddd;
  --bg-deep: #ece3cd;
  --ink: #1d2547;
  --ink-strong: #161d39;
  --sub: #5c617c;
  --border: #cfc7ae;
  /* 昼のアクセントはイラストのテラコッタ、夜は金 */
  --grad-1: #a25539;
  --grad-2: #c97b5a;
  --gold: #a9853f;
  --gold-soft: #c9a45c;
  --terra: #a25539;
  /* 無料コンテンツの識別色（森の緑）。テラコッタと並べても混ざらない色相を選ぶ */
  --leaf: #4d7350;
  --grad: linear-gradient(120deg, var(--grad-1), var(--grad-2));
  --night: #161d39;
  --night-deep: #070c23;
  --font-display: 'Dela Gothic One', sans-serif;
  --font-en-fun: 'Bungee', cursive;
  --font-elegant: 'Zen Old Mincho', serif;
  --font-elegant-en: 'Cormorant Garamond', serif;
  --font-mincho: 'Zen Maru Gothic', sans-serif;
  --font-serif-en: 'Fredoka', sans-serif;
  --font-sans: 'Noto Sans JP', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  position: relative;
}

/* 紙のようなグレイン質感 */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
}

/* 戻り導線を左端に置くため、ヘッダーは左寄せ＋ナビだけ右端に送る */
.site-header { justify-content: flex-start; }
.site-header .nav-pill { margin-left: auto; }
.back-pill {
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--sub);
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.back-pill:hover { color: var(--terra); border-color: var(--terra); }

.logo-mark {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--ink-strong);
  display: flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(247, 241, 227, 0.78);
  border: 1px solid rgba(29, 37, 71, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.logo-year {
  font-family: var(--font-serif-en);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.nav-pill {
  display: flex;
  gap: 4px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(247, 241, 227, 0.78);
  border: 1px solid rgba(29, 37, 71, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-pill a {
  font-family: var(--font-serif-en);
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 2px 10px;
  color: var(--sub);
  transition: color 0.3s;
}
.nav-pill a:hover { color: var(--ink-strong); }

.header-cta {
  font-size: 12px;
  color: var(--sub);
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(29, 37, 71, 0.25);
  background: rgba(247, 241, 227, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.header-cta strong { color: var(--gold); font-weight: 500; }
.header-cta:hover { border-color: var(--gold); color: var(--ink-strong); }

@media (max-width: 960px) {
  .nav-pill { display: none; }
}
@media (max-width: 480px) {
  .header-cta { font-size: 11px; padding: 8px 13px; }
  .logo-mark { font-size: 15px; letter-spacing: 0.06em; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #10173a url(../images/mv_bg.webp) center 32% / cover no-repeat;
}
/* さがみ湖の空撮の上で白文字を読ませる暗幕（上→下で濃くなる） */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 44%, rgba(9,14,35,0.42) 0%, rgba(9,14,35,0) 60%),
    linear-gradient(180deg, rgba(9,14,35,0.6) 0%, rgba(9,14,35,0.46) 42%, rgba(9,14,35,0.84) 100%);
}

/* 木漏れ日の光の粒 */
.hero-air { position: absolute; inset: 0; }
.mote {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.75), rgba(201, 164, 92, 0));
  animation: drift 9s ease-in-out infinite;
}
.mo1 { top: 22%; left: 12%; animation-delay: 0s; }
.mo2 { top: 34%; left: 84%; width: 10px; height: 10px; animation-delay: 1.6s; }
.mo3 { top: 60%; left: 8%;  width: 5px; height: 5px; animation-delay: 3.1s; }
.mo4 { top: 14%; left: 62%; animation-delay: 4.4s; }
.mo5 { top: 70%; left: 90%; width: 6px; height: 6px; animation-delay: 5.8s; }
.mo6 { top: 48%; left: 30%; width: 5px; height: 5px; animation-delay: 7.2s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.35; }
  50% { transform: translate(9px, -20px); opacity: 1; }
}

.hero-inner { position: relative; z-index: 2; padding: 110px 24px 180px; }

.hero-sup {
  font-family: var(--font-mincho);
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}
.no-break { white-space: nowrap; }

.hero-en {
  font-family: var(--font-en-fun);
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 19px);
  letter-spacing: 0.22em;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.hero-en em { font-style: italic; letter-spacing: 0.2em; }

.hero-data {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(18px, 4vw, 46px);
  margin-top: 44px;
  flex-wrap: wrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero-date, .hero-venue, .hero-time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 0 clamp(18px, 3vw, 40px);
}
.hero-venue, .hero-time { border-left: 1px solid rgba(255, 255, 255, 0.3); }

.d-y { font-family: var(--font-serif-en); font-size: 15px; letter-spacing: 0.3em; color: rgba(255,255,255,0.8); }
.d-md { font-family: var(--font-mincho); font-size: 17px; color: #fff; }
.d-md strong { font-family: var(--font-serif-en); font-weight: 400; font-size: clamp(34px, 4vw, 44px); padding: 0 3px; }
.d-w { font-size: 12px; letter-spacing: 0.3em; color: var(--gold-soft); }

.v-label, .t-label { font-size: 11px; letter-spacing: 0.34em; color: rgba(255,255,255,0.8); }
.v-logo {
  height: clamp(40px, 5vw, 58px);
  width: auto;
  margin: 6px auto 2px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}
.v-sub { font-size: 12px; color: rgba(255,255,255,0.8); }
.t-soon {
  font-family: var(--font-serif-en);
  font-size: clamp(16px, 1.8vw, 19px);
  letter-spacing: 0.22em;
  color: var(--gold-soft);
}
.t-main {
  font-family: var(--font-serif-en);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 27px);
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}
.t-dash { padding: 0 5px; opacity: 0.75; }
.t-note { font-size: 11px; letter-spacing: 0.08em; color: var(--gold-soft); margin-top: 3px; }

/* ============================================
   カウントダウン（昼＝ポップでエキサイティング）
   ============================================ */
.countdown {
  background: var(--bg-warm);
  text-align: center;
  padding: clamp(38px, 6vw, 60px) 20px;
}
.cd-label {
  font-family: var(--font-mincho);
  font-size: clamp(14px, 2vw, 17px);
  letter-spacing: 0.2em;
  color: var(--terra-deep);
  margin-bottom: clamp(18px, 3vw, 26px);
}
.cd-clock {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(4px, 1.4vw, 12px);
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(56px, 12vw, 96px);
}
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 8vw, 74px);
  line-height: 1;
  color: var(--terra);
  font-variant-numeric: tabular-nums;
}
.cd-tag {
  font-family: var(--font-serif-en);
  font-weight: 600;
  font-size: clamp(9px, 1.4vw, 12px);
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-top: 10px;
}
.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 48px);
  line-height: 1;
  color: var(--gold-soft);
  padding-top: clamp(4px, 1vw, 10px);
}
.cd-date {
  font-family: var(--font-serif-en);
  font-weight: 500;
  font-size: clamp(12px, 1.8vw, 15px);
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-top: clamp(20px, 3vw, 28px);
}
.cd-clock.is-live .cd-num { color: var(--terra-deep); }

.hero-copy {
  font-family: var(--font-mincho);
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 46px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

/* スクロール誘導 */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
}
.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

@media (max-width: 640px) {
  .hero-sup { letter-spacing: 0.18em; font-size: 11.5px; }
  .hero-data { flex-direction: column; gap: 18px; }
  .hero-venue, .hero-time { border-left: none; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 16px; }
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--night);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-en-fun);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: rgba(247, 241, 227, 0.9);
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 共通セクション ---------- */
section { position: relative; padding: 110px 24px; }

.sec-en {
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-align: center;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.sec-en::after {
  content: "";
  display: block;
  width: 36px; height: 1px;
  margin: 12px auto 0;
  background: var(--grad);
}

.sec-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 34px);
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--ink-strong);
  margin-bottom: 40px;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- message ---------- */
.message { background: var(--bg-main); text-align: center; }
.message-catch {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: 0.16em;
  line-height: 1.7;
  color: var(--ink-strong);
  margin-bottom: 36px;
}
.message-body {
  max-width: 640px;
  margin: 0 auto;
  color: var(--sub);
  font-size: 15px;
}
.message-body p + p { margin-top: 26px; }
.message-illust {
  height: clamp(130px, 17vw, 190px);
  margin: 44px auto 0;
}
/* 集合イラストはほぼ正方形なので、幅ではなく高さで頭を押さえる
   （幅基準だと縦に伸びすぎる） */
.message-illust--gathering {
  height: clamp(190px, 26vw, 280px);
  width: auto;
  max-width: 88%;
}

/* ---------- recruit（出店者募集） ---------- */
.recruit { background: var(--bg-alt); }
.recruit-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 54px 28px 48px;
  border: 2px solid var(--terra);
  border-radius: 20px;
  background: #fffdf6;
  text-align: center;
}
/* お座りイタグレを枠の肩に引っかける */
.recruit-illust {
  position: absolute;
  top: 0;
  right: clamp(12px, 4vw, 44px);
  height: clamp(96px, 13vw, 148px);
  transform: translateY(-64%);
  pointer-events: none;
}
.recruit-lead {
  font-family: var(--font-mincho);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 2;
  color: var(--ink);
  margin-top: 6px;
}
/* 出店条件は来場者向けページに出さない方針。詳細は個別案内なので本文のみ */
.recruit-body {
  font-size: clamp(13.5px, 1.5vw, 15px);
  line-height: 2.1;
  color: var(--sub);
  margin-top: 26px;
}
.recruit-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 36px;
  padding: 20px 54px;
  border-radius: 999px;
  background: var(--grad);
  color: #fffdf6;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(162, 85, 57, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.recruit-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(162, 85, 57, 0.34);
}
.recruit-cta-main {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 2.1vw, 21px);
  letter-spacing: 0.1em;
}
.recruit-cta-sub {
  font-family: var(--font-serif-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  opacity: 0.85;
}
.recruit-note {
  font-size: 12.5px;
  line-height: 2;
  color: var(--sub);
  margin-top: 26px;
}
.recruit-note a { color: var(--terra); }

@media (max-width: 640px) {
  .recruit-inner { padding: 46px 16px 40px; border-radius: 16px; }
  .recruit-cta { width: 100%; max-width: 330px; padding: 18px 20px; }
}

/* 装飾パーツ（parts_v2 由来） */
.contents-garland {
  display: block;
  width: clamp(280px, 36vw, 440px);
  margin: -6px auto 34px;
}
.shop-booth {
  display: block;
  height: clamp(76px, 9vw, 104px);
  margin: 0 auto 18px;
}
.shop-paws {
  display: block;
  width: min(60vw, 680px);
  margin: 44px auto 0;
  opacity: 0.5;
}
.faq-illust {
  display: block;
  height: clamp(70px, 8vw, 96px);
  margin: 0 auto 18px;
}
.follow-illust {
  display: block;
  height: clamp(120px, 14vw, 170px);
  margin: 0 auto 20px;
}

/* ---------- about ---------- */
.about { background: var(--bg-main); padding-top: 0; }
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.about-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffdf6;
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(29, 37, 71, 0.05);
}
.about-icon {
  height: clamp(56px, 6vw, 72px);
  margin: 0 auto 14px;
}
.about-label {
  font-family: var(--font-serif-en);
  font-size: 13px;
  letter-spacing: 0.34em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.about-main {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--ink-strong);
}
.about-main small { font-size: 0.7em; }
.about-sub { font-size: 12px; color: var(--sub); margin-top: 10px; }
.about-org { text-align: center; font-size: 13px; color: var(--sub); margin-top: 34px; }

@media (max-width: 768px) {
  /* 3枚を横並びのまま維持する（縦積みだと開催概要が間延びするため）。
     狭い幅に3列を収めるので、セクションの左右余白とカード内の余白・文字を詰める */
  .about { padding-left: 14px; padding-right: 14px; }
  .about-cards { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: none; }
  .about-card { padding: 18px 7px; border-radius: 10px; }
  .about-icon { height: 40px; margin-bottom: 8px; }
  .about-label { font-size: 10px; letter-spacing: 0.16em; margin-bottom: 8px; }
  .about-main { font-size: 13px; letter-spacing: 0.01em; line-height: 1.55; }
  .about-sub { font-size: 10px; line-height: 1.65; margin-top: 7px; }
}

/* ---------- ticket（前売りセット券） ---------- */
.ticket { background: var(--bg-main); }
.ticket-lead {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 40px;
}
.ticket-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.t-plan {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffdf6;
  padding: 32px 30px 28px;
  box-shadow: 0 2px 14px rgba(29, 37, 71, 0.05);
}
/* フリーパス側は乗り放題の"お得側"なので、枠線をテラコッタにして視線を寄せる */
.t-plan--fp { border-color: rgba(162, 85, 57, 0.55); background: linear-gradient(170deg, #fff7ec 0%, #fffdf6 60%); }
.t-plan-en {
  font-family: var(--font-serif-en);
  font-size: 12px;
  letter-spacing: 0.34em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.t-plan-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 24px);
  letter-spacing: 0.04em;
  color: var(--ink-strong);
}
.t-plan-desc { font-size: 12.5px; color: var(--sub); margin: 10px 0 20px; line-height: 1.8; }
.t-price { list-style: none; }
.t-price li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px dashed var(--border);
}
.t-price li:last-child { border-bottom: 1px dashed var(--border); }
.t-who { font-family: var(--font-mincho); font-size: 14px; letter-spacing: 0.06em; color: var(--ink); }
.t-yen { font-family: var(--font-mincho); font-size: 13px; color: var(--ink-strong); white-space: nowrap; }
.t-yen strong {
  font-family: var(--font-serif-en);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 30px);
  letter-spacing: 0.01em;
  color: var(--terra);
  padding-right: 3px;
}
/* 前売りチケットの購入ボタン。販売はさがみ湖MORI MORI側で準備中のため、
   押せないグレーのまま置いて、ホバー／タップでイタグレが顔を出す演出で「準備中」を伝える */
/* 犬と吹き出しはボタンの上へせり出すので、料金カードに重ならないだけの逃げを取る
   （必要量 ≒ --dog-h + 12px。--dog-h を変えたらここも見直す） */
.ticket-cta { text-align: center; margin-top: clamp(86px, 9vw, 100px); }
.buy-wrap { position: relative; display: inline-block; }
.buy-btn {
  position: relative;
  z-index: 2;
  min-width: min(340px, 82vw);
  padding: 19px 34px;
  border: 1px solid #c6bfad;
  border-radius: 999px;
  background: #e6e0d1;
  color: #8b8577;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.8vw, 18px);
  letter-spacing: 0.06em;
  cursor: not-allowed;
  transition: border-color 0.35s, background 0.35s;
}
/* 犬と吹き出しはボタンの真上に横一列。イタグレは左から駆け込んでくる
   （dog_run.webp は右向き＋左側にスピード線なので、左→右の動きと絵が噛み合う） */
.buy-wrap { --dog-h: clamp(50px, 5.6vw, 66px); }
.buy-stage {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 12px);
  height: var(--dog-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
  z-index: 1;
}
.buy-dog {
  height: var(--dog-h);
  opacity: 0;
  transform: translateX(-46px);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.buy-soon {
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  white-space: nowrap;
  font-family: var(--font-en-fun);
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.14em;
  color: #fffdf6;
  background: var(--terra);
  border-radius: 999px;
  padding: 6px 15px;
  box-shadow: 0 4px 14px rgba(162, 85, 57, 0.28);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.28s, opacity 0.3s ease 0.28s;
}
.buy-wrap.is-peek .buy-dog {
  opacity: 1;
  transform: translateX(0);
  animation: buy-bob 1.4s ease-in-out 0.6s infinite;
}
.buy-wrap.is-peek .buy-soon { opacity: 1; transform: translateY(0) scale(1); }
.buy-wrap.is-peek .buy-btn { border-color: rgba(162, 85, 57, 0.45); background: #eae4d5; }
@keyframes buy-bob {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -4px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .buy-dog, .buy-soon { transition: opacity 0.2s ease; }
  .buy-wrap.is-peek .buy-dog { transform: translateX(0); animation: none; }
  .buy-wrap.is-peek .buy-soon { transform: none; }
}
.buy-note { font-size: 12.5px; line-height: 1.9; color: var(--sub); margin-top: 18px; }

.ticket-notes {
  list-style: none;
  max-width: 880px;
  margin: 26px auto 0;
  font-size: 12px;
  line-height: 2;
  color: var(--sub);
}
.ticket-notes li { padding-left: 1.1em; text-indent: -1.1em; }
.ticket-notes li::before { content: "※ "; }

@media (max-width: 768px) {
  .ticket-plans { grid-template-columns: 1fr; gap: 14px; }
  .t-plan { padding: 24px 20px 20px; border-radius: 12px; }
  .ticket-lead { font-size: 13.5px; line-height: 1.95; margin-bottom: 28px; }
}

/* ---------- photo strip (昼→夕暮れの写真マーキー) ---------- */
.photo-strip {
  background: var(--bg-main);
  overflow: hidden;
  padding: 10px 0 56px;
}
.strip-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: strip 48s linear infinite;
  padding-left: 16px;
}
.strip-track img {
  height: clamp(160px, 22vw, 240px);
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(29, 37, 71, 0.12);
}
@keyframes strip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- contents ---------- */
/* 午後の光 → 夕暮れ前の暖色へ徐々に沈む */
.contents { background: linear-gradient(180deg, #f4eddd 0%, #f1e5cb 55%, #eddcba 100%); padding-top: 130px; }
.wave-top { position: absolute; top: -1px; left: 0; right: 0; }
.wave-top svg { width: 100%; height: clamp(30px, 4vw, 60px); display: block; }

.contents-note { text-align: center; font-size: 12px; color: var(--sub); margin: -22px 0 50px; }

.content-group { max-width: 1020px; margin: 0 auto 70px; }
.group-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 23px);
  letter-spacing: 0.05em;
  color: var(--ink-strong);
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.g-en {
  font-family: var(--font-serif-en);
  font-size: 13px;
  letter-spacing: 0.32em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.g-illust {
  height: clamp(58px, 7vw, 86px);
  margin-left: auto;
  align-self: flex-end;
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.c-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fffdf6;
  padding: 26px 26px 24px;
  box-shadow: 0 2px 10px rgba(29, 37, 71, 0.04);
  transition: border-color 0.3s, transform 0.3s;
}
.c-card:hover { border-color: var(--grad-2); transform: translateY(-3px); }
.c-card h4 {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--ink-strong);
  margin-bottom: 10px;
}
.c-card p { font-size: 13.5px; color: var(--sub); }
.chip {
  display: inline-block;
  font-size: 11px;
  color: var(--terra);
  border: 1px solid rgba(162, 85, 57, 0.5);
  border-radius: 999px;
  padding: 1px 10px;
  margin-left: 8px;
  vertical-align: middle;
}
/* 参加区分（無料/要チケット）と対象（犬種）の2軸バッジ。
   会場側から「誰でも遊べるコンテンツを明示したい」という要望で追加 */
.tag {
  display: inline-block;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  border-radius: 999px;
  padding: 1px 10px;
  white-space: nowrap;
}
.tag--free { color: #fff; background: var(--leaf); }
.tag--ticket { color: var(--terra); background: rgba(162, 85, 57, 0.1); border: 1px solid rgba(162, 85, 57, 0.4); }
.tag--any { color: var(--leaf); border: 1px solid rgba(77, 115, 80, 0.45); }
.tag--iggy { color: var(--sub); border: 1px solid var(--border); }

.tag-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  max-width: 1020px;
  margin: -26px auto 46px;
  padding: 16px 20px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: rgba(255, 253, 246, 0.6);
}
.tag-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--sub);
}

.c-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }

/* 無料枠は出店ブースのみなので、2カラムに1枚だけ置いて欠けて見せない */
.content-cards--single { grid-template-columns: 1fr; }

.group-lead {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2;
  color: var(--ink);
  margin: -8px 0 24px;
}
.group-foot {
  font-size: 12.5px;
  line-height: 2;
  color: var(--sub);
  margin-top: 18px;
}
.group-foot strong { color: var(--leaf); }
.group-foot a { color: var(--terra); }

/* 無料グループは緑の見出し罫で「別枠」であることを見せる */
.content-group--free .group-title { border-bottom-color: rgba(77, 115, 80, 0.4); }
.content-group--free .g-en { background: linear-gradient(120deg, var(--leaf), #6f9670); -webkit-background-clip: text; background-clip: text; color: transparent; }
.content-group--free .c-card { border-color: rgba(77, 115, 80, 0.3); }
.content-group--free .c-card:hover { border-color: var(--leaf); }

.c-card--more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: linear-gradient(160deg, #fff7ec 0%, #f5e8d1 100%);
  border-color: rgba(162, 85, 57, 0.3);
}
.more-amp {
  font-family: var(--font-elegant-en);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.14em;
  color: var(--terra);
  line-height: 1;
}
.more-amp em {
  font-style: italic;
  font-size: 1.5em;
  padding-right: 4px;
  vertical-align: -0.06em;
}
.c-card--more p { color: var(--ink-soft); }

@media (max-width: 768px) {
  .content-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .content-cards--single { grid-template-columns: 1fr; }
  .c-card { padding: 16px 14px 15px; border-radius: 10px; }
  .c-card h4 { font-size: 13.5px; letter-spacing: 0.03em; margin-bottom: 7px; }
  .c-card p { font-size: 11.5px; line-height: 1.65; }
  .chip { display: inline-block; margin-left: 0; margin-top: 5px; }
  .tag { font-size: 10px; padding: 1px 7px; letter-spacing: 0; }
  .c-tags { gap: 4px; margin-bottom: 8px; }
  .tag-legend { gap: 8px 14px; padding: 12px 12px; margin: -14px 0 32px; border-radius: 10px; }
  .tag-legend li { font-size: 10.5px; gap: 6px; }
  .group-lead { font-size: 12.5px; line-height: 1.9; margin: -4px 0 18px; }
  .group-foot { font-size: 11.5px; line-height: 1.9; }
}

/* ---------- evening (夕暮れ〜イルミネーション: 昼から夜への遷移セクション) ---------- */
/* ============ イタグレ名鑑への導線 ============
   CONTENTS の終わり(#eddcba)と EVENING の始まり(#eddcba)の間に挟むので、
   背景は同じ #eddcba のベタにして昼→夜のグラデーションを途切れさせない。 */
.meikan {
  background: #eddcba;
  padding: 30px 24px 90px;
}
.meikan-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 28px 46px;
  border: 2px solid var(--terra);
  border-radius: 20px;
  background: #fffdf6;
  text-align: center;
}
/* 集合イラストを枠の肩に引っかける（RECRUIT と同じ手法） */
.meikan-illust {
  position: absolute;
  top: 0;
  left: clamp(12px, 4vw, 44px);
  height: clamp(84px, 12vw, 132px);
  transform: translateY(-62%);
  pointer-events: none;
}
/* word-break: auto-phrase を入れないと、狭い幅で「見つ / けておく。」のように
   文節の途中で折れる（375px で実際に発生した） */
.meikan-lead {
  font-family: var(--font-mincho);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 2;
  color: var(--ink);
  margin-top: 6px;
  word-break: auto-phrase;
}
.meikan-body {
  font-size: clamp(13.5px, 1.5vw, 15px);
  line-height: 2.1;
  color: var(--sub);
  margin-top: 20px;
  word-break: auto-phrase;
}
.meikan-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 30px auto 0;
  max-width: 720px;
  text-align: left;
}
@media (min-width: 760px) { .meikan-points { grid-template-columns: repeat(3, 1fr); } }
.meikan-points li {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--sub);
}
.meikan-points .mp-en {
  display: block;
  font-family: var(--font-serif-en);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--terra);
}
.meikan-points b {
  display: block;
  font-family: var(--font-mincho);
  font-size: 14.5px;
  color: var(--ink);
  margin: 2px 0 4px;
}
/* 名鑑＝チケットではない、という一文。ここを弱く見せると誤読が残る */
.meikan-notice {
  margin-top: 28px;
  padding: 14px 18px;
  border: 2px solid #b4402c;
  border-radius: 14px;
  background: #fff6f2;
  color: #b4402c;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(12.5px, 1.4vw, 14px);
  line-height: 1.9;
  word-break: auto-phrase;
}
.meikan-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.meikan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 17px 38px;
  border-radius: 999px;
  border: 2px solid var(--terra);
  background: transparent;
  color: var(--terra);
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 15.5px);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.meikan-cta--main {
  background: var(--grad);
  border-color: transparent;
  color: #fffdf6;
  box-shadow: 0 6px 20px rgba(162, 85, 57, 0.28);
}
.meikan-cta:hover { transform: translateY(-2px); }
.meikan-cta--main:hover { box-shadow: 0 10px 26px rgba(162, 85, 57, 0.34); }
.meikan-note {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--sub);
  word-break: auto-phrase;
}

.evening {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 40% at 50% 42%, rgba(236, 211, 154, 0.14), transparent 65%),
    linear-gradient(180deg, #eddcba 0%, #ddb392 14%, #b07f92 32%, #6b5178 52%, #2b2f55 76%, var(--night) 100%);
  padding: 150px 24px 130px;
}
.evening-inner { position: relative; max-width: 860px; margin: 0 auto; }
.evening-stars {
  position: absolute;
  top: 55%; left: 18%;
  width: 2px; height: 2px;
  border-radius: 50%;
  box-shadow:
    4vw 4vh 0 0 #fff, 12vw 14vh 0 0 rgba(255,255,255,.7), 22vw 2vh 0 1px #fff,
    30vw 10vh 0 0 rgba(250,225,248,.8), 40vw 5vh 0 0 #fff, 48vw 16vh 0 0 rgba(255,255,255,.6),
    56vw 1vh 0 0 #fff, 8vw 20vh 0 0 rgba(255,255,255,.5), 36vw 22vh 0 0 rgba(255,255,255,.45),
    62vw 12vh 0 0 rgba(197,202,222,.7), -8vw 9vh 0 0 rgba(255,255,255,.55), 52vw 24vh 0 1px rgba(250,225,248,.7);
  background: #fff;
  animation: twinkle 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes twinkle {
  from { opacity: 1; }
  to { opacity: 0.35; }
}
.evening-en {
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: 0.44em;
  background: linear-gradient(120deg, #fae1f8, #ecd39a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.evening-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 3.6vw, 34px);
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-shadow: 0 0 30px rgba(236, 211, 154, 0.35);
  margin-bottom: 20px;
}
.evening-body {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  font-size: 14.5px;
  color: #d9dcec;
}
.evening-note { position: relative; font-size: 11.5px; color: rgba(217, 220, 236, 0.75); margin-top: 24px; }
.evening-photos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 44px auto 0;
}
.evening-photos figure { margin: 0; }
.evening-photos img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
@media (max-width: 640px) {
  .evening-photos { grid-template-columns: 1fr; max-width: 400px; }
}

/* ---------- night sections 共通（EVENING 以降は夜） ---------- */
section.night { color: #fff; }
.night .sec-title { color: #fff; }
.night .sec-en {
  background: linear-gradient(120deg, #ecd39a, #f7e7c3);
  -webkit-background-clip: text;
  background-clip: text;
}
.night .sec-en::after { background: linear-gradient(120deg, #ecd39a, #f7e7c3); }

/* 夜背景で沈む黒い輪郭線に白フチを回す。
   旧パーツは単色の線画だったので invert(1) で白抜きにしていたが、
   新パーツは多色のベタ塗りなので反転すると色が破綻する。 */
.inv {
  filter:
    drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.95))
    drop-shadow(-1px 1px 0 rgba(255, 255, 255, 0.95))
    drop-shadow(1px -1px 0 rgba(255, 255, 255, 0.95))
    drop-shadow(-1px -1px 0 rgba(255, 255, 255, 0.95));
}

/* ---------- shop ---------- */
.shop { background: var(--bg-main); }
.shop.night { background: linear-gradient(180deg, var(--night) 0%, #131836 100%); }
.night .shop-lead, .night .shop-note { color: #c5cade; }
.night .shop-card.shop-placeholder {
  border-color: rgba(98, 100, 130, 0.6);
  color: rgba(197, 202, 222, 0.55);
  background: rgba(11, 17, 41, 0.4);
  flex-direction: column;
  gap: 12px;
}
.shop-placeholder img {
  width: 56%;
  opacity: 0.8;
}
.night .ex-card {
  background: rgba(11, 17, 41, 0.55);
  border-color: rgba(98, 100, 130, 0.45);
  box-shadow: none;
}
.night .ex-card:hover { border-color: #ecd39a; }
.night .ex-thumb--empty { background: linear-gradient(135deg, #10173a, #1d2547); }
.night .ex-genre { color: #ecd39a; border-color: rgba(236, 211, 154, 0.5); }
.night .ex-name { color: #fff; }
.night .ex-tagline { color: #c5cade; }
.shop-lead { text-align: center; font-size: 14px; color: var(--sub); margin-bottom: 40px; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1020px;
  margin: 0 auto;
}
.shop-card.shop-placeholder {
  aspect-ratio: 1 / 1;
  border: 1px dashed var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif-en);
  font-size: 15px;
  letter-spacing: 0.24em;
  color: rgba(92, 97, 124, 0.55);
  line-height: 1.8;
  background: rgba(255, 253, 246, 0.6);
}
.shop-note { text-align: center; font-size: 13px; color: var(--sub); margin-top: 28px; }

.ex-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fffdf6;
  box-shadow: 0 2px 10px rgba(29, 37, 71, 0.04);
  transition: border-color 0.3s, transform 0.3s;
}
.ex-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.ex-thumb { aspect-ratio: 4 / 3; overflow: hidden; }
.ex-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ex-thumb--empty { background: linear-gradient(135deg, #ece3cd, #f4eddd); }
.ex-body { padding: 14px 16px 16px; }
.ex-genre {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--grad-1);
  border: 1px solid rgba(95, 134, 192, 0.5);
  border-radius: 999px;
  padding: 1px 9px;
  margin-bottom: 8px;
}
.ex-name { font-family: var(--font-mincho); font-size: 15px; letter-spacing: 0.05em; color: var(--ink-strong); }
.ex-tagline { font-size: 12px; color: var(--sub); margin-top: 5px; }

@media (max-width: 900px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- access ---------- */
.access { background: var(--bg-alt); }
.access.night { background: linear-gradient(180deg, #131836 0%, #0f1530 100%); }
.night .access-card {
  background: rgba(11, 17, 41, 0.55);
  border-color: rgba(98, 100, 130, 0.5);
  box-shadow: none;
}
.night .access-card h3 { color: #fff; }
.night .access-add { color: #c5cade; }
.night .access-card li { color: #c5cade; border-bottom-color: rgba(98, 100, 130, 0.4); }
.night .access-card li strong { color: #fff; }
.night .btn-line { border-color: #626482; color: #fff; }
.night .btn-line:hover { border-color: #fae1f8; background: rgba(250, 225, 248, 0.06); }
.night .btn-line .arrow { color: #ecd39a; }
.access-inner { max-width: 640px; margin: 0 auto; }
.access-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffdf6;
  padding: 40px 36px;
  box-shadow: 0 2px 14px rgba(29, 37, 71, 0.05);
}
.access-logo {
  height: clamp(44px, 6vw, 62px);
  width: auto;
  margin-bottom: 16px;
}
.access-card h3 {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.1em;
  color: var(--ink-strong);
  margin-bottom: 6px;
}
.access-add { font-size: 13px; color: var(--sub); margin-bottom: 20px; }
.access-card ul { list-style: none; margin-bottom: 28px; }
.access-card li { font-size: 14px; color: var(--sub); padding: 8px 0; border-bottom: 1px dashed var(--border); }
.access-card li strong { color: var(--ink-strong); font-weight: 500; margin-right: 8px; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: 0.16em;
  padding: 13px 30px;
  border-radius: 999px;
  border: 1px solid rgba(29, 37, 71, 0.35);
  transition: border-color 0.3s, background 0.3s;
}
.btn-line:hover { border-color: var(--gold); background: rgba(201, 164, 92, 0.09); }
.btn-line .arrow { color: var(--gold); }

/* ---------- faq ---------- */
.faq { background: var(--bg-main); }
.faq.night { background: linear-gradient(180deg, #0f1530 0%, #0b1129 100%); }
.night .faq-list details { border-bottom-color: rgba(98, 100, 130, 0.4); }
.night .faq-list summary { color: #fff; }
.night .faq-list summary::before { color: #8bb3e4; }
.night .faq-list summary::after { color: #c5cade; }
.night .faq-list details p { color: #c5cade; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details p a { color: var(--grad-1); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.night .faq-list details p a { color: #8bb3e4; }
.faq-list details {
  border-bottom: 1px solid var(--border);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-mincho);
  font-size: 15.5px;
  letter-spacing: 0.06em;
  color: var(--ink-strong);
  padding: 22px 40px 22px 34px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before {
  content: "Q.";
  position: absolute;
  left: 2px;
  font-family: var(--font-serif-en);
  color: var(--grad-1);
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif-en);
  font-size: 20px;
  color: var(--sub);
  transition: transform 0.3s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  font-size: 14px;
  color: var(--sub);
  padding: 0 8px 24px 34px;
}

/* ---------- follow ---------- */
.follow { background: var(--bg-main); text-align: center; padding-top: 40px; }
.follow.night { background: linear-gradient(180deg, #0b1129 0%, var(--night-deep) 100%); }
.night .follow-en {
  background: linear-gradient(120deg, #ecd39a, #f7e7c3);
  -webkit-background-clip: text;
  background-clip: text;
}
.night .follow-ja { color: #c5cade; }
.follow-en {
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.follow-ja { font-size: 15px; color: var(--sub); margin-bottom: 30px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--night-deep);
  color: #fff;
  text-align: center;
  padding: 60px 24px 90px;
}
.footer-logo {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.14em;
}
.footer-logo span { font-family: var(--font-serif-en); font-size: 14px; color: #c9a45c; }
.footer-illust {
  height: clamp(120px, 15vw, 170px);
  margin: 0 auto 22px;
  opacity: 0.95;
}
.footer-info { font-family: var(--font-serif-en); font-size: 12px; letter-spacing: 0.2em; color: #c5cade; margin-top: 10px; }
.footer-copy { font-size: 11px; color: rgba(197, 202, 222, 0.6); margin-top: 22px; }

/* ---------- floating CTA ---------- */
.float-cta {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 92px; height: 92px;
  border-radius: 50%;
  text-align: center;
  background: #fffdf6;
  border: 1px solid rgba(169, 133, 63, 0.6);
  box-shadow: 0 4px 20px rgba(29, 37, 71, 0.16);
  animation: float 3.5s ease-in-out infinite;
}
.float-en { font-family: var(--font-serif-en); font-size: 12px; letter-spacing: 0.2em; color: var(--gold); }
.float-ja { font-size: 9px; color: var(--sub); line-height: 1.4; padding: 0 10px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ============================================
   夜（EVENING以降）＝エレガント
   昼はポップ(Dela/Bungee)でエキサイティング、
   夜は明朝×セリフで上品に。イルミネーションの世界観へ切替
   ============================================ */
.evening-title,
.night .sec-title,
.access-card h3,
.night .ex-name,
.faq-list summary,
.footer-logo,
.evening-body,
.follow-ja,
.shop-lead,
.footer-info,
.night .btn-line {
  font-family: var(--font-elegant);
}

/* 夜の欧文アクセントは高コントラストのセリフで上品に */
.evening-en,
.night .sec-en,
.night .shop-placeholder p,
.faq-list summary::before,
.faq-list summary::after,
.follow-en,
.footer-logo span {
  font-family: var(--font-elegant-en);
  font-weight: 600;
}

/* 明朝向けに字面（ウェイト・字間）を調整 */
.evening-title {
  font-weight: 600;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 0.1em;
}
.night .sec-title {
  font-weight: 700;
  letter-spacing: 0.14em;
}
.access-card h3 {
  letter-spacing: 0.08em;
}
.faq-list summary {
  font-size: 16px;
  letter-spacing: 0.08em;
}
