/* ============================================================
   MoKARE LP — lp.css
   welcome.blade.php 専用（rules/commerce/errors は styles.css を使用）
   ============================================================ */

:root {
  --ink: #0f1b2d;
  --ink-2: #0f1b2d;
  --muted: #0f1b2d; /* 薄グレー禁止: 本文も黒で統一（強弱はサイズ・太さで） */
  --faint: #0f1b2d;
  --brand: #06c755;
  --brand-dark: #05a648;
  --brand-ink: #027a3b;
  --brand2: #00c2b8;
  --brand3: #1e9bff;
  --grad: linear-gradient(115deg, #06c755 0%, #00c2b8 48%, #1e9bff 100%);
  --deep: #0b2e22;
  --deep-2: #10402f;
  --bg: #ffffff;
  --bg-soft: #f5f8f6;
  --bg-mint: #eef7f1;
  --line: #e5ebe7;
  --radius: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 45, .06), 0 4px 12px rgba(15, 27, 45, .05);
  --shadow-md: 0 2px 6px rgba(15, 27, 45, .07), 0 16px 40px rgba(15, 27, 45, .10);
  --shadow-lg: 0 6px 16px rgba(15, 27, 45, .10), 0 32px 72px rgba(15, 27, 45, .16);
  --container: 1160px;
  --header-h: 72px;
}

/* コーポレート・ロゴ ver3 Bold（SIL OFL 1.1 / LOGOTYPE.JP）
   ひらがな・カタカナ・英数字のみのサブセット。漢字は元フォントも源ノ角ゴシックのため
   Noto Sans JP にフォールバックさせる（同一系統なので見た目が揃う）。
   ウェイトは Bold 一種のみ。合成太字を防ぐため 100〜900 を単一マスターに割り当てる。 */
@font-face {
  font-family: 'Corporate Logo';
  src: url('/fonts/CorporateLogo-Bold-subset.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Corporate Logo', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  font-weight: 700; /* 全文字bold統一（コーポレート・ロゴは Bold 一種のため漢字側も 700 で揃える） */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 汎用: セクション見出し ---------- */
.section { padding: 104px 0; }
.section-soft { background: var(--bg-soft); }

.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--brand-ink);
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}
.sec-head:not(.center) .eyebrow::after { display: none; }

.sec-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .01em;
}

.sec-lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}
.header.scrolled { box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(15, 27, 45, .06); }

.nav {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo a { display: flex; align-items: center; }
.logo img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  padding: 10px 14px;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }

.nav-links .nav-cta {
  margin-left: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(6, 199, 85, .35);
}
.nav-links .nav-cta:hover { background: var(--brand-dark); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border: 0;
  background: transparent;
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(6, 199, 85, .38);
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 8px 26px rgba(6, 199, 85, .45); transform: translateY(-1px); }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: #c9d4cd; transform: translateY(-1px); }

.btn-white {
  background: #fff;
  color: var(--deep);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}
.btn-white:hover { transform: translateY(-1px); }

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 150px;
  background: url('/img/lp/hero-bg.jpg') center 38% / cover no-repeat, var(--deep);
  overflow: hidden;
}
/* 写真の上に明るいグリーン→シアン→ブルーのグラデーションオーバーレイ */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(3, 168, 88, .95) 0%,
    rgba(0, 175, 160, .88) 46%,
    rgba(20, 140, 235, .78) 100%
  );
}
/* 右下の白い斜めカット */
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 170px;
  background: #fff;
  clip-path: polygon(0 100%, 100% 18%, 100% 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  align-items: center;
  gap: 40px;
}

.hero-text { min-width: 0; color: #fff; }
.hero-text h1 {
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: .01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .25);
}
.hero-text h1 em {
  font-style: normal;
  color: #fff;
  background: linear-gradient(transparent 70%, rgba(255, 255, 255, .34) 70%);
}

.hero-description {
  margin-top: 22px;
  color: #fff;
  font-size: 16.5px;
  max-width: 30em;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-notes {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.hero-notes li {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-notes li::before {
  content: "✓";
  font-weight: 700;
  color: #fff;
}

.hero .btn-primary {
  background: #fff;
  color: var(--brand-ink);
  box-shadow: 0 10px 28px rgba(0, 40, 30, .22);
}
.hero .btn-primary:hover { background: #f2fff8; transform: translateY(-1px); }

.hero .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .65);
  color: #fff;
}
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

/* ヒーロービジュアル（ノートPC + スマホ + バッジのコラージュ） */
.hero-visual {
  position: relative;
  padding: 36px 0 34px 62px;
}

.mock-laptop {
  position: relative;
  width: 99%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .38));
  animation: float-a 7s ease-in-out infinite;
}
.lap-screen {
  background: #0d1522;
  border-radius: 16px 16px 0 0;
  padding: 12px 12px 16px;
  border: 1px solid rgba(255, 255, 255, .08);
}
.lap-screen img { border-radius: 5px; }
.lap-base {
  position: relative;
  width: 114%;
  margin-left: -7%;
  height: 17px;
  background: linear-gradient(180deg, #eef2f5 0%, #cdd7de 78%, #aab6c0 100%);
  border-radius: 2px 2px 14px 14px;
}
.lap-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 7px;
  background: #b7c2cb;
  border-radius: 0 0 10px 10px;
}

.hero-visual .frame-phone {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 192px;
  z-index: 2;
  animation: float-b 8s ease-in-out infinite;
}

/* 「無料デモ実施中」バッジ */
.hero-badge {
  position: absolute;
  top: -18px;
  right: -10px;
  z-index: 3;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(7deg);
  box-shadow: 0 16px 38px rgba(0, 45, 60, .28);
  animation: float-b 6s ease-in-out infinite;
}
.hero-badge::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 0;
  transform: rotate(83deg) skew(14deg, 14deg);
  z-index: -9999;
  box-shadow: none;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .mock-laptop,
  .hero-badge,
  .hero-visual .frame-phone { animation: none; }
}

/* ---------- フレーム部品 ---------- */
.frame-browser {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 27, 45, .08);
  box-shadow: var(--shadow-lg);
}
.frame-browser .bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f1f4f2;
  border-bottom: 1px solid rgba(15, 27, 45, .06);
}
.frame-browser .bar i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #dde3df;
}
.frame-browser .bar i:nth-child(1) { background: #ff5f57; }
.frame-browser .bar i:nth-child(2) { background: #febc2e; }
.frame-browser .bar i:nth-child(3) { background: #28c840; }
.frame-browser .bar .url {
  flex: 1;
  margin-left: 8px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 27, 45, .06);
  color: var(--faint);
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  overflow: hidden;
  white-space: nowrap;
}

.frame-phone {
  border-radius: 34px;
  overflow: hidden;
  background: #101828;
  padding: 8px;
  box-shadow: var(--shadow-lg);
}
.frame-phone .screen {
  border-radius: 27px;
  overflow: hidden;
  background: #fff;
}

/* ---------- 実績バンド ---------- */
.band {
  background: #fff;
  color: var(--ink);
  padding: 64px 0 56px;
}
.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.band-item .k {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.band-item .v {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}
.band-item .v .num {
  font-style: normal;
  font-size: clamp(58px, 6.4vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.band-item .v .unit {
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--ink);
  font-weight: 700;
  padding-bottom: 4px;
  white-space: nowrap;
}
.band-note {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--ink);
}

/* ---------- 課題（お悩みイラスト + 吹き出し） ---------- */
#problems { background: #fafafa; }
.onayami {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.onayami-figure {
  display: flex;
  justify-content: center;
}
.onayami-figure img {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 18px 30px rgba(15, 27, 45, .10));
}
.onayami-bubbles {
  display: grid;
  gap: 26px;
}
.bubble {
  position: relative;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: 7px 7px 0 rgba(15, 27, 45, .08);
}
.bubble:nth-child(odd) { transform: rotate(-.5deg); }
.bubble:nth-child(even) { transform: rotate(.5deg); }
/* 吹き出しのしっぽ（イラスト側 = 左向き） */
.bubble::before,
.bubble::after {
  content: "";
  position: absolute;
  top: 32px;
  left: -17px;
  border: 9px solid transparent;
  border-left: 0;
  border-right: 16px solid var(--ink);
}
.bubble::after {
  left: -12px;
  border-right-color: #fff;
}
.bubble h3 {
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.6;
}
.bubble p {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--muted);
}

.problems-close {
  margin-top: 56px;
  text-align: center;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
}
.problems-close em {
  font-style: normal;
  color: var(--brand-ink);
  background: linear-gradient(transparent 68%, rgba(6, 199, 85, .22) 68%);
}

/* ---------- お客様の体験（LIFFフロー） ---------- */
.exp-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.exp-step { position: relative; }
.exp-step .frame-phone { width: 100%; }
.exp-step::after {
  content: "";
  position: absolute;
  top: 42%;
  right: -22px;
  width: 16px;
  height: 16px;
  border-top: 3px solid #b9c8bf;
  border-right: 3px solid #b9c8bf;
  transform: rotate(45deg);
}
.exp-step:last-child::after { display: none; }

.exp-cap {
  margin-top: 18px;
  text-align: center;
}
.exp-cap .step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.exp-cap h3 { font-size: 16px; font-weight: 700; }
.exp-cap p { font-size: 13px; color: var(--muted); margin-top: 4px; }

.exp-notes {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.exp-notes li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.exp-notes li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
}

/* ---------- 機能 ---------- */
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding: 56px 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row.reverse .feature-media { order: 2; }

.feature-badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brand-ink);
  background: var(--bg-mint);
  border-radius: 8px;
  padding: 5px 12px;
}
.feature-text h3 {
  margin-top: 16px;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.5;
}
.feature-text > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
}
.feature-points {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.feature-points li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 700;
}
.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-mint);
}
.feature-points li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 1px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-ink);
}

.feature-media .frame-browser { width: 100%; }
.feature-media.is-phone {
  display: flex;
  justify-content: center;
}
.feature-media.is-phone .frame-phone { width: min(300px, 78%); }

/* 2連カード（レポート / メニュー） */
.duo-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.duo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.duo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.duo-card .shot {
  aspect-ratio: 16 / 9.6;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.duo-card .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.duo-card .body { padding: 24px 28px 28px; }
.duo-card h3 { font-size: 19px; font-weight: 700; }
.duo-card p { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* サブ機能グリッド */
.subfeatures {
  margin-top: 64px;
}
.subfeatures h3 {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--faint);
  letter-spacing: .12em;
  margin-bottom: 28px;
}
.sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sub-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
}
.sub-card .icon { font-size: 22px; }
.sub-card h4 { margin-top: 10px; font-size: 15.5px; font-weight: 700; }
.sub-card p { margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ---------- 導入事例 ---------- */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.case-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 38px 36px;
  box-shadow: var(--shadow-sm);
}
.case-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 26px;
  font-size: 84px;
  line-height: 1;
  font-weight: 700;
  color: rgba(6, 199, 85, .18);
  font-family: Georgia, serif;
}
.case-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-ink);
  background: var(--bg-mint);
  border-radius: 999px;
  padding: 4px 14px;
}
.case-card h3 {
  margin-top: 16px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}
.case-card p {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--muted);
}

/* ---------- お役立ち資料（左コラージュ + 右リスト） ---------- */
.section-resources { background: #fff; }
.res-layout {
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  gap: 56px;
  align-items: center;
}
.res-visual {
  position: relative;
  border-radius: 28px;
  background: var(--grad);
  min-height: 560px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.res-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 22px 22px;
}
.res-visual .res-doc { position: absolute; width: 108px; height: 146px; }
.res-visual .rv-a { top: 7%; left: 10%; transform: rotate(-8deg); }
.res-visual .rv-b { top: 10%; right: 12%; transform: rotate(6deg); }
.res-visual .rv-c { bottom: 8%; left: 12%; transform: rotate(5deg); }
.res-shot {
  position: absolute;
  border-radius: 12px;
  border: 5px solid #fff;
  box-shadow: 0 18px 40px rgba(0, 30, 50, .3);
}
.res-shot.rv-d { width: 56%; top: 38%; right: 7%; transform: rotate(-3deg); }
.res-shot.rv-e { width: 30%; bottom: 6%; right: 14%; transform: rotate(6deg); }

.side-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
}
.side-label i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-style: normal;
  font-size: 12px;
}
.res-main .sec-title { margin-top: 14px; }
.res-main .sec-lead { margin-top: 12px; font-size: 14.5px; }

.res-rows {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}
.res-row {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 16px 24px;
  transition: transform .25s, box-shadow .25s;
}
.res-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.res-row .res-doc {
  flex-shrink: 0;
  width: 58px;
  height: 76px;
  border-radius: 6px;
}
.res-row .res-doc::before { height: 20px; }
.res-row .res-doc::after { left: 9px; right: 9px; bottom: 9px; height: 20px; }
.res-row .res-ico { top: 26px; font-size: 19px; }
.res-row h3 {
  flex: 1;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.6;
}
.res-dl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-ink);
  white-space: nowrap;
}
.res-dl i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-style: normal;
  font-size: 16px;
}
.res-doc {
  position: relative;
  width: 94px;
  height: 126px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(15, 27, 45, .16);
  overflow: hidden;
}
.res-doc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: var(--grad);
}
.res-doc::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 30px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(15, 27, 45, .14) 0 3px,
    transparent 3px 12px
  );
}
.res-ico {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  line-height: 1;
}
/* ---------- 料金プラン ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px 32px;
  box-shadow: var(--shadow-sm);
}
.price-card.is-popular {
  border: 2.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box;
  box-shadow: var(--shadow-md);
  transform: scale(1.04);
  z-index: 1;
}
.popular-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 150, 140, .3);
  white-space: nowrap;
}
.price-card h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.price-for {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}
.price {
  margin: 22px 0 4px;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price .yen {
  font-size: 24px;
  margin-right: 2px;
}
.price .per {
  font-size: 14px;
  font-weight: 700;
  -webkit-text-fill-color: var(--ink);
  color: var(--ink);
  margin-left: 4px;
}
.price.price-ask { font-size: 34px; padding-top: 6px; }
.price-points {
  margin: 24px 0 28px;
  display: grid;
  gap: 10px;
  flex: 1;
}
.price-points li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 700;
}
.price-points li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 0;
  font-weight: 700;
  color: var(--brand);
}
.price-card .btn { width: 100%; }
.price-note {
  margin-top: 36px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink);
}

/* ---------- 導入の流れ（4 STEP） ---------- */
.flow-banner {
  position: relative;
  max-width: 780px;
  margin: 0 auto 64px;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  padding: 22px 40px;
  text-align: center;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 14px 34px rgba(0, 140, 150, .25);
}
.flow-banner .big {
  font-size: 1.55em;
  line-height: 1;
  margin: 0 2px;
}
.flow-banner::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  background: #00bfb2;
  border-radius: 3px;
  transform: rotate(45deg);
  z-index: -1;
}

.flow4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.flow4-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-pill {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  border-radius: 999px;
  padding: 8px 30px;
}
.flow4-card h3 {
  margin-top: 18px;
  font-size: 16.5px;
  font-weight: 700;
}
.flow4-ill {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 8px 0 4px;
}
.flow4-card p {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.8;
}

.flow-support {
  position: relative;
  margin-top: 72px;
  padding: 44px 16px 36px;
  border-top: 2.5px solid var(--brand);
  border-bottom: 2.5px solid var(--brand);
  text-align: center;
}
.support-pill {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 999px;
  padding: 7px 24px;
  white-space: nowrap;
}
.support-catch {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 700;
  color: var(--ink);
}
.support-main {
  margin-top: 16px;
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 700;
  line-height: 2;
}
.support-main mark {
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 8px;
  margin: 0 2px;
}

/* ---------- FAQ（左見出し + 右アコーディオン） ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 34fr) minmax(0, 66fr);
  gap: 64px;
  align-items: start;
}
.faq-head .sec-title { margin-top: 14px; }

.faq-list {
  display: grid;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item.active { box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 30px;
  cursor: pointer;
}
.faq-question h3 {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.6;
}
.faq-question h3::before {
  content: "Q.";
  color: var(--brand-ink);
  font-weight: 700;
  font-size: 1.25em;
  margin-right: 12px;
}
.faq-toggle-icon {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--brand-ink);
  border-bottom: 3px solid var(--brand-ink);
  border-radius: 1px;
  transform: rotate(45deg) translateY(-3px);
  transition: transform .3s;
}
.faq-item.active .faq-toggle-icon {
  transform: rotate(225deg) translateY(-3px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding: 0 30px 24px;
  font-size: 14.5px;
  color: var(--ink);
}
.faq-answer p::before {
  content: "A.";
  color: var(--brand-ink);
  font-weight: 700;
  font-size: 1.2em;
  margin-right: 12px;
}
.faq-item.active .faq-answer { max-height: 280px; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: var(--grad);
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(120deg, transparent 45%, #000 90%);
  -webkit-mask-image: linear-gradient(120deg, transparent 45%, #000 90%);
}
.cta-inner {
  position: relative;
  text-align: center;
}
.cta h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.5;
}
.cta .cta-lead {
  margin-top: 16px;
  color: #fff;
  font-size: 15.5px;
}
.cta-cards {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-card {
  min-width: 300px;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 34px;
  box-shadow: 0 18px 44px rgba(0, 50, 70, .22);
  transition: transform .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(0, 50, 70, .3); }
.contact-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.contact-card .contact-value {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--brand-ink);
}
.contact-card .contact-note {
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink);
}

/* ---------- 会社概要（波形 + グラデーション帯 + 地図） ---------- */
.company-sec {
  background: #fff;
  padding-top: 72px;
}
.company-wave {
  display: block;
  width: 100%;
  height: 110px;
}
.company-band {
  background: linear-gradient(90deg, #06c755 0%, #00c2b8 48%, #1e9bff 100%);
  color: #fff;
  margin-top: -1px;
  padding: 40px 0 90px;
}
.company-label {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3em;
  color: #fff;
}
.company-title {
  text-align: center;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  margin-top: 6px;
}
.company-list {
  width: 100%;
  max-width: 880px;
  margin: 52px auto 0;
  border-collapse: collapse;
}
.company-list th,
.company-list td {
  text-align: left;
  padding: 24px 20px;
  font-size: 15px;
  color: #fff;
  border-bottom: 1.5px solid rgba(255, 255, 255, .55);
  vertical-align: top;
}
.company-list tr:first-child th,
.company-list tr:first-child td {
  border-top: 1.5px solid rgba(255, 255, 255, .55);
}
.company-list th {
  width: 190px;
  font-weight: 700;
  white-space: nowrap;
}
.company-map {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

/* ---------- フッター ---------- */
.footer {
  background: var(--bg-soft);
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-info img { height: 30px; margin-bottom: 18px; }
.footer-info p { font-size: 13px; line-height: 2; }
.footer-info .footer-company { font-weight: 700; color: var(--ink); font-size: 15px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 40px;
  align-content: start;
}
.footer-links a {
  font-size: 13.5px;
  padding: 4px 0;
  transition: color .2s;
}
.footer-links a:hover { color: var(--brand-ink); }
.footer-copy {
  max-width: var(--container);
  margin: 48px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink);
  text-align: center;
}

/* ---------- スクロールリビール ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
}
.reveal.shown { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 1024px) {
  .section { padding: 84px 0; }

  .res-layout { grid-template-columns: 1fr; gap: 40px; }
  .res-visual { min-height: 320px; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }

  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-text { text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons, .hero-notes { justify-content: center; }
  .hero-visual { padding: 30px 0 30px 36px; }
  .mock-laptop { width: 100%; }
  .hero-visual .frame-phone { width: 168px; }
  .hero-badge { width: 112px; height: 112px; font-size: 16px; top: -14px; right: 0; }

  .exp-flow { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .exp-step:nth-child(2)::after { display: none; }

  .onayami { grid-template-columns: 1fr; gap: 36px; max-width: 620px; }
  .onayami-figure img { max-width: 220px; }
  .bubble::before,
  .bubble::after {
    top: -17px;
    left: 40px;
    border: 9px solid transparent;
    border-top: 0;
    border-bottom: 16px solid var(--ink);
  }
  .bubble::after {
    top: -12px;
    border-bottom-color: #fff;
  }
  .sub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { padding: 68px 0; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 16px 20px 28px;
    box-shadow: 0 24px 40px rgba(15, 27, 45, .12);
    transform: translateY(-130%);
    transition: transform .35s ease;
  }
  .nav-links.active { transform: translateY(0); }
  .nav-links a { padding: 15px 8px; font-size: 15px; border-bottom: 1px solid var(--bg-soft); }
  .nav-links .nav-cta {
    margin: 18px 0 0;
    text-align: center;
    justify-content: center;
    display: flex;
    border-bottom: 0;
  }

  .hero { padding-top: calc(var(--header-h) + 44px); }

  .band-grid { grid-template-columns: 1fr; gap: 28px; }

  .feature-row { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .feature-row.reverse .feature-media { order: 0; }

  .duo-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }

  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 30px; }
  .price-card.is-popular { transform: none; }

  .flow4-grid { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin: 0 auto; }
  .flow-banner { padding: 16px 28px; }
  .support-main mark { display: inline-block; margin: 2px; }

  .cta-cards { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 420px; }

  .footer-inner { flex-direction: column; gap: 32px; }

  .company-table th { width: 96px; padding: 14px 16px; font-size: 13px; }
  .company-table td { padding: 14px 16px; font-size: 13.5px; }
}

@media (max-width: 520px) {
  .exp-flow { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; gap: 44px; }
  .exp-step::after { display: none; }
  .sub-grid { grid-template-columns: 1fr; }
  .hero-visual { padding-left: 24px; }
  .hero-visual .frame-phone { width: 140px; }
  .hero-badge { width: 96px; height: 96px; font-size: 14px; }
  .hero::after { height: 90px; }
  .flow4-grid { grid-template-columns: 1fr; max-width: 320px; }

  .res-visual { min-height: 260px; }
  .res-visual .res-doc { width: 78px; height: 104px; }
  .res-row { gap: 14px; padding: 14px 16px; }
  .res-row h3 { font-size: 13.5px; }
  .res-dl { font-size: 0; gap: 0; }
  .res-dl i { font-size: 15px; }

  .company-list th { width: 92px; }
  .company-list th, .company-list td { padding: 16px 10px; font-size: 13.5px; }
  .company-map { height: 300px; }
  .company-wave { height: 64px; }
}
