/* ============================================================
   CALCES corporate site — single stylesheet, rebuilt 2026-07-13
   Palette: dark slate base + red accent (per sales resume)
   Rules:
   - Every inline SVG carries viewBox + width/height attributes.
     CSS constrains them via container max-width + width:100%.
   - No <style> blocks inside SVGs (attributes only).
   - One mobile breakpoint: 768px. Grids collapse to 1 column.
   ============================================================ */

/* ---------- 1. tokens ---------- */
:root {
  --ink: #1e2430;
  --slate: #2c3e50;
  --slate-deep: #1e2030;
  --accent: #c0392b;
  --accent-dark: #a93226;
  --muted: #5f6b7a;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f4f6f9;
  --logo-brown: #a58d7f;
  --radius: 10px;
  --maxw: 1080px;
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

/* ---------- 2. reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.85; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* SVG discipline: never wider than its container, aspect kept by
   the width/height attributes each SVG carries. */
svg { display: block; max-width: 100%; height: auto; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 3. header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand img { height: 36px; width: auto; }

.global-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.global-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.global-nav a:hover { color: var(--accent); opacity: 1; }
.global-nav a.current { color: var(--accent); }
.global-nav a.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
}
.global-nav a.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---------- 4. buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; opacity: 1; }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.6); color: #fff; }
.btn-outline { border: 1.5px solid var(--slate); color: var(--slate); }

/* ---------- 5. hero (top page) ---------- */
.hero {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-deep) 100%);
  color: #fff;
  padding: 88px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: #d3dae3;
  margin-bottom: 20px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.hero-catch {
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.hero-catch .accent-bar {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 26px;
}
.hero-lead {
  margin-top: 26px;
  font-size: 15px;
  color: #cbd5e0;
  max-width: 560px;
}
.hero-actions { margin-top: 34px; }
.hero-art { max-width: 480px; width: 100%; margin: 0 auto; }
.hero-art svg { width: 100%; }

/* ---------- 6. page hero (sub pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-deep) 100%);
  color: #fff;
  padding: 56px 0 48px;
}
.page-hero h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.page-hero .en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--logo-brown);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ---------- 7. sections ---------- */
.section { padding: 72px 0; }
.section.alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(20px, 3.6vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-title .en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section-title.center { text-align: center; }
.section-lead { color: var(--muted); max-width: 760px; margin-bottom: 28px; }
.section-lead.strong {
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 700;
  color: var(--slate);
}
.section-foot { text-align: center; margin-top: 40px; }

/* ---------- 8. generic card grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
a.card { color: var(--ink); transition: box-shadow 0.2s, transform 0.2s; }
a.card:hover {
  opacity: 1;
  box-shadow: 0 8px 28px rgba(30, 32, 48, 0.1);
  transform: translateY(-2px);
}
.card .num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.card h3 { font-size: 17.5px; margin: 10px 0 12px; line-height: 1.5; }
.card p { font-size: 14px; color: var(--muted); flex: 1; }
.card .more {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* ---------- 9. checklist (top: empathy) ---------- */
.checklist { max-width: 720px; margin: 32px auto 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 18px;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.75;
}
.checklist svg { flex-shrink: 0; margin-top: 3px; }
.checklist-close {
  text-align: center;
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 700;
  color: var(--slate);
  margin-top: 48px;
}
.checklist-close em { font-style: normal; color: var(--accent); }
.audience-note {
  max-width: 640px;
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #9aa3b0;
}

/* ---------- 10. figures / diagrams ---------- */
.figure {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 36px auto 0;
}
.figure svg { width: 100%; margin: 0 auto; }
.figure-positioning { max-width: 680px; }

/* before / after */
.ba-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 36px;
}
.ba-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.ba-panel .ba-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.ba-panel.before .ba-label { background: var(--bg-alt); color: var(--muted); }
.ba-panel.after .ba-label { background: var(--accent); color: #fff; }
.ba-panel svg { width: 100%; max-width: 340px; margin: 0 auto; }
.ba-panel p { font-size: 13.5px; color: var(--muted); margin-top: 12px; }
.ba-arrow { color: var(--accent); }
.ba-arrow svg { width: 40px; height: 40px; margin: 0 auto; }

/* ---------- 11. verb cards (支援できること) — icon left / text right ---------- */
.verb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.verb-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
.verb-card .verb-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--slate);
}
.verb-card .verb-icon svg { width: 48px; height: 48px; }
.verb-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.verb-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- 12. works cards (top) — PC 2x2 / SP stacked ---------- */
.work-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.work-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.work-card .wc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.work-card .wc-tags .tag { font-size: 10px; padding: 2px 8px; }
.work-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
}
.work-card .wc-sub { font-size: 12.5px; color: #9aa3b0; margin-top: auto; }
.wl-status {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 1px 8px;
  white-space: nowrap;
}

/* ---------- 12b. 60-min teaser (top) ---------- */
.flow-teaser {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.flow-teaser .ft-chip {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 22px;
}
.flow-teaser .ft-chip.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.flow-teaser svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }

/* ---------- 13. profile digest (top) ---------- */
.profile-digest {
  display: flex;
  gap: 28px;
  align-items: center;
  max-width: 780px;
  margin: 36px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.profile-mark {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-mark img { width: 60px; }
.profile-digest .pd-body { flex: 1; min-width: 0; }
.pd-name { font-size: 19px; font-weight: 700; }
.pd-title { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.pd-text { font-size: 14px; color: var(--muted); }
.pd-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* ---------- 14. 60-min flow ---------- */
.flow60 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1.15fr) 36px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 40px;
}
.flow60-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.flow60-panel.session { border: 2px solid var(--accent); }
.f60-stage {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 3px 16px;
  margin-bottom: 14px;
}
.flow60-panel.session .f60-stage { background: var(--accent); color: #fff; }
.f60-art { width: 64px; height: 64px; margin: 0 auto 12px; color: var(--slate); }
.f60-art svg { width: 64px; height: 64px; }
.flow60-panel ul, .flow60-panel ol { text-align: left; display: inline-block; }
.flow60-panel ul li {
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.flow60-panel ul li::before { content: "・"; position: absolute; left: 0; }
.flow60-panel.after-panel ul li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.f60-steps { counter-reset: f60; }
.f60-steps li {
  counter-increment: f60;
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.f60-steps li::before {
  content: counter(f60);
  position: absolute;
  left: 0;
  top: 5px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}
.flow60-arrow { align-self: center; color: var(--accent); }
.flow60-arrow svg { width: 32px; height: 32px; margin: 0 auto; }

/* ---------- 15. cta band + reassurance ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 64px 24px;
}
.cta-band h2 { font-size: clamp(18px, 3.5vw, 24px); letter-spacing: 0.08em; }
.cta-band p { color: #cbd5e0; font-size: 14px; margin-top: 14px; }
.reassure {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 30px;
}
.reassure li {
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 18px;
  color: #e2e8f0;
}
.reassure li::before { content: "✓ "; color: #e88a7d; font-weight: 700; }
.reassure.on-light li { border-color: var(--line); color: var(--muted); }
.reassure.on-light li::before { color: var(--accent); }

/* ---------- 16. service blocks (services page) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-of-type { border-bottom: none; }
.service-block .num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.service-block h2 { font-size: 22px; line-height: 1.5; margin-top: 8px; }
.service-block .sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.service-block .body > p { margin-bottom: 20px; }
.detail-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 3px;
  background: var(--accent);
}
.trouble {
  margin-top: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.trouble h4 {
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.trouble li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}
.trouble li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- 17. case showcase (works page) ---------- */
.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  margin-bottom: 28px;
}
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--slate);
  border-radius: 4px;
  padding: 3px 10px;
}
.tag.status {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.case h3 { font-size: 19px; line-height: 1.6; margin-bottom: 20px; }
.case-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.case-col h4 {
  font-size: 13px;
  color: var(--slate);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.case-col li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 5px;
  padding-left: 16px;
  position: relative;
}
.case-col li::before { content: "・"; position: absolute; left: 0; }

/* ---------- 18. profile page ---------- */
.profile-head {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.profile-head .profile-mark { width: 120px; height: 120px; }
.profile-head .profile-mark img { width: 76px; }
.profile-head .name { font-size: 26px; font-weight: 700; }
.profile-head .kana { font-size: 13px; color: var(--muted); margin-left: 10px; }
.profile-head .title { font-size: 14px; color: var(--muted); margin-top: 4px; }
.profile-head .concept {
  margin-top: 10px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}
.prose { max-width: 780px; }
.prose p + p { margin-top: 16px; }

.viewpoint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 780px;
  margin-top: 28px;
}
.viewpoint {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.viewpoint .vp-role { font-size: 16px; font-weight: 700; color: var(--slate); }
.viewpoint .vp-role::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--accent);
  margin: 8px auto 10px;
}
.viewpoint p { font-size: 13px; color: var(--muted); }

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.info-card h3 {
  font-size: 15px;
  color: var(--slate);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 14px;
}
.info-card li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 5px;
  padding-left: 16px;
  position: relative;
}
.info-card li::before { content: "・"; position: absolute; left: 0; }

/* ---------- 19. definition table (company / career) ---------- */
.def-table { width: 100%; }
.def-table th, .def-table td {
  padding: 18px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}
.def-table th {
  width: 160px;
  color: var(--slate);
  font-weight: 700;
  white-space: nowrap;
}
.def-table td ul li { margin-bottom: 4px; }

/* ---------- 20. contact ---------- */
.contact-box {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 32px;
}
.contact-box .lead-strong { font-size: 17px; font-weight: 700; color: var(--slate); }
.contact-box .lead-sub { margin-top: 10px; }
.contact-box .mail {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  color: var(--slate);
  margin: 20px 0 8px;
  word-break: break-all;
}
.contact-box .note { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.mail-example {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  font-size: 14.5px;
  margin-top: 16px;
}
.mail-example .label { color: var(--muted); font-size: 12.5px; margin-bottom: 6px; }
.mail-example .label + p { font-weight: 700; }
.mail-example .label ~ .body-text { font-weight: 400; }
.mail-example .footnote { color: var(--muted); font-size: 13px; margin-top: 14px; }
.subsection-title { font-size: 18px; font-weight: 700; margin: 40px 0 16px; }

/* ---------- 21. footer ---------- */
.site-footer {
  background: var(--slate-deep);
  color: #a8b2bf;
  padding: 48px 0 32px;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-brand img { height: 30px; width: auto; opacity: 0.9; }
.footer-brand p { margin-top: 12px; line-height: 1.8; }
.footer-nav ul { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { color: #a8b2bf; }
.footer-nav a:hover { color: #fff; }
.copyright {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: #6b7686;
  text-align: center;
}

/* ---------- 22. 404 ---------- */
.notfound {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.notfound img { width: 96px; margin: 0 auto 24px; opacity: 0.5; }
.notfound h1 { font-size: 22px; margin-bottom: 12px; }
.notfound p { color: var(--muted); margin-bottom: 32px; }

/* ---------- 23. responsive ---------- */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .hero { padding: 48px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-art { display: none; }

  .card-grid,
  .verb-grid,
  .work-cards,
  .two-col,
  .viewpoint-grid,
  .case-body { grid-template-columns: 1fr; }

  /* 縦圧縮: チェックリスト */
  .checklist { margin-top: 24px; }
  .checklist li { padding: 13px 16px; margin-bottom: 10px; gap: 14px; font-size: 14.5px; }
  .checklist-close { margin-top: 30px; }
  .audience-note { margin-top: 20px; }

  /* 縦圧縮: 図 */
  .figure { padding: 16px 12px; margin-top: 24px; }
  .figure-positioning { max-width: 320px; margin-left: auto; margin-right: auto; }
  .ba-grid { margin-top: 24px; gap: 10px; }
  .ba-panel { padding: 16px 14px; }
  .ba-panel svg { max-width: 210px; }
  .ba-panel p { font-size: 12.5px; margin-top: 8px; }

  /* 縦圧縮: 支援できること・実績カード・プロフィール */
  .verb-grid { gap: 12px; margin-top: 24px; }
  .verb-card { padding: 16px 18px; gap: 14px; }
  .verb-card .verb-icon, .verb-card .verb-icon svg { width: 40px; height: 40px; }
  .work-cards { gap: 10px; margin-top: 22px; }
  .work-card { padding: 16px 18px; gap: 6px; }
  .work-card h3 { font-size: 15px; line-height: 1.55; }
  .work-card .wc-sub { font-size: 12px; }
  .profile-digest { padding: 22px 20px; gap: 14px; margin-top: 24px; }
  .profile-digest .profile-mark { width: 64px; height: 64px; }
  .profile-digest .profile-mark img { width: 40px; }

  /* 縦圧縮: 60分テザー・CTA帯 */
  .flow-teaser { gap: 8px; margin-top: 20px; }
  .flow-teaser .ft-chip { font-size: 12px; padding: 6px 14px; }
  .flow-teaser svg { width: 16px; height: 16px; }
  .cta-band { padding: 44px 20px; }
  .reassure { margin: 16px 0 22px; gap: 8px; }
  .reassure li { font-size: 12px; padding: 5px 14px; }
  .section-foot { margin-top: 26px; }
  .section-lead { margin-bottom: 20px; }
  .site-footer { padding: 32px 0 22px; }
  .copyright { margin-top: 24px; padding-top: 14px; }

  .service-block { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }

  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow svg { transform: rotate(90deg); }

  .flow60 { grid-template-columns: 1fr; }
  .flow60-arrow svg { transform: rotate(90deg); }

  .profile-digest { flex-direction: column; text-align: center; }
  .profile-digest .pd-body { min-width: 100%; }

  .def-table th { width: 110px; }

  /* mobile nav */
  .nav-toggle { display: block; }
  .global-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(30, 32, 48, 0.08);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .global-nav.open { transform: translateY(0); }
  .global-nav ul { flex-direction: column; gap: 0; padding: 8px 0 16px; }
  .global-nav li { width: 100%; text-align: center; }
  .global-nav a { display: block; padding: 13px 0; font-size: 15px; }
  .global-nav a.nav-cta { display: inline-block; margin-top: 10px; padding: 11px 40px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
