/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   岐阜BUZZ studio 予約専用LP v3.0
   白ベース × 高級感 × インパクト
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── カラー変数 ── */
:root {
  --green: #1a6b35;
  --green-light: #236731;
  --green-bright: #2eb861;
  --orange: #e8820a;
  --gold: #c9a227;
  --gold-light: #f0c845;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --cream: #faf9f6;
  --gray-100: #f4f4f2;
  --gray-200: #e8e8e4;
  --gray-300: #d0cfc9;
  --gray-500: #888880;
  --gray-700: #555550;
  --gray-900: #1a1a18;
  --text-main: #1a1a18;
  --text-sub: #555550;
  --text-light: #888880;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
}

/* ── リセット ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── コンテナ ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ━━━━━━━━━━━━━━━━━━━━ リリースバー */
.release-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--green) 0%, #0d4a22 50%, #1a6b35 100%);
  color: var(--white);
  padding: 10px 20px;
  text-align: center;
}
.release-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.release-bar-icon {
  color: var(--gold-light);
  font-size: 14px;
}
.release-bar-text {
  font-size: 13px;
  letter-spacing: 0.05em;
}
.release-bar-text strong {
  color: var(--gold-light);
  font-weight: 700;
}
.release-bar-sep { opacity: 0.4; }
.release-bar-countdown {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cd-num {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 13px;
  min-width: 32px;
  text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━ ナビゲーション */
.navbar {
  position: fixed;
  top: 40px;
  left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 36px;
  width: auto;
}
.nav-logo-text {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--green);
  letter-spacing: 0.08em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  padding: 3px 10px;
  white-space: nowrap;
}
.nav-cta-btn {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(26,107,53,0.25);
}
.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,107,53,0.35);
}

/* ━━━━━━━━━━━━━━━━━━━━ HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #f0f7f2 0%, #ffffff 40%, #faf6ee 100%);
  padding: 160px 24px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.6;
}
/* 装飾円 */
.hero-deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.c1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,107,53,0.06) 0%, transparent 70%);
  top: -100px; right: -150px;
}
.c2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 70%);
  bottom: 0; left: -100px;
}
.c3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(46,184,97,0.08) 0%, transparent 70%);
  top: 40%; right: 10%;
}
.hero-deco-line {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(26,107,53,0.1), transparent);
  height: 1px;
}
.l1 { width: 80%; top: 35%; left: 10%; }
.l2 { width: 60%; top: 65%; left: 20%; background: linear-gradient(90deg, transparent, rgba(201,162,39,0.1), transparent); }

.hero-inner {
  position: relative;
  max-width: 760px;
  text-align: center;
  z-index: 2;
}

/* リリースバッジ */
.hero-release-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff9ec, #fff);
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(201,162,39,0.15);
}
.release-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.release-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.release-date-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: 0.08em;
}

/* ヒーローコピー */
.hero-eyebrow {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}
.hero-title-line1 {
  display: block;
  font-size: clamp(38px, 6.5vw, 68px);
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}
.hero-title-amount {
  display: block;
  font-size: clamp(56px, 9vw, 96px);
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  margin: 4px 0;
}
.amount-num {
  position: relative;
  display: inline-block;
}
/* グリッチエフェクト */
.glitch-text {
  position: relative;
}
.glitch-text::before, .glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
}
.glitch-text::before {
  color: var(--orange);
  animation: glitch-1 4s infinite;
}
.glitch-text::after {
  color: var(--gold);
  animation: glitch-2 4s infinite;
}
@keyframes glitch-1 {
  0%, 92%, 100% { opacity: 0; transform: translate(0,0); }
  93% { opacity: 0.6; transform: translate(-4px, 1px); clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%); }
  95% { opacity: 0.4; transform: translate(4px,-1px); clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%); }
}
@keyframes glitch-2 {
  0%, 94%, 100% { opacity: 0; transform: translate(0,0); }
  95% { opacity: 0.5; transform: translate(3px, -2px); clip-path: polygon(0 30%, 100% 30%, 100% 70%, 0 70%); }
}
.hero-title-line2 {
  display: block;
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--text-main);
}
.hero-subtitle {
  font-size: clamp(13px, 2.2vw, 20px);
  color: var(--text-sub);
  margin-bottom: 32px;
  line-height: 1.9;
  letter-spacing: 0.01em;
}
.hero-subtitle strong {
  color: var(--green);
  font-weight: 800;
  font-size: 1.1em;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle-em {
  font-family: 'Noto Serif JP', serif;
  font-style: italic;
  color: var(--gray-700);
  font-size: 0.92em;
}

/* CTAグループ */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.btn-primary-hero {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--green) 0%, #0d5a28 100%);
  color: var(--white);
  border-radius: 50px;
  padding: 18px 40px;
  box-shadow: 0 8px 32px rgba(26,107,53,0.35), 0 2px 8px rgba(26,107,53,0.2);
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.btn-primary-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.btn-primary-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(26,107,53,0.45);
}
.btn-icon { font-size: 18px; margin-bottom: 2px; }
.btn-main-text { font-weight: 800; font-size: 17px; letter-spacing: 0.04em; }
.btn-sub-text { font-size: 11px; opacity: 0.8; margin-top: 2px; letter-spacing: 0.08em; }
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s;
}
.btn-ghost-hero:hover {
  background: var(--green);
  color: var(--white);
}

.hero-note {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.hero-note i { color: var(--green); margin-right: 4px; }

/* トラストバー */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--text-sub);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.trust-pill i { color: var(--green); font-size: 11px; }
.trust-sep { color: var(--gray-300); font-size: 20px; }

/* スクロール矢印 */
.hero-scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 14px;
  animation: bounce-arrow 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--gray-300));
}
@keyframes bounce-arrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ━━━━━━━━━━━━━━━━━━━━ リリースカウントダウンブロック */
.release-countdown-block {
  background: linear-gradient(135deg, #0d4a22 0%, var(--green) 50%, #1a5c2e 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.release-countdown-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.release-cd-inner { position: relative; z-index: 1; }
.release-cd-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.release-cd-date-text {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.release-cd-units {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cd-unit {
  text-align: center;
}
.cd-unit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  min-width: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 20px;
  display: block;
  text-shadow: 0 0 40px rgba(255,255,255,0.3);
}
.cd-unit-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  text-transform: uppercase;
}
.cd-colon {
  font-size: 48px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  margin-top: -20px;
}
.release-cd-sub {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 28px;
}
.btn-release-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--gray-900);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(201,162,39,0.4);
  transition: all 0.28s;
}
.btn-release-reserve:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201,162,39,0.5);
}

/* ━━━━━━━━━━━━━━━━━━━━ 共通セクション */
.section {
  padding: 100px 0;
}
.section-label-top {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
.section-label-top.light { color: rgba(255,255,255,0.6); }
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  text-align: center;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-sub);
  text-align: center;
  margin-bottom: 60px;
}
.section-subtitle.light { color: rgba(255,255,255,0.75); }

/* AOS アニメーション */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="50"] { transition-delay: 50ms; }
[data-aos][data-aos-delay="80"] { transition-delay: 80ms; }
[data-aos][data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos][data-aos-delay="150"] { transition-delay: 150ms; }
[data-aos][data-aos-delay="160"] { transition-delay: 160ms; }
[data-aos][data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos][data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos][data-aos-delay="250"] { transition-delay: 250ms; }
[data-aos][data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos][data-aos-delay="320"] { transition-delay: 320ms; }
[data-aos][data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-down"] { transform: translateY(-20px); }
[data-aos="fade-down"].aos-animate { transform: translateY(0); }

/* ━━━━━━━━━━━━━━━━━━━━ 痛みセクション */
.pain-section { background: var(--off-white); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1.5px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,107,53,0.03) 0%, transparent 60%);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.pain-card.highlight {
  background: linear-gradient(135deg, #fff9ec, #fffdf7);
  border-color: var(--gold);
}
.pain-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
}
.pain-icon {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 16px;
}
.pain-card.highlight .pain-icon { color: var(--gold); }
.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━ コスト比較 */
.cost-compare-section {
  background: linear-gradient(160deg, #1a1a18 0%, #0d2e18 50%, #0a1a10 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.cost-compare-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.5), transparent);
}
.cost-compare-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cost-box {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.cost-box.studio {
  background: rgba(26,107,53,0.15);
  border-color: rgba(46,184,97,0.3);
  position: relative;
}
.cost-box-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.cost-box-label.premium { color: var(--gold-light); }
.cost-box-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.cost-box-amount.outsource-amount { color: rgba(255,100,80,0.9); }
.cost-box-amount.studio-amount { color: var(--gold-light); }
.cost-yen { font-size: 0.55em; vertical-align: top; margin-top: 8px; display: inline-block; }
.cost-unit { font-size: 0.3em; color: rgba(255,255,255,0.5); }
.cost-box-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-top: 16px;
}
.cost-total-note {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.cost-total-note.green { color: var(--green-bright); }
.cost-box-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--gray-900);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 20px;
  border-radius: 50px;
  margin-top: 24px;
}
.cost-box-badge strong { font-size: 18px; }
.cost-vs {
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━ 機能 */
.features-section { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1.5px solid var(--gray-200);
  position: relative;
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
  background: var(--white);
}
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
}
.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-icon-wrap.green { background: rgba(26,107,53,0.1); color: var(--green); }
.feature-icon-wrap.orange { background: rgba(232,130,10,0.1); color: var(--orange); }
.feature-icon-wrap.blue { background: rgba(30,120,220,0.1); color: #1a78dc; }
.feature-icon-wrap.purple { background: rgba(120,50,200,0.1); color: #7832c8; }
.feature-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
}
.feature-list li {
  font-size: 13px;
  color: var(--text-sub);
  padding: 6px 0;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-list li:first-child { border-top: none; }
.feature-list li i { color: var(--green); font-size: 11px; }

/* ━━━━━━━━━━━━━━━━━━━━ プロデューサー */
.producer-section {
  background: var(--cream);
  padding: 100px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.producer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.producer-photo-col { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.producer-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.producer-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.producer-photo-deco {
  position: absolute;
  inset: -12px -12px;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 2px solid var(--gold);
  opacity: 0.25;
  pointer-events: none;
}
.producer-name-card {
  text-align: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 320px;
}
.producer-name-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
}
.producer-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 4px;
}
.producer-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 24px;
}
.producer-body {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 16px;
}
.producer-body.strong {
  font-family: 'Noto Serif JP', serif;
  color: var(--text-main);
  font-weight: 600;
  font-size: 16px;
}
.producer-release-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green) 0%, #0d4a22 100%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(26,107,53,0.3);
  margin-top: 8px;
}

/* ━━━━━━━━━━━━━━━━━━━━ 料金プラン */
.pricing-section { background: var(--off-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid var(--gray-200);
  position: relative;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.popular {
  border-color: var(--green);
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(26,107,53,0.2);
}
.price-card.premium {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fffdf5, #ffffff);
}
.popular-badge, .premium-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.popular-badge {
  background: var(--green);
  color: var(--white);
}
.premium-badge {
  background: var(--gold);
  color: var(--gray-900);
}
.plan-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.plan-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.plan-price {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 28px;
}
.price-yen { font-size: 0.5em; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-tax { font-size: 0.25em; color: var(--text-light); margin-left: 4px; }
.plan-features { text-align: left; margin-bottom: 28px; }
.plan-feat {
  font-size: 13px;
  color: var(--text-sub);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-feat:last-child { border-bottom: none; }
.plan-feat i.fa-check { color: var(--green); }
.plan-feat.disabled { color: var(--text-light); }
.plan-feat.disabled i.fa-times { color: var(--gray-300); }
.plan-cta-btn {
  display: block;
  background: var(--gray-100);
  color: var(--text-main);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 50px;
  transition: all 0.25s;
  text-align: center;
}
.plan-cta-btn:hover { background: var(--gray-200); }
.plan-cta-btn.popular-btn {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(26,107,53,0.3);
}
.plan-cta-btn.popular-btn:hover {
  box-shadow: 0 12px 36px rgba(26,107,53,0.4);
  transform: translateY(-2px);
}
.plan-cta-btn.premium-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #a87c10 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(201,162,39,0.3);
}
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-light);
}
.pricing-note i { margin-right: 4px; }
.pricing-note a { color: var(--green); text-decoration: underline; }

/* ━━━━━━━━━━━━━━━━━━━━ 限定バナー */
.limited-banner {
  background: linear-gradient(135deg, #1a1a18 0%, var(--green) 100%);
  padding: 24px;
}
.limited-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.limited-fire { font-size: 28px; }
.limited-text {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slots-num {
  color: var(--gold-light);
  font-size: 28px;
  font-family: 'Cormorant Garamond', serif;
  animation: pulse-num 1.5s ease-in-out infinite;
}
@keyframes pulse-num {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.limited-cta {
  background: var(--gold);
  color: var(--gray-900);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.25s;
  white-space: nowrap;
}
.limited-cta:hover { transform: scale(1.05); }

/* ━━━━━━━━━━━━━━━━━━━━ 予約フォームセクション */
.reserve-section {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--gray-200);
}
.reserve-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  margin-top: 20px;
}
/* フォームカード */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-xl);
}
.form-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-card-title i { color: var(--green); }
.form-card-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.required {
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 700;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-main);
  background: var(--off-white);
  transition: all 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,107,53,0.1);
}
.form-input.error { border-color: #e53535; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-error {
  font-size: 12px;
  color: #e53535;
  margin-top: 6px;
  display: none;
}
.form-error.show { display: block; }
/* 同意チェック */
.form-agree { margin-bottom: 28px; }
.agree-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.agree-label input[type="checkbox"] { display: none; }
.agree-checkmark {
  width: 20px; height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agree-label input:checked ~ .agree-checkmark {
  background: var(--green);
  border-color: var(--green);
}
.agree-label input:checked ~ .agree-checkmark::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: 700;
}
.agree-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}
.agree-text a { color: var(--green); text-decoration: underline; }
.form-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--green) 0%, #0d4a22 100%);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 18px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(26,107,53,0.35);
  transition: all 0.28s;
  letter-spacing: 0.06em;
}
.form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(26,107,53,0.45);
}
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
/* 送信完了 */
.form-success-msg {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  font-size: 56px;
  color: var(--green);
  margin-bottom: 16px;
}
.form-success-msg h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}
.form-success-msg p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 24px;
}
.success-release {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

/* サイドinfo */
.reserve-info-col { display: flex; flex-direction: column; gap: 20px; }
.reserve-info-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid var(--gray-200);
}
.info-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-card-title i { color: var(--green); }
.info-list { list-style: none; }
.info-list li {
  font-size: 13px;
  color: var(--text-sub);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.info-list li:last-child { border-bottom: none; }
.info-list li i { color: var(--green); font-size: 11px; margin-top: 3px; flex-shrink: 0; }
/* リリースカード */
.release-card {
  background: linear-gradient(135deg, #0d4a22, var(--green));
  border-color: transparent;
  text-align: center;
}
.info-release-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.info-release-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.info-release-sep { font-size: 0.5em; vertical-align: middle; }
.info-release-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.info-release-sub strong { color: var(--gold-light); }
/* 電話 */
.info-tel {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
}
.info-tel-note { font-size: 12px; color: var(--text-light); }
.info-company { font-size: 12px; color: var(--text-sub); margin-top: 8px; }

/* ━━━━━━━━━━━━━━━━━━━━ FAQ */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--green);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p {
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ━━━━━━━━━━━━━━━━━━━━ 最終CTA */
.final-cta-section {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--white);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,107,53,0.04) 0%, rgba(201,162,39,0.05) 50%, rgba(26,107,53,0.04) 100%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-release {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1.5px solid var(--gold);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
}
.final-cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.3;
}
.final-cta-sub {
  font-size: 17px;
  color: var(--text-sub);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green) 0%, #0d4a22 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  padding: 22px 48px;
  border-radius: 50px;
  box-shadow: 0 12px 40px rgba(26,107,53,0.4);
  transition: all 0.3s;
  letter-spacing: 0.05em;
}
.final-cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(26,107,53,0.5);
}
.final-cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-light);
}
.final-cta-note i { color: var(--green); margin-right: 4px; }

/* ━━━━━━━━━━━━━━━━━━━━ フッター */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 60px 24px;
  text-align: center;
}
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo { height: 36px; width: auto; opacity: 0.8; }
.footer-logo-studio {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
}
.footer-release-note {
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-company {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ━━━━━━━━━━━━━━━━━━━━ スマホ固定CTA */
.sp-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--gray-200);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.sp-fixed-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--green) 0%, #0d4a22 100%);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(26,107,53,0.35);
  gap: 2px;
  width: 100%;
  justify-content: center;
  gap: 4px;
}
.sp-fixed-date {
  font-size: 10px;
  opacity: 0.75;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* ━━━━━━━━━━━━━━━━━━━━ 先行予約特典セクション */
.tokuten-section {
  background: linear-gradient(160deg, #fffdf5 0%, #fff 50%, #f0f9f4 100%);
  padding: 100px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.tokuten-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.tokuten-title-em {
  color: var(--gold);
  position: relative;
}
.tokuten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.tokuten-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 2px solid var(--gray-200);
  text-align: center;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.tokuten-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.tokuten-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fffef5, #fff);
  box-shadow: 0 8px 32px rgba(201,162,39,0.12);
}
.tokuten-card.highlight:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(201,162,39,0.22);
}
.tokuten-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tokuten-card-icon {
  font-size: 48px;
  margin-bottom: 12px;
  line-height: 1;
}
.tokuten-card-value {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.tokuten-card.highlight .tokuten-card-value {
  background: var(--gold);
  color: var(--gray-900);
}
.tokuten-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 14px;
}
.tokuten-card-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 20px;
}
.tokuten-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.tokuten-card.highlight .tokuten-card-price { color: var(--gold); }
.tokuten-card-price span {
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-light);
  font-weight: 400;
  margin-left: 4px;
}
/* 合計バー */
.tokuten-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--green) 0%, #0d4a22 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tokuten-total-label {
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 0.08em;
}
.tokuten-total-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.tokuten-total-note {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
/* CTA */
.tokuten-cta-wrap { text-align: center; }
.tokuten-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #06C755 0%, #04a644 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  padding: 20px 44px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(6,199,85,0.35);
  transition: all 0.3s;
  letter-spacing: 0.05em;
}
.tokuten-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(6,199,85,0.45);
}
.tokuten-cta-btn i { font-size: 22px; }
.tokuten-cta-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
}

/* LINE予約バナー */
.line-reserve-banner {
  background: linear-gradient(135deg, #04a644 0%, #06C755 100%);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(6,199,85,0.25);
}
.line-reserve-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.line-reserve-icon {
  font-size: 48px;
  color: var(--white);
  flex-shrink: 0;
}
.line-reserve-text { flex: 1; min-width: 200px; }
.line-reserve-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.line-reserve-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.line-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: #06C755;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}
.line-reserve-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* LINEボタン（サイドinfo内） */
.info-line-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #06C755 0%, #04a644 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 50px;
  margin-bottom: 8px;
  text-align: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(6,199,85,0.3);
}
.info-line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,199,85,0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━ デモ動画セクション */
.demo-video-section {
  background: linear-gradient(160deg, #0d4a22 0%, var(--green) 50%, #1a5c2e 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.demo-video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.demo-video-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.demo-pc-frame-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.demo-pc-frame {
  width: 100%;
  max-width: 860px;
  background: #1a1a18;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.demo-pc-bar {
  background: #2a2a28;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.demo-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.demo-pc-url {
  margin-left: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: monospace;
  background: rgba(255,255,255,0.06);
  padding: 3px 12px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}
.demo-pc-screen {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a0a09;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.demo-pc-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
/* プレースホルダー（動画未挿入時） */
.demo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.demo-placeholder-icon { font-size: 48px; }
.demo-placeholder-title {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.demo-placeholder-sub {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
}
/* PCスタンド */
.demo-pc-stand {
  width: 80px;
  height: 28px;
  background: linear-gradient(to bottom, #2a2a28, #1a1a18);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
.demo-pc-base {
  width: 200px;
  height: 10px;
  background: #2a2a28;
  border-radius: 0 0 8px 8px;
}
.demo-video-note {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━ 先行予約特典セクション */
.benefit-section {
  background: var(--off-white);
  padding: 100px 0;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 60px auto 0;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
}
.benefit-card.gold::before {
  background: linear-gradient(90deg, var(--gold), #f0c845);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.benefit-card.gold .benefit-num { color: var(--gold); }
.benefit-icon {
  font-size: 40px;
  color: var(--green);
  margin-bottom: 16px;
}
.benefit-card.gold .benefit-icon { color: var(--gold); }
.benefit-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.4;
}
.benefit-value {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.benefit-card.gold .benefit-value {
  background: linear-gradient(90deg, var(--gold), #f0c845);
  color: #1a1a18;
}
.benefit-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.75;
}
.benefit-total-box {
  max-width: 600px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, var(--green) 0%, #236731 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.benefit-total-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
}
.benefit-total-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.benefit-total-yen {
  font-size: 20px;
  font-family: 'Noto Serif JP', serif;
  margin-left: 4px;
}
.benefit-total-note {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.benefit-cta {
  text-align: center;
  margin-top: 40px;
}
.btn-benefit-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(6,199,85,0.35);
}
.btn-benefit-cta:hover {
  background: #05b34c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6,199,85,0.45);
}
.benefit-cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-light);
}

/* ━━━━━━━━━━━━━━━━━━━━ LINE予約バナー（フォーム上部） */
.line-reserve-notice {
  max-width: 860px;
  margin: 32px auto 40px;
}
.line-notice-inner {
  background: linear-gradient(135deg, #06C755 0%, #04a844 100%);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: #fff;
}
.line-notice-icon {
  font-size: 36px;
  flex-shrink: 0;
}
.line-notice-text {
  flex: 1;
  min-width: 200px;
}
.line-notice-text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.line-notice-text span {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.6;
}
.line-notice-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #06C755;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.line-notice-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ━━━━━━━━━━━━━━━━━━━━ レスポンシブ */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .reserve-wrap { grid-template-columns: 1fr; }
  .reserve-info-col { flex-direction: row; flex-wrap: wrap; }
  .reserve-info-card { flex: 1; min-width: 240px; }
}

@media (max-width: 768px) {
  .tokuten-grid { grid-template-columns: 1fr; }
  .line-reserve-banner-inner { flex-direction: column; align-items: flex-start; }
  .line-reserve-btn { width: 100%; justify-content: center; }
  .release-bar-text { font-size: 11px; }
  .cd-num { padding: 2px 6px; font-size: 12px; min-width: 28px; }
  .navbar { top: 36px; }
  .nav-badge { display: none; }
  .nav-cta-btn { font-size: 12px; padding: 8px 14px; }
  .hero { padding: 140px 16px 80px; }
  /* キャッチコピー：スマホで1行に収める */
  .hero-title-line1 {
    font-size: clamp(24px, 7.8vw, 38px);
    white-space: nowrap;
    letter-spacing: -0.04em;
  }
  .hero-subtitle {
    font-size: clamp(12px, 3.6vw, 16px);
    line-height: 1.8;
    letter-spacing: 0;
    word-break: keep-all;
  }
  .pain-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: scale(1); }
  .producer-inner { grid-template-columns: 1fr; gap: 40px; }
  .cost-compare-wrap { flex-direction: column; align-items: center; }
  .cost-vs { transform: rotate(90deg); margin: 0 auto; }
  .form-card { padding: 28px 20px; }
  .sp-fixed-cta { display: block; }
  body { padding-bottom: 90px; }
  .cd-unit-num { font-size: 48px; min-width: 70px; padding: 8px 12px; }
  .release-cd-units { gap: 8px; }
  .cd-colon { font-size: 32px; }
  .nav-logo-text { display: none; }
}

@media (max-width: 768px) {
  .benefit-grid { grid-template-columns: 1fr; gap: 20px; max-width: 420px; }
  .benefit-total-box { flex-direction: column; gap: 12px; padding: 28px 24px; }
  .benefit-total-amount { font-size: 40px; }
  .line-notice-inner { flex-direction: column; text-align: center; gap: 16px; padding: 20px; }
  .line-notice-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-primary-hero, .btn-ghost-hero { width: 100%; justify-content: center; }
  .hero-trust-bar { gap: 6px; }
  .trust-sep { display: none; }
  .trust-pill { font-size: 11px; padding: 5px 12px; }
  .limited-banner-inner { flex-direction: column; gap: 12px; }
  .reserve-info-col { flex-direction: column; }
  /* キャッチコピー：375px前後の標準スマホ幅に最適化 */
  .hero-title-line1 {
    font-size: clamp(22px, 7.2vw, 28px);
    letter-spacing: -0.05em;
  }
  .hero-subtitle {
    font-size: clamp(11.5px, 3.4vw, 14px);
    letter-spacing: -0.01em;
  }
}

/* 320px以下（最小スマホ）向け保険 */
@media (max-width: 360px) {
  .hero-title-line1 {
    font-size: 6.8vw;
    letter-spacing: -0.06em;
  }
  .hero-subtitle {
    font-size: 3.2vw;
  }
}
