/* ==========================================================
   STABLO Corporate Site — design system
   Palette: Stablo navy × orange / warm off-white bands
   Type: Zen Maru Gothic (headings) + Noto Sans JP (body) + Figtree (EN labels)
   ========================================================== */

:root {
  --orange-text: #c41818;
  --navy: #20232a;
  --navy-dark: #15171c;
  --navy-light: #f3f1f1;
  --orange: #e41d1d;
  --orange-dark: #a01414;
  --orange-light: #fdecec;
  --yellow: #ff5757;
  --teal: #6e7378;
  --ink: #1a1a1a;
  --gray: #6e6e6e;
  --bg-warm: #f5f0f0;
  --bg-cream: #faf6f6;
  --line: #ece7e7;
  --white: #ffffff;
  --radius-card: 24px;
  --radius-pill: 100px;
  --shadow-card: 0 8px 30px rgba(26, 26, 30, 0.08);
  --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-en: "Figtree", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  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: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 30px; width: auto; flex: none; }
.logo .logo-mark {
  font-family: var(--font-en); font-weight: 800; font-size: 26px;
  color: var(--navy); letter-spacing: 0.04em;
}
.logo .logo-mark span { color: var(--orange); }
.logo .logo-sub { font-size: 11px; color: var(--gray); font-weight: 500; }

.global-nav ul { display: flex; align-items: center; gap: 28px; }
.global-nav a { font-size: 14px; font-weight: 700; color: var(--navy); transition: color 0.2s; }
.global-nav a:hover { color: var(--orange-text); }
.global-nav a[aria-current="page"] { color: var(--orange-text); }
.nav-cta {
  background: var(--orange-text); color: var(--white) !important;
  padding: 10px 24px; border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(196, 24, 24, 0.35);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #a01414; transform: translateY(-1px); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 3px; margin: 5px 0; transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- section label (EN + JP, KEIPE-style rhythm) ---------- */
.sec-label { text-align: center; margin: 0 0 48px; }
.page-hero h1 { margin: 0; line-height: 1; }
.sec-label .en {
  font-family: var(--font-en); font-weight: 800;
  font-size: clamp(34px, 5vw, 52px); letter-spacing: 0.03em;
  color: var(--navy); line-height: 1.1; display: block;
}
.sec-label .en em { color: var(--orange); font-style: normal; }
.sec-label .jp {
  display: inline-block; margin-top: 10px; font-size: 15px; font-weight: 700;
  color: var(--orange-text); letter-spacing: 0.1em;
}
.sec-label.left { text-align: left; }
.sec-lead { text-align: center; max-width: 720px; margin: -24px auto 48px; color: var(--gray); font-size: 15px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; font-family: var(--font-head);
  padding: 16px 40px; border-radius: var(--radius-pill);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--orange-text); color: var(--white);
  box-shadow: 0 6px 18px rgba(196, 24, 24, 0.35);
}
.btn-primary:hover { background: #a01414; transform: translateY(-2px); }
.btn-outline {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-ghost { color: var(--navy); font-weight: 700; }
.btn-ghost::after { content: "→"; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }
.more-link { text-align: center; margin-top: 40px; }

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section.warm { background: var(--bg-warm); }
.section.cream { background: var(--bg-cream); }
.section.navy { background: var(--navy); color: var(--white); }
.section.navy .sec-label .en { color: var(--white); }
.section.navy .sec-label .jp { color: var(--yellow); }

/* ---------- hero (top) ---------- */
.hero {
  background: linear-gradient(160deg, var(--bg-cream) 0%, var(--white) 55%, var(--navy-light) 100%);
  padding: 80px 0 90px; overflow: hidden; position: relative;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-block; background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 700; padding: 6px 18px;
  border-radius: var(--radius-pill); margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(32px, 4.6vw, 52px); line-height: 1.45;
  color: var(--navy); margin-bottom: 18px;
}
.hero h1 .accent { color: var(--orange); }
.hero .hero-sub { font-size: 17px; color: var(--ink); margin-bottom: 32px; font-weight: 500; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-card); }
.hero-stat {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--white); border-radius: 20px; box-shadow: var(--shadow-card);
  padding: 14px 24px; display: flex; align-items: baseline; gap: 8px;
  border: 1px solid var(--line);
}
.hero-stat .num { font-family: var(--font-en); font-weight: 800; font-size: 34px; color: var(--orange); }
.hero-stat .label { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.5; }

/* ---------- page hero (subpages) ---------- */
.page-hero { background: var(--bg-cream); padding: 80px 0 64px; text-align: center; }
.page-hero .en {
  font-family: var(--font-en); font-weight: 800;
  font-size: clamp(40px, 6vw, 64px); color: var(--navy); line-height: 1.05; display: block;
}
.page-hero .jp { display: inline-block; margin-top: 12px; font-size: 16px; font-weight: 700; color: var(--orange-text); letter-spacing: 0.12em; }
.page-hero .desc { max-width: 680px; margin: 20px auto 0; color: var(--gray); font-size: 15px; }

/* ---------- news ---------- */
.news-list { max-width: 820px; margin: 0 auto; }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list li:first-child { border-top: 1px solid var(--line); }
.news-item { display: flex; align-items: center; gap: 20px; padding: 22px 8px; flex-wrap: wrap; }
.news-item time { font-family: var(--font-en); font-weight: 600; color: var(--gray); font-size: 14px; min-width: 96px; }
.news-cat {
  font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: var(--radius-pill);
  background: var(--navy-light); color: var(--navy); min-width: 72px; text-align: center;
}
.news-cat.event { background: var(--orange-light); color: #c41818; }
.news-cat.press { background: #efeded; color: #5a5a5a; }
.news-item .title { font-weight: 500; font-size: 15px; flex: 1; min-width: 240px; }

/* ---------- service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.svc-card {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--line);
}
a.svc-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(26, 26, 30, 0.14); }
.svc-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-warm); }
.svc-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.svc-card .body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { font-family: var(--font-head); font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.svc-card .en-sub { font-family: var(--font-en); font-size: 12px; font-weight: 700; color: var(--orange-text); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--gray); flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  font-size: 12px; font-weight: 700; padding: 3px 12px;
  border-radius: var(--radius-pill); background: var(--bg-warm); color: var(--navy);
}
.tag.t-orange { background: var(--orange-light); color: #c41818; }
.tag.t-yellow { background: #efeded; color: #5a5a5a; }
.tag.t-teal { background: #eef0f0; color: #566066; }

/* ---------- numbers band ---------- */
.numbers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.num-card {
  background: var(--white); border-radius: var(--radius-card);
  padding: 36px 20px; text-align: center; box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.num-card .num {
  font-family: var(--font-en); font-weight: 800; font-size: 52px;
  color: var(--orange); line-height: 1;
}
.num-card .unit { font-size: 20px; font-weight: 800; color: var(--orange); }
.num-card .caption { margin-top: 10px; font-size: 14px; font-weight: 700; color: var(--navy); }
.num-card .note { font-size: 11px; color: var(--gray); margin-top: 4px; }

/* ---------- pain cards ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.pain-card {
  background: var(--white); border-radius: 18px; padding: 26px 28px;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  display: flex; gap: 16px; align-items: flex-start;
}
.pain-card .icon { font-size: 26px; line-height: 1.4; }
.pain-card .picon { width: 30px; height: 30px; flex: none; margin-top: 2px; }
.pain-card .picon svg { width: 100%; height: 100%; display: block; }
.pain-card h3 { font-size: 16px; color: var(--navy); font-family: var(--font-head); margin-bottom: 4px; }
.pain-card p { font-size: 13.5px; color: var(--gray); }

/* ---------- feature (strength) cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius-card); padding: 32px 30px; box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.feature-card .f-num { font-family: var(--font-en); font-weight: 800; font-size: 15px; color: var(--orange-text); letter-spacing: 0.1em; }
.feature-card h3 { font-family: var(--font-head); font-size: 18px; color: var(--navy); margin: 8px 0 10px; }
.feature-card p { font-size: 14px; color: var(--gray); }

/* ---------- why rows (alternating) ---------- */
.why-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 48px 0; }
.why-row:nth-child(even) .why-img { order: 2; }
.why-row .why-img img { border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.why-row .w-num { font-family: var(--font-en); font-weight: 800; font-size: 44px; color: var(--orange); line-height: 1; }
.why-row h3 { font-family: var(--font-head); font-size: 24px; color: var(--navy); margin: 12px 0 6px; line-height: 1.6; }
.why-row .w-sub { font-size: 14px; font-weight: 700; color: var(--orange-text); margin-bottom: 14px; }
.why-row p { font-size: 14.5px; color: var(--ink); }

/* ---------- flow steps ---------- */
.flow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; counter-reset: flow; }
.flow-step {
  background: var(--white); border-radius: var(--radius-card); padding: 30px 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow-card); position: relative;
}
.flow-step .s-num { font-family: var(--font-en); font-weight: 800; font-size: 30px; color: var(--orange); }
.flow-step h3 { font-family: var(--font-head); font-size: 18px; color: var(--navy); margin: 6px 0 8px; }
.flow-step p { font-size: 13.5px; color: var(--gray); }

/* ---------- phases (ジムレス 3フェーズ) ---------- */
.phase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.phase-card { background: var(--white); border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.phase-card .p-head { background: var(--navy); color: var(--white); padding: 18px 24px; }
.phase-card .p-head .p-tag { font-family: var(--font-en); font-size: 12px; font-weight: 700; color: var(--yellow); letter-spacing: 0.1em; }
.phase-card .p-head h3 { font-family: var(--font-head); font-size: 22px; }
.phase-card .p-head .p-period { font-size: 12px; opacity: 0.8; }
.phase-card .p-body { padding: 22px 24px 26px; }
.phase-card .p-body ul li { font-size: 14px; padding-left: 1.3em; position: relative; margin-bottom: 6px; }
.phase-card .p-body ul li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.phase-card .p-deliv { margin-top: 14px; background: var(--bg-cream); border-radius: 12px; padding: 12px 16px; font-size: 12.5px; color: var(--gray); }
.phase-card .p-deliv strong { color: var(--navy); display: block; font-size: 12px; margin-bottom: 2px; }

/* ---------- comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-card); box-shadow: var(--shadow-card); border: 1px solid var(--line); background: var(--white); }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 14px; }
.compare th, .compare td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--bg-warm); font-family: var(--font-head); color: var(--navy); font-size: 15px; }
.compare thead th.hl { background: var(--orange); color: var(--white); font-size: 16px; }
.compare tbody th { background: var(--bg-cream); font-weight: 700; color: var(--navy); font-size: 13.5px; white-space: nowrap; }
.compare td.hl { background: var(--orange-light); font-weight: 700; color: var(--orange-dark); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }

/* ---------- domain grid (6領域) ---------- */
.domain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.domain-card { background: var(--white); border-radius: 18px; padding: 24px 26px; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.domain-card .d-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.domain-card h3 { font-family: var(--font-head); font-size: 17px; color: var(--navy); }
.domain-card .d-count { font-family: var(--font-en); font-size: 12px; font-weight: 700; color: var(--white); background: var(--orange-text); border-radius: var(--radius-pill); padding: 2px 12px; }
.domain-card ul { display: flex; flex-wrap: wrap; gap: 6px; }
.domain-card ul li { font-size: 12px; background: var(--bg-warm); border-radius: var(--radius-pill); padding: 3px 12px; color: var(--ink); }

/* ---------- before / after ---------- */
.ba-grid { display: grid; gap: 20px; }
.ba-card { background: var(--white); border-radius: var(--radius-card); padding: 26px 28px; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.ba-card h3 { font-family: var(--font-head); font-size: 17px; color: var(--navy); margin-bottom: 14px; }
.ba-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; }
.ba-box { border-radius: 14px; padding: 16px 18px; font-size: 13.5px; }
.ba-box .ba-tag { font-family: var(--font-en); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; display: block; margin-bottom: 4px; }
.ba-before { background: var(--bg-warm); color: var(--gray); }
.ba-before .ba-tag { color: var(--gray); }
.ba-after { background: var(--orange-light); color: var(--ink); font-weight: 500; }
.ba-after .ba-tag { color: #c41818; }
.ba-arrow { font-size: 22px; color: var(--orange); font-weight: 700; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }
.price-card { background: var(--white); border-radius: var(--radius-card); border: 1px solid var(--line); box-shadow: var(--shadow-card); padding: 36px 30px; position: relative; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--orange); }
.price-card .p-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange-text); color: var(--white); font-size: 12px; font-weight: 700;
  padding: 4px 18px; border-radius: var(--radius-pill); white-space: nowrap;
}
.price-card h3 { font-family: var(--font-head); font-size: 19px; color: var(--navy); text-align: center; }
.price-card .p-for { font-size: 12.5px; color: var(--gray); text-align: center; margin: 4px 0 16px; }
.price-card .p-price { text-align: center; margin-bottom: 6px; }
.price-card .p-price .num { font-family: var(--font-en); font-weight: 800; font-size: 44px; color: var(--orange); }
.price-card .p-price .unit { font-size: 14px; font-weight: 700; color: var(--ink); }
.price-card .p-term { text-align: center; font-size: 12px; color: var(--gray); margin-bottom: 18px; }
.price-card ul { border-top: 1px dashed var(--line); padding-top: 18px; flex: 1; }
.price-card ul li { font-size: 13.5px; padding-left: 1.4em; position: relative; margin-bottom: 8px; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.price-note { text-align: center; font-size: 12.5px; color: var(--gray); margin-top: 24px; }
.subsidy-band {
  margin-top: 32px; background: var(--navy); color: var(--white);
  border-radius: var(--radius-card); padding: 28px 32px; text-align: center;
}
.subsidy-band strong { color: var(--yellow); font-size: 18px; }
.subsidy-band p { font-size: 13.5px; opacity: 0.9; margin-top: 6px; }

/* ---------- promise list (5つの約束) ---------- */
.promise-list { max-width: 860px; margin: 0 auto; display: grid; gap: 16px; }
.promise-item { background: var(--white); border-radius: 18px; padding: 22px 28px; border: 1px solid var(--line); box-shadow: var(--shadow-card); display: flex; gap: 20px; align-items: flex-start; }
.promise-item .p-no { font-family: var(--font-en); font-weight: 800; font-size: 26px; color: var(--orange); min-width: 40px; line-height: 1.4; }
.promise-item h3 { font-family: var(--font-head); font-size: 17px; color: var(--navy); margin-bottom: 2px; }
.promise-item p { font-size: 13.5px; color: var(--gray); }

/* ---------- MVV ---------- */
.mvv-block { max-width: 880px; margin: 0 auto; display: grid; gap: 28px; }
.mvv-card { background: var(--white); border-radius: var(--radius-card); padding: 40px 44px; border: 1px solid var(--line); box-shadow: var(--shadow-card); text-align: center; }
.mvv-card .m-tag { font-family: var(--font-en); font-weight: 800; font-size: 14px; letter-spacing: 0.18em; color: var(--orange); display: block; margin-bottom: 4px; }
.mvv-card .m-sub { font-size: 12px; color: var(--gray); display: block; margin-bottom: 16px; }
.mvv-card .m-text { font-family: var(--font-head); font-weight: 800; font-size: clamp(20px, 3vw, 28px); color: var(--navy); line-height: 1.7; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.value-card { background: var(--white); border-radius: 18px; padding: 28px 26px; border: 1px solid var(--line); box-shadow: var(--shadow-card); text-align: center; }
.value-card h3 { font-family: var(--font-head); font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--gray); }

/* ---------- company table / locations ---------- */
.company-table { max-width: 820px; margin: 0 auto; background: var(--white); border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.company-table dl { display: grid; grid-template-columns: 180px 1fr; }
.company-table dt { background: var(--bg-cream); padding: 18px 26px; font-weight: 700; color: var(--navy); font-size: 14px; border-bottom: 1px solid var(--line); }
.company-table dd { padding: 18px 26px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.company-table dt:last-of-type, .company-table dd:last-of-type { border-bottom: none; }

.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.location-card { background: var(--white); border-radius: var(--radius-card); padding: 30px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.location-card .l-tag { font-size: 11px; font-weight: 700; color: var(--white); background: var(--navy); border-radius: var(--radius-pill); padding: 3px 14px; display: inline-block; margin-bottom: 12px; }
.location-card h3 { font-family: var(--font-head); font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.location-card p { font-size: 13.5px; color: var(--gray); }

/* ---------- partner band ---------- */
.partner-band { text-align: center; }
.partner-chips { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 8px; }
.partner-chip {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 12px 30px; font-weight: 700; color: var(--navy); font-size: 14.5px;
  box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 8px;
}
.partner-chip .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.partner-chip:nth-child(2) .dot { background: var(--yellow); }
.partner-chip:nth-child(3) .dot { background: var(--teal); }

/* ---------- case ---------- */
.case-banner {
  border-radius: var(--radius-card); overflow: hidden; background: var(--navy);
  color: var(--white); display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.case-banner .cb-body { padding: 56px 52px; }
.case-banner .cb-tag { font-family: var(--font-en); font-weight: 800; font-size: 13px; color: var(--yellow); letter-spacing: 0.14em; }
.case-banner h3 { font-family: var(--font-head); font-size: clamp(20px, 2.6vw, 27px); line-height: 1.7; margin: 12px 0 10px; }
.case-banner p { font-size: 13.5px; opacity: 0.85; margin-bottom: 28px; }
.case-banner .cb-img { height: 100%; }
.case-banner .cb-img img { width: 100%; height: 100%; object-fit: cover; }

.interview { max-width: 860px; margin: 0 auto; }
.interview .qa { margin-bottom: 36px; }
.interview .q { font-family: var(--font-head); font-weight: 700; color: var(--orange-text); font-size: 16.5px; margin-bottom: 10px; }
.interview .a { background: var(--white); border-radius: 18px; padding: 24px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-card); font-size: 14.5px; }
.interview .speaker { text-align: right; font-size: 13px; color: var(--gray); }

.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.case-card { background: var(--white); border-radius: var(--radius-card); padding: 32px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.case-card .c-tag { font-family: var(--font-en); font-weight: 800; font-size: 12px; color: var(--orange-text); letter-spacing: 0.12em; }
.case-card h3 { font-family: var(--font-head); font-size: 18px; color: var(--navy); margin: 8px 0 14px; line-height: 1.6; }
.case-card .c-block { margin-bottom: 12px; }
.case-card .c-block .c-label { font-size: 11px; font-weight: 700; color: var(--white); border-radius: var(--radius-pill); padding: 2px 12px; display: inline-block; margin-bottom: 6px; }
.case-card .c-block:nth-of-type(1) .c-label { background: var(--gray); }
.case-card .c-block:nth-of-type(2) .c-label { background: var(--teal); }
.case-card .c-block:nth-of-type(3) .c-label { background: var(--orange-text); }
.case-card .c-block p { font-size: 13px; color: var(--ink); }
.case-card .c-result { background: var(--orange-light); border-radius: 14px; padding: 14px 18px; font-size: 13.5px; font-weight: 700; color: #c41818; margin-top: auto; }

/* ---------- award ---------- */
.award-list { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.award-chip { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 12px 28px; font-size: 14px; font-weight: 700; color: var(--navy); box-shadow: var(--shadow-card); }
.award-chip::before { content: ""; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); text-align: center; padding: 88px 24px; }
.cta-band h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(24px, 3.6vw, 36px); line-height: 1.7; margin-bottom: 14px; }
.cta-band h2 .accent { color: var(--yellow); }
.cta-band p { font-size: 15px; opacity: 0.9; max-width: 640px; margin: 0 auto 36px; }
.cta-gifts { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-gift { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 16px; padding: 16px 26px; font-size: 14px; font-weight: 700; }
.cta-gift .g-tag { display: block; font-size: 11px; color: var(--yellow); font-family: var(--font-en); letter-spacing: 0.1em; }

/* ---------- contact ---------- */
.contact-form-wrap { max-width: 760px; margin: 0 auto; background: var(--white); border-radius: var(--radius-card); border: 1px solid var(--line); box-shadow: var(--shadow-card); overflow: hidden; }
.contact-form-wrap iframe { width: 100%; border: none; display: block; }
.contact-alt { text-align: center; margin-top: 32px; font-size: 14px; color: var(--gray); }
.contact-alt a { color: var(--orange-text); font-weight: 700; text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.85); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-en); font-weight: 800; font-size: 24px; color: var(--white); }
.footer-logo-img { height: 30px; width: auto; }
.footer-logo span { color: var(--orange); }
.site-footer .f-desc { font-size: 13px; margin-top: 12px; opacity: 0.75; }
.site-footer .f-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.site-footer .f-badge { font-size: 11px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: var(--radius-pill); padding: 3px 12px; }
.site-footer .f-head { font-size: 13px; color: var(--yellow); font-weight: 700; margin-bottom: 14px; letter-spacing: 0.08em; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { font-size: 13.5px; opacity: 0.85; transition: opacity 0.2s; }
.site-footer ul a:hover { opacity: 1; color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; opacity: 0.7; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-card); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 26px;
  font-weight: 700; color: var(--navy); font-size: 15px;
  display: flex; align-items: flex-start; gap: 12px; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q."; color: var(--orange); font-family: var(--font-en); font-weight: 800; }
.faq-item summary::after {
  content: "+"; margin-left: auto; color: var(--orange);
  font-family: var(--font-en); font-weight: 800; font-size: 20px; line-height: 1.4;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 26px 22px 54px; font-size: 14px; color: var(--gray); }

/* ---------- reveal animation ---------- */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .global-nav {
    position: fixed; inset: 76px 0 auto 0; background: var(--white);
    border-bottom: 1px solid var(--line); padding: 24px;
    transform: translateY(-130%); transition: transform 0.3s ease; z-index: 99;
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .global-nav.open { transform: none; }
  .global-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .global-nav li { border-bottom: 1px solid var(--line); }
  .global-nav li:last-child { border-bottom: none; padding-top: 16px; }
  .global-nav a { display: block; padding: 14px 4px; font-size: 15px; }
  .nav-cta { text-align: center; }
  .burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .why-row { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .why-row:nth-child(even) .why-img { order: 0; }
  .case-banner { grid-template-columns: 1fr; }
  .case-banner .cb-img { order: -1; max-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .company-table dl { grid-template-columns: 1fr; }
  .company-table dt { border-bottom: none; padding-bottom: 4px; }
  .company-table dd { padding-top: 4px; }
  .ba-row { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); justify-self: center; }
  .section { padding: 64px 0; }
}


/* ---------- top announcement ribbon ---------- */
.topbar {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy) 55%, #2c2f38 100%);
  color: #fff; font-size: 13px; font-weight: 700; padding: 10px 18px; text-align: center;
  transition: filter 0.2s;
}
.topbar:hover { filter: brightness(1.12); }
.topbar .tb-badge {
  background: var(--yellow); color: var(--navy-dark); font-size: 11px; font-weight: 800;
  padding: 3px 12px; border-radius: var(--radius-pill); white-space: nowrap;
}
.topbar .tb-text { opacity: 0.95; }
.topbar .tb-arrow { color: var(--yellow); font-weight: 800; white-space: nowrap; }

/* ---------- subsidy hero band (prominent) ---------- */
.subsidy-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 60px 0; position: relative; overflow: hidden; }
.subsidy-hero::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255, 87, 87,0.18) 0%, transparent 70%); }
.subsidy-hero .container { display: grid; grid-template-columns: 1.45fr 1fr; gap: 44px; align-items: center; position: relative; }
.subsidy-hero .sh-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--navy-dark); font-weight: 800; font-size: 13px; padding: 7px 18px; border-radius: var(--radius-pill); }
.subsidy-hero h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(22px, 3vw, 31px); line-height: 1.6; margin: 18px 0 14px; }
.subsidy-hero h2 .hl { color: var(--yellow); }
.subsidy-hero .sh-lead { font-size: 14.5px; opacity: 0.92; max-width: 600px; }
.subsidy-hero .sh-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.subsidy-hero .sh-point { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-pill); padding: 6px 16px; font-size: 12.5px; font-weight: 700; }
.subsidy-hero .sh-point::before { content: "✓ "; color: var(--yellow); }
.sh-card { background: #fff; color: var(--ink); border-radius: 22px; padding: 30px 28px; text-align: center; box-shadow: 0 18px 50px rgba(0,0,0,0.28); }
.sh-card .sh-card-ttl { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--navy); line-height: 1.5; margin-bottom: 6px; }
.sh-card .sh-card-sub { font-size: 12px; color: var(--gray); margin-bottom: 18px; }
.sh-card .btn { width: 100%; margin-bottom: 12px; }
.sh-card .btn:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .subsidy-hero .container { grid-template-columns: 1fr; gap: 28px; }
  .topbar { font-size: 11.5px; gap: 8px; padding: 9px 12px; }
  .topbar .tb-text { width: 100%; order: 3; }
  .logo .logo-sub { display: none; }
}


/* ---------- location (single HQ, centered) ---------- */
.location-single { max-width: 560px; margin: 0 auto; text-align: center; background: var(--white); border-radius: var(--radius-card); padding: 44px 40px; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.location-single h3 { font-family: var(--font-head); font-size: 22px; color: var(--navy); margin: 12px 0 6px; }
.location-single p { font-size: 14.5px; color: var(--gray); margin-bottom: 24px; }
