/* ═════��═════════════════════════════════
   FIRST INTELLIGENCE — service.css
   サービスページ専用スタイル
   VER.005
   ═══════��═══════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━���━━━━━━━
   動的メッシュグラデーション背景
   海の波のようにうねうね動く — 色濃く・範囲広く
━━━━���━━━━━━━━━━━━━━━━━━━━ */
/* メッシュグラデーション背景（アニメーション復活） */
.mesh-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.mesh-bg::before,
.mesh-bg::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.mesh-bg::before {
  width: 110vw; height: 110vw; max-width: 1400px; max-height: 1400px;
  top: -30%; left: -25%;
  background: radial-gradient(circle, rgba(0,40,120,.85) 0%, rgba(7,24,56,.55) 35%, rgba(0,15,40,.2) 60%, transparent 80%);
  opacity: .85;
  animation: meshDrift1 18s ease-in-out infinite alternate;
}
.mesh-bg::after {
  width: 100vw; height: 100vw; max-width: 1200px; max-height: 1200px;
  bottom: -35%; right: -20%;
  background: radial-gradient(circle, rgba(0,100,220,.55) 0%, rgba(0,60,160,.35) 30%, rgba(0,30,80,.15) 55%, transparent 75%);
  opacity: .8;
  animation: meshDrift2 22s ease-in-out infinite alternate;
}

@keyframes meshDrift1 {
  0%   { transform: translate(0, 0) scale(1); opacity: .85; }
  50%  { transform: translate(5%, 8%) scale(1.05); opacity: .7; }
  100% { transform: translate(-3%, 4%) scale(.97); opacity: .85; }
}
@keyframes meshDrift2 {
  0%   { transform: translate(0, 0) scale(1); opacity: .8; }
  50%  { transform: translate(-6%, -5%) scale(1.08); opacity: .65; }
  100% { transform: translate(4%, -3%) scale(.95); opacity: .8; }
}

/* セクション個別のメッシュオーバーレイ */
.sv-section { position: relative; overflow: hidden; }
.sv-section::before,
.sv-section::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none; z-index: 0;
}
.sv-section::before {
  width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  top: -20%; left: -15%;
  background: radial-gradient(circle, rgba(0,60,180,.3) 0%, transparent 70%);
  animation: sectionMesh1 20s ease-in-out infinite alternate;
}
.sv-section::after {
  width: 50vw; height: 50vw; max-width: 700px; max-height: 700px;
  bottom: -25%; right: -10%;
  background: radial-gradient(circle, rgba(0,80,200,.2) 0%, transparent 70%);
  animation: sectionMesh2 25s ease-in-out infinite alternate;
}

@keyframes sectionMesh1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8%, 6%) scale(1.1); }
}
@keyframes sectionMesh2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-5%, -8%) scale(1.06); }
}

/* セクション基本背景（メッシュの下地） */
.sv-section {
  background: linear-gradient(180deg, #030a14 0%, #0a0f1a 50%, #050c18 100%);
}

/* ── 共通セクションラベル ── */
.sv-sec-label {
  font-size: 10px; font-weight: 300; letter-spacing: .42em;
  color: var(--blue-l); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.sv-sec-label::before { content: ''; width: 24px; height: 1px; background: var(--blue-l); }
.sv-sec-h {
  font-weight: 100; font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: .03em; color: #fff; line-height: 1.4;
}

/* ━━━���━━━━━━━━━━━━━━━━━━━━━
   HERO（動画背���）
━━━━━━━━━━━━━━━━━━━━���━━━━ */
.sv-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.sv-hero-vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.sv-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(3,10,20,1) 0%, rgba(0,0,0,.6) 40%, rgba(0,0,0,.3) 70%, rgba(0,0,0,.5) 100%);
}
.sv-hero-content {
  position: relative; z-index: 2; padding: 0 80px 100px; width: 100%;
}
.sv-hero-h1 {
  font-weight: 100; font-size: clamp(40px, 5.5vw, 80px);
  letter-spacing: -.01em; line-height: 1.15; color: #fff;
  margin-bottom: 24px; max-width: 800px;
}
.sv-hero-h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue-l), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sv-hero-sub {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 200;
  font-size: 18px; letter-spacing: .1em; color: rgba(255,255,255,.7);
  line-height: 1.9; max-width: 560px;
}

/* ━━━━━━━━━━━━���━━━━━━━��━━━━
   WHAT
━━━━━━━━━━���━━━━━━━━━━━━━━ */
.sv-what {
  padding: 160px 80px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.sv-what-inner { max-width: 820px; position: relative; z-index: 1; }

/* ━━━━━━━━━━━━━━━━━━���━━━━━━
   FEATURES — 白カード60%透過（動画背景���
━━━━━━━���━━━━━━━���━━━━━━━━━ */
.sv-features {
  position: relative; overflow: hidden;
  padding: 160px 80px; background: none;
}
.sv-features::before { display: none; }
.sv-features-vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.sv-features-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(3,10,20,.92) 0%, rgba(0,0,0,.75) 50%, rgba(3,10,20,.92) 100%);
}
.sv-features-inner { position: relative; z-index: 2; }
.sv-features-header { margin-bottom: 72px; }

.sv-feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.sv-feat {
  padding: 36px 36px 32px;
  background: rgba(0,12,24,.85);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  transition: transform .4s cubic-bezier(.25,.1,0,1), box-shadow .4s, border-color .4s;
  box-shadow: 0 4px 40px rgba(0,0,0,.3);
}
.sv-feat:hover {
  transform: translateY(-6px);
  border-color: rgba(0,144,230,.3);
  box-shadow: 0 16px 60px rgba(0,100,200,.15);
}
.sv-feat-top {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.sv-feat-icon { flex-shrink: 0; }
.sv-feat-num {
  font-family: 'Sora', sans-serif; font-weight: 200; font-size: 44px;
  letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sv-feat-title {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 400;
  font-size: 20px; letter-spacing: .06em; color: #fff; margin-bottom: 12px;
}
.sv-feat-desc {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 2.1; letter-spacing: .03em;
}

/* ━━���━━━━━━━━━━━━━━━━━━━━━━
   PLANS — 全フォント白・サイズアップ
━━━━━━━━━━━━━━��━━━━━━━━━━ */
.sv-plans {
  padding: 180px 80px;
}
.sv-plans-inner { position: relative; z-index: 1; }
.sv-plans-robot {
  position: absolute; right: -20px; top: 120px; z-index: 2;
  width: 220px; height: auto; opacity: .9;
  pointer-events: none;
  filter: drop-shadow(0 20px 60px rgba(0,100,200,.2));
  animation: robotFloat 6s ease-in-out infinite;
}
@keyframes robotFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
.sv-plans-header { text-align: center; margin-bottom: 60px; }
.sv-plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: start;
}
.sv-plans-header .sv-sec-label { justify-content: center; }
.sv-plans-header .sv-sec-label::after { content: ''; width: 24px; height: 1px; background: var(--blue-l); }
.sv-plans-note-bottom {
  margin-top: 32px; text-align: left;
}
.sv-plans-note {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 14px; color: rgba(255,255,255,.5); letter-spacing: .06em;
  line-height: 1.8; margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━
   DEMO — 操作画面モックアップ
━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sv-demo {
  padding: 140px 80px;
  background: #000;
  overflow: hidden;
}
.sv-demo-inner { max-width: 1100px; margin: 0 auto; }
.sv-demo-header { text-align: center; margin-bottom: 64px; }
.sv-demo-sub {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 15px; color: rgba(255,255,255,.6); letter-spacing: .06em;
  line-height: 2; margin-top: 28px;
}

/* MacBook フレーム */
.sv-demo-laptop {
  max-width: 960px; margin: 0 auto;
  perspective: 1200px;
}
.sv-demo-screen {
  border: 2px solid rgba(255,255,255,.12);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #0d1117;
}
.sv-demo-base {
  height: 18px;
  background: linear-gradient(to bottom, #2a2a2e, #1a1a1e);
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.sv-demo-notch {
  width: 80px; height: 5px; border-radius: 0 0 4px 4px;
  background: rgba(255,255,255,.06);
}

/* ダッシュボード */
.sv-dash {
  display: grid; grid-template-columns: 200px 1fr;
  height: 420px; font-family: 'Noto Sans JP', -apple-system, sans-serif;
}

/* サイドバー */
.sv-dash-side {
  background: #0a0e14;
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 16px 14px;
  display: flex; flex-direction: column;
  overflow: hidden; min-height: 0;
}
.sv-dash-logo {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sv-dash-logo svg { flex-shrink: 0; }
.sv-dash-logo span {
  font-family: 'Sora', sans-serif; font-size: 8px; font-weight: 300;
  letter-spacing: .12em; color: rgba(255,255,255,.5); text-transform: uppercase;
}
.sv-dash-nav-label {
  font-size: 8px; font-weight: 400; letter-spacing: .2em;
  color: rgba(255,255,255,.25); text-transform: uppercase;
  margin-bottom: 10px; margin-top: 8px;
}
.sv-dash-agents {
  list-style: none; overflow-y: auto; flex: 1; min-height: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.sv-dash-agent {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 300; color: rgba(255,255,255,.5);
  padding: 6px 8px; border-radius: 6px; cursor: default;
  transition: background .2s;
}
.sv-dash-agent.active {
  background: rgba(0,151,251,.1);
  color: #fff;
}
.sv-dash-role {
  margin-left: auto; font-size: 8px;
  color: rgba(255,255,255,.2); letter-spacing: .06em;
}
.sv-dash-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.sv-dash-dot.on { background: #2ea043; box-shadow: 0 0 6px rgba(46,160,67,.4); }
.sv-dash-dot.busy { background: #d29922; box-shadow: 0 0 6px rgba(210,153,34,.4); }
.sv-dash-status {
  display: flex; gap: 12px; margin-top: 8px;
}
.sv-dash-stat-item {
  font-size: 9px; color: rgba(255,255,255,.3); letter-spacing: .04em;
  display: flex; align-items: center; gap: 4px;
}
.sv-dash-stat-num {
  font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 300;
  color: var(--blue-l);
}

/* メインエリア */
.sv-dash-main {
  display: flex; flex-direction: column;
  background: #0d1117;
  min-height: 0; overflow: hidden;
}
.sv-dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 11px; color: rgba(255,255,255,.6);
}
.sv-dash-topbar-title { font-weight: 400; letter-spacing: .06em; }
.sv-dash-topbar-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 9px; color: rgba(255,255,255,.3);
}
.sv-dash-chat {
  flex: 1; padding: 20px; min-height: 0;
  overflow-y: auto; display: flex; flex-direction: column; gap: 14px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* チャットバブル */
.sv-chat-msg {
  max-width: 85%; animation: chatFadeIn .4s ease;
}
@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.sv-chat-msg.user { align-self: flex-end; }
.sv-chat-msg.ai { align-self: flex-start; }
.sv-chat-sender {
  font-size: 8px; font-weight: 400; letter-spacing: .1em;
  color: rgba(255,255,255,.3); text-transform: uppercase;
  margin-bottom: 4px;
}
.sv-chat-msg.user .sv-chat-sender { text-align: right; }
.sv-chat-bubble {
  padding: 10px 14px; border-radius: 10px;
  font-size: 12px; font-weight: 300; line-height: 1.8;
  letter-spacing: .03em;
}
.sv-chat-msg.user .sv-chat-bubble {
  background: rgba(0,151,251,.15);
  border: 1px solid rgba(0,151,251,.2);
  color: #fff;
}
.sv-chat-msg.ai .sv-chat-bubble {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}
.sv-chat-typing {
  display: inline-flex; gap: 4px; padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
}
.sv-chat-typing span {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.3);
  animation: typingDot 1.4s ease-in-out infinite;
}
.sv-chat-typing span:nth-child(2) { animation-delay: .2s; }
.sv-chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* 入力エリア */
.sv-dash-input {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px; color: rgba(255,255,255,.4);
  min-height: 42px;
}
.sv-dash-input-icon {
  color: var(--blue-l); font-size: 10px; opacity: .5;
}
.sv-dash-input-text {
  font-weight: 300; color: rgba(255,255,255,.7); letter-spacing: .03em;
}
.sv-dash-input-cursor {
  width: 1.5px; height: 14px; background: var(--blue-l);
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   マネジメントダッシュボード（DEMO 2）
━━━━━━━━━━━━━━━━━━━━━━━━ */
.sv-demo2 { padding-top: 0; }
.sv-demo2 .sv-dash { height: 480px; }

.sv-mgmt { overflow: hidden; }
.sv-mgmt-body {
  flex: 1; padding: 16px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 14px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* KPIカード */
.sv-mgmt-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.sv-mgmt-kpi {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; padding: 14px 16px;
}
.sv-mgmt-kpi-label {
  font-size: 9px; font-weight: 400; letter-spacing: .08em;
  color: rgba(255,255,255,.35); margin-bottom: 8px;
}
.sv-mgmt-kpi-val {
  font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 300;
  color: #fff; letter-spacing: -.02em; line-height: 1;
}
.sv-mgmt-kpi-unit {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,.5);
  margin-left: 2px;
}
.sv-mgmt-kpi-trend {
  font-size: 9px; font-weight: 400; margin-top: 6px; letter-spacing: .04em;
}
.sv-mgmt-kpi-trend.up { color: #2ea043; }
.sv-mgmt-kpi-trend.neutral { color: rgba(255,255,255,.3); }

/* 下段：タスク + チャート */
.sv-mgmt-bottom {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  flex: 1; min-height: 0;
}
.sv-mgmt-panel-head {
  font-size: 9px; font-weight: 400; letter-spacing: .12em;
  color: rgba(255,255,255,.3); text-transform: uppercase;
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* タスクリスト */
.sv-mgmt-tasks {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; padding: 14px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.sv-mgmt-task {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 11px; font-weight: 300; color: rgba(255,255,255,.7);
}
.sv-mgmt-task:last-child { border-bottom: none; }
.sv-mgmt-task-status {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.sv-mgmt-task-status.done { background: #2ea043; box-shadow: 0 0 6px rgba(46,160,67,.3); }
.sv-mgmt-task-status.progress { background: #0097fb; box-shadow: 0 0 6px rgba(0,151,251,.3); }
.sv-mgmt-task-status.wait { background: #d29922; box-shadow: 0 0 6px rgba(210,153,34,.3); }
.sv-mgmt-task-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sv-mgmt-task-agent {
  font-size: 8px; letter-spacing: .06em; color: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* 売上バーチャート */
.sv-mgmt-chart {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; padding: 14px 16px;
  display: flex; flex-direction: column;
}
.sv-mgmt-bars {
  flex: 1; display: flex; align-items: flex-end; gap: 8px;
  padding-top: 8px;
}
.sv-mgmt-bar-col {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.sv-mgmt-bar {
  width: 100%; max-width: 36px; border-radius: 4px 4px 0 0;
  background: rgba(0,151,251,.2);
  border: 1px solid rgba(0,151,251,.15);
  border-bottom: none;
  transition: height .6s ease;
}
.sv-mgmt-bar.active {
  background: rgba(0,151,251,.4);
  border-color: rgba(0,151,251,.35);
  box-shadow: 0 0 12px rgba(0,151,251,.15);
}
.sv-mgmt-bar-label {
  font-size: 8px; font-weight: 300; color: rgba(255,255,255,.25); letter-spacing: .04em;
}

/* 注釈テキスト */
.sv-demo-note {
  text-align: right; margin-top: 16px;
  font-size: 11px; font-weight: 300; letter-spacing: .04em;
  color: rgba(255,255,255,.3);
}

/* KPI更新フラッシュ */
.sv-mgmt-kpi.flash {
  border-color: rgba(0,151,251,.4);
  background: rgba(0,151,251,.08);
  transition: border-color .3s, background .3s;
}

.sv-plan-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  margin-bottom: 0;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.sv-plan-card:hover {
  border: 2px solid rgba(0,144,230,.4);
  box-shadow: 0 8px 48px rgba(0,100,200,.12);
}
.sv-plan-card--featured {
  border-color: rgba(0,144,230,.5);
  background: rgba(0,60,140,.08);
}
.sv-plan-card--featured:hover {
  border: 2px solid rgba(0,151,251,.7);
  box-shadow: 0 12px 56px rgba(0,100,200,.2);
}

.sv-plan-badge {
  position: absolute; top: 0; right: 44px;
  font-size: 9px; font-weight: 300; letter-spacing: .28em; text-transform: uppercase;
  color: #fff; background: var(--blue);
  padding: 8px 18px; border-radius: 0 0 8px 8px;
}

.sv-plan-head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  padding: 32px 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.sv-plan-card--featured .sv-plan-head {
  border-bottom-color: rgba(0,144,230,.3);
}
.sv-plan-tier-wrap { display: flex; align-items: baseline; gap: 12px; }
.sv-plan-tier {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 300;
  letter-spacing: .35em; text-transform: uppercase; color: var(--blue-l);
}
.sv-plan-name {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 200;
  font-size: 24px; letter-spacing: .08em; color: #fff;
}
.sv-plan-price-wrap { display: flex; align-items: flex-end; gap: 2px; }
.sv-plan-yen {
  font-family: 'Sora', sans-serif; font-weight: 100; font-size: 20px;
  color: #fff; line-height: 1; padding-bottom: 4px;
}
.sv-plan-price {
  font-family: 'Sora', sans-serif; font-weight: 100; font-size: 36px;
  letter-spacing: -.02em; line-height: 1; color: #fff;
}
.sv-plan-card--featured .sv-plan-price { color: var(--blue-l); }
.sv-plan-period {
  font-family: 'Noto Sans JP', sans-serif; font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.6); letter-spacing: .04em; padding-bottom: 8px; margin-left: 8px;
}

.sv-plan-body {
  display: flex; flex-direction: column;
}
.sv-plan-col {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sv-plan-col:last-of-type { border-bottom: none; }

.sv-plan-tag {
  display: inline-block; font-size: 13px; font-weight: 300;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--blue-l); border: 1px solid rgba(0,151,251,.4);
  border-radius: 100px; padding: 7px 18px; margin-bottom: 22px;
}
.sv-plan-desc {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 14px; color: #fff; line-height: 1.8; letter-spacing: .04em;
}
.sv-plan-col-h {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 400;
  font-size: 15px; letter-spacing: .1em;
  color: #fff; margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.2);
}
.sv-plan-list { list-style: none; }
.sv-plan-list li {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 14px; letter-spacing: .04em; color: #fff;
  line-height: 1.7; padding: 5px 0;
  display: flex; align-items: flex-start; gap: 10px;
}
.sv-plan-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue-l); flex-shrink: 0; margin-top: 10px;
}

.sv-plan-api-box {
  padding: 16px 28px;
  display: flex; flex-direction: row; align-items: center; gap: 12px;
}
.sv-plan-api-label {
  font-family: 'Noto Sans JP', sans-serif; font-size: 11px; font-weight: 300;
  letter-spacing: .15em; color: rgba(255,255,255,.6); margin-bottom: 0;
}
.sv-plan-api-val {
  font-family: 'Sora', sans-serif; font-weight: 100; font-size: 24px;
  color: #fff; letter-spacing: -.02em;
}

/* ━━━━━━━━��━━━━��━━━━━━━━━━━
   COMPARISON TABLE — 幅2/3・中央寄せ
━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sv-compare {
  padding: 0 80px 180px;
}
.sv-compare-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.sv-compare-header { text-align: center; margin-bottom: 56px; }
.sv-compare-header .sv-sec-label { justify-content: center; }
.sv-compare-header .sv-sec-label::after { content: ''; width: 24px; height: 1px; background: var(--blue-l); }

.sv-table-wrap {
  overflow-x: auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.sv-table {
  width: 100%; border-collapse: collapse;
  font-family: 'Noto Sans JP', sans-serif;
}
.sv-table th {
  font-weight: 300; font-size: 22px; letter-spacing: .1em;
  color: #fff; text-transform: uppercase;
  padding: 28px 32px; text-align: center;
  border-bottom: 1px solid rgba(0,144,230,.25);
}
.sv-table th:first-child { text-align: left; }
.sv-table td {
  font-weight: 300; font-size: 22px; letter-spacing: .04em;
  color: rgba(255,255,255,.8); padding: 22px 32px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sv-table td:first-child {
  text-align: left; color: #fff; font-size: 21px; font-weight: 700; letter-spacing: .06em;
}
.sv-table--hl {
  background: rgba(0,100,200,.1) !important;
  color: #fff !important;
}
.sv-table tbody tr:last-child td { border-bottom: none; }
.sv-table tbody tr:hover td { background: rgba(255,255,255,.03); }
.sv-table tbody tr:hover .sv-table--hl { background: rgba(0,100,200,.15) !important; }

/* ━━��━━━━���━━━━━━━━━���━━━━━━━
   FLOW — 動画背景・中央揃え・1.3〜1.5倍サイ���
━━━━━━━━━━━━━━━���━━━━━━���━━ */
.sv-flow {
  position: relative; overflow: hidden;
  padding: 180px 80px; background: none;
}
.sv-flow::before { display: none; }
.sv-flow-vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.sv-flow-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(3,10,20,.9) 0%, rgba(0,0,0,.8) 50%, rgba(3,10,20,.92) 100%);
}
.sv-flow-inner { position: relative; z-index: 2; }
.sv-flow-header {
  margin-bottom: 80px;
  text-align: center;
}
.sv-flow-header .sv-sec-label { justify-content: center; }
.sv-flow-header .sv-sec-label::after { content: ''; width: 24px; height: 1px; background: var(--blue-l); }
.sv-flow-header .sv-sec-h {
  font-size: clamp(36px, 4.5vw, 72px);
}

.sv-flow-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 140px;
}
.sv-flow-timeline::before {
  content: ''; position: absolute; left: 47px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--blue-l), rgba(0,151,251,.08));
}
.sv-flow-step {
  display: flex; align-items: flex-start; gap: 44px;
  padding-bottom: 76px; position: relative;
}
.sv-flow-step:last-child { padding-bottom: 0; }
.sv-flow-num {
  position: absolute; left: -140px;
  font-family: 'Sora', sans-serif; font-weight: 200; font-size: 25px;
  letter-spacing: .1em; color: var(--blue-l);
  width: 94px; height: 94px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,151,251,.35); border-radius: 50%;
  background: rgba(3,10,20,.85);
  backdrop-filter: blur(8px);
}
.sv-flow-title {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 28px; letter-spacing: .08em; color: #fff; margin-bottom: 16px;
}
.sv-flow-desc {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 17px; color: #fff; line-height: 2.1; letter-spacing: .04em;
  max-width: 600px;
}

/* ━━━━��━━━━━━━━━━━━━━━━━━━━
   TARGET
━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━
   VOICE — お客様の声
━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sv-voice {
  padding: 180px 80px;
}
.sv-voice-inner { position: relative; z-index: 1; }
.sv-voice-header { text-align: center; margin-bottom: 72px; }
.sv-voice-header .sv-sec-label { justify-content: center; }
.sv-voice-header .sv-sec-label::after { content: ''; width: 24px; height: 1px; background: var(--blue-l); }

.sv-voice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.sv-voice-card {
  padding: 44px 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: border-color .35s, transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.sv-voice-card:hover {
  border-color: rgba(0,144,230,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,100,200,.1);
}
.sv-voice-top {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.sv-voice-icon { flex-shrink: 0; opacity: .7; }
.sv-voice-meta { display: flex; flex-direction: column; gap: 4px; }
.sv-voice-industry {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 400;
  font-size: 15px; letter-spacing: .06em; color: #fff;
}
.sv-voice-plan {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 12px; letter-spacing: .08em; color: rgba(255,255,255,.45);
}
.sv-voice-text {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 2.1;
  letter-spacing: .03em; flex: 1; margin-bottom: 28px;
}
.sv-voice-result {
  display: flex; align-items: baseline; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sv-voice-result-num {
  font-family: 'Sora', sans-serif; font-weight: 200; font-size: 36px;
  letter-spacing: -.02em; line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sv-voice-result-label {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 13px; letter-spacing: .06em; color: rgba(255,255,255,.5);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━
   VERSUS — 他社比較マトリックス
━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sv-versus {
  padding: 180px 80px;
}
.sv-versus-inner { position: relative; z-index: 1; }
.sv-versus-header { text-align: center; margin-bottom: 72px; }
.sv-versus-header .sv-sec-label { justify-content: center; }
.sv-versus-header .sv-sec-label::after { content: ''; width: 24px; height: 1px; background: var(--blue-l); }

/* マトリックス図 */
.sv-matrix {
  max-width: 1100px; margin: 0 auto 80px; position: relative;
  padding: 0 60px;
}
/* 4方向の軸ラベル */
.sv-matrix-y-top,
.sv-matrix-y-bottom,
.sv-matrix-x-left,
.sv-matrix-x-right {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 12px; letter-spacing: .12em; color: rgba(255,255,255,.45);
  text-align: center; white-space: nowrap;
}
.sv-matrix-y-top { margin-bottom: 12px; }
.sv-matrix-y-bottom { margin-top: 12px; }
.sv-matrix-x-left,
.sv-matrix-x-right {
  position: absolute; top: 50%; transform: translateY(-50%);
}
.sv-matrix-x-left { left: 0; }
.sv-matrix-x-right { right: 0; }
.sv-matrix-area {
  position: relative; width: 100%; padding-top: 60%;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
}
/* 右上象限の薄いブルーハイライト */
.sv-matrix-quadrant-highlight {
  position: absolute; top: 0; right: 0; width: 50%; height: 50%;
  background: rgba(0,151,251,.04);
  border-radius: 0 20px 0 0;
}
.sv-matrix-line-h {
  position: absolute; top: 50%; left: 5%; right: 5%;
  height: 1px; background: rgba(255,255,255,.08);
}
.sv-matrix-line-v {
  position: absolute; left: 50%; top: 5%; bottom: 5%;
  width: 1px; background: rgba(255,255,255,.08);
}
.sv-matrix-quadrant {
  position: absolute;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 13px; letter-spacing: .12em; color: #fff;
}
.sq-tl { top: 6%; left: 8%; }
.sq-tr { top: 6%; right: 8%; }
.sq-bl { bottom: 6%; left: 8%; }
.sq-br { bottom: 6%; right: 8%; }

.sv-matrix-dot {
  position: absolute; transform: translate(-50%, -50%);
  text-align: center;
}
.sv-matrix-dot::before {
  content: ''; display: block; width: 14px; height: 14px;
  border-radius: 50%; margin: 0 auto 10px;
}
.sv-dot-fi::before {
  width: 22px; height: 22px;
  background: var(--blue-l);
  box-shadow: 0 0 24px rgba(0,151,251,.5), 0 0 48px rgba(0,151,251,.25);
  animation: fiPulse 2.4s ease-in-out infinite;
}
@keyframes fiPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 24px rgba(0,151,251,.5), 0 0 48px rgba(0,151,251,.25); }
  50%      { opacity: .4; box-shadow: 0 0 8px rgba(0,151,251,.2), 0 0 16px rgba(0,151,251,.1); }
}
.sv-dot-other::before {
  background: rgba(255,255,255,.25);
}
.sv-dot-label {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 12px; letter-spacing: .06em; color: rgba(255,255,255,.5);
  line-height: 1.2; white-space: nowrap;
}
.sv-dot-fi .sv-dot-label {
  color: var(--blue-l); font-weight: 400; font-size: 14px;
}
.sv-dot-risk::before {
  background: rgba(220,60,60,.7);
  box-shadow: 0 0 12px rgba(220,60,60,.4);
}
.sv-dot-risk .sv-dot-label {
  color: rgba(220,100,100,.7);
}
.sv-matrix-annotation {
  text-align: center; margin-top: 24px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 14px; letter-spacing: .08em; color: rgba(255,255,255,.55);
  line-height: 1.8;
}
.sv-matrix-note {
  text-align: right; margin-top: 12px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: .08em; color: rgba(255,255,255,.3);
}

/* 差別化ポイント */
.sv-diff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.sv-diff-item {
  padding: 40px 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  transition: border-color .35s, transform .35s;
}
.sv-diff-item:hover {
  border-color: rgba(0,144,230,.25);
  transform: translateY(-3px);
}
.sv-diff-num {
  font-family: 'Sora', sans-serif; font-weight: 200; font-size: 32px;
  letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.sv-diff-title {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 400;
  font-size: 18px; letter-spacing: .06em; color: #fff; margin-bottom: 12px;
}
.sv-diff-desc {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 13px; color: rgba(255,255,255,.6); line-height: 2; letter-spacing: .03em;
}

/* ━━━��━━━━━━━━━━���━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━��━━━━━━━━━━━ */
.sv-faq {
  padding: 180px 80px;
}
.sv-faq-inner { position: relative; z-index: 1; }
.sv-faq-header { text-align: center; margin-bottom: 72px; }
.sv-faq-header .sv-sec-label { justify-content: center; }
.sv-faq-header .sv-sec-label::after { content: ''; width: 24px; height: 1px; background: var(--blue-l); }

.sv-faq-list {
  max-width: 800px; margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 0 44px;
  backdrop-filter: blur(8px);
}
.sv-faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.sv-faq-item:last-child { border-bottom: none; }
.sv-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 28px 0; background: none; border: none;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 17px; letter-spacing: .06em; color: #fff;
  cursor: pointer; text-align: left; transition: color .2s;
}
.sv-faq-q:hover { color: var(--blue-l); }
.sv-faq-icon {
  width: 20px; height: 20px; flex-shrink: 0; position: relative;
}
.sv-faq-icon::before,
.sv-faq-icon::after {
  content: ''; position: absolute;
  background: var(--blue-l); transition: transform .3s;
}
.sv-faq-icon::before { width: 20px; height: 1px; top: 50%; left: 0; }
.sv-faq-icon::after { width: 1px; height: 20px; left: 50%; top: 0; }
.sv-faq-item.open .sv-faq-icon::after { transform: rotate(90deg); }
.sv-faq-a { height: 0; overflow: hidden; }
.sv-faq-a-inner { padding: 0 0 28px; }
.sv-faq-a-inner p {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 15px; color: #fff; line-height: 2.1; letter-spacing: .04em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━
   CASE STUDY — よくあるご相談
━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━
   NIGHT LOG — 深夜3時デモ
━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sv-nightlog { padding: 140px 80px; }
.sv-nightlog .sv-demo-screen {
  height: 420px; display: flex; flex-direction: column;
}
.sv-nightlog-window {
  width: 100%; flex: 1; min-height: 0;
  border-radius: 0; overflow: hidden;
  background: rgba(10,12,18,.95);
  display: flex; flex-direction: column;
}
.sv-nightlog-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sv-nightlog-dots { display: flex; gap: 6px; }
.sv-nightlog-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.sv-nightlog-dots span:first-child { background: rgba(255,80,80,.6); }
.sv-nightlog-dots span:nth-child(2) { background: rgba(255,200,50,.6); }
.sv-nightlog-dots span:last-child { background: rgba(80,200,80,.6); }
.sv-nightlog-title {
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,.4); letter-spacing: .06em; flex: 1;
}
.sv-nightlog-status {
  font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 300;
  color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 6px;
}
.sv-nightlog-body {
  padding: 28px 24px; flex: 1;
  display: flex; flex-direction: column; gap: 20px;
  overflow-y: auto; overflow-x: hidden;
}
/* 個別メッセージ */
.nl-msg {
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s, transform .6s;
}
.nl-msg.show { opacity: 1; transform: translateY(0); }
.nl-msg-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.nl-msg-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 400;
  color: #fff; flex-shrink: 0;
}
.nl-msg-avatar.hendrix { background: linear-gradient(135deg, #0061bd, #0097fb); }
.nl-msg-avatar.dylan { background: linear-gradient(135deg, #6b21a8, #a855f7); }
.nl-msg-avatar.nicola { background: linear-gradient(135deg, #0f766e, #2dd4bf); }
.nl-msg-name {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.8);
}
.nl-msg-role {
  font-size: 10px; color: rgba(255,255,255,.3);
  font-family: 'Sora', sans-serif; font-weight: 300;
}
.nl-msg-time {
  font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 300;
  color: rgba(255,255,255,.2); margin-left: auto;
}
.nl-msg-text {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.6);
  padding-left: 38px;
}
.nl-msg-typing {
  padding-left: 38px; display: flex; gap: 4px; align-items: center;
  height: 24px;
}
.nl-msg-typing span {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  animation: nlBlink 1.4s infinite;
}
.nl-msg-typing span:nth-child(2) { animation-delay: .2s; }
.nl-msg-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes nlBlink {
  0%, 60%, 100% { opacity: .3; }
  30% { opacity: 1; }
}

/* 統一背景セクション（FAQ + Contact） */
.sv-case-contact-unified {
  padding: 120px 80px 180px;
}
.sv-case-contact-unified .sv-case-inner {
  padding-bottom: 120px;
}
.sv-case {
  padding: 180px 80px;
}
.sv-case-inner { position: relative; z-index: 1; }
.sv-case-header { text-align: center; margin-bottom: 72px; }
.sv-case-header .sv-sec-label { justify-content: center; }
.sv-case-header .sv-sec-label::after { content: ''; width: 24px; height: 1px; background: var(--blue-l); }

.sv-case-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.sv-case-card {
  padding: 40px 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: border-color .35s, transform .35s;
}
.sv-case-card:hover {
  border-color: rgba(0,144,230,.25);
  transform: translateY(-3px);
}
.sv-case-tag {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: .2em;
  color: var(--blue-l); border: 1px solid rgba(0,151,251,.3);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 20px;
}
.sv-case-title {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 400;
  font-size: 17px; letter-spacing: .04em; color: #fff;
  line-height: 1.7; margin-bottom: 16px;
}
.sv-case-answer {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 13px; color: rgba(255,255,255,.6); line-height: 2.1;
  letter-spacing: .03em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT FORM
━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sv-contact {
  padding: 180px 80px;
}
.sv-contact-inner { position: relative; z-index: 1; }
.sv-contact-header { text-align: center; margin-bottom: 72px; }
.sv-contact-header .sv-sec-label { justify-content: center; }
.sv-contact-header .sv-sec-label::after { content: ''; width: 24px; height: 1px; background: var(--blue-l); }
.sv-contact-sub {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 15px; color: rgba(255,255,255,.6); letter-spacing: .06em;
  line-height: 2; margin-top: 24px;
}

.sv-contact-body {
  max-width: 860px; margin: 0 auto;
}
.sv-contact-info {
  display: flex; gap: 48px; justify-content: center;
  margin-bottom: 64px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sv-contact-tel,
.sv-contact-mail {
  text-align: center;
}
.sv-contact-tel-label {
  display: block;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 12px; letter-spacing: .15em; color: rgba(255,255,255,.45);
  margin-bottom: 12px;
}
.sv-contact-tel-num {
  display: block;
  font-family: 'Sora', sans-serif; font-weight: 200; font-size: 32px;
  letter-spacing: .04em; color: #fff; text-decoration: none;
  transition: color .2s;
}
.sv-contact-tel-num:hover { color: var(--blue-l); }
.sv-contact-tel-hours {
  display: block; margin-top: 8px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .08em;
}
.sv-contact-mail-addr {
  display: block;
  font-family: 'Sora', sans-serif; font-weight: 200; font-size: 20px;
  letter-spacing: .04em; color: #fff; text-decoration: none;
  transition: color .2s;
}
.sv-contact-mail-addr:hover { color: var(--blue-l); }

/* ── フォーム全体 ── */
.sv-form {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 600px; margin: 0 auto;
}
.sv-form-row {
  display: flex; flex-direction: column; gap: 20px;
}
.sv-form-group { display: flex; flex-direction: column; gap: 8px; }
.sv-form-group--full { width: 100%; }
.sv-form-label {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 13px; letter-spacing: .08em; color: rgba(255,255,255,.6);
}
.sv-form-req {
  font-size: 10px; color: var(--blue-l); margin-left: 6px;
}
.sv-form-input {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 14px 18px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 15px; color: #fff; letter-spacing: .04em;
  transition: border-color .2s, background .2s;
  outline: none;
}
.sv-form-input::placeholder { color: rgba(255,255,255,.25); }
.sv-form-input:focus {
  border-color: rgba(0,151,251,.5);
  background: rgba(255,255,255,.08);
}
.sv-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.sv-form-textarea { resize: vertical; min-height: 120px; }
.sv-form-privacy {
  padding: 8px 0;
}
.sv-form-check {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 13px; color: rgba(255,255,255,.6);
}
.sv-form-check input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--blue-l);
}
.sv-form-check a {
  color: var(--blue-l); text-decoration: underline;
}
.sv-form-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 48px; border: none; border-radius: 60px;
  background: var(--blue-l); color: #fff;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 400;
  font-size: 16px; letter-spacing: .1em;
  cursor: pointer; transition: background .3s, transform .2s;
  align-self: center;
}
.sv-form-btn:hover {
  background: #0080d0;
  transform: translateY(-2px);
}
.sv-form-note {
  display: block; text-align: center; margin-top: 12px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .08em;
}

/* ── CF7 統合スタイル ── */
.sv-form .wpcf7-form {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 600px; margin: 0 auto; width: 100%;
}
.sv-form .wpcf7-form > p {
  display: flex; flex-direction: column; gap: 8px; margin: 0;
}
.sv-form .wpcf7-form-control-wrap {
  display: block;
}
.sv-form .wpcf7-form-control {
  width: 100%; box-sizing: border-box;
}
.sv-form .wpcf7-form label {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 13px; letter-spacing: .08em; color: rgba(255,255,255,.6);
}
.sv-form .wpcf7-form input[type="text"],
.sv-form .wpcf7-form input[type="email"],
.sv-form .wpcf7-form input[type="tel"],
.sv-form .wpcf7-form textarea,
.sv-form .wpcf7-form select {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 14px 18px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 15px; color: #fff; letter-spacing: .04em;
  transition: border-color .2s, background .2s;
  outline: none;
}
.sv-form .wpcf7-form input::placeholder,
.sv-form .wpcf7-form textarea::placeholder { color: rgba(255,255,255,.25); }
.sv-form .wpcf7-form input:focus,
.sv-form .wpcf7-form textarea:focus,
.sv-form .wpcf7-form select:focus {
  border-color: rgba(0,151,251,.5);
  background: rgba(255,255,255,.08);
}
.sv-form .wpcf7-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.sv-form .wpcf7-form textarea { resize: vertical; min-height: 120px; }
.sv-form .wpcf7-not-valid-tip {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 12px; color: #ff6b6b; margin-top: 6px;
}
.sv-form .wpcf7-response-output {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 14px; text-align: center; margin: 20px 0 0;
  padding: 16px; border-radius: 8px; letter-spacing: .04em;
}
.sv-form .wpcf7-mail-sent-ok,
.sv-form .wpcf7-form.sent .wpcf7-response-output {
  border-color: rgba(0,144,230,.4); color: rgba(255,255,255,.8);
  background: rgba(0,144,230,.1);
}
.sv-form .wpcf7-validation-errors,
.sv-form .wpcf7-form.invalid .wpcf7-response-output {
  border-color: rgba(255,107,107,.3); color: rgba(255,255,255,.7);
  background: rgba(255,107,107,.08);
}

/* ── プライバシー同意チェック ── */
/* 親pタグ：中央寄せ1行に */
.sv-form .wpcf7-form > p:has(.wpcf7-acceptance) {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 0; padding: 0;
}
/* form-control-wrap：幅・余白リセット */
.sv-form p > .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
  display: inline; width: auto; margin: 0; padding: 0;
}
/* acceptance本体 */
.sv-form .wpcf7-acceptance {
  display: inline-flex; align-items: center; justify-content: center;
  width: auto; margin: 0; padding: 0;
}
.sv-form .wpcf7-acceptance .wpcf7-list-item {
  display: inline-flex; align-items: center; gap: 0;
  margin: 0; padding: 0; white-space: nowrap;
}
.sv-form .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 0; padding: 0; cursor: pointer; white-space: nowrap;
}
.sv-form .wpcf7-acceptance input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px; flex-shrink: 0;
  accent-color: var(--blue-l); margin: 0; padding: 0; cursor: pointer;
}
.sv-form .wpcf7-acceptance .wpcf7-list-item-label {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 13px; color: rgba(255,255,255,.6);
  white-space: nowrap; margin: 0; padding: 0;
}
.sv-form .wpcf7-acceptance .wpcf7-list-item-label a {
  color: var(--blue-l); text-decoration: underline;
}

/* ── 送信ボタン ── */
.sv-form .wpcf7-spinner { display: none; }
.sv-form input[type="submit"].wpcf7-form-control.wpcf7-submit {
  display: block; width: 100%; max-width: 360px; margin: 0 auto;
  padding: 18px 40px; border: none; border-radius: 60px; cursor: pointer;
  background: linear-gradient(135deg, #0090e6, #0061bd);
  color: #fff; font-family: 'Noto Sans JP', sans-serif; font-weight: 400;
  font-size: 16px; letter-spacing: .15em;
  transition: opacity .3s, transform .3s;
}
.sv-form input[type="submit"].wpcf7-form-control.wpcf7-submit:hover {
  opacity: .85; transform: translateY(-2px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━
   PRIVACY POLICY
━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sv-privacy-body {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 14px; color: rgba(255,255,255,.65); line-height: 2.2;
  letter-spacing: .03em;
}
.sv-privacy-body a {
  color: inherit; text-decoration: none; pointer-events: none;
}
.sv-privacy-body h3 {
  font-weight: 400; font-size: 16px; color: #fff;
  letter-spacing: .06em; margin: 36px 0 12px;
}
.sv-privacy-body ul {
  list-style: none; padding-left: 0; margin: 8px 0;
}
.sv-privacy-body ul li {
  padding: 4px 0 4px 20px; position: relative;
}
.sv-privacy-body ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue-l);
}
.sv-privacy-body p,
.sv-privacy-body p * {
  border: none !important; border-bottom: none !important;
  text-decoration: none !important; outline: none !important;
  box-shadow: none !important; background-image: none !important;
}
.sv-privacy-body a,
.sv-privacy-body a * {
  text-decoration: none !important; border-bottom: none !important;
  color: rgba(255,255,255,.65) !important; outline: none !important;
}
.sv-privacy-section {
  padding: 180px 80px 120px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━
   COST COMPARISON — 人件費比較セクション
━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sv-cost {
  position: relative; padding: 140px 60px; overflow: hidden;
}
.sv-cost-inner {
  position: relative; z-index: 1; max-width: 1000px; margin: 0 auto;
}
.sv-cost-header { text-align: center; margin-bottom: 72px; }
.sv-cost-sub {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.6);
  line-height: 1.9; margin-top: 24px; letter-spacing: .04em;
}
.sv-cost-rows { display: flex; flex-direction: column; gap: 56px; }
.sv-cost-row {
  display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 24px;
}
.sv-cost-label {
  font-family: 'Noto Sans JP', sans-serif; font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,.8); letter-spacing: .04em; text-align: right;
  line-height: 1.5;
}
.sv-cost-label-sub {
  display: block; font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,.35); letter-spacing: .08em;
}
.sv-cost-bars { display: flex; flex-direction: column; gap: 12px; }
.sv-cost-bar-wrap { }
.sv-cost-bar-wrap:first-child { }
.sv-cost-bar-title {
  font-size: 12px; font-weight: 400; color: rgba(255,255,255,.5);
  margin-bottom: 6px; display: flex; align-items: baseline; gap: 8px;
}
.sv-cost-bar-title--fi { color: var(--blue-l); }
.sv-cost-bar-note { font-size: 10px; color: rgba(255,255,255,.3); }
.sv-cost-bar-row {
  position: relative; height: 36px;
}
.sv-cost-bar-track {
  width: 100%; height: 100%; background: rgba(255,255,255,.04);
  border-radius: 6px; overflow: hidden; position: relative;
}
.sv-cost-bar {
  height: 100%; border-radius: 6px; width: 0;
  transition: width var(--bar-speed, 1.6s) cubic-bezier(.25,.46,.45,.94);
}
/* 赤バー 段階色 */
.sv-cost-bar.human--lv1 {
  --bar-speed: 3.9s;
  background: linear-gradient(90deg, rgba(255,120,80,.12) 0%, rgba(255,120,80,.4) 100%);
  border: 1px solid rgba(255,120,80,.25);
}
.sv-cost-bar.human--lv2 {
  --bar-speed: 4.6s;
  background: linear-gradient(90deg, rgba(255,70,50,.15) 0%, rgba(255,70,50,.55) 100%);
  border: 1px solid rgba(255,70,50,.35);
}
.sv-cost-bar.human--lv3 {
  --bar-speed: 6.4s;
  background: linear-gradient(90deg, rgba(220,30,30,.2) 0%, rgba(220,30,30,.7) 100%);
  border: 1px solid rgba(220,30,30,.5);
}
.sv-cost-bar.fi {
  --bar-speed: 2.2s;
  background: linear-gradient(90deg, rgba(0,151,251,.15) 0%, rgba(0,151,251,.6) 100%);
  border: 1px solid rgba(0,151,251,.4);
}
.sv-cost-bar.run { width: var(--bar-w); }
/* 金額バッジ（棒の中に表示） */
.sv-cost-badge {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  padding: 0 10px; height: 100%;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  white-space: nowrap; z-index: 2;
  opacity: 0; transition: opacity .4s ease;
}
.sv-cost-badge.show { opacity: 1; }
.sv-cost-badge.human-badge {
  right: 10px; left: auto;
  background: rgba(20,8,8,.85); border: 1px solid rgba(255,60,60,.35);
  border-radius: 18px; min-width: 72px; height: 36px;
  color: rgba(255,140,120,1);
}
.sv-cost-badge.fi-badge {
  background: rgba(5,12,25,.85); border: 1px solid rgba(0,151,251,.35);
  border-radius: 18px; min-width: 72px; height: 36px;
  color: var(--blue-l);
}

/* 削減率（青バー右端・バッジの隣にインライン表示） */
.sv-cost-save-inline {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: flex; align-items: baseline; gap: 2px;
  white-space: nowrap; z-index: 2;
  opacity: 0; transition: opacity .4s ease 1.4s;
}
.sv-cost-save-inline.show { opacity: 1; }
.sv-cost-save-num {
  font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 700;
  color: var(--blue-l); line-height: 1;
}
.sv-cost-save-pct {
  font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 600;
  color: var(--blue-l);
}
.sv-cost-save-txt {
  font-size: 20px; font-weight: 500; color: rgba(255,255,255,.5); margin-left: 4px;
}
.sv-cost-note {
  text-align: center; font-size: 11px; color: rgba(255,255,255,.3);
  margin-top: 56px; line-height: 1.8;
}
.sv-cost-cta-text {
  font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.8;
}
.sv-cost-cta-text strong {
  color: var(--blue-l); font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — 768px
━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  .sv-privacy-section { padding: 120px 16px 80px; }
  .sv-hero { min-height: 55vh; }
  .sv-hero-content { padding: 0 24px 60px; }
  .sv-hero-h1 { font-size: clamp(32px, 9vw, 52px); }
  .sv-hero-sub { font-size: 14px; }

  .sv-what { padding: 100px 24px; }

  .sv-features { padding: 100px 24px; }
  .sv-features-header { margin-bottom: 48px; }
  .sv-feat-grid { grid-template-columns: 1fr; gap: 16px; }
  .sv-feat { padding: 40px 28px; }
  .sv-feat-num { font-size: 40px; }

  .sv-demo { padding: 80px 16px; }
  .sv-demo-header { margin-bottom: 40px; }
  .sv-demo-sub { font-size: 13px; }
  .sv-dash { grid-template-columns: 100px 1fr; height: 340px; }
  .sv-dash-side { padding: 10px 8px; }
  .sv-dash-logo { margin-bottom: 10px; padding-bottom: 8px; gap: 4px; }
  .sv-dash-logo svg { width: 12px; height: 8px; }
  .sv-dash-logo span { font-size: 5px; letter-spacing: .08em; }
  .sv-dash-nav-label { font-size: 6px; margin-bottom: 4px; margin-top: 4px; }
  .sv-dash-agent { font-size: 8px; padding: 3px 4px; gap: 4px; }
  .sv-dash-role { font-size: 5px; }
  .sv-dash-dot { width: 4px; height: 4px; }
  .sv-dash-status { gap: 6px; margin-top: 4px; }
  .sv-dash-stat-item { font-size: 6px; }
  .sv-dash-stat-num { font-size: 10px; }
  .sv-dash-topbar { padding: 8px 14px; }
  .sv-dash-topbar-title { font-size: 10px; }
  .sv-dash-topbar-status { font-size: 8px; }
  .sv-dash-chat { padding: 14px; gap: 10px; }
  .sv-chat-bubble { font-size: 11px; padding: 8px 12px; }
  .sv-chat-sender { font-size: 8px; }
  .sv-chat-msg { max-width: 92%; }
  .sv-dash-input { padding: 10px 14px; font-size: 11px; }
  .sv-demo-base { height: 14px; }
  .sv-demo-notch { width: 50px; height: 4px; }

  /* マネジメントダッシュボード モバイル */
  .sv-demo2 { padding-top: 0; }
  .sv-demo2 .sv-dash { height: 380px; }
  .sv-mgmt-body { padding: 10px; gap: 8px; }
  .sv-mgmt-kpis { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .sv-mgmt-kpi { padding: 8px 10px; border-radius: 8px; }
  .sv-mgmt-kpi-label { font-size: 7px; margin-bottom: 4px; }
  .sv-mgmt-kpi-val { font-size: 16px; }
  .sv-mgmt-kpi-unit { font-size: 9px; }
  .sv-mgmt-kpi-trend { font-size: 7px; margin-top: 3px; }
  .sv-mgmt-bottom { grid-template-columns: 1fr; gap: 8px; }
  .sv-mgmt-panel-head { font-size: 7px; margin-bottom: 6px; padding-bottom: 5px; }
  .sv-mgmt-tasks { padding: 10px 12px; border-radius: 8px; }
  .sv-mgmt-task { font-size: 9px; padding: 5px 0; gap: 6px; }
  .sv-mgmt-task-status { width: 5px; height: 5px; }
  .sv-mgmt-task-agent { font-size: 6px; }
  .sv-mgmt-chart { padding: 10px 12px; border-radius: 8px; }
  .sv-mgmt-bar-label { font-size: 6px; }
  .sv-demo-note { font-size: 9px; margin-top: 12px; }

  /* Cost Comparison mobile */
  .sv-cost { padding: 80px 20px; }
  .sv-cost-header { margin-bottom: 48px; }
  .sv-cost-sub { font-size: 14px; }
  .sv-cost-rows { gap: 40px; }
  .sv-cost-row { grid-template-columns: 1fr; gap: 12px; }
  .sv-cost-label { text-align: left; font-size: 16px; font-weight: 700; color: rgba(255,255,255,.8); }
  .sv-cost-bar-row { height: 30px; }
  .sv-cost-bar-track { height: 100%; }
  .sv-cost-bar-title { font-size: 11px; }
  .sv-cost-bar-note { font-size: 9px; }
  .sv-cost-bar-row { height: 28px; }
  .sv-cost-badge { font-size: 11px; padding: 0 6px; }
  .sv-cost-badge.human-badge { font-size: 11px; right: 6px; }
  .sv-cost-save-inline { gap: 1px; }
  .sv-cost-save-num { font-size: 28px; }
  .sv-cost-save-pct { font-size: 18px; }
  .sv-cost-save-txt { font-size: 12px; }
  .sv-cost-note { font-size: 10px; margin-top: 40px; text-align: left; }

  .sv-plans { padding: 80px 24px; }
  .sv-plans-header { margin-bottom: 40px; }
  .sv-plans-grid { grid-template-columns: 1fr; }
  .sv-plan-badge { right: 0; border-radius: 0 0 0 8px; }
  .sv-plan-head {
    flex-direction: column; align-items: flex-start; gap: 12px;
    padding: 24px 24px;
  }
  .sv-plan-name { font-size: 22px; }
  .sv-plan-price { font-size: 36px; }
  .sv-plan-body { grid-template-columns: 1fr; }
  .sv-plan-col {
    padding: 12px 20px; border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .sv-plan-col:last-of-type { border-right: none; }
  .sv-plan-tag { font-size: 11px; padding: 4px 12px; margin-bottom: 8px; }
  .sv-plan-desc { font-size: 13px; line-height: 1.7; }
  .sv-plan-col-h { font-size: 14px; margin-bottom: 8px; padding-bottom: 8px; }
  .sv-plan-list li { font-size: 13px; padding: 3px 0; gap: 8px; line-height: 1.6; }
  .sv-plan-list li::before { margin-top: 7px; }
  .sv-plan-api-box {
    padding: 10px 20px; flex-direction: row; gap: 10px; justify-content: flex-start;
  }
  .sv-plan-api-label { font-size: 10px; margin-bottom: 0; }
  .sv-plan-api-val { font-size: 16px; }
  .sv-plan-card { margin-bottom: 10px; }

  .sv-compare { padding: 0 16px 100px; }
  .sv-compare-inner { max-width: 100%; }
  .sv-table { width: 100%; table-layout: fixed; }
  .sv-table th { font-size: 12px; padding: 12px 6px; letter-spacing: .02em; }
  .sv-table td { font-size: 11.5px; padding: 10px 6px; letter-spacing: .02em; }
  .sv-table td:first-child { font-size: 11.5px; font-weight: 500; white-space: nowrap; }
  .sv-table th:first-child { width: 28%; }
  .sv-table th:nth-child(2),
  .sv-table th:nth-child(3),
  .sv-table th:nth-child(4) { width: 24%; }

  .sv-flow { padding: 100px 24px; }
  .sv-flow-header .sv-sec-h { font-size: clamp(28px, 8vw, 48px); }
  .sv-flow-timeline { padding-left: 80px; }
  .sv-flow-timeline::before { left: 28px; }
  .sv-flow-num { left: -80px; width: 56px; height: 56px; font-size: 17px; }
  .sv-flow-title { font-size: 20px; }
  .sv-flow-desc { font-size: 14px; }

  .sv-voice { padding: 100px 24px; }
  .sv-voice-grid { grid-template-columns: 1fr; gap: 16px; }
  .sv-voice-card { padding: 32px 24px; }
  .sv-voice-result-num { font-size: 28px; }

  .sv-versus { padding: 100px 16px; }
  .sv-matrix { margin-bottom: 48px; padding: 0 8px; }
  .sv-matrix-area { padding-top: 110%; }
  .sv-matrix-y-top,
  .sv-matrix-y-bottom { font-size: 10px; }
  .sv-matrix-x-left,
  .sv-matrix-x-right {
    font-size: 9px; writing-mode: vertical-rl; text-orientation: mixed;
    letter-spacing: .2em;
  }
  .sv-matrix-x-left { left: -4px; }
  .sv-matrix-x-right { right: -4px; }
  .sv-matrix-quadrant { font-size: 8px; letter-spacing: .06em; }
  .sq-tl { top: 4%; left: 4%; }
  .sq-tr { top: 4%; right: 4%; }
  .sq-bl { bottom: 4%; left: 4%; }
  .sq-br { bottom: 4%; right: 4%; }
  .sv-matrix-dot::before { width: 10px; height: 10px; margin-bottom: 6px; }
  .sv-dot-fi::before { width: 16px; height: 16px; }
  .sv-dot-label { font-size: 9px; }
  .sv-dot-fi .sv-dot-label { font-size: 10px; }
  .sv-matrix-annotation { font-size: 12px; }
  .sv-diff-grid { grid-template-columns: 1fr; gap: 16px; }
  .sv-diff-item { padding: 32px 24px; }

  /* 比較表：768px時のフォントサイズは上部で定義済み */

  .sv-nightlog { padding: 100px 16px; }
  .sv-nightlog .sv-demo-screen { height: 340px; }
  .sv-nightlog-topbar { padding: 10px 14px; }
  .sv-nightlog-title { font-size: 9px; }
  .sv-nightlog-body { padding: 16px 14px; gap: 14px; }
  .nl-msg-text { font-size: 12px; line-height: 1.8; padding-left: 34px; }
  .nl-msg-avatar { width: 24px; height: 24px; font-size: 9px; }
  .nl-msg-name { font-size: 11px; }
  .nl-msg-typing { padding-left: 34px; }

  .sv-faq { padding: 100px 24px; }
  .sv-faq-list { padding: 0 24px; }
  .sv-faq-q { font-size: 14px; padding: 22px 0; }

  .sv-plans-robot { width: 140px; right: -10px; top: 80px; }

  .sv-case-contact-unified { padding: 80px 24px 100px; }
  .sv-case-contact-unified .sv-case-inner { padding-bottom: 80px; }
  .sv-case { padding: 100px 24px; }
  .sv-case-grid { grid-template-columns: 1fr; gap: 16px; }
  .sv-case-card { padding: 32px 24px; }

  .sv-contact { padding: 100px 24px; }
  .sv-contact-info { flex-direction: column; gap: 32px; }
  .sv-contact-tel-num { font-size: 24px; }
  .sv-form-input { width: 100%; min-width: 0; box-sizing: border-box; }
  .sv-form .wpcf7-form-control-wrap { display: block; min-width: 0; }
  .sv-form .wpcf7-form-control { width: 100%; min-width: 0; box-sizing: border-box; }
  .sv-form .wpcf7-acceptance .wpcf7-list-item-label { font-size: 12px; }

  /* メッシュ軽量化 */
  .mesh-bg::before, .mesh-bg::after { filter: blur(80px); }
}

@media (max-width: 480px) {
  .sv-voice-grid { grid-template-columns: 1fr; }
  .sv-diff-grid { grid-template-columns: 1fr; }
  .sv-feat-grid { grid-template-columns: 1fr; }
  .sv-case-grid { grid-template-columns: 1fr; }
  .sv-plans-robot { display: none; }
}