/* ============================================================
   OSD 長期インターン 採用LP — Design System
   High-energy startup / 信頼感 / 商社・コンサル・金融に刺さる知性
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Archivo:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&display=swap');

/* ---- Tokens ---- */
:root {
  /* base palette */
  --ink:        #0A1633;   /* near-black navy for text */
  --ink-2:      #3A4566;   /* secondary text */
  --ink-3:      #6E789A;   /* tertiary / captions */
  --navy:       #0C2150;   /* primary brand navy */
  --navy-deep:  #060F2A;   /* hero deep bg */
  --navy-soft:  #14305F;

  --accent:     #FF6A18;   /* orange — heat / challenge (themeable) */
  --accent-2:   #13C3D6;   /* cyan / turquoise — future */
  --green:      #14C173;
  --purple:     #7B61FF;

  --paper:      #F4F6FB;   /* cool off-white */
  --paper-2:    #ECEFF7;
  --white:      #FFFFFF;
  --line:       rgba(12, 33, 80, 0.12);
  --line-soft:  rgba(12, 33, 80, 0.07);

  /* derived */
  --accent-ink: #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(10, 22, 51, 0.06);
  --shadow-md:  0 10px 30px rgba(10, 22, 51, 0.10);
  --shadow-lg:  0 24px 60px rgba(10, 22, 51, 0.18);
  --shadow-navy: 0 24px 60px rgba(6, 15, 42, 0.45);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --maxw: 1120px;
  --gut: clamp(20px, 5vw, 64px);

  --font-jp: "Zen Kaku Gothic New", system-ui, sans-serif;
  --font-en: "Archivo", system-ui, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent); color: #fff; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-wide { max-width: 1280px; }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy-deep); color: #fff; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }

/* ---- Eyebrow / English micro-labels ---- */
.eyebrow {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.section--navy .eyebrow { color: var(--accent-2); }
.section--navy .eyebrow::before { background: var(--accent-2); }

/* ---- Headings ---- */
.h-sec {
  font-weight: 900;
  font-size: clamp(28px, 5.2vw, 52px);
  line-height: 1.22;
  letter-spacing: -.01em;
  margin-top: 18px;
  text-wrap: balance;
  word-break: auto-phrase;
}
.h-sec .hl { color: var(--accent); }
.h-sec .hl2 { color: var(--accent-2); }
.section--navy .h-sec .hl { color: var(--accent); }
.lead {
  font-size: clamp(15px, 1.9vw, 19px);
  color: var(--ink-2);
  line-height: 1.9;
  margin-top: 20px;
  max-width: 60ch;
  text-wrap: pretty;
}
.section--navy .lead { color: rgba(255,255,255,.78); }
.sec-head { margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head.center .lead { margin-inline: auto; }

/* ---- Highlight marker (energetic underline) ---- */
.mark {
  background: linear-gradient(transparent 60%, rgba(255,106,24,.28) 60%);
  padding-inline: .05em;
}

/* ---- Numbers (Archivo) ---- */
.num { font-family: var(--font-en); font-weight: 800; font-feature-settings: "tnum"; letter-spacing: -.02em; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 17px);
  padding: 16px 28px;
  border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn .arr { font-family: var(--font-en); font-weight: 800; transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 12px 28px rgba(255,106,24,.38);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(255,106,24,.46); }
.btn--ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn--dark {
  background: var(--navy); color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--dark:hover { transform: translateY(-2px); background: var(--navy-soft); }
.btn--outline {
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn--outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 19px 36px; font-size: clamp(16px, 1.8vw, 19px); }
.btn--block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-note { font-size: 13px; color: var(--ink-3); margin-top: 14px; display:flex; align-items:center; gap:8px; }
.section--navy .cta-note { color: rgba(255,255,255,.6); }

/* ============================================================
   Badges / chips / pills
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,106,24,.1); color: var(--accent);
  border: 1px solid rgba(255,106,24,.22);
}
.badge--cyan { background: rgba(19,195,214,.12); color: #0a8b99; border-color: rgba(19,195,214,.28); }
.badge--navy { background: rgba(12,33,80,.07); color: var(--navy); border-color: var(--line); }
.badge--ghost { background: rgba(255,255,255,.08); color:#fff; border-color: rgba(255,255,255,.2); }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 13.5px; font-weight: 700;
  padding: 9px 15px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--line);
  color: var(--ink-2);
}
.section--paper .chip { background:#fff; }

/* ============================================================
   Generic cards
   ============================================================ */
.card {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.grid { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px){ .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .g-4 { grid-template-columns: 1fr; } }

/* Tokyari content tiles (clean, edge-to-edge image) */
.tcard { background:#fff; border:1px solid var(--line-soft); border-radius: var(--r); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.tcard__l { padding: 13px 16px; font-weight:800; font-size:14px; line-height:1.45; }

/* ============================================================
   Image placeholders (striped — swap for real assets)
   ============================================================ */
.ph {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(135deg,
      rgba(12,33,80,.05) 0 12px, rgba(12,33,80,.02) 12px 24px);
  border: 1px dashed rgba(12,33,80,.18);
  border-radius: var(--r);
  color: var(--ink-3);
  overflow: hidden;
  min-height: 160px;
}
.ph span {
  font-family: "Archivo", monospace;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255,255,255,.78);
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.ph--dark {
  background-color: #0c1b3d;
  background-image: repeating-linear-gradient(135deg,
      rgba(255,255,255,.05) 0 12px, rgba(255,255,255,.02) 12px 24px);
  border-color: rgba(255,255,255,.16);
}
.ph--dark span { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.2); }
.ph--ratio { aspect-ratio: 4/3; min-height: 0; }
.ph--wide { aspect-ratio: 16/9; min-height: 0; }
.ph--sq { aspect-ratio: 1/1; min-height: 0; }
.ph--portrait { aspect-ratio: 3/4; min-height: 0; }

/* logo placeholder (wordmark style) */
.logo-ph {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-en); font-weight: 800; letter-spacing: -.01em;
}
.logo-ph .dot { width: 10px; height: 10px; border-radius: 3px; background: var(--accent); transform: rotate(45deg); }

/* ============================================================
   Sticky header
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gut);
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled { border-color: var(--line-soft); box-shadow: var(--shadow-sm); padding-block: 10px; }
.nav__brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.nav__brand .logo-ph { font-size: 19px; color: var(--navy); }
.nav__logo { height: clamp(20px, 2.4vw, 28px); width: auto; display: block; }
.nav__links { display: flex; gap: 26px; align-items: center; }
.nav__links a { font-size: 14px; font-weight: 700; color: var(--ink-2); transition: color .2s; white-space: nowrap; }
.nav__links a:hover { color: var(--accent); }
.nav__cta { padding: 11px 20px; font-size: 14px; }
@media (max-width: 920px) { .nav__links { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; isolation: isolate;
  background: var(--navy-deep);
  color: #fff;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero__glow::before, .hero__glow::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
}
.hero__glow::before { width: 60vw; height: 60vw; top: -22vw; right: -14vw; background: radial-gradient(circle, rgba(255,106,24,.55), transparent 65%); }
.hero__glow::after  { width: 55vw; height: 55vw; bottom: -28vw; left: -18vw; background: radial-gradient(circle, rgba(19,195,214,.45), transparent 65%); }
.hero__grid-bg {
  position:absolute; inset:0; z-index:-1; opacity:.4;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 78%);
}
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.82);
  margin-bottom: 26px;
}
.hero__title {
  font-weight: 900;
  font-size: clamp(33px, 6.4vw, 70px);
  line-height: 1.16;
  letter-spacing: -.02em;
  text-wrap: balance;
  word-break: auto-phrase;
}
.hero__title .hl { color: var(--accent); }
.hero__title .hl2 { color: var(--accent-2); }
.hero__title .quiet { display:block; font-size: .62em; color: rgba(255,255,255,.9); margin-top: .35em; font-weight:700; letter-spacing:0; }
.hero__sub {
  margin-top: 26px;
  font-size: clamp(15px, 1.9vw, 19px);
  line-height: 1.9;
  color: rgba(255,255,255,.82);
  max-width: 44ch;
  text-wrap: pretty;
}
.hero__cta { margin-top: 36px; }
.hero__trust { margin-top: 26px; display:flex; align-items:center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.6); }
.hero__trust .div { width:1px; height:14px; background: rgba(255,255,255,.25); }

/* hero side stat panel */
.hero__panel {
  background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2.4vw, 30px);
  box-shadow: var(--shadow-navy);
  backdrop-filter: blur(8px);
}
.hero__panel-label { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 16px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hstat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 16px 16px 14px; }
.hstat__n { font-family: var(--font-en); font-weight: 800; font-size: clamp(26px, 3.4vw, 38px); line-height: 1; color: #fff; letter-spacing: -.02em; }
.hstat__n .u { font-size: .5em; margin-left: 3px; color: var(--accent); }
.hstat__l { font-size: 12px; color: rgba(255,255,255,.66); margin-top: 8px; line-height: 1.45; }
.hstat--wide { grid-column: 1 / -1; display:flex; align-items:center; justify-content:space-between; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { order: 2; }
}

/* ---- Photo banner (top) + statbar hero ---- */
.herobanner {
  position: relative; width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 88vh;
  background: var(--navy-deep);
  overflow: hidden;
}
.herobanner__media {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
  color: rgba(255,255,255,.85);
  background-color: #0c1b3d;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.085) 0 13px, rgba(255,255,255,.03) 13px 26px);
  font-weight: 700;
}
.herobanner__fade {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(0deg, var(--navy-deep) 0%, rgba(6,15,42,.35) 8%, rgba(6,15,42,0) 24%),
              linear-gradient(180deg, rgba(6,15,42,.4) 0%, rgba(6,15,42,0) 18%);
}
.herobanner__cap { position: absolute; left: var(--gut); bottom: clamp(18px, 3vw, 30px); z-index: 3; pointer-events: none; }
.herobanner + .hero { padding-top: clamp(40px, 6vw, 72px); }
.hero__content { display: block; }
.hero--photo .hero__glow { opacity: .55; }

.hero__statbar { margin-top: clamp(34px, 5vw, 52px); display: flex; flex-wrap: wrap; gap: 12px; max-width: 880px; }
.hstat-chip {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px); border-radius: 14px; padding: 14px 18px;
  flex: 1 1 150px; min-width: 0;
}
.hstat-chip__n { display: block; font-family: var(--font-en); font-weight: 800; font-size: clamp(23px, 2.8vw, 32px); line-height: 1; letter-spacing: -.02em; color: #fff; }
.hstat-chip__n i { font-style: normal; font-size: .5em; color: var(--accent); margin-left: 3px; }
.hstat-chip__l { display: block; font-size: 12px; color: rgba(255,255,255,.7); margin-top: 9px; line-height: 1.4; }
@media (max-width: 560px) { .hstat-chip { flex: 1 1 calc(50% - 6px); } }

/* ============================================================
   Stat strip
   ============================================================ */
.statstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,2vw,24px); }
.statstrip .stat { text-align: center; padding: 8px; }
.stat__n { font-family: var(--font-en); font-weight: 800; font-size: clamp(34px, 5vw, 56px); line-height: 1; letter-spacing: -.03em; color: var(--navy); }
.stat__n .u { font-size: .42em; color: var(--accent); margin-left: 4px; }
.stat__l { margin-top: 12px; font-size: 13.5px; color: var(--ink-2); font-weight: 700; }
.section--navy .stat__n { color: #fff; }
.section--navy .stat__l { color: rgba(255,255,255,.7); }
@media (max-width: 700px){ .statstrip { grid-template-columns: repeat(2,1fr); row-gap: 28px; } }

/* ============================================================
   Two-experience columns (引越マルシェ / トーキャリ)
   ============================================================ */
.dual { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px, 2vw, 28px); align-items: stretch; }
.dual__x {
  align-self: center;
  font-family: var(--font-en); font-weight: 900; font-size: clamp(28px, 4vw, 48px);
  color: var(--accent); writing-mode: horizontal-tb;
}
.exp {
  border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px);
  position: relative; overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #fff; box-shadow: var(--shadow-sm);
}
.exp__top { height: 5px; position: absolute; inset: 0 0 auto 0; }
.exp--marche .exp__top { background: var(--accent); }
.exp--toky .exp__top { background: var(--accent-2); }
.exp__kicker { font-family: var(--font-en); font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.exp--marche .exp__kicker { color: var(--accent); }
.exp--toky .exp__kicker { color: #0a8b99; }
.exp__name { font-size: clamp(22px, 3vw, 30px); font-weight: 900; margin-top: 8px; letter-spacing: -.01em; }
.exp__name .sub { display:block; font-size: 13px; color: var(--ink-3); font-weight:700; font-family: var(--font-en); letter-spacing:.04em; margin-top:4px; }
.exp__desc { color: var(--ink-2); margin-top: 14px; font-size: 15px; }
.exp__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.exp__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink); font-weight: 500; }
.exp__list li::before {
  content: ""; flex: 0 0 auto; width: 20px; height: 20px; border-radius: 6px; margin-top: 2px;
  background: rgba(255,106,24,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FF6A18' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.exp--toky .exp__list li::before {
  background-color: rgba(19,195,214,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a8b99' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.exp__badge { position:absolute; top: 20px; right: 20px; }
@media (max-width: 820px){
  .dual { grid-template-columns: 1fr; }
  .dual__x { transform: rotate(90deg); }
}

/* ============================================================
   Feature cards (なぜ就活に強い)
   ============================================================ */
.feat { position: relative; }
.feat__no { font-family: var(--font-en); font-weight: 800; font-size: 15px; color: var(--accent); letter-spacing: .1em; }
.feat__ic { width: 52px; height: 52px; border-radius: 14px; display:grid; place-items:center; background: var(--navy); color:#fff; margin-bottom: 18px; }
.feat__ic svg { width: 26px; height: 26px; }
.feat h3 { font-size: 20px; font-weight: 900; margin: 12px 0 10px; letter-spacing: -.01em; }
.feat p { color: var(--ink-2); font-size: 14.5px; }

/* ============================================================
   Logo wall (内定実績)
   ============================================================ */
.logowall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.logowall__cell {
  background: #fff; aspect-ratio: 16/7; display: grid; place-items: center;
  font-weight: 800; font-size: clamp(12px, 1.5vw, 16px); color: var(--ink-2);
  padding: 10px; text-align: center; transition: background .2s, color .2s;
}
.logowall__cell:hover { background: var(--navy); color: #fff; }
.industry-tabs { display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 24px; }
.itab {
  font-size: 13.5px; font-weight: 800; padding: 9px 17px; border-radius: 999px;
  border: 1.5px solid var(--line); color: var(--ink-2); background:#fff; transition: all .2s;
}
.itab[aria-selected="true"] { background: var(--navy); color:#fff; border-color: var(--navy); }
@media (max-width: 760px){ .logowall { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   Diagram (三者図 / 掛け算 / 課金モデル)
   ============================================================ */
.diagram { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 4vw, 54px); box-shadow: var(--shadow-md); }
.dnode {
  border-radius: var(--r); padding: 18px 16px; text-align:center;
  border: 1.5px solid var(--line); background: var(--paper); font-weight: 800;
}
.dnode .t { font-size: 15px; }
.dnode .s { font-size: 12px; color: var(--ink-3); font-weight: 600; margin-top: 4px; }
.dnode--hub { background: var(--navy); color:#fff; border-color: var(--navy); box-shadow: var(--shadow-md); }
.dnode--hub .s { color: rgba(255,255,255,.7); }
.dnode--accent { border-color: var(--accent); }

/* cross diagram */
.cross { display:grid; grid-template-columns: 1fr auto 1fr; gap: clamp(14px,2vw,30px); align-items:center; }
.cross__col { background: var(--paper); border:1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px,2.5vw,30px); }
.cross__col h4 { font-size: 18px; font-weight:900; display:flex; align-items:center; gap:10px; }
.cross__col h4 .tag { font-size:11px; font-family:var(--font-en); font-weight:800; letter-spacing:.1em; padding:4px 9px; border-radius:6px; }
.cross--marche h4 .tag { background: rgba(255,106,24,.14); color: var(--accent); }
.cross--toky h4 .tag { background: rgba(19,195,214,.16); color:#0a8b99; }
.cross__col ul { list-style:none; padding:0; margin:16px 0 0; display:grid; gap:9px; }
.cross__col li { font-size: 14px; color: var(--ink-2); padding-left: 18px; position: relative; }
.cross__col li::before { content:"›"; position:absolute; left:2px; color: var(--accent); font-weight:900; }
.cross--toky li::before { color:#0a8b99; }
.cross__op { font-family: var(--font-en); font-weight:900; font-size: clamp(30px,5vw,56px); color: var(--navy); text-align:center; }
.cross__out { margin-top: 22px; text-align:center; font-weight:900; font-size: clamp(17px,2.4vw,24px); }
.cross__out .hl { color: var(--accent); }
@media (max-width: 760px){ .cross { grid-template-columns: 1fr; } .cross__op { transform: rotate(90deg); } }

/* business model bar (400社無料 → 401社課金) */
.bizmodel { display:grid; grid-template-columns: 1fr auto 1fr; align-items:stretch; gap: 0; border-radius: var(--r-lg); overflow:hidden; border:1px solid var(--line); }
.bm__phase { padding: clamp(22px,3vw,34px); }
.bm__phase--free { background: rgba(19,195,214,.08); }
.bm__phase--paid { background: rgba(255,106,24,.07); }
.bm__arrow { display:grid; place-items:center; background: var(--navy); color:#fff; padding: 0 18px; font-family: var(--font-en); font-weight:900; }
.bm__tag { font-family: var(--font-en); font-weight:800; font-size:12px; letter-spacing:.1em; text-transform:uppercase; }
.bm__phase--free .bm__tag { color:#0a8b99; }
.bm__phase--paid .bm__tag { color: var(--accent); }
.bm__n { font-family:var(--font-en); font-weight:900; font-size: clamp(30px,4.5vw,48px); line-height:1; margin:8px 0 6px; letter-spacing:-.02em; }
.bm__h { font-weight:900; font-size: 17px; margin-bottom:8px; }
.bm__p { font-size: 13.5px; color: var(--ink-2); }
@media (max-width:760px){ .bizmodel { grid-template-columns:1fr; } .bm__arrow { padding:14px; } }

/* ============================================================
   Step flow (業務フロー)
   ============================================================ */
.flow { display:grid; gap: 14px; }
.fstep { display:grid; grid-template-columns: auto 1fr; gap: 20px; align-items:flex-start; background:#fff; border:1px solid var(--line-soft); border-radius: var(--r); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.fstep__n { font-family:var(--font-en); font-weight:900; font-size: 22px; width:46px; height:46px; border-radius:12px; background: var(--paper); color: var(--navy); display:grid; place-items:center; border:1px solid var(--line); }
.fstep--hot .fstep__n { background: var(--accent); color:#fff; border-color: var(--accent); }
.fstep h4 { font-size: 16.5px; font-weight: 900; }
.fstep p { font-size: 13.5px; color: var(--ink-2); margin-top: 4px; }

/* ============================================================
   Skills two-col
   ============================================================ */
.skillcols { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.5vw,32px); }
.skillcard { border-radius: var(--r-lg); padding: clamp(24px,3vw,34px); border:1px solid var(--line); }
.skillcard--marche { background: linear-gradient(180deg,#fff, #fff7f2); }
.skillcard--toky { background: linear-gradient(180deg,#fff,#f2fcfd); }
.skillcard h3 { font-size: 20px; font-weight:900; display:flex; align-items:center; gap:10px; }
.skill-tags { display:flex; flex-wrap:wrap; gap:9px; margin-top:18px; }
.skill-tags span { font-size:13px; font-weight:700; padding:8px 13px; border-radius:9px; background:#fff; border:1px solid var(--line); }
@media (max-width:760px){ .skillcols { grid-template-columns:1fr; } }

/* ============================================================
   KPI dashboard
   ============================================================ */
.dash { background: var(--navy-deep); border-radius: var(--r-xl); padding: clamp(22px,3vw,36px); color:#fff; box-shadow: var(--shadow-navy); }
.dash__head { display:flex; justify-content:space-between; align-items:center; margin-bottom: 22px; flex-wrap:wrap; gap:10px; }
.dash__title { font-weight:900; font-size: 17px; display:flex; align-items:center; gap:10px; }
.dash__live { font-family:var(--font-en); font-size:11px; font-weight:700; letter-spacing:.12em; color: var(--green); display:flex; align-items:center; gap:7px; }
.dash__live::before { content:""; width:8px;height:8px;border-radius:50%; background: var(--green); box-shadow:0 0 0 0 rgba(20,193,115,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(20,193,115,.5);} 70%{box-shadow:0 0 0 9px rgba(20,193,115,0);} 100%{box-shadow:0 0 0 0 rgba(20,193,115,0);} }
.dash__grid { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:12px; }
/* leaderboard (ランキングアプリ イメージ) */
.lb { display:grid; gap:6px; }
.lb__row { display:grid; grid-template-columns: 42px 1fr auto auto; gap:10px; align-items:center; padding:11px 12px; border-radius:10px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); }
.lb__row--head { background:transparent; border:0; padding:2px 12px; font-size:11px; color:rgba(255,255,255,.5); font-weight:700; }
.lb__row--head span:nth-child(3), .lb__row--head span:nth-child(4) { text-align:right; }
.lb__rk { font-family:var(--font-en); font-weight:800; color:rgba(255,255,255,.85); font-size:14px; }
.lb__nm { font-weight:800; font-size:14px; color:#fff; }
.lb__nm i { font-style:normal; font-weight:600; font-size:11px; color:rgba(255,255,255,.5); margin-left:7px; }
.lb__v { font-family:var(--font-en); font-weight:800; color:#fff; text-align:right; font-size:15px; }
.lb__s { font-family:var(--font-en); font-weight:700; color:var(--accent-2); text-align:right; font-size:12.5px; }
.lb__row--1 { background:linear-gradient(90deg, rgba(255,193,7,.18), rgba(255,255,255,.04)); border-color:rgba(255,193,7,.32); }
.lb__row--2 { background:linear-gradient(90deg, rgba(205,210,220,.16), rgba(255,255,255,.04)); }
.lb__row--3 { background:linear-gradient(90deg, rgba(255,140,60,.16), rgba(255,255,255,.04)); }
.kpi { background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius: var(--r); padding:16px 14px; display:flex; flex-direction:column; min-height:132px; }
.kpi__l { font-size:12px; color: rgba(255,255,255,.6); line-height:1.35; min-height:2.7em; }
.kpi__v { font-family:var(--font-en); font-weight:800; font-size: clamp(20px,2.5vw,30px); margin-top:8px; letter-spacing:-.02em; white-space:nowrap; }
.kpi__v .u { font-size:.45em; color: var(--accent-2); margin-left:2px; vertical-align:baseline; letter-spacing:0; }
.kpi__bar { height:6px; border-radius:999px; background: rgba(255,255,255,.12); margin-top:auto; overflow:hidden; }
.kpi__bar i { display:block; height:100%; border-radius:999px; background: linear-gradient(90deg,var(--accent),var(--accent-2)); }
@media (max-width:760px){ .dash__grid { grid-template-columns: repeat(2,minmax(0,1fr));} }

/* rank ladder */
.ladder { display:grid; gap:8px; }
.rung { display:grid; grid-template-columns: auto 1fr auto; align-items:center; gap:14px; padding:13px 18px; border-radius: var(--r); border:1px solid var(--line); background:#fff; }
.rung__i { font-family:var(--font-en); font-weight:800; color: var(--ink-3); width:24px; }
.rung__name { font-weight:800; }
.rung__pay { font-family:var(--font-en); font-weight:800; color: var(--navy); }
.rung--top { background: var(--navy); color:#fff; border-color:var(--navy); }
.rung--top .rung__i { color: var(--accent-2);} .rung--top .rung__pay { color:#fff;}

/* ============================================================
   Culture / gallery
   ============================================================ */
.gallery { display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 12px; }
.gallery .ph { min-height: 0; height: 100%; }
.photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); display: block; background: var(--paper-2); }
.gallery .photo { height: 100%; }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
@media (max-width:760px){ .gallery { grid-template-columns: repeat(2,1fr); } .gallery .g-wide { grid-column: span 2; } }

/* event list */
.events { display:flex; flex-wrap:wrap; gap:10px; }
.event-chip { display:flex; align-items:center; gap:9px; font-weight:800; font-size:14px; padding:11px 18px; border-radius:999px; background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.event-chip .e { font-size:16px; }

/* ============================================================
   Testimonials
   ============================================================ */
.voices { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,24px); }
.voice { background:#fff; border:1px solid var(--line-soft); border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; }
.voice__photo { aspect-ratio: 5/4; }
img.voice__photo { width:100%; object-fit: cover; object-position: 50% 28%; display:block; }
.voice__body { padding: 22px; display:flex; flex-direction:column; gap:12px; }
.voice__quote { font-weight:900; font-size: 17px; line-height:1.5; letter-spacing:-.01em; }
.voice__text { font-size: 13.5px; color: var(--ink-2); }
.voice__meta { margin-top:auto; display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--line-soft); padding-top:14px; }
.voice__who { font-size:13px; font-weight:800; }
.voice__who span { display:block; font-size:11.5px; color: var(--ink-3); font-weight:600; }
.voice__dest { font-size:11px; font-weight:800; padding:5px 10px; border-radius:7px; background:rgba(12,33,80,.06); color: var(--navy); }
@media (max-width:860px){ .voices { grid-template-columns:1fr; } }

/* ============================================================
   Fit / not-fit
   ============================================================ */
.fit { display:grid; grid-template-columns:1fr 1fr; gap: clamp(16px,2.5vw,28px); }
.fitcard { border-radius: var(--r-lg); padding: clamp(24px,3vw,34px); }
.fitcard--yes { background: var(--navy-deep); color:#fff; }
.fitcard--no { background: var(--paper); border:1px solid var(--line); }
.fitcard h3 { font-size: 20px; font-weight:900; display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.fitcard ul { list-style:none; padding:0; margin:0; display:grid; gap:13px; }
.fitcard li { display:flex; gap:12px; font-size:14.5px; align-items:flex-start; }
.fitcard--yes li { color: rgba(255,255,255,.9); }
.fitcard--no li { color: var(--ink-2); }
.fit-ic { flex:0 0 auto; width:22px; height:22px; border-radius:7px; display:grid; place-items:center; font-weight:900; font-size:13px; margin-top:1px; }
.fitcard--yes .fit-ic { background: var(--green); color:#fff; }
.fitcard--no .fit-ic { background: #fff; color: var(--ink-3); border:1px solid var(--line); }
@media (max-width:760px){ .fit { grid-template-columns:1fr; } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 820px; margin-inline:auto; display:grid; gap:12px; }
.qa { background:#fff; border:1px solid var(--line); border-radius: var(--r); overflow:hidden; transition: box-shadow .2s; }
.qa[open] { box-shadow: var(--shadow-md); }
.qa summary { list-style:none; cursor:pointer; display:flex; align-items:center; gap:16px; padding: 20px 22px; font-weight:800; font-size: 15.5px; }
.qa summary::-webkit-details-marker { display:none; }
.qa summary .q { font-family:var(--font-en); color: var(--accent); font-weight:900; }
.qa summary .pm { margin-left:auto; flex:0 0 auto; width:26px;height:26px; position:relative; }
.qa summary .pm::before, .qa summary .pm::after { content:""; position:absolute; inset:50% 4px auto; height:2.5px; background: var(--navy); border-radius:2px; transition: transform .25s; }
.qa summary .pm::after { transform: rotate(90deg); }
.qa[open] summary .pm::after { transform: rotate(0); }
.qa__a { padding: 0 22px 22px 58px; color: var(--ink-2); font-size: 14.5px; }

/* ============================================================
   Sticky bottom CTA (mobile-first)
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px) saturate(180%);
  border-top: 1px solid var(--line);
  padding: 10px var(--gut);
  display: flex; align-items: center; gap: 14px; justify-content: space-between;
  transform: translateY(110%); transition: transform .35s var(--ease);
  box-shadow: 0 -10px 30px rgba(10,22,51,.08);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta__txt { font-weight:900; font-size: 14px; line-height:1.3; }
.sticky-cta__txt span { display:block; font-size:11.5px; color: var(--ink-3); font-weight:700; }
.sticky-cta__btns { display:flex; gap:10px; }
@media (max-width: 620px){
  .sticky-cta__txt { display:none; }
  .sticky-cta { justify-content:stretch; }
  .sticky-cta__btns { flex:1; }
  .sticky-cta__btns .btn { flex:1; }
}

/* ============================================================
   Final CTA band
   ============================================================ */
.finalcta { position:relative; isolation:isolate; background: var(--navy-deep); color:#fff; overflow:hidden; }
.finalcta .hero__glow { z-index:-1; }
.finalcta__inner { text-align:center; max-width: 760px; margin-inline:auto; }
.finalcta h2 { font-size: clamp(30px,5.5vw,58px); font-weight:900; line-height:1.18; letter-spacing:-.02em; text-wrap:balance; word-break: auto-phrase; }
.finalcta h2 .hl { color: var(--accent); }
.finalcta p { color: rgba(255,255,255,.8); margin: 22px auto 0; font-size: clamp(15px,1.9vw,18px); line-height:1.9; max-width: 58ch; }
.finalcta .cta-row { justify-content:center; margin-top: 38px; }

/* ============================================================
   Application form
   ============================================================ */
.formcard { background:#fff; color: var(--ink); border:1px solid var(--line); border-radius: var(--r-xl); padding: clamp(26px,3.5vw,44px); box-shadow: var(--shadow-lg); max-width: 100%; }
.field { margin-bottom: 18px; min-width: 0; }
.field label { display:block; font-weight:800; font-size: 13.5px; margin-bottom:8px; }
.field label .req { color: var(--accent); margin-left:5px; font-size:12px; }
.field label .opt { color: var(--ink-3); margin-left:6px; font-size:11px; font-weight:700; }
.field input, .field select, .field textarea {
  width:100%; max-width:100%; min-width:0; box-sizing:border-box; -webkit-appearance:none; appearance:none;
  font-family:inherit; font-size:16px; font-weight:500;
  padding: 13px 15px; border-radius: 11px; border:1.5px solid var(--line); background: var(--paper);
  color: var(--ink); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--accent); background:#fff; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233A4566' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field-row > .field { min-width: 0; }
@media (max-width:560px){ .field-row { grid-template-columns:1fr; } }

/* ============================================================
   Articles (owned media)
   ============================================================ */
.articles { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,24px); }
.acard { background:#fff; border:1px solid var(--line-soft); border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; display:flex; flex-direction:column; }
.acard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.acard__img { aspect-ratio: 16/10; }
img.acard__img { width:100%; object-fit: cover; display:block; }
.acard__body { padding: 22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.acard__cat { font-family:var(--font-en); font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color: var(--accent); }
.acard__title { font-size: 17px; font-weight:900; line-height:1.45; letter-spacing:-.01em; }
.acard__more { margin-top:auto; font-size:13px; font-weight:800; color: var(--navy); display:flex; align-items:center; gap:6px; }
@media (max-width:860px){ .articles { grid-template-columns:1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-block: clamp(48px,6vw,72px); }
.footer__grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand .logo-ph { color:#fff; font-size: 22px; }
.footer__brand p { font-size: 13px; margin-top:14px; max-width: 36ch; line-height:1.8; }
.footer h5 { color:#fff; font-size:13px; font-weight:800; letter-spacing:.06em; margin-bottom:14px; }
.footer ul { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.footer a { font-size:13.5px; transition:color .2s; }
.footer a:hover { color: var(--accent-2); }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12px; color: rgba(255,255,255,.5); }
@media (max-width:760px){ .footer__grid { grid-template-columns:1fr; gap:30px; } }

/* ============================================================
   Article reading page
   ============================================================ */
.article { max-width: 760px; margin-inline:auto; }
.article__hero { padding-top: clamp(110px,14vh,150px); padding-bottom: 40px; }
.article h1 { font-size: clamp(28px,4.6vw,46px); font-weight:900; line-height:1.3; letter-spacing:-.01em; margin: 18px 0; text-wrap:balance; word-break: auto-phrase; }
.article__meta { display:flex; gap:14px; align-items:center; font-size:13px; color: var(--ink-3); font-weight:700; }
.article__body { font-size: 16.5px; line-height: 2; color: var(--ink); }
.article__body h2 { font-size: clamp(22px,3vw,30px); font-weight:900; margin: 48px 0 18px; letter-spacing:-.01em; }
.article__body h3 { font-size: 19px; font-weight:900; margin: 32px 0 12px; }
.article__body p { margin-bottom: 22px; color: var(--ink-2); }
.article__body strong { color: var(--ink); font-weight:800; background: linear-gradient(transparent 62%, rgba(255,106,24,.22) 62%); }
.article__body ul, .article__body ol { margin: 0 0 22px; padding-left: 24px; color: var(--ink-2); display:grid; gap:8px; }
.article__body blockquote { margin: 28px 0; padding: 22px 26px; background: var(--paper); border-left: 4px solid var(--accent); border-radius: 0 var(--r) var(--r) 0; font-weight:700; color: var(--ink); }
.article__body figure { margin: 32px 0; }
.article__body figcaption { font-size:12px; color:var(--ink-3); text-align:center; margin-top:10px; font-weight:600; }
.pullbox { background: var(--navy-deep); color:#fff; border-radius: var(--r-lg); padding: clamp(24px,3vw,36px); margin: 36px 0; }
.pullbox h4 { color:#fff; font-size:18px; font-weight:900; margin-bottom:10px; }
.pullbox p { color: rgba(255,255,255,.8); margin:0; font-size:14.5px; }

/* animation utility */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity:1; transform:none; }
}

/* tiny inline divider */
.softline { height:1px; background: var(--line); border:0; margin: 0; }

/* ============================================================
   MOBILE OPTIMISATION  (≤640px)
   スマホでの多カラム崩れ・テキスト見切れ・間延びを一括補正
   ============================================================ */
@media (max-width: 640px) {
  /* --- 内定先ロゴウォール：2列・高さ自動・文字折り返し --- */
  .logowall { grid-template-columns: repeat(2, 1fr); }
  .logowall__cell {
    aspect-ratio: auto;
    min-height: 64px;
    padding: 12px 8px;
    font-size: 13px;
    line-height: 1.35;
    word-break: auto-phrase;
    overflow-wrap: anywhere;
  }
  /* 業界タブ：横スクロールできる一列に */
  .industry-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--gut) * -1);
    padding-inline: var(--gut);
  }
  .industry-tabs::-webkit-scrollbar { display: none; }
  .itab { flex: 0 0 auto; }

  /* --- 3〜4カラムを縦積み（間延び防止） --- */
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  /* マルシェ三者図の課題/解決/将来、トーキャリの4タイルだけは2列キープが見やすい */
  #marche .diagram .g-3 { grid-template-columns: 1fr; }
  #tokyari .grid.g-4 { grid-template-columns: repeat(2, 1fr); }
  /* バッジが縦一列に割れるのを防止（引越マルシェ／トーキャリ等） */
  .badge { white-space: nowrap; }

  /* 実績ストリップ：2列のまま間隔調整 */
  .statstrip { gap: 22px 14px; }
  .stat__n { font-size: clamp(30px, 12vw, 44px); }

  /* KPIダッシュボード：2列キープ */
  .dash__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  /* 2つの経験 dual の×印を水平のまま中央に */
  .dual__x { transform: none; font-size: 30px; padding: 4px 0; text-align: center; }

  /* 掛け合わせ・課金モデルの演算子記号 */
  .cross__op, .bm__arrow { padding: 10px; }
  /* 課金モデルは縦並びなので矢印を↓に */
  .bm__arrow { font-size: 0; padding: 12px; }
  .bm__arrow::after { content: "\2193"; font-size: 24px; line-height: 1; }

  /* セクション見出し・本文の収まり */
  .h-sec { font-size: clamp(26px, 8.4vw, 38px); }
  .hero__title { font-size: clamp(31px, 10vw, 46px); }

  /* 最終CTAの2カラム→1カラム、フォーム余白調整 */
  .formcard { padding: 22px 18px; }

  /* ヒーローのスタットバー：2列で詰まり防止 */
  .hero__statbar { gap: 10px; }
  .hstat-chip { flex: 1 1 calc(50% - 5px); padding: 12px 14px; }

  /* スティッキー下部CTA：テキスト隠れる分ボタンを大きく */
  .sticky-cta { padding: 9px 14px; gap: 10px; }
  .sticky-cta__btns .btn { padding: 13px 16px; font-size: 14px; }

  /* カルチャーギャラリー：はみ出し防止 */
  .gallery { grid-template-columns: repeat(2, 1fr); }

  /* 記事カード・先輩の声は1列（既存）＋画像比率維持 */
  .voice__quote { font-size: 16px; }

  /* ボタンの最小タップ領域確保 */
  .btn { min-height: 48px; }
}

/* さらに狭い端末（≤400px）：トーキャリ4タイルも1列に */
@media (max-width: 400px) {
  #tokyari .grid.g-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}
