/* ============================================================
   YAMACOH — Geometric Redesign
   ============================================================ */
:root {
  --ink: #101218;
  --paper: #f4f2ec;
  --paper-2: #ebe8df;
  --accent: #2244ff;
  --accent-2: #ff5a1f;
  --yellow: #ffc91f;
  --line: rgba(16, 18, 24, .14);
  --line-light: rgba(244, 242, 236, .16);
  --font-en: "Archivo Black", "Space Grotesk", sans-serif;
  --font-en-text: "Space Grotesk", sans-serif;
  --font-ja: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-ja-text: "Noto Sans JP", sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ja-text);
  font-feature-settings: "palt" 1;
  letter-spacing: .04em;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: auto-phrase;
}

h1, h2, h3, h4 {
  font-family: var(--font-ja);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .05em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }
wbr { display: inline; }

::selection { background: var(--accent); color: var(--paper); }

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
}
.loader__shapes { display: flex; gap: 18px; }
.loader__shape { width: 34px; height: 34px; display: block; opacity: 0; }
.loader__shape--circle { border-radius: 50%; background: var(--accent); }
.loader__shape--triangle {
  background: var(--accent-2);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.loader__shape--square { background: var(--yellow); }
.loader__count {
  font-family: var(--font-en); font-size: clamp(48px, 8vw, 90px);
  color: var(--paper); line-height: 1; display: flex; align-items: baseline; gap: 6px;
}
.loader__count i { font-style: normal; font-size: .35em; color: var(--accent); }
.loader__bar {
  width: min(320px, 60vw); height: 3px; background: rgba(255,255,255,.15);
  overflow: hidden;
}
.loader__bar span { display: block; height: 100%; width: 0; background: var(--accent); }
.loader__panels { position: absolute; inset: 0; display: flex; pointer-events: none; }
.loader__panels span { flex: 1; background: var(--ink); transform: scaleY(0); transform-origin: top; }

/* ============ CURSOR ============ */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block; position: fixed; top: 0; left: 0; z-index: 999;
    width: 44px; height: 44px; border: 1.5px solid var(--ink);
    border-radius: 50%; pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, background-color .3s, border-color .3s, opacity .3s;
    mix-blend-mode: difference; border-color: #fff;
  }
  .cursor-dot {
    display: block; position: fixed; top: 0; left: 0; z-index: 999;
    width: 6px; height: 6px; background: var(--accent);
    border-radius: 50%; pointer-events: none;
    transform: translate(-50%, -50%);
  }
  .cursor.is-hover { width: 80px; height: 80px; background: rgba(255,255,255,.9); }
}

/* ============ FIXED DECOR ============ */
#geoCanvas {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%; pointer-events: none;
}
.grid-lines {
  position: fixed; inset: 0; z-index: 0;
  display: flex; justify-content: space-evenly; pointer-events: none;
}
.grid-lines span {
  width: 1px; background: var(--line);
  transform: scaleY(0); transform-origin: top;
}
.side-label {
  position: fixed; z-index: 5; top: 50%;
  font-family: var(--font-en-text); font-size: 10px; letter-spacing: .35em;
  color: var(--ink); opacity: .55; white-space: nowrap; pointer-events: none;
  mix-blend-mode: difference; color: #888;
}
.side-label--left { left: 18px; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl; }
.side-label--right { right: 18px; transform: translateY(-50%); writing-mode: vertical-rl; }
.progress-shape {
  position: fixed; right: 26px; bottom: 26px; z-index: 50;
  width: 56px; height: 56px; cursor: pointer;
}
.progress-shape svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.progress-shape circle {
  fill: none; stroke: var(--accent); stroke-width: 5;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.progress-shape b {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 13px; color: var(--ink);
}

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background-color .4s, box-shadow .4s, padding .4s;
}
.header.is-scrolled {
  background: rgba(244, 242, 236, .88);
  backdrop-filter: blur(12px);
  padding-top: 12px; padding-bottom: 12px;
  box-shadow: 0 1px 0 var(--line);
}
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo-mark { display: flex; gap: 4px; }
.header__logo-mark i { width: 12px; height: 12px; display: block; }
.header__logo-mark i:nth-child(1) { background: var(--accent); border-radius: 50%; }
.header__logo-mark i:nth-child(2) { background: var(--accent-2); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.header__logo-mark i:nth-child(3) { background: var(--ink); }
.header__logo-text {
  font-family: var(--font-en); font-size: 19px; letter-spacing: .04em;
  display: flex; flex-direction: column; line-height: 1.1;
}
.header__logo-text small {
  font-family: var(--font-ja); font-size: 9px; font-weight: 700;
  letter-spacing: .3em; color: rgba(16,18,24,.55);
}
.header__nav { display: flex; gap: clamp(14px, 2.2vw, 32px); }
.header__nav a {
  position: relative; font-family: var(--font-en-text); font-weight: 700;
  font-size: 13px; letter-spacing: .12em; padding: 6px 2px; overflow: hidden;
  display: inline-block;
}
.header__nav a::after {
  content: attr(data-jp);
  position: absolute; inset: 6px 2px auto;
  font-family: var(--font-ja); font-size: 12px; color: var(--accent);
  transform: translateY(120%); transition: transform .35s var(--ease-out);
  white-space: nowrap;
}
.header__nav a span,
.header__nav a { transition: transform .35s var(--ease-out); }
.header__nav a:hover { transform: translateY(0); }
.header__nav a:hover::after { transform: translateY(0); }
.header__nav a b { display: none; }
.header__nav a:hover { color: transparent; }
.header__cta {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-en-text); font-weight: 700; font-size: 13px;
  letter-spacing: .1em; color: var(--paper);
  background: var(--ink); padding: 12px 22px; overflow: hidden;
  transition: color .35s;
}
.header__cta-shape {
  position: absolute; inset: 0; background: var(--accent);
  clip-path: circle(0% at 50% 50%); transition: clip-path .45s var(--ease-out);
}
.header__cta:hover .header__cta-shape { clip-path: circle(75% at 50% 50%); }
.header__cta b, .header__cta { z-index: 1; }
.header__cta b { font-style: normal; transition: transform .3s; position: relative; }
.header__cta:hover b { transform: translateX(4px); }
.header__menu { display: none; }

/* ============ MOBILE MENU ============ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200; pointer-events: none; visibility: hidden;
}
.menu-overlay.is-open { pointer-events: auto; visibility: visible; }
.menu-overlay__bg { position: absolute; inset: 0; display: flex; }
.menu-overlay__bg span { flex: 1; background: var(--ink); transform: scaleY(0); transform-origin: top; }
.menu-overlay__nav {
  position: relative; height: 100%; display: flex; flex-direction: column;
  justify-content: center; padding: 0 10vw; gap: 4px;
}
.menu-overlay__nav a {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-en); font-size: clamp(32px, 9vw, 56px);
  color: var(--paper); line-height: 1.4; opacity: 0; transform: translateY(40px);
}
.menu-overlay__nav a em {
  font-family: var(--font-en-text); font-style: normal; font-size: 12px; color: var(--accent);
}
.menu-overlay__nav a small {
  font-family: var(--font-ja); font-size: 12px; font-weight: 700;
  color: rgba(244,242,236,.5); letter-spacing: .2em;
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px clamp(20px, 7vw, 110px) 90px;
  overflow: hidden;
}
.hero__bg-text {
  position: absolute; top: 16%; left: 0; right: 0;
  overflow: hidden; pointer-events: none; white-space: nowrap;
}
.hero__bg-line {
  display: inline-block;
  font-family: var(--font-en); font-size: clamp(110px, 22vw, 300px);
  line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(16,18,24,.10);
}
.hero__inner { position: relative; z-index: 2; max-width: 1080px; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-en-text); font-weight: 500; font-size: 13px;
  letter-spacing: .3em; margin-bottom: 28px; opacity: 0;
}
.hero__eyebrow-shape {
  width: 14px; height: 14px; background: var(--accent);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  animation: spinShape 6s linear infinite;
}
@keyframes spinShape { to { transform: rotate(360deg); } }
.hero__title {
  font-size: clamp(42px, 8.4vw, 110px);
  line-height: 1.22; letter-spacing: .02em;
  margin-bottom: 36px;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line .st { display: inline-block; transform: translateY(110%); }
.hero__title-line em {
  font-style: normal; color: var(--accent); position: relative;
}
.hero__title-line--accent em::after {
  content: ""; position: absolute; left: 0; bottom: .06em;
  width: 100%; height: .12em; background: var(--yellow);
  z-index: -1; transform: scaleX(0); transform-origin: left;
  transition: transform .8s var(--ease-out) 1.4s;
}
body.is-loaded .hero__title-line--accent em::after { transform: scaleX(1); }
.hero__lead {
  font-size: clamp(13px, 1.4vw, 16px); line-height: 2.2;
  margin-bottom: 44px; opacity: 0;
}
.hero__lead b { background: linear-gradient(transparent 68%, var(--yellow) 68%); font-weight: 700; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; }

/* hero shapes */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hshape { position: absolute; display: block; }
.hshape--ring {
  top: 14%; right: 8%; width: clamp(120px, 18vw, 260px); height: clamp(120px, 18vw, 260px);
  border: clamp(14px, 2vw, 30px) solid var(--accent); border-radius: 50%;
}
.hshape--tri { top: 52%; right: 22%; width: clamp(70px, 9vw, 130px); }
.hshape--tri svg { width: 100%; fill: var(--accent-2); }
.hshape--sq {
  bottom: 12%; right: 7%; width: clamp(54px, 7vw, 100px); height: clamp(54px, 7vw, 100px);
  background: var(--ink);
}
.hshape--dot { top: 26%; right: 34%; width: 22px; height: 22px; background: var(--yellow); border-radius: 50%; }
.hshape--half {
  bottom: 26%; right: 38%; width: clamp(50px, 6vw, 90px); height: clamp(25px, 3vw, 45px);
  background: var(--accent); border-radius: 0 0 999px 999px;
}
.hshape--cross { top: 70%; right: 12%; width: 36px; height: 36px; }
.hshape--cross i {
  position: absolute; top: 50%; left: 0; width: 100%; height: 5px;
  background: var(--ink); transform: translateY(-50%);
}
.hshape--cross i:last-child { transform: translateY(-50%) rotate(90deg); }

.hero__scroll {
  position: absolute; bottom: 0; left: clamp(20px, 7vw, 110px); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll-text {
  font-family: var(--font-en-text); font-size: 10px; letter-spacing: .4em;
  writing-mode: vertical-rl;
}
.hero__scroll-line { width: 1px; height: 70px; background: var(--ink); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  animation: scrollLine 1.8s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ============ BUTTONS ============ */
.btn {
  position: relative; display: inline-flex; overflow: hidden;
  font-family: var(--font-ja); font-weight: 700; font-size: 14px;
  letter-spacing: .12em; padding: 18px 36px;
  border: 1.5px solid var(--ink);
}
.btn__fill {
  position: absolute; inset: 0; background: var(--ink);
  transform: translateY(101%); transition: transform .4s var(--ease-out);
}
.btn:hover .btn__fill { transform: translateY(0); }
.btn__label { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; transition: color .3s; }
.btn__label b { font-style: normal; transition: transform .3s; }
.btn:hover .btn__label { color: var(--paper); }
.btn:hover .btn__label b { transform: translateX(5px); }
.btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--primary .btn__fill { background: var(--ink); }
.btn--light { border-color: var(--paper); color: var(--paper); }
.btn--light .btn__fill { background: var(--paper); }
.btn--light:hover .btn__label { color: var(--ink); }

/* ============ MARQUEE ============ */
.marquee {
  position: relative; z-index: 2; overflow: hidden;
  padding: 20px 0; white-space: nowrap;
}
.marquee--dark { background: var(--ink); color: var(--paper); transform: rotate(-1.2deg) scale(1.02); }
.marquee--accent { background: var(--accent); color: #fff; transform: rotate(1.2deg) scale(1.02); }
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__track span {
  font-family: var(--font-ja); font-weight: 900; font-size: clamp(16px, 2.4vw, 26px);
  letter-spacing: .14em; padding-right: 12px;
}
.marquee__track i { font-style: normal; color: var(--yellow); padding: 0 14px; font-size: .7em; vertical-align: middle; }

/* ============ SECTION COMMON ============ */
.section { position: relative; z-index: 2; padding: clamp(90px, 13vw, 170px) clamp(20px, 7vw, 110px); }
.section--dark { background: var(--ink); color: var(--paper); }
.section__head { margin-bottom: clamp(50px, 7vw, 90px); position: relative; }
.section__en {
  font-family: var(--font-en); font-size: clamp(40px, 7vw, 96px);
  line-height: 1; letter-spacing: .01em; margin-bottom: 18px;
  color: var(--ink);
}
.section--dark .section__en { color: var(--paper); }
.section__en--center { text-align: center; }
.section__en .ch { display: inline-block; transform: translateY(110%); }
.section__en { overflow: hidden; }
.section__ja {
  font-size: clamp(17px, 2.2vw, 24px); font-weight: 700;
  display: inline-flex; align-items: center; gap: 14px;
}
.section__ja::before {
  content: ""; width: 12px; height: 12px; background: var(--accent);
  flex: none;
}
.section__deco {
  position: absolute; right: 0; top: 8px;
  width: clamp(60px, 8vw, 120px); height: clamp(60px, 8vw, 120px);
  border: 1.5px solid var(--line); border-radius: 50%;
}
.section__deco::after {
  content: ""; position: absolute; inset: 22%;
  background: transparent; border: 1.5px solid var(--accent);
  transform: rotate(15deg);
}
.section--dark .section__deco { border-color: var(--line-light); }

[data-reveal] { opacity: 0; transform: translateY(36px); }
[data-reveal-card] { opacity: 0; transform: translateY(50px); }

/* ============ POLICY ============ */
.policy { background: var(--paper); }
.policy__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
}
.policy__card {
  position: relative; background: #fff; border: 1.5px solid var(--ink);
  padding: clamp(28px, 3vw, 44px); overflow: hidden;
  transition: box-shadow .35s, transform .35s;
  box-shadow: 0 0 0 var(--ink);
}
.policy__card:hover { transform: translate(-5px, -5px); box-shadow: 8px 8px 0 var(--accent); }
.policy__shape { position: absolute; top: -26px; right: -26px; width: 110px; height: 110px; opacity: .12; transition: opacity .35s, transform .6s var(--ease-out); }
.policy__card:hover .policy__shape { opacity: .9; transform: rotate(120deg) scale(1.05); }
.policy__shape--circle { border-radius: 50%; background: var(--accent); }
.policy__shape--triangle svg { width: 100%; fill: var(--accent-2); }
.policy__shape--square { background: var(--yellow); }
.policy__num {
  font-family: var(--font-en); font-size: clamp(44px, 5vw, 64px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--ink);
  margin-bottom: 22px;
}
.policy__title { font-size: clamp(18px, 1.7vw, 22px); margin-bottom: 16px; }
.policy__text { font-size: 13.5px; line-height: 2.1; color: rgba(16,18,24,.78); }
.policy__line { position: absolute; left: 0; bottom: 0; height: 6px; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.policy__card:hover .policy__line { transform: scaleX(1); }

/* ============ ISSUES ============ */
.issues { overflow: hidden; }
.issues__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.issues__bg-text {
  position: absolute; top: 40px; left: -2%;
  font-family: var(--font-en); font-size: clamp(90px, 16vw, 230px);
  white-space: nowrap; line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(244,242,236,.07);
}
.issues__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px); position: relative;
}
.issue {
  position: relative; border: 1.5px solid var(--line-light);
  padding: clamp(24px, 2.6vw, 36px);
  background: rgba(244,242,236,.03);
  transition: background-color .4s, border-color .4s;
  overflow: hidden;
}
.issue::before {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path .5s var(--ease-out); z-index: 0;
}
.issue:hover::before { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.issue > * { position: relative; z-index: 1; }
.issue__index {
  font-family: var(--font-en-text); font-weight: 700; font-size: 12px;
  letter-spacing: .2em; color: var(--yellow);
}
.issue__icon { display: block; width: 44px; margin: 18px 0; }
.issue__icon svg { width: 100%; fill: none; stroke: var(--paper); stroke-width: 2.4; }
.issue h3 { font-size: clamp(15px, 1.4vw, 17.5px); font-weight: 700; line-height: 1.7; margin-bottom: 16px; min-height: 3.4em; }
.issue h3 small { font-size: .8em; font-weight: 500; }
.issue__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.issue__tags li {
  font-size: 10.5px; letter-spacing: .06em;
  border: 1px solid var(--line-light); border-radius: 999px;
  padding: 3px 10px; color: rgba(244,242,236,.72);
  transition: border-color .3s, color .3s;
}
.issue:hover .issue__tags li { border-color: rgba(255,255,255,.5); color: #fff; }
.issues__more { margin-top: clamp(44px, 5vw, 70px); text-align: center; }

/* ============ VOICE ============ */
.voice__list { display: flex; flex-direction: column; gap: clamp(36px, 5vw, 64px); }
.voice__item {
  position: relative; display: grid;
  grid-template-columns: clamp(110px, 14vw, 200px) 1fr;
  gap: clamp(24px, 4vw, 60px);
  border-top: 1.5px solid var(--ink);
  padding-top: clamp(28px, 3.6vw, 52px);
}
.voice__num { position: relative; }
.voice__num span {
  font-family: var(--font-en-text); font-weight: 700; font-size: 12px;
  letter-spacing: .3em; color: var(--accent); display: block;
}
.voice__num b {
  font-family: var(--font-en); font-size: clamp(56px, 8vw, 110px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--ink);
}
.voice__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.voice__meta li {
  font-size: 11.5px; font-weight: 500; letter-spacing: .08em;
  background: var(--ink); color: var(--paper);
  padding: 4px 14px; border-radius: 999px;
}
.voice__title { font-size: clamp(18px, 2.3vw, 28px); margin-bottom: 18px; line-height: 1.6; }
.voice__text { max-width: 56em; font-size: 14px; color: rgba(16,18,24,.8); }
.voice__shape {
  position: absolute; right: 0; top: clamp(28px, 3.6vw, 52px);
  width: 16px; height: 16px; background: var(--accent-2);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.voice__item:nth-child(2) .voice__shape { background: var(--accent); border-radius: 50%; clip-path: none; }
.voice__item:nth-child(3) .voice__shape { background: var(--yellow); clip-path: none; }

/* ============ MESSAGE ============ */
.message { overflow: hidden; }
.message__deco { position: absolute; inset: 0; pointer-events: none; }
.mshape { position: absolute; }
.mshape--ring {
  top: 8%; right: -60px; width: clamp(160px, 22vw, 320px); height: clamp(160px, 22vw, 320px);
  border: 1.5px solid rgba(244,242,236,.16); border-radius: 50%;
}
.mshape--tri { bottom: 10%; left: -30px; width: clamp(110px, 14vw, 200px); opacity: .14; }
.mshape--tri svg { width: 100%; fill: none; stroke: var(--paper); stroke-width: 1.2; }
.mshape--sq {
  top: 46%; left: 8%; width: 18px; height: 18px; background: var(--accent);
}
.message__inner { position: relative; max-width: 980px; margin: 0 auto; text-align: center; }
.message__en {
  font-family: var(--font-en-text); font-weight: 700; font-size: 13px;
  letter-spacing: .4em; color: var(--yellow); margin-bottom: 26px; overflow: hidden;
}
.message__en .ch { display: inline-block; transform: translateY(110%); }
.message__title { font-size: clamp(26px, 4.6vw, 52px); line-height: 1.6; margin-bottom: 40px; }
.message__title span { display: block; overflow: hidden; }
.message__title em {
  font-style: normal; color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
  position: relative; display: inline-block;
}
.message__text { max-width: 600px; margin: 0 auto 64px; text-align: left; display: flex; flex-direction: column; gap: 1.2em; font-size: 14.5px; color: rgba(244,242,236,.86); }
.message__text b { color: var(--yellow); }
.message__points {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px); margin-bottom: 70px; text-align: left;
}
.mpoint { border: 1.5px solid var(--line-light); padding: clamp(24px, 2.4vw, 36px); transition: border-color .35s, transform .35s; }
.mpoint:hover { border-color: var(--accent); transform: translateY(-6px); }
.mpoint__num { font-family: var(--font-en-text); font-weight: 700; font-size: 13px; color: var(--accent); letter-spacing: .15em; }
.mpoint h3 { font-size: 17px; margin: 14px 0 10px; line-height: 1.7; }
.mpoint p { font-size: 12.5px; color: rgba(244,242,236,.7); }
.message__closing { font-size: clamp(14px, 1.7vw, 18px); font-weight: 700; line-height: 2.4; }
.message__closing em { font-style: normal; color: var(--yellow); }

/* ============ CONTACT ============ */
.contact { text-align: center; overflow: hidden; }
.contact__bg { position: absolute; inset: 0; pointer-events: none; }
.contact__bg-ring {
  position: absolute; top: 50%; left: 50%;
  width: clamp(420px, 60vw, 900px); height: clamp(420px, 60vw, 900px);
  border: 1.5px solid var(--line); border-radius: 50%;
  transform: translate(-50%, -50%);
}
.contact__bg-ring--2 { width: clamp(300px, 42vw, 640px); height: clamp(300px, 42vw, 640px); border-color: rgba(34,68,255,.2); }
.contact__title { font-size: clamp(24px, 4vw, 44px); margin-bottom: 22px; position: relative; }
.contact__lead { font-size: 14px; margin-bottom: 48px; position: relative; }
.contact__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; position: relative; }
.contact__btn {
  position: relative; display: flex; align-items: center; gap: 16px;
  background: var(--ink); color: var(--paper);
  padding: 26px 38px; min-width: min(360px, 86vw); overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.contact__btn:hover { transform: translate(-4px, -4px); box-shadow: 7px 7px 0 var(--yellow); }
.contact__btn--accent { background: var(--accent); }
.contact__btn-shape {
  position: absolute; right: -22px; bottom: -22px; width: 90px; height: 90px; opacity: .16;
  transition: transform .6s var(--ease-out);
}
.contact__btn:hover .contact__btn-shape { transform: rotate(140deg) scale(1.15); }
.contact__btn-shape--circle { background: var(--accent); border-radius: 50%; }
.contact__btn--accent .contact__btn-shape--tri { background: var(--yellow); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.contact__btn-icon { width: 32px; flex: none; }
.contact__btn-icon svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.contact__btn-label { text-align: left; font-family: var(--font-ja); font-weight: 700; font-size: 17px; letter-spacing: .1em; display: flex; flex-direction: column; line-height: 1.5; }
.contact__btn-label small { font-family: var(--font-en-text); font-weight: 500; font-size: 10px; letter-spacing: .3em; opacity: .6; }
.contact__btn b { margin-left: auto; font-style: normal; transition: transform .3s; }
.contact__btn:hover b { transform: translateX(6px); }

/* ============ NEWS ============ */
.news { padding-top: 0; }
.news__list { border-top: 1.5px solid var(--ink); }
.news__item { border-bottom: 1.5px solid var(--ink); }
.news__item a {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  padding: clamp(20px, 2.6vw, 32px) 8px;
  position: relative; overflow: hidden; transition: padding-left .35s var(--ease-out);
}
.news__item a::before {
  content: ""; position: absolute; inset: 0; background: var(--paper-2);
  transform: scaleY(0); transform-origin: bottom; transition: transform .4s var(--ease-out);
  z-index: 0;
}
.news__item a:hover::before { transform: scaleY(1); }
.news__item a:hover { padding-left: 22px; }
.news__item a > * { position: relative; z-index: 1; }
.news__item time { font-family: var(--font-en-text); font-weight: 500; font-size: 13px; letter-spacing: .1em; flex: none; }
.news__cat {
  flex: none; font-size: 10.5px; font-weight: 700; letter-spacing: .15em;
  border: 1px solid var(--ink); padding: 3px 12px; border-radius: 999px;
}
.news__item p { font-size: 14.5px; font-weight: 500; }
.news__item b { margin-left: auto; font-style: normal; transition: transform .3s; }
.news__item a:hover b { transform: translateX(6px); color: var(--accent); }
.news__more { margin-top: 44px; text-align: center; }

/* ============ FOOTER ============ */
.footer { position: relative; z-index: 2; background: var(--ink); color: var(--paper); }
.footer__marquee { overflow: hidden; padding: 26px 0; border-bottom: 1px solid var(--line-light); white-space: nowrap; }
.footer__marquee .marquee__track span {
  font-family: var(--font-en); font-size: clamp(28px, 5vw, 56px);
  color: transparent; -webkit-text-stroke: 1px rgba(244,242,236,.35);
  letter-spacing: .02em;
}
.footer__inner {
  display: grid; grid-template-columns: 1.2fr 1.4fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(56px, 7vw, 90px) clamp(20px, 7vw, 110px);
}
.footer__logo { font-family: var(--font-en); font-size: 26px; margin: 18px 0 6px; display: flex; flex-direction: column; line-height: 1.2; }
.footer__logo small { font-family: var(--font-ja); font-size: 10px; font-weight: 700; letter-spacing: .3em; color: rgba(244,242,236,.5); }
.footer__tag { font-size: 12.5px; color: rgba(244,242,236,.65); margin-top: 14px; }
.footer__nav { display: flex; gap: clamp(24px, 3vw, 56px); flex-wrap: wrap; }
.footer__nav h4 {
  font-family: var(--font-en-text); font-size: 12px; letter-spacing: .25em;
  color: var(--accent); margin-bottom: 16px;
}
.footer__nav a {
  display: block; font-size: 12.5px; padding: 5px 0; color: rgba(244,242,236,.8);
  transition: color .3s, transform .3s;
}
.footer__nav a:hover { color: #fff; transform: translateX(5px); }
.footer__offices { display: flex; flex-direction: column; gap: 22px; }
.footer__office h4 { font-size: 13.5px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.footer__office h4 span { color: var(--accent); font-size: 10px; }
.footer__office:nth-child(2) h4 span { color: var(--accent-2); }
.footer__office:nth-child(3) h4 span { color: var(--yellow); }
.footer__office p { font-size: 12px; color: rgba(244,242,236,.62); line-height: 1.9; }
.footer__copy {
  text-align: center; font-family: var(--font-en-text); font-size: 11px;
  letter-spacing: .15em; color: rgba(244,242,236,.45);
  padding: 22px; border-top: 1px solid var(--line-light);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1023px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__menu {
    display: flex; flex-direction: column; justify-content: center; gap: 7px;
    width: 52px; height: 52px; background: var(--ink); border: 0; cursor: pointer;
    align-items: center; position: relative; z-index: 300;
  }
  .header__menu span { width: 22px; height: 2px; background: var(--paper); transition: transform .35s, background-color .35s; }
  .header__menu.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .header__menu.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .policy__grid, .issues__grid, .message__points { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .side-label { display: none; }
}
@media (max-width: 767px) {
  body { letter-spacing: .03em; }
  .policy__grid, .issues__grid, .message__points { grid-template-columns: 1fr; }
  .voice__item { grid-template-columns: 1fr; gap: 16px; }
  .voice__num { display: flex; align-items: baseline; gap: 14px; }
  .issue h3 { min-height: 0; }
  .news__item a { flex-wrap: wrap; gap: 10px 16px; }
  .news__item p { width: 100%; }
  .hero { padding-bottom: 120px; }
  .hero__scroll { left: 24px; }
  .progress-shape { width: 46px; height: 46px; right: 18px; bottom: 18px; }
  .grid-lines span:nth-child(n+4) { display: none; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
