/* =========================================================
   Craft — 朝霞市・地域密着リニューアル版（アットホームテーマ）
   トーン：温かみ・安心感・地域密着 / 自然光・木目・やさしい配色
   ※ クラス構成は従来版を踏襲し、配色と装飾を刷新
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — テラコッタ（やさしいオレンジ茶） */
  --c-primary:        #c47a4c;
  --c-primary-dark:   #955731;
  --c-primary-soft:   #f5e7d6;   /* 淡いピーチ：アイコン背景／ピル／タグ */
  --c-accent-green:   #8a9a64;   /* 草木のアクセント（葉） */

  /* 背景 */
  --c-bg:             #fbf6ee;   /* ページ全体のクリーム */
  --c-bg-tint:        #f5ece0;   /* セクション背景（やや濃いクリーム） */

  /* インク（温かいブラウン） */
  --c-logo:           #4a3a2c;
  --c-heading:        #4a3b2e;
  --c-text:           #6a584a;
  --c-muted:          #776552;   /* 補助テキスト（クリーム上でも AA） */

  /* サーフェス */
  --c-white:          #fffdf9;   /* カード（温かい白） */
  --c-border:         #e7dcc9;   /* 細い境界 */
  --c-border-strong:  #ddccb2;   /* カード・囲み */
  --c-border-tint:    #e6d2b4;   /* 注記ボックス */

  /* 効果（温かい影） */
  --shadow-sm: 0 2px 10px rgba(120, 84, 44, 0.06);
  --shadow-md: 0 14px 34px rgba(120, 84, 44, 0.12);

  /* 形（アットホームに丸く） */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  /* レイアウト */
  --container: 1140px;
  --gutter: 24px;

  /* タイプ */
  --font-sans: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN",
               "Yu Gothic", Meiryo, sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;

  /* 草木の小枝（セクション見出し・装飾に再利用） */
  --leaf: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 30' fill='none'%3E%3Cpath d='M3 27C17 25 33 17 47 4' stroke='%238a9a64' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M15 22c-2-8 4-12 12-12-1 8-5 12-12 12z' fill='%23a8b783'/%3E%3Cpath d='M29 14c-2-8 5-11 13-10-1 8-6 11-13 10z' fill='%23bcc99c'/%3E%3Cpath d='M9 26c-1-6 3-9 9-9-1 6-4 9-9 9z' fill='%23b6c596'/%3E%3C/svg%3E");
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  color: var(--c-heading);
  line-height: 1.5;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}

/* 段落の折り返し（孤立文字を避ける） */
.section-head p,
.plan-desc, .feature p, .card p, .work-card p,
.cta-band-body p, .info-item p {
  text-wrap: pretty;
}
.hero p, .page-head p { text-wrap: balance; }

/* 日本語の文節折り返し */
h1, h2, h3, h4,
.hero p, .page-head p, .section-head p,
.plan-desc, .feature p, .card p, .work-card p,
.cta-band-body p, .info-item p, .footer-area {
  word-break: auto-phrase;
}

.phrase { display: inline-block; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: 88px 0; position: relative; }
.section--tint { background: var(--c-bg-tint); }

/* セクション見出し（左右に草木の小枝） */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.55rem, 1.1rem + 1.5vw, 2.05rem);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.section-head h2::before,
.section-head h2::after {
  content: "";
  flex: none;
  width: 42px; height: 25px;
  background: var(--leaf) center / contain no-repeat;
}
.section-head h2::before { transform: scaleX(-1); }
.section-head .eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--c-primary-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.section-head p {
  margin: 18px auto 0;
  max-width: 640px;
  color: var(--c-muted);
  font-size: 0.95rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .05s, box-shadow .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 18px; height: 18px; }

.btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(196, 122, 76, 0.28);
}
.btn-primary:hover { background: var(--c-primary-dark); }

.btn-secondary {
  background: var(--c-white);
  color: var(--c-primary-dark);
  border-color: var(--c-border-strong);
}
.btn-secondary:hover { border-color: var(--c-primary); background: var(--c-primary-soft); }

.btn-lg { padding: 17px 38px; font-size: 1rem; }

/* ---------- お知らせバー（キャンペーン告知） ---------- */
.notice-bar {
  display: flex; align-items: center; justify-content: center; gap: 10px 14px; flex-wrap: wrap;
  background: linear-gradient(120deg, #cf875a 0%, #c2743f 100%);
  color: #fff; text-align: center; font-size: 0.86rem; font-weight: 500;
  padding: 10px 18px; line-height: 1.5;
  transition: filter .2s;
}
.notice-bar:hover { filter: brightness(0.96); }
.notice-tag {
  background: #fff; color: var(--c-primary-dark); font-weight: 700; font-size: 0.72rem;
  padding: 3px 12px; border-radius: var(--radius-pill); flex: none;
}
.notice-more { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; flex: none; }
@media (max-width: 520px) {
  .notice-bar { font-size: 0.78rem; padding: 9px 14px; gap: 8px 10px; }
  .notice-more { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 238, 0.9);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--c-logo);
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand-mark { width: 32px; height: 32px; flex: none; display: block; border-radius: 8px; }
.brand-name { line-height: 1; }
.site-footer .brand-mark { width: 28px; height: 28px; }
.brand .brand-sub {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--c-muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 18px;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-heading);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--c-primary);
  transition: width .2s;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--c-primary-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--c-border-strong);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--c-heading);
  transition: transform .25s, opacity .2s;
}
.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); }
.header-cta { margin-left: 4px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(245, 231, 214, 0.7) 0%, rgba(251, 246, 238, 0) 70%),
    linear-gradient(180deg, var(--c-bg-tint) 0%, var(--c-bg) 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding-top: 76px;
  padding-bottom: 76px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-primary-dark);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: .5px;
  background: var(--c-primary-soft);
  padding: 6px 16px 6px 14px;
  border-radius: var(--radius-pill);
}
.hero-eyebrow::before {
  content: "";
  width: 22px; height: 14px;
  background: var(--leaf) center / contain no-repeat;
}
.hero-text, .hero-visual { min-width: 0; }   /* グリッド項目を縮小可能にして見出しを折り返す */
.hero h1 {
  font-size: clamp(1.7rem, 1.25rem + 2.2vw, 2.7rem);
  margin: 18px 0 20px;
  line-height: 1.5;
}
.hero h1 .accent { color: var(--c-primary); }
.hero p {
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
  filter: drop-shadow(0 24px 44px rgba(120, 84, 44, 0.18));
}
/* 安心バッジ（地域密着で安心サポート） */
.hero-badge {
  position: absolute;
  right: -6px; bottom: -18px;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
  padding: 10px;
  box-shadow: 0 10px 24px rgba(169, 102, 59, 0.32);
  border: 3px solid var(--c-bg);
  transform: rotate(-7deg);
}
.hero-badge span { display: block; }
.hero-badge .big { font-size: 0.92rem; }

/* ---------- 信頼ポイント（小アイコン横並び） ---------- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
}
.trust-item .ti-ic {
  width: 46px; height: 46px; flex: none;
  border-radius: 14px;
  background: var(--c-primary-soft);
  display: grid; place-items: center;
}
.trust-item .ti-ic svg { width: 24px; height: 24px; stroke: var(--c-primary); }
.trust-item b { display: block; font-size: 0.92rem; color: var(--c-heading); }
.trust-item small { font-size: 0.76rem; color: var(--c-muted); }

/* ---------- Card grid ---------- */
.cards {
  display: grid;
  gap: 26px;
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--c-primary-soft);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 30px; height: 30px; stroke: var(--c-primary); }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { font-size: 0.92rem; margin: 0; color: var(--c-text); }

/* ---------- 対応エリア（地図＋エリアタグ＋写真） ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.area-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
}
.area-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border-strong);
  color: var(--c-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
}
.area-tag::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-primary);
}
.area-lead { font-size: 0.95rem; color: var(--c-text); margin: 0 0 18px; }
.area-grid .area-photo:last-child { margin-bottom: 0; }

/* 中央寄せの「もっと見る」ボタン行 */
.more-row { text-align: center; margin-top: 40px; }

/* ---------- お知らせ（News） ---------- */
.news-list { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--c-border); }
.news-item {
  display: flex; align-items: center; gap: 14px 18px; flex-wrap: wrap;
  padding: 16px 6px; border-bottom: 1px solid var(--c-border);
}
.news-date { font-family: var(--font-serif); color: var(--c-primary-dark); font-size: 0.9rem; flex: none; }
.news-cat {
  font-size: 0.72rem; font-weight: 700; padding: 3px 12px; border-radius: var(--radius-pill);
  background: var(--c-primary-soft); color: var(--c-primary-dark); flex: none;
}
.news-cat.is-campaign { background: var(--c-primary); color: #fff; }
.news-item p { margin: 0; font-size: 0.9rem; color: var(--c-text); flex: 1 1 280px; }
@media (max-width: 520px) {
  .news-item { gap: 8px 12px; }
  .news-item p { flex-basis: 100%; }
}

/* ---------- お客様の声（スライダー） ---------- */
.voice-slider-wrap { position: relative; }
.voices {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 6px 4px 14px;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.voices::-webkit-scrollbar { display: none; }
.voice { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.voice {
  background: var(--c-white);
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.voice::before {
  content: "\201C";
  position: absolute;
  top: 6px; right: 20px;
  font-family: var(--font-serif);
  font-size: 3.4rem;
  color: var(--c-primary-soft);
  line-height: 1;
}
.voice-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.voice-avatar {
  width: 60px; height: 60px; flex: none;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-primary-soft);
  border: 2px solid var(--c-border-tint);
}
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-avatar.is-letter { display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--c-primary); }
.voice-name { font-size: 0.95rem; font-weight: 700; color: var(--c-heading); margin: 0; }
.voice-meta { font-size: 0.78rem; color: var(--c-muted); margin: 2px 0 0; }
.voice-stars { color: #e2a23c; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 8px; }
.voice p { font-size: 0.9rem; margin: 0; color: var(--c-text); }

/* スライダー操作（矢印・ドット） */
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.slider-btn {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--c-white); border: 1.5px solid var(--c-border-strong); color: var(--c-primary-dark);
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.slider-btn:hover { border-color: var(--c-primary); color: var(--c-primary); background: var(--c-primary-soft); }
.slider-btn:disabled { opacity: .4; cursor: default; }
.slider-btn svg { width: 20px; height: 20px; stroke: currentColor; }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%; padding: 0; border: 0; cursor: pointer;
  background: var(--c-border-strong); transition: background .2s, transform .2s;
}
.slider-dots button.active { background: var(--c-primary); transform: scale(1.3); }

/* ---------- CTA band（家のイラスト＋無料相談） ---------- */
.cta-band {
  background: linear-gradient(120deg, #bd7440 0%, #ad6234 100%);
  position: relative;
  overflow: hidden;
}
.cta-band .container {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.cta-band-illust {
  width: 230px;
  flex-shrink: 0;
  mix-blend-mode: multiply;   /* 白背景を地のテラコッタに馴染ませる */
}
.cta-band-body { flex: 1; }
.cta-band-body h2 {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  margin-bottom: 8px;
  color: #fff;
}
.cta-band-body p { margin: 0; color: #fff; font-size: 0.95rem; }
.cta-band-action { flex-shrink: 0; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--c-primary-dark);
  box-shadow: 0 10px 24px rgba(120, 60, 24, 0.28);
}
.cta-band .btn-primary:hover { background: #fff4e8; }

/* ---------- 実績スタッツ ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 44px; padding: 28px 20px;
  background: var(--c-white); border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 44px; background: var(--c-border);
}
.stat-num { font-family: var(--font-serif); font-size: 2rem; color: var(--c-primary); font-weight: 700; line-height: 1.1; }
.stat-num .unit { font-size: 1rem; margin-left: 2px; }
.stat-label { font-size: 0.82rem; color: var(--c-muted); margin-top: 6px; }
@media (max-width: 620px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .stat:nth-child(2)::after { display: none; }
}

/* ---------- ごあいさつ（代表紹介） ---------- */
.greeting { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 40px; align-items: center; }
.greeting-photo {
  background: var(--c-white); border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow-sm);
}
.greeting-photo img { width: 100%; border-radius: var(--radius-sm); }
.greeting-lead { font-size: 0.98rem; color: var(--c-text); margin: 0 0 18px; }
.greeting-sign { text-align: right; font-weight: 700; color: var(--c-heading); margin: 0; }
.greeting-sign .role { display: block; font-size: 0.78rem; font-weight: 500; color: var(--c-muted); }
@media (max-width: 860px) {
  .greeting { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; text-align: center; }
  .greeting-sign { text-align: center; }
}

/* ---------- 追従の相談ボタン（LINE＋メール） ---------- */
.float-stack {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-primary); color: #fff; font-weight: 700; font-size: 0.92rem;
  padding: 13px 22px; border-radius: var(--radius-pill);
  box-shadow: 0 10px 26px rgba(169, 102, 59, 0.42);
  transition: transform .15s, background .2s, opacity .25s;
}
.float-cta:hover { background: var(--c-primary-dark); transform: translateY(-2px); }
.float-cta svg { width: 18px; height: 18px; stroke: currentColor; }
.float-cta.is-line { background: #06a647; box-shadow: 0 10px 26px rgba(6, 150, 71, 0.42); }
.float-cta.is-line:hover { background: #058a3c; }
@media (max-width: 520px) {
  .float-stack { right: 12px; bottom: 12px; }
  .float-cta { padding: 12px 18px; font-size: 0.86rem; }
}

/* ---------- LINE ボタン（汎用） ---------- */
.btn-line { background: #06a647; color: #fff; box-shadow: 0 8px 18px rgba(6, 150, 71, 0.3); }
.btn-line:hover { background: #058a3c; }

/* ---------- ブログ一覧 ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  display: flex; flex-direction: column;
  background: var(--c-white); border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius); padding: 24px 24px 22px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.post-date { font-family: var(--font-serif); color: var(--c-primary-dark); font-size: 0.85rem; }
.post-cat {
  font-size: 0.7rem; font-weight: 700; padding: 3px 11px; border-radius: var(--radius-pill);
  background: var(--c-primary-soft); color: var(--c-primary-dark);
}
.post-card h2, .post-card h3 { font-size: 1.05rem; line-height: 1.55; margin: 0 0 10px; }
.post-card p { font-size: 0.86rem; color: var(--c-text); margin: 0 0 16px; }
.post-more { margin-top: auto; color: var(--c-primary-dark); font-weight: 700; font-size: 0.85rem; }
.post-card:hover .post-more { color: var(--c-primary-dark); }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- 記事本文 ---------- */
.article { max-width: 768px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.article-lead { font-size: 1rem; color: var(--c-text); margin: 0 0 8px; }
.article h2 {
  font-size: 1.3rem; margin: 38px 0 14px; padding-left: 14px;
  border-left: 4px solid var(--c-primary); line-height: 1.5;
}
.article h3 { font-size: 1.08rem; margin: 26px 0 10px; color: var(--c-primary-dark); }
.article p { margin: 0 0 18px; }
.article ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.article ul li { position: relative; padding: 6px 0 6px 26px; }
.article ul li::before { content: "✓"; position: absolute; left: 2px; color: var(--c-primary); font-weight: 700; }
.article-cta {
  background: var(--c-bg-tint); border: 1.5px solid var(--c-border-tint);
  border-radius: var(--radius); padding: 28px; text-align: center; margin-top: 44px;
}
.article-cta h2 { border: 0; padding: 0; margin: 0 0 8px; font-size: 1.2rem; }
.article-cta p { color: var(--c-muted); font-size: 0.9rem; margin: 0 0 20px; }
.article-cta .btn { margin: 6px; }
.article-back { display: inline-block; margin-top: 32px; color: var(--c-primary-dark); font-weight: 700; }
.article-back:hover { color: var(--c-primary-dark); }

/* ---------- Googleマップ埋め込み ---------- */
.map-embed {
  border: 1.5px solid var(--c-border-strong); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 24px;
}
.map-embed iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-bg-tint);
  border-top: 1px solid var(--c-border);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.site-footer .brand { font-size: 1.4rem; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.9rem; color: var(--c-text); transition: color .2s; }
.footer-nav a:hover { color: var(--c-primary); }
.footer-area { width: 100%; text-align: center; color: var(--c-muted);
  font-size: 0.82rem; margin-top: 4px; text-wrap: pretty; }
.nobr { white-space: nowrap; }
.footer-copy { width: 100%; text-align: center; color: var(--c-muted);
  font-size: 0.8rem; border-top: 1px solid var(--c-border); padding-top: 20px; }

/* ---------- Responsive (グローバル) ---------- */
@media (max-width: 860px) {
  .section { padding: 62px 0; }

  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero p { margin-inline: auto; }
  .hero-visual { order: -1; }
  .hero-badge { width: 96px; height: 96px; right: 4px; }

  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }

  .cards--3 { grid-template-columns: 1fr; }

  .area-grid { grid-template-columns: 1fr; }
  .voice { flex-basis: calc((100% - 24px) / 2); }

  .cta-band .container { flex-direction: column; text-align: center; }
  .cta-band-illust { width: 180px; }
}

@media (max-width: 520px) {
  :root { --gutter: 18px; }
  .section-head h2 { gap: 12px; }
  .section-head h2::before, .section-head h2::after { width: 30px; height: 18px; }
  .brand .brand-sub { display: none; }
}

/* =========================================================
   Page components
   ========================================================= */

/* ---------- 下層ページのヘッダー ---------- */
.page-head {
  background:
    radial-gradient(50% 80% at 90% 0%, rgba(245, 231, 214, 0.7) 0%, rgba(251, 246, 238, 0) 70%),
    linear-gradient(180deg, var(--c-bg-tint) 0%, var(--c-bg) 100%);
  text-align: center;
  padding: 58px 0 52px;
  position: relative;
}
.page-head .breadcrumb { font-size: 0.78rem; color: var(--c-muted); margin-bottom: 14px; }
.page-head .breadcrumb a { transition: color .2s; }
.page-head .breadcrumb a:hover { color: var(--c-primary); }
.page-head h1 {
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 16px;
}
.page-head h1::before, .page-head h1::after {
  content: ""; flex: none; width: 38px; height: 22px;
  background: var(--leaf) center / contain no-repeat;
}
.page-head h1::before { transform: scaleX(-1); }
.page-head p { color: var(--c-text); max-width: 640px; margin: 0 auto; font-size: 0.98rem; }

/* ---------- Feature grid（対応できること／オプション） ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 28px; }
.feature { text-align: left; }
.feature .card-icon { margin-bottom: 16px; }
.feature h3, .feature h4 { font-size: 1rem; margin-bottom: 8px; color: var(--c-heading); }
.feature p { font-size: 0.86rem; margin: 0; color: var(--c-text); }
.feature .price { display: block; margin-top: 2px; color: var(--c-primary); font-weight: 700; }
.feature .price .unit { font-size: 0.85rem; }
.feature .price-free { color: #1f7a45; }
.opt-was {
  display: block; margin-top: 10px;
  color: var(--c-muted); font-size: 0.82rem;
  text-decoration: line-through; text-decoration-color: #d9533a;
}
.opt-tag {
  display: inline-block; vertical-align: middle;
  font-size: 0.68rem; font-weight: 700; color: #fff;
  border-radius: var(--radius-pill); padding: 2px 9px; margin-left: 4px;
}
.opt-tag.is-half { background: #d9533a; }
.opt-tag.is-free { background: #1f7a45; }

/* ---------- Flow（制作の流れ） ---------- */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.flow-step { text-align: center; position: relative; }
.flow-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.05rem;
  display: grid; place-items: center; margin: 0 auto 16px;
  box-shadow: 0 6px 14px rgba(196, 122, 76, 0.28);
}
.flow-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--c-primary-soft);
  display: grid; place-items: center; margin: 0 auto 14px;
}
.flow-icon svg { width: 30px; height: 30px; stroke: var(--c-primary); }
.flow-step h3, .flow-step h4 { font-size: 0.98rem; margin-bottom: 6px; }
.flow-step p { font-size: 0.82rem; color: var(--c-muted); margin: 0; }
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 16px; right: -9px;
  width: 11px; height: 11px;
  border-top: 2px solid var(--c-border-strong); border-right: 2px solid var(--c-border-strong);
  transform: rotate(45deg);
}
.flow--arrow .flow-step:not(:last-child)::after {
  content: ""; width: 13px; height: 13px;
  border-top: 2.5px solid #cdb494; border-right: 2.5px solid #cdb494;
  top: 24px; right: -11px; transform: rotate(45deg);
}
@media (max-width: 860px) {
  .flow--arrow .flow-step:not(:last-child)::after {
    top: auto; bottom: -16px; left: 0; right: 0; margin-inline: auto;
    transform: rotate(135deg);
  }
}
@media (min-width: 861px) {
  .flow--4 .flow-step:not(:last-child)::after { top: 82px; }
}

/* ---------- FAQ accordion ---------- */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; align-items: start; }
.faq-item {
  border: 1.5px solid var(--c-border-strong); border-radius: var(--radius-sm);
  background: var(--c-white); overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--c-primary); }
.faq-item:not(.open):hover { border-color: var(--c-primary); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; font: inherit;
  font-weight: 700; color: var(--c-heading); cursor: pointer;
  padding: 18px 20px; display: flex; align-items: center; gap: 12px;
}
.faq-q .q-badge { color: var(--c-primary-dark); font-family: var(--font-serif); font-weight: 700; }
.faq-q .chev {
  margin-left: auto; flex-shrink: 0; width: 16px; height: 16px;
  border-right: 2px solid var(--c-primary); border-bottom: 2px solid var(--c-primary);
  transform: rotate(45deg); transition: transform .25s; margin-bottom: 4px;
}
.faq-item.open .faq-q .chev { transform: rotate(-135deg); margin-bottom: -4px; }
.faq-a { overflow: hidden; }
.js .faq-a { max-height: 0; transition: max-height .3s ease; }
.js .faq-item.open .faq-a { max-height: 260px; }
html:not(.js) .faq-q .chev { display: none; }
.faq-a-inner { padding: 0 20px 18px 46px; font-size: 0.9rem; color: var(--c-text); }

/* ---------- Pricing plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: var(--c-white); border: 1.5px solid var(--c-border-strong); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; position: relative; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.plan--featured { border: 2px solid var(--c-primary); box-shadow: 0 16px 44px rgba(196, 122, 76, 0.2); }
.plan:not(.plan--featured):hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.plan--featured:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(196, 122, 76, 0.26); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-primary); color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 6px 20px; border-radius: var(--radius-pill); white-space: nowrap;
  box-shadow: 0 6px 14px rgba(196, 122, 76, 0.3);
}
.plan-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--c-primary-soft);
  display: grid; place-items: center; margin: 0 auto 16px; }
.plan-icon svg { width: 28px; height: 28px; stroke: var(--c-primary); }
.plan h3 { font-size: 1.2rem; margin-bottom: 10px; }
.plan-desc { font-size: 0.84rem; color: var(--c-muted); margin: 0 auto 18px; min-height: 2.8em; }
.plan-tag {
  display: inline-block; background: var(--c-primary-soft); color: var(--c-primary-dark);
  font-size: 0.76rem; font-weight: 700; padding: 3px 12px; border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.plan-tag.is-sale { background: #d9533a; color: #fff; }
.plan-price-original {
  display: block; color: var(--c-muted); font-size: 1rem; font-weight: 500;
  text-decoration: line-through; text-decoration-color: #d9533a; margin-bottom: 2px;
}
.plan-price { font-size: 2rem; font-weight: 700; color: var(--c-heading); line-height: 1.2; }
.plan-price .unit { font-size: 1rem; font-weight: 700; }
.plan-tax { font-size: 0.76rem; color: var(--c-muted); margin-bottom: 18px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.plan .btn { margin-top: auto; width: 100%; }
.plan-features li { position: relative; padding: 9px 0 9px 26px; font-size: 0.88rem;
  border-bottom: 1px dashed var(--c-border); }
.plan-features li::before { content: "✓"; position: absolute; left: 0; top: 9px;
  color: var(--c-primary); font-weight: 700; }

/* プラン別の作成例（デモ） */
.samples-wrap { margin-top: 60px; }
.samples-wrap .subhead { margin-bottom: 8px; }
.samples-note { text-align: center; color: var(--c-muted); font-size: 0.88rem; margin: 0 auto 30px; max-width: 580px; }
.samples { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 880px; margin: 0 auto; }
.samples .work-card { min-width: 0; }   /* 画像の固有幅でトラックが広がり縦積みになるのを防ぐ */
/* スマホでも横並び（隣同士）を維持し、内容をコンパクトに */
@media (max-width: 620px) {
  .samples { gap: 12px; }
  .samples .work-body { padding: 13px 13px 15px; }
  .samples .work-card h3 { font-size: 0.92rem; margin-bottom: 6px; }
  .samples .work-card p { font-size: 0.78rem; line-height: 1.65; }
  .samples .work-tag { font-size: 0.68rem; padding: 2px 9px; margin-bottom: 7px; }
  .samples .work-more { font-size: 0.78rem; margin-top: 10px; }
}

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1.5px solid var(--c-border-strong); border-radius: var(--radius); }
.compare { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--c-white);
  font-size: 0.9rem; }
.compare th, .compare td { padding: 14px 16px; border-bottom: 1px solid var(--c-border);
  text-align: center; }
.compare thead th { background: var(--c-primary-soft); color: var(--c-heading); font-size: 0.9rem; }
.compare tbody th { text-align: left; font-weight: 500; color: var(--c-text); background: #fdf8f0; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--c-primary-dark); font-weight: 700; font-size: 1.05rem; }
.compare .opt { color: var(--c-muted); font-size: 0.82rem; }
.compare .no { color: var(--c-muted); }

/* ---------- Works filter + grid ---------- */
.filter { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter button {
  font: inherit; font-weight: 500; font-size: 0.9rem; padding: 9px 24px;
  border-radius: var(--radius-pill); border: 1.5px solid var(--c-border-strong);
  background: var(--c-white); color: var(--c-text); cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.filter button:hover { border-color: var(--c-primary); color: var(--c-primary); }
.filter button.active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work-card {
  background: var(--c-white); border: 1.5px solid var(--c-border-strong); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.work-thumb { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; display: block; }
.work-body { padding: 18px 20px 22px; flex: 1; }
.work-tag { display: inline-block; background: var(--c-primary-soft); color: var(--c-primary-dark);
  font-size: 0.76rem; font-weight: 700; padding: 3px 12px; border-radius: var(--radius-pill);
  margin-bottom: 10px; }
.work-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.work-card p { font-size: 0.85rem; margin: 0; color: var(--c-text); }
.work-more { display: inline-block; margin-top: 14px; color: var(--c-primary-dark);
  font-weight: 700; font-size: 0.85rem; transition: color .2s; }
.demo-note { background: var(--c-primary-soft); border: 1.5px solid var(--c-border-tint);
  color: var(--c-heading); border-radius: var(--radius-sm); padding: 13px 18px;
  font-size: 0.88rem; line-height: 1.7; text-align: center; margin-bottom: 30px; }
.work-card:hover .work-more { color: var(--c-primary-dark); }
.work-card[hidden] { display: none; }

/* ---------- ピックアップ事例（works トップ） ---------- */
.pickup {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 32px; align-items: center;
  background: var(--c-white); border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
  margin-bottom: 40px; position: relative;
}
.pickup-thumb { border-radius: var(--radius-sm); overflow: hidden; }
.pickup-thumb img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.pickup-badge {
  position: absolute; top: -12px; left: 26px;
  background: var(--c-primary); color: #fff; font-size: 0.76rem; font-weight: 700;
  padding: 5px 16px; border-radius: var(--radius-pill);
  box-shadow: 0 6px 14px rgba(196, 122, 76, 0.3);
}
.pickup h3 { font-size: 1.3rem; margin-bottom: 6px; }
.pickup .work-tag { margin-bottom: 12px; }
.pickup p { font-size: 0.92rem; color: var(--c-text); margin: 0 0 16px; }
.pickup--case { cursor: default; }
.pickup-badge.is-case { background: var(--c-accent-green); box-shadow: 0 6px 14px rgba(138, 154, 100, 0.3); }


/* お問い合わせ：メール導線 */
.form-mail { text-align: center; margin: 14px 0 0; font-size: 0.88rem; color: var(--c-text); }
.form-mail a { color: var(--c-primary-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; word-break: break-all; }

/* ---------- Industries（対応業種） ---------- */
.industries { display: flex; flex-wrap: wrap; justify-content: center;
  column-gap: 16px; row-gap: 0; margin-bottom: -16px; }
.industry { width: 120px; margin-bottom: 16px; text-align: center; background: var(--c-white);
  border: 1.5px solid var(--c-border-strong); border-radius: var(--radius-sm);
  padding: 20px 8px; font-size: 0.82rem; font-weight: 500; color: var(--c-heading); }
.industries .brk { display: none; flex: 0 0 100%; width: 100%; height: 0; margin: 0; }
@media (min-width: 641px) and (max-width: 1000px) {
  .industries .brk-medium { display: block; }
}
@media (max-width: 640px) {
  .industries .brk-narrow { display: block; }
  .industry { width: calc((100% - 32px) / 3); }
}
.industry .ind-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--c-primary-soft);
  display: grid; place-items: center; margin: 0 auto 10px; }
.industry .ind-icon svg { width: 24px; height: 24px; stroke: var(--c-primary); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: start; }
.form-card { background: var(--c-white); border: 1.5px solid var(--c-border-strong); border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow-sm); }
.form-card > p.lead { margin: -6px 0 22px; font-size: 0.9rem; color: var(--c-muted); }
.field { margin-bottom: 20px; }
.field label { display: flex; align-items: center; font-weight: 700; font-size: 0.9rem;
  color: var(--c-heading); margin-bottom: 8px; }
.tag-req, .tag-opt { font-size: 0.66rem; font-weight: 700; padding: 2px 8px; border-radius: 5px; margin-left: 8px; }
.tag-req { background: var(--c-primary); color: #fff; }
.tag-opt { background: #ece1d0; color: #6b5544; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 0.95rem; padding: 12px 14px;
  border: 1.5px solid #b3a085; border-radius: var(--radius-sm);
  background: #fffdf9; color: var(--c-heading);
}
.field input::placeholder, .field textarea::placeholder { color: #877358; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--c-primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 122, 76, 0.14);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem;
  margin: 4px 0 20px; color: var(--c-text); }
.form-check input { margin-top: 4px; }
.form-card .btn { width: 100%; }
.form-note { font-size: 0.78rem; color: var(--c-muted); text-align: center; margin: 14px 0 0; }
.form-alt { text-align: center; color: var(--c-muted); font-size: 0.82rem; margin: 20px 0 10px; position: relative; }
.form-alt::before, .form-alt::after {
  content: ""; position: absolute; top: 50%; width: 32%; height: 1px; background: var(--c-border);
}
.form-alt::before { left: 0; }
.form-alt::after { right: 0; }
.form-status { margin: 16px 0 0; padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--c-primary-soft); border: 1.5px solid var(--c-border-tint); color: var(--c-heading);
  font-size: 0.88rem; line-height: 1.7; }
.form-status:empty { padding: 0; border: 0; margin: 0; }
.form-status.is-success { background: #e9f7ef; border-color: #b7e3c8; color: #1b5e36; }
.form-status.is-error   { background: #fdecec; border-color: #f3c0c0; color: #b3261e; }

.info-list { margin: 0 0 8px; }
.info-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--c-border); }
.info-item:first-child { padding-top: 0; }
.info-item .ii-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--c-primary-soft);
  display: grid; place-items: center; flex-shrink: 0; }
.info-item .ii-icon svg { width: 24px; height: 24px; stroke: var(--c-primary); }
.info-item h3, .info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.info-item p { margin: 0; font-size: 0.84rem; color: var(--c-text); }

.assure { background: var(--c-bg-tint); border: 1.5px solid var(--c-border-tint); border-radius: var(--radius);
  padding: 22px 26px; margin-top: 24px; }
.assure h3 { font-size: 1rem; color: var(--c-primary-dark); text-align: center; margin-bottom: 14px; }
.assure ul { list-style: none; padding: 0; margin: 0; }
.assure li { position: relative; padding: 6px 0 6px 28px; font-size: 0.88rem; color: var(--c-heading); }
.assure li::before { content: "✓"; position: absolute; left: 4px; color: var(--c-primary); font-weight: 700; }

/* サイドの相談イラスト */
.contact-illust {
  background: var(--c-white); border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow-sm);
  margin-bottom: 24px; overflow: hidden;
}
.contact-illust img { width: 100%; border-radius: var(--radius-sm); }

/* ---------- Two-column blocks ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.panel { background: var(--c-white); border: 1.5px solid var(--c-border-strong); border-radius: var(--radius);
  padding: 30px 30px; box-shadow: var(--shadow-sm); }
.panel h3 { font-size: 1.1rem; margin-bottom: 16px; text-align: center; }
.panel p { font-size: 0.9rem; margin: 0; }
.panel .flow { gap: 6px; }
.panel .flow-num { width: 34px; height: 34px; font-size: 0.95rem; margin-bottom: 10px; }
.panel .flow-step h4 { font-size: 0.82rem; }

.subhead { text-align: center; font-size: 1.2rem; margin: 0 0 28px; }

.col-title { display: flex; align-items: center; gap: 12px; font-size: 1.2rem;
  color: var(--c-heading); margin: 0 0 6px; }
.col-title.mb { margin-bottom: 18px; }
.col-title .ti { width: 42px; height: 42px; border-radius: 12px; background: var(--c-primary-soft);
  display: grid; place-items: center; flex-shrink: 0; }
.col-title .ti svg { width: 22px; height: 22px; stroke: var(--c-primary); }

.flow--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 90px 0; }
.error-code { font-family: var(--font-serif); font-weight: 700; color: var(--c-primary);
  font-size: clamp(4rem, 3rem + 8vw, 8rem); line-height: 1; margin: 0 0 8px; }
.error-page h1 { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); margin-bottom: 16px; }
.error-msg { color: var(--c-text); margin: 0 auto 32px; max-width: 480px; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.error-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.error-links a { font-size: 0.92rem; color: var(--c-primary-dark); font-weight: 500; }
.error-links a:hover { text-decoration: underline; }

/* =========================================================
   品質スコア（Lighthouse ゲージ）
   ========================================================= */
.quality { --score-good: #1f9d57; }
.scorecard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 8px auto 0;
}
.gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  padding: 22px 12px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.gauge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.gauge-svg { width: 92px; height: 92px; }
.gauge-track { fill: none; stroke: var(--c-border); stroke-width: 7; }
.gauge-fill {
  fill: none;
  stroke: var(--score-good);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 213.63;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.1s cubic-bezier(.2,.7,.3,1);
}
.gauge-num {
  position: absolute;
  top: 22px; left: 0; right: 0;
  height: 92px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 700;
  color: var(--score-good);
  pointer-events: none;
}
.gauge-label { margin-top: 12px; font-weight: 700; color: var(--c-heading); font-size: 0.95rem; }
.gauge-desc { margin-top: 2px; font-size: 0.8rem; color: var(--c-muted); line-height: 1.5; }
.quality-note { margin: 18px auto 0; max-width: 860px; font-size: 0.78rem; color: var(--c-muted); text-align: center; }
@media (max-width: 680px) {
  .scorecard { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gauge-svg { width: 82px; height: 82px; }
  .gauge-num { top: 22px; height: 82px; font-size: 1.45rem; }
}

/* =========================================================
   想定シナリオ事例（Case Study）
   ========================================================= */
.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.case-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.case-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.case-flag {
  margin-left: auto;
  font-size: 0.72rem; font-weight: 700;
  color: var(--c-muted);
  background: var(--c-bg-tint);
  border: 1px dashed var(--c-border-strong);
  border-radius: var(--radius-pill);
  padding: 3px 11px;
}
.case-card > h3 { font-size: 1.16rem; line-height: 1.55; margin-bottom: 6px; }
.case-setting {
  margin: 0; font-size: 0.8rem; color: var(--c-muted);
  display: inline-block;
  border-left: 3px solid var(--c-accent-green); padding-left: 9px;
}
.case-block { margin-top: 16px; }
.case-k {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; color: var(--c-primary-dark);
  background: var(--c-primary-soft);
  border-radius: var(--radius-sm);
  padding: 3px 12px; margin-bottom: 8px;
}
.case-block p { margin: 0; }
.case-action ul { margin: 4px 0 0; padding-left: 1.1em; }
.case-action li { margin-bottom: 5px; }
.case-result { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--c-border); }
.case-results { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.case-stat {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  background: var(--c-bg-tint);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.cs-label { font-size: 0.88rem; color: var(--c-text); font-weight: 600; }
.cs-flow { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.cs-flow i { font-style: normal; color: var(--c-muted); font-size: 0.9rem; }
.cs-flow b { font-family: var(--font-serif); color: var(--c-primary-dark); font-size: 1.25rem; font-weight: 700; }
.cs-arrow { width: 22px; height: 11px; color: var(--c-accent-green); flex: none; }
.cs-sub { font-size: 0.8rem; color: var(--c-muted); }
.case-more { text-align: center; margin-top: 28px; }
.case-more-lead { margin: 0 0 14px; font-weight: 700; color: var(--c-heading); }
.case-chips {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.case-chips li {
  background: var(--c-white);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.88rem; color: var(--c-text);
}
.cases-cta { text-align: center; margin-top: 26px; }
.cases-cta p { margin: 0 0 14px; font-weight: 600; color: var(--c-heading); }
@media (max-width: 820px) {
  .cases { grid-template-columns: 1fr; gap: 18px; }
}

/* =========================================================
   料金シミュレーター（Estimator）
   ========================================================= */
.estimator {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  margin-top: 8px;
}
.est-form { display: flex; flex-direction: column; gap: 18px; }
.est-group {
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  background: var(--c-white);
  padding: 18px 20px 20px;
  margin: 0;
}
.est-group legend {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--c-heading); font-size: 1.02rem;
  padding: 0;
}
.est-step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  font-size: 0.85rem; font-weight: 700; flex: none;
}
.est-options { display: grid; gap: 10px; margin-top: 14px; }
.est-options--2 { grid-template-columns: 1fr 1fr; }
.est-pick {
  position: relative;
  display: block; cursor: pointer;
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.est-pick input { position: absolute; opacity: 0; pointer-events: none; }
.est-pick-body { display: flex; flex-direction: column; gap: 2px; }
.est-pick-body b { color: var(--c-heading); font-size: 0.98rem; }
.est-pick-body small { color: var(--c-muted); font-size: 0.82rem; }
.est-pick-body em { font-style: normal; font-weight: 700; color: var(--c-primary-dark); margin-top: 2px; }
.est-pick--check .est-pick-body { flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; }
.est-pick:hover { border-color: var(--c-primary); }
.est-pick:has(input:checked) {
  border-color: var(--c-primary);
  background: var(--c-primary-soft);
  box-shadow: 0 0 0 1px var(--c-primary) inset;
}
.est-pick:has(input:focus-visible) { outline: 3px solid var(--c-primary); outline-offset: 2px; }
.est-stepper { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.est-step-btn {
  width: 40px; height: 40px; flex: none;
  border: 1.5px solid var(--c-border-strong); background: var(--c-white);
  border-radius: var(--radius-sm); font-size: 1.3rem; line-height: 1;
  color: var(--c-primary-dark); cursor: pointer;
  transition: background .2s, border-color .2s;
}
.est-step-btn:hover { border-color: var(--c-primary); background: var(--c-primary-soft); }
#est-pages {
  width: 76px; height: 40px; text-align: center;
  font-size: 1.1rem; font-weight: 700; color: var(--c-heading);
  border: 1.5px solid var(--c-border-strong); border-radius: var(--radius-sm);
  background: var(--c-white);
}
.est-pages-unit { color: var(--c-muted); font-size: 0.9rem; }
.est-hint { margin: 12px 0 0; font-size: 0.8rem; color: var(--c-muted); }
.est-opt-hint {
  background: var(--c-primary-soft); color: var(--c-primary-dark);
  border-radius: var(--radius-sm); padding: 8px 12px; font-weight: 600;
}
.est-free-tag { font-style: normal; font-weight: 700; color: #1f7a45; font-size: 0.9rem; }

.est-result {
  position: sticky; top: 88px;
  background: var(--c-white);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px 22px;
  text-align: center;
}
.est-result-lead { margin: 0; font-size: 0.88rem; color: var(--c-muted); font-weight: 600; }
.est-total { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-top: 4px; }
.est-total #est-total { font-family: var(--font-serif); font-size: 2.7rem; font-weight: 700; color: var(--c-primary); line-height: 1.1; }
.est-yen { font-size: 1.1rem; font-weight: 700; color: var(--c-primary); }
.est-total-sub { margin: 2px 0 0; font-size: 0.78rem; color: var(--c-muted); }
.est-original { margin: 8px 0 0; font-size: 0.84rem; color: var(--c-muted); }
.est-original s { color: var(--c-muted); }
.est-save {
  display: inline-block; margin-left: 4px;
  background: #e8f3ea; color: #1f7a45;
  border-radius: var(--radius-pill); padding: 2px 10px;
  font-size: 0.8rem; font-weight: 700;
}
.est-save b { color: #1f7a45; }
.est-campaign {
  margin: 10px 0 0; font-size: 0.78rem; line-height: 1.5;
  color: var(--c-primary-dark);
  background: var(--c-primary-soft); border-radius: var(--radius-sm);
  padding: 7px 12px;
}
.est-timeline {
  margin: 12px auto 0; display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.86rem; color: var(--c-text);
  background: var(--c-primary-soft); border-radius: var(--radius-pill);
  padding: 5px 14px;
}
.est-timeline b { color: var(--c-primary-dark); font-weight: 700; }
.est-monthly { margin: 10px 0 0; font-size: 0.9rem; color: var(--c-text); }
.est-monthly b { color: var(--c-primary-dark); font-family: var(--font-serif); }
.est-breakdown { list-style: none; margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid var(--c-border); text-align: left; }
.est-breakdown li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.86rem; padding: 4px 0; color: var(--c-text); }
.est-breakdown li span:last-child { font-weight: 700; color: var(--c-heading); white-space: nowrap; }
.est-cta { width: 100%; margin-top: 18px; }
.est-disclaimer { margin: 14px 0 0; font-size: 0.74rem; color: var(--c-muted); line-height: 1.6; text-align: left; }
@media (max-width: 820px) {
  .estimator { grid-template-columns: 1fr; gap: 18px; }
  .est-result { position: static; }
}
@media (max-width: 480px) {
  .est-options--2 { grid-template-columns: 1fr; }
}

/* =========================================================
   機能デモ（予約システム・言語切替）
   ========================================================= */
.lang-toggle {
  display: inline-flex; margin-top: 18px;
  border: 1.5px solid var(--c-border-strong); border-radius: var(--radius-pill);
  background: var(--c-white); padding: 4px; gap: 4px;
}
/* ヘッダー内の言語スイッチ（コンパクト版） */
.lang-switch {
  display: inline-flex; flex: none;
  border: 1.5px solid var(--c-border-strong); border-radius: var(--radius-pill);
  background: var(--c-white); padding: 3px; gap: 2px;
}
.lang-switch .lang-btn { padding: 5px 11px; font-size: 0.8rem; }

/* ヘッダー：ナビが窮屈になる幅でハンバーガーに切替（メニューの折り返し防止） */
@media (max-width: 1100px) {
  .nav-toggle { display: flex; margin-left: 16px; } /* 言語スイッチとの間隔を確保 */
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .28s ease, visibility .28s ease;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav a { padding: 14px 24px; }
  .nav a::after { display: none; }
  .header-cta { display: none; } /* ヒーロー/追従ボタンのCTAに集約し、ヘッダー過密を回避 */
  .lang-switch { margin-left: auto; }
  .lang-switch .lang-btn { padding: 5px 10px; font-size: 0.78rem; }
}
.lang-btn {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-sans); font-weight: 700; font-size: 0.9rem;
  color: var(--c-muted); padding: 7px 18px; border-radius: var(--radius-pill);
  transition: background .2s, color .2s;
}
.lang-btn.is-active { background: var(--c-primary); color: #fff; }
.lang-hint { margin: 10px 0 0; font-size: 0.82rem; color: var(--c-muted); }

.booking {
  max-width: 760px; margin: 8px auto 0;
  background: var(--c-white); border: 1px solid var(--c-border-strong);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 26px 26px 28px;
}
.bk-field { margin-bottom: 22px; }
.bk-label { display: block; font-weight: 700; color: var(--c-heading); margin-bottom: 12px; }
.bk-options { display: flex; flex-wrap: wrap; gap: 10px; }
.bk-chip {
  border: 1.5px solid var(--c-border-strong); background: var(--c-white);
  color: var(--c-text); cursor: pointer;
  font-family: var(--font-sans); font-size: 0.92rem; font-weight: 600;
  padding: 10px 16px; border-radius: var(--radius-pill);
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
}
.bk-chip:hover:not(:disabled) { border-color: var(--c-primary); }
.bk-chip.is-sel {
  background: var(--c-primary); border-color: var(--c-primary); color: #fff;
  box-shadow: var(--shadow-sm);
}
.bk-chip.is-full {
  color: var(--c-muted); background: var(--c-bg-tint);
  border-style: dashed; cursor: not-allowed; opacity: .75;
}
.bk-placeholder { margin: 0; color: var(--c-muted); font-size: 0.88rem; }
.bk-summary {
  margin: 4px 0 18px; padding: 14px 16px;
  background: var(--c-primary-soft); border-radius: var(--radius-sm);
  color: var(--c-heading); font-weight: 700;
}
.bk-sum-label {
  display: inline-block; margin-right: 10px; padding: 2px 10px;
  background: var(--c-primary); color: #fff; border-radius: var(--radius-pill);
  font-size: 0.74rem;
}
.bk-submit { width: 100%; }
.bk-submit:disabled { opacity: .5; cursor: not-allowed; }
.bk-result { margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; text-align: center; }
.bk-result:empty { display: none; }
.bk-ok { font-weight: 700; color: #1f7a45; font-size: 1.02rem; }
.bk-ok-sub { font-size: 0.84rem; color: var(--c-muted); line-height: 1.6; }
.bk-handoff { align-self: center; margin-top: 4px; }
.bk-note { margin: 16px 0 0; font-size: 0.78rem; color: var(--c-muted); line-height: 1.6; text-align: center; }

.demo-feature {
  display: flex; align-items: center; gap: 20px;
  max-width: 680px; margin: 0 auto;
  background: var(--c-white); border: 1px solid var(--c-border-strong);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 22px 24px;
}
.demo-feature-ic {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-primary-soft); color: var(--c-primary-dark);
}
.demo-feature-ic svg { width: 26px; height: 26px; }
.demo-feature p { margin: 0 0 12px; }
@media (max-width: 560px) {
  .booking { padding: 22px 18px 24px; }
  .demo-feature { flex-direction: column; text-align: center; align-items: center; gap: 14px; }
}

/* 機能デモへの導線リンク */
.quality-cta { text-align: center; margin-top: 20px; }
.cases-demo-link { margin: 14px 0 0; }
.opt-demo-link { text-align: center; margin: 22px 0 0; }
.cases-demo-link a, .opt-demo-link a {
  color: var(--c-primary-dark); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
}
.cases-demo-link a:hover, .opt-demo-link a:hover { color: var(--c-primary); }

/* 事業者情報・特商法テーブル */
.legal-table { width: 100%; border-collapse: collapse; background: var(--c-white); border: 1px solid var(--c-border-strong); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.legal-table th, .legal-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--c-border); font-size: 0.92rem; vertical-align: top; line-height: 1.7; }
.legal-table th { width: 32%; background: var(--c-bg-tint); color: var(--c-heading); font-weight: 700; }
.legal-table tr:last-child th, .legal-table tr:last-child td { border-bottom: 0; }
.legal-table a { color: var(--c-primary-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { display: inline-block; margin-top: 4px; font-size: 0.8rem; color: var(--c-muted); }
.legal-foot { margin-top: 18px; font-size: 0.85rem; color: var(--c-muted); }
@media (max-width: 600px) {
  .legal-table th, .legal-table td { display: block; width: auto; }
  .legal-table th { border-bottom: 0; padding-bottom: 4px; }
}

/* =========================================================
   Accessibility, media, motion
   ========================================================= */
picture { display: contents; }

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  background: var(--c-primary); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 10px; font-weight: 700; font-size: 0.9rem;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, .btn:focus-visible, .filter button:focus-visible,
.faq-q:focus-visible, .nav-toggle:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 2px;
}

.reveal { opacity: 0; }
.reveal:not(.in) { will-change: opacity, transform; }
.reveal.in { opacity: 1; animation: reveal-in .6s ease backwards; }
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(18px); }
}
.cards .card.reveal:nth-child(2), .features .feature.reveal:nth-child(2),
.work-grid .work-card.reveal:nth-child(2), .plans .plan.reveal:nth-child(2),
.voices .voice.reveal:nth-child(2), .cases .case-card.reveal:nth-child(2) { animation-delay: .08s; }
.cards .card.reveal:nth-child(3), .features .feature.reveal:nth-child(3),
.work-grid .work-card.reveal:nth-child(3), .plans .plan.reveal:nth-child(3),
.voices .voice.reveal:nth-child(3) { animation-delay: .16s; }
.features .feature.reveal:nth-child(4), .work-grid .work-card.reveal:nth-child(4) { animation-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* モバイル可読性・タップ領域 */
@media (max-width: 520px) {
  .feature p, .card p, .work-card p, .faq-a-inner, .plan-desc, .info-item p { font-size: 0.9rem; }
  .plan-tax, .breadcrumb, .form-note { font-size: 0.82rem; }
  .filter button { padding: 11px 22px; }
  .nav a { padding: 15px 24px; }
  /* モバイルでは見出しの葉飾りを省き、長い見出しのはみ出しを防ぐ */
  .page-head h1 { flex-wrap: wrap; }
  .page-head h1::before, .page-head h1::after { display: none; }
}

/* ---------- コンポーネント別レスポンシブ ---------- */
@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .pickup { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .flow { grid-template-columns: 1fr; gap: 22px; max-width: 360px; margin-inline: auto; }
  .flow-step:not(:last-child)::after { top: auto; bottom: -16px; right: 50%;
    transform: translateX(50%) rotate(135deg); }
  .faq { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .panel .flow { grid-template-columns: repeat(5, 1fr); }
  .panel .flow-step:not(:last-child)::after { top: 12px; bottom: auto; right: -6px;
    transform: rotate(45deg); }
}
@media (max-width: 620px) {
  .features { grid-template-columns: 1fr; gap: 26px; }
  .work-grid { grid-template-columns: 1fr; }
  .voice { flex-basis: 86%; }
  .panel .flow { grid-template-columns: 1fr; max-width: 280px; }
  .panel .flow-step:not(:last-child)::after { bottom: -12px; top: auto; right: 50%;
    transform: translateX(50%) rotate(135deg); }
}

/* =========================================================
   監査改善：ファーストビュー強化 / 約束 / 安心マイクロコピー / スマホ固定CTA
   ========================================================= */
/* ヒーロー：アクション（ボタン）周り */
.hero .hero-actions { gap: 14px; margin-top: 30px; align-items: center; }
.hero .hero-actions .btn { min-width: 188px; }
.hero .hero-actions .btn .icon { width: 18px; height: 18px; }

/* ヒーロー：補助テキストリンク（制作事例へ） */
.hero-textlink { display: inline-flex; align-items: center; gap: 4px; margin: 16px 0 0;
  font-size: 0.9rem; font-weight: 700; color: var(--c-primary-dark); }
.hero-textlink:hover { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }

/* ヒーロー：価格・期間・無料の一体型スペックバー */
.hero-spec {
  display: inline-flex; align-items: stretch; margin: 30px 0 0;
  background: var(--c-white); border: 1.5px solid var(--c-border-strong);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.hero-spec .spec { padding: 12px 24px; text-align: center; }
.hero-spec .spec + .spec { border-left: 1px solid var(--c-border); }
.hero-spec .spec small { display: block; font-size: 0.7rem; color: var(--c-muted); margin-bottom: 4px; }
.hero-spec .spec b { font-size: 1.2rem; color: var(--c-primary-dark); line-height: 1; white-space: nowrap; }
.hero-spec .spec b span { font-size: 0.76rem; margin-left: 1px; font-weight: 700; }

/* CTA直後の安心ひとこと（CTA帯で使用） */
.cta-reassure { font-size: 0.82rem; color: var(--c-muted); margin: 14px 0 0; line-height: 1.7; }
.cta-reassure::before { content: "✓ "; color: var(--c-primary); font-weight: 700; }
.cta-band .cta-reassure { color: #fff2e6; }
.cta-band .cta-reassure::before { color: #fff; }

@media (max-width: 860px) {
  .hero-spec { display: flex; width: 100%; margin-top: 26px; }
  .hero-spec .spec { flex: 1; padding: 12px 6px; }
  .hero-textlink { width: 100%; justify-content: center; }
  .cta-reassure { text-align: center; }
}
@media (max-width: 520px) {
  .hero .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero .hero-actions .btn { width: 100%; min-width: 0; }
  .hero-spec .spec b { font-size: 1.02rem; }
  .hero-spec .spec small { font-size: 0.64rem; }
}

/* 「安心の約束」カード（旧・実績スタッツの置換） */
.promises { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 44px; }
.promise {
  background: var(--c-white); border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius); padding: 22px 14px 18px; text-align: center; box-shadow: var(--shadow-sm);
}
.promise .pi { width: 44px; height: 44px; border-radius: 12px; background: var(--c-primary-soft);
  display: grid; place-items: center; margin: 0 auto 12px; }
.promise .pi svg { width: 22px; height: 22px; stroke: var(--c-primary); }
.promise b { display: block; font-size: 0.9rem; color: var(--c-heading); line-height: 1.45; }
.promise small { display: block; margin-top: 4px; font-size: 0.74rem; color: var(--c-muted); }
.promises-head { margin: 60px 0 0; }
.promises-head + .promises { margin-top: 24px; }
@media (max-width: 620px) { .promises-head { margin-top: 44px; } }
@media (max-width: 860px) { .promises { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .promises { grid-template-columns: 1fr; } }

/* 制作事例カードのメタ情報（プラン/目安/期間） */
.work-meta-row { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 2px 0 10px; font-size: 0.78rem; color: var(--c-muted); }
.work-meta-row span { display: inline-flex; align-items: center; gap: 5px; }
.work-meta-row b { color: var(--c-primary-dark); font-weight: 700; }

/* スマホ：追従ボタンを画面下端のフル幅固定バーに */
@media (max-width: 860px) {
  .float-stack {
    left: 0; right: 0; bottom: 0; flex-direction: row; gap: 0;
    box-shadow: 0 -4px 16px rgba(120, 84, 44, 0.16);
  }
  .float-stack .float-cta {
    flex: 1; justify-content: center; border-radius: 0; box-shadow: none;
    min-height: 56px; font-size: 0.95rem; padding: 0 10px;
  }
  body { padding-bottom: 56px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .skip-link, .nav-toggle,
  .filter, .hero-actions, .form-check, .form-card .btn, .form-status,
  .notice-bar, .float-cta { display: none !important; }
  * { box-shadow: none !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .faq-a, .js .faq-a { max-height: none !important; }
  .section, .page-head { padding: 16px 0 !important; }
  a { color: #000; text-decoration: underline; }
}
