/* =========================================================
   エイギョウブ for 不動産 — LP スタイル（赤テーマ / 画像依存なし）
   houmon-lp.css の構造を踏襲し、配色・装飾を再設計
   ========================================================= */

:root {
  --accent: #db2b39;       /* メインの赤（CTA・アクセント） */
  --accent-d: #b21d2a;     /* 濃い赤 */
  --accent-2: #7c1620;     /* 最も濃い赤（バナー・強調帯） */
  --ink: #16202c;          /* 見出し（濃紺） */
  --text: #2d2a28;         /* 本文 */
  --muted: #6f6a67;        /* 補助テキスト */
  --line: #ecd6d4;         /* 細い罫線（赤みのソフト） */
  --line-strong: #d98c87;  /* 強めの罫線 */
  --bg: #f7f4f3;           /* ページ背景 */
  --card: #ffffff;
  --white: #ffffff;
  --container: 1040px;
  --header-h: 64px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  margin: 0 auto;
  background: var(--bg);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

.section-title {
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.45;
  font-size: clamp(24px, 3.2vw, 34px);
}

.section-title .accent { color: var(--accent); }

.eyebrow {
  display: block;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--accent);
  margin: 0 0 10px;
  text-transform: uppercase;
}

/* ===================== Header ===================== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(20, 16, 17, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 36px);
}

.lp-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.lp-brand .b-main { font-size: clamp(17px, 2.4vw, 21px); }
.lp-brand .b-for {
  font-family: "Allison", cursive;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  color: #ffb3b3;
  line-height: 0;
}
.lp-brand .b-sub { font-size: clamp(17px, 2.4vw, 21px); color: var(--accent); }

.lp-nav {
  display: none;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.lp-nav a { opacity: 0.88; transition: opacity 0.2s; }
.lp-nav a:hover { opacity: 1; }

.lp-header-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(219, 43, 57, 0.4);
  transition: filter 0.2s, transform 0.2s;
}
.lp-header-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (min-width: 900px) {
  .lp-nav { display: flex; }
}

/* ===================== Hero ===================== */
.lp-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(255, 120, 120, 0.35) 0%, rgba(255, 120, 120, 0) 55%),
    linear-gradient(118deg, #c41e2a 0%, #9e1622 52%, #6f0f1a 100%);
  color: #fff;
}

/* 斜めの濃淡ウェッジで奥行き */
.lp-hero::before,
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lp-hero::before {
  background: linear-gradient(108deg, rgba(40, 6, 10, 0) 38%, rgba(40, 6, 10, 0.55) 78%, rgba(28, 4, 8, 0.85) 100%);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 12% 100%);
}
.lp-hero::after {
  background: repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.05) 0 2px, rgba(255, 255, 255, 0) 2px 26px);
  opacity: 0.5;
}

.lp-hero-stage {
  position: relative;
  z-index: 2;
  max-width: calc(var(--container) + 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  column-gap: clamp(16px, 3vw, 48px);
  padding: clamp(48px, 7vw, 84px) clamp(16px, 4vw, 32px) clamp(56px, 7vw, 88px);
}

.lp-hero-inner { max-width: 600px; min-width: 0; }

.lp-hero-eyebrow {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 22px;
}

.lp-hero-title {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 0;
  margin: 0 0 22px;
  line-height: 1;
}
.lp-hero-title .t-main {
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 58px);
  letter-spacing: -0.04em;
}
.lp-hero-title .t-for {
  font-family: "Allison", cursive;
  font-weight: 400;
  font-size: clamp(52px, 9vw, 104px);
  line-height: 0.7;
  color: #ffd4d4;
}
.lp-hero-title .t-sub {
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 58px);
  letter-spacing: -0.02em;
  color: #fff;
  position: relative;
}
.lp-hero-title .t-sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 6px;
  background: #fff;
  border-radius: 4px;
  opacity: 0.9;
}

.lp-hero-lead {
  font-weight: 600;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
}

.lp-hero-desc {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 30px;
  max-width: 520px;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.lp-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 240px;
  height: 62px;
  padding: 0 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  font-weight: 800;
  font-size: 19px;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34); }
.lp-hero-cta .arrow { font-size: 18px; }

.lp-hero-cta-sub {
  display: inline-flex;
  align-items: center;
  height: 62px;
  padding: 0 20px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  transition: background 0.2s;
}
.lp-hero-cta-sub:hover { background: rgba(255, 255, 255, 0.12); }

.lp-hero-art {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-hero-art svg { width: 100%; max-width: 460px; height: auto; filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35)); }

@media (max-width: 880px) {
  .lp-hero-stage { grid-template-columns: 1fr; row-gap: 28px; }
  .lp-hero-art { order: -1; max-width: 360px; margin: 0 auto; }
  .lp-hero::before { clip-path: polygon(0 60%, 100% 30%, 100% 100%, 0 100%); }
}

@media (max-width: 520px) {
  .lp-hero-title { column-gap: 8px; }
  .lp-hero-cta, .lp-hero-cta-sub { width: 100%; }
}

/* ===================== 対応領域チップ帯 ===================== */
.lp-domains {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.lp-domains-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
}
.lp-domains-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  margin-right: 6px;
}
.lp-domain-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff5f5;
  border: 1px solid var(--line-strong);
  color: var(--accent-d);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
}
.lp-domain-chip::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===================== Issues ===================== */
.lp-intro { padding: clamp(56px, 8vw, 80px) 0 clamp(40px, 6vw, 56px); }

.lp-intro-lead {
  text-align: center;
  font-weight: 500;
  color: var(--text);
  margin: 0 auto 44px;
  max-width: 800px;
}

.lp-intro-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.lp-intro-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 12px;
  padding: 30px 20px 26px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(124, 22, 32, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-intro-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(124, 22, 32, 0.12); }

.lp-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1f1;
  color: var(--accent);
}
.lp-icon svg { width: 34px; height: 34px; }

.lp-intro-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.lp-intro-card p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--text); }

@media (max-width: 940px) { .lp-intro-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lp-intro-cards { grid-template-columns: 1fr; } }

/* ===================== Banner ===================== */
.lp-banner-wrap { background: var(--bg); }
.lp-banner {
  position: relative;
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-weight: 700;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
  text-align: center;
  padding: clamp(36px, 6vw, 52px) 20px;
  overflow: hidden;
}
.lp-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(120deg, rgba(255,255,255,0.06) 0 2px, rgba(255,255,255,0) 2px 24px);
  pointer-events: none;
}
.lp-banner-polygon {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: clamp(120px, 26vw, 170px);
  height: clamp(28px, 6vw, 40px);
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.lp-banner-copy { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.lp-banner-copy p { margin: 0; }
.lp-banner-copy p + p { margin-top: 0.3em; }
.lp-banner-copy strong { color: #ffe08a; }

/* ===================== Design ===================== */
.lp-design { padding: clamp(56px, 8vw, 84px) 0; }
.lp-design-lead {
  text-align: center;
  font-weight: 500;
  margin: 0 auto 44px;
  max-width: 760px;
}
.lp-design-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: 1040px;
  margin: 0 auto;
}
.lp-dcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(124, 22, 32, 0.06);
}
.lp-dcard-top {
  position: relative;
  height: 132px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-d) 100%);
  color: #fff;
}
.lp-dcard-top svg { width: 56px; height: 56px; }
.lp-dcard-num {
  position: absolute;
  left: 16px; top: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}
.lp-dcard-body { padding: 24px 22px 28px; }
.lp-dcard h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}
.lp-dcard .sub { font-size: 13px; font-weight: 600; color: var(--accent); margin: 0 0 12px; }
.lp-dcard p { margin: 0; font-size: 14px; line-height: 1.8; color: var(--text); }

@media (max-width: 920px) { .lp-design-cards { grid-template-columns: 1fr; max-width: 460px; } }

/* ===================== Exec（ダーク） ===================== */
.lp-exec {
  position: relative;
  padding: clamp(56px, 8vw, 80px) 0;
  background:
    radial-gradient(120% 120% at 15% 0%, rgba(219, 43, 57, 0.35) 0%, rgba(219, 43, 57, 0) 50%),
    linear-gradient(160deg, #1a1213 0%, #241015 60%, #14090b 100%);
  color: #fff;
}
.lp-exec .section-title { color: #fff; }
.lp-exec .eyebrow { color: #ff9b9b; }
.lp-exec-lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 40px;
}
.lp-exec-lead p { margin: 0; }
.lp-exec-box {
  max-width: 1040px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 36px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.lp-exec-col {
  padding: 0 clamp(14px, 2.4vw, 28px);
  position: relative;
}
.lp-exec-col + .lp-exec-col::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.lp-exec-col .num {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #ff9b9b;
  letter-spacing: 0.1em;
}
.lp-exec-col h3 {
  margin: 4px 0 14px;
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 700;
  color: #fff;
}
.lp-exec-col p { margin: 0; font-size: 14px; line-height: 1.85; color: rgba(255, 255, 255, 0.86); }

@media (max-width: 768px) {
  .lp-exec-box { grid-template-columns: 1fr; gap: 24px; }
  .lp-exec-col { padding: 0 0 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .lp-exec-col + .lp-exec-col::before { display: none; }
  .lp-exec-col:last-child { padding-bottom: 0; border-bottom: 0; }
}

/* ===================== Cases（支援イメージ） ===================== */
.lp-cases { padding: clamp(56px, 8vw, 84px) 0; }
.lp-cases-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 0 auto 36px;
}
.lp-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.lp-case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(124, 22, 32, 0.06);
  display: flex;
  flex-direction: column;
}
.lp-case-banner {
  background: linear-gradient(120deg, var(--ink) 0%, #2c3a4d 100%);
  color: #fff;
  padding: 22px 24px;
}
.lp-case-banner .tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.lp-case-banner h3 { margin: 0; font-size: 18px; font-weight: 700; line-height: 1.5; }
.lp-case-body { padding: 22px 24px 26px; }
.lp-case-body > p { margin: 0 0 16px; font-size: 14px; line-height: 1.85; }
.lp-case-label {
  display: inline-block;
  background: #fff5f5;
  border: 1px solid var(--line-strong);
  color: var(--accent-d);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.lp-case-bullets { list-style: none; margin: 0; padding: 0; }
.lp-case-bullets li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 13.5px;
  line-height: 1.7;
  border-bottom: 1px dashed var(--line);
}
.lp-case-bullets li:last-child { border-bottom: 0; }
.lp-case-bullets li::before {
  content: "";
  position: absolute;
  left: 2px; top: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 820px) { .lp-case-grid { grid-template-columns: 1fr; } }

/* 実績フィーチャーカード */
.lp-case-feature {
  max-width: 1040px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 10px 30px rgba(124, 22, 32, 0.08);
}
.lp-case-feature-head { margin-bottom: 22px; }
.lp-case-feature-head .tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.lp-case-feature-head h3 {
  margin: 0;
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}
.lp-case-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lp-case-kpis .kpi { text-align: center; }
.lp-case-kpis .kpi strong {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: var(--accent);
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.lp-case-kpis .kpi strong small { font-size: 0.42em; font-weight: 700; margin-left: 2px; }
.lp-case-kpis .kpi-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 8px;
}
.lp-case-kpis .kpi + .kpi { border-left: 1px solid var(--line); }
.lp-case-text { margin: 0 0 20px; font-size: 15px; line-height: 1.9; color: var(--text); }
.lp-case-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-case-tags span {
  background: #fff5f5;
  border: 1px solid var(--line-strong);
  color: var(--accent-d);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
}
@media (max-width: 640px) {
  .lp-case-kpis { grid-template-columns: 1fr; gap: 0; }
  .lp-case-kpis .kpi { padding: 16px 0; }
  .lp-case-kpis .kpi + .kpi { border-left: 0; border-top: 1px solid var(--line); }
}

/* 実績ミニカード（2件並び） */
.lp-case-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 22px auto 0;
}
.lp-case-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px 28px;
  box-shadow: 0 6px 22px rgba(124, 22, 32, 0.06);
}
.lp-case-mini .tag {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.lp-case-mini h4 {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}
.lp-case-mini .mini-kpis {
  display: flex;
  gap: 28px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.lp-case-mini .mini-kpis span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.lp-case-mini .mini-kpis strong {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: var(--accent);
  font-size: 26px;
  line-height: 1.1;
}
.lp-case-mini .mini-kpis strong small { font-size: 0.5em; font-weight: 700; margin-left: 1px; }
.lp-case-mini p { margin: 0; font-size: 14px; line-height: 1.85; color: var(--text); }
@media (max-width: 820px) { .lp-case-mini-grid { grid-template-columns: 1fr; } }

/* ===================== Plans ===================== */
.lp-plans { padding: clamp(56px, 8vw, 84px) 0; background: #fbf3f2; }
.lp-plans-lead { text-align: center; margin: 0 auto 40px; max-width: 720px; font-weight: 500; }
.lp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.lp-plan { border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.lp-plan:last-child { border-right: 0; }
.lp-plan.recommend { box-shadow: inset 0 0 0 2px var(--accent); }
.lp-plan-head {
  height: 64px;
  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
}
.lp-plan.trial .lp-plan-head { background: #3c424b; }
.lp-plan.basic .lp-plan-head { background: var(--accent); }
.lp-plan.enterprise .lp-plan-head { background: var(--accent-2); }
.lp-plan-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: #ffd24d;
  color: #5a3a00;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}
.lp-plan-price {
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(18px, 2.4vw, 24px);
  margin: 20px 8px 4px;
}
.lp-plan-price small { display: block; font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 4px; }
.lp-plan-desc {
  text-align: center;
  padding: 0 22px;
  font-size: 13.5px;
  line-height: 1.6;
  min-height: 70px;
  margin: 8px 0 12px;
  color: var(--text);
}
.lp-plan ul { list-style: none; margin: 0; padding: 0 24px 24px; flex: 1; }
.lp-plan li {
  margin: 0;
  padding: 9px 0 9px 26px;
  font-size: 14px;
  position: relative;
  border-top: 1px solid var(--line);
}
.lp-plan li:first-child { border-top: 0; }
.lp-plan li.on { color: var(--ink); font-weight: 600; }
.lp-plan li.on::before {
  content: "✓";
  position: absolute; left: 2px; top: 9px;
  color: var(--accent);
  font-weight: 800;
}
.lp-plan li.off { color: #b3aeac; }
.lp-plan li.off::before {
  content: "—";
  position: absolute; left: 2px; top: 9px;
  color: #ccc6c4;
}

@media (max-width: 768px) {
  .lp-plan-grid { grid-template-columns: 1fr; }
  .lp-plan { border-right: 0; border-bottom: 1px solid var(--line); }
  .lp-plan:last-child { border-bottom: 0; }
}

/* ===================== Flow ===================== */
.lp-flow { padding: clamp(56px, 8vw, 84px) 0; }
.lp-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  max-width: 1040px;
  margin: 0 auto;
}
.lp-flow-step { border-right: 1px solid var(--line); }
.lp-flow-step:last-child { border-right: 0; }
.lp-flow-num {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-d) 100%);
  color: #fff;
  height: 72px;
  display: grid;
  place-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 30px;
}
.lp-flow-title {
  background: #fff5f5;
  color: var(--accent-d);
  min-height: 58px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 8px;
}
.lp-flow-copy { padding: 16px; font-size: 12.5px; line-height: 1.6; min-height: 132px; color: var(--text); }

@media (max-width: 1024px) {
  .lp-flow-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-flow-step:nth-child(3) { border-right: 0; }
  .lp-flow-step:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .lp-flow-copy { min-height: 0; }
}
@media (max-width: 560px) {
  .lp-flow-grid { grid-template-columns: 1fr; }
  .lp-flow-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .lp-flow-step:last-child { border-bottom: 0; }
}

/* ===================== Contact ===================== */
.lp-contact { background: linear-gradient(180deg, #efe7e6 0%, #efe7e6 100%); padding: clamp(64px, 9vw, 100px) 0; }
.lp-contact-lead { text-align: center; margin: 0 auto 40px; font-size: 16px; max-width: 640px; }
.lp-contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 12px 36px rgba(124, 22, 32, 0.08);
}
.lp-contact-form label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--ink); }
.lp-contact-form input,
.lp-contact-form select,
.lp-contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 22px;
  border: 1px solid #d8d2d0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-contact-form input:focus,
.lp-contact-form select:focus,
.lp-contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(219, 43, 57, 0.15);
}
.lp-contact-form textarea { min-height: 140px; resize: vertical; }
.lp-contact-consent { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 22px; }
.lp-contact-consent input { width: auto; margin: 4px 0 0; }
.lp-contact-consent label { font-weight: 500; font-size: 13px; margin: 0; color: var(--text); }
.lp-contact-consent a { color: var(--accent); text-decoration: underline; }
.lp-contact-form button {
  width: 100%;
  height: 70px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-d) 100%);
  color: #fff;
  border: 0;
  font-weight: 800;
  font-size: 19px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(219, 43, 57, 0.35);
  transition: transform 0.2s, filter 0.2s;
}
.lp-contact-form button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.lp-contact-form button:disabled { opacity: 0.6; cursor: default; transform: none; }
.lp-contact-status {
  margin: 0 0 18px;
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
}
.lp-contact-status.is-success { background: #edf9ee; border: 1px solid #cde9cf; color: #2f6e35; }
.lp-contact-status.is-error { background: #fff0f0; border: 1px solid #f2c3c3; color: #a03333; }
.req { color: var(--accent); font-size: 11px; font-weight: 700; margin-left: 4px; }
.opt { color: var(--muted); font-size: 11px; font-weight: 600; margin-left: 4px; }

/* ===================== Footer ===================== */
.lp-footer {
  background: #14100f;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 40px 16px;
  font-size: 12px;
}
.lp-footer .f-brand { font-weight: 800; color: #fff; font-size: 16px; margin-bottom: 10px; letter-spacing: -0.02em; }
.lp-footer .f-links { margin: 0 0 16px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
.lp-footer .f-links a:hover { color: #fff; }
.lp-footer small { display: block; opacity: 0.7; }

/* ===================== Mobile sticky CTA ===================== */
.lp-mobile-sticky-cta { display: none; }
@media (max-width: 768px) {
  .page { padding-bottom: 84px; }
  .lp-mobile-sticky-cta {
    position: fixed;
    left: 12px; right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-d) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  }
}


/* ===================== ロゴ（ご支援企業・マーキー） ===================== */
.lp-logos { background: #fff; padding: 26px 0 28px; border-bottom: 1px solid var(--line); overflow: hidden; }
.lp-logos-title { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--muted); margin: 0 0 18px; }
.lp-logos-viewport {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}
.lp-logos-track { display: flex; width: max-content; animation: lp-logos-marquee 34s linear infinite; }
.lp-logos-track:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .lp-logos-track { animation: none; margin: 0 auto; } }
@keyframes lp-logos-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lp-logos-group { display: flex; flex-shrink: 0; align-items: center; gap: clamp(40px, 6vw, 76px); padding: 0 clamp(20px, 3vw, 38px); }
.lp-logo-item { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; height: 56px; width: clamp(112px, 15vw, 168px); }
.lp-logo-item img { max-height: 46px; max-width: 100%; width: auto; height: auto; object-fit: contain; opacity: 1; transition: transform .25s; }
.lp-logo-item img:hover { transform: scale(1.06); }
