/* ==========================================================
   ダレカニ デザインシステム v4 「クリーン・トラスト」
   オーナー提供のFVリファレンス(2026-07-18)に基づく青基調。
   白×ライトブルーの紙面、ロイヤルブルーの主色、適合度=グリーン。
   確認済み=判子(青)。ビルド工程なしの素のCSS1ファイル。
   ========================================================== */
:root {
  /* 紙面 */
  --bg: #f3f7fc;
  --bg-2: #e9f0f9;
  --card: #ffffff;
  /* インク */
  --ink: #17253a;
  --ink-2: #51617a;
  --ink-3: #93a1b5;
  /* ブルー(主色) */
  --blue-900: #133a80;
  --blue-700: #1f5ad6;
  --blue-600: #2f6ae0;
  --blue-100: #d4e3f9;
  --blue-50: #e8f0fc;
  /* グリーン(適合度・確認) */
  --green: #159f65;
  --green-bg: #e6f6ee;
  /* サブアクセント(付箋・土日など。控えめに) */
  --amber: #f0a63c;
  --amber-paper: #fdf3dd;
  --amber-line: #ecd9ae;
  /* 状態色 */
  --ok: #159f65;
  --ok-bg: #e6f6ee;
  --danger: #c05252;
  --danger-bg: #faecec;
  /* 線と影(青インク) */
  --line: #e1e9f3;
  --line-strong: #c6d4e6;
  --shadow: 0 1px 2px rgba(19, 58, 128, .06), 0 8px 24px rgba(19, 58, 128, .08);
  --shadow-lift: 0 4px 8px rgba(19, 58, 128, .10), 0 16px 38px rgba(19, 58, 128, .14);
  /* 角丸3段 */
  --r-s: 10px;
  --r-m: 16px;
  --r-pill: 999px;
  --font-body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
  --font-display: var(--font-body);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue-700); }
h1, h2, h3 { font-weight: 800; letter-spacing: .01em; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- ヘッダー ---------- */
.site-header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-text { font-weight: 800; font-size: 1.25rem; line-height: 1.2; }
.brand-text small { display: block; font-size: .6rem; color: var(--ink-3); font-weight: 500; letter-spacing: .04em; }
.global-nav { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.global-nav a {
  text-decoration: none; color: var(--ink-2); font-size: .9rem; font-weight: 700;
  padding: 8px 12px; border-radius: var(--r-s);
}
.global-nav a:hover { background: var(--blue-50); color: var(--blue-700); }
.global-nav .nav-cta { background: var(--blue-700); color: #fff; border-radius: var(--r-pill); padding: 8px 18px; }
.global-nav .nav-cta:hover { background: var(--blue-900); color: #fff; }

/* ---------- ヒーロー(FV: リファレンス再現) ---------- */
.hero {
  position: relative;
  padding: 48px 0 40px;
  background:
    radial-gradient(900px 420px at 50% -80px, rgba(47, 106, 224, .10), transparent 70%),
    linear-gradient(180deg, #fdfefe, var(--bg));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; user-select: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.hero-intro { color: var(--ink-2); font-size: .95rem; margin: 0 0 10px; font-weight: 500; }
.hero h1 {
  font-size: 2.5rem; line-height: 1.42; margin: 0 0 14px; font-weight: 900; color: var(--ink);
}
.hero h1 .em { color: var(--blue-700); }
.hero-lead { color: var(--ink-2); margin: 0 auto 26px; font-size: 1rem; max-width: 560px; }

.search-panel {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-lift); padding: 22px; max-width: 720px; margin: 0 auto;
}
.search-box {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--line-strong); border-radius: var(--r-m);
  padding: 4px 4px 4px 16px; margin-bottom: 14px;
}
.search-box .sb-icon { color: var(--ink-3); flex: 0 0 auto; display: flex; }
.search-box input[type="text"] {
  flex: 1; padding: 13px 4px; font-size: 1.02rem; border: 0; background: transparent;
  min-width: 0; font-family: var(--font-body); color: var(--ink);
}
.search-box input[type="text"]::placeholder { color: var(--ink-3); }
.search-box input[type="text"]:focus { outline: none; }
.search-box:focus-within { border-color: var(--blue-700); box-shadow: 0 0 0 4px rgba(31, 90, 214, .12); }
.hero-cta-row { display: flex; gap: 12px; }
.hero-cta-row .btn { margin: 0; flex: 1; padding: 15px 18px; font-size: 1.05rem; border-radius: var(--r-m); }
.hero-cta-row .btn::after { content: " →"; font-weight: 800; }

/* カテゴリクイックチップ */
.quick-cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 22px auto 0; max-width: 760px; }
.quick-cats a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 10px 16px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: .92rem;
  box-shadow: var(--shadow);
}
.quick-cats a svg { width: 20px; height: 20px; color: var(--blue-700); }
.quick-cats a:hover { border-color: var(--blue-600); color: var(--blue-700); transform: translateY(-2px); }

/* 浮遊する適合度カード(装飾・PCのみ) */
.float-card {
  position: absolute; z-index: 1; width: 218px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  box-shadow: var(--shadow-lift); padding: 14px 16px; text-align: left; font-size: .8rem;
}
.float-card .fc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.float-card .fc-icon {
  width: 34px; height: 34px; border-radius: var(--r-s); background: var(--blue-50);
  display: flex; align-items: center; justify-content: center; color: var(--blue-700); flex: 0 0 34px;
}
.float-card .fc-name { font-weight: 800; font-size: .84rem; line-height: 1.4; }
.float-card .fc-cat {
  display: inline-block; font-size: .68rem; color: var(--blue-700); background: var(--blue-50);
  border-radius: var(--r-pill); padding: 1px 9px; margin-bottom: 6px; font-weight: 700;
}
.float-card .fc-match { display: flex; align-items: baseline; gap: 6px; margin: 2px 0 6px; }
.float-card .fc-match .lbl { color: var(--ink-2); font-size: .72rem; }
.float-card .fc-match .pct { color: var(--green); font-weight: 900; font-size: 1.45rem; line-height: 1; }
.float-card .fc-match .pct small { font-size: .8rem; }
.float-card .fc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 6px; }
.float-card .fc-tags span {
  font-size: .66rem; padding: 1px 8px; border-radius: var(--r-pill);
  background: var(--green-bg); color: var(--green); font-weight: 700;
}
.float-card .fc-price { font-weight: 800; color: var(--ink); font-size: .88rem; text-align: right; }
.fc-1 { top: 68px; left: 18px; transform: rotate(-2deg); }
.fc-2 { bottom: 130px; left: 40px; transform: rotate(1.5deg); }
.fc-3 { top: 80px; right: 18px; transform: rotate(2deg); }
.fc-4 { bottom: 120px; right: 44px; transform: rotate(-1.5deg); }
.hero-note { position: relative; z-index: 2; text-align: center; color: var(--ink-3); font-size: .7rem; margin: 18px 0 0; }

/* 信頼バー(実数のみ) */
.trust-bar {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px 26px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  box-shadow: var(--shadow); padding: 14px 22px; margin: 26px auto 0; max-width: 1000px;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--ink-2); }
.trust-item svg { width: 20px; height: 20px; }
.trust-item b { color: var(--ink); font-size: .9rem; }
.trust-item .t-blue { color: var(--blue-700); }
.trust-item .t-green { color: var(--green); }
.trust-item .t-amber { color: var(--amber); }
.trust-item .t-purple { color: #7c5cd6; }
.trust-sep { width: 1px; height: 26px; background: var(--line-strong); }

/* ---------- セクション ---------- */
.section { padding: 46px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section h2 { font-size: 1.45rem; margin: 0 0 6px; color: var(--ink); }
.section h2::before {
  content: ""; display: inline-block; width: 26px; height: 4px;
  background: var(--blue-700); border-radius: 2px; margin-right: 12px; vertical-align: .26em;
}
.section .section-lead { color: var(--ink-2); margin: 0 0 24px; font-size: .95rem; }

/* 見出しの型 */
.page-title { font-size: 1.6rem; margin: 0 0 8px; color: var(--ink); font-weight: 800; }
.section h2.sub-title { font-size: 1.16rem; }
.section-tight { padding-top: 20px; }

/* ---------- SEOピラー ---------- */
.pillar-panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  box-shadow: var(--shadow); padding: 22px; margin: 20px 0 26px;
}
.pillar-panel p { margin: 8px 0 0; color: var(--ink-2); font-size: .92rem; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.pillar-grid > div {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-s); padding: 16px;
}
.pillar-grid h3, .faq-mini h3 { margin: 0 0 8px; font-size: .96rem; }
.pillar-grid ul { margin: 0; padding-left: 1.2em; color: var(--ink-2); font-size: .9rem; }
.faq-mini { margin-top: 18px; }
.faq-mini details { border-top: 1px solid var(--line); padding: 10px 0; }
.faq-mini summary { cursor: pointer; font-weight: 700; color: var(--ink); }
.related-articles { display: grid; gap: 8px; margin: -8px 0 24px; }
.related-articles a {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-s);
  padding: 10px 14px; text-decoration: none; font-weight: 700;
}
.related-articles a:hover { border-color: var(--blue-600); background: var(--blue-50); }
.area-seo-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 14px 0 18px; }
.area-seo-stats div {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-s);
  padding: 12px; text-align: center; box-shadow: var(--shadow);
}
.area-seo-stats span { display: block; font-weight: 900; color: var(--blue-700); font-size: 1.08rem; line-height: 1.3; }
.area-seo-stats small { color: var(--ink-2); font-size: .76rem; }

/* ---------- チップ ---------- */
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: var(--card); border: 1px solid var(--line-strong);
  border-radius: var(--r-pill); text-decoration: none; color: var(--ink); font-size: .92rem;
}
.chip:hover { border-color: var(--blue-700); color: var(--blue-700); background: var(--blue-50); }
.chip-voice::before { content: "「"; color: var(--blue-600); }
.chip-voice::after { content: "」"; color: var(--blue-600); }
.chip-amber {
  background: var(--amber-paper); border: 1px solid var(--amber-line);
  border-radius: 4px 12px 4px 12px; box-shadow: 0 2px 0 rgba(190, 138, 30, .15);
}
.chip-amber:hover { background: #fbecc9; border-color: var(--amber); color: var(--ink); }

/* ---------- カテゴリカード ---------- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 18px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow);
  position: relative;
}
.category-card::after {
  content: "→"; position: absolute; right: 14px; bottom: 10px; color: var(--ink-3);
  font-size: .9rem; transition: transform .16s ease, color .16s ease;
}
.category-card:hover { border-color: var(--blue-600); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.category-card:hover::after { transform: translateX(4px); color: var(--blue-700); }
.category-card .cat-icon {
  width: 46px; height: 46px; border-radius: var(--r-s); background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center; color: var(--blue-700);
}
.category-card .cat-name { font-weight: 800; font-size: 1rem; }
.category-card .cat-count { font-size: .78rem; color: var(--ink-3); }

/* ---------- サービスカード ---------- */
.service-list { display: grid; gap: 14px; }
.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 20px 22px; box-shadow: var(--shadow); position: relative;
}
.service-card .sc-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; flex-wrap: wrap; }
.service-card h3 { margin: 2px 0 0; font-size: 1.15rem; }
.service-card h3 a { text-decoration: none; color: var(--ink); }
.service-card h3 a:hover { color: var(--blue-700); text-decoration: underline; text-underline-offset: 5px; }
.sc-category {
  font-size: .76rem; color: var(--blue-700); background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 10px; border-radius: var(--r-pill); text-decoration: none; font-weight: 700;
}
.sc-category:hover { border-color: var(--blue-600); }
.sc-desc { color: var(--ink-2); font-size: .92rem; margin: 8px 0 10px; }
.sc-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: .8rem; color: var(--ink-2); align-items: center; }
.sc-meta span { background: var(--bg); border: 1px solid var(--line); padding: 3px 10px; border-radius: var(--r-s); }
.sc-price { font-weight: 800; color: var(--ink); }
.sc-meta .sc-price { border-color: var(--line-strong); }

/* ---------- 判子(確認ステータス) ---------- */
.hanko {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  width: 50px; height: 50px; flex: 0 0 50px; margin-left: auto;
  border: 2.5px double var(--blue-700); border-radius: 50%;
  color: var(--blue-700); font-weight: 800;
  font-size: .6rem; line-height: 1.3; letter-spacing: .05em;
  transform: rotate(-6deg); background: var(--card) !important; padding: 0 !important;
}
.hanko.hanko-pending { border-style: dashed; border-width: 2px; color: var(--ink-3); }
.service-definition { color: var(--ink-2); margin: 8px 0 10px; font-size: .95rem; }
.pr-note {
  background: var(--amber-paper); border: 1px solid var(--amber-line); border-radius: var(--r-s);
  color: var(--ink); font-size: .78rem; line-height: 1.7; padding: 10px 12px; margin: 0 0 12px;
}

/* ---------- 適合度 ---------- */
.match-badge {
  display: flex; flex-direction: column; align-items: center; min-width: 88px;
  background: var(--green-bg); border: 1px solid #cdeadb; border-radius: var(--r-m); padding: 8px 10px;
}
.match-badge .pct { font-size: 1.35rem; font-weight: 900; color: var(--green); line-height: 1.2; }
.match-badge .lbl { font-size: .66rem; color: var(--ink-2); }
.match-checks { margin: 12px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: .78rem; }
.match-checks li { padding: 3px 10px; border-radius: var(--r-s); }
.match-checks li.ok { background: var(--ok-bg); color: var(--ok); }
.match-checks li.ng { background: var(--danger-bg); color: var(--danger); }

/* ---------- 目的別ピック ---------- */
.picks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.pick-card {
  background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--r-m);
  padding: 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative;
}
.pick-card::before {
  content: ""; position: absolute; top: 0; left: 18px; right: 18px; height: 3px;
  background: var(--blue-700); border-radius: 0 0 3px 3px;
}
.pick-reason {
  align-self: flex-start; font-size: .78rem; font-weight: 700; color: var(--blue-700);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 3px 12px; border-radius: var(--r-pill); margin-bottom: 10px;
}
.pick-card h3 { margin: 0 0 6px; font-size: 1.06rem; }
.pick-card h3 a { color: var(--ink); text-decoration: none; }
.pick-card h3 a:hover { color: var(--blue-700); }
.pick-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* ---------- 詳細ページ ---------- */
.breadcrumbs { font-size: .8rem; color: var(--ink-3); padding: 14px 0 0; }
.breadcrumbs a { color: var(--ink-3); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue-700); }

.detail-head { padding: 22px 0 10px; }
.detail-head h1 { margin: 8px 0 10px; font-size: 1.7rem; font-weight: 800; }
.badge-verification {
  display: inline-block; font-size: .76rem; font-weight: 800; padding: 4px 14px; border-radius: var(--r-pill);
  background: var(--card); color: var(--blue-700); border: 2px double var(--blue-700);
  letter-spacing: .08em;
}
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: start; padding-bottom: 48px; }
.detail-main > section { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m); padding: 24px; margin-bottom: 16px; }
.detail-main h2 { font-size: 1.16rem; margin: 0 0 14px; padding-left: 12px; border-left: 4px solid var(--blue-700); color: var(--ink); }
.cando-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cando-box { border-radius: var(--r-s); padding: 14px 16px; font-size: .92rem; }
.cando-box.can { background: var(--ok-bg); }
.cando-box.cannot { background: var(--danger-bg); }
.cando-box h3 { margin: 0 0 6px; font-size: .95rem; }
.cando-box.can h3 { color: var(--ok); }
.cando-box.cannot h3 { color: var(--danger); }

.spec-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 34%; color: var(--ink-2); font-weight: 600; }
.policy-box {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  box-shadow: var(--shadow); padding: 22px;
}
.policy-box h2 { font-size: 1.05rem; margin: 20px 0 6px; }
.policy-box h2:first-child { margin-top: 0; }
.policy-box p { margin: 0; color: var(--ink-2); font-size: .92rem; }

.detail-side .cta-box {
  background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--r-m);
  padding: 20px; box-shadow: var(--shadow); position: sticky; top: 84px;
}
.btn { display: block; text-align: center; padding: 13px 18px; border-radius: var(--r-s); font-weight: 800; text-decoration: none; margin-bottom: 10px; border: 0; cursor: pointer; font-size: 1rem; width: 100%; font-family: var(--font-body); }
.btn-primary { background: var(--blue-700); color: #fff; }
.btn-primary:hover { background: var(--blue-900); }
.btn-affiliate {
  background: linear-gradient(135deg, #e88318, #d75f0b); color: #fff;
  box-shadow: 0 6px 16px rgba(190, 79, 9, .24); border: 2px solid #c94f06;
}
.btn-affiliate:hover { background: linear-gradient(135deg, #d96f0c, #bd4805); transform: translateY(-1px); }
.btn-official { background: #e5e7eb; color: #59616d; border: 1px solid #cbd0d7; font-weight: 700; }
.btn-official:hover { background: #d8dce1; color: #3f4752; }
.outbound-kind { margin: -3px 0 12px; color: var(--ink-3); font-size: .7rem; text-align: center; }
.outbound-kind-affiliate { color: #9a4309; font-weight: 700; }
.btn-secondary { background: var(--card); color: var(--blue-700); border: 2px solid var(--blue-700); }
.btn-secondary:hover { background: var(--blue-50); }
.btn-amber { background: var(--amber); color: #4a3406; }
.btn-amber:hover { background: #dd9526; }
.cta-note { font-size: .75rem; color: var(--ink-3); margin: 4px 0 0; }
.article-parent-link { background: var(--blue-50); border-left: 4px solid var(--blue-700); padding: 10px 14px; font-size: .88rem; }
.article-parent-link a { font-weight: 800; margin: 0 3px; }
.related-reading { margin-top: 30px; padding: 20px; background: var(--blue-50); border-radius: var(--r-m); }
.related-reading .sub-title { margin-top: 0; }
.related-reading ul { margin: 0; padding-left: 20px; }
.related-reading li + li { margin-top: 8px; }
.preview-notice { margin-bottom: 18px; padding: 12px 16px; border: 1px solid var(--amber-line); border-radius: var(--r-s); background: var(--amber-paper); color: #6d4808; font-weight: 800; text-align: center; }
.heading-visual { margin: 12px 0 22px; }
.heading-visual img {
  display: block; width: auto; max-width: 100%; max-height: 360px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--r-m); box-shadow: var(--shadow);
}
.article-body h3 + .heading-visual { margin-top: 10px; margin-bottom: 18px; }

/* ---------- フォーム ---------- */
.filter-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m); padding: 18px 20px; margin-bottom: 24px; box-shadow: var(--shadow); }
.filter-grid { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; }
.filter-grid label { display: block; font-size: .78rem; font-weight: 700; color: var(--ink-2); margin-bottom: 4px; }
.filter-grid select, .filter-grid input[type="number"] {
  padding: 9px 10px; border: 1px solid var(--line-strong); border-radius: var(--r-s); font-size: .92rem; background: #fff; font-family: var(--font-body);
}
.filter-check { display: inline-flex; align-items: center; gap: 6px; font-size: .88rem; padding: 9px 0; }
.filter-check input { accent-color: var(--blue-700); }
.filter-grid .btn { width: auto; padding: 10px 22px; margin: 0; }

.form-stack { max-width: 640px; }
.form-stack .form-row { margin-bottom: 18px; }
.form-stack label { display: block; font-weight: 700; margin-bottom: 6px; }
.form-stack textarea, .form-stack input[type="text"], .form-stack select {
  width: 100%; padding: 12px; border: 1px solid var(--line-strong); border-radius: var(--r-s); font-size: 1rem; font-family: var(--font-body); background: #fff;
}
.form-stack textarea { min-height: 140px; }
.form-error { color: var(--danger); font-size: .85rem; margin-top: 4px; }
.form-help { color: var(--ink-3); font-size: .8rem; margin-top: 4px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* 診断 */
.shindan-card {
  background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--r-m);
  padding: 30px; max-width: 680px; margin: 0 auto; box-shadow: var(--shadow);
}
.shindan-q { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px dashed var(--line-strong); }
.shindan-q .q-label { font-weight: 800; margin-bottom: 8px; display: flex; gap: 8px; align-items: center; }
.q-num { background: var(--blue-700); color: #fff; font-size: .72rem; border-radius: var(--r-pill); padding: 2px 10px; }
.shindan-q input[type="radio"] { accent-color: var(--blue-700); }

/* ---------- 統計(紺の帯) ---------- */
.stats-section { background: var(--blue-900); color: #d5e2f6; border: 0; }
.stats-section h2 { color: #fff; }
.stats-section h2::before { background: var(--amber); }
.stats-section .section-lead { color: #a9c0e8; }
.stats-section .section-lead a { color: #ffd9a0; }
.stats-band { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.stat-tile {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-m); padding: 16px 10px; text-align: center;
}
.stat-tile .num { font-size: 1.65rem; font-weight: 900; color: #fff; }
.stat-tile .lbl { font-size: .72rem; color: #a9c0e8; }

/* 紙面上の統計(about-data用) */
.section:not(.stats-section) .stats-band .stat-tile { background: var(--card); border: 1px solid var(--line); }
.section:not(.stats-section) .stats-band .stat-tile .num { color: var(--blue-700); }
.section:not(.stats-section) .stats-band .stat-tile .lbl { color: var(--ink-2); }

/* ---------- 記事 ---------- */
.article-body { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m); padding: 34px; box-shadow: var(--shadow); }
.article-body h2 { border-left: 4px solid var(--blue-700); padding-left: 12px; font-size: 1.3rem; color: var(--ink); }
.article-body h3 { font-size: 1.08rem; }
.article-body blockquote { border-left: 3px solid var(--amber); margin: 1em 0; padding: 2px 16px; color: var(--ink-2); background: var(--amber-paper); }
.article-list { display: grid; gap: 12px; }
.article-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m); padding: 20px 22px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow); }
.article-item:hover { border-color: var(--blue-600); }
.article-item h3 { margin: 0 0 4px; font-size: 1.08rem; }
.article-item p { margin: 0; font-size: .85rem; color: var(--ink-2); }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sitemap-box {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  box-shadow: var(--shadow); padding: 20px;
}
.sitemap-box a {
  display: block; text-decoration: none; border-top: 1px solid var(--line);
  padding: 8px 0; font-weight: 700;
}
.sitemap-box a:first-of-type { border-top: 0; }
.sitemap-box small { display: block; color: var(--ink-3); font-size: .72rem; font-weight: 500; }
.sitemap-service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 18px; }

/* ---------- 汎用 ---------- */
.empty-box { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--r-m); padding: 26px; }
.empty-box h3 { margin-top: 0; }
.note-box { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--amber); border-radius: var(--r-s); padding: 16px 18px; }
.note-box p { margin: 8px 0 0; color: var(--ink-2); font-size: .92rem; line-height: 1.8; }
.alert-alternatives a { font-weight: 700; }
.pref-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.pref-grid a { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-s); padding: 8px 4px; text-align: center; text-decoration: none; font-size: .88rem; color: var(--ink); }
.pref-grid a:hover { border-color: var(--blue-700); color: var(--blue-700); background: var(--blue-50); }
.text-muted { color: var(--ink-3); font-size: .85rem; }
.mt-0 { margin-top: 0; }

/* ---------- ページ送り ---------- */
.pagination-wrap { margin-top: 24px; }
.pagination-wrap .pagination {
  display: flex; justify-content: center; gap: 6px;
  list-style: none; padding: 0; margin: 0; flex-wrap: wrap;
}
.pagination-wrap .page-item .page-link {
  display: block; min-width: 40px; text-align: center; padding: 8px 12px;
  background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--r-s);
  color: var(--blue-700); text-decoration: none; font-weight: 700;
}
.pagination-wrap .page-item .page-link:hover { border-color: var(--blue-700); }
.pagination-wrap .page-item.active .page-link { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.pagination-wrap .page-item.disabled .page-link { color: var(--ink-3); pointer-events: none; }

/* ---------- フッター ---------- */
.site-footer { background: var(--blue-900); color: #bccfec; margin-top: 48px; padding: 40px 0 28px; font-size: .85rem; }
.footer-cols { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 18px; }
.footer-brand { font-weight: 800; color: #fff; margin: 0 0 4px; font-size: 1.05rem; }
.footer-note { margin: 0; }
.site-footer nav { display: flex; flex-direction: column; gap: 6px; }
.site-footer a { color: #bccfec; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, .15); padding-top: 14px; font-size: .75rem; color: #93aed6; }

/* ---------- 悩みカード(こんな悩みから探せます) ---------- */
.nayami-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.nayami-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 18px 20px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow);
  position: relative;
}
.nayami-card::after { content: "›"; margin-left: auto; color: var(--blue-700); font-size: 1.4rem; font-weight: 700; }
.nayami-card:hover { border-color: var(--blue-600); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.nayami-card .ny-icon {
  width: 56px; height: 56px; flex: 0 0 56px; border-radius: 50%;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center; color: var(--blue-700);
}
.nayami-card .ny-title { font-weight: 800; font-size: 1rem; display: block; }
.nayami-card .ny-desc { font-size: .8rem; color: var(--ink-2); display: block; line-height: 1.6; }

/* ---------- 強み ---------- */
.strengths-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.strength-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 26px 18px; text-align: center; box-shadow: var(--shadow);
}
.strength-card .st-icon {
  width: 72px; height: 72px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--blue-50); display: flex; align-items: center; justify-content: center; color: var(--blue-700);
}
.strength-card h3 { margin: 0 0 8px; font-size: 1rem; }
.strength-card p { margin: 0; font-size: .82rem; color: var(--ink-2); }

/* ---------- 探し方ステップ ---------- */
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 12px; align-items: stretch; }
.step-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 22px; box-shadow: var(--shadow);
}
.step-card .step-label { color: var(--blue-700); font-weight: 800; font-size: .78rem; letter-spacing: .12em; }
.step-card h3 { margin: 4px 0 8px; font-size: 1.06rem; }
.step-card p { margin: 0; font-size: .84rem; color: var(--ink-2); }
.step-arrow { display: flex; align-items: center; color: var(--blue-700); font-size: 1.6rem; font-weight: 800; }

/* ---------- 人気カテゴリタイル ---------- */
.cat-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat-tile {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 20px 14px; text-align: center; text-decoration: none; color: var(--ink); box-shadow: var(--shadow);
}
.cat-tile:hover { border-color: var(--blue-600); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.cat-tile .ct-icon {
  width: 58px; height: 58px; margin: 0 auto 10px; border-radius: var(--r-m);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center; color: var(--blue-700);
}
.cat-tile .ct-name { font-weight: 800; display: block; }
.cat-tile .ct-desc { font-size: .74rem; color: var(--ink-2); display: block; line-height: 1.6; margin-top: 4px; }
.see-all { text-align: right; margin: 0 0 14px; font-size: .88rem; }
.see-all a { font-weight: 700; text-decoration: none; }
.see-all a:hover { text-decoration: underline; }

/* ---------- 比較テーブル ---------- */
.compare-wrap { overflow-x: auto; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 760px; }
.compare-table th {
  background: var(--blue-50); color: var(--ink-2); font-size: .78rem; font-weight: 700;
  padding: 12px 14px; text-align: left; white-space: nowrap;
}
.compare-table td { padding: 14px; border-top: 1px solid var(--line); vertical-align: middle; }
.compare-table .ct-service { font-weight: 800; }
.compare-table .ct-service .sc-category { margin-top: 4px; display: inline-block; }
.compare-table .ct-center { text-align: center; }
.compare-table .maru { color: var(--green); font-weight: 800; }
.compare-table .batsu { color: var(--ink-3); }
.compare-note { font-size: .75rem; color: var(--ink-3); margin: 10px 2px 0; }

/* ---------- 代行リクエストCTA ---------- */
.request-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.request-copy h2::before { display: none; }
.request-copy h2 { font-size: 1.6rem; line-height: 1.5; }
.request-copy h2 .em { color: var(--blue-700); }
.request-benefits { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.request-benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--ink-2); }
.request-benefits .rb-icon {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%;
  background: var(--blue-50); display: flex; align-items: center; justify-content: center; color: var(--blue-700);
}
.request-form {
  background: var(--card); border: 1.5px solid var(--blue-100); border-radius: var(--r-m);
  padding: 22px; box-shadow: var(--shadow);
}
.request-form label { display: block; font-size: .8rem; font-weight: 700; color: var(--ink-2); margin: 0 0 4px; }
.request-form textarea, .request-form select, .request-form input[type="text"] {
  width: 100%; padding: 11px; border: 1px solid var(--line-strong); border-radius: var(--r-s);
  font-size: .95rem; font-family: var(--font-body); background: #fff; margin-bottom: 14px;
}
.request-form textarea { min-height: 84px; }
.free-badge {
  display: inline-block; background: var(--green-bg); color: var(--green);
  font-size: .78rem; font-weight: 800; padding: 3px 12px; border-radius: var(--r-pill); margin-top: 14px;
}

/* ---------- 安心・安全 ---------- */
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.safety-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 22px 18px; text-align: center; box-shadow: var(--shadow);
}
.safety-card .sf-icon {
  width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--blue-50); display: flex; align-items: center; justify-content: center; color: var(--blue-700);
}
.safety-card h3 { margin: 0 0 6px; font-size: .98rem; }
.safety-card p { margin: 0; font-size: .8rem; color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; max-width: 820px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m);
  box-shadow: var(--shadow); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 16px 20px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--blue-700); font-size: 1.3rem; font-weight: 800; flex: 0 0 auto; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a { padding: 0 20px 18px; font-size: .9rem; color: var(--ink-2); }

/* ---------- 動き ---------- */
.chip, .category-card, .service-card, .pick-card, .btn, .stat-tile,
.search-box, .pref-grid a, .article-item, .quick-cats a, .float-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease,
              background-color .18s ease, color .18s ease;
}
.chip:hover, .pref-grid a:hover { transform: translateY(-1px); }
.service-card:hover, .article-item:hover { border-color: var(--blue-600); box-shadow: var(--shadow-lift); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* 浮遊カードのゆらぎ */
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
.fc-1 { animation: floaty 7s ease-in-out infinite; }
.fc-2 { animation: floaty 8s ease-in-out 1s infinite; }
.fc-3 { animation: floaty 7.5s ease-in-out .5s infinite; }
.fc-4 { animation: floaty 8.5s ease-in-out 1.5s infinite; }

/* スクロール出現 */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* キーボード操作時のフォーカス表示 */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 6px;
}

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

/* ---------- レスポンシブ ---------- */
@media (max-width: 1120px) {
  .float-card { display: none; }
}
@media (max-width: 900px) {
  .hero { padding: 32px 0 30px; }
  .hero h1 { font-size: 1.68rem; }
  .hero-cta-row { flex-direction: column; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .nayami-grid { grid-template-columns: 1fr; }
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); justify-content: center; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .request-cta { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .picks-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side .cta-box { position: static; }
  .cando-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
  .pref-grid { grid-template-columns: repeat(3, 1fr); }
  .pillar-grid { grid-template-columns: 1fr; }
  .area-seo-stats { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: 1fr; }
  .sitemap-service-list { grid-template-columns: repeat(2, 1fr); }
  .trust-sep { display: none; }
}
@media (max-width: 540px) {
  .global-nav a { padding: 6px 8px; font-size: .8rem; }
  .search-panel { padding: 14px; }
  .area-seo-stats { grid-template-columns: 1fr; }
  .sitemap-service-list { grid-template-columns: 1fr; }
}

/* ==========================================================
   モバイルファースト基盤 v1
   360px前後を起点にし、広い画面で段階的に拡張する。
   ========================================================== */
.container {
  width: 100%;
  padding-inline: 16px;
}

.header-inner {
  min-height: 60px;
  height: auto;
  flex-wrap: wrap;
  padding-block: 8px;
}

.brand { min-width: 0; }
.brand img { width: 32px; height: 32px; }
.brand-text { font-size: 1.08rem; }
.brand-text small {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-toggle {
  min-width: 76px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-s);
  font: 700 .78rem/1 var(--font-body);
  cursor: pointer;
}
.nav-toggle-icon { display: grid; gap: 3px; }
.nav-toggle-icon i {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.global-nav {
  display: none;
  width: 100%;
  padding: 8px 0 4px;
  gap: 6px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.global-nav.is-open { display: grid; grid-template-columns: 1fr 1fr; }
.global-nav a,
.global-nav .nav-cta {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--card);
  font-size: .82rem;
  text-align: center;
}
.global-nav .nav-cta {
  grid-column: 1 / -1;
  background: var(--blue-700);
  color: #fff;
}

.hero { padding: 28px 0 24px; }
.hero h1 {
  font-size: clamp(1.55rem, 7vw, 2rem);
  line-height: 1.45;
  text-wrap: balance;
}
.hero-intro { font-size: .86rem; }
.hero-lead { font-size: .92rem; line-height: 1.75; margin-bottom: 20px; }
.search-panel { padding: 12px; border-radius: var(--r-m); }
.search-box {
  align-items: stretch;
  min-height: 52px;
  padding-left: 12px;
}
.search-box input[type="text"],
input, select, textarea { font-size: 16px; }
.hero-cta-row { gap: 8px; }
.hero-cta-row .btn { min-height: 50px; padding: 12px 14px; font-size: .96rem; }
.quick-cats {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  margin-inline: -16px;
  padding: 2px 16px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.quick-cats::-webkit-scrollbar { display: none; }
.quick-cats a { flex: 0 0 auto; min-height: 44px; scroll-snap-align: start; }

.section { padding: 34px 0; }
.section h2 { font-size: 1.28rem; line-height: 1.5; }
.section .section-lead { margin-bottom: 18px; }
.category-grid,
.cat-tiles,
.strengths-grid,
.safety-grid,
.stats-band,
.pref-grid { grid-template-columns: 1fr; }
.category-card,
.service-card,
.pick-card,
.article-item,
.detail-main > section,
.policy-box,
.request-form { padding: 16px; }
.service-card .sc-head { display: grid; grid-template-columns: 1fr auto; }
.service-card h3 { font-size: 1.05rem; }
.hanko { width: 46px; height: 46px; flex-basis: 46px; }

.detail-head h1,
.page-title { font-size: 1.45rem; line-height: 1.5; }
.article-body { padding: 18px 16px; }
.article-body h2 { font-size: 1.2rem; line-height: 1.55; }
.article-body h3 { font-size: 1.04rem; line-height: 1.6; }
.heading-visual { margin-inline: -16px; border-radius: 0; }
.spec-table { font-size: .86rem; }
.spec-table th, .spec-table td { padding: 10px 6px; }

.compare-wrap {
  margin-inline: -16px;
  border-radius: 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.compare-table { min-width: 760px; }
.compare-table th:first-child,
.compare-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--card);
  box-shadow: 1px 0 var(--line);
}

.request-cta { gap: 18px; }
.request-form input,
.request-form select,
.request-form textarea,
.btn { min-height: 48px; }
.footer-cols { grid-template-columns: 1fr; gap: 24px; }
.site-footer a { min-height: 40px; display: flex; align-items: center; }

@media (min-width: 541px) {
  .container { padding-inline: 20px; }
  .hero { padding: 38px 0 34px; }
  .hero h1 { font-size: 2rem; }
  .search-panel { padding: 18px; }
  .category-grid,
  .cat-tiles,
  .strengths-grid,
  .safety-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-band { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pref-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .heading-visual { margin-inline: 0; border-radius: var(--r-s); }
  .compare-wrap { margin-inline: 0; border-radius: var(--r-m); }
  .footer-cols { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 901px) {
  .header-inner { min-height: 64px; padding-block: 0; flex-wrap: nowrap; }
  .brand img { width: 34px; height: 34px; }
  .brand-text { font-size: 1.25rem; }
  .brand-text small { max-width: none; }
  .nav-toggle { display: none; }
  .global-nav,
  .global-nav.is-open {
    display: flex;
    width: auto;
    padding: 0;
    margin: 0;
    border: 0;
    gap: 2px;
  }
  .global-nav a,
  .global-nav .nav-cta {
    min-height: 40px;
    border: 0;
    padding: 8px 12px;
    background: transparent;
    font-size: .9rem;
  }
  .global-nav .nav-cta { background: var(--blue-700); padding-inline: 18px; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 2.5rem; }
  .search-panel { padding: 22px; }
  .section { padding: 46px 0; }
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cat-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .strengths-grid,
  .safety-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .article-body { padding: 34px; }
  .category-card { padding: 18px; }
  .service-card { padding: 20px 22px; }
  .pick-card { padding: 20px; }
  .detail-main > section { padding: 24px; }
  .policy-box { padding: 22px; }
}
