/* ============================================================
   Faro 公式HP - faro-japan.com
   構造: Ferret One型 (Phase A参照、本文/画像はオリジナル)
   雰囲気: digimatch.jp系の親しみやすさ + 信頼感
   ブランド: 灯台モチーフ「ファロ」キャラ + 派生イメージ
   ============================================================ */

/* === Reset & Foundation === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1f2d24;
  background: #ffffff;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: #1a5d3d; text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid #c8442a; outline-offset: 3px; border-radius: 4px; }

/* === Tokens === */
:root {
  --fg: #1f2d24;
  --fg-muted: #475569;
  --fg-soft: #647386;
  --brand: #1a5d3d;
  --brand-dark: #0f4a2e;
  --brand-soft: #e8f0ec;
  --accent: #c8442a;
  --accent-dark: #a8351f;
  --sea: #0891b2;
  --sea-soft: #e0f2f7;
  --sand: #fbd38d;
  --bg: #ffffff;
  --bg-soft: #fafbfc;
  --bg-section: #f5f7f6;
  --border: #d8e0db;
  --shadow-sm: 0 1px 2px rgba(15, 74, 46, 0.04), 0 1px 4px rgba(15, 74, 46, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 74, 46, 0.07), 0 1px 3px rgba(15, 74, 46, 0.05);
  --shadow-lg: 0 12px 32px rgba(15, 74, 46, 0.1), 0 4px 8px rgba(15, 74, 46, 0.05);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --container: 1180px;
}

/* === Skip Link === */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--brand); color: #ffffff; padding: 10px 16px;
  border-radius: var(--radius-sm); font-weight: 700; z-index: 100;
}
.skip-link:focus { top: 16px; }

/* === Container === */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* === Visually Hidden === */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   Header / Navigation
   ============================================================ */
.global-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.global-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 24px; max-width: var(--container); margin: 0 auto;
}
.brand-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 22px; color: var(--brand);
  font-family: 'Georgia', 'Times New Roman', serif; letter-spacing: 0.02em;
  text-decoration: none;
}
.brand-link__mark { width: 32px; height: 32px; }
.brand-link__tag {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 600;
  font-size: 10px; color: var(--fg-soft); margin-left: 4px;
  border: 1px solid var(--border); padding: 2px 6px; border-radius: 3px;
  letter-spacing: 0.05em;
}

.global-nav__list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.global-nav__item { position: relative; }
.global-nav__link, .global-nav__button {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 600; color: var(--fg);
  padding: 10px 14px; border-radius: var(--radius-sm);
  background: transparent; border: 0; cursor: pointer; font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}
.global-nav__link:hover, .global-nav__button:hover { background: var(--brand-soft); color: var(--brand); text-decoration: none; }
.global-nav__link[aria-current="page"] { color: var(--brand); }
.global-nav__caret { width: 12px; height: 12px; fill: currentColor; transition: transform 0.2s; }
.global-nav__button[aria-expanded="true"] .global-nav__caret { transform: rotate(180deg); }
.global-nav__submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px;
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 8px; box-shadow: var(--shadow-lg);
  display: none; list-style: none; margin: 0;
}
.global-nav__button[aria-expanded="true"] + .global-nav__submenu { display: block; }
.global-nav__submenu a {
  display: block; padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 14px; color: var(--fg); text-decoration: none;
}
.global-nav__submenu a:hover { background: var(--brand-soft); color: var(--brand); }

.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta__link {
  font-size: 13px; font-weight: 700; color: var(--brand);
  border: 2px solid var(--brand); padding: 8px 14px; border-radius: var(--radius-pill);
  text-decoration: none; white-space: nowrap;
}
.header-cta__link:hover { background: var(--brand); color: #ffffff; text-decoration: none; }
.header-cta__primary {
  background: var(--brand); color: #ffffff; border-color: var(--brand);
}
.header-cta__primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #ffffff; }

.menu-toggle {
  display: none; border: 0; background: transparent; padding: 8px;
  cursor: pointer;
}
@media (max-width: 980px) {
  .global-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ============================================================
   Hero (FV研究反映: SmartHR×freee×kintone×Sansan合成)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 0 112px;
  background:
    radial-gradient(ellipse 60% 70% at 85% 15%, rgba(8, 145, 178, 0.05), transparent 60%),
    radial-gradient(ellipse 70% 60% at 15% 90%, rgba(251, 211, 141, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
}
.hero__watermark {
  position: absolute; bottom: -120px; right: -160px;
  width: 680px; max-width: 70vw; opacity: 0.45;
  pointer-events: none; z-index: 0;
  animation: gentle-pulse 8s ease-in-out infinite;
}
@keyframes gentle-pulse {
  0%, 100% { opacity: 0.42; }
  50% { opacity: 0.58; }
}
/* 派生モチーフを不規則配置 (左上に船、右上に星、左下に波、コンパス) */
.hero__deco {
  position: absolute; opacity: 0.6; pointer-events: none; z-index: 0;
  color: var(--brand);
}
.hero__deco--ship { top: 80px; right: 14%; width: 36px; transform: rotate(-8deg); animation: float 6s ease-in-out infinite; }
.hero__deco--star1 { top: 60px; right: 8%; width: 22px; animation: twinkle 3s ease-in-out infinite; }
.hero__deco--star2 { top: 130px; right: 22%; width: 16px; animation: twinkle 3s ease-in-out 1s infinite; }
.hero__deco--compass { bottom: 80px; left: 6%; width: 44px; opacity: 0.5; }
.hero__deco--wave1 { bottom: 40px; left: 10%; width: 80px; opacity: 0.4; }
.hero__deco--wave2 { bottom: 24px; left: 16%; width: 60px; opacity: 0.3; }
.hero__deco--dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); opacity: 0.4; pointer-events: none; z-index: 0;
}
.hero__deco--dot-1 { top: 200px; left: 4%; }
.hero__deco--dot-2 { top: 320px; left: 11%; width: 5px; height: 5px; background: var(--sea); opacity: 0.5; }
.hero__deco--dot-3 { bottom: 180px; right: 18%; width: 6px; height: 6px; background: var(--brand); opacity: 0.35; }
@keyframes float {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-6px); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.15); }
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px; align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__watermark { width: 480px; right: -100px; bottom: -80px; opacity: 0.32; }
  .hero__deco--ship, .hero__deco--star1, .hero__deco--star2, .hero__deco--compass,
  .hero__deco--wave1, .hero__deco--wave2, .hero__deco--dot { display: none; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--brand);
  background: var(--brand-soft); padding: 6px 14px; border-radius: var(--radius-pill);
  margin: 0 0 20px;
}
.hero__eyebrow svg { width: 14px; height: 14px; }
.hero__title {
  font-size: clamp(28px, 4.5vw, 48px); line-height: 1.35;
  font-weight: 800; color: var(--fg); margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.hero__title-accent { color: var(--brand); position: relative; }
.hero__title-accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 10px; background: var(--sand); opacity: 0.5; z-index: -1;
}
.hero__lead {
  font-size: 17px; line-height: 1.85; color: var(--fg-muted);
  margin: 0 0 32px; max-width: 600px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary {
  background: var(--brand); color: #ffffff; border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--brand-dark); box-shadow: var(--shadow-lg); color: #ffffff; }
.btn--secondary {
  background: #ffffff; color: var(--brand); border-color: var(--brand);
}
.btn--secondary:hover { background: var(--brand-soft); color: var(--brand); }
.btn--ghost {
  background: transparent; color: var(--brand); border-color: transparent;
}
.btn--ghost:hover { background: var(--brand-soft); }
.btn__arrow { width: 18px; height: 18px; fill: currentColor; }

.hero__trust {
  display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap;
  font-size: 13px; color: var(--fg-soft);
}
.hero__trust-item { display: flex; align-items: center; gap: 6px; }
.hero__trust-item svg { width: 16px; height: 16px; color: var(--brand); }

.hero__character {
  position: relative;
  display: flex; justify-content: center; align-items: flex-end;
  min-height: 380px;
}
.hero__character-svg {
  width: 100%; max-width: 340px; height: auto;
  filter: drop-shadow(0 12px 28px rgba(15, 74, 46, 0.16));
  animation: gentle-float 5s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
/* ヒーロー右下のミニ証言カード (人らしさ) */
.hero__testimonial {
  position: absolute; bottom: -16px; right: 0;
  background: #ffffff; border-radius: 14px;
  padding: 14px 18px; max-width: 260px;
  box-shadow: 0 8px 20px rgba(15, 74, 46, 0.12);
  border: 1px solid var(--border);
  font-size: 12.5px; color: var(--fg-muted); line-height: 1.65;
}
.hero__testimonial::before {
  content: "“"; position: absolute; top: -8px; left: 12px;
  font-family: 'Georgia', serif; font-size: 36px; color: var(--brand);
  background: #ffffff; padding: 0 6px; line-height: 1; font-weight: 700;
}
.hero__testimonial-name {
  margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--border);
  font-size: 11px; color: var(--fg-soft); font-weight: 600;
}
@media (max-width: 980px) {
  .hero__testimonial { position: static; margin-top: 20px; max-width: 100%; }
}

/* スクロール促進 */
.hero__scroll-cue {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 11px; color: var(--fg-soft); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.7;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}
.hero__scroll-cue svg { width: 14px; height: 18px; color: var(--brand); }
@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}
@media (max-width: 880px) { .hero__scroll-cue { display: none; } }
.hero__bubble {
  position: absolute; top: 16px; left: -8px;
  background: #ffffff; border: 2px solid var(--brand);
  border-radius: 18px; padding: 12px 18px;
  font-size: 14px; font-weight: 700; color: var(--brand);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.hero__bubble::after {
  content: ""; position: absolute; left: 24px; bottom: -12px;
  border: 8px solid transparent; border-top-color: var(--brand);
  width: 0; height: 0;
}
.hero__bubble::before {
  content: ""; position: absolute; left: 26px; bottom: -8px;
  border: 6px solid transparent; border-top-color: #ffffff;
  width: 0; height: 0; z-index: 1;
}

/* ============================================================
   Section base
   ============================================================ */
.section { padding: 88px 0; position: relative; overflow: hidden; }
.section--soft { background: var(--bg-section); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 0 0 12px;
}
.section__eyebrow::before, .section__eyebrow::after {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--accent);
}
.section__title {
  font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; line-height: 1.4;
  color: var(--fg); margin: 0 0 16px; letter-spacing: -0.01em;
}
.section__lead {
  font-size: 16px; line-height: 1.85; color: var(--fg-muted); margin: 0;
}

/* ============================================================
   Section: Industry Visual Row (画像つき業界紹介)
   ============================================================ */
.industry-row {
  padding: 56px 0 64px;
  background: #ffffff;
  border-block: 1px solid var(--border);
}
.industry-row__label {
  text-align: center; font-size: 13px; color: var(--fg-soft);
  margin: 0 0 32px; font-weight: 600; letter-spacing: 0.05em;
}
.industry-row__list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  list-style: none; margin: 0; padding: 0;
}
@media (max-width: 1024px) { .industry-row__list { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .industry-row__list { grid-template-columns: repeat(2, 1fr); } }
.industry-row__item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; font-size: 12.5px; font-weight: 700; color: var(--fg-muted);
}
.industry-row__item img {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5faf7 0%, #e8f0ec 100%);
  object-fit: cover;
  border: 2px solid var(--brand-soft);
  transition: transform 0.2s ease;
}
.industry-row__item:hover img { transform: scale(1.06); }

/* ============================================================
   Section: Service Concept (3カラム)
   ============================================================ */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 880px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--brand-soft); display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand); margin-bottom: 20px;
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card__title {
  font-size: 20px; font-weight: 800; color: var(--fg); margin: 0 0 12px;
}
.service-card__desc {
  font-size: 15px; line-height: 1.85; color: var(--fg-muted); margin: 0;
}
.service-card__number {
  position: absolute; top: 18px; right: 22px;
  font-family: 'Georgia', serif; font-size: 38px; font-weight: 800;
  color: var(--brand-soft); line-height: 1;
}

/* ============================================================
   Section: Problem Packages (3x2)
   ============================================================ */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 980px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px; position: relative;
}
.problem-card__tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--accent); background: #fff0ec; padding: 4px 10px;
  border-radius: var(--radius-pill); margin-bottom: 12px;
}
.problem-card__quote {
  font-size: 16px; font-weight: 700; color: var(--fg); margin: 0 0 12px;
  line-height: 1.6;
}
.problem-card__solution {
  font-size: 14px; color: var(--fg-muted); line-height: 1.7;
  padding-top: 12px; border-top: 1px dashed var(--border); margin: 0;
}
.problem-card__solution strong { color: var(--brand); font-weight: 700; }

/* ============================================================
   Section: Reasons (3カラム)
   ============================================================ */
.reason-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 880px) { .reason-grid { grid-template-columns: 1fr; gap: 24px; } }
.reason-item { text-align: center; padding: 24px 16px; }
.reason-item__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand); color: #ffffff;
  font-family: 'Georgia', serif; font-size: 22px; font-weight: 800;
  margin-bottom: 20px;
}
.reason-item__title {
  font-size: 20px; font-weight: 800; color: var(--fg); margin: 0 0 12px;
}
.reason-item__desc {
  font-size: 15px; color: var(--fg-muted); line-height: 1.85; margin: 0;
}

/* ============================================================
   Section: Features (4カード grid)
   ============================================================ */
.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; display: flex; gap: 24px; align-items: flex-start;
}
.feature-card__visual {
  flex-shrink: 0; width: 100px; height: 100px;
  border-radius: var(--radius-md); background: var(--brand-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.feature-card__visual svg { width: 48px; height: 48px; }
.feature-card__image {
  flex-shrink: 0; width: 130px; height: 130px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-soft) 0%, var(--sea-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.feature-card__image img { width: 110%; height: 110%; object-fit: cover; }
@media (max-width: 600px) {
  .feature-card { flex-direction: column; text-align: center; }
  .feature-card__image { width: 140px; height: 140px; }
}
.feature-card__content { flex: 1; min-width: 0; }
.feature-card__title {
  font-size: 19px; font-weight: 800; color: var(--fg); margin: 0 0 8px;
}
.feature-card__desc {
  font-size: 14px; color: var(--fg-muted); line-height: 1.8; margin: 0;
}

/* ============================================================
   Section: Support (2カラム、左テキスト右ビジュアル)
   ============================================================ */
.support-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 880px) { .support-grid { grid-template-columns: 1fr; } }
.support-text__title {
  font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; color: var(--fg);
  line-height: 1.5; margin: 0 0 20px;
}
.support-text__body {
  font-size: 16px; color: var(--fg-muted); line-height: 1.95; margin: 0 0 24px;
}
.support-text__list {
  list-style: none; margin: 0; padding: 0;
}
.support-text__list li {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px; color: var(--fg); font-weight: 600;
}
.support-text__list li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a5d3d'><circle cx='12' cy='12' r='10' opacity='0.15'/><path d='M7 12 L11 16 L17 8' fill='none' stroke='%231a5d3d' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
  background-size: contain;
}
.support-visual {
  position: relative; padding: 24px;
}
.support-visual__bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--brand-soft) 0%, var(--sea-soft) 100%);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.support-visual__character {
  display: block; margin: 0 auto; max-width: 320px; height: auto;
  filter: drop-shadow(0 8px 20px rgba(15, 74, 46, 0.12));
}

/* ============================================================
   Section: Process (タイムライン)
   ============================================================ */
.process-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
@media (max-width: 880px) { .process-list { grid-template-columns: 1fr; } }
.process-list::before {
  content: ""; position: absolute; top: 36px; left: 8%; right: 8%;
  height: 2px; background: var(--border);
  z-index: 0;
}
@media (max-width: 880px) { .process-list::before { display: none; } }
.process-item {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 20px;
  text-align: center; position: relative; z-index: 1;
}
.process-item__num {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--brand); color: #ffffff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Georgia', serif; font-weight: 800; font-size: 22px;
  border: 4px solid var(--bg-section);
}
.process-item__title { font-size: 16px; font-weight: 800; color: var(--fg); margin: 0 0 8px; }
.process-item__desc { font-size: 13px; color: var(--fg-muted); line-height: 1.7; margin: 0; }
.process-item__time {
  display: inline-block; margin-top: 12px;
  font-size: 12px; font-weight: 700; color: var(--accent);
  background: #fff0ec; padding: 3px 10px; border-radius: var(--radius-pill);
}

/* ============================================================
   Section: Proof (実績数字)
   ============================================================ */
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 880px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-item {
  background: #ffffff; border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; border: 1px solid var(--border);
}
.proof-item__value {
  display: flex; align-items: baseline; justify-content: center;
  gap: 4px; margin: 0;
  color: var(--brand); letter-spacing: -0.01em;
}
.proof-item__num {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 48px; font-weight: 800; line-height: 1;
}
.proof-item__unit {
  font-size: 17px; font-weight: 700; line-height: 1;
}
.proof-item__label {
  font-size: 13px; color: var(--fg-muted); margin: 14px 0 0;
  font-weight: 600;
}

/* ============================================================
   Section: FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--fg);
  display: flex; align-items: flex-start; gap: 12px; font-size: 16px;
  list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q"; flex-shrink: 0; width: 28px; height: 28px;
  background: var(--brand); color: #ffffff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Georgia', serif; font-weight: 700; font-size: 14px;
}
.faq-item summary::after {
  content: ""; position: absolute; right: 24px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item__body {
  padding: 0 24px 24px 64px; color: var(--fg-muted);
  font-size: 15px; line-height: 1.85; margin: 0;
}

/* ============================================================
   Section: Final CTA (3分岐)
   ============================================================ */
.final-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #ffffff; padding: 88px 0;
}
.final-cta__watermark {
  position: absolute; right: -100px; top: -50px;
  width: 600px; opacity: 0.08; pointer-events: none;
  filter: brightness(0) invert(1);
}
.final-cta__inner { position: relative; z-index: 1; text-align: center; }
.final-cta__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sand);
  margin: 0 0 12px;
}
.final-cta__title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 800;
  line-height: 1.4; margin: 0 0 16px;
}
.final-cta__lead {
  font-size: 16px; line-height: 1.85; max-width: 640px; margin: 0 auto 40px;
  opacity: 0.9;
}
.final-cta__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 880px; margin: 0 auto;
}
@media (max-width: 880px) { .final-cta__grid { grid-template-columns: 1fr; } }
.final-cta__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: left;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none; color: #ffffff; display: block;
}
.final-cta__card:hover {
  background: rgba(255, 255, 255, 0.15); transform: translateY(-3px);
  text-decoration: none; color: #ffffff;
}
.final-cta__card-icon {
  width: 40px; height: 40px; margin-bottom: 16px;
}
.final-cta__card-icon svg { width: 100%; height: 100%; color: var(--sand); }
.final-cta__card-title {
  font-size: 17px; font-weight: 800; margin: 0 0 6px; color: #ffffff;
}
.final-cta__card-desc {
  font-size: 13px; line-height: 1.7; margin: 0; opacity: 0.9;
}
.final-cta__card-arrow {
  display: inline-block; margin-top: 12px; font-size: 12px; color: var(--sand);
  font-weight: 700;
}

/* ============================================================
   Footer
   ============================================================ */
.global-footer {
  background: #142b21; color: #e8f0ec; padding: 64px 0 32px;
}
.global-footer a { color: #e8f0ec; }
.global-footer a:hover { color: var(--sand); text-decoration: underline; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand__mark { width: 36px; height: 36px; margin-bottom: 12px; }
.footer-brand__name {
  font-family: 'Georgia', serif; font-size: 24px; font-weight: 800;
  color: #ffffff; margin: 0 0 12px;
}
.footer-brand__desc {
  font-size: 13px; line-height: 1.8; color: #b8c5be; margin: 0 0 16px;
}
.footer-brand__company {
  font-size: 12px; color: #8a9990; margin: 0;
}
.footer-nav__title {
  font-size: 14px; font-weight: 700; color: #ffffff;
  margin: 0 0 16px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-nav__list { list-style: none; padding: 0; margin: 0; }
.footer-nav__list li { padding: 6px 0; font-size: 13px; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #8a9990; flex-wrap: wrap; gap: 16px;
}
.footer-bottom__legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   Decoration / lighthouse派生イメージ
   ============================================================ */
.wave-divider {
  display: block; width: 100%; height: 56px; color: var(--bg-section);
}
.wave-divider svg { width: 100%; height: 100%; display: block; }
.lighthouse-deco {
  position: absolute; pointer-events: none; opacity: 0.04; z-index: 0;
}
.lighthouse-deco--right { right: -80px; top: 40px; width: 320px; }
.lighthouse-deco--left { left: -80px; top: 40px; width: 320px; transform: scaleX(-1); }
.section > .container, .hero__inner > * { position: relative; z-index: 1; }

/* ============================================================
   Reduced motion / prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
