/* ============================================================
   /homepage 改修版（v8基準値超え）─ 「設計で、9割。」
   2026-04-20 シオン
   スコープ：#hp_page 配下のみ（他ページ非干渉）
   元：drafts/20260419_homepage_v2.html のインラインCSS
   ============================================================ */

/* :where() で specificity ゼロのリセット（他ページ・記事本文に影響させない） */
:where(#hp_page p, #hp_page h1, #hp_page h2, #hp_page h3, #hp_page h4,
       #hp_page ul, #hp_page ol, #hp_page li, #hp_page figure,
       #hp_page blockquote) { margin: 0; padding: 0; }
:where(#hp_page ul, #hp_page ol) { list-style: none; }

#hp_page, #hp_page * { box-sizing: border-box; }

#hp_page {
  --ink: #0e0c0a;
  --ink-2: #1a1410;
  --ink-3: #241a14;
  --paper: #f7f3ec;
  --paper-2: #ede6d8;
  --paper-3: #e3d9c4;
  --brown: #9d643e;
  --brown-2: #c8956a;
  --brown-3: #6d4528;
  --gold: #d4a661;
  --gold-2: #b88a4a;
  --line-d: rgba(255,255,255,0.08);
  --line-l: rgba(14,12,10,0.10);
  --line-mid: rgba(157,100,62,0.18);
  --shadow-deep: 0 60px 120px -40px rgba(0,0,0,0.6);
  --shadow-card: 0 20px 50px -20px rgba(14,12,10,0.18);

  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-feature-settings: "palt" 1, "kern" 1;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  position: relative;
}
#hp_page img { max-width: 100%; height: auto; display: block; }
#hp_page svg { display: block; }

/* ============================================================
   革新①：マウス追従ライト
   ============================================================ */
#hp_page .cursor_light {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(212,166,97,0.22) 0%, rgba(212,166,97,0.08) 25%, transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  z-index: 1;
  transition: opacity 0.4s;
  opacity: 0;
}
#hp_page.cursor_active .cursor_light { opacity: 1; }

/* モバイルでは追従ライトを無効化（タッチデバイスで無意味・重い） */
@media (hover: none), (max-width: 900px) {
  #hp_page .cursor_light { display: none; }
}

/* ============================================================
   汎用：見出し共通
   ============================================================ */
#hp_page .sec_inner { max-width: 1400px; margin: 0 auto; padding: 0 6vw; position: relative; z-index: 2; }
#hp_page .sec_head { margin-bottom: 80px; text-align: center; }
#hp_page .sec_head.left { text-align: left; }
#hp_page .sec_label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--brown);
  margin-bottom: 24px;
  font-weight: 600;
}
#hp_page .sec_label.gold { color: var(--gold); }
#hp_page .sec_h2 {
  font-size: clamp(30px, 4.8vw, 64px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  word-break: keep-all;
}
#hp_page .sec_h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brown) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
#hp_page .sec_h2.dark em {
  background: linear-gradient(120deg, var(--gold) 0%, var(--brown-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#hp_page .sec_lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  color: rgba(14,12,10,0.7);
}
#hp_page .sec_lead.dark { color: rgba(255,255,255,0.7); }
#hp_page .sec_lead.left { margin: 0; }

/* スクロールフェードイン */
#hp_page .fadein { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.3, 0, 0.2, 1); }
#hp_page .fadein.in { opacity: 1; transform: translateY(0); }
#hp_page .fadein.delay1 { transition-delay: 0.15s; }
#hp_page .fadein.delay2 { transition-delay: 0.30s; }
#hp_page .fadein.delay3 { transition-delay: 0.45s; }
#hp_page .fadein.delay4 { transition-delay: 0.60s; }

/* ============================================================
   ① HERO ─ フルブリード＋3D perspective
   ============================================================ */
#hp_page .hp_hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0e0c0a 0%, #1a1410 50%, #2a1f17 100%);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  perspective: 1500px;
  perspective-origin: 50% 30%;
}
#hp_page .hp_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/themes/crevia/library/images/hp_fv.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: brightness(0.85) contrast(1.05);
  z-index: 0;
}
#hp_page .hp_hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(157,100,62,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212,166,97,0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(14,12,10,0.4) 0%, rgba(14,12,10,0.7) 100%);
  z-index: 1;
}
#hp_page .hp_hero_grid_lines {
  position: absolute; inset: 0; z-index: 2; opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
  transform-style: preserve-3d;
  transform: rotateX(60deg) translateZ(-100px);
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
#hp_page .hp_hero_inner { position: relative; z-index: 3; width: 100%; max-width: 1400px; margin: 0 auto; padding: 120px 6vw 60px; }
#hp_page .hp_hero_eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 8px 18px;
  border: 1px solid rgba(212,166,97,0.4);
  border-radius: 999px;
  background: rgba(212,166,97,0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0; animation: hpHeroIn 0.8s 0.1s ease forwards;
}
#hp_page .hp_hero_h1 {
  font-size: clamp(40px, 9vw, 144px);
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-family: 'Noto Sans JP', sans-serif;
  word-break: keep-all;
}
#hp_page .hp_hero_h1 .hp_h1_local {
  display: block;
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  line-height: 1.5;
  opacity: 0; transform: translateY(30px);
  animation: hpHeroIn 1.2s 0.2s cubic-bezier(0.3, 0, 0.2, 1) forwards;
}
#hp_page .hp_hero_h1 .hp_h1_main {
  display: block;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  opacity: 0; transform: translateY(30px);
  animation: hpHeroIn 1.2s 0.4s cubic-bezier(0.3, 0, 0.2, 1) forwards;
}
#hp_page .hp_hero_h1 .hp_h1_nine {
  display: inline-block;
  position: relative;
  font-size: 1.4em;
  background: linear-gradient(180deg, var(--gold) 0%, var(--brown) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  padding: 0 0.05em;
  text-shadow: 0 0 80px rgba(212,166,97,0.6);
}
#hp_page .hp_hero_h1 .hp_h1_nine::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left;
  animation: hpDrawUnderline 1.6s 1.2s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  transform: scaleX(0);
}
@keyframes hpDrawUnderline { to { transform: scaleX(1); } }
#hp_page .hp_hero_lead {
  margin-top: 50px;
  max-width: 640px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  opacity: 0; animation: hpHeroIn 1s 0.9s ease forwards;
}
#hp_page .hp_hero_lead em { font-style: normal; color: var(--gold); font-weight: 600; }
#hp_page .hp_hero_cta {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0; animation: hpHeroIn 1s 1.1s ease forwards;
}
#hp_page .hp_hero_btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 38px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  position: relative;
  overflow: hidden;
}
#hp_page .hp_hero_btn.primary {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%);
  color: #fff;
  box-shadow: 0 20px 50px -15px rgba(157,100,62,0.6);
}
#hp_page .hp_hero_btn.primary:hover { transform: translateY(-3px); box-shadow: 0 30px 70px -15px rgba(157,100,62,0.8); }
#hp_page .hp_hero_btn.secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#hp_page .hp_hero_btn.secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }
#hp_page .hp_hero_kpi {
  position: absolute;
  bottom: 50px;
  right: 6vw;
  z-index: 3;
  display: flex;
  gap: 40px;
  padding: 24px 32px;
  background: rgba(14,12,10,0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
#hp_page .hp_hero_kpi_item { text-align: left; }
#hp_page .hp_hero_kpi_num {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: 'Lato', sans-serif;
  letter-spacing: -0.02em;
}
#hp_page .hp_hero_kpi_num small { font-size: 14px; font-weight: 400; margin-left: 4px; color: rgba(255,255,255,0.6); }
#hp_page .hp_hero_kpi_label { font-size: 11px; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); margin-top: 6px; }
#hp_page .hp_hero_kpi_label .sp-only { display: none; }
@media (max-width: 900px) {
  #hp_page .hp_hero_kpi_label .sp-only { display: inline; }
}
#hp_page .hp_hero_scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#hp_page .hp_hero_scroll_line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: hpScrollPulse 2s infinite;
}
@keyframes hpScrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }
@keyframes hpHeroIn { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   ② KEY VISION
   ============================================================ */
#hp_page .hp_vision { position: relative; padding: 160px 6vw 200px; background: var(--paper); overflow: hidden; }
#hp_page .hp_vision::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,166,97,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(157,100,62,0.04) 0%, transparent 50%);
  pointer-events: none;
}
#hp_page .hp_vision_inner { position: relative; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
#hp_page .hp_vision_text { padding-right: 40px; }
#hp_page .hp_vision_p { font-size: 16px; line-height: 2; color: rgba(14,12,10,0.75); margin-bottom: 24px; }
#hp_page .hp_vision_p strong {
  color: var(--ink); font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(212,166,97,0.25) 60%);
  padding: 0 4px;
}
#hp_page .hp_vision_visual { position: relative; aspect-ratio: 1 / 1.1; perspective: 1200px; }
#hp_page .vision_stage { position: absolute; inset: 0; transform-style: preserve-3d; }
#hp_page .vision_block {
  position: absolute;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f5efe3 100%);
  border: 1px solid var(--line-l);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
  transition: transform 0.6s cubic-bezier(0.5, 0, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.15em;
}
#hp_page .vision_block.b1 { top: 0; left: 0; width: 100%; height: 18%; transform: translateZ(80px) rotateX(-10deg); }
#hp_page .vision_block.b2 { top: 22%; left: 0; width: 38%; height: 45%; transform: translateZ(120px) rotateY(-15deg); background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%); color: #fff; }
#hp_page .vision_block.b3 { top: 22%; left: 42%; width: 58%; height: 22%; transform: translateZ(60px) rotateY(8deg); }
#hp_page .vision_block.b4 { top: 47%; left: 42%; width: 28%; height: 20%; transform: translateZ(100px) rotateX(8deg); }
#hp_page .vision_block.b5 { top: 47%; left: 72%; width: 28%; height: 20%; transform: translateZ(40px) rotateY(20deg); background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--gold); }
#hp_page .vision_block.b6 { top: 71%; left: 0; width: 100%; height: 14%; transform: translateZ(20px) rotateX(15deg); }
#hp_page .vision_block.b7 { top: 88%; left: 30%; width: 40%; height: 12%; transform: translateZ(160px); background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%); color: #fff; font-size: 14px; font-weight: 800; letter-spacing: 0.2em; }
#hp_page .hp_vision_visual:hover .vision_block.b1 { transform: translateZ(140px) rotateX(-15deg) translateY(-10px); }
#hp_page .hp_vision_visual:hover .vision_block.b2 { transform: translateZ(180px) rotateY(-20deg); }
#hp_page .hp_vision_visual:hover .vision_block.b3 { transform: translateZ(100px) rotateY(12deg) translateX(10px); }
#hp_page .hp_vision_visual:hover .vision_block.b4 { transform: translateZ(160px) rotateX(12deg); }
#hp_page .hp_vision_visual:hover .vision_block.b5 { transform: translateZ(80px) rotateY(25deg); }
#hp_page .hp_vision_visual:hover .vision_block.b6 { transform: translateZ(40px) rotateX(20deg); }
#hp_page .hp_vision_visual:hover .vision_block.b7 { transform: translateZ(220px) translateY(-10px); }
#hp_page .vision_caption { position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.3em; color: rgba(14,12,10,0.4); text-transform: uppercase; }

/* ============================================================
   ③ OUR PROOF
   ============================================================ */
#hp_page .hp_proof { position: relative; padding: 160px 6vw; background: linear-gradient(180deg, #0e0c0a 0%, #1a1410 100%); color: #fff; overflow: hidden; }
#hp_page .hp_proof::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,166,97,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(157,100,62,0.06) 0%, transparent 40%);
}
#hp_page .proof_compare { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 80px; }
#hp_page .proof_card {
  position: relative;
  padding: 40px 36px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}
#hp_page .proof_card:hover { transform: translateY(-6px); border-color: rgba(212,166,97,0.3); box-shadow: 0 30px 60px -20px rgba(212,166,97,0.2); }
#hp_page .proof_card.after { background: linear-gradient(135deg, rgba(157,100,62,0.12) 0%, rgba(212,166,97,0.06) 100%); border-color: rgba(212,166,97,0.2); }
#hp_page .proof_card_phase { font-size: 11px; letter-spacing: 0.3em; color: rgba(255,255,255,0.4); margin-bottom: 6px; text-transform: uppercase; }
#hp_page .proof_card.after .proof_card_phase { color: var(--gold); }
#hp_page .proof_card_period { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
#hp_page .proof_metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
#hp_page .proof_metric { padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); }
#hp_page .proof_metric_label { font-size: 11px; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); margin-bottom: 8px; text-transform: uppercase; }
#hp_page .proof_metric_val { font-size: 32px; font-weight: 800; color: #fff; font-family: 'Lato', sans-serif; letter-spacing: -0.02em; line-height: 1; }
#hp_page .proof_metric_val span { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.5); margin-left: 4px; }
#hp_page .proof_card.after .proof_metric_val { color: var(--gold); }
#hp_page .proof_growth { margin-top: 100px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
#hp_page .proof_growth_card { padding: 60px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
#hp_page .proof_growth_card:last-child { border-right: none; }
#hp_page .proof_growth_card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(212,166,97,0.15) 0%, transparent 60%); opacity: 0; transition: opacity 0.5s; }
#hp_page .proof_growth_card:hover::before { opacity: 1; }
#hp_page .proof_growth_num { font-size: clamp(42px, 7vw, 96px); font-weight: 900; line-height: 1; background: linear-gradient(180deg, var(--gold) 0%, var(--brown) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: 'Lato', sans-serif; letter-spacing: -0.04em; }
#hp_page .proof_growth_num span { font-size: 0.4em; margin-left: 2px; font-weight: 700; }
#hp_page .proof_growth_text { margin-top: 16px; font-size: 13px; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }

/* ============================================================
   ④ ISSUES
   ============================================================ */
#hp_page .hp_issues { position: relative; padding: 160px 6vw; background: var(--paper-2); overflow: hidden; }
#hp_page .hp_issues::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(212,166,97,0.05) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(157,100,62,0.02) 40px, rgba(157,100,62,0.02) 41px);
  pointer-events: none;
}
#hp_page .issues_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1400px; margin: 0 auto; }
#hp_page .issues_visual { position: relative; aspect-ratio: 4/5; }
#hp_page .issues_visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-card); }
#hp_page .issues_visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(157,100,62,0.15) 0%, transparent 50%);
  border-radius: 12px; pointer-events: none;
}
#hp_page .issues_list { display: flex; flex-direction: column; gap: 20px; }
#hp_page .issue_item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 28px;
  background: #fff;
  border-left: 4px solid var(--brown);
  border-radius: 6px;
  box-shadow: 0 8px 25px -10px rgba(14,12,10,0.1);
  transition: all 0.4s ease;
}
#hp_page .issue_item:hover { transform: translateX(8px); border-left-color: var(--gold); box-shadow: 0 15px 40px -15px rgba(157,100,62,0.25); }
#hp_page .issue_icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(157,100,62,0.08); border-radius: 50%; }
#hp_page .issue_icon svg { width: 22px; height: 22px; stroke: var(--brown); stroke-width: 2; fill: none; }
#hp_page .issue_text strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 4px; font-weight: 700; }
#hp_page .issue_text span { font-size: 13px; color: rgba(14,12,10,0.6); line-height: 1.6; }
#hp_page .issues_resolve {
  margin-top: 56px; padding: 36px 40px; text-align: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff; border-radius: 10px; font-size: 17px; line-height: 1.9;
  position: relative; overflow: hidden;
}
#hp_page .issues_resolve::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,166,97,0.18) 0%, transparent 50%);
}
#hp_page .issues_resolve strong { color: var(--gold); font-weight: 800; position: relative; }

/* ============================================================
   ⑤ FOR YOU
   ============================================================ */
#hp_page .hp_foryou { position: relative; padding: 160px 6vw; background: var(--paper); overflow: hidden; }
#hp_page .hp_foryou::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 60px, rgba(157,100,62,0.025) 60px, rgba(157,100,62,0.025) 61px),
    repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(157,100,62,0.025) 60px, rgba(157,100,62,0.025) 61px);
  pointer-events: none;
}
#hp_page .foryou_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1400px; margin: 0 auto; }
#hp_page .foryou_checks { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
#hp_page .foryou_check {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-l); border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: all 0.3s ease;
}
#hp_page .foryou_check:hover { background: #fff; transform: translateX(6px); border-color: var(--brown); }
#hp_page .foryou_dot {
  flex-shrink: 0; width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px -4px rgba(157,100,62,0.5);
}
#hp_page .foryou_dot svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2.5; fill: none; }
#hp_page .foryou_visual {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px;
  aspect-ratio: 1/1;
}
#hp_page .foryou_visual_card {
  background-size: cover; background-position: center;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s ease;
  position: relative; overflow: hidden;
}
#hp_page .foryou_visual_card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,12,10,0.1) 0%, transparent 50%);
}
#hp_page .foryou_visual_card:nth-child(1) { background-image: url('/wp-content/themes/crevia/library/images/hp_foryou_1.png'); grid-row: span 2; }
#hp_page .foryou_visual_card:nth-child(2) { background-image: url('/wp-content/themes/crevia/library/images/hp_foryou_2.png'); }
#hp_page .foryou_visual_card:nth-child(3) { background-image: url('/wp-content/themes/crevia/library/images/hp_foryou_3.png'); }
#hp_page .foryou_visual_card:hover { transform: scale(1.03); }

/* ============================================================
   ⑥ FEATURES
   ============================================================ */
#hp_page .hp_features { position: relative; padding: 160px 6vw; background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%); overflow: hidden; }
#hp_page .feature_row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-bottom: 120px; max-width: 1400px; margin-left: auto; margin-right: auto;
}
/* grid子要素がコンテンツ長により grid トラックを押し広げるのを防ぐ（スマホで右はみ出し防止） */
#hp_page .feature_row > * { min-width: 0; }
#hp_page .feature_row.rev { direction: rtl; }
#hp_page .feature_row.rev > * { direction: ltr; }
#hp_page .feature_row:last-child { margin-bottom: 0; }
#hp_page .feat_num {
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  background: linear-gradient(180deg, var(--gold) 0%, var(--brown) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-family: 'Lato', sans-serif;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
  opacity: 0.9;
}
#hp_page .feat_label { font-size: 11px; letter-spacing: 0.4em; color: var(--brown); margin-bottom: 16px; font-weight: 600; }
#hp_page .feat_title { font-size: clamp(22px, 3vw, 36px); line-height: 1.4; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.02em; word-break: keep-all; overflow-wrap: break-word; }
#hp_page .feat_text { font-size: 15px; line-height: 2; color: rgba(14,12,10,0.7); }
#hp_page .feat_img {
  position: relative; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-card);
}
#hp_page .feat_img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,166,97,0.12) 0%, transparent 50%);
}
#hp_page .feat_img.f1 { background-image: url('/wp-content/themes/crevia/library/images/hp_feature_1.png'); }
#hp_page .feat_img.f2 { background-image: url('/wp-content/themes/crevia/library/images/hp_feature_2.png'); }
#hp_page .feat_img.f3 { background-image: url('/wp-content/themes/crevia/library/images/hp_feature_3.png'); }
#hp_page .feat_img.f4 { background-image: url('/wp-content/themes/crevia/library/images/hp_feature_4.png'); }

/* ============================================================
   ⑦ LOCAL ADVANTAGE
   ============================================================ */
#hp_page .hp_local { position: relative; padding: 160px 6vw; background: linear-gradient(180deg, #1f1812 0%, #2a1f17 100%); color: #fff; overflow: hidden; }
#hp_page .hp_local::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(212,166,97,0.1) 0%, transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><circle cx='2' cy='2' r='1' fill='%23d4a661' opacity='0.3'/></svg>");
  background-size: cover, 80px 80px;
  opacity: 0.7;
}
#hp_page .local_lead { font-size: 16px; line-height: 2; color: rgba(255,255,255,0.7); margin-top: 30px; max-width: 800px; }
#hp_page .local_cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 80px; max-width: 1400px; margin-left: auto; margin-right: auto; }
#hp_page .local_card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}
#hp_page .local_card:hover { transform: translateY(-8px); border-color: rgba(212,166,97,0.3); background: rgba(212,166,97,0.05); }
#hp_page .local_card_icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%); border-radius: 12px; margin-bottom: 24px; }
#hp_page .local_card_icon svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 2; fill: none; }
#hp_page .local_card h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: #fff; line-height: 1.4; }
#hp_page .local_card p { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.6); }

/* ============================================================
   ⑧ 7 STEPS
   ============================================================ */
#hp_page .hp_steps { position: relative; padding: 160px 6vw; background: var(--paper); overflow: hidden; }
#hp_page .hp_steps::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212,166,97,0.06) 0%, transparent 60%);
}
#hp_page .steps_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1400px; margin: 0 auto; }
#hp_page .step_card {
  position: relative;
  padding: 40px 32px 36px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line-l);
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  overflow: hidden;
}
#hp_page .step_card:hover { transform: translateY(-6px); border-color: var(--brown); box-shadow: 0 30px 60px -20px rgba(157,100,62,0.2); }
#hp_page .step_card.wide { grid-column: span 3; display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; padding: 50px 50px; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; border-color: rgba(255,255,255,0.1); }
#hp_page .step_card.wide:hover { background: linear-gradient(135deg, var(--ink-2) 0%, var(--ink-3) 100%); }
#hp_page .step_bg_n {
  position: absolute; top: -10px; right: 16px;
  font-size: 110px; font-weight: 900; line-height: 1;
  color: rgba(157,100,62,0.06);
  font-family: 'Lato', sans-serif;
}
#hp_page .step_icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 8px 20px -8px rgba(157,100,62,0.5); position: relative; z-index: 1; }
#hp_page .step_card.wide .step_icon { background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%); margin-bottom: 0; width: 80px; height: 80px; flex-shrink: 0; }
#hp_page .step_icon svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2; fill: none; }
#hp_page .step_card.wide .step_icon svg { width: 36px; height: 36px; }
#hp_page .step_no { font-size: 11px; letter-spacing: 0.3em; color: var(--brown); font-weight: 600; margin-bottom: 8px; position: relative; z-index: 1; }
#hp_page .step_card.wide .step_no { color: var(--gold); }
#hp_page .step_title { font-size: 19px; font-weight: 700; margin-bottom: 14px; line-height: 1.4; position: relative; z-index: 1; }
#hp_page .step_card.wide .step_title { font-size: 24px; }
#hp_page .step_desc { font-size: 13px; line-height: 1.85; color: rgba(14,12,10,0.65); position: relative; z-index: 1; }
#hp_page .step_card.wide .step_desc { color: rgba(255,255,255,0.7); font-size: 14px; }
#hp_page .wide_cta_wrap { flex-shrink: 0; }
#hp_page .wide_cta {
  display: inline-block; padding: 18px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: #fff; text-decoration: none;
  border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px -8px rgba(212,166,97,0.5);
}
#hp_page .wide_cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(212,166,97,0.7); }

/* ============================================================
   ⑨ PROCESS
   ============================================================ */
#hp_page .hp_process { position: relative; padding: 160px 6vw; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); overflow: hidden; }
#hp_page .flow_wrap { position: relative; max-width: 900px; margin: 0 auto; padding-left: 40px; }
#hp_page .flow_wrap::before {
  content: ''; position: absolute; left: 12px; top: 20px; bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--brown) 0%, var(--gold) 50%, var(--brown) 100%);
  opacity: 0.4;
}
#hp_page .flow_item { position: relative; display: block; padding-bottom: 50px; padding-left: 60px; }
#hp_page .flow_item:last-child { padding-bottom: 0; }
#hp_page .flow_dot {
  position: absolute; left: -10px; top: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%);
  border-radius: 50%; border: 4px solid var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(157,100,62,0.5);
}
#hp_page .flow_dot svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2; fill: none; }
#hp_page .flow_no { font-size: 11px; letter-spacing: 0.3em; color: var(--brown); font-weight: 600; margin-bottom: 6px; }
#hp_page .flow_name { font-size: 21px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
#hp_page .flow_name span { display: block; font-size: 11px; letter-spacing: 0.3em; color: var(--gold-2); font-weight: 600; margin-bottom: 4px; font-family: 'Lato', sans-serif; }
#hp_page .flow_desc { font-size: 14px; line-height: 1.95; color: rgba(14,12,10,0.7); }

/* ============================================================
   ⑩ STANDARD SERVICE
   ============================================================ */
#hp_page .hp_includes { position: relative; padding: 160px 6vw; background: var(--paper); overflow: hidden; }
#hp_page .includes_grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1200px; margin: 0 auto; }
#hp_page .inc_block {
  padding: 40px 36px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line-l);
  border-top: 4px solid var(--brown);
  box-shadow: 0 8px 25px -10px rgba(14,12,10,0.08);
  transition: all 0.3s ease;
}
#hp_page .inc_block:hover { transform: translateY(-4px); border-top-color: var(--gold); box-shadow: 0 20px 40px -15px rgba(157,100,62,0.15); }
#hp_page .inc_title { font-size: 16px; letter-spacing: 0.05em; font-weight: 700; color: var(--ink); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line-l); }
#hp_page .inc_list li {
  font-size: 14px; line-height: 1.7; color: rgba(14,12,10,0.75);
  padding: 10px 0 10px 24px; position: relative;
}
#hp_page .inc_list li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 12px; height: 12px;
  background: var(--brown);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(157,100,62,0.12);
}

/* ============================================================
   ⑪ COST GUIDE
   ============================================================ */
#hp_page .hp_cost { position: relative; padding: 160px 6vw; background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%); overflow: hidden; }
#hp_page .cost_cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto 40px; }
#hp_page .cost_card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: 12px;
  transition: all 0.3s ease;
}
#hp_page .cost_card_hl { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; border-color: var(--gold); transform: scale(1.04); box-shadow: 0 30px 60px -20px rgba(212,166,97,0.3); }
#hp_page .cost_card_label { font-size: 12px; letter-spacing: 0.2em; color: var(--brown); font-weight: 600; margin-bottom: 12px; }
#hp_page .cost_card_hl .cost_card_label { color: var(--gold); }
#hp_page .cost_card_price { font-size: clamp(26px, 3vw, 38px); font-weight: 800; font-family: 'Lato', sans-serif; letter-spacing: -0.02em; margin-bottom: 14px; }
#hp_page .cost_card_price small { font-size: 0.45em; font-weight: 500; margin-left: 4px; opacity: 0.7; }
#hp_page .cost_card_bar { height: 4px; background: linear-gradient(90deg, var(--brown), var(--gold)); border-radius: 999px; margin-bottom: 24px; }
#hp_page .cost_card_list li { font-size: 13px; line-height: 1.8; padding: 6px 0 6px 18px; position: relative; opacity: 0.85; }
#hp_page .cost_card_list li::before { content: '✓'; position: absolute; left: 0; color: var(--brown); font-weight: 700; }
#hp_page .cost_card_hl .cost_card_list li::before { color: var(--gold); }
#hp_page .cost_card_list li.cost_minus { opacity: 0.55; }
#hp_page .cost_card_list li.cost_minus::before { content: '×'; color: rgba(220,80,80,0.7); }
#hp_page .cost_note { max-width: 1000px; margin: 0 auto; padding: 24px 32px; background: rgba(157,100,62,0.06); border-radius: 8px; font-size: 13px; line-height: 1.9; color: rgba(14,12,10,0.7); border-left: 4px solid var(--brown); }

/* ============================================================
   ⑫ PRICING
   ============================================================ */
#hp_page .hp_price { position: relative; padding: 160px 6vw; background: var(--paper); overflow: hidden; }
#hp_page .plans_wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto 24px; }
#hp_page .plan_card {
  position: relative;
  padding: 50px 36px 40px;
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: 14px;
  box-shadow: 0 8px 25px -10px rgba(14,12,10,0.1);
  transition: all 0.3s ease;
}
#hp_page .plan_card.featured { background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; transform: scale(1.05); border-color: var(--gold); box-shadow: 0 30px 60px -15px rgba(212,166,97,0.3); }
#hp_page .plan_card:hover { transform: translateY(-6px); border-color: var(--brown); }
#hp_page .plan_card.featured:hover { transform: scale(1.05) translateY(-6px); }
#hp_page .plan_rec {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(212,166,97,0.5);
}
#hp_page .plan_name { font-size: 26px; font-weight: 800; margin-bottom: 6px; letter-spacing: 0.02em; font-family: 'Lato', sans-serif; }
#hp_page .plan_card.featured .plan_name { color: var(--gold); }
#hp_page .plan_target { font-size: 13px; color: rgba(14,12,10,0.6); margin-bottom: 24px; }
#hp_page .plan_card.featured .plan_target { color: rgba(255,255,255,0.6); }
#hp_page .plan_price { font-size: clamp(30px, 4vw, 46px); font-weight: 800; font-family: 'Lato', sans-serif; letter-spacing: -0.02em; line-height: 1; }
#hp_page .plan_price small { font-size: 0.4em; margin-left: 4px; opacity: 0.7; font-weight: 500; }
#hp_page .plan_price_note { font-size: 12px; color: rgba(14,12,10,0.5); margin-top: 8px; margin-bottom: 24px; }
#hp_page .plan_card.featured .plan_price_note { color: rgba(255,255,255,0.5); }
#hp_page .plan_hr { height: 1px; background: var(--line-l); margin: 24px 0; }
#hp_page .plan_card.featured .plan_hr { background: rgba(255,255,255,0.1); }
#hp_page .plan_feats { margin-bottom: 28px; }
#hp_page .plan_feats li { font-size: 14px; line-height: 1.8; padding: 8px 0 8px 22px; position: relative; }
#hp_page .plan_feats li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--brown); font-weight: 700; }
#hp_page .plan_card.featured .plan_feats li::before { color: var(--gold); }
#hp_page .plan_btn {
  display: block; text-align: center; padding: 16px;
  background: var(--brown); color: #fff; text-decoration: none;
  border-radius: 6px; font-size: 14px; font-weight: 600; letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
#hp_page .plan_btn:hover { background: var(--brown-3); transform: translateY(-2px); }
#hp_page .plan_card.featured .plan_btn { background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%); }
#hp_page .pricing_note { text-align: center; font-size: 13px; color: rgba(14,12,10,0.5); margin-top: 20px; }

/* ============================================================
   ⑬ COMPARISON
   ============================================================ */
#hp_page .hp_compare { position: relative; padding: 160px 6vw; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; overflow: hidden; }
#hp_page .hp_compare::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212,166,97,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(157,100,62,0.08) 0%, transparent 50%);
}
#hp_page .compare_tbl { width: 100%; max-width: 1100px; margin: 60px auto 0; border-collapse: collapse; background: rgba(255,255,255,0.02); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border-radius: 12px; overflow: hidden; }
#hp_page .compare_tbl th, #hp_page .compare_tbl td { padding: 22px 28px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; vertical-align: middle; }
#hp_page .compare_tbl th { font-size: 13px; letter-spacing: 0.15em; font-weight: 600; color: rgba(255,255,255,0.5); background: rgba(0,0,0,0.2); padding: 18px 28px; }
#hp_page .compare_tbl tr:last-child td { border-bottom: none; }
#hp_page .compare_tbl td.hl { background: linear-gradient(90deg, rgba(212,166,97,0.08) 0%, transparent 100%); color: var(--gold); font-weight: 600; border-left: 3px solid var(--gold); }
#hp_page .compare_tbl th.hl { background: linear-gradient(90deg, rgba(212,166,97,0.15) 0%, rgba(212,166,97,0.05) 100%); color: var(--gold); border-left: 3px solid var(--gold); font-weight: 700; }
#hp_page .compare_tbl tr:hover td { background: rgba(255,255,255,0.03); }
#hp_page .compare_tbl tr:hover td.hl { background: linear-gradient(90deg, rgba(212,166,97,0.15) 0%, transparent 100%); }

/* ============================================================
   ⑭ AFTER SUPPORT
   ============================================================ */
#hp_page .hp_support { position: relative; padding: 160px 6vw; background: var(--paper); overflow: hidden; }
#hp_page .support_cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; }
#hp_page .support_card {
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: 12px;
  box-shadow: 0 8px 25px -10px rgba(14,12,10,0.1);
}
#hp_page .support_head { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
#hp_page .support_icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#hp_page .support_icon svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 2; fill: none; }
#hp_page .support_title { font-size: 20px; font-weight: 700; line-height: 1.3; }
#hp_page .support_title span { display: block; font-size: 10px; letter-spacing: 0.3em; color: var(--brown); font-weight: 600; margin-bottom: 4px; font-family: 'Lato', sans-serif; }
#hp_page .support_bene { margin-bottom: 24px; padding: 20px; background: rgba(157,100,62,0.05); border-radius: 8px; }
#hp_page .support_bene li { font-size: 13px; line-height: 1.8; padding: 4px 0 4px 22px; position: relative; }
#hp_page .support_bene li::before { content: '○'; position: absolute; left: 0; color: var(--brown); }
#hp_page .support_tbl { width: 100%; border-collapse: collapse; }
#hp_page .support_tbl td { font-size: 13px; padding: 12px 0; border-bottom: 1px dashed var(--line-l); }
#hp_page .support_tbl td:last-child { text-align: right; font-weight: 700; color: var(--brown); font-family: 'Lato', sans-serif; }
#hp_page .monthly_row { display: grid; grid-template-columns: auto auto 1fr; gap: 20px; align-items: start; padding: 18px 0; border-bottom: 1px dashed var(--line-l); }
#hp_page .monthly_row:last-child { border-bottom: none; }
#hp_page .monthly_name { font-weight: 700; font-size: 14px; min-width: 80px; }
#hp_page .monthly_price { font-weight: 700; color: var(--brown); font-family: 'Lato', sans-serif; font-size: 15px; min-width: 90px; }
#hp_page .monthly_feats { font-size: 12px; line-height: 1.7; color: rgba(14,12,10,0.65); }
#hp_page .monthly_note { font-size: 12px; color: rgba(14,12,10,0.5); margin-top: 16px; line-height: 1.7; }

/* ============================================================
   ⑮ CASES
   ============================================================ */
#hp_page .hp_cases { position: relative; padding: 160px 6vw; background: var(--paper-2); overflow: hidden; }
#hp_page .cases_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1200px; margin: 0 auto 40px; }
#hp_page .case_card {
  padding: 40px 36px;
  background: #fff;
  border-radius: 12px;
  border-left: 5px solid var(--brown);
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
}
#hp_page .case_card:hover { transform: translateY(-6px); border-left-color: var(--gold); box-shadow: 0 30px 60px -20px rgba(157,100,62,0.2); }
#hp_page .case_tag { font-size: 11px; letter-spacing: 0.15em; color: var(--brown); font-weight: 600; margin-bottom: 14px; }
#hp_page .case_title { font-size: 20px; font-weight: 800; margin-bottom: 24px; line-height: 1.5; letter-spacing: -0.01em; }
#hp_page .case_blk { padding: 16px 0; border-top: 1px solid var(--line-l); }
#hp_page .case_blk_lbl { font-size: 11px; letter-spacing: 0.2em; color: var(--brown); font-weight: 600; margin-bottom: 8px; }
#hp_page .case_blk_txt { font-size: 13px; line-height: 1.85; color: rgba(14,12,10,0.7); }
#hp_page .case_results { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
#hp_page .case_result { font-size: 13px; line-height: 1.7; color: rgba(14,12,10,0.85); padding: 8px 14px; background: rgba(212,166,97,0.08); border-radius: 6px; }
#hp_page .case_result strong { color: var(--brown); font-weight: 800; }
#hp_page .case_link { display: inline-block; margin-top: 18px; font-size: 13px; color: var(--brown); text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
#hp_page .case_link:hover { color: var(--gold); transform: translateX(4px); }
#hp_page .cases_more { text-align: center; margin-top: 50px; }

/* ============================================================
   ⑯ CHECKLIST
   ============================================================ */
#hp_page .hp_checklist { position: relative; padding: 160px 6vw; background: var(--paper); overflow: hidden; }
#hp_page .checklist_grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
#hp_page .checklist_item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--line-l);
  transition: all 0.3s ease;
}
#hp_page .checklist_item:hover { background: linear-gradient(135deg, #fff 0%, #fdf8ed 100%); border-color: var(--brown); transform: translateX(6px); }
#hp_page .checklist_num {
  flex-shrink: 0; width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; font-family: 'Lato', sans-serif;
}
#hp_page .checklist_text { font-size: 14px; line-height: 1.7; color: var(--ink); padding-top: 7px; }
#hp_page .checklist_cta {
  margin-top: 60px; padding: 40px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff; border-radius: 12px; text-align: center;
  position: relative; overflow: hidden;
}
#hp_page .checklist_cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212,166,97,0.15) 0%, transparent 50%);
}
#hp_page .checklist_cta p { font-size: 15px; line-height: 1.9; margin-bottom: 24px; position: relative; }
#hp_page .checklist_btn {
  display: inline-block; padding: 18px 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: #fff; text-decoration: none;
  border-radius: 4px; font-size: 14px; font-weight: 600; letter-spacing: 0.1em;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px -10px rgba(212,166,97,0.5);
}
#hp_page .checklist_btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(212,166,97,0.7); }

/* ============================================================
   ⑰ FAQ
   ============================================================ */
#hp_page .hp_faq { position: relative; padding: 160px 6vw; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); overflow: hidden; }
#hp_page .faq_grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; max-width: 1300px; margin: 0 auto; align-items: start; }
#hp_page .faq_list { display: flex; flex-direction: column; gap: 16px; }
#hp_page .faq_item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line-l);
  overflow: hidden;
  transition: all 0.3s ease;
}
#hp_page .faq_item:hover { border-color: var(--brown); box-shadow: 0 15px 40px -15px rgba(157,100,62,0.15); }
#hp_page .faq_q { display: flex; gap: 16px; padding: 20px 26px; cursor: pointer; align-items: center; background: linear-gradient(135deg, #fdf8ed 0%, #fff 100%); }
#hp_page .faq_q_mark { width: 28px; height: 28px; background: var(--brown); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Lato', sans-serif; flex-shrink: 0; font-size: 13px; }
#hp_page .faq_q_text { font-size: 15px; font-weight: 700; line-height: 1.5; }
#hp_page .faq_a { display: flex; gap: 16px; padding: 20px 26px; border-top: 1px solid var(--line-l); }
#hp_page .faq_a_mark { width: 28px; height: 28px; background: var(--paper-2); color: var(--brown); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Lato', sans-serif; flex-shrink: 0; font-size: 13px; }
#hp_page .faq_a_text { font-size: 14px; line-height: 1.9; color: rgba(14,12,10,0.75); }
#hp_page .faq_a_text a { color: var(--brown); font-weight: 600; }
#hp_page .faq_contact_img { margin-top: 30px; aspect-ratio: 4/3; background-image: url('/wp-content/themes/crevia/library/images/hp_faq.png'); background-size: cover; background-position: center; border-radius: 12px; box-shadow: var(--shadow-card); }

/* ============================================================
   ⑱ RELATED
   ============================================================ */
#hp_page .hp_related { position: relative; padding: 160px 6vw; background: var(--paper); overflow: hidden; }
#hp_page .related_cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1300px; margin: 0 auto; }
#hp_page .related_card {
  display: block; text-decoration: none; color: inherit;
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: 12px;
  transition: all 0.4s ease;
  text-align: center;
}
#hp_page .related_card:hover { transform: translateY(-8px); border-color: var(--brown); box-shadow: 0 30px 60px -20px rgba(157,100,62,0.2); }
#hp_page .related_icon { width: 56px; height: 56px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%); border-radius: 14px; transition: transform 0.4s ease; }
#hp_page .related_card:hover .related_icon { transform: rotate(-8deg) scale(1.05); }
#hp_page .related_icon svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2; fill: none; }
#hp_page .related_card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
#hp_page .related_card p { font-size: 12px; line-height: 1.7; color: rgba(14,12,10,0.6); }

/* ============================================================
   ⑲ FINAL CTA
   ============================================================ */
#hp_page .hp_cta { position: relative; padding: 180px 6vw; background: linear-gradient(135deg, #0e0c0a 0%, #1a1410 50%, #2a1f17 100%); color: #fff; overflow: hidden; }
#hp_page .hp_cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=2400&q=85&auto=format&fit=crop');
  background-size: cover; background-position: center;
  opacity: 0.12; filter: brightness(0.7);
}
#hp_page .hp_cta::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(157,100,62,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(212,166,97,0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(14,12,10,0.5) 0%, rgba(14,12,10,0.85) 100%);
}
#hp_page .cta_overlay { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
#hp_page .cta_label { font-size: 12px; letter-spacing: 0.5em; color: var(--gold); margin-bottom: 32px; font-weight: 600; }
#hp_page .cta_overlay h2 {
  font-size: clamp(28px, 5vw, 56px); line-height: 1.3;
  font-weight: 800; margin-bottom: 36px; letter-spacing: -0.02em;
  word-break: keep-all;
}
#hp_page .cta_copy { font-size: 18px; line-height: 1.95; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
#hp_page .cta_points { max-width: 700px; margin: 0 auto 40px; }
#hp_page .cta_points li {
  font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.75);
  padding: 14px 24px 14px 50px; position: relative;
  background: rgba(255,255,255,0.04); margin-bottom: 8px;
  border-radius: 6px; text-align: left;
}
#hp_page .cta_points li::before {
  content: '✓'; position: absolute; left: 22px; top: 14px;
  color: var(--gold); font-weight: 800; font-size: 16px;
}
#hp_page .cta_note { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 36px; line-height: 1.8; }
#hp_page .cta_btn {
  display: inline-block; padding: 26px 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: #fff; text-decoration: none;
  border-radius: 6px; font-size: 16px; font-weight: 700; letter-spacing: 0.08em;
  box-shadow: 0 20px 50px -15px rgba(212,166,97,0.6);
  transition: all 0.4s ease;
  position: relative;
}
#hp_page .cta_btn:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -15px rgba(212,166,97,0.8); }

/* ============================================================
   追従CTAボタン（既存仕様尊重）
   ============================================================ */
#hp_page .floating-cta {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 9998;
  opacity: 0; transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}
#hp_page .floating-cta.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
#hp_page .floating-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-2) 100%);
  color: #fff; text-decoration: none;
  border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
  box-shadow: 0 16px 40px -12px rgba(157,100,62,0.6);
  transition: all 0.3s ease;
}
#hp_page .floating-cta a:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -12px rgba(157,100,62,0.85); }
#hp_page .floating-cta-icon { width: 20px; height: 20px; display: inline-flex; }
#hp_page .floating-cta-icon svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2; fill: none; }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 900px) {
  #hp_page .hp_hero_inner { padding: 100px 6vw 60px; }
  #hp_page .hp_hero_kpi {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 50px auto 0;
    padding: 18px 12px;
    right: auto; bottom: auto;
    max-width: 560px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  #hp_page .hp_hero_kpi_item {
    text-align: center;
    padding: 2px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  #hp_page .hp_hero_kpi_item:last-child { border-right: none; }
  #hp_page .hp_hero_kpi_label {
    font-size: 12.5px;
    letter-spacing: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  #hp_page .hp_vision_inner,
  #hp_page .issues_grid,
  #hp_page .foryou_grid,
  #hp_page .feature_row,
  #hp_page .faq_grid { grid-template-columns: 1fr; gap: 60px; }
  #hp_page .feature_row.rev { direction: ltr; }
  #hp_page .hp_vision_text { padding-right: 0; }
  #hp_page .proof_compare,
  #hp_page .support_cards,
  #hp_page .cases_grid { grid-template-columns: 1fr; text-align: center;}
	#hp_page .proof_compare{text-align: center;}
	
  #hp_page .proof_growth { grid-template-columns: repeat(2, 1fr); }
  #hp_page .proof_growth_card:nth-child(2) { border-right: none; }
  #hp_page .proof_growth_card:nth-child(1),
  #hp_page .proof_growth_card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  #hp_page .local_cards,
  #hp_page .steps_grid,
  #hp_page .cost_cards,
  #hp_page .plans_wrap { grid-template-columns: 1fr; }
  #hp_page .step_card.wide { grid-column: span 1; grid-template-columns: 1fr; gap: 24px; text-align: center; }
  #hp_page .step_card.wide .step_icon { margin: 0 auto; }
  #hp_page .related_cards { grid-template-columns: repeat(2, 1fr); }
  #hp_page .checklist_grid { grid-template-columns: 1fr; }
  #hp_page .includes_grid { grid-template-columns: 1fr; }
  #hp_page .compare_tbl th,
  #hp_page .compare_tbl td { padding: 14px 16px; font-size: 13px; }
  #hp_page .plan_card.featured { transform: none; }
  #hp_page .plan_card.featured:hover { transform: translateY(-6px); }
  #hp_page .hp_hero,
  #hp_page .hp_vision,
  #hp_page .hp_proof,
  #hp_page .hp_issues,
  #hp_page .hp_foryou,
  #hp_page .hp_features,
  #hp_page .hp_local,
  #hp_page .hp_steps,
  #hp_page .hp_process,
  #hp_page .hp_includes,
  #hp_page .hp_cost,
  #hp_page .hp_price,
  #hp_page .hp_compare,
  #hp_page .hp_support,
  #hp_page .hp_cases,
  #hp_page .hp_checklist,
  #hp_page .hp_faq,
  #hp_page .hp_related,
  #hp_page .hp_cta { padding-top: 90px; padding-bottom: 90px; }
}

@media (max-width: 600px) {
  /* =========================================================
     FV 徹底スマホ最適化（横並び解除・強制<br>除去・KPI 3分割）
     ========================================================= */
  /* FV 全体：縦積み前提にリセット、二重 padding 解消 */
  #hp_page .hp_hero { min-height: auto; padding: 0; display: block;}
  #hp_page .hp_hero_inner { padding: 88px 18px 40px; max-width: 100%; }
  /* eyebrow 圧縮 */
  #hp_page .hp_hero_eyebrow {
    font-size: 10px; letter-spacing: 0.2em; padding: 6px 14px; margin-bottom: 22px;
  }
  /* h1：不自然改行を防ぐため word-break を normal に、サイズ調整 */
  #hp_page .hp_hero_h1 {
    font-size: clamp(34px, 11.5vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    word-break: normal;
    overflow-wrap: normal;
  }
  #hp_page .hp_hero_h1 .hp_h1_local { font-size: 14px; letter-spacing: 0.06em; margin-bottom: 14px; line-height: 1.55; }
  #hp_page .hp_hero_h1 .hp_h1_nine { font-size: 1.25em; }
  /* lead：強制 <br> を無効化して自然改行に、max-width を解放 */
  #hp_page .hp_hero_lead {
    margin-top: 28px;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.85;
  }
  #hp_page .hp_hero_lead br { display: none; }
  /* CTA：縦並び、幅フル */
  #hp_page .hp_hero_cta { margin-top: 32px; flex-direction: column; gap: 10px; }
  #hp_page .hp_hero_btn { padding: 16px 22px; font-size: 14px; width: 100%; justify-content: center; }
  /* KPI：絶対配置解除＋3分割グリッド（可読性優先） */
  #hp_page .hp_hero_kpi {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 16px 8px;
    margin: 0 16px 3rem;
    right: auto; bottom: auto;
    flex-wrap: nowrap;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  #hp_page .hp_hero_kpi_item {
    text-align: center;
    padding: 2px 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  #hp_page .hp_hero_kpi_item:last-child { border-right: none; }
  #hp_page .hp_hero_kpi_num {
    font-size: 22px;
    letter-spacing: -0.015em;
    line-height: 1.1;
  }
  #hp_page .hp_hero_kpi_num small {
    font-size: 11px;
    margin-left: 2px;
    color: rgba(255, 255, 255, 0.75);
  }
  #hp_page .hp_hero_kpi_label {
    font-size: 11.5px;
    letter-spacing: 0;
    margin-top: 7px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  /* スクロールインジケータはスマホでは非表示（邪魔） */
  #hp_page .hp_hero_scroll { display: none; }

  /* =========================================================
     全セクション共通：二重 padding 解消＋左右 18px 統一
     ========================================================= */
  #hp_page .sec_inner { padding-left: 0; padding-right: 0; }
  #hp_page .hp_vision,
  #hp_page .hp_proof,
  #hp_page .hp_issues,
  #hp_page .hp_foryou,
  #hp_page .hp_features,
  #hp_page .hp_local,
  #hp_page .hp_steps,
  #hp_page .hp_process,
  #hp_page .hp_includes,
  #hp_page .hp_cost,
  #hp_page .hp_price,
  #hp_page .hp_compare,
  #hp_page .hp_support,
  #hp_page .hp_cases,
  #hp_page .hp_checklist,
  #hp_page .hp_faq,
  #hp_page .hp_related,
  #hp_page .hp_cta { padding-left: 18px; padding-right: 18px; }
  #hp_page .hp_vision { padding-bottom: 90px; }
  #hp_page .sec_head { margin-bottom: 48px; }
  #hp_page .proof_card,
  #hp_page .step_card,
  #hp_page .plan_card,
  #hp_page .case_card,
  #hp_page .support_card { padding-left: 22px; padding-right: 22px; }
  /* feat_title：スマホで keep-all + 長い英字（ChatGPT・Gemini等）による右はみ出し対策 */
  #hp_page .feat_title {
    word-break: normal;
    overflow-wrap: break-word;
    padding-left: 0;
    padding-right: 0;
  }
  /* feat_text / feat_num もスマホで枠内に収める */
  #hp_page .feat_text {
    overflow-wrap: break-word;
    word-break: normal;
  }
  #hp_page .feat_num {
    /* 160px までの巨大数字は枠を押し広げる可能性があるので clamp の下限を更に絞る */
    font-size: clamp(64px, 18vw, 96px);
  }
  /* feat_img はスマホで横幅いっぱい・はみ出し禁止 */
  #hp_page .feat_img {
    max-width: 100%;
    width: 100%;
  }
  /* feature_row 全体としてスマホで横はみ出しを起こさない保険 */
  #hp_page .feature_row { max-width: 100%; overflow: hidden; }
  #hp_page .feature_row > * { max-width: 100%; min-width: 0; }
  #hp_page .proof_metrics { grid-template-columns: 1fr; gap: 20px; }
  #hp_page .floating-cta { right: 12px; bottom: 12px; }
  #hp_page .floating-cta a { padding: 14px 20px; font-size: 13px; }
  /* PROCESS セクション スマホ調整 */
  #hp_page .flow_wrap { padding-left: 32px; }
  #hp_page .flow_wrap::before { left: 9px; }
  #hp_page .flow_item { padding-left: 48px; padding-bottom: 38px; }
  #hp_page .flow_dot { width: 36px; height: 36px; border-width: 3px; left: -9px; }
  #hp_page .flow_dot svg { width: 15px; height: 15px; }
  #hp_page .flow_name { font-size: 18px; line-height: 1.45; margin-bottom: 10px; }
  #hp_page .flow_name span { letter-spacing: 0.15em; font-size: 10.5px; margin-bottom: 6px; }
  #hp_page .flow_desc { font-size: 13.5px; line-height: 1.85; }

  /* 大見出しの不自然改行防止（keep-all→normalで日本語自然改行に戻す） */
  #hp_page .sec_h2 { word-break: normal; overflow-wrap: normal; }

  /* 月額サポート：3列grid→1列へ（縦1文字折り返しバグ解消） */
  #hp_page .monthly_row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }
  #hp_page .monthly_name { min-width: 0; font-size: 15px; }
  #hp_page .monthly_price { min-width: 0; margin-bottom: 6px; }
  #hp_page .monthly_feats { font-size: 12.5px; line-height: 1.75; }

  /* 比較テーブル：さらに控えめな padding と font-size */
  #hp_page .compare_tbl th,
  #hp_page .compare_tbl td {
    padding: 10px 8px;
    font-size: 12px;
    line-height: 1.55;
  }
  #hp_page .compare_tbl th:first-child,
  #hp_page .compare_tbl td:first-child {
    padding-left: 12px;
    font-size: 11.5px;
  }
}

/* Reduced motion — すべてのアニメーション・トランジション停止 */
@media (prefers-reduced-motion: reduce) {
  #hp_page *,
  #hp_page *::before,
  #hp_page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
