/* ================================================================
   SAFriends (サフトモ) — Brand tokens & base styles
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand palette */
  --sb-blue:        #3E6FAB;
  --sb-blue-dark:   #2A5689;
  --sb-blue-light:  #6895C9;
  --sb-blue-50:     #EEF3FA;
  --sb-blue-100:    #D9E5F2;
  --saf-gold:       #C8A400;
  --saf-gold-light: #E8C84A;
  --saf-gold-50:    #FBF6E2;
  --zebra-black:    #111111;
  --zebra-white:    #F5F5F0;
  --bg-white:       #FFFFFF;
  --ink:            #1A1A1A;
  --ink-muted:      #5C5C5C;
  --ink-subtle:     #8A8A8A;
  --line:           #E6E6E2;

  /* Type */
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, system-ui, sans-serif;
  --font-en: "Inter", "Noto Sans JP", system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg-white);
  font-feature-settings: "palt";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ================================================================
   Layout primitives
   ================================================================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

.section {
  padding: 96px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

.section-zebra { background: var(--zebra-white); }
.section-dark { background: var(--zebra-black); color: var(--bg-white); }

/* Eyebrow / section labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sb-blue);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--saf-gold);
}
.eyebrow-light { color: var(--sb-blue-light); }
.eyebrow-light::before { background: var(--saf-gold-light); }

/* Gold accent rule */
.gold-rule {
  display: block;
  width: 96px; height: 4px;
  background: var(--saf-gold);
  border: none;
  margin: 0;
}
.gold-rule.long { width: 220px; }
.gold-rule.thick { height: 6px; }

/* ================================================================
   Type
   ================================================================ */
.h-display {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h1 {
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
.h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}
.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-muted);
  font-weight: 500;
}
.body { font-size: 16px; line-height: 1.85; color: var(--ink-muted); }
.small { font-size: 13px; color: var(--ink-subtle); }

.en { font-family: var(--font-en); }
.tabular { font-variant-numeric: tabular-nums; }

.text-gold { color: var(--saf-gold); }
.text-blue { color: var(--sb-blue); }
.text-blue-dark { color: var(--sb-blue-dark); }

/* ================================================================
   Buttons
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--sb-blue);
  color: white;
  box-shadow: 0 4px 14px -4px rgba(62,111,171,0.5);
}
.btn-primary:hover {
  background: var(--sb-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(62,111,171,0.6);
}
.btn-secondary {
  background: transparent;
  color: var(--sb-blue);
  border: 2px solid var(--sb-blue);
  padding: 12px 22px;
}
.btn-secondary:hover {
  background: var(--sb-blue-50);
  transform: translateY(-2px);
}
.btn-line {
  background: #06C755;
  color: white;
  box-shadow: 0 4px 14px -4px rgba(6,199,85,0.45);
}
.btn-line:hover {
  background: #05A847;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(6,199,85,0.55);
}
.btn-gold {
  background: var(--saf-gold);
  color: var(--zebra-black);
}
.btn-gold:hover { background: var(--saf-gold-light); transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 12px 22px;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: white; }
.btn-lg { padding: 18px 32px; font-size: 16px; border-radius: 12px; }

/* LINE icon glyph */
.line-glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: white; color: #06C755;
  border-radius: 5px;
  font-size: 11px; font-weight: 900;
  font-family: var(--font-en);
  letter-spacing: 0;
}

/* ================================================================
   Header / Nav
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-name .jp {
  font-weight: 900; font-size: 17px; letter-spacing: 0.04em;
}
.brand-name .en {
  font-family: var(--font-en); font-weight: 600; font-size: 11px;
  color: var(--ink-subtle); letter-spacing: 0.12em;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  position: relative; transition: color 0.2s;
}
.nav-links a:hover { color: var(--sb-blue); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--saf-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  background: transparent; border: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--ink);
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .hamburger { display: inline-flex; }
}

.mobile-menu {
  position: fixed; inset: 0; background: var(--bg-white); z-index: 100;
  padding: 24px;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; height: 56px; }
.mobile-menu-close { background: transparent; border: none; font-size: 28px; line-height: 1; }
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 4px; margin-top: 32px;
}
.mobile-menu nav a {
  padding: 18px 4px; font-size: 22px; font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; }

/* ================================================================
   Hero
   ================================================================ */
.hero {
  position: relative;
  padding: 80px 0 120px;
  background:
    radial-gradient(circle at 85% 20%, rgba(232,200,74,0.10), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(104,149,201,0.12), transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAF6 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  min-height: 600px;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 48px 0 80px; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en);
  font-weight: 600; font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sb-blue);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--saf-gold);
  box-shadow: 0 0 0 4px rgba(200,164,0,0.18);
}
.hero-h1 {
  font-weight: 900;
  font-size: clamp(44px, 7.5vw, 104px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
}
.hero-h1 .accent {
  display: inline-block;
  background: linear-gradient(180deg, var(--sb-blue) 0%, var(--sb-blue-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero-h1 .underline-gold {
  position: relative;
  display: inline-block;
}
.hero-h1 .underline-gold::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 14px;
  background: var(--saf-gold-light);
  opacity: 0.5;
  z-index: -1;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500;
  line-height: 1.8;
  color: var(--ink-muted);
  margin: 0 0 32px;
  max-width: 540px;
}
.hero-rule {
  margin: 0 0 32px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 24px;
  font-size: 13px;
  color: var(--ink-subtle);
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--saf-gold);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-plane-wrap {
  position: relative;
  width: 100%; height: 100%;
}
.hero-plane {
  width: 100%; height: 100%;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
.hero-trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-droplets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.scroll-indicator .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--ink-subtle), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ================================================================
   Concept (集める／つなぐ／育てる)
   ================================================================ */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
@media (max-width: 880px) {
  .concept-grid { grid-template-columns: 1fr; gap: 16px; }
}
.concept-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.concept-card:hover {
  transform: translateY(-6px);
  border-color: var(--sb-blue-light);
  box-shadow: 0 20px 40px -20px rgba(62,111,171,0.25);
}
.concept-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 60px; height: 4px;
  background: var(--saf-gold);
}
.concept-num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--saf-gold);
  margin-bottom: 24px;
}
.concept-icon {
  width: 64px; height: 64px;
  margin-bottom: 24px;
  color: var(--sb-blue);
}
.concept-title {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.concept-title .en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-subtle);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.concept-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-muted);
  margin: 0;
}

/* ================================================================
   Numbers — facts strip
   ================================================================ */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 56px;
}
@media (max-width: 880px) {
  .facts { grid-template-columns: 1fr 1fr; }
}
.fact {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: none; }
@media (max-width: 880px) {
  .fact:nth-child(2) { border-right: none; }
  .fact:nth-child(1), .fact:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.fact-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin: 0 0 16px;
}
.fact-value {
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--zebra-black);
  display: flex; align-items: baseline; gap: 6px;
}
.fact-value .unit {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0;
}
.fact-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 12px 0 0;
}

/* ================================================================
   Story (廃食油 → 空)
   ================================================================ */
.story {
  background: var(--zebra-black);
  color: white;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,0,0.6), transparent);
}
.story .eyebrow { color: var(--saf-gold-light); }
.story .eyebrow::before { background: var(--saf-gold); }
.story h2 { color: white; }
.story-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
@media (max-width: 880px) {
  .story-flow { grid-template-columns: 1fr; gap: 24px; }
}
.story-step {
  padding: 32px 20px;
  position: relative;
  text-align: left;
}
.story-step-num {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--saf-gold);
  margin: 0 0 24px;
}
.story-step-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  color: var(--saf-gold-light);
}
.story-step-title {
  font-weight: 900;
  font-size: 22px;
  margin: 0 0 12px;
  color: white;
}
.story-step-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.story-step + .story-step::before {
  content: "";
  position: absolute;
  left: -1px; top: 60px;
  width: 1px; height: 40px;
  background: rgba(200,164,0,0.4);
}
@media (min-width: 881px) {
  .story-step + .story-step::before {
    left: -8px; top: 50%;
    width: 16px; height: 1px;
    background: rgba(200,164,0,0.4);
    transform: translateY(-50%);
  }
  .story-step + .story-step::after {
    content: "→";
    position: absolute;
    left: -10px; top: 50%;
    transform: translateY(-50%);
    color: var(--saf-gold);
    font-size: 16px;
    background: var(--zebra-black);
    padding: 0 4px;
  }
}

/* ================================================================
   Join — three audiences
   ================================================================ */
.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 960px) {
  .join-grid { grid-template-columns: 1fr; }
}
.join-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: all 0.3s var(--ease);
}
.join-card.featured {
  background: var(--sb-blue);
  color: white;
  border-color: var(--sb-blue);
}
.join-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.18);
}
.join-card.featured:hover {
  box-shadow: 0 20px 40px -20px rgba(62,111,171,0.5);
}
.join-tag {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saf-gold);
  margin: 0 0 12px;
  display: flex; align-items: center; gap: 8px;
}
.join-tag::before {
  content: ""; width: 24px; height: 2px; background: var(--saf-gold);
}
.join-card.featured .join-tag { color: var(--saf-gold-light); }
.join-card.featured .join-tag::before { background: var(--saf-gold-light); }
.join-title {
  font-weight: 900;
  font-size: 26px;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.join-lead {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 24px;
  color: var(--ink-muted);
  font-weight: 500;
}
.join-card.featured .join-lead { color: rgba(255,255,255,0.85); }
.join-list {
  list-style: none; margin: 0 0 32px; padding: 0;
  border-top: 1px solid var(--line);
}
.join-card.featured .join-list { border-color: rgba(255,255,255,0.18); }
.join-list li {
  padding: 14px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--ink);
}
.join-card.featured .join-list li {
  border-color: rgba(255,255,255,0.18);
  color: white;
}
.join-list li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--saf-gold);
  font-weight: 700;
}
.join-card.featured .join-list li::before { color: var(--saf-gold-light); }
.join-cta { margin-top: auto; }

/* ================================================================
   1010 progress
   ================================================================ */
.tenten {
  background: linear-gradient(135deg, var(--sb-blue-dark) 0%, var(--sb-blue) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.tenten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .tenten-grid { grid-template-columns: 1fr; gap: 32px; }
}
.tenten h2 { color: white; }
.tenten .eyebrow { color: var(--saf-gold-light); }
.tenten .eyebrow::before { background: var(--saf-gold); }
.tenten-lead {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.85;
}
.progress-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(12px);
}
.progress-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 20px;
}
.progress-current {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.progress-current .unit {
  font-size: 18px;
  margin-left: 4px;
  color: var(--saf-gold-light);
  font-weight: 700;
}
.progress-target {
  font-family: var(--font-en);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.progress-bar {
  height: 12px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saf-gold) 0%, var(--saf-gold-light) 100%);
  border-radius: 999px;
  transition: width 1.8s var(--ease);
  box-shadow: 0 0 16px rgba(232,200,74,0.6);
}
.progress-deadline {
  display: flex; justify-content: space-between;
  margin-top: 16px;
  font-size: 13px;
  font-family: var(--font-en);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.tenten-tagline {
  font-weight: 700;
  font-size: 17px;
  color: white;
  margin: 24px 0 0;
}

/* ================================================================
   Matsuzawa
   ================================================================ */
.matsuzawa-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .matsuzawa-grid { grid-template-columns: 1fr; gap: 32px; }
}
.portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--sb-blue-100) 0%, var(--zebra-white) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 32px;
}
.portrait-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--ink-subtle); text-transform: uppercase;
  opacity: 0.6;
}
.portrait-overlay {
  position: relative;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--saf-gold);
}
.portrait-overlay .name {
  font-weight: 900;
  font-size: 18px;
  margin: 0;
}
.portrait-overlay .role {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 4px 0 0;
  font-family: var(--font-en);
  font-weight: 500;
}
.matsuzawa-quote {
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 24px 0;
  color: var(--zebra-black);
}
.matsuzawa-body { font-size: 16px; line-height: 1.95; color: var(--ink-muted); margin: 0 0 32px; }
.kw-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.kw {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--zebra-white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.kw::before { content: "#"; color: var(--saf-gold); font-weight: 900; }

/* ================================================================
   News
   ================================================================ */
.news-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 56px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 960px) {
  .news-grid { grid-template-columns: 1fr; }
}
.news-card {
  display: flex; flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(0,0,0,0.12);
  border-color: var(--sb-blue-light);
}
.news-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.news-thumb-1 { background: linear-gradient(135deg, #2A5689, #3E6FAB); }
.news-thumb-2 { background: linear-gradient(135deg, #6895C9, #C8A400); }
.news-thumb-3 { background: linear-gradient(135deg, #C8A400, #E8C84A); }
.news-thumb-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.95;
}
.news-body {
  padding: 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.news-meta {
  display: flex; gap: 16px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin: 0 0 12px;
}
.news-meta .cat { color: var(--sb-blue); }
.news-title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: var(--zebra-black);
}
.news-card:hover .news-title { color: var(--sb-blue); }
.news-arrow {
  margin-top: auto;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--sb-blue);
  display: flex; align-items: center; gap: 6px;
}
.news-card:hover .news-arrow { gap: 12px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-grid { margin-top: 56px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding: 28px 8px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 17px;
  transition: color 0.2s;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: var(--sb-blue); }
.faq-q {
  display: flex; align-items: flex-start; gap: 16px;
  flex: 1;
}
.faq-q-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--saf-gold);
  color: var(--zebra-black);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--zebra-white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
details[open] .faq-toggle {
  background: var(--sb-blue);
  color: white;
  transform: rotate(45deg);
}
.faq-toggle::before {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}
.faq-body {
  padding: 0 8px 28px 52px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-muted);
  max-width: 720px;
}

/* ================================================================
   Final CTA
   ================================================================ */
.final-cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(232,200,74,0.18), transparent 50%),
    linear-gradient(135deg, #2A5689 0%, #1F4274 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 880px) {
  .final-cta-grid { grid-template-columns: 1fr; gap: 32px; }
}
.final-cta-h {
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: white;
}
.final-cta-h .accent {
  color: var(--saf-gold-light);
}
.final-cta p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.qr-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  color: var(--zebra-black);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
}
.qr {
  width: 180px; height: 180px;
  margin: 0 auto 16px;
  background: var(--zebra-white);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.qr-card .label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.qr-card .name {
  font-weight: 900;
  font-size: 18px;
  margin: 4px 0 0;
}

/* ================================================================
   Footer
   ================================================================ */
.site-footer {
  background: var(--zebra-black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand-name .jp { color: white; }
.footer-brand .brand-name .en { color: rgba(255,255,255,0.5); }
.footer-tag {
  margin: 24px 0 24px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.footer-h {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saf-gold-light);
  margin: 0 0 20px;
}
.footer-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-list a, .footer-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-list a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-social {
  display: flex; gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: rgba(255,255,255,0.7);
}
.footer-social a:hover {
  border-color: var(--saf-gold);
  color: var(--saf-gold-light);
  background: rgba(200,164,0,0.08);
}

/* ================================================================
   Reveal-on-scroll
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 360ms; }
