@charset "utf-8";
/* =========================================================================
   永住許可申請LP — やさしい行政書士事務所
   自己完結CSS（CDN依存なし）／デザイン: Gemini案を踏襲・内容: 固定ページ4660
   2026-08-15
   ========================================================================= */

/* ---------- 1. リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, dl, dd, table { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; }

/* ---------- 2. トークン ---------- */
:root {
  --navy-800:#0b192c; --navy-900:#06101e; --navy-950:#030810;

  --blue-950:#172554; --blue-900:#1e3a8a; --blue-800:#1e40af; --blue-700:#1d4ed8;
  --blue-600:#2563eb; --blue-500:#3b82f6; --blue-400:#60a5fa; --blue-300:#93c5fd;
  --blue-200:#bfdbfe; --blue-100:#dbeafe; --blue-50:#eff6ff;

  --amber-200:#fde68a; --amber-300:#fcd34d; --amber-400:#fbbf24; --amber-500:#f59e0b; --amber-700:#b45309;
  --amber-100:#fef3c7; --amber-50:#fffbeb;
  --orange-400:#fb923c; --orange-500:#f97316;

  --emerald-400:#34d399; --emerald-600:#059669; --emerald-700:#047857; --emerald-50:#ecfdf5;

  --slate-950:#020617; --slate-900:#0f172a; --slate-800:#1e293b; --slate-700:#334155;
  --slate-600:#475569; --slate-500:#64748b; --slate-400:#94a3b8; --slate-300:#cbd5e1;
  --slate-200:#e2e8f0; --slate-100:#f1f5f9; --slate-50:#f8fafc;

  --red-700:#b91c1c; --red-600:#dc2626; --red-500:#ef4444; --red-200:#fecaca;
  --red-100:#fee2e2; --red-50:#fef2f2;

  --line-green:#06c755;

  --radius-sm:.6rem; --radius:1rem; --radius-lg:1.5rem;
  --shadow-sm:0 1px 2px rgba(15,23,42,.06);
  --shadow-md:0 4px 12px rgba(15,23,42,.08);
  --shadow-lg:0 12px 32px rgba(2,6,23,.14);
  --shadow-xl:0 24px 56px rgba(2,6,23,.28);

  --font-sans:"Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,system-ui,sans-serif;
  --header-h:64px;
}

/* ---------- 3. ベース ---------- */
body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 76px; /* モバイル固定バー分 */
}
::selection { background: var(--blue-700); color: #fff; }

.wrap { width: 100%; max-width: 1120px; margin-inline: auto; padding-inline: 1rem; }
.wrap--narrow { max-width: 880px; }
.wrap--mid { max-width: 1000px; }

.sec { padding: 3.5rem 0; }
.sec--white { background: #fff; border-top: 1px solid var(--slate-200); }
.sec--slate { background: var(--slate-100); border-top: 1px solid var(--slate-200); }
.sec--soft { background: var(--slate-50); border-top: 1px solid var(--slate-200); }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.sec__head { text-align: center; margin-bottom: 2.25rem; }
.eyebrow {
  display: block; font-size: .72rem; font-weight: 900; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue-700); margin-bottom: .35rem;
}
.sec__title {
  font-size: 1.5rem; font-weight: 900; color: var(--slate-900);
  line-height: 1.5; letter-spacing: -.01em;
}
.sec__lead { font-size: .85rem; color: var(--slate-600); margin-top: .6rem; }

.p { font-size: .95rem; line-height: 1.95; }
.note { font-size: .78rem; color: var(--slate-500); line-height: 1.8; }
.em-amber { color: var(--amber-700); font-weight: 900; }

/* ---------- 4. ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-weight: 900; text-align: center; line-height: 1.4;
  padding: 1rem 1.6rem; border-radius: var(--radius);
  transition: filter .18s ease, transform .18s ease, background-color .18s ease;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--amber-400); outline-offset: 3px; }
.btn--amber {
  background: linear-gradient(90deg, var(--amber-400), var(--orange-400) 55%, var(--amber-500));
  color: var(--slate-950); box-shadow: var(--shadow-lg);
}
.btn--line { background: var(--line-green); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost {
  background: rgba(30,58,138,.6); color: #fff;
  border: 1px solid rgba(96,165,250,.4); backdrop-filter: blur(6px);
}
.btn--navy { background: var(--blue-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--outline {
  background: #fff; color: var(--blue-800);
  border: 2px solid var(--blue-200); box-shadow: var(--shadow-sm);
}
.btn--block { display: flex; width: 100%; }
.btn__ico { font-size: 1.15em; line-height: 1; }

.cta-pulse { animation: pulse-glow 2.2s infinite; }
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,.7), var(--shadow-lg); }
  50%     { box-shadow: 0 0 0 16px rgba(245,158,11,0), var(--shadow-lg); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 5. ヘッダー ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,23,42,.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(30,58,138,.5);
  color: #fff; box-shadow: 0 2px 16px rgba(2,6,23,.35);
}
.hdr__in {
  max-width: 1200px; margin-inline: auto; padding: 0 1rem;
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.brand__mark {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: .85rem;
  background: linear-gradient(135deg, var(--blue-600), #4338ca);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-400); font-size: 1.2rem; box-shadow: var(--shadow-md);
}
.brand__sub {
  display: block; font-size: .62rem; font-weight: 700; letter-spacing: .08em; color: var(--blue-300);
}
.brand__name {
  font-size: .9rem; font-weight: 900; color: #fff; line-height: 1.35;
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
}
.brand__tag {
  background: rgba(37,99,235,.6); color: var(--blue-200);
  font-size: .6rem; font-weight: 500; padding: .1rem .45rem; border-radius: .35rem;
}
.hdr__right { display: none; align-items: center; gap: 1.25rem; }
.hdr__nav { display: none; align-items: center; gap: 1rem; font-size: .78rem; font-weight: 500; color: var(--slate-300); }
.hdr__nav a { transition: color .18s ease; white-space: nowrap; }
.hdr__nav a:hover { color: var(--amber-400); }
.hdr__div { display: none; width: 1px; height: 30px; background: rgba(30,64,175,.6); }
.hdr__tel { display: flex; align-items: center; gap: .55rem; }
.hdr__tel:hover .hdr__telno { color: var(--amber-400); }
.hdr__telico {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(30,58,138,.8); border: 1px solid rgba(59,130,246,.4);
  display: flex; align-items: center; justify-content: center; color: var(--amber-400); font-size: .85rem;
}
.hdr__tellabel { font-size: .6rem; color: var(--blue-300); line-height: 1.4; white-space: nowrap; }
.hdr__telno { font-size: 1rem; font-weight: 900; letter-spacing: -.01em; color: #fff; line-height: 1.3; white-space: nowrap; transition: color .18s ease; }
.hdr__cta {
  background: linear-gradient(90deg, var(--amber-400), var(--orange-500));
  color: var(--slate-950); font-weight: 900; font-size: .74rem;
  padding: .55rem .9rem; border-radius: .8rem; box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap;
}
.hdr__cta:hover { filter: brightness(1.08); }

/* ---------- 6. ヒーロー ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  padding: 2.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(30,58,138,.5);
  background:
    linear-gradient(rgba(59,130,246,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, var(--blue-900) 0%, var(--navy-800) 70%, var(--navy-900) 100%);
  background-size: 32px 32px, 32px 32px, auto;
}
.hero__in { position: relative; z-index: 1; }

.hero__badges {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .5rem; margin-bottom: 1.4rem;
}
.badge-alert {
  background: var(--amber-400); color: var(--slate-950);
  font-size: .74rem; font-weight: 900; padding: .38rem .9rem; border-radius: 999px;
  box-shadow: var(--shadow-md); display: inline-flex; align-items: center; gap: .35rem;
}
.badge-soft {
  background: rgba(30,58,138,.8); color: var(--blue-100);
  border: 1px solid rgba(96,165,250,.4);
  font-size: .74rem; font-weight: 500; padding: .38rem .9rem; border-radius: 999px;
}

/* カウントダウン */
.countdown {
  display: inline-flex; align-items: baseline; gap: .5rem;
  background: rgba(3,8,16,.9); border: 1px solid rgba(251,191,36,.45);
  color: var(--amber-300); font-weight: 800;
  font-size: .78rem; letter-spacing: .06em;
  padding: .45rem 1.1rem; border-radius: 999px; margin-bottom: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.countdown__num { font-size: 1.35rem; font-weight: 900; color: var(--amber-400); line-height: 1; }

.hero__center { text-align: center; max-width: 900px; margin-inline: auto; }
.hero__h1box {
  background: #fff; border: 4px solid var(--amber-400);
  padding: 1.5rem 1.1rem; border-radius: 1.75rem;
  box-shadow: var(--shadow-xl); margin-bottom: 1.75rem;
}
.hero__h1 {
  font-size: 1.55rem; font-weight: 900; color: var(--slate-950);
  line-height: 1.45; letter-spacing: -.02em;
}
.hero__h1 em { font-style: normal; color: var(--red-600); }

.hero__pricebox {
  background: rgba(2,6,23,.6); border: 1px solid rgba(96,165,250,.3);
  padding: 1.25rem 1.1rem; border-radius: var(--radius-lg);
  max-width: 760px; margin: 0 auto 1.25rem; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xl);
}
.hero__price {
  font-size: 1.15rem; font-weight: 900; color: var(--amber-300);
  line-height: 1.7; margin-bottom: .6rem;
}
.hero__sub { font-size: .82rem; color: var(--blue-100); line-height: 1.9; }
.hero__fine {
  max-width: 720px; margin: 0 auto 1.75rem;
  font-size: .72rem; color: var(--blue-300); line-height: 1.85;
}
.hero__actions {
  display: flex; flex-direction: column; align-items: center; gap: .85rem; margin-bottom: 1rem;
}
.hero__actions .btn { width: 100%; max-width: 480px; }
.hero__nosend { font-size: .72rem; color: var(--blue-300); margin-bottom: 2.5rem; }

.hero__cards { display: grid; gap: 1rem; max-width: 1000px; margin-inline: auto; }
.gcard {
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  color: var(--slate-900); padding: 1.35rem;
  border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow-lg); display: flex; align-items: flex-start; gap: .9rem;
}
.gcard__no {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-600), #4338ca);
  color: var(--amber-300); font-weight: 900; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.gcard__t { font-size: .95rem; font-weight: 800; color: var(--slate-900); margin-bottom: .3rem; line-height: 1.6; }
.gcard__d { font-size: .78rem; color: var(--slate-600); line-height: 1.85; }

/* ---------- 7. 手数料改定セクション ---------- */
.points {
  background: var(--blue-50); border: 1px solid var(--blue-200);
  border-radius: var(--radius-lg); padding: 1.4rem; margin-bottom: 1.75rem;
  display: grid; gap: .85rem;
}
.point { display: flex; align-items: flex-start; gap: .75rem; font-size: .88rem; color: var(--slate-700); line-height: 1.9; }
.point__n {
  flex: 0 0 22px; width: 22px; height: 22px; margin-top: .3rem; border-radius: 50%;
  background: var(--blue-600); color: #fff; font-size: .72rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.tablewrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--slate-200); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); background: #fff;
}
.ftable { width: 100%; min-width: 620px; font-size: .85rem; text-align: left; }
.ftable th {
  background: var(--slate-900); color: #fff; font-weight: 700;
  padding: .85rem .9rem; border-bottom: 1px solid var(--slate-800); white-space: nowrap;
}
.ftable td { padding: .85rem .9rem; border-top: 1px solid var(--slate-200); color: var(--slate-700); }
.ftable tbody tr:first-child td { border-top: 0; }
.ftable .is-best { background: rgba(255,251,235,.75); }
.ftable .is-best td { color: var(--slate-900); font-weight: 700; }
.ftable .is-best .total { color: var(--amber-700); font-size: 1rem; font-weight: 900; }
.ftable .is-cheap { background: rgba(236,253,245,.75); }
.ftable .is-cheap td { color: var(--slate-900); font-weight: 700; }
.ftable .is-cheap .total { color: var(--emerald-700); font-size: 1rem; font-weight: 900; }
.ftable .is-alt { background: var(--slate-50); }
.ftable .total { font-weight: 700; color: var(--slate-900); }
.ftable .muted { color: var(--slate-400); }
.ftable .rowlabel { font-weight: 700; color: var(--slate-900); }
.ftable .rowtag {
  display: inline-block; margin-left: .4rem; font-size: .66rem; font-weight: 900;
  padding: .05rem .4rem; border-radius: .3rem; vertical-align: middle;
}
.ftable .rowtag--best { background: var(--amber-400); color: var(--slate-950); }
.ftable .rowtag--cheap { background: var(--emerald-600); color: #fff; }
.tablenote { font-size: .72rem; color: var(--slate-500); margin-top: .7rem; text-align: right; line-height: 1.8; }

/* ---------- 8. 急ぐ理由（2カラム） ---------- */
.duo { display: grid; gap: 1.5rem; align-items: stretch; }
.duo__card {
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.duo__card--fee { background: #fff; border: 2px solid var(--red-200); box-shadow: var(--shadow-md); }
.duo__card--req {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-900) 55%, var(--navy-800));
  border: 2px solid var(--blue-400); color: #fff; box-shadow: var(--shadow-xl);
}
.duo__ico {
  width: 46px; height: 46px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900; margin-bottom: 1rem;
}
.duo__card--fee .duo__ico { background: var(--red-100); color: var(--red-600); }
.duo__card--req .duo__ico { background: rgba(59,130,246,.2); color: var(--amber-300); border: 1px solid rgba(96,165,250,.4); }
.duo__label { font-size: .72rem; font-weight: 900; letter-spacing: .12em; margin-bottom: .3rem; }
.duo__card--fee .duo__label { color: var(--red-500); }
.duo__card--req .duo__label { color: var(--blue-300); }
.duo__t { font-size: 1.15rem; font-weight: 800; margin-bottom: .9rem; line-height: 1.6; }
.duo__card--fee .duo__t { color: var(--red-600); }
.duo__card--req .duo__t { color: var(--amber-300); }
.duo__body { font-size: .88rem; line-height: 1.95; }
.duo__card--fee .duo__body { color: var(--slate-700); }
.duo__card--req .duo__body { color: var(--blue-100); }
.duo__body p + p { margin-top: .8rem; }
.duo__foot {
  margin-top: 1.25rem; padding: .8rem; border-radius: var(--radius);
  text-align: center; font-size: .85rem; font-weight: 700; line-height: 1.7;
}
.duo__card--fee .duo__foot { background: rgba(254,242,242,.8); color: var(--red-600); border-top: 1px solid var(--red-100); }
.duo__card--req .duo__foot { background: rgba(255,255,255,.1); color: var(--amber-300); backdrop-filter: blur(4px); }
.bignum {
  display: block; font-size: 1.8rem; font-weight: 900; color: var(--red-600);
  letter-spacing: -.02em; line-height: 1.3; margin: .5rem 0;
}

/* ---------- 9. セルフチェック ---------- */
.checkcard {
  background: var(--slate-900); border: 2px solid rgba(59,130,246,.3);
  border-radius: var(--radius-lg); padding: 1.5rem 1.1rem;
  color: #fff; box-shadow: var(--shadow-xl); position: relative; overflow: hidden;
}
.checkcard::before {
  content: ""; position: absolute; top: -6rem; right: -6rem;
  width: 16rem; height: 16rem; border-radius: 50%;
  background: rgba(37,99,235,.2); filter: blur(48px); pointer-events: none;
}
.checkcard > * { position: relative; z-index: 1; }
.q { margin-bottom: 1.5rem; }
.q__label {
  display: flex; align-items: center; gap: .55rem;
  color: var(--blue-200); font-weight: 700; font-size: .88rem; margin-bottom: .7rem; line-height: 1.6;
}
.q__n {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: .4rem;
  background: var(--blue-600); color: #fff; font-size: .74rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.opts { display: grid; gap: .6rem; grid-template-columns: repeat(2, minmax(0,1fr)); }
.opts--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.opt { display: block; cursor: pointer; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt__box {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 46px; padding: .6rem .5rem;
  font-size: .78rem; font-weight: 700; line-height: 1.5;
  border: 1px solid var(--blue-900); border-radius: .8rem;
  background: var(--slate-800); color: var(--slate-300);
  box-shadow: var(--shadow-sm); transition: all .18s ease;
}
.opt:hover .opt__box { border-color: var(--blue-500); color: #fff; }
.opt input:checked + .opt__box {
  border-color: var(--amber-400); background: var(--blue-900); color: var(--amber-300);
  box-shadow: 0 0 0 1px var(--amber-400) inset;
}
.opt input:focus-visible + .opt__box { outline: 3px solid var(--amber-400); outline-offset: 2px; }

.result { display: none; margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid rgba(30,64,175,.8); }
.result.is-open { display: block; }
.result__inner {
  background: rgba(30,41,59,.9); border: 2px solid rgba(251,191,36,.5);
  padding: 1.35rem 1.1rem; border-radius: var(--radius); box-shadow: var(--shadow-xl);
}
.result__bar { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-bottom: .9rem; flex-wrap: wrap; }
.result__chip {
  background: var(--amber-400); color: var(--slate-950);
  font-size: .72rem; font-weight: 900; padding: .22rem .7rem; border-radius: 999px;
}
.result__meta { font-size: .7rem; color: var(--blue-300); }
.result__t { font-size: 1.1rem; font-weight: 800; color: var(--amber-300); margin-bottom: .7rem; line-height: 1.6; }
.result--clear .result__t { color: var(--emerald-400); }
.result--short .result__t { color: #fca5a5; }
.result__body { font-size: .85rem; color: var(--blue-100); line-height: 1.95; margin-bottom: 1.1rem; }
.result__body strong { color: #fff; }
.result__body ul { margin-top: .7rem; display: grid; gap: .55rem; }
.result__body li { position: relative; padding-left: 1.1rem; }
.result__body li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber-400);
}
.result__docs { margin-bottom: 1.1rem; }
.result__docs a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: var(--blue-200);
  border-bottom: 1px solid rgba(147,197,253,.5); padding-bottom: .1rem;
}
.result__docs a:hover { color: var(--amber-300); border-bottom-color: var(--amber-300); }
.result__notice {
  background: rgba(23,37,84,.8); border: 1px solid rgba(96,165,250,.3);
  padding: .9rem; border-radius: .8rem; font-size: .78rem;
  color: var(--blue-200); line-height: 1.9; margin-bottom: 1.1rem;
}
.result__actions { display: grid; gap: .6rem; }

/* ---------- 10. タイムライン ---------- */
.tl { display: grid; gap: 1rem; }
.tl__item {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 1.15rem; box-shadow: var(--shadow-sm);
  display: flex; gap: .9rem; transition: box-shadow .18s ease;
}
.tl__item:hover { box-shadow: var(--shadow-md); }
.tl__item--last { border-color: var(--amber-400); background: var(--amber-50); }
.tl__no {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-600), #4338ca);
  color: var(--amber-300); font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.tl__item--last .tl__no { background: linear-gradient(135deg, var(--amber-500), var(--orange-500)); color: var(--slate-950); }
.tl__when {
  display: block; font-size: .7rem; font-weight: 900; letter-spacing: .06em;
  color: var(--blue-700); text-transform: uppercase;
}
.tl__item--last .tl__when { color: var(--amber-700); }
.tl__t { font-size: .95rem; font-weight: 800; color: var(--slate-900); margin-bottom: .25rem; line-height: 1.6; }
.tl__d { font-size: .8rem; color: var(--slate-600); line-height: 1.85; }

/* ---------- 11. 料金 ---------- */
.pricecard {
  background: linear-gradient(135deg, var(--navy-900), var(--slate-900) 50%, var(--navy-800));
  border: 2px solid rgba(59,130,246,.3); border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem; color: #fff; box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.pricecard::before {
  content: ""; position: absolute; top: -4rem; right: -4rem;
  width: 12rem; height: 12rem; border-radius: 50%;
  background: rgba(37,99,235,.2); filter: blur(48px); pointer-events: none;
}
.pricecard > * { position: relative; z-index: 1; }
.pricecard__head {
  display: flex; flex-direction: column; gap: 1rem;
  border-bottom: 1px solid rgba(30,64,175,.8); padding-bottom: 1.4rem; margin-bottom: 1.4rem;
}
.pricecard__chip {
  display: inline-block; background: var(--amber-400); color: var(--slate-950);
  font-size: .72rem; font-weight: 900; letter-spacing: .06em;
  padding: .22rem .8rem; border-radius: 999px;
}
.pricecard__name { font-size: 1.25rem; font-weight: 800; color: #fff; margin-top: .65rem; }
.pricecard__fig { font-size: 2rem; font-weight: 900; color: var(--amber-300); letter-spacing: -.02em; line-height: 1.2; }
.pricecard__fig span { font-size: .95rem; color: #fff; font-weight: 400; }
.pricecard__tax { font-size: .74rem; color: var(--blue-200); margin-top: .2rem; }
.pricecard__pay {
  background: rgba(23,37,84,.9); border: 1px solid rgba(251,191,36,.4);
  padding: .95rem; border-radius: .8rem; font-size: .85rem; color: var(--amber-200);
  font-weight: 700; line-height: 1.9; margin-bottom: 1.2rem;
}
.inclist { display: grid; gap: .7rem; font-size: .88rem; margin-bottom: 1.4rem; }
.inclist li { display: flex; align-items: flex-start; gap: .6rem; line-height: 1.8; }
.inclist li::before {
  content: "✓"; flex: 0 0 20px; width: 20px; height: 20px; margin-top: .25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(52,211,153,.15); color: var(--emerald-400);
  font-size: .72rem; font-weight: 900;
}
.pricecard__notes {
  background: rgba(23,37,84,.7); border: 1px solid rgba(96,165,250,.2);
  padding: .95rem; border-radius: .8rem; font-size: .74rem; color: var(--blue-200);
  line-height: 1.9; display: grid; gap: .3rem;
}

.plainbox {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem; box-shadow: var(--shadow-sm);
}
.plainbox__t { font-size: 1.15rem; font-weight: 800; color: var(--slate-900); margin-bottom: .9rem; line-height: 1.6; }
.plainbox .p { color: var(--slate-700); }
.plainbox .p + .p { margin-top: .9rem; }

.bluebox {
  background: rgba(239,246,255,.8); border: 1px solid var(--blue-200);
  border-radius: var(--radius-lg); padding: 1.5rem 1.2rem;
}
.bluebox__t { font-size: 1.15rem; font-weight: 800; color: var(--slate-900); margin-bottom: .9rem; line-height: 1.6; }
.bluebox .p { color: var(--slate-700); }
.bluebox .p + .p { margin-top: .9rem; }
.pricelines {
  background: #fff; border: 1px solid var(--blue-200); border-radius: .8rem;
  padding: .95rem 1rem; margin-top: 1.2rem; display: grid; gap: .5rem;
  font-size: .88rem; font-weight: 700; color: var(--slate-800);
}
.pricelines li { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.pricelines b { color: var(--blue-800); white-space: nowrap; }

/* ---------- 12. プロフィール ---------- */
.prof {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center;
}
.prof__figure {
  position: relative; width: 150px; height: 150px; flex: 0 0 150px;
  border-radius: 18px; border: 2px solid rgba(96,165,250,.3);
  background: #fff; padding: 6px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.prof__figure img { width: 100%; height: 100%; object-fit: contain; }
.prof__chip {
  display: inline-block; background: var(--blue-100); color: var(--blue-900);
  font-size: .72rem; font-weight: 800; padding: .2rem .75rem; border-radius: 999px; margin-bottom: .5rem;
}
.prof__name { font-size: 1.4rem; font-weight: 900; color: var(--slate-900); margin-bottom: .6rem; }
.prof__name span { font-size: .82rem; font-weight: 400; color: var(--slate-500); }
.prof__d { font-size: .85rem; color: var(--slate-700); line-height: 1.95; margin-bottom: 1rem; }
.prof__tags { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: center; }
.prof__tags li {
  background: var(--slate-100); border: 1px solid var(--slate-300);
  color: var(--slate-600); font-size: .7rem; font-weight: 700;
  padding: .2rem .7rem; border-radius: .5rem;
}
.prof__tags li.is-link { background: var(--blue-50); border-color: var(--blue-200); }
.prof__tags li.is-link a { color: var(--blue-800); }
.prof__tags li.is-link a:hover { color: var(--amber-700); }

/* ---------- 13. FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq__item { border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; background: rgba(248,250,252,.6); }
.faq__q {
  width: 100%; text-align: left; padding: 1rem 1.1rem;
  display: flex; align-items: flex-start; justify-content: space-between; gap: .8rem;
  font-weight: 700; color: var(--slate-900); font-size: .92rem; line-height: 1.7;
  transition: background-color .18s ease;
}
.faq__q:hover { background: rgba(241,245,249,.7); }
.faq__q:focus-visible { outline: 3px solid var(--blue-500); outline-offset: -3px; }
.faq__qtext { display: flex; align-items: flex-start; gap: .7rem; }
.faq__no {
  flex: 0 0 auto; background: var(--blue-700); color: #fff;
  font-size: .7rem; font-weight: 900; padding: .18rem .5rem; border-radius: .35rem; margin-top: .18rem;
}
.faq__mark {
  flex: 0 0 auto; width: 18px; height: 18px; margin-top: .35rem; position: relative;
  transition: transform .2s ease;
}
.faq__mark::before, .faq__mark::after {
  content: ""; position: absolute; background: var(--slate-400); border-radius: 2px;
}
.faq__mark::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq__mark::after { left: 8px; top: 0; width: 2px; height: 18px; transition: opacity .2s ease; }
.faq__q[aria-expanded="true"] .faq__mark { transform: rotate(180deg); }
.faq__q[aria-expanded="true"] .faq__mark::after { opacity: 0; }
.faq__a {
  display: none; padding: .2rem 1.1rem 1.1rem;
  border-top: 1px solid rgba(226,232,240,.6); background: #fff;
  font-size: .85rem; color: var(--slate-600); line-height: 1.95;
}
.faq__a.is-open { display: block; padding-top: 1rem; }

/* ---------- 14. お問い合わせ ---------- */
.officetable {
  width: 100%; background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); font-size: .88rem;
}
.officetable th, .officetable td { padding: .85rem 1rem; text-align: left; border-top: 1px solid var(--slate-200); line-height: 1.8; }
.officetable tr:first-child th, .officetable tr:first-child td { border-top: 0; }
.officetable th { background: var(--slate-50); color: var(--slate-600); font-weight: 700; width: 30%; white-space: nowrap; }
.officetable td { color: var(--slate-800); }
.contact__actions { display: grid; gap: .7rem; margin-top: 1.5rem; }
.contact__tel {
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  background: #fff; border: 2px solid var(--blue-200); border-radius: var(--radius);
  padding: 1rem; box-shadow: var(--shadow-sm);
}
.contact__tellabel { font-size: .72rem; color: var(--slate-500); font-weight: 700; }
.contact__telno { font-size: 1.65rem; font-weight: 900; color: var(--blue-800); letter-spacing: -.01em; line-height: 1.3; }
.contact__note { font-size: .78rem; color: var(--slate-500); text-align: center; margin-top: .9rem; line-height: 1.8; }

/* ---------- 15. 追伸 ---------- */
.ps {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-900) 60%, var(--navy-800));
  color: #fff; padding: 3.5rem 0; text-align: center;
}
.ps__label {
  display: inline-block; font-size: .72rem; font-weight: 900; letter-spacing: .2em;
  color: var(--amber-300); margin-bottom: .8rem;
}
.ps__t { font-size: 1.4rem; font-weight: 900; line-height: 1.6; margin-bottom: 1.1rem; }
.ps__d { font-size: .88rem; color: var(--blue-100); line-height: 1.95; margin-bottom: 1.75rem; }
.ps__actions { display: grid; gap: .7rem; max-width: 460px; margin-inline: auto; }

/* ---------- 16. フッター ---------- */
.foot { background: var(--navy-950); color: var(--slate-400); font-size: .78rem; padding: 2.5rem 0; border-top: 1px solid rgba(30,58,138,.5); }
.foot__in { text-align: center; display: grid; gap: .6rem; }
.foot__name { font-weight: 700; color: var(--slate-200); font-size: .92rem; }
.foot__links { display: flex; flex-wrap: wrap; gap: .3rem 1.1rem; justify-content: center; margin-top: .3rem; }
.foot__links a { color: var(--slate-300); border-bottom: 1px solid rgba(148,163,184,.35); padding-bottom: .1rem; }
.foot__links a:hover { color: var(--amber-400); border-bottom-color: var(--amber-400); }
.foot__disc {
  margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid rgba(15,23,42,.9);
  font-size: .72rem; color: var(--slate-500); line-height: 1.9;
  max-width: 800px; margin-inline: auto; display: grid; gap: .25rem;
}
.foot__copy { margin-top: 1rem; padding-top: .8rem; border-top: 1px solid rgba(15,23,42,.6); color: var(--slate-600); font-size: .72rem; }

/* ---------- 17. モバイル固定バー ---------- */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--slate-900); border-top: 1px solid var(--blue-800);
  padding: .45rem; display: flex; gap: .45rem; box-shadow: 0 -6px 24px rgba(2,6,23,.4);
}
.mbar a {
  flex: 1 1 0; min-width: 0; border-radius: .75rem; padding: .5rem .2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .1rem;
  font-size: .68rem; font-weight: 700; line-height: 1.3; text-align: center;
}
.mbar__ico { font-size: .95rem; line-height: 1; }
.mbar__tel { background: var(--slate-800); color: #fff; }
.mbar__tel .mbar__ico { color: var(--amber-400); }
.mbar__check { background: linear-gradient(90deg, var(--amber-400), var(--orange-500)); color: var(--slate-950); font-weight: 900; }
.mbar__line { background: var(--line-green); color: #fff; }

/* ---------- 18. reveal ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- 19. レスポンシブ ---------- */
/* モバイル：料金比較表を「表」から「カード」へ組み替える */
@media (max-width: 767px) {
  .tablewrap { overflow: visible; border: 0; border-radius: 0; box-shadow: none; background: transparent; }
  .ftable { min-width: 0; display: block; }
  .ftable thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .ftable tbody { display: block; }
  .ftable tr {
    display: block; background: #fff; border: 1px solid var(--slate-200);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    margin-bottom: .8rem; overflow: hidden;
  }
  .ftable tr:last-child { margin-bottom: 0; }
  .ftable td { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--slate-100); padding: .6rem .9rem; }
  .ftable td::before {
    content: attr(data-label); flex: 0 0 auto;
    font-size: .74rem; font-weight: 700; color: var(--slate-500);
  }
  .ftable td.rowlabel {
    display: block; background: var(--slate-50); border-top: 0;
    font-size: .88rem; font-weight: 700; color: var(--slate-900); padding: .75rem .9rem;
  }
  .ftable .is-best td.rowlabel { background: var(--amber-50); }
  .ftable .is-cheap td.rowlabel { background: var(--emerald-50); }
  .ftable .is-best, .ftable .is-cheap { background: #fff; }
  .ftable .is-best { border-color: var(--amber-400); }
  .ftable .is-cheap { border-color: var(--emerald-400); }
  .ftable .is-alt { background: #fff; }
  .ftable .total { font-size: 1.05rem; }
  .tablenote { text-align: left; }
}

@media (min-width: 640px) {
  body { font-size: 16.5px; }
  .sec { padding: 4.5rem 0; }
  .wrap { padding-inline: 1.5rem; }
  .sec__title { font-size: 1.85rem; }
  .hero { padding: 3rem 0 4.5rem; }
  .hero__h1 { font-size: 2.35rem; line-height: 1.35; }
  .hero__h1box { padding: 2rem; }
  .hero__price { font-size: 1.5rem; }
  .hero__sub { font-size: .9rem; }
  .hero__actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .hero__actions .btn { width: auto; max-width: none; }
  .countdown { font-size: .85rem; }
  .countdown__num { font-size: 1.6rem; }
  .opts { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .opts--5 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .opts--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .checkcard { padding: 2.25rem; }
  .pricecard { padding: 2.25rem; }
  .pricecard__head { flex-direction: row; align-items: center; justify-content: space-between; }
  .pricecard__figwrap { text-align: right; }
  .pricecard__fig { font-size: 2.5rem; }
  .plainbox, .bluebox, .prof { padding: 2rem; }
  .duo__card { padding: 2rem; }
  .inclist { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .result__actions { grid-template-columns: 1fr 1fr; }
  .ps__actions { grid-template-columns: 1fr 1fr; max-width: 640px; }
  .contact__actions { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .contact__tel { grid-column: 1 / -1; }
  .ps__t { font-size: 1.9rem; }
  .prof { flex-direction: row; align-items: center; text-align: left; gap: 2rem; }
  .prof__tags { justify-content: flex-start; }
  .prof__figure { width: 176px; height: 176px; flex: 0 0 176px; }
}

@media (min-width: 768px) {
  .opts--5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .hero__cards { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .duo { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tl { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ftable { min-width: 0; }
}

@media (min-width: 1200px) {
  .hdr__nav { display: flex; }
  .hdr__div { display: block; }
}

@media (min-width: 1024px) {
  :root { --header-h: 76px; }
  body { padding-bottom: 0; }
  .hdr__right { display: flex; }
  .mbar { display: none; }
  .brand__name { font-size: 1.05rem; }
  .brand__sub { font-size: .68rem; }
  .hero__h1 { font-size: 2.9rem; }
  .sec__title { font-size: 2rem; }
}

/* ---------- 20. 印刷 ---------- */
@media print {
  .hdr, .mbar, .cta-pulse { display: none !important; }
  body { padding-bottom: 0; background: #fff; }
  .hero { background: #fff; color: #000; }
}
