/* =========================================================
   オーフレックス HP / style.css
   ========================================================= */

:root {
  --c-primary: #1e3a5f;
  --c-primary-dark: #14263f;
  --c-primary-light: #2c4a6b;
  --c-accent: #06c755;
  --c-accent-dark: #05a948;
  --c-text: #2c3e50;
  --c-text-sub: #5a6b7c;
  --c-text-muted: #8a98a8;
  --c-bg: #ffffff;
  --c-bg-soft: #f5f8fc;
  --c-bg-light: #fafbfd;
  --c-border: #e4ebf3;
  --c-shadow: 0 10px 30px rgba(30, 58, 95, 0.08);
  --c-shadow-lg: 0 20px 50px rgba(30, 58, 95, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;
  --max-w: 1120px;
  --max-w-narrow: 820px;
  --header-h: 72px;
  --font-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-heading: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.85;
  letter-spacing: 0.02em;
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
p { font-size: 1.05rem; }
strong { font-weight: 700; color: var(--c-primary); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { opacity: .8; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); line-height: 1.4; font-weight: 700; color: var(--c-primary); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
iframe { border: 0; }

.sp-show { display: none; }
.sp-hide { display: inline; }
@media (max-width: 768px) {
  .sp-show { display: inline; }
  .sp-hide { display: none; }
}

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--max-w-narrow); }

/* 「（無料・60分）」のように途中で千切れてほしくない語のかたまり（全画面共通） */
.no-break { display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: 2px solid transparent;
  min-width: 200px;
  text-align: center;
  line-height: 1.3;
}
.btn small { font-size: .75em; font-weight: 500; opacity: .85; letter-spacing: .02em; }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--c-primary); color: #fff; box-shadow: 0 8px 20px rgba(30,58,95,.25); }
.btn--primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); opacity: 1; box-shadow: 0 12px 28px rgba(30,58,95,.35); }

.btn--line { background: var(--c-accent); color: #fff; box-shadow: 0 8px 20px rgba(6,199,85,.25); }
.btn--line:hover { background: var(--c-accent-dark); transform: translateY(-2px); opacity: 1; box-shadow: 0 12px 28px rgba(6,199,85,.35); }

.btn--white { background: #fff; color: var(--c-primary); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.btn--white:hover { transform: translateY(-2px); opacity: 1; }

.btn--outline { background: transparent; border-color: var(--c-primary); color: var(--c-primary); }
.btn--outline:hover { background: var(--c-primary); color: #fff; opacity: 1; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  z-index: 100;
}
.header__inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px; /* ロゴとメニューの間に最低限の余白を確保 */
}
.header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.header__logo img { width: 40px; height: 40px; }
.header__logo-text { font-family: var(--font-heading); font-weight: 900; font-size: 1.15rem; color: var(--c-primary); letter-spacing: .04em; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav__list { display: flex; gap: 26px; }
/* ロゴ（見出しフォント）とメニュー（本文フォント）の描画位置差を補正するため 3px 下げる */
.nav__list a { color: var(--c-text); font-weight: 500; font-size: .85rem; position: relative; top: 3px; padding: 6px 0; white-space: nowrap; }
.nav__list a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--c-accent);
  transition: width .25s;
}
.nav__list a:hover { opacity: 1; }
.nav__list a:hover::after { width: 100%; }
.nav__cta { min-width: auto; height: 45px; padding: 0 24px; font-size: .88rem; line-height: 1.2; white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-primary);
  margin: 5px auto;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ナビは項目が多いため、1行に収まらない幅では早めにハンバーガーへ切り替える（実績・声 追加後は1300px） */
@media (max-width: 1300px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--c-border);
    transform: translateY(-150%);
    transition: transform .3s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--c-border); }
  .nav__list a { display: block; top: 0; padding: 16px 0; font-size: 1.05rem; white-space: normal; }
  .nav__cta { margin-top: 20px; min-width: auto; font-size: 1.05rem; padding: 14px 22px; }
}

/* ---------- Section base ---------- */
.section { padding: 100px 0; }
.section--light { background: var(--c-bg-soft); }
.section--dark { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%); color: #fff; }

.section__title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--c-primary);
  line-height: 1.5;
}
.section__title--light { color: #fff; }
.section__title-en {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--c-accent);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.section__title--light .section__title-en { color: #6de3a5; }
.section__lead {
  text-align: center;
  color: var(--c-text-sub);
  font-size: 1.15rem;
  max-width: 760px;
  margin: 0 auto 60px;
  line-height: 1.9;
}
.section__lead strong { color: var(--c-primary); font-size: 1.1em; }

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section__lead { margin-bottom: 40px; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 80px;
  background: linear-gradient(135deg, #f7fbff 0%, #eaf4f8 55%, #e8f9f1 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,199,85,.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,58,95,.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(6,199,85,.12);
  color: var(--c-accent-dark);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  line-height: 1.5;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero__accent {
  background: linear-gradient(transparent 65%, rgba(6,199,85,.3) 65%);
  padding: 0 4px;
}
.hero__lead { font-size: 1.15rem; line-height: 1.9; color: var(--c-text-sub); margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.hero__cta .btn { flex: 0 1 auto; }
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text-sub);
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__points li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
}

/* Hero visual */
.hero__visual { position: relative; min-height: 400px; }
.hero__visual-inner {
  position: relative;
  width: 100%; height: 100%;
  min-height: 400px;
}
.hero__logo-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  opacity: .18;
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero__chat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 18px;
  box-shadow: var(--c-shadow);
  font-size: .95rem;
  font-weight: 500;
  color: var(--c-text);
  animation: float 4s ease-in-out infinite;
}
.hero__chat span { font-size: 1.5rem; }
.hero__chat p { margin: 0; }
.hero__chat--1 { top: 10%; left: 10%; animation-delay: 0s; }
.hero__chat--2 { top: 45%; right: 0; animation-delay: 1.3s; }
.hero__chat--3 { bottom: 10%; left: 20%; animation-delay: 2.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; min-height: 280px; }
  .hero__visual-inner { min-height: 280px; }
  .hero__logo-bg { width: 200px; height: 200px; }
  .hero__chat--2 { top: 40%; }
  .hero__chat--3 { bottom: 4%; }
}
@media (max-width: 768px) {
  .hero { padding: calc(var(--header-h) + 30px) 0 60px; }
  .hero__cta .btn { flex: 1 1 100%; }
}
@media (max-width: 600px) {
  /* 価格の「／月（税別）」も千切れないようにひとかたまりにする */
  .plan__price small { display: inline-block; }
  /* 見出しの「の」だけが次の行にはみ出さない文字サイズにする */
  .hero__title { font-size: 1.6rem; }
  .hero__accent { display: inline-block; }
  .hero__tail { display: inline-block; }
  /* 吹き出し同士が重ならないよう、エリアを広げて上・中・下に配置し直す */
  .hero__visual { min-height: 340px; }
  .hero__visual-inner { min-height: 340px; }
  .hero__chat { font-size: .88rem; padding: 12px 16px; }
  .hero__chat span { font-size: 1.25rem; }
  .hero__chat--1 { top: 0; left: 0; }
  .hero__chat--2 { top: 40%; right: 0; }
  .hero__chat--3 { bottom: 0; left: 8%; }
}

/* =========================================================
   Pains
   ========================================================= */
.pains__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.pains__item {
  background: #fff;
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform .2s, border-color .2s;
}
.pains__item:hover { transform: translateY(-4px); border-color: var(--c-accent); }
.pains__icon { font-size: 1.8rem; flex-shrink: 0; }
.pains__item p { margin: 0; font-weight: 500; font-size: 1.05rem; line-height: 1.7; }
.pains__catch {
  text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 900;
  color: var(--c-primary);
  padding: 30px 24px;
  border-top: 2px dashed var(--c-border);
  border-bottom: 2px dashed var(--c-border);
  margin: 0;
  line-height: 1.7;
  font-family: var(--font-heading);
}
.pains__catch strong { color: var(--c-accent); font-size: 1.15em; }

@media (max-width: 768px) {
  .pains__list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  /* 「LINE公式アカウント」が途中で千切れず、半端な1文字だけの行が出ないようにする */
  .pains__catch { font-size: 1.12rem; padding: 26px 12px; }
  .pains__catch strong { display: inline-block; }
}

/* =========================================================
   Merits
   ========================================================= */
.merits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.merit {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 32px;
  box-shadow: var(--c-shadow);
  position: relative;
  transition: transform .25s, box-shadow .25s;
  text-align: center;
  overflow: hidden;
}
.merit:hover { transform: translateY(-6px); box-shadow: var(--c-shadow-lg); }

/* 大きなイラスト風アイコン */
.merit__visual {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eafff3 0%, #c8f3da 100%);
}
.merit__icon {
  font-size: 4.5rem;
  line-height: 1;
}
.merit__badge {
  position: absolute;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(30,58,95,.15);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
/* 01: NEW バッジ */
.merit__badge--notify {
  top: 6px; right: -4px;
  padding: 6px 12px;
  background: #ff4d4d;
  color: #fff;
  font-family: var(--font-heading);
  font-size: .75rem;
  letter-spacing: .08em;
  box-shadow: 0 4px 12px rgba(255,77,77,.4);
  animation: merit-shake 2.2s ease-in-out infinite;
}
/* 02: タイミング絵文字バッジ */
.merit__badge--timing {
  bottom: 4px; right: -10px;
  padding: 6px 10px;
  font-size: 1.1rem;
  gap: 4px;
  background: #fff;
}
/* 03: 円マーク */
.merit__badge--sales {
  top: 4px; right: -6px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #ffd84d 0%, #ff9e1b 100%);
  color: #fff;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 14px rgba(255,158,27,.45);
}
@keyframes merit-shake {
  0%, 92%, 100% { transform: rotate(0deg); }
  94% { transform: rotate(-8deg); }
  96% { transform: rotate(8deg); }
  98% { transform: rotate(-4deg); }
}

/* ブロックごとの背景色グラデ */
.merit--1 .merit__visual { background: linear-gradient(135deg, #e8f4ff 0%, #c2dfff 100%); }
.merit--2 .merit__visual { background: linear-gradient(135deg, #fff3e8 0%, #ffd8b8 100%); }
.merit--3 .merit__visual { background: linear-gradient(135deg, #e8fff0 0%, #b8f0cc 100%); }

/* 3つのチカラ：イラスト画像版（絵文字アイコンの代わりに画像を表示） */
.merit .merit__visual--img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  background: none;
  overflow: hidden;
}
.merit .merit__visual--img img {
  display: block;
  width: 100%;
  height: auto;
}

.merit__title { font-size: 1.7rem; margin: 0 0 14px; }
.merit--1 .merit__title::first-letter { color: #1e6fb8; }
.merit--2 .merit__title::first-letter { color: #d97706; }
.merit--3 .merit__title::first-letter { color: var(--c-accent-dark); }
.merit__lead {
  font-size: 1.1rem;
  color: var(--c-primary);
  margin-bottom: 14px;
  line-height: 1.6;
}
.merit__lead strong { color: var(--c-primary); }
.merit__desc { color: var(--c-text-sub); font-size: 1rem; margin-bottom: 20px; line-height: 1.8; }
.merit__tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(30,58,95,.08);
  color: var(--c-primary);
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
}

.scenes {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--c-shadow);
  max-width: 820px;
  margin: 0 auto;
}
.scenes__title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--c-primary);
}
.scenes__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  margin-bottom: 24px;
}
.scenes__list li {
  padding: 16px 20px;
  background: var(--c-bg-soft);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  border-left: 4px solid var(--c-accent);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scenes__list strong { color: var(--c-primary); font-weight: 700; font-size: 1.1rem; }
.scenes__arrow { color: var(--c-text-sub); font-size: 1rem; }
.scenes__note {
  text-align: center;
  font-size: .95rem;
  color: var(--c-text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .merits__grid { grid-template-columns: 1fr; gap: 40px; }
  .scenes { padding: 28px 20px; }
  .scenes__list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  /* 「→LINEから予約・変更・リマインド」等が1行に収まる文字サイズにする */
  .scenes__list strong { font-size: 1.02rem; }
  .scenes__arrow { font-size: .88rem; }
}

/* =========================================================
   Services
   ========================================================= */
.service-block { margin-bottom: 80px; }
.service-block:last-child { margin-bottom: 0; }
.service-block__head {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.service-block__label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.service-block__title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.service-block__desc { color: var(--c-text-sub); font-size: 1.1rem; max-width: 680px; margin: 0 auto; line-height: 1.9; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  border: 2px solid var(--c-border);
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--c-shadow); }
.plan--recommended {
  border-color: var(--c-accent);
  background: linear-gradient(180deg, #fff 0%, #f6fffb 100%);
  box-shadow: 0 10px 30px rgba(6,199,85,.12);
}
.plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(6,199,85,.3);
}
.plan__name { font-size: 1.5rem; margin-bottom: 10px; }
.plan__target { color: var(--c-text-sub); font-size: 1rem; min-height: 3em; margin-bottom: 20px; line-height: 1.7; }
.plan__price {
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--c-border);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--c-text-sub);
}
.plan__price span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--c-primary);
  letter-spacing: -.02em;
  margin-right: 4px;
}
.plan__price small { font-size: .95rem; color: var(--c-text-muted); margin-left: 4px; }
.plan__extends {
  color: var(--c-accent-dark);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}
.plan__features { flex: 1; }
.plan__features li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 1.02rem;
  color: var(--c-text);
  border-bottom: 1px dashed var(--c-border);
  line-height: 1.6;
}
.plan__features li:last-child { border-bottom: 0; }
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 18px; height: 18px;
  background: var(--c-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6 11L3 8l1-1 2 2 5-5 1 1z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.report-note {
  margin-top: 32px;
  background: #fff;
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  box-shadow: var(--c-shadow);
}
.report-note h4 { font-size: 1.25rem; margin-bottom: 12px; color: var(--c-primary); }
.report-note p { margin-bottom: 10px; font-size: 1.05rem; color: var(--c-text-sub); line-height: 1.8; }
.report-note p:last-child { margin-bottom: 0; }
.report-note strong { color: var(--c-accent-dark); font-size: 1.1em; }
.report-note__caption { font-size: .95rem !important; color: var(--c-text-muted) !important; }

/* Options */
.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.option-group {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px 24px;
  border: 2px solid #bfdbfe;
  border-left: 6px solid #3b82f6;
  box-shadow: 0 6px 18px rgba(59,130,246,.08);
  transition: transform .2s, box-shadow .2s;
}
.option-group:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(59,130,246,.14);
}
.option-group h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 3px solid #dbeafe;
  letter-spacing: .02em;
}
.option-group ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--c-text);
}
.option-group ul li:last-child { border-bottom: 0; }
.option-group ul li > span { flex: 1; }
.option-group ul li b {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: #2563eb;
  white-space: nowrap;
  background: #eff6ff;
  padding: 4px 12px;
  border-radius: 6px;
}
.options__note {
  text-align: center;
  font-size: .95rem;
  color: var(--c-text-muted);
  margin-top: 28px;
}

/* 構築サービスブロック：明るい緑 */
.service-block--build {
  background: linear-gradient(180deg, #f0fdf4 0%, #d1fadf 100%);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  margin-bottom: 80px;
}
.service-block--build .service-block__label {
  background: #22c55e;
  color: #fff;
}
.service-block--build .plan {
  border-color: #bbf7d0;
}
.service-block--build .plan--recommended {
  border-color: #22c55e;
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
  box-shadow: 0 10px 30px rgba(34,197,94,.18);
}
.service-block--build .plan__badge {
  background: #22c55e;
  box-shadow: 0 4px 10px rgba(34,197,94,.35);
}
.service-block--build .plan__price span {
  color: #15803d;
}
.service-block--build .plan__extends {
  color: #15803d;
}
.service-block--build .plan__features li::before {
  background-color: #22c55e;
}
@media (max-width: 768px) {
  .service-block--build { padding: 40px 20px; }
}

/* 運用サービスブロック：明るいオレンジ */
.service-block--ops {
  background: linear-gradient(180deg, #fff8f0 0%, #ffe8d4 100%);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  margin-bottom: 80px;
}
.service-block--ops .service-block__label {
  background: #ff8c42;
  color: #fff;
}
.service-block--ops .plan {
  border-color: #ffe0c7;
}
.service-block--ops .plan--recommended {
  border-color: #ff8c42;
  background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
  box-shadow: 0 10px 30px rgba(255,140,66,.2);
}
.service-block--ops .plan__badge {
  background: #ff8c42;
  box-shadow: 0 4px 10px rgba(255,140,66,.35);
}
.service-block--ops .plan__price span {
  color: #e8730a;
}
.service-block--ops .plan__extends {
  color: #e8730a;
}
.service-block--ops .plan__features li::before {
  background-color: #ff8c42;
}
.service-block--ops .report-note {
  border-left-color: #ff8c42;
}
.service-block--ops .report-note h4 {
  color: #e8730a;
}
.service-block--ops .report-note strong {
  color: #e8730a;
}
@media (max-width: 768px) {
  .service-block--ops { padding: 40px 20px; }
}

@media (max-width: 960px) {
  .plans { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .options { grid-template-columns: 1fr; }
}

/* =========================================================
   Flow
   ========================================================= */
.flow__steps {
  max-width: 760px;
  margin: 0 auto;
  counter-reset: step;
  position: relative;
}
.flow__steps::before {
  content: '';
  position: absolute;
  left: 40px; top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-accent) 0%, var(--c-primary) 100%);
  opacity: .4;
}
.flow__step {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  position: relative;
}
.flow__step:last-child { margin-bottom: 0; }
.flow__step-num {
  flex-shrink: 0;
  width: 80px; height: 80px;
  background: #fff;
  border: 3px solid var(--c-accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .65rem;
  color: var(--c-accent-dark);
  letter-spacing: .05em;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(6,199,85,.2);
}
.flow__step-num span {
  font-size: 1.6rem;
  color: var(--c-primary);
  font-weight: 900;
  margin-top: 2px;
}
.flow__step-body {
  flex: 1;
  background: #fff;
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--c-shadow);
}
.flow__step-body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.flow__step-body p { margin: 0; color: var(--c-text-sub); font-size: 1.05rem; line-height: 1.8; }

.flow__step-icon {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  background: linear-gradient(135deg, #eafff3 0%, #d4f7e4 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(6,199,85,.18), 0 4px 14px rgba(6,199,85,.14);
  line-height: 1;
}
.flow__step:nth-child(even) .flow__step-icon {
  background: linear-gradient(135deg, #eaf2ff 0%, #d6e3f5 100%);
  box-shadow: inset 0 0 0 2px rgba(30,58,95,.18), 0 4px 14px rgba(30,58,95,.12);
}

@media (max-width: 900px) {
  .flow__step-icon { width: 64px; height: 64px; font-size: 2rem; }
}
@media (max-width: 600px) {
  .flow__steps::before { left: 28px; }
  .flow__step-num { width: 56px; height: 56px; font-size: .55rem; }
  .flow__step-num span { font-size: 1.2rem; }
  .flow__step { gap: 18px; flex-wrap: wrap; }
  .flow__step-body { padding: 18px 20px; }
  .flow__step-icon {
    width: 52px; height: 52px; font-size: 1.6rem;
    position: absolute;
    top: 0; right: 0;
  }
  /* アイコンを避けるのは見出し行だけにして、本文は右端まで使う */
  .flow__step-body { padding-right: 18px; }
  .flow__step-body h3 { padding-right: 60px; }
}
@media (max-width: 360px) {
  /* 極小画面でも「運用スタート」等の見出しが1行に収まるようにする */
  .flow__step-body h3 { font-size: 1.15rem; padding-right: 56px; }
  /* 極小画面でも「たとえば、こんな場面で」が1行に収まるようにする */
  .scenes__title { font-size: 1.25rem; }
}

/* =========================================================
   Cases
   ========================================================= */
.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.case {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--c-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.case:hover { transform: translateY(-4px); box-shadow: var(--c-shadow-lg); }
.case__image {
  position: relative;
  aspect-ratio: 3 / 2;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.case__image img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.case__image-placeholder {
  position: absolute;
  color: var(--c-text-muted);
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  display: none;
}
.case__image--placeholder .case__image-placeholder { display: block; }
.case__body { padding: 28px 30px; flex: 1; display: flex; flex-direction: column; }
.case__tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(6,199,85,.12);
  color: var(--c-accent-dark);
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 14px;
  align-self: flex-start;
}
.case__title { font-size: 1.6rem; margin-bottom: 16px; }
.case__summary { color: var(--c-text-sub); font-size: 1.05rem; margin-bottom: 20px; line-height: 1.85; }
.case__results {
  background: var(--c-bg-soft);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.case__results h4 {
  font-size: 1.05rem;
  color: var(--c-primary);
  margin-bottom: 12px;
  letter-spacing: .05em;
}
.case__results ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.7;
}
.case__results ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 700;
}
.case__outcome {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
  color: var(--c-primary) !important;
  font-size: 1.1rem !important;
  font-weight: 700;
}
.case__outcome strong { color: var(--c-accent-dark); font-size: 1.05em; }
.case__voice {
  margin: 0;
  padding: 22px 24px;
  background: linear-gradient(135deg, #f7fbff 0%, #eaf7ef 100%);
  border-radius: var(--radius-sm);
  font-size: 1.02rem;
  color: var(--c-text);
  position: relative;
  font-style: normal;
  line-height: 1.9;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case__voice-text {
  flex: 1;
  display: block;
}
.case__voice::before {
  content: '“';
  position: absolute;
  top: 0; left: 8px;
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--c-accent);
  opacity: .4;
  line-height: 1;
}
.case__voice cite {
  display: block;
  margin-top: 12px;
  font-size: .95rem;
  color: var(--c-text-muted);
  font-style: normal;
  text-align: right;
}

@media (max-width: 900px) {
  .cases__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   Profile
   ========================================================= */
.profile__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.profile__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  aspect-ratio: 4 / 5;
}
.profile__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.profile__role {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,.15);
  color: #6de3a5;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.profile__name { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 6px; }
.profile__name small { font-size: .6em; opacity: .8; font-weight: 500; margin-left: 8px; }
.profile__area { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 24px; }
.profile__catch {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.7;
  padding: 24px 28px;
  background: rgba(255,255,255,.08);
  border-left: 4px solid var(--c-accent);
  border-radius: 4px;
  margin-bottom: 28px;
}
.profile__story p { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 1em; line-height: 1.95; }
.profile__story strong { color: #6de3a5; font-weight: 700; font-size: 1.08em; }
.profile__mission {
  padding: 22px 26px;
  background: rgba(6,199,85,.12);
  border-radius: var(--radius-sm);
  font-size: 1.1rem !important;
  line-height: 1.9;
  font-weight: 500;
}

@media (max-width: 768px) {
  .profile__grid { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
  .profile__photo { max-width: 280px; margin: 0 auto; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item[open] {
  border-color: var(--c-accent);
  box-shadow: 0 6px 20px rgba(6,199,85,.08);
}
.faq__q {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 60px 22px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--c-primary);
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
}
/* 長い質問も1行に収まるよう、FAQだけ幅を広げる */
.faq .container--narrow { max-width: 1020px; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231e3a5f'%3E%3Cpath d='M10 14l-6-6h12z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .25s;
}
.faq__item[open] .faq__q::after { transform: translateY(-50%) rotate(180deg); }
.faq__q-mark {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
}
.faq__a {
  padding: 0 24px 24px 76px;
  color: var(--c-text-sub);
  font-size: 1.05rem;
  border-top: 1px dashed var(--c-border);
  padding-top: 20px;
  margin-top: 0;
  line-height: 1.9;
}
.faq__a p { margin-bottom: 12px; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a strong { color: var(--c-primary); }

@media (max-width: 600px) {
  .faq__q { padding: 16px 44px 16px 16px; font-size: .95rem; }
  .faq__q::after { right: 16px; }
  .faq__a { padding: 16px 16px 20px 58px; }
}

/* =========================================================
   Contact
   ========================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.contact__subtitle {
  font-size: 1.4rem;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-accent);
  display: inline-block;
}
.contact__form { position: relative; }
.contact__form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--c-shadow);
  position: relative;
  min-height: 1200px;
}
.contact__form-wrap iframe {
  width: 100%;
  min-height: 1200px;
  border-radius: var(--radius-sm);
  display: block;
}
.contact__form-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  background: linear-gradient(135deg, #f7fbff 0%, #eaf4f8 100%);
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--c-text-sub);
  font-size: .95rem;
}
.contact__form-placeholder p:first-child { font-size: 1.2rem; font-weight: 700; color: var(--c-primary); }
.contact__form-placeholder-note { font-size: .85rem; color: var(--c-text-muted); margin: 0; }

.contact__direct { }
.contact__direct-inner {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--c-shadow);
}
.contact__line { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--c-border); margin-bottom: 24px; }
.contact__qr {
  width: 180px; height: 180px;
  margin: 0 auto 16px;
  border-radius: var(--radius-sm);
  padding: 8px;
  background: #fff;
  border: 2px solid var(--c-border);
}
.contact__line-text { font-size: 1rem; color: var(--c-text-sub); margin-bottom: 18px; line-height: 1.7; }

.contact__info h4 {
  font-size: 1.05rem;
  margin: 18px 0 8px;
  color: var(--c-primary);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c-border);
}
.contact__info h4:first-child { margin-top: 0; }
.contact__info p { font-size: 1rem; color: var(--c-text-sub); margin-bottom: 8px; line-height: 1.7; }
.contact__info a { color: var(--c-accent-dark); font-weight: 500; word-break: break-all; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 50%, var(--c-accent-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 60%);
  border-radius: 50%;
}
.final-cta__title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 22px;
  position: relative;
  font-weight: 900;
  line-height: 1.5;
}
.final-cta__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.92);
  margin-bottom: 36px;
  position: relative;
  line-height: 1.9;
}
.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #1a2332;
  color: rgba(255,255,255,.7);
  padding: 60px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo span { font-family: var(--font-heading); font-weight: 900; font-size: 1.15rem; color: #fff; }
.footer__tagline { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 18px; line-height: 1.8; }
.footer__address { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.8; }
.footer__address a { color: rgba(255,255,255,.9); }

.footer__nav h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-accent);
  display: inline-block;
}
.footer__nav ul li { margin-bottom: 10px; }
.footer__nav ul a { color: rgba(255,255,255,.75); font-size: .98rem; }
.footer__nav ul a:hover { color: #fff; opacity: 1; }

.footer__bottom {
  text-align: center;
  padding-top: 24px;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
}

/* =========================================================
   Floating CTA
   ========================================================= */
.floating-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--c-accent);
  color: #fff;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 12px 30px rgba(6,199,85,.4);
  z-index: 50;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .2s, box-shadow .2s;
}
.floating-cta::before {
  content: '💬';
  font-size: 1.1rem;
}
.floating-cta:hover { transform: translateY(-3px); opacity: 1; box-shadow: 0 16px 36px rgba(6,199,85,.5); }

@media (max-width: 600px) {
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: .85rem; }
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   v2追加：法人ページへの切り替えリンク（personal用）
   ========================================================= */
/* 「無料相談する」と完全に同じ高さ45pxに固定
   （.nav__list a の指定に負けないよう、セレクタの優先度を上げている） */
.nav__list a.nav__switch,
.nav__switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 24px;
  border: 2px solid var(--c-primary);
  border-radius: 999px;
  color: var(--c-primary);
  font-weight: 700;
  font-size: .88rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.nav__list a.nav__switch::after { display: none; } /* ホバー時の下線を枠内に出さない */
/* ホバー時は「無料相談する」と同じ動き（紺色に塗りつぶし＋白文字＋少し浮き上がる）
   文字色が消えないよう、通常時の色指定より優先度を高くしている */
.nav__list a.nav__switch:hover,
.nav__switch:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30,58,95,.35);
}
@media (max-width: 1300px) {
  .nav__list a.nav__switch,
  .nav__switch { height: auto; font-size: 1rem; padding: 12px 18px; text-align: center; }
}

/* =========================================================
   v2追加：ご契約者限定特典（personal用）
   ========================================================= */
.gift {
  background: linear-gradient(135deg, #f0faf4 0%, #e8f4ff 100%);
}
.gift__card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid var(--c-accent);
  border-radius: var(--radius-lg);
  padding: 52px 48px 40px;
  box-shadow: var(--c-shadow-lg);
  text-align: center;
  position: relative;
}
.gift__badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  border-radius: 999px;
  padding: 10px 28px;
  box-shadow: 0 8px 20px rgba(6,199,85,.35);
  white-space: nowrap;
}
.gift__title {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 900;
  line-height: 1.7;
  margin: 12px 0 14px;
}
.gift__price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--c-accent-dark);
  margin-bottom: 18px;
}
.gift__desc {
  font-size: 1.02rem;
  color: var(--c-text-sub);
  max-width: 740px;
  margin: 0 auto 30px;
}
.gift__scope {
  text-align: left;
  background: var(--c-bg-soft);
  border-radius: var(--radius-sm);
  padding: 26px 30px;
}
.gift__scope h3 {
  font-size: 1.05rem;
  color: var(--c-primary);
  margin-bottom: 14px;
}
.gift__scope ul { display: grid; gap: 10px; }
.gift__scope li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  font-size: .95rem;
  color: var(--c-text-sub);
  line-height: 1.75;
}
.gift__scope li span { font-weight: 700; color: var(--c-primary); }
@media (max-width: 768px) {
  .gift__card { padding: 44px 22px 28px; }
  .gift__badge { font-size: .95rem; padding: 9px 20px; }
  .gift__scope { padding: 20px 18px; }
  .gift__scope li { grid-template-columns: 1fr; gap: 2px; }
}

/* =========================================================
   v3追加：法人向け分岐バナー（サービスセクション・料金より前）
   ========================================================= */
.biz-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, #16283f 0%, var(--c-primary) 60%, #2a5080 100%);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 56px;
  box-shadow: 0 12px 30px rgba(30,58,95,.25);
}
.biz-banner__label {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: #8fd9ac;
  margin-bottom: 6px;
}
.biz-banner__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.biz-banner__desc {
  font-size: .98rem;
  color: #d7e3f0;
  margin: 0;
  line-height: 1.8;
}
.biz-banner__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--c-primary);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  border-radius: 999px;
  padding: 16px 34px;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.biz-banner__btn::after { content: '→'; }
.biz-banner__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.28); }
@media (max-width: 768px) {
  .biz-banner { flex-direction: column; align-items: stretch; text-align: center; padding: 28px 22px; }
  .biz-banner__btn { justify-content: center; }
}

/* =========================================================
   v4追加：サービスと料金 個人／法人切り替えタブ
   ========================================================= */
.svc-tabs-note {
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.svc-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 64px;
}
/* 立体的な「押しボタン」デザイン：下側に厚みの影＋押し込みアニメーション */
.svc-tab {
  flex: 0 1 300px;
  padding: 20px 30px;
  border-radius: 14px;
  border: 2px solid var(--c-border);
  background: #fff;
  color: var(--c-text-sub);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 0 #ccd6e0;
  transition: transform .15s, box-shadow .15s, background .2s, color .2s, border-color .2s;
}
.svc-tab:hover { transform: translateY(-2px); box-shadow: 0 8px 0 #ccd6e0; }
.svc-tab:active { transform: translateY(3px); box-shadow: 0 2px 0 #ccd6e0; }
/* 選択中のタブから下向きの三角（吹き出しの尻尾）を出し、下の内容との対応を示す */
.svc-tab.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  border: 9px solid transparent;
}
/* 個人事業向けタブ：明るい青（下の構築サービスの緑と区別） */
.svc-tab--personal:hover { border-color: #3b82f6; color: #2563eb; }
.svc-tab--personal.is-active {
  border-color: #1d4ed8;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 6px 0 #1d4ed8;
}
.svc-tab--personal.is-active::after { border-top-color: #2563eb; }
/* 法人向けタブ：ネイビー（法人向けSTEPカードと統一） */
.svc-tab--business:hover { border-color: var(--c-primary); color: var(--c-primary); }
.svc-tab--business.is-active {
  border-color: #14294a;
  background: linear-gradient(135deg, var(--c-primary) 0%, #2a5080 100%);
  color: #fff;
  box-shadow: 0 6px 0 #14294a;
}
.svc-tab--business.is-active::after { border-top-color: var(--c-primary); }
.svc-panel { display: none; }
.svc-panel.is-active { display: block; animation: svc-fade .4s ease; }
@keyframes svc-fade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.svc-biz-lead {
  text-align: center;
  font-size: 1.12rem;
  margin-bottom: 44px;
  line-height: 2;
}
.svc-biz-heading {
  text-align: center;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  font-weight: 900;
  margin: 64px 0 28px;
  color: var(--c-primary);
}
.svc-biz-cta { text-align: center; margin-top: 56px; }
.svc-biz-cta .btn { padding: 20px 48px; font-size: 1.15rem; }
.svc-biz-cta-note { margin-top: 12px; font-size: .95rem; color: var(--c-text-muted); }
@media (max-width: 600px) {
  .svc-tabs { flex-direction: column; align-items: stretch; gap: 12px; }
  .svc-tab { flex: 1 1 auto; }
}

/* ---- 法人向け料金：3STEP図解 ---- */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 34px;
  align-items: stretch;
}
.roadmap__step {
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  position: relative;
  box-shadow: var(--c-shadow);
}
.roadmap__step:not(:last-child)::after {
  content: '▶';
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-accent);
  font-size: 1.8rem;
  text-shadow: 0 2px 6px rgba(6,199,85,.3);
  z-index: 2;
}
.roadmap__step--free { border-color: var(--c-accent); background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%); }
.roadmap__label {
  display: inline-block;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: #fff;
  background: var(--c-primary);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.roadmap__step--free .roadmap__label { background: var(--c-accent-dark); }
.roadmap__name { font-size: 1.12rem; font-weight: 900; color: var(--c-primary); font-family: var(--font-heading); margin-bottom: 8px; line-height: 1.5; }
.roadmap__price { font-size: 1rem; font-weight: 700; color: var(--c-text-sub); }
.roadmap__note {
  text-align: center;
  font-size: 1.02rem;
  background: #fff;
  border: 1px dashed var(--c-accent-dark);
  border-radius: var(--radius-sm);
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 24px;
  color: var(--c-text);
}
.roadmap__note strong { color: var(--c-accent-dark); }

/* ---- 法人向け料金：STEPカード ---- */
.step-cards { display: grid; gap: 32px; max-width: 940px; margin: 0 auto; }
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--c-shadow);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.step-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  padding: 28px 36px 22px;
  background: linear-gradient(135deg, var(--c-primary) 0%, #2a5080 100%);
  color: #fff;
}
.step-card__step {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: .12em;
  color: #fff;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  border-radius: 999px;
  padding: 8px 22px;
  box-shadow: 0 4px 12px rgba(6,199,85,.4);
  white-space: nowrap;
}
.step-card__title { font-size: clamp(1.25rem, 2.4vw, 1.55rem); font-weight: 900; color: #fff; }
.step-card__price {
  margin-left: auto;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: #fff;
}
.step-card__price small { font-size: .85rem; font-weight: 700; color: #c3d3e4; }
.step-card__body { padding: 30px 36px 34px; }
.step-card__meta {
  font-size: .98rem;
  color: var(--c-text-muted);
  margin-bottom: 18px;
  font-weight: 700;
}
.step-card__list { display: grid; gap: 12px; margin-bottom: 22px; }
.step-card__list li {
  position: relative;
  padding-left: 32px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.step-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background-color: var(--c-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.step-card__quote {
  background: var(--c-bg-soft);
  border-left: 5px solid var(--c-accent);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  font-size: 1.02rem;
  color: var(--c-text-sub);
}
.step-card__quote strong { color: var(--c-primary); }

/* ---- STEP3：2プラン ---- */
.plans2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
}
.plan2 {
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
}
.plan2--standard {
  border-color: var(--c-accent);
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}
.plan2__type {
  align-self: flex-start;
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-primary);
  background: rgba(30,58,95,.08);
  border-radius: 999px;
  padding: 4px 14px;
}
.plan2--standard .plan2__type {
  color: var(--c-accent-dark);
  background: rgba(6,199,85,.12);
}
.plan2__name { font-size: 1.4rem; font-weight: 900; color: var(--c-primary); }
.plan2__price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--c-accent-dark);
  line-height: 1.5;
}
.plan2__price small { font-size: .88rem; font-weight: 700; color: var(--c-text-muted); }
.plan2__desc { font-size: 1.02rem; color: var(--c-text-sub); }
.plan2 .step-card__list { margin-bottom: 0; }
.plan2__quote {
  margin-top: auto;
  background: var(--c-bg-soft);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .98rem;
  color: var(--c-text-sub);
}
.plan2--standard .plan2__quote { background: rgba(6,199,85,.08); }

/* ---- 外部ツール注記・拡張オプション ---- */
.tool-note {
  margin-top: 24px;
  border: 2px solid #f0b429;
  background: #fff8e6;
  border-radius: var(--radius-sm);
  padding: 22px 26px;
}
.tool-note h4 {
  color: #92610e;
  font-size: 1.12rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.tool-note p { font-size: 1.02rem; color: var(--c-text); }
.tool-note strong { color: #b45309; }
.ext-note {
  margin-top: 18px;
  background: #f8fafc;
  border: 1px dashed var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: .98rem;
  color: var(--c-text-sub);
  line-height: 1.8;
}
.ext-note strong { color: var(--c-primary); margin-right: 6px; }

/* ---- 取引条件・補助金 ---- */
.terms {
  max-width: 860px;
  margin: 64px auto 0;
  background: #fff;
  border: 2px solid var(--c-primary);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
}
.terms h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--c-primary);
}
.terms ul { display: grid; gap: 12px; max-width: 560px; margin: 0 auto; }
.terms li {
  position: relative;
  padding-left: 32px;
  font-size: 1.05rem;
  font-weight: 500;
}
.terms li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background-color: var(--c-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.subsidy {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--c-shadow);
  padding: 48px 48px 44px;
}
.subsidy p { margin-bottom: 20px; font-size: 1.05rem; }
.subsidy__list { display: grid; gap: 14px; margin: 26px 0 30px; }
.subsidy__list li {
  position: relative;
  padding: 16px 20px 16px 52px;
  background: var(--c-bg-soft);
  border-radius: var(--radius-sm);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.75;
}
.subsidy__list li::before {
  content: '';
  position: absolute;
  left: 18px; top: 20px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background-color: var(--c-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.subsidy__caution {
  font-size: .95rem;
  color: var(--c-text-muted);
  border-top: 1px dashed var(--c-border);
  padding-top: 18px;
  margin-bottom: 0;
}

/* ---- 法人ブロックのレスポンシブ ---- */
@media (max-width: 960px) {
  .roadmap { grid-template-columns: 1fr 1fr; }
  .roadmap__step:not(:last-child)::after { display: none; }
  .plans2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .step-card__head { padding: 24px 24px 18px; }
  .step-card__price { margin-left: 0; width: 100%; }
  .step-card__body { padding: 24px 24px 28px; }
  .subsidy { padding: 34px 26px; }
  .terms { padding: 30px 24px; }
}
@media (max-width: 600px) {
  .roadmap { grid-template-columns: 1fr; }
}

/* =========================================================
   v4追加：プロフィールのInstagramリンク（ダーク背景用）
   ========================================================= */
.profile__insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-weight: 700;
  font-size: .98rem;
  transition: background .2s, transform .2s;
}
.profile__insta:hover {
  background: rgba(255,255,255,.24);
  transform: translateY(-2px);
}
.profile__insta svg { flex-shrink: 0; }
@media (max-width: 600px) {
  .profile__insta { font-size: .9rem; padding: 12px 20px; }
}

/* =========================================================
   v4追加：無料相談の申し込みの流れ（法人CTA下）＋お問い合わせ案内
   ========================================================= */
.cta-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
.cta-steps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--c-text);
  box-shadow: var(--c-shadow);
}
.cta-steps li:not(:last-child)::after {
  content: '▶';
  color: var(--c-accent);
  font-size: .8rem;
  margin-left: 8px;
}
.cta-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary) 0%, #2a5080 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: .8rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-steps { flex-direction: column; align-items: stretch; }
  .cta-steps li { justify-content: flex-start; }
  .cta-steps li:not(:last-child)::after { display: none; }
}

.contact__consult-note {
  max-width: 860px;
  margin: -20px auto 44px;
  background: #f0faf4;
  border: 1px solid rgba(6,199,85,.35);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--c-text);
}
.contact__consult-note strong { color: var(--c-accent-dark); }

/* =========================================================
   スマホ幅：行末に1文字だけ残る改行を防ぐ個別調整
   （機種によらず同じ見え方になるよう、文字サイズで直接調整）
   ========================================================= */
@media (max-width: 600px) {
  .pains__item p { font-size: 1rem; }
  .merit__lead { font-size: 1rem; }
  .scenes__note { font-size: .9rem; }
  .plan__features li { font-size: .95rem; }
  .step-card__list li { font-size: .98rem; }
  .plan2__price { font-size: 1.375rem; }
  .case__title { font-size: 1.4rem; }
  .case__summary { font-size: 1rem; }
  .flow__step-body h3 { font-size: 1.25rem; }
}
@media (max-width: 360px) {
  .flow__step-body h3 { font-size: 1.15rem; }
  .case__title { font-size: 1.2rem; }
}
