/* ============================================================
   SHO-HAN 製品サイト v2 — モダンSaaSトレンド × 50〜60代の読みやすさ
   ・ベントーグリッド / ヒーロー製品ビジュアル / 控えめなモーション
   ・大きめ文字・高コントラスト・平易な日本語はそのまま
   ============================================================ */
:root {
  --navy: #0B1B3D;
  --navy-2: #0F2451;
  --indigo: #4F46E5;
  --blue: #2563EB;
  --sky: #38BDF8;
  --bg: #F7F9FD;
  --card: #FFFFFF;
  --text: #1F2937;
  --muted: #5B6472;
  --line: #E4E8F1;
  --radius: 20px;
  --maxw: 1120px;
  --shadow-sm: 0 2px 8px rgba(15,36,81,0.06);
  --shadow-md: 0 10px 30px rgba(15,36,81,0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
img { max-width: 100%; height: auto; }
a { color: var(--blue); }

/* ─────── スクロールで現れる（控えめモーション） ─────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─────── ヘッダー（すりガラス） ─────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; gap: 12px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand::before {
  content: ""; width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%230F2451'/%3E%3Cstop offset='1' stop-color='%234F46E5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='32' height='32' rx='9' fill='url(%23g)'/%3E%3Cpath d='M8 17l4 4 12-12' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.brand .yomi { display: none; }
.brand .logo { font-family: "Montserrat", sans-serif; font-size: 25px; font-weight: 800; letter-spacing: 0.02em; }
.brand .yomi { font-size: 13px; color: var(--muted); }
.gnav { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
.gnav a {
  text-decoration: none; color: var(--text);
  font-size: 15px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
}
.gnav a:hover { background: #EEF2FB; color: var(--blue); }
.gnav a.nav-cta {
  background: linear-gradient(120deg, #4F46E5, #2563EB); color: #fff; margin-left: 6px;
  box-shadow: 0 4px 12px rgba(79,70,229,0.3);
}
.gnav a.nav-cta:hover { filter: brightness(1.08); color: #fff; }

/* ─────── ヒーロー ─────── */
.hero {
  color: var(--navy-2); position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 90% -20%, rgba(99,102,241,0.14), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(14,165,233,0.12), transparent 60%),
    linear-gradient(180deg, #FDFEFF 0%, #F3F6FF 100%);
  padding: 68px 20px 96px;
}
/* 浮遊する光の玉（装飾） */
@keyframes blob-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -24px) scale(1.08); }
}
@keyframes blob-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-26px, 20px) scale(0.94); }
}
.hero .blob {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.hero .blob-a {
  width: 420px; height: 420px; top: -140px; right: 6%;
  background: rgba(99,102,241,0.20); animation: blob-a 11s ease-in-out infinite;
}
.hero .blob-b {
  width: 340px; height: 340px; bottom: -130px; left: -70px;
  background: rgba(14,165,233,0.18); animation: blob-b 13s ease-in-out infinite;
}
/* 見出しのグラデーションがゆっくり流れる */
@keyframes grad-slide { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.hero h1 .grad {
  background: linear-gradient(90deg, #4338CA, #2563EB, #7C3AED, #4338CA);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: grad-slide 8s linear infinite;
}
/* CTAボタンの光の帯 */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left .5s ease;
}
.btn-primary:hover::after { left: 130%; }
/* チャネルのながれ（マーキー） */
.hero-marquee {
  position: absolute; left: 0; right: 0; bottom: 0;
  border-top: 1px solid #E3E9F8;
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  overflow: hidden; padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.hero-marquee .track {
  display: inline-flex; gap: 14px; white-space: nowrap;
  animation: marquee 26s linear infinite; will-change: transform;
}
.hero-marquee .chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--navy-2);
  background: #fff; border: 1px solid #E0E6F4;
  border-radius: 999px; padding: 5px 16px; box-shadow: var(--shadow-sm);
}
@media (prefers-reduced-motion: reduce) {
  .hero .blob, .hero h1 .grad, .hero-marquee .track { animation: none; }
}
.hero .inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero .proof {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #DDE4F5; color: var(--navy-2);
  border-radius: 999px; padding: 6px 16px; font-size: 14px; margin-bottom: 20px;
  box-shadow: var(--shadow-sm); font-weight: 700;
}
.hero h1 {
  font-size: clamp(31px, 4.8vw, 52px);
  line-height: 1.38; margin: 0 0 18px; letter-spacing: 0.01em; font-weight: 900;
  color: var(--navy-2);
}
/* 蛍光マーカー風の強調 */
.hl {
  background: linear-gradient(transparent 64%, #CBDCFF 64%, #CBDCFF 94%, transparent 94%);
  font-weight: 700; padding: 0 2px;
}
.hero .lead {
  font-size: clamp(16px, 2.4vw, 19px);
  color: #47506B; max-width: 560px; margin: 0 0 30px;
}
.btn {
  display: inline-block; text-decoration: none;
  font-size: 17px; font-weight: 700;
  padding: 15px 32px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, filter .15s ease;
}
.btn-primary {
  background: linear-gradient(120deg, #4F46E5, #2563EB 55%, #0EA5E9);
  color: #fff; box-shadow: 0 10px 26px rgba(79,70,229,0.35);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-ghost { border: 2px solid #C3CCE8; color: var(--navy-2); margin-left: 10px; background: #fff; }
.btn-ghost:hover { background: #F0F4FF; border-color: #97A6D8; }

/* ヒーロー右: アプリ画面のイメージ（CSSモック・ゆっくり浮遊） */
.hero-visual { position: relative; min-width: 0; }
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(0.6deg); }
  50% { transform: translateY(-10px) rotate(0.6deg); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.mock {
  background: #FFFFFF; color: var(--text);
  border-radius: 18px; box-shadow: 0 30px 70px rgba(15,36,81,0.18), 0 6px 18px rgba(15,36,81,0.08);
  overflow: hidden; border: 1px solid #E4E8F4;
  transform: rotate(0.6deg);
  animation: float-y 7s ease-in-out infinite;
  position: relative; z-index: 2;
}
/* まわりに浮かぶチャネルカード（Yoom風） */
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 16px; font-size: 26px;
  background: #fff; border: 1px solid #E4E8F4;
  box-shadow: 0 12px 28px rgba(15,36,81,0.14);
  animation: bob 5s ease-in-out infinite;
}
.fc-1 { left: -26px; top: 4%;  animation-delay: 0s; }
.fc-2 { left: -34px; top: 38%; animation-delay: .9s; }
.fc-3 { left: -26px; top: 72%; animation-delay: 1.7s; }
.fc-4 { right: -20px; top: -22px; animation-delay: .5s; }
/* チャネル→画面へ流れる点線 */
.flow-lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: visible; }
@keyframes dashmove { to { stroke-dashoffset: -24; } }
.flow-lines path {
  fill: none; stroke: #97A6E8; stroke-width: 2;
  stroke-dasharray: 6 7; stroke-linecap: round;
  animation: dashmove 1.1s linear infinite;
  vector-effect: non-scaling-stroke; opacity: 0.85;
}
@media (prefers-reduced-motion: reduce) {
  .float-card { animation: none; }
  .flow-lines path { animation: none; }
}
.mock-toast .dot { animation: pulse-dot 2.4s ease-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .mock { animation: none; }
  .mock-toast .dot { animation: none; }
}
.mock-bar {
  background: #EEF1F8; padding: 10px 14px; display: flex; gap: 6px; align-items: center;
  border-bottom: 1px solid var(--line);
}
/* モック内: 左サイドバー（実アプリの紺レール風） */
.mock-inner { display: grid; grid-template-columns: 48px 1fr; }
.mock-side {
  background: linear-gradient(180deg, #0F2451, #1B3068);
  display: grid; gap: 12px; padding: 14px 0; justify-items: center; align-content: start;
}
.mock-side i { width: 24px; height: 24px; border-radius: 8px; background: rgba(255,255,255,0.18); }
.mock-side i.on { background: #7C9BFF; box-shadow: 0 0 0 3px rgba(124,155,255,0.25); }
/* 表示アニメの時間差 */
.pain-grid .reveal:nth-child(2), .bento .reveal:nth-child(2), .steps .reveal:nth-child(2), .ai-grid .reveal:nth-child(2) { transition-delay: .08s; }
.pain-grid .reveal:nth-child(3), .bento .reveal:nth-child(3), .steps .reveal:nth-child(3), .ai-grid .reveal:nth-child(3) { transition-delay: .16s; }
.bento .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: .24s; }
.bento .reveal:nth-child(5) { transition-delay: .1s; }
.bento .reveal:nth-child(6) { transition-delay: .18s; }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #D3D9E6; display: inline-block; }
.mock-bar .ttl { margin-left: 8px; font-size: 12.5px; font-weight: 700; color: var(--navy-2); }
.mock-body { padding: 16px; display: grid; gap: 12px; }
.mrow {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-sm);
}
.mrow .mi {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; font-size: 21px; flex: none;
}
.mi-blue   { background: linear-gradient(135deg, #DBEAFE, #EFF6FF); }
.mi-green  { background: linear-gradient(135deg, #DCFCE7, #F0FDF4); }
.mi-violet { background: linear-gradient(135deg, #EDE9FE, #F5F3FF); }
.mrow .mlabel { font-size: 12.5px; font-weight: 800; color: var(--navy-2); letter-spacing: 0.06em; }
.mcol { display: grid; gap: 7px; flex: 1; min-width: 0; }
.sk { height: 9px; border-radius: 6px; background: linear-gradient(90deg, #E6EAF4, #F2F5FB); }
.sk-70 { width: 70%; }
.sk-45 { width: 45%; }
.sk-85 { width: 85%; }
.mrow .tag {
  margin-left: auto; font-size: 11px; font-weight: 700;
  border-radius: 999px; padding: 3px 10px; white-space: nowrap; flex: none;
}
.tag-order { background: #E7F0FF; color: #1D4ED8; }
.tag-reply { background: #FEF3E2; color: #B45309; }
.tag-done  { background: #E8F7EE; color: #15803D; }
.mock-toast {
  position: absolute; right: -10px; bottom: -16px; z-index: 4;
  background: var(--navy-2); color: #fff;
  border-radius: 14px; padding: 12px 18px;
  font-size: 13.5px; font-weight: 700; box-shadow: var(--shadow-md);
  display: flex; gap: 10px; align-items: center;
}
.mock-toast .dot { width: 9px; height: 9px; border-radius: 50%; background: #4ADE80; }

/* ─────── SVG線画アイコン共通 ─────── */
.proof svg.pi{width:17px;height:17px;stroke:#1D8A4E;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;margin-right:8px;flex:none}
.hero-marquee .chip{gap:7px}
.hero-marquee .chip svg{width:15px;height:15px;stroke:#4F46E5;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:none}
.pain .pico svg,.point-list .pico svg{width:26px;height:26px;stroke:#4F46E5;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.pain .pico{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:13px;background:#EEF0FF;border:1px solid #E0E4F8;margin-bottom:10px}
.point-list .pico{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:12px;background:#EEF0FF;border:1px solid #E0E4F8;flex:none}
.minirow svg.mri{width:17px;height:17px;stroke:#5B6472;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:none}
.float-card svg, .icon svg, .aicon svg, .mi svg {
  width: 26px; height: 26px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.icon svg { width: 28px; height: 28px; }
.mi svg { width: 21px; height: 21px; }
.fc-1 { color: #2563EB; }
.fc-2 { color: #7C3AED; }
.fc-3 { color: #059669; }
.fc-4 { color: #D97706; }
.mi-blue { color: #2563EB; }
.mi-green { color: #059669; }
.mi-violet { color: #7C3AED; }
.icon.ic-blue { color: #2563EB; }
.icon.ic-violet { color: #7C3AED; }
.icon.ic-green { color: #059669; }
.icon.ic-amber { color: #D97706; }
.icon.ic-sky { color: #0284C7; }
.icon.ic-pink { color: #DB2777; }
.acard .aicon { color: #DBE4FF; }

/* ─────── セクション共通 ─────── */
section.block { padding: 64px 20px; }
section.block.alt { background: #fff; }
.block .inner { max-width: var(--maxw); margin: 0 auto; }
.block h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  color: var(--navy-2); margin: 0 0 10px; letter-spacing: 0.015em; font-weight: 900;
  line-height: 1.5;
}
.block .sub { color: var(--muted); margin: 0 0 34px; font-size: 16.5px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--navy-2); background: #EEF0FF; border-radius: 999px;
  padding: 5px 16px; margin-bottom: 14px;
}
.eyebrow .en {
  font-family: "Montserrat", sans-serif; font-weight: 800;
  font-size: 12px; letter-spacing: 0.18em; color: var(--indigo);
}
.eyebrow-dark .en { color: #A5B4FC; }

/* ─────── お困りごと（共感） ─────── */
.pain-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pain {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
  font-size: 16.5px;
}
.pain .pico { font-size: 30px; display: block; margin-bottom: 8px; }
.pain b { color: var(--navy-2); }
.pain-arrow { text-align: center; font-size: 30px; color: var(--indigo); margin: 22px 0 0; }

/* ─────── ベントーグリッド（できること） ─────── */
.bento {
  display: grid; gap: 18px;
  grid-template-columns: repeat(6, 1fr);
}
.bcard {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  min-width: 0;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bcard .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 16px; font-size: 28px;
  background: linear-gradient(135deg, #EEF2FF, #F8FAFF);
  border: 1px solid #E4E8F6;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform .18s ease;
}
.bcard:hover .icon { transform: scale(1.08) rotate(-3deg); }
/* 機能ごとのアクセントカラー（kintone風のポップさ） */
.icon.ic-blue   { background: linear-gradient(135deg, #DBEAFE, #EFF6FF); border-color: #C7DBFB; }
.icon.ic-violet { background: linear-gradient(135deg, #EDE9FE, #F5F3FF); border-color: #DDD4FB; }
.icon.ic-green  { background: linear-gradient(135deg, #DCFCE7, #F0FDF4); border-color: #BFEED1; }
.icon.ic-amber  { background: linear-gradient(135deg, #FEF3C7, #FFFBEB); border-color: #F7E4A9; }
.icon.ic-pink   { background: linear-gradient(135deg, #FCE7F3, #FDF2F8); border-color: #F8D3E7; }
.icon.ic-sky    { background: linear-gradient(135deg, #E0F2FE, #F0F9FF); border-color: #C2E5FB; }
.bcard h3 { font-size: 20px; margin: 14px 0 6px; color: var(--navy-2); }
.bcard p { margin: 0; font-size: 15.5px; color: var(--muted); }
.b-lg { grid-column: span 4; }
.b-sm { grid-column: span 2; }
.b-half { grid-column: span 3; }
.b-full { grid-column: span 6; }
.bcard.tint-blue   { background: linear-gradient(160deg, #F2F7FF, #FFFFFF 55%); }
.bcard.tint-violet { background: linear-gradient(160deg, #F4F2FF, #FFFFFF 55%); }
.bcard.tint-green  { background: linear-gradient(160deg, #F0FBF4, #FFFFFF 55%); }
.bcard.tint-amber  { background: linear-gradient(160deg, #FFF8EC, #FFFFFF 55%); }
.bcard .minirow {
  display: flex; gap: 10px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 12px; margin-top: 12px; font-size: 13px; color: var(--muted);
}
.bcard .minirow b { color: var(--navy-2); font-size: 13.5px; }

/* ─────── ベントー内ミニ表現（チャット吹き出し） ─────── */
.minibub { display: grid; gap: 7px; margin-top: 14px; }
.bub { border-radius: 12px; padding: 9px 12px; display: grid; gap: 5px; }
.bub .sk { height: 8px; }
.bub.in  { background: #F0F3FA; justify-self: start; width: 72%; border-bottom-left-radius: 4px; }
.bub.out { background: #E3EDFF; justify-self: end; width: 58%; border-bottom-right-radius: 4px; }

/* ─────── ダークセクション（AIのちから） ─────── */
.dark-band {
  color: #fff;
  background:
    radial-gradient(800px 400px at 15% -20%, rgba(79,70,229,0.5), transparent 60%),
    radial-gradient(600px 350px at 100% 120%, rgba(56,189,248,0.22), transparent 60%),
    linear-gradient(135deg, #0A1836, var(--navy-2) 60%, #12235c 100%);
}
.dark-band h2 { color: #fff; }
.dark-band .sub { color: #C9D4EF; }
.eyebrow-dark { background: rgba(255,255,255,0.12); color: #C7D2FE; }
.ai-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.acard {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 28px;
  transition: transform .18s ease, background .18s ease;
}
.acard:hover { transform: translateY(-4px); background: rgba(255,255,255,0.11); }
.acard .aicon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 15px; font-size: 26px;
  background: linear-gradient(135deg, rgba(147,197,253,0.25), rgba(196,181,253,0.2));
  border: 1px solid rgba(255,255,255,0.22);
}
.acard h3 { font-size: 19px; color: #fff; margin: 14px 0 6px; }
.acard p { margin: 0; font-size: 15px; color: #C9D4EF; }

/* ─────── ブランドマーク ─────── */
.brand .mark { flex: none; align-self: center; border-radius: 9px; }

/* ─────── 実際の画面（スクリーンショット） ─────── */
.shots { display: grid; gap: 24px; }
.shot-frame {
  margin: 0; background: #fff; position: relative;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.shot-bar {
  display: flex; gap: 6px; padding: 10px 14px;
  background: #F1F4FB; border-bottom: 1px solid var(--line);
}
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; background: #D3D9E6; }
.shot-frame img { display: block; width: 100%; height: auto; }
.shot-frame.lead { overflow: visible; margin-bottom: 34px; }
.shot-frame.lead > img { border-radius: 0 0 15px 15px; }
.shot-frame img.shot-phone {
  position: absolute; right: -18px; bottom: -40px; width: 124px; z-index: 3;
  border-radius: 20px; border: 5px solid #0F2451;
  box-shadow: 0 20px 40px rgba(15,36,81,0.3);
  animation: float-y 8s ease-in-out infinite;
}
.shot-grid { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; }
.shot-cap { font-size: 14.5px; color: var(--muted); text-align: center; padding: 10px 0 2px; }
@media (max-width: 760px) {
  .shot-grid { grid-template-columns: 1fr; }
  .shot-frame img.shot-phone { width: 88px; right: -6px; bottom: -18px; border-width: 4px; }
}
@media (prefers-reduced-motion: reduce) { .shot-frame img.shot-phone { animation: none; } }

/* ─────── 特徴（読みやすさ） ─────── */
.point-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.point-list li {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px;
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16.5px; box-shadow: var(--shadow-sm);
}
.point-list .pico { font-size: 26px; line-height: 1.4; }
.point-list b { color: var(--navy-2); }

/* ─────── 導入の流れ ─────── */
.steps { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
}
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px;
  background: linear-gradient(135deg, var(--navy-2), var(--indigo));
  color: #fff; font-weight: 800; font-size: 18px;
  margin-bottom: 12px;
}
.step h3 { font-size: 18px; margin: 0 0 6px; color: var(--navy-2); }
.step p { margin: 0; font-size: 15px; color: var(--muted); }

/* ─────── お問い合わせ帯 ─────── */
.cta {
  color: #fff; text-align: center;
  background:
    radial-gradient(600px 300px at 80% -30%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(120deg, #4F46E5, #2563EB 55%, #0EA5E9);
  padding: 64px 20px;
}
.cta h2 { font-size: clamp(23px, 3.5vw, 32px); margin: 0 0 10px; }
.cta p { color: #DDE4F5; margin: 0 0 28px; }
.cta .mail {
  font-size: clamp(18px, 3vw, 24px); font-weight: 800; color: #fff;
  text-decoration: none; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 30px; border-radius: 999px; display: inline-block;
  transition: background .15s ease, transform .15s ease;
}
.cta .mail:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.cta .note { font-size: 14px; color: #B9C4E4; margin-top: 16px; }

/* ─────── 記事ページ（規約・ポリシー等） ─────── */
.doc { max-width: 800px; margin: 0 auto; padding: 48px 20px 72px; }
.doc h1 { font-size: clamp(24px, 4vw, 32px); color: var(--navy-2); }
.doc h2 { font-size: 20px; color: var(--navy-2); margin-top: 40px; border-left: 5px solid var(--indigo); padding-left: 12px; }
.doc p, .doc li { font-size: 16px; }
.doc .date { color: var(--muted); font-size: 14px; }
.doc table { border-collapse: collapse; width: 100%; }
.doc th, .doc td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; font-size: 15.5px; }
.doc th { background: #EEF2FB; color: var(--navy-2); white-space: nowrap; }

/* ─────── FAQ ─────── */
.faq details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 12px; padding: 4px 18px;
}
.faq summary { font-size: 16.5px; font-weight: 700; color: var(--navy-2); padding: 12px 0; cursor: pointer; }
.faq details p { margin: 4px 0 16px; color: var(--text); }

/* ─────── フッター ─────── */
.site-footer { background: var(--navy); color: #C6CFE3; padding: 44px 20px 32px; font-size: 14.5px; }
.site-footer .inner { max-width: var(--maxw); margin: 0 auto; }
.site-footer a { color: #E3E9F8; text-decoration: none; margin-right: 18px; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .links { margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 6px 0; }
.site-footer .copy { color: #8FA0C4; font-size: 13px; }

/* ─────── レスポンシブ ─────── */
@media (max-width: 900px) {
  .hero .inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; }
  .b-lg, .b-sm, .b-half { grid-column: span 3; }
}
@media (max-width: 640px) {
  .gnav a { padding: 6px 10px; font-size: 14px; min-height: 44px; display: inline-flex; align-items: center; }
  .site-footer .links a { min-height: 44px; display: inline-flex; align-items: center; }
  .sub a, .doc p a, .faq details p a { padding: 12px 4px; margin: -12px -4px; }
  .btn-ghost { margin-left: 0; margin-top: 10px; }
  .bento { grid-template-columns: 1fr; }
  .b-lg, .b-sm, .b-half, .b-full { grid-column: span 1; }
  .mock-toast { right: 4px; bottom: -12px; }
  .hero-visual { margin-left: 26px; margin-right: 10px; }
  .float-card { width: 48px; height: 48px; font-size: 21px; border-radius: 13px; }
  .fc-4 { right: -6px; top: -14px; }
}
