/* ========== SPIRAL 総合LP スタイル ========== */
:root {
  --bg: #ffffff;
  --bg-tint: #f5f7fb;
  --bg-tint-2: #eef2f9;
  --navy: #0b2447;
  --navy-2: #19376d;
  --navy-3: #576cbc;
  --blue-soft: #e8eef7;
  --blue-line: #cfd9ec;
  --orange: #ff6a1a;
  --orange-hover: #e85d10;
  --orange-tint: #fff2e9;
  --red: #c8394d;
  --text: #0b2447;
  --text-sub: #5a6478;
  --text-mute: #8892a6;
  --border: #dfe4ee;
  --border-soft: #edf0f6;
  --shadow-card: 0 1px 2px rgba(15, 26, 46, .04), 0 8px 24px rgba(15, 26, 46, .06);
  --shadow-soft: 0 1px 2px rgba(15, 26, 46, .05);
  --radius-btn: 6px;
  --radius-card: 6px;
  --font-jp: "Noto Sans JP", "BIZ UDPGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--bg);
  font-weight: 500;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .inner {
  max-width: 1200px; margin: 0 auto; padding: 0 16px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header .logo { height: 36px; }
.site-header nav {
  display: flex; gap: 28px; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--text);
}
.site-header nav a:not(.head-cta) { color: var(--navy); transition: color .15s; }
.site-header nav a:not(.head-cta):hover { color: var(--text-sub); }
.site-header .head-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--radius-btn); font-size: 16px; font-weight: 700;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 54px; padding: 0 28px;
  border-radius: var(--radius-btn);
  font-weight: 700; font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 2px 0 rgba(180, 60, 0, .18);
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-secondary {
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

/* Small tag button (section-internal CTA) */
.link-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  background: #fff;
  transition: all .15s;
}
.link-btn:hover { background: var(--navy); color: #fff; }

/* ========== Section basics ========== */
section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-tint); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy .section-lead { color: rgba(255,255,255,.75); }

.eyebrow {
  display: inline-block;
  font-size: 16px; font-weight: 700; letter-spacing: .1em;
  color: var(--orange);
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 20px;
}
.eyebrow::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px; background: var(--orange);
}
.section-title {
  font-size: 34px; font-weight: 800; line-height: 1.4;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: .01em;
}
p.marquee-caption {
  font-size: 34px; font-weight: 800; line-height: 1.4;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: .01em;
}
p.marquee-caption span {
	color: var(--orange);
}
.section-navy .section-title { color: #fff; }
.section-lead {
  font-size: 16px; line-height: 1.9; color: var(--text-sub);
  margin: 0 0 48px;
}
.section-head { margin-bottom: 56px; }
.section-head.centered { text-align: center; }
.section-head.centered .eyebrow::after { left: 50%; transform: translateX(-50%); }
.section-head.centered .section-lead { margin-left: auto; margin-right: auto; }

/* ========== Section 1: FV ========== */
.hero { padding: 0; background: linear-gradient(180deg, #fbfcfe 0%, #f3f6fb 100%); overflow: hidden;
	position: relative;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  max-width: 100%; margin: 0 auto; padding: 0;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.hero-badges .badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
  background: #fff; border: 1px solid var(--blue-line);
  color: var(--navy);
}
.hero-badges .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero h1 {
  font-size: 44px; font-weight: 800; line-height: 1.35;
  color: var(--navy);
  margin: 0 0 24px;
  letter-spacing: .005em;
}
.hero h1 .hl { color: var(--orange); }
.hero-sub {
  font-size: 16px; line-height: 1.95; color: var(--text-sub);
  margin: 0 0 32px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-cta .btn-primary { font-size: 18px; }
.hero-cta .btn-secondary { font-size: 18px; }
.hero-usecases {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  font-size: 13px; color: var(--text-sub); font-weight: 600;
  padding-top: 24px; border-top: 1px dashed var(--border);
}
.hero-usecases span { display: inline-flex; align-items: center; gap: 6px; }
.hero-usecases span::before { content: ""; width: 4px; height: 4px; background: var(--navy); border-radius: 50%; }

.hero-visual { position: relative; height: 520px; }
.hero-visual .mock-main {
  position: absolute; top: 0; right: 0; width: 92%; height: 380px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(11, 36, 71, .22), 0 8px 16px rgba(11, 36, 71, .08);
  overflow: hidden;
  border: 1px solid #e5eaf3;
}
.hero-visual .mock-sub-1 {
  position: absolute; bottom: 0; left: 0; width: 60%; height: 180px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 20px 40px -12px rgba(11, 36, 71, .18);
  overflow: hidden;
  border: 1px solid #e5eaf3;
}
.hero-visual .mock-sub-2 {
  position: absolute; bottom: 40px; right: -20px; width: 44%; height: 150px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 20px 40px -12px rgba(11, 36, 71, .18);
  overflow: hidden;
  border: 1px solid #e5eaf3;
}

/* Hero mock inside */
.mock-header {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-bottom: 1px solid var(--border-soft);
  font-size: 11px; color: var(--text-mute); font-weight: 600;
}
.mock-header .dots { display: flex; gap: 4px; margin-right: 8px; }
.mock-header .dots i { width: 8px; height: 8px; border-radius: 50%; background: #e0e5ee; display: inline-block; }
.mock-body { padding: 16px 18px; }
.mock-title {
  font-size: 12px; font-weight: 700; color: var(--navy);
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.mock-title .pill { font-size: 9px; padding: 2px 6px; background: var(--orange-tint); color: var(--orange); border-radius: 4px; font-weight: 700; }
.mock-field {
  height: 30px; background: #f4f6fb; border-radius: 6px;
  margin-bottom: 8px; display: flex; align-items: center; padding: 0 10px;
  font-size: 10px; color: var(--text-mute);
  border: 1px solid #eaeef6;
}
.mock-field.filled { background: #fff; border: 1px solid var(--navy); color: var(--text); }
.mock-label { font-size: 9px; color: var(--text-mute); margin-bottom: 4px; font-weight: 700; }
.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.mock-cta {
  height: 28px; background: var(--orange); color: #fff;
  border-radius: 5px; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 12px;
}

/* Sub-mock 1: approval flow */
.flow-diagram { padding: 14px; display: flex; align-items: center; gap: 6px; }
.flow-node {
  flex: 1; height: 42px; border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700;
  background: var(--blue-soft); color: var(--navy);
  border: 1px solid var(--blue-line);
}
.flow-node.done { background: var(--navy); color: #fff; border-color: var(--navy); }
.flow-node.now { background: var(--orange-tint); color: var(--orange); border-color: var(--orange); }
.flow-arrow { color: var(--text-mute); font-size: 12px; }

/* Sub-mock 2: dashboard */
.dash-metric { padding: 12px 14px; }
.dash-num { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.dash-label { font-size: 9px; color: var(--text-mute); font-weight: 600; }
.dash-bar { display: flex; gap: 3px; align-items: flex-end; height: 30px; margin-top: 10px; }
.dash-bar i { flex: 1; background: var(--navy-3); border-radius: 2px; opacity: .55; }
.dash-bar i:nth-child(1) { height: 40%; }
.dash-bar i:nth-child(2) { height: 55%; }
.dash-bar i:nth-child(3) { height: 35%; }
.dash-bar i:nth-child(4) { height: 70%; }
.dash-bar i:nth-child(5) { height: 60%; }
.dash-bar i:nth-child(6) { height: 85%; opacity: 1; background: var(--orange); }
.dash-bar i:nth-child(7) { height: 75%; opacity: 1; background: var(--orange); }

/* ========== Section: 用途分岐チップ（FV直下、ヒートマップ対策） ========== */
.usecase-strip {
  background: #fff;
  padding: 20px 0 20px 0;
  z-index: 2;
  position: relative;
}
.usecase-strip .inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.usecase-strip .lbl { font-size: 12px; font-weight: 700; color: var(--text-mute); letter-spacing: .08em; }
.usecase-strip .chips { display: flex; gap: 8px; flex-wrap: wrap; }
.usecase-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 13px; font-weight: 600; color: var(--navy);
  transition: all .15s; cursor: pointer;
}
.usecase-chip:hover { border-color: var(--navy); background: var(--blue-soft); }
.usecase-chip .arr { color: var(--orange); font-weight: 700; }

/* ========== Section 2: 共感課題 ========== */
section#issues {
}
section#issues .container {
  position: relative;
  z-index: 2;
}
.issue-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
}
.issue-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-btn);
  padding: 24px 28px;
  display: block;
  align-items: flex-start;
  gap: 16px;
  min-height: 92px;
  transition: box-shadow .2s, transform .15s;
  align-items: center;
  text-align: center;
}
.issue-icon {
  flex-shrink: 0;
  width: 80px; height: auto; border-radius: 0px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin: 0 auto 8px;
}
.issue-icon.w100 {
  width: 100px;
  margin-top: -10px;
  margin-bottom: -2px;
}
.issue-text { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.65; padding-top: 0px; }

/* ========== Section 3: 活用シーン ========== */
.usecase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.usecase-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 340px;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .15s, border-color .15s;
}
/*
.usecase-card:hover {
  box-shadow: var(--shadow-card); transform: translateY(-3px);
  border-color: var(--blue-line);
}
*/

/* --- USE CASE カード内グラフィック --- */
.uc-graphic {
  position: relative;
  height: 12.8vw;
  background: #f3f6fc;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
/*
.uc-graphic::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(11,36,71,.08) 1px, transparent 1.2px);
  background-size: 12px 12px;
  opacity: .5;
}
*/
.uc-graphic .uc-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 10px; font-weight: 700; color: var(--navy);
  letter-spacing: .04em;
  z-index: 2;
}
.uc-graphic .uc-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  z-index: 1;
}

/* Graphic: 申請フォーム（ミニフォームUI） */
.g-form {
  width: 100%; background: #fff;
  border-radius: 8px;
  padding: 0px;
}
.g-form .g-form-title {
  font-size: 10px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.g-form .g-form-title::before { content: ""; width: 4px; height: 10px; background: var(--orange); border-radius: 2px; }
.g-form .g-row { display: flex; gap: 5px; margin-bottom: 5px; }
.g-form .g-in {
  flex: 1; height: 14px; background: #f4f6fb;
  border-radius: 3px; border: 1px solid #e8ecf3;
}
.g-form .g-in.filled { background: var(--navy); opacity: .08; border-color: var(--navy); }
.g-form .g-btn {
  height: 14px; background: var(--orange); border-radius: 3px;
  margin-top: 4px; width: 40%;
}

/* Graphic: 承認フォーム（フロー図） */
.g-flow {
  display: flex; align-items: center; gap: 6px;
  width: 85%;
}
.g-flow .g-node {
  flex: 1; height: 38px; border-radius: 6px;
  background: #fff; border: 1.5px solid var(--blue-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--navy);
  box-shadow: 0 2px 6px rgba(11, 36, 71, .06);
}
.g-flow .g-node.done { background: var(--navy); color: #fff; border-color: var(--navy); }
.g-flow .g-node.now {
  background: var(--orange); color: #fff; border-color: var(--orange);
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(255, 106, 26, .3);
}
.g-flow .g-arr {
  color: var(--text-mute); font-size: 12px; font-weight: 700;
}

/* Graphic: 問い合わせ（チャット風） */
.g-chat {
  width: 82%; display: flex; flex-direction: column; gap: 6px;
}
.g-chat .g-msg {
  padding: 6px 10px;
  background: #fff;
  border-radius: 8px;
  font-size: 9px; font-weight: 600; color: var(--navy);
  box-shadow: 0 2px 6px rgba(11, 36, 71, .06);
  max-width: 75%;
  border: 1px solid var(--border-soft);
}
.g-chat .g-msg.me {
  align-self: flex-end;
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.g-chat .g-msg .g-dot {
  display: inline-block; width: 6px; height: 6px;
  background: #4ade80; border-radius: 50%; margin-right: 4px;
}

/* Graphic: 会員登録（プロフィールカード） */
.g-member {
  width: 75%; background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(11, 36, 71, .12);
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
}
.g-member .g-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 12px;
}
.g-member .g-info { flex: 1; }
.g-member .g-line {
  height: 6px; background: #eaeef6; border-radius: 2px; margin-bottom: 4px;
}
.g-member .g-line.short { width: 60%; background: var(--navy); opacity: .15; }
.g-member .g-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}

/* Graphic: セミナー申込（カレンダー） */
.g-cal {
  width: 78%; background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(11, 36, 71, .12);
  padding: 10px;
}
.g-cal .g-cal-head {
  font-size: 9px; font-weight: 700; color: var(--navy);
  padding-bottom: 6px; border-bottom: 1px solid var(--border-soft);
  margin-bottom: 6px;
  display: flex; justify-content: space-between; align-items: center;
}
.g-cal .g-cal-head .g-pill {
  padding: 1px 6px; background: var(--orange-tint); color: var(--orange);
  border-radius: 3px; font-size: 8px;
}
.g-cal .g-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.g-cal .g-cal-grid i {
  aspect-ratio: 1; background: #f4f6fb; border-radius: 2px; display: block;
}
.g-cal .g-cal-grid i.on { background: var(--navy); opacity: .8; }
.g-cal .g-cal-grid i.today { background: var(--orange); position: relative; }

/* Graphic: 資料請求（ダウンロードリスト） */
.g-download {
  width: 80%; background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(11, 36, 71, .12);
  padding: 10px 12px;
}
.g-download .g-dl-row {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-soft);
}
.g-download .g-dl-row:last-child { border-bottom: none; }
.g-download .g-dl-ico {
  width: 20px; height: 20px; border-radius: 4px;
  background: var(--blue-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 10px; font-weight: 800;
}
.g-download .g-dl-line {
  flex: 1; height: 6px; background: #eaeef6; border-radius: 2px;
}
.g-download .g-dl-line.short { width: 60%; }
.g-download .g-dl-arr {
  color: var(--orange); font-weight: 800; font-size: 12px;
}

/* Body of usecase card */
.usecase-card .uc-body {
  padding: 18px 24px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.usecase-card h3 {
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin: 0 0 12px;
  border-bottom: solid 3px var(--border-soft);
}
.usecase-card p {
  font-size: 14px; line-height: 1.85; color: var(--text-sub); margin: 0 0 8px;
  flex-grow: 1;
}
.usecase-card .tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.usecase-card .tag {
  font-size: 11px; font-weight: 600; color: var(--navy);
  background: var(--blue-soft); padding: 3px 8px; border-radius: 4px;
}
.usecase-inner-cta {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 40px;
}

/* ========== Section 4: 選ばれる理由 ========== */
.reason-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.reason-card {
  padding: 32px 28px 80px;
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  position: relative;
}
.reason-card.idea01 {
  background-image: url(../assets/img/idea_01.png);
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: right bottom;
}
.reason-card.idea02 {
  background-image: url(../assets/img/idea_02.png);
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: right bottom;
}
.reason-card.idea03 {
  background-image: url(../assets/img/idea_03.png);
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: right bottom;
}
.reason-num {
  display: none;
  font-size: 16px; font-weight: 800; color: var(--orange);
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.reason-card h3 {
  font-size: 20px; font-weight: 800; color: var(--navy);
  margin: 0 0 14px; line-height: 1.5;
}
.reason-card p {
  font-size: 14px; line-height: 1.9; color: var(--text-sub); margin: 0;
}
@media (max-width: 768px) {
  .reason-card {
    padding-bottom: 40px;
  }
  .reason-card.idea01 {
    background-size: 50% auto;
    background-position: right top;
  }
  .reason-card.idea02 {
    background-size: 50% auto;
    background-position: right top;
  }
  .reason-card.idea03 {
    background-size: 50% auto;
    background-position: right top;
  }
}

/* ========== Section 5: できること ========== */
.can-do-wrap {
  display: grid; grid-template-columns: 45% 55%; gap: 48px; align-items: start;
}
.can-do-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.feature-card {
  padding: 20px 20px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  display: flex; gap: 12px; align-items: flex-start;
  align-items: center;
}
.feature-card .f-icon {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--blue-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.feature-card .f-txt { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.6; }

@media (max-width: 768px) {
  .feature-card {
    padding: 12px;
  }
  .feature-card .f-txt { font-size: 14px; }
}

/* ========== Section 6: 活用イメージ / ミニ事例（Before → After 構成）========== */
.mini-cases { display: flex; flex-direction: column; gap: 20px; }
.mini-case {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 24px;
}
.mini-case .mini-inner-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
/* Left: タイトルカラム */
.mc-lead {
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px dashed var(--border);
  padding-right: 24px;
}
.mc-num {
  display: inline-block;
  font-family: "Inter", var(--font-jp);
  font-size: 14px; color: var(--orange); font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.mc-title {
  font-size: 20px; font-weight: 800; color: var(--navy);
  line-height: 1.5;
}

/* Middle: Before（課題） */
.mc-before {
  padding: 0 24px 0 16px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.mc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px; font-weight: 800;
  align-self: flex-start;
  margin-bottom: 4px;
}
.mc-badge.before {
  background: #eef2f9; color: var(--navy);
}
.mc-badge.after {
  background: var(--orange-tint); color: var(--orange);
}
.mc-issues {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.mc-issues li {
  padding-left: 1em; text-indent: -1em;
  font-size: 14px; line-height: 1.65; color: var(--text-sub);
  position: relative;
}
.mc-issues li::before {
  content: "・";
}

/* Right: After（解決） */
.mc-after {
  padding: 0 0 0 24px;
  display: flex; flex-direction: column;
  position: relative;
}
.mc-arrow {
  position: absolute;
  left: -12px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  z-index: 2;
}
.mc-result {
  font-size: 14px; line-height: 1.65; color: var(--text);
  margin: 0;
  padding-bottom: 8px;
}
.mc-metric {
  display: flex; gap: 32px;
  padding-top: 12px; margin-top: auto;
  border-top: 1px dashed #ffc79a;
  align-items: baseline;
}
.mc-metric .m-num {
  font-family: "Inter", var(--font-jp);
  font-size: 28px; font-weight: 800; color: var(--orange);
  line-height: 1;
}
.mc-metric .m-num .m-unit { font-size: 16px; font-weight: 800; margin-left: 2px; }
.mc-metric .m-label {
  font-size: 14px; color: var(--text-sub); font-weight: 600;
}

/* 関連事例リンク（mc-leadの下） */
.mc-related {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 32px auto 0;
}
.mc-related:hover {
  background: #FFF; color: var(--navy); border-color: var(--navy);
}
.mc-related:hover .mc-related-arr { color: var(--navy); }
.mc-related .mc-related-doc {
  display: inline-flex; align-items: center; gap: 6px;
}
.mc-related .mc-related-arr {
  color: #fff; font-weight: 800; font-size: 13px;
  transition: transform .15s;
}
.mc-related:hover .mc-related-arr { transform: translateX(2px); }

@media (max-width: 768px) {
  .mini-case .mini-inner-top {
    grid-template-columns: 1fr;
  }
  .mc-before {
    padding: 16px 0;
  }
}

/* ========== 事例モーダル ========== */
.caseAccordion {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}
.caseAccordion.active {
  grid-template-rows: 1fr;
}
.caseAccordionInner {
  overflow: hidden;
}

/* ヘッダー：企業ビジュアル */
.cm-header {
  position: relative;
  margin-top: 40px;
  padding: 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  overflow: hidden;
  min-height: 120px;
}
.cm-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 280px at 90% 20%, rgba(255,106,26,.28), transparent 60%),
    radial-gradient(400px 220px at 10% 100%, rgba(87,108,188,.35), transparent 60%);
  pointer-events: none;
}
.cm-header-inner { position: relative; z-index: 1; display: flex; gap: 24px; align-items: center; }
.cm-company-visual {
  width: 60px; height: 60px;
  border-radius: var(--radius-card);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  overflow: hidden;
  position: relative;
}
.cm-company-visual .cv-mono {
  font-family: "Inter", var(--font-jp);
  font-size: 24px; font-weight: 800; color: var(--navy);
  line-height: 1;
}
.cm-company-visual .cv-mono { position: relative; z-index: 1; }

.cm-company-meta {
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.cm-industry {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  color: var(--orange);
  text-transform: uppercase;
}
.cm-company-name {
  font-size: 22px; font-weight: 800; color: #fff;
  margin: 0; line-height: 1.4;
}
.cm-company-tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px;
}
.cm-company-tags span {
  padding: 3px 10px; border-radius: var(--radius-btn);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  font-size: 14px; font-weight: 600;
}

/* ボディ */
.cm-body {
  padding: 32px 40px 40px;
  overflow-y: auto;
  flex: 1;
}
.cm-section {
  margin-bottom: 28px;
}
.cm-section:last-child { margin-bottom: 0; }
.cm-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 800; letter-spacing: .01em;
  color: var(--navy);
  padding: 4px 10px; border-radius: var(--radius-card);
  background: var(--blue-soft);
  margin-bottom: 14px;
}
.cm-section-label.solution { background: var(--orange-tint); color: var(--orange); }
.cm-section-label.lowcode { background: #eaf5ee; color: #1f8a5b; }

.cm-section h4 {
  font-size: 18px; font-weight: 800; color: var(--navy);
  margin: 0 0 10px; line-height: 1.5;
}
.cm-section p {
  font-size: 14px; line-height: 1.9; color: var(--text-sub); margin: 0 0 8px;
}
.cm-list { list-style: none; padding: 0; margin: 0; }
.cm-list li {
  padding-left: 1em; text-indent: -1em;
  font-size: 14px; line-height: 1.85; color: var(--text-sub);
  position: relative;
  margin-bottom: 6px;
}
.cm-list li::before {
  content: "・";
}

.cm-highlight {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding: 20px;
  background: var(--bg-tint);
  border-radius: var(--radius-card);
  margin-top: 12px;
}
.cm-highlight .h-item { text-align: center; }
.cm-highlight .h-num {
  font-family: "Inter", var(--font-jp);
  font-size: 36px; font-weight: 800; color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.cm-highlight .h-num .h-unit { font-size: 16px; margin-left: 2px; }
.cm-highlight .h-label {
  font-size: 14px; color: var(--text-sub); font-weight: 600;
}

.cm-footer {
  padding: 20px 40px;
  border-top: 1px solid var(--border-soft);
  background: #fafbfd;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cm-footer .cm-note {
  font-size: 12px; color: var(--text-mute);
}

/* SP調整 */
body[data-view="sp"] .cm-header { padding: 24px 20px; }
body[data-view="sp"] .cm-header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
body[data-view="sp"] .cm-company-visual { margin: auto; }
body[data-view="sp"] .cm-company-visual .cv-mono { font-size: 28px; }
body[data-view="sp"] .cm-company-name { font-size: 18px; }
body[data-view="sp"] .cm-body { padding: 24px 0; }
body[data-view="sp"] .cm-highlight { grid-template-columns: 1fr; gap: 24px }

/* ========== Section 7: 信頼・安全性 ========== */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.trust-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: left;
}
.trust-num {
  font-family: "Inter", var(--font-jp);
  font-size: 40px; font-weight: 800; color: var(--orange);
  line-height: 1.1;
  margin-bottom: 6px;
  white-space: nowrap;
}
.trust-num .unit { font-size: 18px; font-weight: 700; margin-left: 4px; }
.trust-label { font-size: 14px; color: #fff; font-weight: 600; margin-bottom: 4px; }
.trust-note { font-size: 14px; color: #fff; }
.trust-badges {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px;
}
.trust-badge {
  padding: 8px 14px; border-radius: var(--radius-card);
  background: rgba(255,255,255,.08); color: #fff;
  font-size: 14px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.14);
}

@media (max-width: 768px) {
  .trust-box {
    padding: 12px;
  }
  .trust-badges {
    gap: 8px; margin-top: 24px;
  }
  .trust-badge {
    padding: 4px 8px;
    font-size: 11px;
  }
}

/* ---- SPIRALが安全な理由 スライダー ---- */
.reasons-wrap {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.reasons-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.reasons-title {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: .01em;
  line-height: 1.4;
}
.reasons-desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.reasons-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.rs-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: .02em;
}
.rs-legend i {
  width: 10px; height: 10px; border-radius: 3px;
  display: inline-block;
}
.rs-legend-infra i { background: #7aa2ff; }
.rs-legend-func  i { background: var(--orange); }
.rs-legend-ops   i { background: #4ade80; }

/* スライダー本体 */
.reasons-slider {
  position: relative;
}
.rs-viewport {
  overflow: hidden;
  padding: 4px 0 8px;
  margin: 0 -8px;
}
.rs-track {
  display: flex;
  gap: 16px;
  padding: 0 8px;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
  touch-action: pan-y;
}
.rs-track.is-dragging {
  transition: none;
  cursor: grabbing;
}

/* カード（サムネイル型） */
.rs-card {
  flex: 0 0 auto;
  width: calc((100% - 48px) / 4); /* 4枚表示 */
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .25s, box-shadow .25s;
  user-select: none;
}
/* サムネイル領域 */
.rs-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}
.rs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  pointer-events: none; /* ドラッグ時のゴースト画像を防止 */
}

/* サムネイルにオーバーレイする番号バッジ */
.rs-num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  line-height: 36px;
  font-family: "Inter", var(--font-jp);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--navy-2);
  padding: 0;
  border-radius: 999px;
  letter-spacing: .04em;
  line-height: 1;
}

/* サムネイルにオーバーレイするカテゴリタグ */
.rs-cat {
  width: max-content;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  padding:  8px;
  border-radius: 4px;
  letter-spacing: .01em;
  white-space: nowrap;
  line-height: 1;
  background-color: var(--blue-soft);
}
.rs-card--infra .rs-cat { color: rgba(58, 104, 217, 1); background-color: var(--blue-soft); }
.rs-card--func  .rs-cat { color: rgba(232, 93, 16, 1); background-color: var(--orange-tint); }
.rs-card--ops   .rs-cat { color: rgba(21, 149, 72, 1); background-color: #eaf5ee; }

/* 本文エリア */
.rs-body-wrap {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.rs-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.5;
  letter-spacing: .01em;
}
.rs-body {
  font-size: 14px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.75;
  flex: 1;
}

/* ナビゲーション */
.rs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(15, 26, 46, .85);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.rs-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
}
.rs-nav:disabled {
  opacity: 0;
  cursor: not-allowed;
  pointer-events: none;
}
.rs-nav-prev { left: -22px; }
.rs-nav-next { right: -22px; }

/* ドット */
.rs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.rs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .2s;
}
.rs-dot:hover { background: rgba(255,255,255,.5); }
.rs-dot.is-active {
  background: var(--orange);
  width: 24px;
  border-radius: 999px;
}

/* Responsive
   ※ data-view（実機JS）/ 非data-view（JS未実行）どちらの状態でも効くよう、
      スコープを付けずカード幅を指定する。JSの computePerView と同じ 560/820/1100 で分岐。 */
@media (max-width: 1100px) {
  .rs-card { width: calc((100% - 32px) / 3); } /* 3枚 */
}
@media (max-width: 820px) {
  .rs-card { width: calc((100% - 16px) / 2); } /* 2枚 */
  .rs-nav-prev { left: -8px; }
  .rs-nav-next { right: -8px; }
}
@media (max-width: 560px) {
  .rs-card { width: 100%; } /* 1枚 */
  .reasons-head { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ---- 導入企業ロゴ 無限ループマーキー（画面幅フルブリード） ---- */
section#company {
	margin-top: -15vw;
	background: transparent;
}
.logo-marquee-wrap {
  /* section 直下に配置し、画面幅いっぱいに広げる（スクロールバー考慮で 100%） */
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
}
.logo-marquee-wrap > .container {
  /* キャプション・注記は読みやすい幅で中央寄せ */
  text-align: center;
}
.logo-marquee-caption {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  letter-spacing: .02em;
  text-align: center;
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  /* 左右エッジをフェードアウトさせて途切れ感をなくす */
  -webkit-mask-image: linear-gradient(to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%);
          mask-image: linear-gradient(to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%);
}
.logo-track {
  display: flex;
  width: max-content;
  /* 各セットの合計幅 = 20枚 * (160px + 16px gap) */
  animation: logo-scroll 60s linear infinite;
}
.logo-set {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  padding-right: 16px; /* セット間の間隔もgapに合わせる */
}
.logo-cell {
  flex: 0 0 auto;
  width: 160px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: #fff;
  color: var(--navy);
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  letter-spacing: .01em;
  /*
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
  */
  transition: transform .2s;
}
.logo-cell em {
  display: block;
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-sub);
  margin-top: 3px;
  letter-spacing: 0;
}
/*
.logo-cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}
*/

/* hover時は流れを一時停止 */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.closing_policy_content {
	background-color: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	box-sizing: border-box;
	color: var(--text-sub);
	font-size: 11px;
	font-weight: 500;
	height: 120px;
	line-height: 1.6;
	overflow-y: auto;
	padding: 12px 14px;
}
.closing_policy_content p {
	margin-top: 0;
}
.closing_policy_content a {
	text-decoration: underline;
}
/* アクセシビリティ: モーション軽減 */
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation-duration: 180s; }
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-marquee-note {
  margin: 20px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .01em;
  text-align: center;
}

@media (max-width: 900px) {
  .logo-cell {
    width: 140px;
    height: 64px;
    font-size: 12px;
  }
  .logo-track { animation-duration: 45s; }
}

/* ========== Section 8: 導入の進め方（タイムライン + インフォグラフィック）========== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; z-index: 2;
}
.step-card {
  background: transparent;
  padding: 24px;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background-color: #fff;
}
.step-card:hover .step-node { border-color: var(--orange); }
.step-card:hover h3 { color: var(--orange); }

/* ステップ間の矢印コネクタ（PC のみ） */
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  bottom: 0;
  margin: auto;
  width: 10px; height: 10px;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  transform: rotate(45deg);
}

.step-card .step-tag {
  display: inline-block;
  padding: 4px 8px;
  background: var(--blue-soft);
  color: var(--navy);
  border-radius: var(--radius-btn);
  font-size: 12px; font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.step-card h3 {
  display: flex;
  align-items: center;
  min-height: 54px;
  vertical-align: middle;
  font-size: 18px; font-weight: 800; color: var(--navy);
  margin: 8px 0 16px; line-height: 1.5;
}
.step-card p {
  text-align: left;
  font-size: 14px; color: var(--text-sub); line-height: 1.85; margin: 0 0 16px;
}

/* インフォグラフィック要素（各ステップ下の小メトリック） */
.step-meta {
  padding: 4px 12px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-btn);
  font-size: 14px; color: var(--text-sub);
  display: flex; align-items: center; gap: 8px;
  font-weight: 600;
  margin-top: auto;
}
.step-meta strong {
  color: var(--navy);
  font-weight: 800;
  font-family: "Inter", var(--font-jp);
}

/* タイムライン下部の総所要時間ゲージ */
.steps-summary {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  margin-top: 48px;
}
.steps-summary .ss-item {
  display: flex; flex-direction: column; gap: 6px;
  padding-right: 32px;
  border-right: 1px solid var(--border-soft);
}
.steps-summary .ss-item:last-child { border-right: none; padding-right: 0; }
.steps-summary .ss-label {
  font-size: 14px; color: var(--orange); font-weight: 700; letter-spacing: .08em;
}
.steps-summary .ss-value {
  font-size: 20px; font-weight: 800; color: var(--navy);
  font-family: "Inter", var(--font-jp);
}
.steps-summary .ss-value .ss-unit {
  font-size: 16px; font-weight: 700; margin: 0 4px;
  color: var(--text-sub);
  font-family: var(--font-jp);
}
.steps-summary .ss-desc {
  font-size: 14px; color: var(--text-sub); line-height: 1.7;
}

@media (max-width: 768px) {
  .step-card h3 {
    min-height: 0;
  }
}

/* ========== Section 9: FAQ ========== */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.faq-item summary {
  padding: 24px;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q-mark {
  color: var(--orange); font-weight: 800; font-size: 16px;
  font-family: "Inter", var(--font-jp);
}
.faq-item .caret {
  margin-left: auto;
  width: 20px; height: 20px;
  transition: transform .2s;
  color: var(--text);
}
.faq-item[open] .caret { transform: rotate(180deg); }
.faq-item .a-body {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0 24px 24px 24px;
  font-size: 16px; line-height: 1.9; color: var(--text);
}
.faq-item .a-body::before {
  content: "A.";
  font-weight: 800; font-size: 16px;
  color: var(--orange);
  font-family: "Inter", var(--font-jp);
}

/* ========== Section 9-2: チームメンバー ========== */
.team-section { background: var(--bg); }
.team-panel {
  /* background: var(--bg-tint); */
  border-radius: var(--radius-card);
  padding: 56px 48px 60px;
}
.team-panel .section-head { margin-bottom: 40px; }
.team-panel .section-title { margin-bottom: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  display: flex;
  flex-direction: column;
}
.team-photo {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-body { display: flex; flex-direction: column; }
.team-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .02em;
  line-height: 1.5;
  margin: 0;
}
.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: .04em;
  margin: 4px 0 0;
}
.team-text {
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-sub);
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* ========== Section 10: セカンドビジュアルエリア ========== */
.second-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071931 0%, var(--navy) 45%, var(--navy-2) 100%);
  color: #fff;
  padding: 120px 0 130px;
}

/* 背景装飾レイヤー（グロー光のみ） */
.sv-bg { position: absolute; inset: 0; pointer-events: none; }
.sv-glow { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.sv-glow-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,106,26,.4), transparent 70%);
  top: -120px; right: -80px;
}
.sv-glow-2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(87,108,188,.5), transparent 70%);
  bottom: -160px; left: -120px;
}
.sv-glow-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,106,26,.22), transparent 70%);
  top: 40%; left: 45%;
}

/* コンテナ */
.sv-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* ---- 左：コピー ---- */
.sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255, 106, 26, .12);
  border: 1px solid rgba(255, 106, 26, .35);
  border-radius: var(--radius-card);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #ffb587;
  margin-bottom: 28px;
}
.sv-eyebrow-mark {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: sv-pulse 1.8s ease-in-out infinite;
}
@keyframes sv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.3); }
}

.sv-title {
  font-weight: 800;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sv-title-lead {
  font-size: 40px;
  line-height: 1.35;
  letter-spacing: .01em;
}
.sv-title-sub {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  letter-spacing: .01em;
}

.sv-lead {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,.72);
  margin: 0 0 32px;
}

/* 信頼指標チップ */
.sv-pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sv-pillars li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255, 106, 26, .35);
  border-radius: var(--radius-card);
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s, transform .2s;
}
.sv-pillar-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,106,26,.15);
  color: #ffb587;
  border: 1px solid rgba(255,106,26,.3);
  border-radius: var(--radius-card);
}
.sv-pillars li > div { display: flex; flex-direction: column; gap: 3px; }
.sv-pillar-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
}
.sv-pillar-desc {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

.sv-trust-line {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  letter-spacing: .01em;
}
.sv-trust-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(87, 108, 188, .3);
  color: #a3b8ff;
  font-size: 10px;
  font-weight: 800;
}
.sv-trust-sep {
  width: 1px; height: 12px; background: rgba(255,255,255,.2);
  margin: 0 2px;
}

/* ---- 右：問い合わせフォーム ---- */
.sv-form-wrap {
  position: relative;
}
.sv-form {
  position: relative;
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-card);
  padding: 36px 24px 32px;
  box-shadow:
    0 2px 4px rgba(0,0,0,.1),
    0 30px 60px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
}
.sv-form::before {
  /* オレンジのアクセントライン（トップ） */
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, #ffb066 50%, var(--orange) 100%);
}

.sv-form-head {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}
.sv-form-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--orange);
  margin-bottom: 8px;
}
.sv-form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: .01em;
}
.sv-form-desc {
  font-size: 14px;
  color: var(--text-sub);
  margin: 0;
}

.sv-form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sv-field { display: flex; flex-direction: column; gap: 6px; }
.sv-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sv-field-row.three {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sv-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sv-req {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--orange);
  padding: 4px 6px 5px;
  line-height: 1;
  border-radius: 4px;
}
.sv-input {
  padding: .5em 1em;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.sv-input:hover { border-color: var(--blue-line); }
.sv-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, .12);
}
.sv-input::placeholder { color: var(--text-mute); }

.sv-field textarea {
	min-height: 100px;
	padding: 14px;
  resize: vertical;
}

.sv-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5 6 6.5l5-5' stroke='%235a6478' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.sv-agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 4px;
  cursor: pointer;
  user-select: none;
}
.sv-agree input[type="checkbox"] {
  width: 16px; height: 16px;
  margin: 0;
  accent-color: var(--orange-hover);
  cursor: pointer;
  flex-shrink: 0;
}
.sv-agree span {
  font-size: 14px;
  color: var(--navy);
}
.sv-agree-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sv-submit {
  width: 100%;
  height: 52px;
  font-size: 15px;
  margin-top: 8px;
}

.sv-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-mute);
  margin: 6px 0 0;
  line-height: 1.5;
}
.sv-form-note svg {
  color: var(--text-sub);
  flex-shrink: 0;
}

/* 送信完了メッセージ */
.sv-form-thanks {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.sv-form-thanks.is-shown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sv-form-thanks-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-form-thanks-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}
.sv-form-thanks-desc {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
}

/* ---- 左下：会社概要 ---- */
.sv-company {
  position: relative;
  margin-top: 44px;
  padding: 28px 28px 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-card);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.sv-company-ghost {
  position: absolute;
  top: 6px; right: 14px;
  font-family: "Inter", var(--font-jp);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.12);
  pointer-events: none;
  user-select: none;
}
.sv-company-title {
  position: relative;
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
}
/*
.sv-company-title::after {
  content: "";
  display: block;
  width: 32px; height: 2px;
  margin-top: 10px;
  background: var(--orange);
  border-radius: 2px;
}
*/
.sv-company-list { margin: 0; }
.sv-company-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,.18);
}
.sv-company-row:first-child { border-top: 1px dashed rgba(255,255,255,.18); }
.sv-company-row dt {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1.8;
}
.sv-company-row dd {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}
.sv-company-sublist {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sv-company-sublist.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2px 18px;
}
.sv-company-note {
  color: rgba(255,255,255,.5);
  font-size: 12px;
  margin-left: 2px;
}

/* Responsive: SP / tablet */
@media (max-width: 960px) {
  body:not([data-view]) .team-panel { padding: 44px 28px 48px; }
  body:not([data-view]) .team-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  body:not([data-view]) .sv-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  /* 1カラム時はフォームを先に見せ、会社概要は最後に置く */
  body:not([data-view]) .sv-copy      { order: 1; }
  body:not([data-view]) .sv-form-wrap { order: 2; }
  body:not([data-view]) .sv-company   { order: 3; margin-top: 0; }
  body:not([data-view]) .sv-title-lead { font-size: 30px; }
  body:not([data-view]) .sv-title-sub { font-size: 16px; }
  body:not([data-view]) .sv-form { padding: 28px 24px 24px; }
  body:not([data-view]) .sv-field-row { grid-template-columns: 1fr; }
}

/* ========== Footer ========== */
.site-footer {
  background: #071931;
  color: rgba(255,255,255,.65);
  padding: 16px;
}
.site-footer .inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.site-footer .logo-wrap { text-align: center; }

/* ========== FV Tweaks: layout modes ========== */

body[data-fv="center"] .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 860px;
}
body[data-fv="center"] .hero-badges,
body[data-fv="center"] .hero-cta,
body[data-fv="center"] .hero-usecases { justify-content: center; }
body[data-fv="center"] .hero-sub { margin-left: auto; margin-right: auto; }
body[data-fv="center"] .hero-visual { display: none; }
.hero {
	height: 64vw;
	position: relative;
}
.hero-inner {
  position: absolute;
  bottom: 22vw;
  left: 8vw;
}
body[data-fv="fullbleed"] .hero { background: var(--bg-tint); color: #fff;
	background-image: url("../assets/img/mv_all_pc.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top -69px center;
  z-index: 1;
}
body[data-fv="fullbleed"] .hero h1 { color: #fff; }
body[data-fv="fullbleed"] .hero h1 .hl { color: var(--orange); }
body[data-fv="fullbleed"] .hero-sub { color: rgba(255,255,255,.8); }
body[data-fv="fullbleed"] .hero-badges .badge { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
body[data-fv="fullbleed"] .btn-secondary { background: var(--navy); color: #fff; border-color: var(--navy); }
body[data-fv="fullbleed"] .btn-secondary:hover { background: #fff; color: var(--navy); }
body[data-fv="fullbleed"] .hero-usecases { color: rgba(255,255,255,.7); border-top-color: rgba(255,255,255,.2); }
body[data-fv="fullbleed"] .hero-usecases span::before { background: var(--orange); }

/* ---- Hero (タブレット〜PC) ----
   PC用画像（コピー焼き込み）の下部余白にCTAを重ねるレイアウト。
   タブレット幅ではボタンが2行に折り返してコピー文と重なるため、
   1カラム化＋十分な幅＋折り返し禁止で常に1行に保ち、余白内へ収める。 */
@media (min-width: 769px) {
  body:not([data-view]) .hero-inner {
    grid-template-columns: 1fr;
    width: 84vw;
    max-width: 1160px;
  }
  body:not([data-view]) .hero-cta { flex-wrap: nowrap; }
}

.br-sp { display: none; }

/* ========== SP mode ========== */
body[data-view="sp"] { font-size: 14px; }
body[data-view="sp"] .container,
body[data-view="sp"] .hero-inner,
body[data-view="sp"] .site-header .inner,
body[data-view="sp"] .site-footer .inner,
body[data-view="sp"] .usecase-strip .inner,
body[data-view="sp"] .sv-inner { padding-left: 20px; padding-right: 20px; }
body[data-view="sp"] .site-header .inner { height: 56px; }
body[data-view="sp"] .site-header nav { display: none; }
body[data-view="sp"] section { padding: 56px 0; }
body[data-view="sp"] .hero { padding: 32px 0 56px; }
body[data-view="sp"] .hero-inner { grid-template-columns: 1fr; gap: 32px; }
body[data-view="sp"] .hero h1 { font-size: 26px; }
body[data-view="sp"] .hero-sub { font-size: 14px; }
body[data-view="sp"] .hero-cta { flex-direction: column; }
body[data-view="sp"] .btn { width: 100%; }
body[data-view="sp"] .hero-visual { height: 340px; }
body[data-view="sp"] .section-head { margin-bottom: 32px; }
body[data-view="sp"] .issue-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
body[data-view="sp"] .issue-card { padding: 16px; }
body[data-view="sp"] .issue-icon { width: 40px; }
body[data-view="sp"] .issue-icon.w100 { width: 60px; }
body[data-view="sp"] .issue-text { font-size: 13px; }
body[data-view="sp"] .usecase-grid { grid-template-columns: 1fr; }
body[data-view="sp"] .reason-grid { max-width: 400px; margin: 0 auto; grid-template-columns: 1fr; gap: 16px; }
body[data-view="sp"] .can-do-wrap { grid-template-columns: 1fr; gap: 28px; }
body[data-view="sp"] .can-do-features { grid-template-columns: 1fr; }
body[data-view="sp"] .mini-case { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
body[data-view="sp"] .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
body[data-view="sp"] .trust-num { font-size: 30px; }
body[data-view="sp"] .steps { grid-template-columns: 1fr; gap: 40px; }
body[data-view="sp"] .steps-timeline::before,
body[data-view="sp"] .steps-timeline::after { display: none; }
body[data-view="sp"] .step-card:not(:last-child)::after {
  top: auto; bottom: -30px; right: 50%;
  transform: translateX(50%) rotate(135deg);
}
body[data-view="sp"] .mini-case {
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 22px;
}
body[data-view="sp"] .mc-lead { border-right: none; border-bottom: 1px dashed var(--border); padding-right: 0; padding-bottom: 16px; }
body[data-view="sp"] .mc-arrow { display: none; }
body[data-view="sp"] .steps-summary { margin-top: 24px; grid-template-columns: 1fr; gap: 16px; padding: 16px; }
body[data-view="sp"] .steps-summary .ss-item { border-right: none; border-bottom: 1px solid var(--border-soft); padding-right: 0; padding-bottom: 20px; }
body[data-view="sp"] .steps-summary .ss-item:last-child { border-bottom: none; padding-bottom: 0; }
body[data-view="sp"] .team-panel { padding: 32px 20px 36px; }
body[data-view="sp"] .team-panel .section-head { margin-bottom: 28px; }
body[data-view="sp"] .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
body[data-view="sp"] .team-photo { margin-bottom: 12px; }
body[data-view="sp"] .team-name { font-size: 15px; }
body[data-view="sp"] .team-role { font-size: 11px; }
body[data-view="sp"] .team-text { font-size: 12px; line-height: 1.85; margin-top: 10px; padding-top: 10px; }
body[data-view="sp"] .second-visual { padding: 72px 0 80px; }
body[data-view="sp"] .sv-inner { grid-template-columns: 1fr; gap: 40px; }
body[data-view="sp"] .sv-title-lead { font-size: 26px; }
body[data-view="sp"] .sv-title-sub { font-size: 15px; }
body[data-view="sp"] .sv-lead { font-size: 14px; }
body[data-view="sp"] .sv-form { padding: 24px 20px 20px; }
body[data-view="sp"] .sv-field-row { grid-template-columns: 1fr; }
body[data-view="sp"] .sv-copy      { order: 1; }
body[data-view="sp"] .sv-form-wrap { order: 2; }
body[data-view="sp"] .sv-company   { order: 3; margin-top: 0; padding: 24px 20px 20px; }
body[data-view="sp"] .sv-company-ghost { font-size: 38px; top: 10px; right: 12px; }
body[data-view="sp"] .sv-company-title { font-size: 18px; margin-bottom: 18px; }
body[data-view="sp"] .sv-company-row { grid-template-columns: 1fr; gap: 4px; padding: 13px 0; }
body[data-view="sp"] .sv-company-row dt { font-size: 12px; }
body[data-view="sp"] .sv-company-row dd { font-size: 13px; }
body[data-view="sp"] .sv-company-sublist.cols { grid-template-columns: 1fr; }
body[data-view="sp"] .br-pc { display: none; }
body[data-view="sp"] .br-sp { display: block; }
body[data-view="sp"] .usecase-inner-cta { flex-direction: column; }
body[data-view="sp"] .usecase-inner-cta .link-btn { justify-content: center; width: 100%; }
body[data-view="sp"] .head-cta { padding: 6px 10px; font-size: 11px; }

/* Native responsive fallback */
@media (max-width: 900px) {
  body:not([data-view]) .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  body:not([data-view]) .hero h1 { font-size: 30px; }
  body:not([data-view]) .site-header nav { display: none; }
  body:not([data-view]) section { padding: 60px 0; }
  body:not([data-view]) .usecase-grid,
  body:not([data-view]) .reason-grid,
  body:not([data-view]) .can-do-features,
  body:not([data-view]) .trust-grid,
  body:not([data-view]) .steps { grid-template-columns: 1fr; gap: 40px; }
  body:not([data-view]) .steps-timeline::before,
  body:not([data-view]) .steps-timeline::after { display: none; }
  body:not([data-view]) .step-card:not(:last-child)::after { display: none; }
  body:not([data-view]) .can-do-wrap,
  body:not([data-view]) .mini-case { grid-template-columns: 1fr; }
  body:not([data-view]) .mc-lead { border-right: none; border-bottom: 1px dashed var(--border); padding-bottom: 16px; padding-right: 0; }
  body:not([data-view]) .mc-arrow { display: none; }
  body:not([data-view]) .steps-summary { grid-template-columns: 1fr; }
  body:not([data-view]) .steps-summary .ss-item { border-right: none; }
}

/* ========== Section: Pricing ========== */
#pricing .section-head { margin-bottom: 56px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* クリックで切り替え可能なプランカード（<button>ベース） */
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  /* button リセット */
  width: 100%;
  font-family: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.price-card:focus { outline: none; }
.price-card:focus-visible {
  outline: 3px solid rgba(255, 106, 26, .35);
  outline-offset: 3px;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--blue-line);
}

/* Active (選択中) — 3プランどこでもオレンジに切り替わる */
.price-card.is-active {
  border-color: var(--orange);
  transform: translateY(-3px);
  cursor: default;
}
.price-card.is-active:hover {
  border-color: var(--orange);
}
.price-card.is-active .price-plan { color: var(--orange); }
.price-card.is-active .price-num { color: var(--orange); }

/* リボン — 選択中のカードのみ表示 */
.price-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) scale(.85);
  background: var(--border);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  transition: transform .25s;
}
.price-card.is-active .price-ribbon {
  color: #fff;
  background: var(--orange);
}

/* Head */
.price-head { text-align: center; }
.price-target {
  text-align: center;
  font-size: 12px;
  color: var(--text);
  line-height: 1.6;
  min-height: 2.4em;
}
.price-plan {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .02em;
  margin: 16px 0;
}
.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--navy);
  line-height: 1;
}
.price-unit-pre {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-sub);
  margin-right: 2px;
}
.price-num {
  font-family: "Inter", var(--font-jp);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--navy);
}
.price-unit {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.price-note {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: var(--navy);
}

.price-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 28px 0 24px;
}

/* Feature list */
.price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.price-feats li {
  display: flex;
  align-items: center;
  color: var(--text);
  line-height: 1.5;
}
/* spec row: label left, value right */
.pf-spec {
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border-soft);
  color: var(--text-sub);
  font-size: 14px;
}
.pf-spec strong {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
/* on / off feature rows */
.pf-on, .pf-off {
  gap: 10px;
  font-weight: 600;
}
.pf-off {
  color: var(--text-mute);
  font-weight: 500;
}
.pf-check, .pf-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.pf-check {
  background: var(--orange-tint);
  color: var(--orange);
}
.pf-x {
  background: transparent;
  color: var(--text-mute);
  font-size: 14px;
}

/* Foot */
.price-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.btn-block {
  width: 100%;
  height: 48px;
  font-size: 14px;
}

/* CTA は選択中カードのみ表示 */
.price-cta {
  display: inline-flex;
  color: var(--navy);
  font-size: 16px;
  background-color: var(--blue-soft);
  box-shadow: 0 2px 0 var(--border);
}
.price-card .price-cta:hover {
  color: #fff;
  background-color: var(--orange-hover);
  box-shadow: 0 2px 0 rgba(180, 60, 0, .18);
}
.price-card.is-active .price-cta {
  color: #fff;
  background-color: var(--orange);
  box-shadow: 0 2px 0 rgba(180, 60, 0, .18);
}
.price-card.is-active .price-cta:hover {
  background-color: var(--orange-hover);
}

.pricing-note {
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
}
.pricing-note a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing-note a:hover {
  opacity: .8;
}

@media (max-width: 900px) {
  /* data-view（実機）/ 非data-view（JS未実行）どちらでも1カラムに畳む */
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-card:nth-child(2) { order: -1; }
}

/* 活用シーンカードのグラフィック：1カラム表示（狭幅）では画像全体を表示し、
   PC用の height:12.8vw による薄い帯状の見切れを防ぐ */
@media (max-width: 900px) {
  .uc-graphic {
    height: auto;
    aspect-ratio: 620 / 381;
  }
  .uc-graphic .uc-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


  .pm-body { line-height: 1.9; }
  .pm-body > p { font-size: 14px; line-height: 1.9; color: var(--text-sub); margin: 0 0 8px; }
  .pm-body dl { margin: 0; }
  .pm-body dt { font-size: 15px; font-weight: 800; color: var(--navy); margin: 22px 0 8px; line-height: 1.6; }
  .pm-body dd { margin: 0; font-size: 13.5px; line-height: 1.9; color: var(--text-sub); }
  .pm-body dd.exMargin05 { margin-bottom: 4px; }
  .pm-body a { text-decoration: underline; word-break: break-all; }
  .pm-body .contactInfo { width: 100%; border-collapse: collapse; margin-top: 26px; font-size: 13.5px; }
  .pm-body .contactInfo th,
  .pm-body .contactInfo td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; vertical-align: top; line-height: 1.75; color: var(--text-sub); }
  .pm-body .contactInfo th { background: var(--blue-soft); font-weight: 700; color: var(--navy); white-space: nowrap; width: 38%; }
  body[data-view="sp"] .pm-body .contactInfo th { white-space: normal; width: 42%; }

@media (max-width: 768px) {
  /* ---- Hero (SP) ----
     Heroは全コピーが焼き込まれたSP用画像(780×1600 / 縦横比≒2.05)。
     PC用の height:60vw・ボタン位置(bottom:20vw/left:8vw) が残っていると
     画像が大きく切れてCTAが浮くため、SP用にリセットして画像下部の余白へ配置する。
     body[data-fv] を前置きして、fullbleed(JS未実行時) / sp(実機) いずれの状態でも確実に上書きする。 */
  body[data-fv] .hero {
    background: var(--bg-tint);
    background-image: url("../assets/img/mv_all_sp.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top -15.2vw center;
    height: auto;
    aspect-ratio: 780 / 1600;   /* 画像の縦横比に合わせて全体を表示 */
    padding: 0;
  }
  body[data-fv] .hero-inner {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 32vw;                 /* 画像下部の余白バンド（コピーの下・波模様の上）にCTAを配置 */
    margin: 0;
    padding: 0 6.4vw;
    display: block;
    max-width: none;
  }
  body[data-fv] .hero-copy { width: 100%; }
  body[data-fv] .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    width: 100%;
  }
  body[data-fv] .hero-cta .btn { width: 100%; }

  /* ---- 導入実績マーキーの見出し ---- */

  .site-header .inner {
		padding: 0 5%;
		height: 50px;
	}
	.usecase-strip .inner,
	.container,
	.sv-inner {
		padding: 0 5%;
	}
	body:not([data-view]) .issue-grid, body:not([data-view]) .usecase-grid, body:not([data-view]) .reason-grid, body:not([data-view]) .can-do-features, body:not([data-view]) {
		gap: 15px;
	}
	.trust-grid, body:not([data-view]) .steps {
		gap: 30px;
	}
	.usecase-inner-cta {
		display: grid;
	}
	.link-btn {
		width: 100%;
		justify-content: center;
		padding: 10px 30px;
	}
	.logo-marquee-wrap {
		padding-bottom: 0;
	}
	section#company {
		margin-top: -20vw;
		padding: 0 0 10px;
	}
	p.marquee-caption {
		margin-bottom: 0;
	}
	.logo-set {
		gap: 10px;
	}
	.section-title {
		font-size: 6.5vw;
		word-break: auto-phrase;
		text-align: center;
	}
	.section-head {
	text-align: center;
	}
	.section-head .eyebrow::after,
	.can-do-wrap  .eyebrow::after {
		left: 50%;
		transform: translateX(-50%);
	}
	.can-do-wrap {
		text-align: center;
	}
	.section-head.centered {
		margin-bottom: 30px;
	}
	.cm-header {
		min-height: 150px;
		padding: 15px 5%;
	}
	.cm-body {
		padding: 15px 5%;
	}
	.cm-footer {
		padding: 15px 5%;
	}
	.cm-header-inner {
		align-items: flex-start;
	}
	.cm-company-visual {
		width: 50px;
		height: 50px;
	}
	.cm-company-name {
		font-size: 18px;
	}
	.cm-header.privacy {
		min-height: 90px;
	}
	.cm-footer .cm-cta {
		width: 100%;
		justify-content: center;
	}
	.pm-body .contactInfo th {
		white-space: normal;
	}
	.steps-timeline {
		padding-top: 20px;
	}
	section#pricing {
		padding-top: 30px;
	}
}

@media (max-width: 768px) {
  p.marquee-caption { font-size: 4.3vw; }
}
section#team{ padding: 0; }