﻿@charset "UTF-8";

/* ========================================================================== 
   WAKEURI LP — COMMON STYLES
   --------------------------------------------------------------------------
   複数LPで共有する基礎スタイルです。
   01. Design tokens / Reset
   02. Header / Navigation
   03. Shared section headings and buttons
   04. Shared cards / Forms / Footer
   05. Animation and responsive rules
   ページ固有の調整は css/{page-name}.css に記載してください。
   ========================================================================== */
:root {
  --navy:rgb(8,114,187);
  --navy-deep:rgb(8,114,187);
  --blue:#1267b2;
  --blue-light:#eff7ff;
  --blue-soft:#f6faff;
  --orange:#ff5a0a;
  --orange-dark:#e94d00;
  --orange-soft:#fff5e9;
  --green:#20bb24;
  --green-dark:#149a1a;
  --red:#d81f26;
  --yellow:#ffc928;
  --cream:#fffaf2;
  --ink:#18283c;
  --muted:#627084;
  --line:#dbe5ee;
  --white:#fff;
  --shadow:0 18px 50px rgba(12,49,95,.09);
  --shadow-sm:0 8px 25px rgba(12,49,95,.07);
  --radius:22px;
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:"Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic",Meiryo,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
}
body.no-scroll { overflow:hidden; }
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; }
button { font:inherit; }
.container { width:min(1180px,calc(100% - 48px)); margin:0 auto; }
.container.narrow { width:min(920px,calc(100% - 48px)); }
section { position:relative; padding:112px 0; overflow:hidden; }

.site-header {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(13,49,95,.08);
  backdrop-filter:blur(14px);
  transition:box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled { box-shadow:0 8px 30px rgba(10,36,72,.10); }
.header-inner {
  width:min(1240px,calc(100% - 36px));
  margin:0 auto;
  min-height:82px;
  display:grid;
  grid-template-columns:240px 1fr auto;
  align-items:center;
  gap:24px;
}
.site-logo img { width:190px; height:auto; }
.header-contact { text-align:center; line-height:1.25; }
.header-contact-label,.header-hours { display:block; color:var(--muted); font-size:11px; font-weight:700; }
.header-phone { display:inline-flex; gap:7px; align-items:center; color:var(--navy); font-size:23px; font-weight:900; }
.phone-icon { font-size:18px; }
.header-actions { display:flex; gap:8px; }
.header-btn {
  min-width:108px;
  min-height:48px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  padding:10px 14px;
  border-radius:10px;
  color:#fff;
  font-size:12px;
  font-weight:900;
  transition:transform .2s ease,filter .2s ease;
}
.header-btn:hover,.cta:hover,.contact-btn:hover { transform:translateY(-2px); filter:brightness(.98); }
.header-btn-mail { background:linear-gradient(135deg,var(--orange),var(--orange-dark)); }
.header-btn-line { background:linear-gradient(135deg,#35c63b,var(--green-dark)); }
.line-dot {
  display:inline-grid;
  place-items:center;
  min-width:31px;
  height:21px;
  padding:0 5px;
  border-radius:999px;
  color:var(--green);
  background:#fff;
  font-size:8px;
  font-weight:900;
}

.section-white { background:#fff; }
.section-blue { background:linear-gradient(180deg,#f6fbff 0%,#edf6ff 100%); }
.section-warm { background:linear-gradient(180deg,#fffaf3 0%,#fff6e9 100%); }
.section-soft { background:linear-gradient(180deg,#f7f9fc,#fff); }
.section-professional { background:linear-gradient(135deg,#fffdf7,#f5faf2 58%,#f4f6ff); }

.hero { padding:88px 0 96px; min-height:700px; }
.hero-grid { display:grid; grid-template-columns:minmax(0,.92fr) minmax(440px,1.08fr); gap:68px; align-items:center; position:relative; z-index:2; }
.hero-copy { padding:28px 0; }
.hero-kicker { margin:0 0 18px; color:var(--navy); font-size:17px; font-weight:900; letter-spacing:.02em; }
.hero h1 { margin:0; color:var(--navy); font-size:clamp(48px,5.3vw,76px); line-height:1.18; letter-spacing:-.04em; font-weight:950; }
.hero h1 span { color:var(--orange); position:relative; display:inline-block; }
.hero h1 span::after { content:""; position:absolute; left:0; right:0; bottom:.02em; height:.14em; background:rgba(255,201,40,.66); z-index:-1; border-radius:99px; }
.hero-lead { margin:28px 0 0; color:#40546c; font-size:16px; font-weight:700; }
.hero-actions { margin-top:34px; display:flex; gap:13px; flex-wrap:wrap; }
.cta {
  min-width:220px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:9px;
  padding:17px 22px;
  color:#fff;
  border-radius:11px;
  font-size:15px;
  font-weight:900;
  box-shadow:0 12px 26px rgba(13,49,95,.12);
  transition:transform .2s ease,filter .2s ease;
}
.cta-orange { background:linear-gradient(135deg,var(--orange),#ff3f00); }
.cta-green { background:linear-gradient(135deg,#2ccb32,var(--green-dark)); }
.hero-badges { margin:20px 0 0; padding:0; list-style:none; display:flex; gap:10px; flex-wrap:wrap; }
.hero-badges li { display:flex; gap:7px; align-items:center; padding:9px 13px; border:1px solid var(--line); border-radius:9px; background:#fff; box-shadow:var(--shadow-sm); color:var(--navy); font-size:11px; font-weight:900; }
.hero-badges li span { display:grid; place-items:center; width:22px; height:22px; border-radius:50%; color:var(--blue); background:var(--blue-light); }
.hero-visual { position:relative; }
.hero-figure { margin:70px 0 0; position:relative; z-index:2; }
.hero-figure img { width:100%; max-height:505px; object-fit:contain; mix-blend-mode:multiply; }
.hero-icon-flow { position:absolute; top:0; left:4%; right:1%; display:flex; justify-content:center; align-items:center; gap:10px; z-index:4; }
.flow-icon { width:108px; text-align:center; color:var(--navy); font-weight:900; font-size:11px; }
.flow-icon > span:first-child { display:grid; place-items:center; width:72px; height:72px; margin:0 auto 7px; border:2px solid #a8cdf1; border-radius:50%; background:#fff; box-shadow:0 8px 22px rgba(13,49,95,.07); }
.flow-dots { width:38px; border-top:3px dotted #65a3d8; }
.icon-house::before { content:""; width:30px; height:25px; border:3px solid var(--navy); border-top:0; background:#fff5e0; transform:translateY(5px); }
.icon-house::after { content:""; position:absolute; width:26px; height:26px; border-left:3px solid var(--navy); border-top:3px solid var(--navy); transform:rotate(45deg) translate(-10px,10px); }
.icon-house { position:relative; }
.icon-doc::before { content:""; width:29px; height:37px; border:3px solid var(--navy); border-radius:3px; background:repeating-linear-gradient(to bottom,transparent 0 7px,#a8cdf1 7px 9px); }
.icon-check { color:var(--blue); font-size:43px; font-weight:500; }
.hero-decoration { position:absolute; border-radius:50%; pointer-events:none; }
.hero-decoration-a { width:420px; height:420px; right:-160px; top:-150px; border:70px solid rgba(18,103,178,.035); }
.hero-decoration-b { width:240px; height:240px; left:-100px; bottom:-80px; background:radial-gradient(circle,rgba(255,90,10,.08),transparent 70%); }

.section-heading { max-width:820px; margin:0 auto 52px; text-align:center; }
.section-heading-large { margin-bottom:64px; }
.section-eyebrow { margin:0 0 12px; color:var(--blue); font-size:12px; letter-spacing:.18em; font-weight:900; }
.section-heading h2 { margin:0; color:var(--navy); font-size:clamp(34px,4vw,54px); line-height:1.35; font-weight:950; letter-spacing:-.025em; }
.section-heading h2 span { color:var(--orange); }
.section-heading > p:last-child { margin:16px auto 0; max-width:690px; color:var(--muted); font-size:14px; }
.navy-label { display:inline-block; padding:7px 18px; background:var(--navy); color:#fff; border-radius:999px; letter-spacing:.08em; }

.evidence::before { content:""; position:absolute; left:0; right:0; top:-42px; height:84px; background:#fff; border-radius:0 0 50% 50%; }
.evidence-grid { display:grid; grid-template-columns:1fr; gap:22px; }
.evidence-strip { overflow:hidden; border-radius:22px; box-shadow:var(--shadow); border:1px solid rgba(13,49,95,.08); background:#fff; }
.evidence-head { padding:23px 28px; text-align:center; color:#fff; background:var(--navy); font-size:clamp(22px,2.2vw,30px); font-weight:950; line-height:1.4; }
.evidence-metrics { display:grid; grid-template-columns:repeat(3,1fr); background:#fff; }
.metric-item { min-height:160px; padding:26px 18px; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; border-right:1px solid var(--line); }
.metric-item:last-child { border-right:0; }
.metric-label { color:#7a8796; font-size:16px; font-weight:700; }
.metric-value { margin-top:14px; color:var(--navy); font-size:22px; line-height:1.25; font-weight:950; }
.metric-value strong,.metric-value .count,.metric-value em { color:var(--orange); font-style:normal; font-size:50px; line-height:1; font-weight:950; }
.metric-value .count-small { font-size:38px; }
.metric-note { margin:14px 4px 0; color:#7d8997; text-align:right; font-size:13px; }
.assurance-strip { margin-top:22px; padding:20px 24px; border-radius:16px; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-sm); display:grid; grid-template-columns:repeat(3,1fr); gap:0; }
.assurance-strip div { display:flex; justify-content:center; align-items:center; gap:10px; color:var(--navy); font-size:16px; font-weight:900; border-right:1px solid var(--line); }
.assurance-strip div:last-child { border-right:0; }
.assurance-strip span { color:var(--orange); font-size:22px; }

.concerns::before { content:""; position:absolute; left:-5%; right:-5%; top:-36px; height:75px; background:#edf6ff; border-radius:0 0 50% 50%; }
.concern-lead { margin:18px auto 0; max-width:920px; color:var(--muted); font-size:18px; line-height:1.9; }
.concern-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:28px; }
.concern-card { position:relative; min-height:220px; padding:28px 28px 26px; background:rgba(255,255,255,.96); border:1px solid #d8e0e8; border-radius:18px; box-shadow:0 10px 26px rgba(13,49,95,.05); text-align:left; overflow:hidden; transition:transform .25s ease, box-shadow .25s ease; }
.concern-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.concern-mark { width:44px; height:44px; display:grid; place-items:center; border-radius:12px; background:#fff4ef; color:#f2612f; font-size:26px; font-weight:950; }
.concern-card h3 { margin:18px 0 0; color:var(--navy); font-size:30px; line-height:1.45; font-weight:950; }
.concern-card p { margin:12px 0 0; color:#5d6e80; font-size:16px; line-height:1.8; }
.concern-corner { position:absolute; right:22px; bottom:-8px; color:#eff2f5; font-size:96px; line-height:1; font-weight:950; pointer-events:none; }
.concern-highlight { margin-top:24px; padding:22px 26px; border-left:5px solid #f2612f; background:#fbf1ea; color:var(--navy); font-size:30px; font-weight:950; line-height:1.55; }
.mid-cta { margin-top:42px; padding:28px 32px; border:1px solid #f1ca91; border-radius:20px; background:linear-gradient(105deg,#fff8e9,#fff); display:grid; grid-template-columns:92px 1fr auto; gap:24px; align-items:center; box-shadow:var(--shadow-sm); }
.mid-cta-person { width:82px; height:82px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--navy); font-weight:900; font-size:22px; }
.mid-cta h3 { margin:0; color:var(--navy); font-size:28px; line-height:1.45; }
.mid-cta h3 span { color:var(--orange); }
.mid-cta p { margin:8px 0 0; color:var(--muted); font-size:16px; line-height:1.8; }
.mid-cta-actions { display:flex; gap:9px; }
.mid-cta-actions .cta { min-width:170px; padding:14px 17px; font-size:16px; }

.danger { padding:102px 0; color:#fff; background:linear-gradient(135deg,#1a0508 0%,#35050b 48%,#140306 100%); }
.danger-noise { position:absolute; inset:0; opacity:.22; background-image:radial-gradient(circle at 20% 30%,#ff382f 0 1px,transparent 2px),radial-gradient(circle at 70% 60%,#ff8f2f 0 1px,transparent 2px); background-size:38px 38px,57px 57px; }
.danger-inner { position:relative; z-index:2; }
.danger-heading { max-width:900px; margin:0 auto 44px; text-align:center; }
.danger-heading p { display:inline-flex; align-items:center; gap:10px; margin:0 0 8px; padding:7px 20px; background:var(--red); font-weight:900; }
.danger-heading p span { color:var(--yellow); font-size:24px; }
.danger-heading h2 { margin:0; font-size:clamp(38px,5vw,66px); line-height:1.2; letter-spacing:-.03em; }
.danger-heading h2 span { color:var(--yellow); }
.danger-heading strong { display:block; margin-top:20px; color:#fff; font-size:16px; }
.danger-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:13px; }
.danger-card { min-height:235px; padding:26px 20px; border-radius:12px; color:#2e1b1d; background:#fff; border-top:6px solid #b61c24; text-align:center; }
.danger-icon { width:64px; height:64px; margin:0 auto 15px; display:grid; place-items:center; border:4px solid #bd1e26; border-radius:50%; color:#bd1e26; font-size:34px; font-weight:900; }
.danger-card h3 { margin:0; color:#b31921; font-size:16px; font-weight:950; }
.danger-card p { margin:11px 0 0; color:#49383a; font-size:12px; font-weight:650; }
.risk-compare { margin-top:30px; display:grid; grid-template-columns:1fr 70px 1fr; align-items:center; gap:13px; }
.risk-panel { min-height:230px; padding:25px 29px; border-radius:14px; color:var(--ink); background:#fff; }
.risk-panel h3 { margin:-25px -29px 20px; padding:12px; color:#fff; text-align:center; font-size:16px; }
.risk-self h3 { background:#ba1d24; }
.risk-pro h3 { background:var(--navy); }
.risk-panel ul { margin:0; padding:0; list-style:none; }
.risk-panel li { position:relative; margin:12px 0; padding-left:30px; font-size:13px; font-weight:850; }
.risk-panel li::before { position:absolute; left:0; top:-2px; font-size:21px; font-weight:900; }
.risk-self li::before { content:"×"; color:#c92027; }
.risk-pro li::before { content:""; width:17px; height:17px; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230872bb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center/contain no-repeat; }
.risk-vs { width:62px; height:62px; display:grid; place-items:center; border-radius:50%; color:#fff; background:#263e62; font-size:18px; font-weight:900; }

.solution-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0; border:2px solid var(--navy); border-radius:20px; overflow:hidden; }
.solution-item { min-height:0; padding:30px 34px 32px; position:relative; border-right:1px solid var(--line); background:#fff; }
.solution-item:last-child { border-right:0; }
.solution-number { display:inline-flex; align-items:center; min-height:28px; padding:4px 11px; border-radius:6px; background:var(--navy); color:#fff; font-size:13px; line-height:1; letter-spacing:.06em; font-weight:900; }
.solution-item h3 { margin:16px 0 13px; color:var(--navy); font-size:23px; line-height:1.45; }
.solution-item p { margin:0; color:var(--muted); font-size:13px; }

.reason-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.reason-item { position:relative; min-height:320px; padding:30px 28px 24px; background:#fff; border:1px solid var(--line); border-radius:22px; display:flex; flex-direction:column; gap:18px; box-shadow:var(--shadow-sm); overflow:hidden; }
.reason-number { position:absolute; right:24px; top:18px; color:#eef0f4; font-size:92px; line-height:1; font-weight:950; }
.reason-mark { width:58px; height:58px; display:grid; place-items:center; border-radius:17px; color:#ffe05d; background:var(--navy); font-size:32px; font-weight:950; position:relative; z-index:1; }
.reason-copy { position:relative; z-index:1; }
.reason-copy h3 { margin:0; color:var(--navy); font-size:36px; line-height:1.4; }
.reason-copy p { margin:14px 0 0; color:var(--muted); font-size:16px; line-height:1.85; }
.reason-note { margin-top:auto; padding-top:18px; border-top:1px solid var(--line); color:#f2612f; font-size:15px; font-weight:900; }
.reason-mini-icon,.book-mini,.yen-mini,.report-mini,.speed-mini { display:none; }

.professional-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:55px; align-items:center; }
.professional-copy h2 { margin:0; color:var(--navy); font-size:clamp(34px,4vw,54px); line-height:1.4; }
.professional-copy h2 span { color:var(--orange); }
.professional-copy > p:not(.section-eyebrow) { color:var(--muted); font-size:14px; }
.professional-checks { margin:25px 0 0; padding:0; list-style:none; }
.professional-checks li { margin:13px 0; padding-left:30px; position:relative; color:var(--navy); font-size:13px; font-weight:850; }
.professional-checks li::before { content:""; position:absolute; left:0; top:-2px; width:22px; height:22px; border-radius:50%; background:var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center/14px 14px no-repeat; }
.professional-diagram { --ring-size:350px; --center-size:180px; --node-size:145px; --orbit-x:165px; --orbit-y:112px; min-height:490px; position:relative; overflow:visible; }
.diagram-ring { position:absolute; left:50%; top:50%; width:var(--ring-size); height:var(--ring-size); border:2px dashed #a8bfd0; border-radius:50%; transform:translate(-50%,-50%); }
.diagram-center,.diagram-node { position:absolute; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; border-radius:50%; box-shadow:var(--shadow-sm); }
.diagram-center { width:var(--center-size); height:var(--center-size); left:50%; top:50%; transform:translate(-50%,-50%); color:#fff; background:linear-gradient(145deg,var(--orange),#ff9200); z-index:3; }
.diagram-center strong { font-size:24px; }
.diagram-center small { font-weight:800; }
.diagram-node { width:var(--node-size); height:var(--node-size); color:var(--navy); background:#fff; border:2px solid; z-index:2; }
.diagram-node strong { font-size:19px; }
.diagram-node small { font-size:11px; }
.node-lawyer { left:50%; top:calc(50% - 180px); transform:translate(-50%,-50%); border-color:#a6cdda; background:#ecfaf8; }
.node-tax { left:calc(50% - var(--orbit-x)); top:calc(50% + var(--orbit-y)); transform:translate(-50%,-50%); border-color:#add4b4; background:#effaf0; }
.node-scrivener { left:calc(50% + var(--orbit-x)); top:calc(50% + var(--orbit-y)); transform:translate(-50%,-50%); border-color:#c5b8e7; background:#f6f1ff; }
.professional-photo { grid-column:1/-1; margin:-20px auto 0; max-width:780px; height:240px; overflow:hidden; border-radius:24px; background:#fff; box-shadow:var(--shadow); }
.professional-photo img { width:100%; height:100%; object-fit:cover; object-position:center 63%; }

.case-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.case-card { overflow:hidden; border-radius:18px; border:1px solid var(--line); background:#fff; box-shadow:var(--shadow-sm); }
.case-image { position:relative; aspect-ratio:3/2; overflow:hidden; background:#eef3f7; }
.case-image img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.case-image::after {
  content:"※イメージ写真";
  position:absolute;
  right:8px;
  bottom:6px;
  z-index:2;
  padding:2px 6px;
  border-radius:3px;
  background:rgba(0,0,0,.58);
  color:#fff;
  font-size:11px;
  font-weight:500;
  line-height:1.5;
  letter-spacing:.02em;
  pointer-events:none;
}
.case-image.is-placeholder::before {
  content:"写真準備中";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#66798a;
  font-size:14px;
  font-weight:700;
}
.case-card:hover .case-image img { transform:scale(1.04); }

/* =========================================================
   COMMON: CASE STORY CARDS AND MODAL
   4LP共通の事例ストーリー表示・モーダル
   ========================================================= */
.case-card.has-story{position:relative;border-color:var(--line);box-shadow:none}
.case-card.has-story .case-image{position:relative}
.case-story-badge{position:absolute;left:12px;top:12px;display:inline-flex;align-items:center;gap:6px;padding:7px 10px;border-radius:999px;background:#f27a28;color:#fff;font-size:11px;font-weight:900;box-shadow:0 3px 10px rgba(129,57,8,.28)}
.case-story-badge svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.case-story-button{display:block;width:max-content;margin:16px 0 0 auto;padding:8px 13px;border:1px solid #e76412;border-radius:999px;background:#f27a28;color:#fff;font:inherit;font-size:12px;font-weight:900;line-height:1.2;cursor:pointer;box-shadow:0 4px 10px rgba(242,122,40,.24);transition:.2s ease}
.case-story-button span{margin-left:8px}
.case-story-button:hover{background:#df5f0d;border-color:#df5f0d;color:#fff;transform:translateY(-1px)}
body.modal-open{overflow:hidden}
.case-story-modal{position:fixed;inset:0;z-index:10000;display:none;place-items:center;padding:6px 16px;overflow:hidden}
.case-story-modal.is-open{display:grid}
.case-story-backdrop{position:absolute;inset:0;background:rgba(8,27,50,.72);backdrop-filter:blur(3px)}
.case-story-dialog{position:relative;width:min(920px,100%);height:90vh;max-height:90dvh;padding:5vh 0;border-radius:16px;background:#fff;box-shadow:0 24px 70px rgba(0,0,0,.35);overflow:hidden}
.case-story-close{position:absolute;z-index:4;top:6px;right:6px;transform:none;width:40px;height:40px;margin:0;border:2px solid #fff;border-radius:50%;background:#17385e;color:#fff;font-size:27px;line-height:1;cursor:pointer;box-shadow:0 4px 16px rgba(0,0,0,.3)}
.case-story-body{box-sizing:border-box;height:100%;max-height:90dvh;overflow-y:auto;overflow-x:hidden;overscroll-behavior:contain;padding:8px 24px 24px;border-radius:16px;color:#25384c;scrollbar-gutter:stable}
.case-story-header{display:grid;grid-template-columns:minmax(250px,42%) 1fr;align-items:center;gap:24px;margin-bottom:16px;padding:0 50px 10px 12px;border-radius:12px;background:linear-gradient(135deg,#eef8ff,#fff)}
.case-story-hero-art{display:block;width:100%;max-height:210px;object-fit:contain}
.case-story-header h2{margin:0 0 12px;font-size:25px;line-height:1.45;color:#24374c}
.case-story-tags{display:flex;flex-wrap:wrap;gap:8px}
.case-story-tags span{padding:6px 12px;border:1px solid #0872bb;border-radius:5px;color:#0872bb;font-size:13px;font-weight:800}
.case-story-text,.case-story-panel{padding:18px 22px;border:1px solid #1687d2;border-radius:10px;background:#fff}
.case-story-text p,.case-story-panel p{margin:0;font-size:15px;line-height:1.9;font-weight:600}
.case-story-arrow{width:0;height:0;margin:18px auto;border-left:42px solid transparent;border-right:42px solid transparent;border-top:24px solid #0872bb}
.case-story-period{margin:0 0 18px;text-align:center;font-size:24px;color:#25384c}
.case-story-period::after{content:'';display:block;width:190px;height:10px;margin:-8px auto 0;background:#fff500;position:relative;z-index:-1}
.case-story-panel{margin-top:14px}
.case-story-panel h3{margin:0 0 12px;color:#0872bb;font-size:19px}
.case-story-solution,.case-story-voice{display:grid;grid-template-columns:145px 1fr;align-items:center;gap:22px}
.case-story-panel-logo{display:block;width:128px;max-height:78px;object-fit:contain;margin:auto}
.case-story-customer-art{display:block;width:132px;height:128px;object-fit:contain;object-position:center bottom;margin:-10px auto -18px}
.case-story-voice{background:#f7fbfe}
.case-story-contact{margin-top:18px;padding:20px;border-radius:12px;background:#eef7fc;text-align:center}
.case-story-contact p{margin:0 0 14px;font-weight:800}
.case-story-contact a{display:inline-block;padding:14px 34px;border-radius:7px;background:#f05a28;color:#fff;text-decoration:none;font-weight:900;box-shadow:0 5px 14px rgba(240,90,40,.25)}
@media(max-width:700px){.case-story-modal{padding:4px}.case-story-dialog{height:90dvh;max-height:90dvh}.case-story-close{top:5px;right:5px;transform:none;width:38px;height:38px;font-size:clamp(20px,6.667vw,25px)}.case-story-body{height:100%;max-height:90dvh;padding:4px 12px 18px}.case-story-header{display:block;margin-bottom:12px;padding:0 44px 12px 8px}.case-story-hero-art{width:72%;max-height:160px;margin:0 auto 4px}.case-story-header h2{padding-right:0;font-size:clamp(16px,5.333vw,20px)}.case-story-text,.case-story-panel{padding:15px}.case-story-period{font-size:clamp(16px,5.333vw,20px)}.case-story-text p,.case-story-panel p{font-size:clamp(11px,3.733vw,14px);line-height:1.75}.case-story-solution,.case-story-voice{grid-template-columns:92px 1fr;gap:12px}.case-story-panel-logo{width:84px}.case-story-customer-art{width:88px;height:104px;margin:-4px auto -14px}.case-story-contact{padding:17px 12px}}
.case-content { padding:25px 24px 27px; }
.case-index { display:inline-block; margin-bottom:12px; padding:5px 10px; color:#fff; background:var(--navy); border-radius:5px; font-size:11px; font-weight:900; }
.case-content h3 { margin:0; color:var(--navy); font-size:20px; line-height:1.5; }
.case-content h3 small { color:var(--muted); font-size:12px; }
.case-content dl { margin:20px 0 0; }
.case-content dl div { display:grid; grid-template-columns:55px 1fr; gap:10px; margin-top:12px; }
.case-content dt { align-self:start; padding:3px 7px; border-radius:5px; color:#fff; background:var(--blue); font-size:10px; font-weight:900; text-align:center; }
.case-content dl div:last-child dt { background:var(--orange); }
.case-content dd { margin:0; color:#526276; font-size:12px; }
.case-note { margin:25px 0 0; color:#8390a0; text-align:center; font-size:10px; }

.case-meta { margin-top:20px; padding-top:18px; border-top:1px solid var(--line); display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.case-meta div { padding:12px 14px; border-radius:10px; background:#f4f7fa; }
.case-meta span { display:block; color:#718094; font-size:16px; font-weight:700; }
.case-meta strong { display:block; margin-top:5px; color:var(--navy); font-size:24px; line-height:1.25; }
.case-meta strong.price { color:var(--orange); }
.case-more { margin-top:30px; text-align:center; }
.case-more .cta { min-width:250px; color:var(--navy); background:#fff; border:1px solid #bfcbd7; box-shadow:none; }

.process-list { margin:0; padding:0; list-style:none; display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.process-step { position:relative; min-height:280px; padding:33px 24px 28px; text-align:center; background:#fff; border-radius:20px; box-shadow:var(--shadow-sm); }
.process-step:not(:last-child)::after { content:"→"; position:absolute; right:-20px; top:50%; transform:translateY(-50%); color:#bad3e8; font-size:28px; font-weight:900; z-index:3; }
.step-number { position:absolute; left:15px; top:15px; width:34px; height:34px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--orange); font-weight:900; }
.step-icon { width:90px; height:90px; margin:14px auto 22px; position:relative; color:var(--navy); }
.step-chat::before { content:""; position:absolute; left:7px; top:20px; width:50px; height:36px; border:5px solid currentColor; border-radius:14px; }
.step-chat::after { content:""; position:absolute; right:3px; bottom:15px; width:43px; height:31px; border-radius:13px; background:#769bc1; box-shadow:inset 0 0 0 5px #fff; }
.step-search::before { content:""; position:absolute; left:4px; top:5px; width:54px; height:54px; border:7px solid currentColor; border-radius:50%; }
.step-search::after { content:""; position:absolute; left:53px; top:53px; width:39px; height:9px; border-radius:10px; background:currentColor; transform:rotate(45deg); }
.step-plan { border:5px solid currentColor; border-radius:6px; transform:scale(.74); }
.step-plan::before { content:""; position:absolute; left:14px; right:14px; top:21px; height:5px; background:currentColor; box-shadow:0 17px 0 currentColor,0 34px 0 currentColor; }
.step-plan::after { content:""; position:absolute; right:-21px; bottom:-21px; width:46px; height:46px; background:var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center/27px 27px no-repeat; border-radius:50%; }
.step-hand::before { content:"♡"; font-size:100px; line-height:1; color:currentColor; }
.process-step h3 { margin:0; color:var(--navy); font-size:18px; }
.process-step p { margin:11px 0 0; color:var(--muted); font-size:12px; }

.faq-list { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-question { width:100%; min-height:86px; display:grid; grid-template-columns:45px 1fr 30px; gap:12px; align-items:center; padding:17px 5px; border:0; color:var(--navy); background:transparent; text-align:left; font-weight:900; cursor:pointer; }
.qa-letter { font-size:32px; font-weight:950; }
.faq-question .qa-letter { color:var(--blue); }
.faq-toggle { font-size:26px; font-weight:300; transition:transform .25s ease; }
.faq-answer { display:grid; grid-template-columns:45px 1fr; gap:12px; max-height:0; opacity:0; overflow:hidden; padding:0 5px; transition:max-height .35s ease,opacity .25s ease,padding .35s ease; }
.faq-answer .qa-letter { color:var(--orange); }
.faq-answer p { margin:3px 0 0; color:var(--muted); font-size:13px; }
.faq-item.open .faq-answer { max-height:180px; opacity:1; padding:4px 5px 24px; }
.faq-item.open .faq-toggle { transform:rotate(45deg); }

.contact { padding:92px 0; background:linear-gradient(180deg,#fff,#eef4fb); }
.contact-box { padding:36px; border-radius:28px; background:var(--navy); box-shadow:var(--shadow); color:#fff; position:relative; overflow:hidden; }
.contact-box::after { content:"?"; position:absolute; right:28px; top:34px; color:rgba(255,255,255,.08); font-size:240px; line-height:1; font-weight:950; pointer-events:none; }
.contact-heading { position:relative; z-index:1; max-width:980px; display:block; }
.contact-free { display:inline-block; margin-bottom:18px; padding:7px 0; border-bottom:3px solid #f8d24f; border-radius:0; color:#f8d24f; font-size:18px; letter-spacing:.12em; text-transform:uppercase; font-weight:900; }
.contact-free strong { font-size:inherit; line-height:inherit; }
.contact-heading h2 { margin:0; color:#fff; font-size:clamp(36px,4.5vw,64px); line-height:1.28; }
.contact-heading p { margin:16px 0 0; max-width:900px; color:#d7e2ee; font-size:18px; line-height:1.9; }
.contact-points { position:relative; z-index:1; margin:28px 0 0; padding:0; list-style:none; display:grid; gap:14px; max-width:660px; }
.contact-points li { display:flex; align-items:center; gap:12px; color:#fff; font-size:18px; font-weight:900; }
.contact-points span { width:28px; height:28px; display:grid; place-items:center; border-radius:50%; color:#fff; background:#25c86a; font-size:17px; font-weight:950; }
.contact-form-card { position:relative; z-index:1; margin-top:34px; padding:34px 30px; border-radius:24px; background:#fff; color:var(--navy); }
.contact-form-card h3 { margin:0 0 24px; color:var(--navy); font-size:40px; line-height:1.35; }
.quick-form { display:grid; gap:18px; }
.quick-form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.quick-field label { display:block; margin:0 0 8px; color:var(--navy); font-size:16px; font-weight:900; }
.quick-field select,.quick-field input,.quick-field textarea { width:100%; min-height:58px; padding:14px 16px; border:1px solid #c7d2de; border-radius:10px; background:#fff; color:var(--navy); font-size:16px; }
.quick-submit { margin-top:4px; min-height:62px; border:0; border-radius:10px; color:#fff; background:linear-gradient(135deg,var(--orange),#ff5b35); font-size:22px; font-weight:950; cursor:pointer; }
.contact-actions { position:relative; z-index:1; margin:22px auto 0; display:grid; grid-template-columns:1fr 1fr; gap:14px; max-width:none; }
.contact-btn { min-height:64px; display:flex; justify-content:center; align-items:center; gap:13px; border-radius:11px; color:#fff; font-size:18px; font-weight:900; transition:transform .2s ease,filter .2s ease; }
.contact-btn-mail { background:linear-gradient(135deg,var(--orange),#ff3b00); }
.contact-btn-line { background:linear-gradient(135deg,#2bcf32,var(--green-dark)); }
.contact-phone { position:relative; z-index:1; max-width:none; margin:18px auto 0; padding:18px 24px; display:grid; grid-template-columns:1fr auto; grid-template-rows:auto auto; column-gap:30px; align-items:center; border-radius:14px; background:#fff; border:1px solid #d8e2ec; color:var(--navy); }
.contact-phone-label { grid-row:1/-1; align-self:center; font-size:16px; font-weight:900; }
.contact-phone strong { font-size:38px; line-height:1.15; }
.contact-phone small { color:#667789; font-size:14px; text-align:right; }
.contact-trust { position:relative; z-index:1; max-width:none; margin:18px auto 0; padding:0; list-style:none; display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.contact-trust li { min-height:66px; display:flex; align-items:center; gap:8px; justify-content:center; padding:12px; border-radius:12px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.14); color:#fff; font-size:15px; font-weight:900; text-align:center; }
.contact-trust-icon { flex:0 0 auto; width:34px; height:34px; display:grid; place-items:center; border-radius:50%; color:#f8d24f; background:rgba(248,210,79,.12); border:1px solid rgba(248,210,79,.3); }
.contact-trust-icon svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.site-footer { padding:34px 0 95px; background:var(--navy-deep); color:#b9c8d9; text-align:center; }
.footer-inner img { width:155px; margin:0 auto 17px; filter:brightness(0) invert(1); opacity:.95; }
.footer-inner p { margin:0 0 8px; font-size:11px; }
.footer-inner small { font-size:9px; }
.mobile-fixed-cta { display:none; }

.js .reveal { opacity:0; transform:translateY(24px); transition:opacity .72s ease,transform .72s cubic-bezier(.2,.7,.2,1); }
.js .reveal-left { transform:translateX(-28px); }
.js .reveal-right { transform:translateX(28px); }
.js .reveal.is-visible { opacity:1; transform:none; }
.stagger-group .reveal:nth-child(2) { transition-delay:.08s; }
.stagger-group .reveal:nth-child(3) { transition-delay:.16s; }
.stagger-group .reveal:nth-child(4) { transition-delay:.24s; }
.stagger-group .reveal:nth-child(5) { transition-delay:.32s; }
.stagger-group .reveal:nth-child(6) { transition-delay:.40s; }

@media (max-width:1050px) {
  section { padding:90px 0; }
  .header-inner { grid-template-columns:190px 1fr auto; }
  .site-logo img { width:170px; }
  .hero-grid { grid-template-columns:1fr 1fr; gap:30px; }
  .hero h1 { font-size:55px; }
  .mid-cta { grid-template-columns:75px 1fr; }
  .mid-cta-person { width:70px; height:70px; }
  .mid-cta-actions { grid-column:1/-1; justify-content:center; }
  .danger-grid { grid-template-columns:1fr 1fr; }
  .professional-grid { grid-template-columns:1fr 1fr; }
  .case-grid { gap:15px; }
  .case-content { padding:21px 18px; }
  .contact-box { padding:32px; }
  .contact-box::after { font-size:200px; }
}


@media (max-width:820px) {
  .container,.container.narrow { width:min(100% - 32px,1180px); }
  section { padding:76px 0; }
  .header-inner { min-height:70px; grid-template-columns:150px 1fr; gap:12px; }
  .site-logo img { width:145px; }
  .header-contact { text-align:right; }
  .header-contact-label,.header-hours { display:none; }
  .header-phone { font-size:clamp(15px,4.8vw,18px); }
  .header-actions { display:none; }
  .hero { padding:56px 0 70px; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { text-align:center; }
  .hero-lead { font-size:clamp(11px,3.733vw,14px); }
  .hero-actions,.hero-badges { justify-content:center; }
  .hero-visual { max-width:650px; width:100%; margin:0 auto; }
  .hero-icon-flow { left:2%; right:2%; }
  .hero-figure { margin-top:75px; }
  .evidence-metrics,.concern-grid,.reason-grid,.contact-trust,.quick-form-row { grid-template-columns:1fr; }
  .assurance-strip { grid-template-columns:1fr; gap:12px; }
  .assurance-strip div { border-right:0; border-bottom:1px solid var(--line); padding-bottom:12px; }
  .assurance-strip div:last-child { border-bottom:0; padding-bottom:0; }
  .risk-compare { grid-template-columns:1fr; }
  .risk-vs { margin:0 auto; }
  .solution-grid { grid-template-columns:1fr; }
  .solution-item { border-right:0; border-bottom:1px solid var(--line); }
  .solution-item:last-child { border-bottom:0; }
  .professional-grid { grid-template-columns:1fr; }
  .professional-copy { text-align:center; }
  .professional-checks { display:inline-block; text-align:left; }
  .professional-diagram { width:min(100%,560px); margin:0 auto; }
  .professional-photo { grid-column:auto; }
  .case-grid { grid-template-columns:1fr; max-width:600px; margin:0 auto; }
  .process-list { grid-template-columns:1fr 1fr; }
  .process-step:nth-child(2)::after { display:none; }
  .contact-box { padding:28px; }
  .contact-box::after { display:none; }
  .contact-actions { grid-template-columns:1fr; }
  .contact-phone { grid-template-columns:1fr; text-align:center; }
  .contact-phone-label { grid-row:auto; }
  .contact-phone small { text-align:center; }
  .mobile-fixed-cta { position:fixed; left:0; right:0; bottom:0; z-index:1000; display:grid; grid-template-columns:1fr 1fr; box-shadow:0 -8px 25px rgba(0,0,0,.18); }
  .mobile-fixed-cta a { padding:14px 5px; color:#fff; text-align:center; font-size:clamp(10px,3.2vw,12px); font-weight:900; }
  .mobile-mail { background:var(--orange); }
  .mobile-line { background:var(--green); }
}


@media (max-width:560px) {
  body { padding-bottom:49px; }
  section { padding:64px 0; }
  .container,.container.narrow { width:min(100% - 26px,1180px); }
  .header-inner { width:calc(100% - 22px); grid-template-columns:126px 1fr; }
  .site-logo img { width:122px; }
  .header-phone { font-size:clamp(12px,4vw,15px); }
  .phone-icon { display:none; }
  .hero { min-height:auto; padding-top:40px; }
  .hero-kicker { font-size:clamp(11px,3.467vw,13px); }
  .hero h1 { font-size:clamp(34px,11.2vw,42px); }
  .hero-lead br { display:none; }
  .hero-actions { display:grid; }
  .hero-actions .cta { width:100%; }
  .hero-badges { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; }
  .hero-badges li { justify-content:center; padding:8px 5px; font-size:clamp(9px,2.4vw,9px); }
  .hero-badges li span { display:none; }
  .flow-icon { width:83px; }
  .flow-icon > span:first-child { width:59px; height:59px; }
  .flow-dots { width:20px; }
  .hero-figure { margin-top:62px; }
  .section-heading { margin-bottom:36px; }
  .section-heading h2 { font-size:clamp(25px,8.267vw,31px); }
  .section-heading > p:last-child { font-size:clamp(13px,4.267vw,16px); }
  .evidence-head { padding:18px 16px; font-size:clamp(20px,6.4vw,24px); }
  .metric-item { min-height:128px; padding:22px 14px; }
  .metric-value { font-size:clamp(16px,5.333vw,20px); }
  .metric-value strong,.metric-value .count,.metric-value em { font-size:clamp(34px,11.2vw,42px); }
  .concern-card { min-height:0; padding:22px 20px; }
  .concern-card h3 { font-size:clamp(21px,6.933vw,26px); }
  .concern-highlight { padding:20px; font-size:clamp(20px,6.4vw,24px); }
  .mid-cta { padding:24px 18px; grid-template-columns:1fr; text-align:center; }
  .mid-cta-person { margin:0 auto; }
  .mid-cta-actions { display:grid; }
  .danger { padding:70px 0; }
  .danger-heading h2 { font-size:clamp(32px,10.4vw,39px); }
  .danger-grid { grid-template-columns:1fr; }
  .danger-card { min-height:0; }
  .risk-panel { padding:24px 19px; }
  .risk-panel h3 { margin:-24px -19px 18px; }
  .solution-item { min-height:0; padding:26px 24px 28px; }
  .reason-item { min-height:0; padding:24px 20px 22px; }
  .reason-mark { width:52px; height:52px; font-size:clamp(23px,7.467vw,28px); }
  .reason-number { font-size:clamp(59px,19.2vw,72px); }
  .reason-copy h3 { font-size:clamp(23px,7.467vw,28px); }
  .professional-copy h2 { font-size:clamp(25px,8.267vw,31px); }
  .professional-diagram { --ring-size:290px; --center-size:145px; --node-size:115px; --orbit-x:135px; --orbit-y:92px; min-height:385px; transform:scale(.86); transform-origin:center center; margin:-28px auto; }
  .diagram-center strong { font-size:clamp(16px,5.333vw,20px); }
  .diagram-node strong { font-size:clamp(12px,4vw,15px); }
  .diagram-node small { font-size:clamp(9px,2.4vw,9px); }
  .node-lawyer { top:calc(50% - 150px); }
  .professional-photo { height:195px; }
  .process-list { grid-template-columns:1fr; }
  .process-step:not(:last-child)::after { content:"↓"; right:50%; top:auto; bottom:-25px; transform:translateX(50%); }
  .faq-question { grid-template-columns:36px 1fr 24px; font-size:clamp(13px,4.267vw,16px); }
  .qa-letter { font-size:clamp(21px,6.933vw,26px); }
  .faq-answer { grid-template-columns:36px 1fr; }
  .contact { padding:58px 0; }
  .contact-box { padding:22px 16px; }
  .contact-heading h2 { font-size:clamp(28px,9.067vw,34px); }
  .contact-heading p,.contact-points li { font-size:clamp(13px,4.267vw,16px); }
  .contact-form-card { padding:24px 18px; }
  .contact-form-card h3 { font-size:clamp(23px,7.467vw,28px); }
  .quick-submit { min-height:58px; font-size:clamp(15px,4.8vw,18px); }
  .contact-btn { min-height:60px; font-size:clamp(13px,4.267vw,16px); }
  .contact-phone strong { font-size:clamp(25px,8vw,30px); }
  .contact-trust { grid-template-columns:1fr 1fr; }
}


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

/* =========================================================
   借地権所有者向け：早期相談セクション
========================================================= */
.section-urgency {
  background:
    linear-gradient(120deg,rgba(13,49,95,.97),rgba(7,31,63,.98)),
    radial-gradient(circle at 85% 15%,rgba(255,201,40,.22),transparent 34%);
  color:#fff;
}
.section-urgency .section-eyebrow { color:#ffcf47; }
.section-urgency .section-heading h2,
.section-urgency .section-heading > p:last-child { color:#fff; }
.section-urgency .section-heading h2 span { color:#ffcf47; }
.urgency-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.urgency-item {
  min-height:280px;
  padding:30px 25px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  background:rgba(255,255,255,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  backdrop-filter:blur(6px);
}
.urgency-number {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  border-radius:50%;
  color:var(--navy-deep);
  background:#ffcf47;
  font-weight:950;
}
.urgency-item h3 {
  margin:24px 0 14px;
  color:#fff;
  font-size:24px;
  line-height:1.45;
}
.urgency-item p {
  margin:0;
  color:#dce8f5;
  font-size:16px;
}
.urgency-message {
  margin-top:32px;
  padding:24px 28px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:20px;
  align-items:center;
  border-radius:18px;
  color:var(--navy);
  background:#fff;
  box-shadow:var(--shadow);
}
.urgency-message strong { color:var(--orange); font-size:20px; }
.urgency-message span { color:#465a72; font-size:16px; }
.urgency-message .cta { min-width:250px; }

@media (max-width:1050px) {
  .urgency-grid { grid-template-columns:1fr 1fr; }
  .urgency-message { grid-template-columns:1fr; text-align:center; }
  .urgency-message .cta { justify-self:center; }
}
@media (max-width:560px) {
  .urgency-grid { grid-template-columns:1fr; }
  .urgency-item { min-height:0; }
  .urgency-message { padding:23px 18px; }
  .urgency-message .cta { width:100%; min-width:0; }
}

/* =========================================================
   可読性：テキストは16px未満にしない
========================================================= */
body,
button,
input,
select,
textarea { font-size:16px; }

.header-contact-label,
.header-hours,
.header-btn,
.line-dot,
.hero-badges li,
.flow-icon,
.flow-icon small,
.section-eyebrow,
.section-heading > p:last-child,
.evidence-card > p:last-child,
.evidence-label,
.assurance-strip div,
.concern-card h3,
.mid-cta p,
.mid-cta-actions .cta,
.danger-card h3,
.danger-card p,
.risk-panel h3,
.risk-panel li,
.solution-item p,
.reason-copy p,
.professional-copy > p:not(.section-eyebrow),
.professional-checks li,
.diagram-center small,
.diagram-node small,
.case-index,
.case-content h3 small,
.case-content dt,
.case-content dd,
.case-note,
.process-step p,
.faq-question,
.faq-answer p,
.contact-free,
.contact-phone-label,
.contact-phone small,
.contact-trust li,
.footer-inner p,
.footer-inner small,
.mobile-fixed-cta a { font-size:16px; }

.header-btn { min-width:132px; min-height:54px; }
.line-dot { min-width:48px; height:28px; }
.hero-lead { font-size:18px; }
.cta { font-size:18px; }
.hero-badges li { padding:12px 15px; }
.section-eyebrow { letter-spacing:.12em; }
.evidence-label { margin-bottom:6px; }
.evidence-card > p:last-child,
.reason-copy p,
.solution-item p,
.professional-copy > p:not(.section-eyebrow),
.process-step p,
.case-content dd,
.faq-answer p { line-height:1.85; }
.mid-cta-actions .cta { font-size:17px; }
.diagram-node { padding:12px; }
.diagram-node small { line-height:1.35; }
.case-content dt { min-width:74px; padding:5px 8px; }
.case-content dl div { grid-template-columns:78px 1fr; }
.contact-phone small { text-align:right; }
.footer-inner small { display:block; }

@media (max-width:820px) {
  .header-phone { font-size:clamp(16px,5.067vw,19px); }
  .hero-lead { font-size:clamp(14px,4.533vw,17px); }
  .mobile-fixed-cta a { padding:17px 8px; }
}
@media (max-width:560px) {
  body { padding-bottom:58px; }
  .header-phone { font-size:clamp(13px,4.267vw,16px); }
  .hero-kicker { font-size:clamp(13px,4.267vw,16px); }
  .hero-badges { grid-template-columns:1fr; }
  .hero-badges li { font-size:clamp(13px,4.267vw,16px); padding:10px; }
  .flow-icon { width:100px; font-size:clamp(13px,4.267vw,16px); }
  .section-heading > p:last-child { font-size:clamp(13px,4.267vw,16px); }
  .evidence-card > p:last-child { font-size:clamp(13px,4.267vw,16px); }
  .diagram-center strong { font-size:clamp(16px,5.333vw,20px); }
  .diagram-node strong { font-size:clamp(14px,4.533vw,17px); }
  .diagram-node small { font-size:clamp(13px,4.267vw,16px); }
  .faq-question { font-size:clamp(13px,4.267vw,16px); grid-template-columns:38px 1fr 28px; }
  .contact-btn { font-size:clamp(14px,4.533vw,17px); }
  .contact-phone strong { font-size:clamp(23px,7.467vw,28px); }
}
.contract-icon { background:#fff0ea; color:var(--orange); }
.contract-icon::before { content:""; width:29px; height:36px; border:3px solid currentColor; border-radius:4px; background:repeating-linear-gradient(to bottom,transparent 0 7px,currentColor 7px 9px); opacity:.9; }
.contract-icon::after { content:"!"; position:absolute; right:7px; bottom:7px; width:23px; height:23px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--orange); font-size:16px; font-weight:950; }

/* 最小フォントサイズ調整：表示テキストは16px以上 */
.header-contact-label,.header-hours,.header-btn,.line-dot,.cta,
.hero-badges li,.flow-icon,.section-eyebrow,.section-heading > p:last-child,
.metric-note,.danger-card p,.risk-panel li,.solution-item p,.reason-note,
.professional-copy > p:not(.section-eyebrow),.professional-checks li,
.professional-checks li::before,.diagram-node small,.case-index,
.case-content h3 small,.case-content dt,.case-content dd,.case-note,
.process-step p,.faq-answer p,.contact-phone small,.contact-trust li,
.footer-inner p,.footer-inner small,.mobile-fixed-cta a,.hero-kicker,
.hero-lead,.header-phone,.diagram-node strong,.hero-badges li {
  font-size:16px;
}

/* =========================================================
   COMMON: SHARED LP COMPONENTS AND RESPONSIVE LAYOUT
   旧ページ別CSSから移管した4LP共通スタイル
   ========================================================= */
/* ========================================================================== 
   WAKEURI LP — SHARED COMPONENT AND LAYOUT STYLES
   --------------------------------------------------------------------------
   4LP共通のコンポーネント・レイアウトです。common_lp.css に統合されています。

   01. Page color and typography overrides
   02. Hero / Evidence
   03. Common concerns / Risk
   04. Solution points / Reasons to choose WAKEURI
   05. Professional one-stop support
   06. Case studies / Process / FAQ
   07. Contact form / Modal / Mobile fixed CTA
   08. Smartphone-specific adjustments

   他LPへ流用する際は、このファイルを複製してページ名を変更してください。
   ========================================================================== */
/* 東京写真を使ったファーストビュー */
.check-svg{display:block;width:1em;height:1em;fill:none;stroke:currentColor;stroke-width:3;stroke-linecap:round;stroke-linejoin:round}
.hero-cta-icon{display:inline-grid;place-items:center;flex:0 0 auto;width:26px;height:26px}
.hero-cta-icon svg{display:block;width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hero h1{color:#111}
.solution-item h3{color:#111}
.professional-checks li{color:#111}
.professional-diagram .diagram-node{color:#111}
.faq-question{color:#111}
.quick-field label,.issue-fieldset legend{color:#111}
.hero {
  isolation:isolate;
  height:calc(100svh - 94px);
  min-height:640px;
  max-height:900px;
  padding:clamp(28px,5vh,58px) 0;
  display:flex;
  align-items:center;
  background-image:var(--lp-hero-bg);
  background-position:center 58%;
  background-size:cover;
  background-repeat:no-repeat;
}

/* Header hierarchy and spacing */
.header-inner {
  min-height:94px;
  grid-template-columns:190px 1fr auto;
  gap:28px;
  padding:10px 0;
}
.site-logo img { width:165px; }
.header-contact {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  line-height:1.1;
}
.header-contact-label {
  color:var(--muted);
  font-size:12px;
  font-weight:750;
  letter-spacing:.04em;
}
.header-phone {
  gap:8px;
  font-size:28px;
  line-height:1;
  letter-spacing:.02em;
}
.phone-icon { color:var(--orange); font-size:19px; }
.header-hours { display:none; }
.header-btn-mail { min-width:178px; }
.header-btn-copy {
  display:grid;
  gap:1px;
  text-align:left;
  line-height:1.2;
}
.header-btn-copy small {
  color:rgba(255,255,255,.86);
  font-size:11px;
  font-weight:750;
}

@media (max-width:1050px) {
  .header-inner { min-height:88px; grid-template-columns:165px 1fr auto; gap:18px; padding:8px 0; }
  .site-logo img { width:148px; }
  .header-phone { font-size:24px; }
  .header-btn-mail { min-width:165px; }
}

@media (max-width:820px) {
  .header-inner { min-height:78px; grid-template-columns:135px 1fr; padding:9px 0; }
  .site-logo img { width:120px; }
  .header-phone { font-size:clamp(16px,5.067vw,19px); }
}

@media (max-width:560px) {
  .header-inner { min-height:74px; grid-template-columns:112px 1fr; padding:10px 0; }
  .site-logo img { width:102px; }
  .header-phone { font-size:clamp(13px,4.267vw,16px); }
}
.hero::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(rgba(247,251,255,.52),rgba(247,251,255,.52)),
    linear-gradient(180deg,rgba(5,35,75,.04) 0%,rgba(5,35,75,.08) 56%,rgba(5,35,75,.26) 100%);
}
.hero .hero-grid {
  z-index:2;
  display:block;
}
.hero-copy {
  position:relative;
  z-index:3;
  margin-left:28px;
  width:clamp(640px,66vw,790px);
  max-width:72%;
  padding:38px 34px;
  border:1px solid rgba(255,255,255,.76);
  border-radius:28px;
  background:rgba(255,255,255,.78);
  box-shadow:0 24px 60px rgba(5,34,71,.15);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.hero h1 {
  font-size:clamp(42px,4.2vw,58px);
  line-height:1.2;
}
.hero-kicker{margin-bottom:16px}
.hero-kicker p{margin:0 0 10px;color:#365169;font-size:15px;font-weight:850;letter-spacing:.03em}
.hero-kicker ul{margin:0;padding:0;display:flex;flex-wrap:wrap;gap:7px;list-style:none}
.hero-kicker li{padding:6px 11px;border:1px solid #8cb7d7;border-radius:999px;background:rgba(255,255,255,.86);color:#0d558d;font-size:12px;font-weight:900;line-height:1.25;box-shadow:0 2px 7px rgba(8,76,126,.08)}
.hero-kicker li::before{content:'';display:inline-block;width:14px;height:14px;margin:0 6px 1px 0;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f27a28' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center/contain no-repeat;vertical-align:middle}
.hero-main-word {
  display:inline-block;
  font-size:1.58em;
  line-height:.95;
  letter-spacing:-.04em;
}
.text-marker {
  padding:0 .08em;
  background:linear-gradient(transparent 60%,rgba(255,214,64,.58) 60%,rgba(255,214,64,.58) 93%,transparent 93%);
  font-weight:850;
  -webkit-box-decoration-break:clone;
  box-decoration-break:clone;
}
.hero-kicker,.hero h1,.hero-lead { text-shadow:0 1px 0 rgba(255,255,255,.8); }
.hero-badges .hero-badge-icon {
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
}
.hero-badges .hero-badge-icon svg {
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.hero-model-photo {
  position:absolute;
  z-index:4;
  right:70px;
  bottom:0;
  width:auto;
  height:clamp(520px,60svh,680px);
  max-width:none;
  max-height:none;
  object-fit:contain;
  filter:drop-shadow(0 22px 24px rgba(4,28,59,.24));
  pointer-events:none;
}
.hero-satisfaction-emblem {
  position:absolute;
  z-index:3;
  top:0%;
  right:auto;
  left:72%;
  width:clamp(189px,16.5vw,258px);
  height:auto;
  filter:drop-shadow(0 8px 12px rgba(61,41,0,.22));
  pointer-events:none;
}
.hero-visual { display:none; }
.hero-decoration { display:none; }

/* Hero performance counter */
.hero-performance{position:relative;z-index:5;margin-top:-1px;padding:17px 0 20px;background:#eaf2f8;overflow:hidden}
.hero-performance-card{width:min(calc(100% - 32px),720px);min-height:82px;margin:auto;padding:8px 24px;display:flex;align-items:center;justify-content:center;gap:17px;color:#172a3d}
.hero-performance-card>span{font-size:26px;font-weight:950;white-space:nowrap}
.hero-performance-card strong{color:#e93f05;font-size:clamp(54px,6vw,76px);font-weight:1000;line-height:1;letter-spacing:-.035em;font-variant-numeric:tabular-nums}
.hero-performance-card b{align-self:flex-end;margin-bottom:17px;font-size:22px;font-weight:950}
.hero-today-count{margin-left:14px;padding:8px 13px;border-left:2px solid #a9c8dc;color:#314b5e;font-size:14px;font-weight:850;line-height:1.25;white-space:nowrap}
.hero-today-count em{margin:0 3px;color:#e93f05;font-size:25px;font-style:normal;font-weight:1000;font-variant-numeric:tabular-nums}
.hero-performance-ticker{width:100%;margin-top:12px;padding:3px 0;overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent)}
.hero-performance-track{display:flex;width:max-content;animation:performanceTicker 86s linear infinite;will-change:transform}
.hero-performance-ticker:hover .hero-performance-track{animation-play-state:paused}
.hero-performance-ticker-group{display:flex;flex-shrink:0;gap:12px;padding-right:12px}
.hero-performance-ticker a{width:240px;min-height:76px;padding:9px 12px;display:grid;align-content:center;gap:4px;border:3px solid #9bc3de;border-radius:11px;background:#fff;color:#263c50;text-decoration:none;box-shadow:0 3px 10px rgba(12,73,117,.08);transition:border-color .2s,box-shadow .2s}
.hero-performance-ticker a:hover{border-color:#f27a28;box-shadow:0 4px 12px rgba(242,122,40,.18)}
.hero-performance-ticker time{color:#0872bb;font-size:12px;font-weight:900}
.hero-performance-ticker span{font-size:12px;font-weight:750;line-height:1.45}
@keyframes performanceTicker{to{transform:translateX(-50%)}}
@media(prefers-reduced-motion:reduce){.hero-performance-track{animation-play-state:paused}}
@media(max-width:560px){.hero-performance{padding:12px 0 15px}.hero-performance-card{width:calc(100% - 24px);min-height:68px;padding:6px 7px;gap:5px}.hero-performance-card>span{font-size:clamp(10px,3.2vw,12px)}.hero-performance-card strong{font-size:clamp(30px,9.6vw,36px)}.hero-performance-card b{margin-bottom:8px;font-size:clamp(11px,3.467vw,13px)}.hero-today-count{margin-left:5px;padding:5px 0 5px 8px;font-size:clamp(9px,2.4vw,9px)}.hero-today-count em{font-size:clamp(15px,4.8vw,18px)}.hero-performance-ticker{margin-top:10px}.hero-performance-ticker a{width:220px;min-height:68px;padding:9px 12px}.hero-performance-ticker span{font-size:clamp(9px,2.933vw,11px)}}

/* 最終相談CTA：スマートフォン相談のイメージを補強 */
.contact-box {
  isolation:isolate;
  overflow:visible;
  background:#0368b8;
}
.contact-box::after { display:none; }
.contact-model-photo {
  position:absolute;
  z-index:0;
  right:-54px;
  top:28px;
  width:400px;
  max-width:42%;
  filter:drop-shadow(0 14px 18px rgba(5,25,43,.16)) saturate(.92) brightness(1.04);
  pointer-events:none;
}
.contact-heading { width:64%; max-width:590px; }
.contact-points { width:100%; max-width:none; }
.contact-heading h2{font-size:clamp(30px,3vw,38px);line-height:1.28}
.contact-heading p,.contact-heading p .text-marker{color:#fff}
.contact-heading p{margin-top:13px}
.contact-form-card,.contact-actions,.contact-phone,.contact-trust { z-index:2; }
.contact-form-card{padding:46px 42px}
.quick-submit{width:min(100%,460px);justify-self:center;padding:0 30px}
.contact-points{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:24px}
.contact-points li{min-height:58px;padding:11px 13px;border:2px solid rgba(255,255,255,.72);border-radius:10px;background:rgba(255,255,255,.11);box-shadow:0 4px 14px rgba(0,45,88,.12);font-size:15px;line-height:1.45}
.contact-points span{flex:0 0 27px;background:var(--orange);box-shadow:0 2px 8px rgba(0,0,0,.14)}
.professional-checks li::before{background-color:var(--orange)}

/* COMMON CONCERNS：記号ではなく内容別イラストで判別 */
.section-heading-concerns{max-width:1000px;margin:0 0 12px;text-align:left}
.concern-grid { gap:28px; }
.concern-card {
  padding:28px 28px 26px;
  min-height:0;
  display:flex;
  flex-direction:column;
  border:3px solid #236a9f;
  box-shadow:none;
}
.concern-card:hover { box-shadow:none; }
.concern-illustration {
  width:100%;
  height:170px;
  margin:0 0 18px;
  padding:8px;
  object-fit:contain;
  border-radius:14px;
  background:linear-gradient(145deg,#eef7ff,#fff8ed);
}
.concern-card h3 { margin:0 0 10px; }
.concern-card p { margin:0; }
.concern-highlight{padding:8px 0;border-left:0;background:transparent;text-align:center;box-shadow:none}
.concern-highlight .text-marker{color:inherit}
.mid-cta-person{font-size:16px;line-height:1.2;text-align:center}
.danger-heading p{margin-bottom:20px;border-radius:10px;font-size:21px;line-height:1.4}
.professional-copy h2{font-size:clamp(31px,3.4vw,46px)}
@media(max-width:560px){.danger-heading p{margin-bottom:16px;padding:8px 14px;font-size:clamp(14px,4.533vw,17px)}}
@media(max-width:560px){.concern-grid{gap:20px}.concern-card{padding:22px 20px;border-width:3px}}
.concerns .section-heading { max-width:1000px; }
.concern-lead { max-width:none; margin:18px 0 0; text-align:left; }
.concern-card h3 { font-size:28px; line-height:1.35; }

/* 放置リスクはDANGERへ統合し、重複するWHY NOWは表示しない */
.urgency { display:none; }
.danger-action {
  margin-top:34px;
  padding:24px 28px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
  border:0;
  border-radius:16px;
  background:#fff;
  box-shadow:none;
}
.danger-action strong { color:#b31921; font-size:20px; }
.danger-action span { color:#34485d; font-size:16px; }
.danger-action .cta { min-width:270px; }

.after-submit {
  margin:-8px 0 22px;
  padding:8px 0 0;
  display:grid;
  gap:4px;
  border-left:0;
  background:transparent;
  color:var(--navy);
}
.after-submit strong { font-size:18px; }
.after-submit span { font-size:16px; line-height:1.7; }
.after-submit>strong{margin-bottom:8px;text-align:center}
.after-submit-flow{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.after-submit-flow li{position:relative;min-height:74px;padding:10px 8px;display:flex;align-items:center;justify-content:center;gap:8px;border:1px solid #c9dceb;border-radius:9px;background:#fff;text-align:left}
.after-submit-flow li:not(:last-child)::after{content:'›';position:absolute;right:-9px;z-index:2;color:#0872bb;font-size:23px;font-weight:950}
.after-submit-flow b{flex:0 0 25px;width:25px;height:25px;display:grid;place-items:center;border-radius:50%;background:#0872bb;color:#fff;font-size:13px}
.after-submit-flow span{color:#253e57;font-size:13px;line-height:1.45;font-weight:800}
.after-submit-note{margin:10px 0 0;padding:9px 12px;border-radius:7px;background:#eaf5ff;color:#0d4e82;font-size:13px;line-height:1.55;font-weight:850;text-align:center}
.issue-fieldset{margin:0;padding:0;border:0}
.issue-fieldset legend{margin:0 0 9px;color:var(--navy);font-size:16px;font-weight:900}
.issue-check-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.issue-check-grid label{min-height:50px;padding:9px 12px;display:flex;align-items:center;gap:9px;border:1px solid #c7d2de;border-radius:9px;background:#fff;color:#314b64;font-size:14px;font-weight:800;cursor:pointer;transition:.2s ease}
.issue-check-grid label:hover{border-color:#0872bb;background:#f3f9fe}
.issue-check-grid input{width:19px;height:19px;min-height:0;padding:0;accent-color:#0872bb;flex:0 0 auto}
.issue-check-grid input:checked+span{color:#0872bb}
.contact-btn-copy { display:grid; line-height:1.35; }
.contact-btn-copy small { color:rgba(255,255,255,.88); font-size:16px; font-weight:700; }
.contact-btn-icon{display:inline-grid;place-items:center;flex:0 0 34px;width:34px;height:34px}
.contact-btn-icon svg{display:block;width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* FREE CONSULTATION：幅を絞り、電話を強い選択肢として表示 */
.contact-box { max-width:900px; }
.contact-phone {
  min-height:104px;
  padding:20px 28px;
  border:3px solid var(--orange);
  box-shadow:0 14px 34px rgba(0,0,0,.22),inset 0 0 0 2px rgba(255,255,255,.8);
  transition:transform .2s ease,box-shadow .2s ease;
}
.contact-phone:hover { transform:translateY(-3px); box-shadow:0 18px 40px rgba(0,0,0,.27); }
.contact-phone-label {
  justify-self:start;
  padding:7px 13px;
  border-radius:999px;
  color:#fff;
  background:var(--orange);
  font-size:18px;
}
.contact-phone strong { color:var(--navy); font-size:52px; letter-spacing:.02em; }
.contact-phone small { font-size:16px; font-weight:700; }

/* CASE STUDY：12件を一覧しやすいコンパクトカードへ */
.case-grid { grid-template-columns:repeat(4,1fr); gap:16px; }
.case-card { border-radius:14px; box-shadow:none; }
.case-image { aspect-ratio:4/3; }
.case-content { padding:17px 16px 19px; }
.case-index { display:none; }
.case-content h3 { font-size:16px; line-height:1.45; }
.case-content h3 small { display:block; margin-top:5px; font-size:14px; line-height:1.5; }
.case-content dl { display:none; }
.case-meta { margin-top:13px; padding-top:12px; grid-template-columns:1fr; gap:7px; }
.case-meta div { padding:9px 10px; }
.case-meta span { font-size:13px; }
.case-meta strong { font-size:14px; }
.case-meta strong.price { font-size:22px; }
.case-meta > div:first-child {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  padding:2px 1px 5px;
  border-radius:0;
  background:transparent;
  white-space:nowrap;
}
.case-meta > div:first-child span,
.case-meta > div:first-child strong {
  display:inline;
  margin:0;
  white-space:nowrap;
}
.case-note { font-size:13px; }

/* WHY WAKEURI：数字・一文字記号を使わないテキスト中心カード */
.reason-item { min-height:270px; padding:28px; gap:12px; }
.reason-copy h3 { margin-top:0; }

/* Direct purchase benefit grid */
.buyout-reasons {
  margin-top:64px;
  padding:38px;
  border:1px solid rgba(13,49,95,.11);
  border-radius:24px;
  background:rgba(255,255,255,.96);
  box-shadow:0 22px 55px rgba(10,47,86,.12);
  overflow:hidden;
}
.buyout-reasons-heading {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin-bottom:32px;
  text-align:left;
}
.buyout-reasons-heading img { width:150px; height:auto; }
.buyout-reasons-heading > div { padding-left:22px; border-left:3px solid var(--blue); }
.buyout-reasons-heading > div > span { display:block; color:var(--blue); font-size:12px; letter-spacing:.16em; font-weight:900; }
.buyout-reasons-heading h3 { margin:4px 0 0; color:var(--navy); font-size:clamp(27px,3vw,40px); line-height:1.25; }
.buyout-reasons-heading h3 span { color:var(--orange); }
.buyout-reasons-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.buyout-reason-card {
  min-height:240px;
  display:flex;
  flex-direction:column;
  border:1px solid #d7e1eb;
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 22px rgba(10,47,86,.09);
  overflow:hidden;
}
.buyout-reason-head {
  min-height:112px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:18px 14px;
  color:#fff;
  background:linear-gradient(135deg,#0876bd,#075fa3);
  text-align:center;
}
.buyout-reason-head strong { color:#fff; font-size:27px; line-height:1.25; }
.buyout-reason-head span { margin-top:3px; color:#fff; font-size:20px; line-height:1.25; font-weight:900; }
.buyout-reason-head em { color:#fff34a; font-style:normal; }
.buyout-reason-card p { margin:0; padding:19px 20px 22px; color:var(--muted); font-size:15px; line-height:1.75; font-weight:400; }
.buyout-reasons-note { margin:18px 0 0; color:#77889a; font-size:13px; line-height:1.6; text-align:center; }

@media (max-width:820px) {
  .buyout-reasons { padding:30px 24px; }
  .buyout-reasons-grid { grid-template-columns:1fr 1fr; }
  .buyout-reasons-heading img { width:130px; }
}

@media (max-width:560px) {
  .buyout-reasons { margin-top:42px; padding:26px 16px; border-radius:18px; }
  .buyout-reasons-heading { flex-direction:column; gap:13px; text-align:center; }
  .buyout-reasons-heading > div { padding:12px 0 0; border-left:0; border-top:3px solid var(--blue); }
  .buyout-reasons-heading img { width:130px; }
  .buyout-reasons-grid { grid-template-columns:1fr; }
  .buyout-reason-card { min-height:0; }
  .buyout-reason-head { min-height:100px; }
}

@media (max-width:1050px) {
  .hero { background-position:58% 58%; }
  .hero-copy {
    margin-left:18px;
    width:clamp(600px,69vw,720px);
    max-width:76%;
    padding:32px 27px;
  }
  .hero h1 { font-size:clamp(43px,5.25vw,55px); }
  .hero-model-photo { right:-10px; width:auto; height:clamp(500px,60svh,620px); }
  .hero-satisfaction-emblem { top:0%; right:auto; left:72%; width:clamp(177px,18vw,222px); }
  .contact-model-photo { right:-58px; top:58px; width:370px; }
  .concern-illustration { height:155px; }
  .concern-card h3 { font-size:24px; }
  .danger-action { grid-template-columns:1fr; text-align:center; }
  .danger-action .cta { margin:0 auto; }
  .case-grid { grid-template-columns:repeat(4,1fr); }
  .contact-phone strong { font-size:44px; }
}

@media (max-width:820px) {
  .hero {
    height:auto;
    min-height:auto;
    padding:52px 0 70px;
    background-position:60% center;
  }
  .hero::before {
    background:linear-gradient(180deg,rgba(247,251,255,.92) 0%,rgba(247,251,255,.82) 52%,rgba(7,31,63,.30) 100%);
  }
  .hero-copy { width:100%; max-width:none; margin-left:0; padding:30px 24px; }
  .hero h1 { font-size:clamp(40px,7vw,52px); }
  .hero-model-photo,
  .hero-satisfaction-emblem { display:none; }
  .contact-model-photo {
    position:relative;
    z-index:1;
    right:auto;
    top:auto;
    width:min(290px,78vw);
    max-width:none;
    margin:-24px auto 4px;
  }
  .contact-heading,.contact-points { width:100%; max-width:none; }
  .contact-points { grid-template-columns:repeat(2,minmax(0,1fr)); margin-top:22px; }
  .contact-box { overflow:hidden; }
  .concern-card { min-height:0; }
  .concern-illustration { height:240px; }
  .danger-action { padding:22px 18px; }
  .danger-action .cta { width:100%; min-width:0; }
  .case-grid { grid-template-columns:repeat(2,1fr); max-width:none; }
  .contact-phone { grid-template-columns:1fr; text-align:center; }
  .contact-phone-label { justify-self:center; }
  .contact-phone small { text-align:center; }
}

@media (max-width:560px) {
  .hero {
    padding:28px 0 46px;
    background-position:64% center;
  }
  .hero::before {
    background:linear-gradient(180deg,rgba(247,251,255,.96) 0%,rgba(247,251,255,.88) 57%,rgba(7,31,63,.34) 100%);
  }
  .hero-copy {
    padding:25px 17px;
    border-radius:20px;
    background:rgba(255,255,255,.84);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
  }
  .hero h1 { font-size:clamp(36px,10.7vw,42px); }
  .contact-model-photo { width:min(230px,76vw); margin:-18px auto 2px; }
  .concern-illustration { height:190px; }
  .case-grid { grid-template-columns:1fr; }
  .contact-phone strong { font-size:clamp(30px,9.6vw,36px); }
}

@media (prefers-reduced-transparency:reduce) {
  .hero-copy,.hero-visual { backdrop-filter:none; -webkit-backdrop-filter:none; background:rgba(255,255,255,.94); }
}

/* DANGER section: infographic illustrations replace symbolic icons */
.danger-card {
  min-height:0;
  padding:18px 18px 24px;
  border-top:0;
}
.danger-illustration {
  display:block;
  width:100%;
  height:170px;
  margin:0 auto 16px;
  padding:8px;
  object-fit:contain;
  object-position:center center;
  border-radius:12px;
  background:linear-gradient(145deg,#f5f9ff 0%,#fff5e9 100%);
}
.danger-card h3 { margin:0 0 10px; }

@media (max-width:1050px) {
  .danger-illustration { height:190px; }
}

@media (max-width:820px) {
  .danger-illustration { height:230px; }
}

@media (max-width:560px) {
  .danger-illustration { height:185px; }
}

/* PROCESS section: simple scene illustrations replace CSS icons and arrows */
.process-step {
  min-height:0;
  padding:24px 18px 26px;
}
.process-step:not(:last-child)::after { content:none; }
.process-illustration {
  display:block;
  width:100%;
  height:170px;
  margin:0 auto 16px;
  padding:8px;
  object-fit:contain;
  border-radius:14px;
  background:linear-gradient(145deg,#f3f8fe 0%,#fff6eb 100%);
}
.process-step h3 { margin-top:0; }
.process-speed-note {
  display:inline-block;
  margin:20px 0 0;
  padding:9px 18px;
  border-radius:999px;
  color:#fff;
  background:var(--orange);
  font-size:18px;
  line-height:1.25;
  font-weight:900;
  box-shadow:0 8px 20px rgba(242,97,47,.2);
}
.process-speed-note span { color:#fff34a; font-size:1.28em; }
.process-step p {
  margin-top:9px;
  font-size:14px;
  line-height:1.55;
}
.section-consult-cta{margin-top:30px;text-align:center}
.section-consult-cta .cta{min-width:300px}
.process-consult-link{display:inline-block;margin-top:15px;padding:7px 12px;border-radius:999px;background:#f27a28;color:#fff;font-size:12px;font-weight:900;text-decoration:none;box-shadow:0 3px 9px rgba(242,122,40,.22)}
.process-consult-link:hover{background:#df5f0d}
@media(max-width:560px){.section-consult-cta .cta{width:100%;min-width:0}.process-consult-link{padding:8px 13px}}

@media (max-width:1050px) {
  .process-illustration { height:190px; }
}

@media (max-width:820px) {
  .process-illustration { height:230px; }
}

@media (max-width:560px) {
  .process-illustration { height:185px; }
}

/* Section transitions and background cleanup */
.evidence::before { content:none; }
.concerns {
  background:#fff;
}
.concerns::before { content:none; }
.concerns .section-heading > .concern-lead {
  width:100%;
  max-width:none;
  margin:18px 0 0;
  text-align:left;
}
.section-professional {
  background:#fff;
}

/* Requested emphasis and section imagery */
.danger-heading h2 {
  font-size:clamp(34px,4.2vw,56px);
}
.reasons {
  background-image:
    linear-gradient(rgba(247,250,253,.84),rgba(247,250,253,.88)),
    var(--lp-reasons-bg);
  background-position:center 62%;
  background-size:cover;
  background-repeat:no-repeat;
}
.reasons .section-heading {
  position:relative;
  z-index:1;
}
.reason-item {
  background:rgba(255,255,255,.96);
}
.professional-photo { display:none; }

@media (max-width:560px) {
  .danger-heading h2 { font-size:clamp(28px,9.067vw,34px); }
  .reasons { background-position:center bottom; }
}

/* Brand logo placements */
.section-brand {
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:7px;
  margin-bottom:13px;
}
.section-brand img {
  display:block;
  width:210px;
  height:auto;
}
.section-brand span {
  color:var(--blue);
  font-size:12px;
  line-height:1;
  letter-spacing:.18em;
  font-weight:900;
}
.section-brand-why {
  padding:12px 18px 10px;
  border:1px solid rgba(15,39,68,.08);
  border-radius:12px;
  background:rgba(255,255,255,.9);
  box-shadow:0 8px 24px rgba(15,39,68,.07);
}
.diagram-center {
  padding:20px 15px 16px;
  color:var(--navy);
  background:#fff;
  border:4px solid var(--orange);
}
.diagram-center img {
  display:block;
  width:min(125px,82%);
  height:auto;
  margin-bottom:8px;
}
.diagram-center small {
  color:var(--navy);
  font-size:12px;
  line-height:1.25;
}
@media (max-width:560px) {
  .section-brand img { width:170px; }
  .section-brand-why { padding:10px 14px 9px; }
  .diagram-center img { width:min(105px,80%); }
  .diagram-center small { font-size:clamp(9px,2.667vw,10px); }
}

/* Reference-style conversion header */
.header-topbar {
  min-height:24px;
  display:flex;
  align-items:center;
  color:#fff;
  background:#0872bb;
  font-size:12px;
  font-weight:850;
}
.header-topbar > div { width:min(1720px,calc(100% - 36px)); margin:0 auto; }
.site-header .header-inner {
  width:min(1720px,calc(100% - 36px));
  min-height:104px;
  grid-template-columns:230px 245px minmax(540px,1fr);
  gap:22px;
  padding:10px 0;
}
.site-header .site-logo { display:flex; flex-direction:column; align-items:flex-start; gap:5px; }
.site-header .site-logo img { width:175px; }
.site-header .site-logo small { color:#3c4651; font-size:13px; font-weight:800; letter-spacing:.03em; }
.site-header .header-contact { align-items:flex-start; gap:7px; }
.site-header .header-phone { font-size:29px; letter-spacing:-.02em; }
.site-header .phone-icon { color:#333; font-size:23px; }
.header-phone-note { display:flex; align-items:center; gap:10px; color:#566575; font-size:13px; font-weight:750; }
.header-phone-note b { padding:4px 9px; color:#fff; background:#0872bb; font-size:12px; }
.site-header .header-actions { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:6px; }
.site-header .header-btn {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-width:0;
  min-height:76px;
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:10px 12px;
  border-radius:10px;
  color:#fff;
  text-align:center;
}
.site-header .header-btn::after {
  content:'';
  position:absolute;
  z-index:0;
  top:-45%;
  left:-70%;
  width:34%;
  height:190%;
  pointer-events:none;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.08),rgba(255,255,255,.72),rgba(255,255,255,.08),transparent);
  transform:skewX(-20deg);
  animation:header-button-shine 9s ease-in-out infinite;
}
.site-header .header-btn > small,
.site-header .header-btn > strong { position:relative; z-index:1; }
.site-header .header-btn-mail::after { animation-delay:3s; }
.site-header .header-btn-line::after { animation-delay:6s; }
@keyframes header-button-shine {
  0% { left:-70%; }
  8% { left:136%; }
  8.01%,100% { left:136%; }
}
@media (prefers-reduced-motion:reduce) {
  .site-header .header-btn::after { animation:none; }
}
.site-header .header-btn > small { color:rgba(255,255,255,.96); font-size:12px; line-height:1.2; font-weight:800; }
.site-header .header-btn > strong { display:flex; justify-content:center; align-items:center; gap:8px; font-size:19px; line-height:1.1; }
.site-header .header-btn > strong > svg {
  flex:0 0 auto;
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.header-btn-quick { background:linear-gradient(135deg,#3384dd,#2875cf); }
.site-header .header-btn-mail { background:linear-gradient(135deg,#ed3f3f,#dc3035); }
.site-header .header-btn-line { background:linear-gradient(135deg,#08c963,#02b956); }

@media (min-width:821px) {
  .hero { height:calc(100svh - 128px); }
}

@media (max-width:1200px) and (min-width:821px) {
  .site-header .header-inner { grid-template-columns:180px 205px minmax(450px,1fr); gap:14px; }
  .site-header .site-logo img { width:150px; }
  .site-header .site-logo small { font-size:11px; }
  .site-header .header-phone { font-size:23px; }
  .header-phone-note { font-size:11px; gap:6px; }
  .site-header .header-btn { padding:9px 7px; }
  .site-header .header-btn > small { font-size:10px; }
  .site-header .header-btn > strong { font-size:15px; gap:5px; }
}

@media (max-width:820px) {
  .header-topbar { min-height:22px; font-size:clamp(9px,2.667vw,10px); }
  .site-header .header-inner { min-height:78px; grid-template-columns:125px 1fr; padding:9px 0; }
  .site-header .site-logo img { width:112px; }
  .site-header .site-logo small { display:none; }
  .site-header .header-contact { align-items:flex-end; }
  .site-header .header-phone { font-size:clamp(16px,5.067vw,19px); }
  .header-phone-note { display:none; }
  .site-header .header-actions { display:none; }
}

@media (max-width:560px) {
  .header-topbar > div { width:calc(100% - 20px); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .site-header .header-inner { width:calc(100% - 22px); grid-template-columns:100px 1fr; }
  .site-header .site-logo img { width:94px; }
  .site-header .header-phone { font-size:clamp(13px,4.267vw,16px); }
}
/* Three-tier footer */
.site-footer{padding:0;background:#fff;color:#30343a;text-align:left}
.site-footer>.footer-inner{display:none}
.footer-links-area{background:#0872bb;color:#fff;padding:30px 24px 28px}
.footer-links-inner{width:min(100%,1000px);margin:auto;display:flex;gap:72px}
.footer-link-column{min-width:150px;display:flex;flex-direction:column;gap:7px}
.footer-link-column h2{margin:0 0 2px;font-size:14px;line-height:1.4;color:#fff}
.footer-link-column a{color:#fff;font-size:12px;font-weight:700;line-height:1.35;text-decoration:none}
.footer-link-column a::before{content:'›';margin-right:8px;font-size:13px}
.footer-link-column a:hover{text-decoration:underline}
.footer-contact-area{background:#fff;padding:22px 24px 26px}
.footer-contact-inner{width:min(100%,1100px);margin:auto;display:grid;grid-template-columns:260px 245px minmax(300px,1fr) 146px;align-items:center;gap:22px}
.footer-logo{display:block}
.footer-logo img{display:block;width:250px;max-width:100%;height:auto}
.footer-phone{display:flex;align-items:center;gap:7px;color:#303236;text-decoration:none;font-size:31px;font-weight:950;letter-spacing:-1.5px;white-space:nowrap}
.footer-phone span{font-size:30px;line-height:1}
.footer-phone-meta{display:flex;align-items:center;gap:8px;margin-top:3px;font-size:12px;color:#707070}
.footer-phone-meta strong{padding:2px 5px;background:#858585;color:#fff;font-size:11px}
.footer-mail-cta{min-height:69px;display:grid;grid-template-columns:43px 1fr 18px;align-items:center;gap:12px;padding:10px 16px;border-radius:5px;background:#ff3b0a;color:#fff;text-decoration:none;box-shadow:0 3px 7px rgba(0,0,0,.25)}
.footer-mail-cta svg{width:43px;height:43px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.footer-mail-cta span{display:flex;flex-direction:column;gap:3px}
.footer-mail-cta small{font-size:12px;font-weight:800}
.footer-mail-cta strong{font-size:16px;line-height:1.2}
.footer-mail-cta b{font-size:40px;font-weight:300;line-height:1}
.footer-line-cta{min-height:69px;display:flex;align-items:center;justify-content:center;gap:9px;padding:8px 12px;border-radius:5px;background:#00bd5b;color:#fff;text-decoration:none;box-shadow:0 3px 7px rgba(0,0,0,.25)}
.footer-line-cta strong{font-size:16px;line-height:1.25}
.footer-line-cta span{width:46px;height:46px;display:grid;place-items:center;border-radius:50%;background:#fff;color:#00ad54;font-size:12px;font-weight:900}
.footer-copyright{padding:5px 20px;background:#0872bb;color:#fff;text-align:center;line-height:1.2}
.footer-copyright small{font-size:10px;font-weight:700}
@media(max-width:1050px){.footer-contact-inner{grid-template-columns:230px 1fr 1.25fr}.footer-line-cta{grid-column:3}.footer-logo img{width:220px}.footer-phone{font-size:27px}.footer-mail-cta{grid-row:1/3}}
@media(max-width:800px){.footer-links-inner{justify-content:center}.footer-contact-inner{grid-template-columns:1fr 1fr}.footer-logo,.footer-phone-block{justify-self:center}.footer-mail-cta{grid-row:auto;grid-column:1}.footer-line-cta{grid-column:2}.footer-logo img{width:210px}}
@media(max-width:560px){.footer-links-area{padding:26px 22px}.footer-links-inner{justify-content:flex-start;gap:34px}.footer-link-column{min-width:0;flex:1}.footer-contact-area{padding:24px 18px 90px}.footer-contact-inner{display:flex;flex-direction:column;gap:16px}.footer-logo img{width:210px}.footer-phone{font-size:clamp(24px,7.733vw,29px)}.footer-mail-cta,.footer-line-cta{width:100%;max-width:360px}.footer-line-cta{min-height:62px}.footer-copyright{padding:6px 12px}}
@media(max-width:820px){body{padding-bottom:calc(76px + env(safe-area-inset-bottom))}.mobile-fixed-cta{left:0;right:0;bottom:0;padding:8px 10px calc(8px + env(safe-area-inset-bottom));gap:8px;background:rgba(255,255,255,.96);border-top:1px solid #c9d7e4;box-shadow:0 -5px 18px rgba(13,49,95,.16);backdrop-filter:blur(8px);opacity:0;visibility:hidden;pointer-events:none;transform:translateY(calc(100% + 12px));transition:transform .38s cubic-bezier(.2,.75,.25,1),opacity .28s ease,visibility 0s linear .38s}.mobile-fixed-cta.is-visible{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0);transition-delay:0s}.mobile-fixed-cta a{min-width:0;min-height:50px;padding:9px 6px;display:flex;align-items:center;justify-content:center;border-radius:9px;font-size:clamp(11px,3.733vw,14px);line-height:1.25;text-decoration:none;box-shadow:0 3px 9px rgba(0,0,0,.16)}}

/* ========================================================================== 
   LINE CONSULTATION MODAL - ALL LPs
   ========================================================================== */
.line-modal-trigger{font:inherit;cursor:pointer;-webkit-appearance:none;appearance:none}
.line-consult-modal{position:fixed;inset:0;z-index:99999;display:none;align-items:center;justify-content:center;padding:24px}
.line-consult-modal.is-open{display:flex}
.line-consult-modal__backdrop{position:absolute;inset:0;background:rgba(18,25,28,.62);backdrop-filter:blur(3px)}
.line-consult-modal__panel{position:relative;width:min(560px,100%);max-height:calc(100vh - 48px);overflow:auto;background:#fff;border-radius:22px;padding:34px 34px 28px;box-shadow:0 24px 70px rgba(0,0,0,.25)}
.line-consult-modal__close{position:absolute;top:14px;right:16px;width:38px;height:38px;border:0;border-radius:50%;background:#f1f3f2;color:#555;font-size:28px;line-height:1;cursor:pointer}
.line-consult-modal__head{text-align:center}
.line-consult-modal__badge{display:inline-flex;align-items:center;justify-content:center;padding:7px 13px;border-radius:999px;background:#eaf9ef;color:#16864a;font-size:13px;font-weight:700;margin-bottom:12px}
.line-consult-modal__head h2{margin:0;font-size:28px;line-height:1.45;color:#17201c}
.line-consult-modal__head p{margin:14px 0 0;font-size:15px;line-height:1.85;color:#5f6863}
.line-consult-modal__examples{margin-top:22px;padding:18px 20px;background:#f6f8f7;border-radius:14px}
.line-consult-modal__examples strong{display:block;margin-bottom:9px;font-size:15px;color:#26312b}
.line-consult-modal__examples ul{margin:0;padding:0;list-style:none}
.line-consult-modal__examples li{position:relative;padding:5px 0 5px 22px;font-size:14px;line-height:1.55;color:#46504b}
.line-consult-modal__examples li::before{content:'';position:absolute;left:2px;top:11px;width:10px;height:6px;border-left:2px solid #17a75c;border-bottom:2px solid #17a75c;transform:rotate(-45deg)}
.line-consult-modal__steps{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:20px 0}
.line-consult-modal__steps div{position:relative;text-align:center;padding:12px 5px;background:#fff;border:1px solid #e2e7e4;border-radius:12px}
.line-consult-modal__steps b{display:flex;width:28px;height:28px;margin:0 auto 7px;align-items:center;justify-content:center;border-radius:50%;background:#17a75c;color:#fff;font-size:13px}
.line-consult-modal__steps span{font-size:12px;line-height:1.45;color:#4f5954}
.line-consult-modal__cta{display:flex;align-items:center;justify-content:center;gap:13px;text-decoration:none;background:#06c755;color:#fff;border-radius:14px;padding:16px 20px;transition:transform .2s ease,filter .2s ease}
.line-consult-modal__cta:hover{transform:translateY(-1px);filter:brightness(.97)}
.line-consult-modal__cta-icon{display:flex;align-items:center;justify-content:center;min-width:52px;height:32px;border-radius:8px;background:#fff;color:#06c755;font-size:12px;font-weight:800}
.line-consult-modal__cta span:last-child{display:flex;flex-direction:column;gap:2px}
.line-consult-modal__cta small{font-size:11px;font-weight:600;opacity:.9}
.line-consult-modal__cta strong{font-size:17px;line-height:1.35}
.line-consult-modal__note{margin:11px 4px 0;text-align:center;font-size:12px;line-height:1.65;color:#6b746f}
body.line-modal-open{overflow:hidden}
@media(max-width:640px){.line-consult-modal{padding:14px}.line-consult-modal__panel{padding:28px 18px 20px;border-radius:18px;max-height:calc(100vh - 28px)}.line-consult-modal__head h2{font-size:clamp(18px,5.867vw,22px)}.line-consult-modal__head p{font-size:clamp(11px,3.733vw,14px)}.line-consult-modal__examples{padding:15px}.line-consult-modal__steps{gap:5px}.line-consult-modal__steps span{font-size:clamp(9px,2.933vw,11px)}.line-consult-modal__cta{padding:14px 12px;gap:10px}.line-consult-modal__cta strong{font-size:clamp(12px,4vw,15px)}}
@media(prefers-reduced-motion:reduce){.mobile-fixed-cta{transition:none!important}}
@media(max-width:560px){.contact-points{grid-template-columns:1fr}.contact-points li{min-height:52px}.contact-form-card{padding:28px 20px}.quick-submit{width:100%;padding:0 16px}}
@media(max-width:560px){.hero-copy{width:85%;margin-left:auto;margin-right:auto;padding:22px 14px}.hero h1{font-size:clamp(22px,6vw,24px);line-height:1.18;letter-spacing:-.06em}.hero-badges{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:4px;margin-top:12px}.hero-badges li{min-width:0;padding:7px 2px;justify-content:center;font-size:clamp(9px,2.667vw,10px);line-height:1.25;white-space:nowrap;border-radius:6px}.hero-badges .hero-badge-icon{display:none}}
@media(max-width:560px){.evidence-strip{width:90%;margin-left:auto;margin-right:auto}.evidence-head{padding:15px 8px;font-size:clamp(15px,4vw,21px);line-height:1.4}.evidence-metrics{width:100%;grid-template-columns:repeat(3,minmax(0,1fr))}.metric-item{min-width:0;min-height:110px;padding:13px 4px;border-right:1px solid var(--line);border-bottom:0}.metric-item:last-child{border-right:0}.metric-label{font-size:clamp(9px,2.667vw,10px);line-height:1.35}.metric-value{margin-top:8px;font-size:clamp(9px,2.933vw,11px);line-height:1.35}.metric-value strong,.metric-value .count,.metric-value em{font-size:clamp(22px,7.2vw,27px)}}
@media(max-width:560px){.after-submit-flow{grid-template-columns:1fr}.after-submit-flow li{min-height:54px;justify-content:flex-start;padding:9px 12px}.after-submit-flow li:not(:last-child)::after{content:'⌄';right:auto;left:50%;bottom:-17px;transform:translateX(-50%)}}
@media(max-width:560px){.issue-check-grid{grid-template-columns:1fr}}

/* Smartphone fluid typography */
@media(max-width:560px){
  :root{
    --sp-font-small:clamp(11px,3vw,15px);
    --sp-font-medium:clamp(13px,3.5vw,18px);
    --sp-font-large:clamp(18px,5vw,27px);
  }
  body,button,input,select,textarea{font-size:var(--sp-font-medium)}
  p,.hero-lead,.concern-card p,.danger-card p,.solution-item p,.reason-copy p,.reason-note,.professional-copy>p:not(.section-eyebrow),.process-step p,.faq-answer p,.contact-heading p,.contact-points li,.contact-trust li,.case-story-text p,.case-story-panel p{font-size:var(--sp-font-medium)}
  small,.section-eyebrow,.hero-kicker p,.hero-kicker li,.hero-badges li,.metric-label,.metric-note,.case-content h3 small,.case-content dt,.case-content dd,.case-note,.case-story-badge,.case-story-button,.case-story-tags span,.footer-inner p,.footer-inner small{font-size:var(--sp-font-small)}
  h3,.concern-card h3,.danger-card h3,.solution-item h3,.reason-copy h3,.process-step h3,.contact-form-card h3,.case-story-panel h3{font-size:var(--sp-font-large)}
  .section-heading h2,.danger-heading h2,.professional-copy h2,.contact-heading h2{font-size:clamp(28px,7.5vw,42px)}
  .hero h1{font-size:clamp(22px,6vw,34px)}
  .hero-main-word{font-size:1.7em}
  .cta,.quick-submit,.contact-btn,.mobile-fixed-cta a{font-size:var(--sp-font-medium)}
  .header-phone,.contact-phone strong,.footer-phone{font-size:clamp(24px,6.5vw,36px)}
  .metric-value{font-size:var(--sp-font-small)}
  .metric-value strong,.metric-value .count,.metric-value em{font-size:clamp(26px,7vw,39px)}
  .case-story-header h2,.case-story-period{font-size:clamp(20px,5.5vw,30px)}
}

@media(max-width:560px){
  .hero-main-word{font-size:3.4em;line-height:1.5}
  .hero-lead{font-size:clamp(13px,3.5vw,18px);line-height:1.5em}
  .hero-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px;margin-top:18px}
  .hero-actions .cta{display:grid;width:100%;min-width:0;grid-template-columns:25% 75%;align-items:center;gap:0;padding:12px 6px;font-size:clamp(11px,3vw,15px);line-height:1.35;text-align:center}
  .hero-actions .hero-cta-icon{width:24px;height:24px;margin:0;padding:1px;justify-self:center}
  .hero-actions .hero-cta-label{display:block;min-width:0;padding-right:4px;text-align:center}
  .hero-badges{display:flex;flex-wrap:wrap;justify-content:center;gap:5px}
  .hero-badges li{flex:0 0 auto;width:auto;padding:7px 8px}
  .metric-note{width:90%;margin:12px auto 0;font-size:clamp(11px,3vw,15px);text-align:center}
  .assurance-strip{width:90%;margin-left:auto;margin-right:auto;padding:15px 8px;grid-template-columns:repeat(3,minmax(0,1fr));gap:0}
  .assurance-strip div{min-width:0;padding:0 5px;border-right:1px solid var(--line);border-bottom:0;font-size:clamp(11px,3vw,15px);line-height:1.45;text-align:center}
  .assurance-strip div:last-child{border-right:0}
  .concerns .section-heading h2{font-size:clamp(22px,6vw,34px)}
  .concern-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .concern-card{min-width:0;padding:18px 12px}
  .concern-illustration{height:clamp(90px,28vw,120px);margin-bottom:12px;padding:5px}
  .danger-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .danger-card{min-width:0;min-height:0;padding:20px 12px}
  .danger-illustration{height:clamp(90px,28vw,120px);margin:0 auto 12px;padding:5px;object-position:center center}
  .case-grid{grid-template-columns:repeat(2,minmax(0,1fr));max-width:none;gap:12px;margin-left:0;margin-right:0}
  .case-card{min-width:0}
  .concern-card h3,.danger-card h3,.case-card h3{font-size:clamp(15px,4vw,21px);line-height:1.4}
  .concern-card p,.danger-card p,.case-card p,.case-card dt,.case-card dd,.case-card .case-note{font-size:clamp(13px,3.5vw,18px);line-height:1.5em}
  .concern-highlight{font-size:clamp(18px,5vw,27px);line-height:1.5;padding:14px 8px}
  .mid-cta-person{display:none}
  .mid-cta{grid-template-columns:1fr;padding:18px 15px;gap:14px}
  .danger-heading h2{font-size:clamp(22px,6vw,34px)}
  .risk-compare{width:80%;margin:24px auto 0}
  .risk-panel{width:100%;min-height:0}
  .danger-action{width:80%;margin:24px auto 0;padding:16px 14px;gap:10px}
  .danger-action strong{font-size:clamp(15px,4vw,21px)}
  .danger-action span{font-size:clamp(12px,3.2vw,16px);line-height:1.5}
  .danger-action .cta{width:88%;min-width:0;margin:0 auto;padding:12px 8px;font-size:clamp(11px,3vw,15px)}
  .solutions .section-heading h2{font-size:clamp(22px,6vw,34px)}
  .solution-item h3{font-size:clamp(15px,4vw,21px);white-space:nowrap}
  .solution-item h3 br{display:none}
  .solutions .section-consult-cta .cta{width:80%;min-width:0;padding:13px 10px;font-size:clamp(12px,3.2vw,16px)}
  .case-story-badge{left:7px;top:7px;gap:3px;padding:5px 7px;font-size:clamp(9px,2.5vw,12px)}
  .case-story-badge svg{width:12px;height:12px}
  .buyout-reasons{padding:20px 12px}
  .buyout-reasons-heading img{width:32vw}
  .buyout-reasons-heading h3{font-size:clamp(20px,5.5vw,30px)}
  .buyout-reasons-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .buyout-reason-card{min-width:0;min-height:0}
  .buyout-reason-head{min-height:86px;padding:12px 7px}
  .buyout-reason-head strong{font-size:clamp(15px,4vw,21px);line-height:1.3}
  .buyout-reason-head span{font-size:clamp(13px,3.4vw,18px);line-height:1.3}
  .buyout-reason-card p{padding:13px 11px 15px;font-size:clamp(11px,3vw,15px);line-height:1.5}
  .buyout-reasons-note{font-size:clamp(10px,2.8vw,14px)}
  .professional-grid{width:100%;gap:22px}
  .professional-copy h2{font-size:clamp(22px,6vw,34px)}
  .professional-copy>p:not(.section-eyebrow){width:85%;margin-left:auto;margin-right:auto;font-size:clamp(13px,3.5vw,18px);line-height:1.6}
  .professional-checks{max-width:90%;margin-top:18px}
  .professional-checks li{font-size:clamp(12px,3.3vw,17px);line-height:1.5;padding-left:25px}
  .professional-diagram{width:90%;max-width:360px;--ring-size:min(68vw,275px);--center-size:min(36vw,145px);--node-size:min(28vw,110px);--orbit-x:min(24vw,96px);--orbit-y:min(22vw,88px);min-height:min(90vw,360px);margin:0 auto;transform:none;overflow:visible}
  .node-lawyer{top:14%}
  .diagram-center{padding:12px 9px 10px}
  .diagram-center img{width:72%;margin-bottom:4px}
  .diagram-center small{font-size:clamp(9px,2.5vw,12px)}
  .diagram-node strong{font-size:clamp(13px,3.5vw,18px)}
  .diagram-node small{font-size:clamp(9px,2.5vw,12px);line-height:1.3}
  .process-list{grid-template-columns:1fr;gap:12px}
  .process-step{display:grid;grid-template-columns:35% 65%;grid-template-rows:auto auto 1fr;align-items:center;column-gap:0;min-height:0;padding:15px 12px;text-align:left}
  .process-illustration{grid-column:1;grid-row:1/-1;width:100%;height:100%;min-height:105px;max-height:145px;margin:0;padding:4px;border-radius:10px}
  .process-step h3{grid-column:2;margin:0;padding:0 8px;font-size:clamp(15px,4vw,21px);line-height:1.35}
  .process-step p{grid-column:2;margin:6px 0 0;padding:0 8px;font-size:clamp(11px,3vw,15px);line-height:1.5}
  .process-consult-link{grid-column:2;width:max-content;margin:8px 8px 0;padding:6px 9px;font-size:clamp(10px,2.8vw,14px)}
  .process-step:not(:last-child)::after{content:none}
  .contact-model-photo{display:none}
  .contact-heading h2{font-size:clamp(18px,5vw,27px);line-height:1.35}
  .contact-points{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;margin-top:16px}
  .contact-points li{min-height:44px;padding:7px 8px;gap:6px;font-size:clamp(11px,3vw,15px);line-height:1.35}
  .contact-points span{flex:0 0 21px;width:21px;height:21px;font-size:clamp(11px,3.467vw,13px)}
  .contact-form-card{margin-top:22px;padding:20px 14px}
  .after-submit{margin:0 0 15px;padding:0;gap:8px}
  .after-submit>strong{font-size:clamp(13px,3.5vw,18px);line-height:1.4}
  .after-submit-flow{grid-template-columns:1fr;gap:6px}
  .after-submit-flow li{min-width:0;min-height:0;padding:7px 10px;justify-content:flex-start;gap:7px;text-align:left}
  .after-submit-flow li:not(:last-child)::after{content:'⌄';left:50%;right:auto;bottom:-10px;top:auto;transform:translateX(-50%)}
  .after-submit-flow b{flex:0 0 20px;width:20px;height:20px;font-size:clamp(10px,2.7vw,13px)}
  .after-submit-flow span{font-size:clamp(9px,2.6vw,13px);line-height:1.35}
  .after-submit-flow span br{display:none}
  .after-submit-note{margin-top:7px;padding:7px 8px;font-size:clamp(10px,2.8vw,14px);line-height:1.45}
  .quick-form{gap:12px}
  .quick-form-row{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .quick-field label,.issue-fieldset legend{margin-bottom:5px;font-size:clamp(11px,3vw,15px)}
  .quick-field select,.quick-field input,.quick-field textarea{min-height:48px;padding:10px 9px;font-size:clamp(12px,3.2vw,16px)}
  .issue-check-grid{display:flex;flex-wrap:wrap;align-items:stretch;gap:7px}
  .issue-check-grid label{flex:0 1 auto;width:max-content;max-width:100%;min-width:0;min-height:0;padding:4px 8px;gap:5px;font-size:clamp(11px,3vw,15px);line-height:1.25}
  .issue-check-grid input{width:15px;height:15px;min-height:0;padding:0}
  .contact-btn-icon{flex-basis:27px;width:27px;height:27px}
  .contact-phone-label{margin-bottom:1em;font-size:clamp(11px,3vw,15px)}
  .contact-phone strong{font-size:clamp(26px,7vw,39px)}
  .faq-question,.faq-answer p{font-size:clamp(11px,3vw,15px);line-height:1.5em}
  .quick-submit{width:max-content;max-width:100%;min-height:48px;justify-self:center;padding:0 18px;font-size:clamp(15px,4vw,21px)}
}
