/* 速報JAPAN corporate site — values transcribed 1:1 from the Claude Design source
   (design-source/tpl_min.html). Keep numbers in sync with the design when retuning. */

:root {
  --color-bg: #f5ead8;
  --color-text: #1A1A1A;
  --color-divider: color-mix(in srgb, #201e1d 16%, transparent);

  --color-neutral-100: #f9f4ed;
  --color-neutral-200: #eee7db;
  --color-neutral-300: #dcd3c4;
  --color-neutral-400: #c0b6a5;
  --color-neutral-600: #82796a;
  --color-neutral-700: #645c50;
  --color-neutral-800: #474238;
  --color-neutral-900: #2e2b25;

  --color-accent: #E60012;
  --color-accent-100: #FDECEB;
  --color-accent-300: #F2A39E;
  --color-accent-600: #CC0010;
  --color-accent-700: #B3000E;
  --color-accent-800: #8C000B;

  --color-accent-2: #7a8a5e;
  --color-accent-2-100: #f0fae1;
  --color-accent-2-700: #56633f;
  --color-accent-2-800: #3d472b;

  --font-heading: "Caprasimo", system-ui, sans-serif;
  --font-body: "Figtree", "Zen Kaku Gothic New", "Noto Sans TC", "Noto Sans KR", sans-serif;
  --font-jp: "Zen Kaku Gothic New", "Noto Sans TC", "Noto Sans KR", sans-serif;

  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2e2b25 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2e2b25 16%, transparent);

  --red: #E60012;
  --red-text: #B3000E;
}

/* ── base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-size: 15px; line-height: 1.55; font-weight: 400;
  background: var(--color-neutral-100); color: var(--color-text);
  font-family: var(--font-body); -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading); font-weight: 400;
  line-height: 1.12; letter-spacing: -0.015em; margin: 0;
}
p { margin: 0; }
a { color: var(--red-text); text-decoration: none; text-underline-offset: 3px; }
a:hover { color: var(--color-accent-800); }
img { display: block; max-width: 100%; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }
section[id] { scroll-margin-top: 72px; }

/* Headings that the design renders as plain spans: keep semantics, drop heading metrics. */
.plain { font-family: inherit; letter-spacing: normal; line-height: inherit; }

.page { min-height: 100vh; overflow-x: clip; }
.wrap { max-width: 1240px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }

/* ── shared components ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: 400; font-size: 14px; line-height: 1.2;
  color: var(--color-text); background: transparent; border: 1px solid transparent;
  padding: 8.8px 15.84px; border-radius: 999px;
}
.btn-primary, .btn-primary:hover { background: var(--color-accent); color: var(--color-bg); }
.btn-primary:hover { background: var(--color-accent-600); }
.btn-primary:active { background: var(--color-accent-700); }

.tag {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 11px; letter-spacing: 0.02em; padding: 3px 10px; border-radius: 999px;
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-accent-2 { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.tag-neutral { background: var(--color-neutral-100); color: var(--color-neutral-800); }

.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.24em; color: var(--red-text); }
.h2 { font-family: var(--font-jp); font-weight: 700; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.4; }
.h3 { font-family: var(--font-jp); font-weight: 700; font-size: 22px; }
.stack-14 { display: flex; flex-direction: column; gap: 14px; }

.sec-head { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-end; }
.sec-head__title { flex: 1 1 360px; display: flex; flex-direction: column; gap: 14px; }
.sec-head__lead { flex: 1 1 400px; font-size: 16px; line-height: 2; color: var(--color-neutral-800); text-wrap: pretty; }

.label { font-size: 12px; font-weight: 700; color: var(--color-neutral-700); }
.muted-12 { font-size: 12px; color: var(--color-neutral-700); }
.unit { font-size: 15px; margin-left: 4px; }

/* ── header ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--color-neutral-100) 92%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-neutral-200);
}
.nav {
  max-width: 1240px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 24px; width: auto; display: block; }
.nav__links {
  display: flex; gap: 2px; flex-wrap: wrap; flex: 1; justify-content: flex-end;
  font-size: 14px; font-weight: 500;
}
.nav__link, .nav__link:hover { padding: 8px 12px; border-radius: 999px; color: #1A1A1A; white-space: nowrap; }
.nav__link:hover { background: var(--color-neutral-200); }

.lang { display: flex; gap: 2px; background: var(--color-neutral-200); border-radius: 999px; padding: 3px; }
.lang__opt, .lang__opt:hover {
  border: 0; cursor: pointer; font-size: 12px; font-weight: 700;
  padding: 6px 10px; border-radius: 999px; background: transparent; color: #1A1A1A;
}
.lang__opt[aria-current="true"] { background: #1A1A1A; color: #fff; }

.nav__toggle {
  display: none; margin-left: auto;
  border: 0; background: var(--color-neutral-200); width: 44px; height: 44px; border-radius: 999px;
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span { display: block; width: 18px; height: 2px; background: #1A1A1A; border-radius: 2px; }

.mobile-menu { display: none; padding: 4px 20px 20px; flex-direction: column; gap: 16px; background: var(--color-neutral-100); }
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__links a, .mobile-menu__links a:hover {
  padding: 14px 4px; border-bottom: 1px solid var(--color-neutral-200);
  color: #1A1A1A; font-size: 16px; font-weight: 500;
}
.mobile-menu .lang { align-self: stretch; }
.mobile-menu .btn { justify-content: center; }

@media (max-width: 859px) {
  .nav__links, .nav > .lang, .nav > .btn { display: none; }
  .nav__toggle { display: flex; }
  .site-header.is-open .mobile-menu { display: flex; }
}

/* ── hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: min(82vh, 760px);
  display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(120% 90% at 80% 40%, #2A4A9A 0%, #1A2B63 45%, #111A3D 100%);
  color: #fff; overflow: hidden;
}
.hero__globe {
  position: absolute; top: 50%; right: -8%; transform: translateY(-50%);
  width: min(78vh, 760px); aspect-ratio: 1 / 1; pointer-events: none;
}
.globe { position: relative; width: 100%; height: 100%; }
.globe__glow {
  position: absolute; inset: -6%; border-radius: 50%;
  background: radial-gradient(circle, rgba(120,170,255,0.35) 55%, rgba(120,170,255,0) 70%);
  animation: soku-pulse 6s ease-in-out infinite;
}
.globe__earth {
  position: absolute; inset: 0; border-radius: 50%;
  background-color: #0A1230; background-image: url(img/earth-night.webp?v=d8c3fe21);
  background-size: auto 100%; background-repeat: repeat-x;
  filter: brightness(1.5) saturate(1.2);
  animation: soku-spin 60s linear infinite;
  box-shadow: inset -60px -30px 120px rgba(5,10,30,0.85), inset 20px 10px 60px rgba(140,190,255,0.25);
}
.globe__shine {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 45%);
}
@keyframes soku-spin { from { background-position: 0% 0; } to { background-position: 200% 0; } }
@keyframes soku-pulse { 0%, 100% { opacity: .55; } 50% { opacity: .9; } }

.hero__veil { position: absolute; inset: 0; pointer-events: none; }
.hero__veil--1 { background: linear-gradient(100deg, rgba(20,34,78,0.78) 0%, rgba(34,60,130,0.42) 42%, rgba(60,110,200,0.08) 75%, rgba(255,255,255,0) 100%); }
.hero__veil--2 { background: radial-gradient(60% 70% at 88% 18%, rgba(230,0,18,0.28) 0%, rgba(230,0,18,0) 60%); mix-blend-mode: screen; }
.hero__veil--3 { inset: auto 0 0 0; height: 120px; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(22,32,63,0.35) 100%); }

.hero__inner {
  position: relative; max-width: 1240px; width: 100%; margin: 0 auto; padding: 120px 28px;
  display: flex; flex-direction: column; gap: 28px; align-items: flex-start; pointer-events: none;
}
.hero__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.28em; color: #FFD2CF; }
.hero__title {
  font-family: var(--font-jp); font-weight: 900; font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.22; letter-spacing: 0.01em; text-wrap: balance;
  text-shadow: 0 2px 24px rgba(10,20,50,0.35);
}
.hero__lead {
  font-size: 17px; line-height: 2; max-width: 30em; color: #fff; text-wrap: pretty;
  text-shadow: 0 1px 12px rgba(10,20,50,0.4);
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; pointer-events: auto; }
.btn-glass, .btn-glass:hover {
  background: rgba(255,255,255,0.16); color: #fff; border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255,255,255,0.28); }

/* ── key facts ────────────────────────────────────────────────────── */
.facts { padding-bottom: 80px; margin-top: -56px; position: relative; z-index: 2; }
.facts__grid {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px;
  background: var(--color-neutral-200);
}
.fact { padding: 22px 24px; display: flex; flex-direction: column; gap: 6px; background: #fff; }
.fact__value { font-size: 30px; font-weight: 700; line-height: 1.1; }
.fact__value--code { font-size: clamp(22px, 2.4vw, 30px); white-space: nowrap; }
.fact__value .unit--both { font-size: 15px; margin: 0 4px; }

/* ── philosophy ───────────────────────────────────────────────────── */
.philosophy { padding-bottom: 80px; display: flex; flex-direction: column; gap: 44px; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 20px; }
.pillar {
  background: #fff; border-radius: var(--radius-lg); padding: 34px;
  display: flex; flex-direction: column; gap: 14px; border-top: 4px solid var(--red);
}
.pillar--ink { border-top-color: #1A1A1A; }
.pillar--olive { border-top-color: var(--color-accent-2); }
.pillar__kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; color: var(--red-text); }
.pillar--ink .pillar__kicker { color: var(--color-neutral-700); }
.pillar--olive .pillar__kicker { color: var(--color-accent-2-700); }
.pillar__title { font-family: var(--font-jp); font-weight: 700; font-size: 24px; line-height: 1.5; }
.pillar__sub { font-size: 14px; color: var(--color-neutral-700); }

/* ── journey ──────────────────────────────────────────────────────── */
.journey { background: #1A1A1A; color: #fff; }
.journey__inner { padding-top: 80px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 52px; }
.journey .eyebrow { color: var(--color-accent-300); }
.journey .sec-head__lead { color: var(--color-neutral-300); }
.eras { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 16px; }
.era {
  border-radius: var(--radius-lg); padding: 28px; background: rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 12px; color: var(--color-neutral-300);
}
.era--now { background: var(--red); color: #fff; position: relative; }
.era--future { background: none; border: 1px dashed rgba(255,255,255,0.35); }
.era__meta { display: flex; justify-content: space-between; align-items: center; }
.era__phase { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; }
.era--future .era__phase { color: var(--color-accent-300); }
.era__years { font-size: 13px; }
.era__title { font-family: var(--font-jp); font-weight: 700; font-size: 21px; color: #fff; }
.era__text { font-size: 14px; line-height: 1.85; }

/* ── track record ─────────────────────────────────────────────────── */
.bg-white { background: #fff; }
.track__inner { padding-top: 80px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 48px; }
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 16px; }
.metric {
  background: var(--color-neutral-100); border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 6px;
}
.metric__value { font-size: 32px; font-weight: 700; }
.cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 16px; }
.case {
  border: 1px solid var(--color-neutral-300); border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.case__kicker { font-size: 12px; font-weight: 700; color: var(--red-text); }
.case__title { font-size: 17px; font-weight: 700; }
.case__text { font-size: 14px; line-height: 1.8; color: var(--color-neutral-800); }

.proof { display: flex; flex-wrap: wrap; gap: 16px; }
.proof__panel {
  background: var(--color-neutral-100); border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.proof__panel--brands { flex: 3 1 520px; min-width: 0; }
.proof__panel--awards { flex: 2 1 320px; }
.proof__title { font-size: 15px; font-weight: 700; }
.proof__logos { background: #fff; border-radius: var(--radius-md); padding: 16px; }
.proof__logos img { width: 100%; height: auto; }
.awards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.awards img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius-md); }
.proof__note { font-size: 13px; line-height: 1.8; color: var(--color-neutral-800); }

/* ── press ────────────────────────────────────────────────────────── */
.press { padding-top: 80px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 36px; }
.press__head { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between; }
.press__outlets { font-size: 14px; color: var(--color-neutral-700); }
.press__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 16px; }
.press-card, .press-card:hover {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; color: #1A1A1A; box-shadow: var(--shadow-sm);
}
.press-card:hover { box-shadow: var(--shadow-md); }
.press-card__thumb { height: 220px; background: var(--color-neutral-200); overflow: hidden; }
.press-card__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.press-card__body { padding: 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.press-card__meta { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; font-weight: 700; }
.press-card__outlet { color: var(--red-text); }
.press-card__date { color: var(--color-neutral-700); }
.press-card__title { font-size: 15px; font-weight: 700; line-height: 1.6; }

/* ── business ─────────────────────────────────────────────────────── */
.business__inner { padding-top: 80px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 44px; }
.pillars-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 20px; }
.biz {
  background: var(--color-neutral-100); border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.biz__kicker { font-size: 13px; font-weight: 700; color: var(--red-text); }
.biz__text { font-size: 15px; line-height: 1.9; color: var(--color-neutral-800); }
.block { display: flex; flex-direction: column; gap: 22px; }

.flagship { background: var(--color-neutral-100); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-wrap: wrap; }
.flagship__body { flex: 1 1 380px; padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 16px; }
.flagship__name { display: flex; flex-direction: column; gap: 4px; }
.flagship__name strong { font-size: 28px; font-weight: 700; line-height: 1.3; }
.flagship__name span { font-size: 14px; color: var(--color-neutral-700); }
.flagship__text { font-size: 15px; line-height: 1.95; color: var(--color-neutral-800); }
.flagship__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding-top: 6px; }
.flagship__stat { display: flex; flex-direction: column; gap: 2px; }
.flagship__stat strong { font-size: 26px; font-weight: 700; }
.flagship__stat strong.is-red { color: var(--red-text); }
.flagship__stat span { font-size: 12px; color: var(--color-neutral-700); }
.flagship__media { flex: 1 1 420px; min-height: 300px; background: #fff; padding: 20px; display: flex; align-items: center; justify-content: center; }
.flagship__media img { width: 100%; height: auto; border-radius: var(--radius-md); }

.brands { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 16px; }
.brand {
  border: 1px solid var(--color-neutral-300); border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.brand:hover { border-color: var(--red); }
.brand__name { font-size: 28px; font-weight: 700; }

.solutions { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 16px; }
.solution {
  background: var(--color-neutral-100); border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.solution__num {
  width: 34px; height: 34px; border-radius: 50%; background: #1A1A1A; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700;
}
.solution__title { font-size: 17px; font-weight: 700; line-height: 1.5; }
.body-14 { font-size: 14px; line-height: 1.85; color: var(--color-neutral-800); }

.table-wrap { overflow-x: auto; background: var(--color-neutral-100); border-radius: var(--radius-lg); padding: 8px 24px; }
.table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: 8.8px; border-bottom: 1px solid var(--color-divider);
}
.table td { padding: 8.8px; border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent); }
.table td:first-child { font-weight: 700; }
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }

/* ── market ───────────────────────────────────────────────────────── */
.market { padding-top: 80px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 40px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 16px; }
.stat { background: #fff; border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; gap: 8px; }
.stat__label { font-size: 13px; font-weight: 700; color: var(--color-neutral-700); }
.stat__value { font-size: 40px; font-weight: 700; line-height: 1.1; }
.stat__value.is-red { color: var(--red-text); }
.stat__value small { font-size: 16px; margin-left: 4px; }
.stat__note { font-size: 13px; line-height: 1.7; color: var(--color-neutral-700); }

/* ── future ───────────────────────────────────────────────────────── */
.future { background: var(--color-neutral-200); }
.future__inner { padding-top: 80px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 44px; }
.phases { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 16px; }
.phase { background: #fff; border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.phase__meta { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.phase__label { font-size: 13px; font-weight: 700; color: var(--red-text); }
.phase__title { font-family: var(--font-jp); font-size: 20px; font-weight: 700; line-height: 1.5; }
.phase__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }

.plan { display: flex; flex-wrap: wrap; gap: 16px; }
.chart {
  flex: 3 1 480px; background: #fff; border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 24px; min-width: 0;
}
.chart__head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; align-items: baseline; }
.chart__title { font-size: 17px; font-weight: 700; }
.chart__bars { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; align-items: end; height: 240px; }
.bar { display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.bar__value { font-size: 15px; font-weight: 700; }
.bar__value.is-red { color: var(--red-text); }
.bar__fill { width: 100%; max-width: 64px; border-radius: 10px 10px 4px 4px; }
.chart__years {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px;
  text-align: center; font-size: 13px; color: var(--color-neutral-700); margin-top: -12px;
}
.kpis { flex: 2 1 320px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 16px; }
.kpi { background: #fff; border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 6px; }
.kpi__value { font-size: 30px; font-weight: 700; line-height: 1.1; }
.kpi__value small { font-size: 14px; margin-left: 3px; }
.disclaimer { font-size: 12px; line-height: 1.7; color: var(--color-neutral-700); }

.vision2030 {
  background: #1A1A1A; color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 22px;
}
.vision2030__kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; color: var(--color-accent-300); }
.vision2030__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 24px; }
.vision2030__item { display: flex; flex-direction: column; gap: 8px; }
.vision2030__item strong { font-size: 28px; font-weight: 700; color: #fff; }
.vision2030__item span { font-size: 15px; line-height: 1.85; color: var(--color-neutral-200); }

/* ── Japan Trip Guide ─────────────────────────────────────────────── */
.jtg { padding-top: 80px; padding-bottom: 80px; }
.jtg__card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-wrap: wrap; }
.jtg__body { flex: 1 1 420px; padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; gap: 18px; }
.jtg__title { font-family: var(--font-jp); font-weight: 700; font-size: clamp(26px, 3vw, 34px); line-height: 1.45; }
.jtg__title span { font-size: 0.65em; font-weight: 500; }
.jtg__text { font-size: 15px; line-height: 2; color: var(--color-neutral-800); text-wrap: pretty; }
.jtg__rows { display: flex; flex-direction: column; gap: 10px; }
.jtg__row { display: flex; gap: 12px; align-items: baseline; }
.jtg__row strong { font-size: 13px; font-weight: 700; color: var(--red-text); flex: none; width: 92px; }
.jtg__row span { font-size: 14px; line-height: 1.8; }
.jtg__media { flex: 1 1 360px; min-height: 320px; background: var(--color-neutral-200); position: relative; }
.photo { display: block; margin: 0; position: relative; width: 100%; height: 100%; aspect-ratio: 3 / 2; font: 13px/1.3 system-ui, -apple-system, sans-serif; }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo__credit {
  position: absolute; left: 6px; bottom: 6px; max-width: calc(100% - 12px);
  padding: 3px 7px; border-radius: 5px; background: rgba(0,0,0,.55); color: #fff;
  font: 10px/1.2 system-ui, -apple-system, sans-serif;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.photo__credit a, .photo__credit a:hover { color: inherit; }
.photo__credit a:hover { text-decoration: underline; }

/* ── message ──────────────────────────────────────────────────────── */
.message__inner { padding-top: 80px; padding-bottom: 80px; display: flex; flex-wrap: wrap; gap: 64px; align-items: flex-start; }
.message__side { flex: 1 1 280px; display: flex; flex-direction: column; gap: 20px; }
.ceo { display: flex; flex-direction: column; gap: 4px; }
.ceo__role, .ceo__bio { font-size: 13px; color: var(--color-neutral-700); }
.ceo__bio { line-height: 1.7; }
.ceo__name { font-weight: 700; font-size: 20px; }
.ceo__name span { font-size: 14px; font-weight: 500; margin-left: 8px; color: var(--color-neutral-700); }
.message__body { flex: 2 1 520px; display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.message__lead { font-family: var(--font-jp); font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.7; text-wrap: pretty; }
.message__body p:not(.message__lead) { font-size: 16px; line-height: 2.1; color: var(--color-neutral-800); }

/* ── history ──────────────────────────────────────────────────────── */
.history { padding-top: 80px; padding-bottom: 40px; display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.history__side { flex: 1 1 280px; display: flex; flex-direction: column; gap: 14px; position: sticky; top: 100px; }
.history__sub { font-size: 15px; line-height: 1.9; color: var(--color-neutral-700); }
.lesson { margin-top: 12px; background: #fff; border-radius: var(--radius-md); padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.lesson strong { font-size: 12px; font-weight: 700; color: var(--red-text); }
.lesson span { font-size: 15px; line-height: 1.8; font-weight: 500; }
.timeline { flex: 2 1 480px; display: flex; flex-direction: column; min-width: 0; list-style: none; margin: 0; padding: 0; }
.tl { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--color-neutral-300); }
.tl__year { font-size: 18px; font-weight: 700; line-height: 1.6; color: var(--red-text); }
.tl__body { display: flex; flex-direction: column; gap: 4px; }
.tl__text { font-size: 15px; line-height: 1.8; }
.tl__era { font-size: 12px; font-weight: 700; color: var(--color-neutral-600); }

/* ── company ──────────────────────────────────────────────────────── */
.company { padding-top: 40px; padding-bottom: 80px; display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.company__side { flex: 1 1 300px; display: flex; flex-direction: column; gap: 24px; }
.license {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 10px; border-top: 4px solid var(--red);
}
.license strong { font-size: 12px; font-weight: 700; color: var(--red-text); }
.license b { font-size: 30px; font-weight: 700; line-height: 1.1; }
.license p { font-size: 13px; line-height: 1.85; color: var(--color-neutral-800); }
.corp { flex: 2 1 480px; background: #fff; border-radius: var(--radius-lg); padding: 8px 32px; min-width: 0; margin: 0; }
.corp__row { display: grid; grid-template-columns: minmax(100px, 170px) minmax(0, 1fr); gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--color-neutral-200); }
.corp__row dt { font-size: 14px; font-weight: 700; color: var(--color-neutral-700); }
.corp__row dd { margin: 0; font-size: 15px; line-height: 1.75; }

/* ── contact ──────────────────────────────────────────────────────── */
.contact { padding-bottom: 80px; }
.contact__card {
  background: var(--red); color: #fff; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 64px);
  display: flex; flex-wrap: wrap; gap: 40px; align-items: center;
}
.contact__intro { flex: 1 1 360px; display: flex; flex-direction: column; gap: 14px; }
.contact .eyebrow { color: inherit; }
.contact__title { font-family: var(--font-jp); font-weight: 700; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.45; }
.contact__text { font-size: 15px; line-height: 1.9; }
.contact__links { flex: 1 1 360px; display: flex; flex-direction: column; gap: 12px; }
.mail-link, .mail-link:hover {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: #fff; color: #1A1A1A; border-radius: 999px; padding: 16px 28px;
}
.mail-link:hover { background: #FDECEB; }
.mail-link__text { display: flex; flex-direction: column; }
.mail-link__text small { font-size: 12px; font-weight: 700; color: var(--red-text); }
.mail-link__text strong { font-size: 18px; font-weight: 700; }
.mail-link__arrow { font-size: 20px; }

/* ── footer ───────────────────────────────────────────────────────── */
.footer { background: #1A1A1A; color: #fff; }
.footer__inner { padding-top: 48px; padding-bottom: 48px; display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-end; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo { background: #fff; border-radius: 10px; padding: 10px 14px; align-self: flex-start; }
.footer__logo img { height: 22px; width: auto; }
.footer__address { font-size: 13px; line-height: 1.8; color: var(--color-neutral-300); font-style: normal; }
.footer__legal { font-size: 12px; color: var(--color-neutral-300); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .globe__glow, .globe__earth { animation: none; }
}
