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

:root {
  --accent: #2563eb;       /* メインの赤（CTA・アクセント） */
  --accent-d: #1d4ed8;     /* 濃い赤 */
  --accent-2: #1e40af;     /* 最も濃い赤（バナー・強調帯） */
  --ink: #0d1b34;          /* 見出し（濃紺） */
  --text: #2a2f3a;         /* 本文 */
  --muted: #6a7180;        /* 補助テキスト */
  --line: #d9e1f0;         /* 細い罫線（赤みのソフト） */
  --line-strong: #9fb6e0;  /* 強めの罫線 */
  --bg: #f5f7fb;           /* ページ背景 */
  --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(16, 42, 92, 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: #9fc0ff;
  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(43, 110, 255, 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 82% -10%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(122deg, #1f74ec 0%, #2f9fe0 52%, #19c6d6 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(10, 60, 150, 0) 40%, rgba(10, 60, 150, 0.28) 80%, rgba(8, 45, 120, 0.40) 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: #bcd3ff;
}
.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: #eef3fc;
  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(13, 27, 52, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-intro-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(13, 27, 52, 0.12); }

.lp-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf0fd;
  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(13, 27, 52, 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 12% 0%, rgba(150, 205, 255, 0.40) 0%, rgba(150, 205, 255, 0) 52%),
    linear-gradient(160deg, #1f63d6 0%, #1a4cb4 58%, #123f96 100%);
  color: #fff;
}
.lp-exec .section-title { color: #fff; }
.lp-exec .eyebrow { color: #d6e6ff; }
.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: #d6e6ff;
  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(13, 27, 52, 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: #eef3fc;
  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(13, 27, 52, 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: #eef3fc;
  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(13, 27, 52, 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: #eef2f9; }
.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: #eef3fc;
  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, #e7ecf5 0%, #e7ecf5 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(13, 27, 52, 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(43, 110, 255, 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(43, 110, 255, 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: #0a1424;
  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-lineup { padding: clamp(56px, 8vw, 84px) 0; background: #f5f7fb; }
.lp-lineup-lead { text-align: center; margin: 0 auto 40px; max-width: 760px; font-weight: 500; }
.lp-lineup-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 1040px; margin: 0 auto;
}
.lp-lineup-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 6px 22px rgba(13, 27, 52, 0.06);
  transition: transform .2s, box-shadow .2s;
}
.lp-lineup-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(13, 27, 52, 0.15); }
.lp-lineup-card .top { padding: 22px 24px; color: #fff; }
.lp-lineup-card .cat { font-size: 11px; font-weight: 700; letter-spacing: .08em; opacity: .9; }
.lp-lineup-card .top h3 { margin: 6px 0 0; font-size: 20px; font-weight: 700; line-height: 1.4; }
.lp-lineup-card .body { padding: 20px 24px 22px; display: flex; flex-direction: column; flex: 1; }
.lp-lineup-card .body p { margin: 0 0 18px; font-size: 14px; line-height: 1.85; color: var(--text); flex: 1; }
.lp-lineup-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 14px; color: var(--accent);
  transition: gap .2s;
}
.lp-lineup-card:hover .lp-lineup-more { gap: 11px; }
@media (max-width: 760px) { .lp-lineup-grid { grid-template-columns: 1fr; } }

/* 実行メニュー 4列バリアント */
.lp-exec-box--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .lp-exec-box--4 { grid-template-columns: repeat(2, 1fr); } .lp-exec-box--4 .lp-exec-col + .lp-exec-col::before { display: none; } }
@media (max-width: 920px) and (min-width: 769px) { .lp-exec-box--4 .lp-exec-col { border-bottom: 1px solid rgba(255,255,255,0.16); padding-bottom: 22px; margin-bottom: 4px; } }


/* ===================== 顧客事例ロゴ（2行マーキー） ===================== */
.lp-logos { background: #fff; padding: 30px 0 34px; 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 20px; }
.lp-logos-row + .lp-logos-row { margin-top: 14px; }
.lp-logos-viewport { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); }
.lp-logos-track { display: flex; width: max-content; animation: lp-logos-marquee 50s linear infinite; }
.lp-logos-track.rev { animation-direction: reverse; animation-duration: 56s; }
@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(34px, 5vw, 60px); padding: 0 clamp(17px, 2.5vw, 30px); }
.lp-logo-item { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; height: 50px; width: clamp(100px, 13vw, 146px); }
.lp-logo-item img { max-height: 42px; max-width: 100%; width: auto; height: auto; object-fit: contain; opacity: 0.95; }

/* ===================== 実績スタッツ ===================== */
.lp-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 0 auto 38px; }
.lp-stat { text-align: center; }
.lp-stat strong { display: block; font-family: "Roboto", sans-serif; font-weight: 600; color: var(--accent); font-size: clamp(30px, 4.2vw, 44px); line-height: 1.05; }
.lp-stat strong small { font-size: 0.4em; font-weight: 700; margin-left: 2px; }
.lp-stat span { display: block; font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 8px; }
@media (max-width: 600px) { .lp-stat-row { grid-template-columns: 1fr; gap: 18px; } }

/* ===================== 実行メニュー 6カード ===================== */
.lp-exec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1040px; margin: 0 auto; }
.lp-exec-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.26); border-radius: 14px; padding: 24px 22px; }
.lp-exec-card .num { font-family: "Roboto", sans-serif; font-weight: 600; font-size: 12px; color: #d6e6ff; letter-spacing: 0.1em; }
.lp-exec-card h3 { margin: 6px 0 10px; font-size: 18px; font-weight: 700; color: #fff; }
.lp-exec-card p { margin: 0; font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.85); }
@media (max-width: 900px) { .lp-exec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lp-exec-grid { grid-template-columns: 1fr; } }

/* ===================== 流れ 4列 ===================== */
.lp-flow-grid--4 { grid-template-columns: repeat(4, 1fr); }
.lp-flow-grid--4 .lp-flow-copy { min-height: 120px; }
@media (max-width: 760px) { .lp-flow-grid--4 { grid-template-columns: repeat(2, 1fr); } .lp-flow-grid--4 .lp-flow-step:nth-child(2){ border-right:0; } }
@media (max-width: 460px) { .lp-flow-grid--4 { grid-template-columns: 1fr; } }

/* ===================== 代表メッセージ ===================== */
.lp-message { padding: clamp(56px, 8vw, 84px) 0; background: #fff; }
.lp-message-box { max-width: 900px; margin: 0 auto; background: linear-gradient(135deg, var(--ink) 0%, #1f3a66 100%); color: #fff; border-radius: 18px; padding: clamp(32px, 5vw, 56px); box-shadow: 0 14px 36px rgba(13,27,52,0.18); }
.lp-message-box .eyebrow { color: #9fc0ff; text-align: left; }
.lp-message-box h2 { margin: 0 0 20px; font-size: clamp(20px, 2.6vw, 28px); font-weight: 700; line-height: 1.5; }
.lp-message-box p { margin: 0 0 14px; font-size: 15px; line-height: 2; color: rgba(255,255,255,0.92); }
.lp-message-sign { margin-top: 24px !important; font-size: 14px; }
.lp-message-sign b { font-size: 19px; font-weight: 700; }

/* ===================== 会社概要 ===================== */
.lp-company { padding: clamp(56px, 8vw, 84px) 0; background: var(--bg); }
.lp-company-table { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.lp-company-table dl { margin: 0; display: grid; grid-template-columns: 190px 1fr; }
.lp-company-table dt { background: #eef2f9; color: var(--ink); font-weight: 700; font-size: 14px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.lp-company-table dd { margin: 0; padding: 16px 20px; font-size: 14px; line-height: 1.8; border-bottom: 1px solid var(--line); color: var(--text); }
.lp-company-table dl:last-child dt, .lp-company-table dl:last-child dd { border-bottom: 0; }
@media (max-width: 600px) { .lp-company-table dl { grid-template-columns: 1fr; } .lp-company-table dt { border-bottom: 0; padding: 14px 20px 4px; } }


/* ===================== ヒーロー刷新（キャッチー版） ===================== */
.lp-hero-brand { display: inline-block; font-weight: 800; font-size: 14px; letter-spacing: 0.04em; color: #fff; margin-bottom: 16px; border-left: 3px solid #fff; padding-left: 10px; }
.lp-hero-title2 { margin: 0 0 18px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.16; font-size: clamp(30px, 4.6vw, 52px); color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,0.16); }
.lp-hero-title2 .line { display: block; white-space: nowrap; }
.lp-hero-title2 em { font-style: normal; color: #ffe14d; }
.lp-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.lp-hero-badges span { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.4); color: #fff; font-weight: 700; font-size: 13px; padding: 8px 15px; border-radius: 999px; backdrop-filter: blur(4px); }
.lp-hero-badges span::before { content: "✓"; font-weight: 800; color: #ffe14d; }
@media (max-width: 880px) { .lp-hero-title2 { font-size: clamp(26px, 7vw, 40px); } }


/* ヒーロー成果ビジュアル（青系・FVと統一） */
.lp-hero-art::before { content: ""; position: absolute; z-index: 1; right: 0; top: 8px; width: clamp(240px, 32vw, 360px); height: clamp(240px, 32vw, 360px); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 70%); pointer-events: none; }
.lp-hero-viz { position: relative; z-index: 2; width: 100%; max-width: 460px; }
.lp-hero-viz-card { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 50px rgba(0,0,0,0.25)); }
.lp-hero-chip { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: 13px; padding: 9px 14px; border-radius: 12px; box-shadow: 0 12px 26px rgba(0,0,0,0.20); white-space: nowrap; }
.lp-hero-chip b { font-size: 18px; }
.lp-hero-chip.chip-a { top: 4px; right: -6px; background: #ffd83a; color: #3a2e00; }
.lp-hero-chip.chip-b { bottom: 22px; left: -10px; background: #fff; color: var(--ink); }
.lp-hero-chip.chip-b b { color: var(--accent); }
@media (max-width: 880px) { .lp-hero-art { justify-content: center; } .lp-hero-viz { max-width: 380px; margin: 0 auto; } }
@media (max-width: 420px) { .lp-hero-chip { font-size: 11px; padding: 7px 11px; } .lp-hero-chip b { font-size: 15px; } }


/* ===================== 特徴(FEATURE) ===================== */
.lp-features { padding: clamp(56px, 8vw, 84px) 0; background: #fff; }
.lp-features-lead { text-align: center; margin: 0 auto 44px; max-width: 780px; font-weight: 500; }
.lp-feature-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 980px; margin: 0 auto; }
.lp-feature-card { display: flex; gap: 18px; background: #f5f7fb; border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px; }
.lp-feature-card .lp-icon { flex: 0 0 auto; margin: 0; width: 60px; height: 60px; }
.lp-feature-card .lp-icon svg { width: 30px; height: 30px; }
.lp-feature-num { font-family: "Roboto", sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.1em; color: var(--accent); }
.lp-feature-card h3 { margin: 4px 0 8px; font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.lp-feature-card p { margin: 0; font-size: 14px; line-height: 1.85; color: var(--text); }
@media (max-width: 760px) { .lp-feature-grid { grid-template-columns: 1fr; } .lp-feature-card { padding: 24px 20px; } }


/* ===================== ABOUT（コンセプト） ===================== */
.lp-about { padding: clamp(56px, 8vw, 84px) 0; background: #fff; }
.lp-about-lead { text-align: center; max-width: 840px; margin: 0 auto 46px; font-weight: 500; }
.lp-about-flow { display: flex; align-items: center; justify-content: center; gap: clamp(8px, 2vw, 26px); flex-wrap: wrap; }
.lp-about-node { width: clamp(124px, 16vw, 176px); height: clamp(124px, 16vw, 176px); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; text-align: center; font-weight: 700; font-size: clamp(15px, 1.7vw, 19px); color: var(--ink); background: linear-gradient(135deg, #eaf2ff 0%, #f4f9ff 100%); border: 2px solid var(--accent); box-shadow: 0 12px 28px rgba(37,99,235,0.14); line-height: 1.3; }
.lp-about-ic { color: var(--accent); margin-bottom: 4px; }
.lp-about-ic svg { width: clamp(32px, 4vw, 40px); height: clamp(32px, 4vw, 40px); display: block; }
.lp-about-node .n { display: block; font-family: "Roboto", sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 6px; }
.lp-about-arrow { color: var(--accent); font-size: 30px; font-weight: 800; }
@media (max-width: 560px) { .lp-about-flow { flex-direction: column; } .lp-about-arrow { transform: rotate(90deg); } }


/* ===================== 事例カード（5件） ===================== */
.lp-case2-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1040px; margin: 0 auto; }
.lp-case2 { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; box-shadow: 0 6px 22px rgba(13,27,52,0.06); }
.lp-case2-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.lp-case2-head h3 { margin: 0; font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.lp-case2-badge { flex: 0 0 auto; font-size: 11px; font-weight: 700; color: var(--accent); background: #eef3fc; border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 11px; white-space: nowrap; }
.lp-case2-badge.ref { color: var(--muted); background: #f1f2f5; border-color: #dcdfe6; }
.lp-case2-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.lp-case2-meta span { font-size: 12px; color: var(--muted); background: #f5f7fb; border: 1px solid var(--line); border-radius: 6px; padding: 4px 10px; }
.lp-case2-meta b { color: var(--ink); font-weight: 700; }
.lp-case2 > p { margin: 0 0 16px; font-size: 14px; line-height: 1.85; color: var(--text); }
.lp-case2-kpis { display: flex; gap: 22px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.lp-case2-kpis span { display: flex; flex-direction: column; font-size: 11px; color: var(--muted); font-weight: 600; }
.lp-case2-kpis strong { font-family: "Roboto", sans-serif; font-weight: 600; color: var(--accent); font-size: 22px; line-height: 1.2; }
@media (max-width: 820px) { .lp-case2-grid { grid-template-columns: 1fr; } }


/* ===================== CTAバンド（人物写真＋青オーバーレイ） ===================== */
.lp-cta-band { position: relative; padding: clamp(64px, 9vw, 108px) 0; background: url("images/cta-people.jpg") center/cover no-repeat; overflow: hidden; }
.lp-cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(13,27,52,0.88) 0%, rgba(30,64,175,0.82) 55%, rgba(37,99,235,0.76) 100%); }
.lp-cta-band-inner { position: relative; z-index: 1; text-align: center; color: #fff; }
.lp-cta-band h2 { margin: 0 0 16px; font-size: clamp(22px, 3.2vw, 34px); font-weight: 800; line-height: 1.5; color: #fff; }
.lp-cta-band p { margin: 0 0 28px; font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.95); }
.lp-cta-band-btn { display: inline-flex; align-items: center; gap: 10px; height: 64px; padding: 0 36px; background: #fff; color: var(--accent); font-weight: 800; font-size: 19px; border-radius: 8px; box-shadow: 0 14px 32px rgba(0,0,0,0.30); transition: transform .2s, box-shadow .2s; }
.lp-cta-band-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(0,0,0,0.36); }


/* 特徴カードの写真 */
.lp-feature-card { align-items: center; }
.lp-feature-photo { flex: 0 0 auto; width: 210px; height: 150px; border-radius: 12px; object-fit: cover; }
@media (max-width: 760px) { .lp-feature-card { align-items: stretch; } .lp-feature-photo { width: 100%; height: 190px; } }


/* ヒーロー人物写真（白枠カードで表示） */
.lp-hero-photo { position: relative; z-index: 2; width: 100%; max-width: 380px; margin: 0; border-radius: 18px; overflow: hidden; border: 4px solid rgba(255,255,255,0.9); box-shadow: 0 22px 50px rgba(0,0,0,0.30); }
.lp-hero-photo img { display: block; width: 100%; height: auto; }
@media (max-width: 880px) { .lp-hero-photo { max-width: 300px; } }

/* 総合LPヒーロー：チーム写真をviz枠いっぱいに（人感）。データチップは写真上に重ねる */
.lp-hero-viz .lp-hero-photo { max-width: none; width: 100%; aspect-ratio: 16 / 11; }
.lp-hero-viz .lp-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) { .lp-hero-viz .lp-hero-photo { max-width: 420px; margin: 0 auto; } }
