﻿/* ============================================
   ビジネスリラックスチェア Pro - LP Style
   Design: Luxury / Refined / Premium
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --ivory: #f7f5f0;
  --greige: #ede9e1;
  --charcoal: #1e1e1e;
  --dark-gray: #2d2d2d;
  --mid-gray: #6a6a6a;
  --light-gray: #b0aaa0;
  --gold: #c8924a;
  --gold-light: #d9a86a;
  --gold-dark: #8b6b3d;
  --white: #ffffff;
  --section-pad: clamp(60px, 10vw, 120px);
  --container: 1100px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
}

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

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

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ---------- Section Labels ---------- */
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-lead {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--mid-gray);
  line-height: 2;
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border: 2px solid var(--charcoal);
}

.btn-primary:hover {
  background: var(--dark-gray);
  border-color: var(--dark-gray);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

/* ---------- Site Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 146, 74, 0.2);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.header-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--mid-gray);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--charcoal);
}

.header-cta {
  font-size: 0.82rem;
  padding: 9px 22px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--gold-dark);
}

/* =========================================================
   HERO : セクション全体
   ========================================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 660px) minmax(680px, 1fr);
  align-items: start;
  column-gap: clamp(18px, 1.6vw, 30px);
  padding-top: 110px;
  padding-bottom: 60px;
  padding-left: clamp(32px, 4vw, 72px);
  padding-right: clamp(32px, 4vw, 72px);
  overflow: hidden;
  background: linear-gradient(135deg, #f7f5f0 0%, #ede9e1 40%, #e8e3d8 100%);
}

/* =========================================================
   HERO : 背景装飾
   ========================================================= */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200, 146, 74, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(30, 30, 30, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* =========================================================
   HERO : 左カラム（文章エリア）
   ========================================================= */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: 0;
}

/* =========================================================
   HERO : ラベル
   ========================================================= */
.hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* =========================================================
   HERO : メインコピー
   ========================================================= */
.hero-headline {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: clamp(3.3rem, 5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--charcoal);
  margin-bottom: 30px;
}

.hero-headline .line1,
.hero-headline .line2 {
  display: block;
  white-space: nowrap;
}

.hero-headline .line2 {
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: 6px;
}

/* =========================================================
   HERO : サブ説明文
   ========================================================= */
.hero-sub {
  font-size: clamp(1rem, 1.25vw, 1.06rem);
  line-height: 1.95;
  color: var(--charcoal);
  margin-bottom: 28px;
  max-width: 620px;
}

/* =========================================================
   HERO : 訴求タグ
   ========================================================= */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-points span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border: 1px solid rgba(200, 146, 74, 0.38);
  border-radius: 2px;
  color: var(--gold-dark);
  background: rgba(200, 146, 74, 0.06);
}

/* =========================================================
   HERO : 価格とCTA
   ========================================================= */
.hero-price-block {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.price-tag {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2.25rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--charcoal);
}

.price-tag small {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--mid-gray);
}

/* =========================================================
   HERO : 右カラム（画像エリア）
   ========================================================= */
.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}

/* =========================================================
   HERO : 画像プレースホルダー全体
   ========================================================= */
.hero-image-placeholder {
  width: 100%;
  max-width: none;
}

/* =========================================================
   HERO : 画像エリアラベル
   ========================================================= */
.placeholder-label {
  display: inline-block;
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   HERO : 画像エリア本体
   ========================================================= */
.placeholder-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 520px;
  border: 1.5px solid rgba(200, 146, 74, 0.45);
  background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, rgba(237,233,225,0.85) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.placeholder-box::before,
.placeholder-box::after {
  content: '';
  position: absolute;
  background: rgba(200, 146, 74, 0.18);
}

.placeholder-box::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.placeholder-box::after {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.placeholder-box span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: rgba(247, 245, 240, 0.9);
  padding: 10px 18px;
  border-radius: 2px;
  border: 1px solid rgba(200, 146, 74, 0.25);
  position: relative;
  z-index: 1;
}

/* =========================================================
   HERO : スクロールヒント
   ========================================================= */
.hero-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--light-gray), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* =========================================================
   HERO : 大きめワイド画面調整
   ========================================================= */
@media (min-width: 1500px) {
  .hero {
    grid-template-columns: minmax(560px, 700px) minmax(760px, 1fr);
    column-gap: 18px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-sub {
    max-width: 640px;
  }

  .placeholder-box {
    min-height: 560px;
  }
}

/* =========================================================
   HERO : 1200px以下
   ========================================================= */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: minmax(480px, 1fr) minmax(560px, 1fr);
    column-gap: 20px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-headline {
    font-size: clamp(3rem, 5vw, 5rem);
  }

  .placeholder-box {
    min-height: 460px;
  }
}

/* =========================================================
   HERO : 900px以下
   ========================================================= */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 28px;
    column-gap: 0;
    padding-top: 92px;
    padding-bottom: 56px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-image-placeholder {
    max-width: 560px;
  }

  .placeholder-box {
    min-height: 0;
  }

  .hero-scroll-hint {
    display: none;
  }
}

/* =========================================================
   HERO : 600px以下
   ========================================================= */
@media (max-width: 600px) {
  .hero {
    padding-top: 84px;
    padding-bottom: 48px;
    padding-left: 18px;
    padding-right: 18px;
    row-gap: 24px;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 3.9rem);
    line-height: 1.08;
    margin-bottom: 22px;
  }

  .hero-headline .line1,
  .hero-headline .line2 {
    white-space: nowrap;
  }

  .hero-sub {
    font-size: 0.96rem;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .hero-points {
    gap: 8px;
    margin-bottom: 28px;
  }

  .hero-points span {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .hero-price-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .price-tag {
    font-size: 2rem;
  }

  .hero-image-placeholder {
    max-width: 100%;
  }

  .placeholder-label {
    margin-bottom: 10px;
  }

  .placeholder-box span {
    font-size: 0.88rem;
    padding: 8px 14px;
  }

}
/* =========================================================
   HERO : 価格補足
   ========================================================= */
.price-tag-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.shipping-note {
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--mid-gray);
}

/* =========================================================
   HERO : スマホ時の送料無料表記
   ========================================================= */
@media (max-width: 600px) {
  .shipping-note {
    font-size: 0.76rem;
    line-height: 1.6;
  }
}
/* ---------- SOLUTION : セクション全体 ---------- */
.solution {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* ---------- SOLUTION : 見出しエリア ---------- */
.solution .section-title {
  margin-bottom: 18px;
}

.solution .section-lead {
  margin-bottom: 52px;
  max-width: 920px;
  font-size: clamp(0.98rem, 1.35vw, 1.06rem);
  line-height: 2;
  color: var(--mid-gray);
}

.solution .section-lead span {
  display: block;
}

/* ---------- SOLUTION : カード一覧 ---------- */
.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* ---------- SOLUTION : 各カード ---------- */
.sol-card {
  padding: 28px 28px 34px;
  border: 1px solid rgba(200, 146, 74, 0.16);
  border-radius: 4px;
  background: var(--ivory);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.sol-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sol-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(200, 146, 74, 0.1);
  transform: translateY(-4px);
}

/* ---------- SOLUTION : 画像エリア ---------- */
.sol-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  border: 1px solid rgba(200, 146, 74, 0.18);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(237, 233, 225, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.sol-image::before,
.sol-image::after {
  content: '';
  position: absolute;
  background: rgba(200, 146, 74, 0.14);
}

.sol-image::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.sol-image::after {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sol-image span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  background: rgba(247, 245, 240, 0.9);
  padding: 8px 14px;
  border: 1px solid rgba(200, 146, 74, 0.22);
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.sol-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- SOLUTION : カード見出し ---------- */
.sol-card h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ---------- SOLUTION : カード本文 ---------- */
.sol-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.95;
}

/* ---------- SOLUTION : レスポンシブ 900px以下 ---------- */
@media (max-width: 900px) {
  .solution-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solution .section-lead {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

/* ---------- SOLUTION : レスポンシブ 600px以下 ---------- */
@media (max-width: 600px) {
  .sol-card {
    padding: 24px 24px 30px;
  }

  .sol-image {
    margin-bottom: 20px;
  }

  .sol-card h3 {
    font-size: 1rem;
  }

  .sol-card p {
    font-size: 0.88rem;
  }
}
/* ---------- PAIN POINTS : セクション全体 ---------- */
.problems {
  padding: var(--section-pad) 0;
  background: #17171b;
  color: var(--white);
}

/* ---------- PAIN POINTS : 上部ヘッダーエリア ---------- */
.problems-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}

/* ---------- PAIN POINTS : 左カラム（見出し） ---------- */
.problems-heading {
  max-width: 520px;
}

/* ---------- PAIN POINTS : ラベル ---------- */
.problems .section-label {
  color: var(--gold-light);
  margin-bottom: 18px;
}

/* ---------- PAIN POINTS : メイン見出し ---------- */
.problems .section-title {
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.25;
}

/* ---------- PAIN POINTS : 右カラム（画像エリア） ---------- */
.problems-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  background:
    linear-gradient(rgba(12, 14, 22, 0.38), rgba(12, 14, 22, 0.38)),
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* ---------- PAIN POINTS : 画像 ---------- */
.problems-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.88);
}

/* ---------- PAIN POINTS : 一覧グリッド ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- PAIN POINTS : 各項目 ---------- */
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 132px;
  padding: 28px 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.45s ease;
}

.problem-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.problem-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* ---------- PAIN POINTS : 番号 ---------- */
.problem-num {
  flex: 0 0 42px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  padding-top: 1px;
  letter-spacing: 0.02em;
  font-variant-numeric: lining-nums;
}

/* ---------- PAIN POINTS : 本文 ---------- */
.problem-item p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

.problem-item p strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.7;
}

/* ---------- PAIN POINTS : 下部の締めエリア ---------- */
.problems-bridge {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
}

/* ---------- PAIN POINTS : 線 ---------- */
.bridge-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 146, 74, 0.35), transparent);
}

/* ---------- PAIN POINTS : 締め文 ---------- */
.bridge-text {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
}

/* ---------- PAIN POINTS : レスポンシブ 1024px以下 ---------- */
@media (max-width: 1024px) {
  .problems-head {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .problems-heading {
    max-width: 100%;
  }

  .problems-visual {
    max-width: 720px;
  }
}

/* ---------- PAIN POINTS : レスポンシブ 900px以下 ---------- */
@media (max-width: 900px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }

  .problem-item {
    min-height: auto;
    padding: 24px 20px;
  }

  .problems-head {
    margin-bottom: 40px;
  }

  .problems-bridge {
    margin-top: 36px;
  }
}

/* ---------- PAIN POINTS : レスポンシブ 600px以下 ---------- */
@media (max-width: 600px) {
  .problems-head {
    gap: 22px;
    margin-bottom: 32px;
  }

  .problem-item {
    gap: 14px;
    padding: 22px 18px;
  }

  .problem-num {
    flex: 0 0 36px;
    font-size: 1.45rem;
  }

  .problem-item p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .problem-item p strong {
    font-size: 1rem;
    line-height: 1.65;
  }

  .problems-bridge {
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
  }

  .bridge-text {
    white-space: normal;
    line-height: 1.7;
  }

  .bridge-line {
    width: 100%;
    height: 1px;
  }
}

/* =========================================================
   USE SCENES : セクション全体
   ========================================================= */
.scenes {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.scenes .section-title {
  margin-bottom: 44px;
  line-height: 1.3;
}

/* =========================================================
   USE SCENES : 一覧全体
   ========================================================= */
.scenes-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* =========================================================
   USE SCENES : 各シーン行
   ========================================================= */
.scene-item,
.scene-item.reverse {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 44px;
}

/* 交互レイアウト */
.scene-item.reverse .scene-visual {
  order: 2;
}

.scene-item.reverse .scene-text {
  order: 1;
}

/* =========================================================
   USE SCENES : 画像エリア
   ========================================================= */
.scene-visual {
  position: relative;
  width: 100%;
}

.scene-image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #f4f1ea;
  border: 1px solid rgba(200, 146, 74, 0.18);
}

/* 画像本体 */
.scene-image-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* =========================================================
   USE SCENES : 画像上ラベル
   ========================================================= */
.scene-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}

.scene-label-tag {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(21, 24, 35, 0.82);
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  backdrop-filter: blur(2px);
}

/* =========================================================
   USE SCENES : テキストエリア
   ========================================================= */
.scene-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(200, 146, 74, 0.35);
}

.scene-text p {
  font-size: 0.96rem;
  line-height: 2;
  color: var(--mid-gray);
}

/* =========================================================
   USE SCENES : 1200px以下
   ========================================================= */
@media (max-width: 1200px) {
  .scene-item,
  .scene-item.reverse {
    gap: 32px;
  }

  .scene-text h3 {
    font-size: 1.24rem;
  }

  .scene-text p {
    font-size: 0.93rem;
  }
}

/* =========================================================
   USE SCENES : 900px以下
   タブレット?スマホ手前
   ========================================================= */
@media (max-width: 900px) {
  .scenes-list {
    gap: 52px;
  }

  .scene-item,
  .scene-item.reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .scene-item.reverse .scene-visual,
  .scene-item.reverse .scene-text {
    order: initial;
  }

  .scene-text h3 {
    font-size: 1.14rem;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .scene-text p {
    font-size: 0.92rem;
    line-height: 1.9;
  }
}

/* =========================================================
   USE SCENES : 600px以下
   スマホ最適化
   画像全体が見えるように修正
   ========================================================= */
@media (max-width: 600px) {
  .scenes {
    padding: 72px 0;
  }

  .scenes .section-title {
    margin-bottom: 30px;
  }

  .scenes-list {
    gap: 42px;
  }

  .scene-item,
  .scene-item.reverse {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .scene-visual {
    width: 100%;
  }

  .scene-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: #f4f1ea;
  }

  /* スマホでは画像全体が見えるようにする */
  .scene-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #f4f1ea;
  }

  .scene-overlay {
    left: 12px;
    bottom: 12px;
  }

  .scene-label-tag {
    font-size: 0.72rem;
    padding: 8px 14px;
    letter-spacing: 0.18em;
  }

  .scene-text h3 {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .scene-text p {
    font-size: 0.9rem;
    line-height: 1.9;
  }
}
/* ---------- FEATURES : セクション全体 ---------- */
.features {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* ---------- FEATURES : 見出しエリア ---------- */
.features .section-title {
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 44px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.01em;
}
/* ---------- FEATURES : 一覧全体 ---------- */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--greige);
}

/* ---------- FEATURES : 各項目 ---------- */
.feature-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 36px 0;
  border-bottom: 1px solid var(--greige);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease;
}

.feature-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FEATURES : 番号 ---------- */
.feature-num {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  padding-top: 2px;
  letter-spacing: 0.02em;
  font-variant-numeric: lining-nums;
}

/* ---------- FEATURES : 本文エリア ---------- */
.feature-body {
  max-width: 920px;
}

/* ---------- FEATURES : 見出し ---------- */
.feature-body h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ---------- FEATURES : 本文 ---------- */
.feature-body p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 2;
  margin-bottom: 16px;
}

/* ---------- FEATURES : 補足ラベル ---------- */
.feature-spec {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: rgba(200, 146, 74, 0.08);
  padding: 8px 14px;
  border-radius: 2px;
  border-left: 2px solid var(--gold);
  line-height: 1.7;
}

/* ---------- FEATURES : レスポンシブ 900px以下 ---------- */
@media (max-width: 900px) {
  .features .section-title {
    margin-bottom: 36px;
  }

  .feature-item {
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .feature-num {
    font-size: 1.95rem;
  }

  .feature-body h3 {
    font-size: 1.08rem;
  }

  .feature-body p {
    font-size: 0.92rem;
  }
}

/* ---------- FEATURES : レスポンシブ 600px以下 ---------- */
@media (max-width: 600px) {
  .feature-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .feature-num {
    font-size: 1.8rem;
  }

  .feature-body h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .feature-body p {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 14px;
  }

  .feature-spec {
    font-size: 0.74rem;
    padding: 7px 12px;
  }
}
/* =========================================================
   FEATURES : 右サムネイル付きレイアウト
   ========================================================= */
.feature-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 200px;
  gap: 22px;
  align-items: start;
}

/* =========================================================
   FEATURES : サムネイル
   ========================================================= */
.feature-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid rgba(200, 146, 74, 0.18);
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 146, 74, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   FEATURES : モーダル
   ========================================================= */
.feature-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.feature-modal.is-open {
  display: block;
}

.feature-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(4px);
}

.feature-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  max-height: 88vh;
  margin: 4vh auto 0;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.feature-modal-dialog img {
  width: 100%;
  height: auto;
  max-height: calc(88vh - 32px);
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.feature-modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

/* =========================================================
   FEATURES : レスポンシブ
   ========================================================= */
@media (max-width: 900px) {
  .feature-item {
    grid-template-columns: 70px minmax(0, 1fr) 170px;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .feature-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-thumb {
    max-width: 220px;
  }
}

/* =========================================================
   SHIPPING NOTE : 共通
   ========================================================= */
.shipping-note {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-top: 6px;
}

/* =========================================================
   HERO : 価格まわり
   ========================================================= */
.price-tag-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =========================================================
   FINAL CTA : 送料無料表示
   ========================================================= */
.shipping-note-final {
  margin-top: -12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   SHIPPING NOTE : スマホ
   ========================================================= */
@media (max-width: 600px) {
  .shipping-note {
    font-size: 0.76rem;
    line-height: 1.65;
  }

  .shipping-note-final {
    margin-top: -8px;
    margin-bottom: 20px;
  }
}



/* ---------- MID CTA : セクション全体 ---------- */
.cta-mid {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
  text-align: center;
}

/* ---------- MID CTA : メインコピー ---------- */
.cta-mid-text {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ---------- MID CTA : 補助説明 ---------- */
.cta-mid-sub {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- MID CTA : ボタン ---------- */
.cta-mid .btn-primary {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}

.cta-mid .btn-primary:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

/* ---------- MID CTA : レスポンシブ 600px以下 ---------- */
@media (max-width: 600px) {
  .cta-mid {
    padding: 72px 0;
  }

  .cta-mid-text {
    font-size: clamp(1.35rem, 7vw, 2rem);
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .cta-mid-sub {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 28px;
  }
}

/* ---------- CUSTOMER VOICES : セクション全体 ---------- */
.voices {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

/* ---------- CUSTOMER VOICES : 見出しエリア ---------- */
.voices .section-title {
  margin-bottom: 16px;
}

.voices-lead {
  max-width: 720px;
  margin-bottom: 48px;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--mid-gray);
}

/* ---------- CUSTOMER VOICES : カード一覧 ---------- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- CUSTOMER VOICES : カード ---------- */
.voice-card {
  background: var(--white);
  border-radius: 6px;
  padding: 34px 28px 26px;
  display: flex;
  flex-direction: column;
  min-height: 370px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ---------- CUSTOMER VOICES : 引用符 ---------- */
.voice-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(200, 146, 74, 0.45);
  margin-bottom: 18px;
}

/* ---------- CUSTOMER VOICES : 本文 ---------- */
.voice-text {
  font-size: 0.96rem;
  line-height: 2;
  color: var(--charcoal);
  margin-bottom: 28px;
  flex-grow: 1;
}

/* ---------- CUSTOMER VOICES : フッター ---------- */
.voice-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #e8e1d8;
}

/* ---------- CUSTOMER VOICES : アバター ---------- */
.voice-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* ---------- CUSTOMER VOICES : 名前・属性 ---------- */
.voice-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.voice-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--charcoal);
}

.voice-role {
  font-size: 0.86rem;
  color: var(--mid-gray);
}

/* ---------- CUSTOMER VOICES : 900px以下 ---------- */
@media (max-width: 900px) {
  .voices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .voice-card {
    min-height: auto;
  }

  .voices-lead {
    margin-bottom: 36px;
  }
}

/* ---------- CUSTOMER VOICES : 600px以下 ---------- */
@media (max-width: 600px) {
  .voice-card {
    padding: 28px 22px 22px;
  }

  .voice-text {
    font-size: 0.92rem;
    line-height: 1.95;
  }

  .voice-quote {
    font-size: 2.6rem;
    margin-bottom: 14px;
  }

  .voice-name {
    font-size: 0.95rem;
  }

  .voice-role {
    font-size: 0.82rem;
  }
}

/* ---------- COMPARISON : セクション全体 ---------- */
.comparison {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* ---------- COMPARISON : 見出しエリア ---------- */
.comparison .section-title {
  margin-bottom: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.comparison-lead {
  max-width: 760px;
  margin-bottom: 42px;
  font-size: 0.96rem;
  line-height: 1.95;
  color: var(--mid-gray);
}

.comparison-lead span {
  display: block;
}

/* =========================================================
   COMPARISON : スクロール補足
   初期状態は非表示
   ========================================================= */
.comparison-scroll-note {
  display: none !important;
}

/* =========================================================
   COMPARISON : スクロール補足
   タブレット・スマホで表示
   ========================================================= */
@media screen and (max-width: 768px) {
  .comparison-scroll-note {
    display: block !important;
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--mid-gray);
    margin: 0 0 12px;
  }
}

/* ---------- COMPARISON : テーブルラッパー ---------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* ---------- COMPARISON : テーブル本体 ---------- */
.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

/* ---------- COMPARISON : ヘッダー行 ---------- */
.comparison-table thead tr {
  background: var(--charcoal);
  color: var(--white);
}

.comparison-table th {
  padding: 20px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: center;
  vertical-align: middle;
}

/* ---------- COMPARISON : 左端見出し列 ---------- */
.comparison-table th.col-feature {
  text-align: left;
  width: 34%;
}

/* ---------- COMPARISON : Pro列ヘッダー ---------- */
.comparison-table th.col-pro {
  background: var(--gold-dark);
  color: var(--white);
  position: relative;
  padding-top: 34px;
}

/* ---------- COMPARISON : Pro列おすすめラベル ---------- */
.comparison-table th.col-pro::before {
  content: 'おすすめ';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ---------- COMPARISON : セル共通 ---------- */
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--greige);
  text-align: center;
  vertical-align: middle;
  color: var(--mid-gray);
  background: var(--white);
}

/* ---------- COMPARISON : 左端項目列 ---------- */
.comparison-table td:first-child {
  text-align: left;
  color: var(--charcoal);
  font-weight: 700;
  width: 34%;
}

/* ---------- COMPARISON : 偶数行背景 ---------- */
.comparison-table tbody tr:nth-child(even) td {
  background: rgba(247, 245, 240, 0.65);
}

/* ---------- COMPARISON : Pro列本文 ---------- */
.comparison-table tbody td:last-child {
  background: rgba(200, 146, 74, 0.06);
  font-weight: 700;
}

/* ---------- COMPARISON : 記号表示 ---------- */
.comp-mark {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.comp-mark.positive {
  color: var(--gold-dark);
}

.comp-mark.partial {
  color: #8f8f8f;
}

.comp-mark.negative {
  color: #c35b5b;
}

/* ---------- COMPARISON : 小さめ文字 ---------- */
.text-small {
  font-size: 0.92rem;
  color: var(--mid-gray);
}

/* ---------- COMPARISON : 強調文字 ---------- */
.text-gold {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ---------- COMPARISON : 補足文 ---------- */
.comparison-note {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--mid-gray);
  text-align: center;
}

/* ---------- COMPARISON : レスポンシブ 900px以下 ---------- */
@media (max-width: 900px) {
  .comparison-lead {
    margin-bottom: 32px;
  }

  .comparison-table {
    min-width: 680px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 16px 16px;
  }
}

/* ---------- COMPARISON : レスポンシブ 600px以下 ---------- */
@media (max-width: 600px) {
  .comparison .section-title {
    margin-bottom: 14px;
  }

  .comparison-lead {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .comparison-note {
    font-size: 0.88rem;
    line-height: 1.85;
  }
}
/* ---------- INVESTMENT : セクション全体 ---------- */
.price {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

/* ---------- INVESTMENT : 見出しエリア ---------- */
.price .section-title {
  margin-bottom: 18px;
  line-height: 1.24;
}

.price-lead {
  max-width: 780px;
  margin-bottom: 48px;
  font-size: 0.96rem;
  line-height: 2;
  color: var(--mid-gray);
}

/* ---------- INVESTMENT : 価値訴求一覧 ---------- */
.price-rationale {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 52px;
}

/* ---------- INVESTMENT : 各項目カード ---------- */
.rationale-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--greige);
  border-radius: 4px;
  opacity: 1;
  transform: none;
  transition: all 0.45s ease;
}

.rationale-item:hover {
  border-color: rgba(200, 146, 74, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* ---------- INVESTMENT : 項目番号 ---------- */
.rationale-number {
  flex: 0 0 38px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  padding-top: 2px;
}

/* ---------- INVESTMENT : 項目テキスト ---------- */
.rationale-text {
  flex: 1;
}

.rationale-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.rationale-text p {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--mid-gray);
}

/* ---------- INVESTMENT : 価格カード全体 ---------- */
.price-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(200, 146, 74, 0.28);
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* ---------- INVESTMENT : カード内2カラム ---------- */
.price-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 40px;
}

/* ---------- INVESTMENT : 左カラム / 商品画像 ---------- */
.price-card-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-card-image-wrap {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f7f5f1 0%, #f0ece5 100%);
  border: 1px solid rgba(200, 146, 74, 0.18);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* ---------- INVESTMENT : 仮画像表示 ---------- */
.price-card-image-placeholder span {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

/* ---------- INVESTMENT : 実画像用 ---------- */
.price-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- INVESTMENT : 右カラム / 商品情報 ---------- */
.price-card-content {
  text-align: left;
}

/* ---------- INVESTMENT : ラベル ---------- */
.price-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---------- INVESTMENT : 商品名 ---------- */
.price-card-name {
  font-size: 1.36rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ---------- INVESTMENT : 価格 ---------- */
.price-card-price {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.price-tax {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--mid-gray);
}

/* ---------- INVESTMENT : 補助説明 ---------- */
.price-card-sub {
  font-size: 0.96rem;
  line-height: 1.95;
  color: var(--mid-gray);
  margin-bottom: 24px;
}

/* ---------- INVESTMENT : スペックタグ ---------- */
.price-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.price-card-specs span {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--gold-dark);
  background: rgba(200, 146, 74, 0.08);
  border: 1px solid rgba(200, 146, 74, 0.16);
  border-radius: 2px;
  padding: 7px 12px;
}

/* ---------- INVESTMENT : CTA ---------- */
.price-card .btn-large {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 260px;
}

/* ---------- INVESTMENT : 注記 ---------- */
.price-card-note {
  margin-top: 18px;
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--light-gray);
}

/* ---------- INVESTMENT : レスポンシブ 900px以下 ---------- */
@media (max-width: 900px) {
  .price-rationale {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .price-lead {
    margin-bottom: 36px;
  }

  .price-card {
    padding: 32px 24px;
  }

  .price-card-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-card-visual {
    order: 1;
  }

  .price-card-content {
    order: 2;
    text-align: center;
  }

  .price-card-specs {
    justify-content: center;
  }

  .price-card .btn-large {
    min-width: 100%;
  }

  .price-card-image-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ---------- INVESTMENT : レスポンシブ 600px以下 ---------- */
@media (max-width: 600px) {
  .price .section-title {
    margin-bottom: 14px;
  }

  .price-lead {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 28px;
  }

  .rationale-item {
    padding: 22px 18px;
    gap: 14px;
  }

  .rationale-number {
    flex: 0 0 34px;
    font-size: 1.4rem;
  }

  .rationale-text strong {
    font-size: 0.96rem;
    margin-bottom: 8px;
  }

  .rationale-text p {
    font-size: 0.88rem;
    line-height: 1.85;
  }

  .price-card {
    padding: 24px 18px;
  }

  .price-card-name {
    font-size: 1.16rem;
  }

  .price-card-sub {
    font-size: 0.9rem;
    line-height: 1.85;
  }

  .price-card-note {
    font-size: 0.8rem;
  }
}
/* ---------- PRODUCT SPEC : セクション全体 ---------- */
.spec-section {
  padding: 72px 0 0;
  background: var(--white);
}

.spec-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.spec-table-wrap {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.spec-table th {
  width: 180px;
  padding: 14px 16px;
  background: var(--ivory);
  color: var(--mid-gray);
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid var(--greige);
  vertical-align: top;
}

.spec-table td {
  padding: 14px 16px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--greige);
}
/* ---------- SPEC SECTION ---------- */
.spec-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--greige);
}

.spec-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.spec-table-wrap {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.spec-table th {
  width: 160px;
  padding: 12px 16px;
  background: var(--ivory);
  color: var(--mid-gray);
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid var(--greige);
  vertical-align: top;
}

.spec-table td {
  padding: 12px 16px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--greige);
}

/* ---------- FINAL CTA : セクション全体 ---------- */
.final-cta {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #1e1e1e 0%, #2a1e10 50%, #1a1208 100%);
}

/* ---------- FINAL CTA : 内側ラッパー ---------- */
.final-cta-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- FINAL CTA : メインコピー ---------- */
.final-cta-title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* ---------- FINAL CTA : 補助説明 ---------- */
.final-cta-lead {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
  margin-bottom: 30px;
}

/* ---------- FINAL CTA : 商品画像エリア全体 ---------- */
.final-cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

/* ---------- FINAL CTA : 商品画像枠 ---------- */
.final-cta-image-wrap {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(200, 146, 74, 0.22);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* ---------- FINAL CTA : 仮画像表示 ---------- */
.final-cta-image-placeholder span {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

/* ---------- FINAL CTA : 実画像を入れるとき用 ---------- */
.final-cta-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- FINAL CTA : 価格表示 ---------- */
.final-price {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 30px;
  letter-spacing: 0;
}

.final-price small {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- FINAL CTA : ボタン ---------- */
.final-cta .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  font-weight: 700;
}

.final-cta .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ---------- FINAL CTA : 補足バッジ全体 ---------- */
.final-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ---------- FINAL CTA : 各バッジ ---------- */
.badge {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- FINAL CTA : レスポンシブ 600px以下 ---------- */
@media (max-width: 600px) {
  .final-cta-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .final-cta-lead {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .final-cta-visual {
    margin-bottom: 24px;
  }

  .final-cta-image-wrap {
    max-width: 280px;
  }

  .final-price {
    font-size: 2.3rem;
    margin-bottom: 24px;
  }

  .badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 40px 0;
  background: #111;
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    padding: 40px clamp(20px, 5vw, 40px) 0;
  }

  .hero-visual {
    width: 100%;
    padding: 20px clamp(20px, 10vw, 80px);
  }

  .hero-scroll-hint {
    display: none;
  }

  .scene-item,
  .scene-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }

  .scene-visual {
    aspect-ratio: 16 / 7;
  }

  .header-nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: clamp(2.8rem, 11vw, 4.2rem);
    line-height: 1.12;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .price-tag {
    font-size: 2rem;
  }

  .feature-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-num {
    font-size: 1.8rem;
  }

  .problems-bridge {
    flex-direction: column;
    gap: 16px;
  }

  .bridge-text {
    white-space: normal;
  }

  .bridge-line {
    width: 80%;
    height: 1px;
  }

  .price-card {
    padding: 36px 24px;
  }

  .price-card-price {
    font-size: 2.5rem;
  }

  .hero-price-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .voices-grid {
    grid-template-columns: 1fr;
  }

  .spec-table th {
    width: 100px;
  }

  .header-cta {
    display: none;
  }
}

/* =========================================
   画像エリアの十字ガイドを削除
   ========================================= */

/* HERO */
.placeholder-box::before,
.placeholder-box::after {
  content: none !important;
  display: none !important;
}

/* HERO 画像エリア内の仮ラベルが不要なら非表示 */
.placeholder-box span {
  display: none;
}

/* SOLUTION */
.sol-image::before,
.sol-image::after {
  content: none !important;
  display: none !important;
}

/* USE SCENES */
.scene-image-placeholder::before,
.scene-image-placeholder::after {
  content: none !important;
  display: none !important;
}

/* INVESTMENT */
.price-card-image-wrap::before,
.price-card-image-wrap::after {
  content: none !important;
  display: none !important;
}

/* FINAL CTA */
.final-cta-image-wrap::before,
.final-cta-image-wrap::after {
  content: none !important;
  display: none !important;
}


