:root {
  --black: #000000;
  --cyan: #00ffff;
  --peri: #9ca5ff;
  --pink: #ff7ad9;
  --mono: "Space Mono", monospace;
  --disp: "Chakra Petch", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* gradual fade-to-black used by the hidden "ascension" transition into login,
   and by the COMPANY rocket launch (which fades back in on the company section) */
#whiteout {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0;
  background: #03070b;
}

/* COMPANY launch: a light streak leaves the clicked nav pill and converges on
   the centre of the screen, where the rocket forms. --x/--y are set in JS to
   the pill's centre. z-index sits just under #whiteout so the fade covers it. */
#navtrail {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0;
}
#navtrail.is-firing { animation: navtrail-fire 0.66s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
#navtrail::before { /* the travelling head of light */
  content: ""; position: absolute;
  left: var(--x, 50%); top: var(--y, 50%);
  width: 10px; height: 10px; margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(241,201,107,0.9) 40%, transparent 70%);
  box-shadow: 0 0 30px 8px rgba(241,201,107,0.55);
  animation: navtrail-head 0.62s cubic-bezier(0.5, 0, 0.85, 0.35) forwards;
}
#navtrail::after { /* the streak it drags behind, stretched toward the centre */
  content: ""; position: absolute;
  left: var(--x, 50%); top: var(--y, 50%);
  width: 3px; height: 3px; margin: -1.5px 0 0 -1.5px;
  border-radius: 50%;
  box-shadow:
    0 0 22px 5px rgba(241,201,107,0.45),
    0 0 60px 14px rgba(120,200,255,0.18);
  animation: navtrail-tail 0.62s ease-out forwards;
}
@keyframes navtrail-fire { from { opacity: 1; } 80% { opacity: 1; } to { opacity: 0; } }
/* travel from the pill to the centre of the viewport, growing as it arrives */
@keyframes navtrail-head {
  from { transform: translate(0, 0) scale(0.5); }
  70%  { transform: translate(calc(50vw - var(--x, 50%)), calc(50vh - var(--y, 50%))) scale(2.4); }
  to   { transform: translate(calc(50vw - var(--x, 50%)), calc(50vh - var(--y, 50%))) scale(6); opacity: 0; }
}
@keyframes navtrail-tail {
  from { transform: translate(0, 0) scale(1); opacity: 0.9; }
  to   { transform: translate(calc(50vw - var(--x, 50%)), calc(50vh - var(--y, 50%))) scale(14); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  #navtrail.is-firing, #navtrail::before, #navtrail::after { animation-duration: 0.01s; }
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: var(--mono);
  -webkit-font-smoothing: antialiased;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#Stage { position: fixed; inset: 0; width: 100%; height: 100%; }

#scene { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* Subtle dark vignette over the canvas */
.vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(20,55,60,0.30) 0%, rgba(0,0,0,0) 45%),
    radial-gradient(120% 120% at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
}

/* ===== Loader ===== */
.loader {
  position: fixed; inset: 0; z-index: 50;
  background: #000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  transition: opacity 1s ease 0.2s, visibility 0s linear 1.2s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
/* reload / back-forward / return-from-subpage: no intro loader at all */
.skip-intro .loader { display: none !important; }

.loader__logo {
  font-family: var(--disp); font-weight: 600;
  font-size: clamp(22px, 4vw, 40px);
  letter-spacing: 0.5em; text-indent: 0.5em;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-shadow: 0 0 24px rgba(156,165,255,0.35);
}
.loader__logo span {
  font-size: clamp(9px, 1.4vw, 12px);
  letter-spacing: 0.62em; text-indent: 0.62em;
  color: var(--peri); opacity: 0.8;
}
.loader__count {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
}
.loader__count i { font-style: normal; opacity: 0.5; margin-left: 2px; }
.loader__bar {
  width: min(240px, 60vw); height: 1px; background: rgba(255,255,255,0.14); overflow: hidden;
}
.loader__bar span {
  display: block; width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--peri));
  box-shadow: 0 0 10px var(--cyan);
  transition: width 0.3s ease;
}

/* ===== Navigation (top-center pill) =====
   left/right を 0 にして中央寄せする。translateX(-50%) で寄せると
   フェードインの transform（translateY -> none）と打ち消し合うため使わない。 */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 5;
  padding: 34px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 1.2s ease 0.3s, transform 1.2s ease 0.3s;
  pointer-events: none; /* 全幅の帯が背後の3Dのドラッグ/クリックを奪わないように */
}
.nav__pill { pointer-events: auto; }
.nav.is-in { opacity: 1; transform: none; }

.nav__pill {
  display: flex; align-items: center; gap: 44px;
  padding: 11px 40px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 0 24px rgba(0,0,0,0.4), inset 0 0 12px rgba(120,160,160,0.06);
}
.nav__link {
  position: relative;
  font-family: var(--disp); font-weight: 500;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.62); text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.nav__link:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.6); }
/* current section — the underline sweeps in from the left */
.nav__link.is-active { color: #fff; text-shadow: 0 0 12px rgba(120,255,230,0.45); }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120,255,230,0.95), transparent);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__link.is-active::after { transform: scaleX(1); }


/* ===== Bottom-left URL stamp ===== */

/* ===== Service card detail modal ===== */
.cardmodal {
  --accent: #4bd1c8;
  position: fixed; inset: 0; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  padding: 5vh 5vw;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
.cardmodal.is-open { opacity: 1; pointer-events: auto; }
.cardmodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 7, 12, 0.62);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}
.cardmodal__panel {
  position: relative;
  width: min(880px, 100%); max-height: 90vh; overflow-y: auto;
  padding: 52px 58px 46px;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, rgba(255,255,255,0.18));
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 16%, rgba(16,20,28,0.86)), rgba(10,13,20,0.92));
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px color-mix(in srgb, var(--accent) 30%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(26px) scale(0.965);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), opacity 0.45s ease;
}
.cardmodal.is-open .cardmodal__panel { transform: translateY(0) scale(1); opacity: 1; }
.cardmodal__close {
  position: absolute; top: 16px; right: 18px;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.75);
  font-size: 20px; line-height: 1; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.cardmodal__close:hover { background: rgba(255,255,255,0.14); color: #fff; transform: rotate(90deg); }
.cardmodal__cat {
  margin: 0 0 14px; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.cardmodal__title {
  margin: 0 0 16px; font-family: "Shippori Mincho", serif; font-weight: 600;
  font-size: clamp(18px, 2.0vw, 24px); line-height: 1.4; color: #fff;
}
.cardmodal__catch {
  margin: 0 0 18px; font-family: var(--disp); font-weight: 500;
  font-size: clamp(13px, 1.35vw, 16px); line-height: 1.6;
  color: color-mix(in srgb, var(--accent) 55%, #ffffff);
}
.cardmodal__rule {
  width: 54px; height: 2px; margin: 0 0 18px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.cardmodal__lead {
  margin: 0 0 18px; font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13.5px; line-height: 1.95; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.62);
}
.cardmodal__body {
  margin: 0; font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px; line-height: 2.0; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
}
.cardmodal__more {
  display: none; align-self: flex-start;
  margin-top: 30px; padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: #fff; text-decoration: none;
  font-family: var(--disp); font-size: 14px; letter-spacing: 0.08em;
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent) 35%, transparent);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.cardmodal__more.is-shown { display: inline-block; }
.cardmodal__more:hover {
  background: color-mix(in srgb, var(--accent) 30%, transparent);
  box-shadow: 0 0 34px color-mix(in srgb, var(--accent) 55%, transparent);
  transform: translateY(-2px);
}
.cardmodal__more span { margin-left: 6px; }

/* ===== Diagonal wipe curtain (section transitions) ===== */
.wipe {
  position: fixed; inset: 0; z-index: 6; pointer-events: none;
  /* a thin diagonal band: dark body with a bright glowing leading edge */
  background: linear-gradient(100deg,
    rgba(2,7,11,0) 0%, rgba(3,12,17,0.96) 26%, rgba(4,20,26,0.96) 70%,
    rgba(190,230,255,0.95) 95%, #eaf6ff 100%);
  /* hidden off-screen by default; the diagonal polygon is driven from JS */
  clip-path: polygon(-42% 0, 0% 0, -40% 100%, -82% 100%);
}

/* ===== Bottom-to-top sweep line (Work -> Finale) ===== */
.vline {
  position: fixed; left: 0; width: 100%; height: 3px; top: 100%;
  z-index: 6; pointer-events: none; opacity: 0;
  transform-origin: 0 0; /* JS positions/rotates it along the tilted reveal edge */
  background: linear-gradient(90deg, transparent, rgba(190,230,255,0.9), #fff, rgba(156,165,255,0.9), transparent);
  box-shadow: 0 0 18px rgba(190,230,255,0.85), 0 0 40px rgba(120,170,255,0.5);
}

/* ===== About section ===== */
.about {
  --rev: 0;
  position: fixed; inset: 0; z-index: 3;
  pointer-events: none;
  /* diagonal wipe: a slanted left edge sweeps from fully off-screen-right
     (--rev 0 -> hidden) to fully off-screen-left (--rev 1 -> full screen) */
  clip-path: polygon(
    calc(150% - var(--rev) * 200%) 0,
    250% 0, 250% 100%,
    calc(115% - var(--rev) * 200%) 100%
  );
  /* no panel/band — the diagonal swap is carried purely by the clip line */
  background: transparent;
}
.about__title {
  position: absolute; left: 6vw; bottom: 16vh;
  margin: 0;
  display: flex; flex-direction: column;
  font-family: var(--disp); font-weight: 600;
  font-size: clamp(28px, 6vw, 88px);
  line-height: 1.0; letter-spacing: 0.02em;
  text-transform: uppercase; color: #fff;
  text-shadow: 0 0 40px rgba(150,180,255,0.25);
}
.about__title span:nth-child(3) { /* elegant Japanese subtitle */
  font-size: 0.42em;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: none;
  opacity: 0.92;
  margin-top: 0.3em;
}
.about__title span:nth-child(1),
.about__title span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.85);
}
.about__copy {
  position: absolute; right: 6vw; bottom: 1.5vh;
  max-width: 360px;
  font-family: var(--mono); font-size: clamp(13px, 1.5vw, 18px);
  line-height: 1.5; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  text-align: left;
}
/* highlighted keywords in the About copy — slightly larger, gold */
.about__hl { font-size: 1.08em; color: #f1c96b; }

/* ===== Underwater (final) section text ===== */
.seatext {
  position: fixed; left: 6vw; bottom: 16vh; z-index: 4;
  max-width: 440px; pointer-events: none;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.seatext.is-in { opacity: 1; transform: none; pointer-events: auto; }
.seatext__title {
  margin: 0 0 18px;
  font-family: var(--disp); font-weight: 600;
  font-size: clamp(30px, 4.5vw, 60px); line-height: 1.02;
  text-transform: uppercase; color: #fff;
  text-shadow: 0 0 30px rgba(120,200,255,0.4);
}
.seatext__title span { color: transparent; -webkit-text-stroke: 1.4px rgba(190,230,255,0.9); }
.seatext__copy {
  font-family: var(--mono); font-size: clamp(14px, 1.4vw, 18px); font-weight: 700;
  line-height: 1.8; letter-spacing: 0.03em; color: rgba(232, 246, 255, 0.92);
  margin-bottom: 26px; word-break: keep-all; /* break only at the explicit <br> */
}
/* CTA button base (shared by --outline ② and --fill ①) */
.seatext__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--disp); font-weight: 500;
  font-size: clamp(14px, 1.2vw, 16px); letter-spacing: 0.1em;
  text-decoration: none; color: var(--cyan);
  padding: 14px 32px; border-radius: 999px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.seatext__arrow { transition: transform 0.3s ease; }
.seatext__link:hover .seatext__arrow { transform: translateX(5px); }

/* ② outline pill — elegant gold (ties to the COMPANY/wordmark gold) */
.seatext__link--outline {
  color: #f1c96b;
  border: 1.5px solid rgba(230, 196, 110, 0.55);
  background: rgba(12, 12, 9, 0.28);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.seatext__link--outline:hover {
  color: #fff4da; border-color: #f1c96b;
  background: rgba(230, 196, 110, 0.10);
  box-shadow: 0 0 22px rgba(230, 196, 110, 0.4), inset 0 0 18px rgba(230, 196, 110, 0.12);
}

/* ① filled pill — bold, prominent CTA (gold: ties to the COMPANY/wordmark gold) */
.seatext__link--fill {
  color: #1c1405; font-weight: 700;
  background: linear-gradient(135deg, #f6d98a, #d9a441);
  box-shadow: 0 0 22px rgba(230, 190, 90, 0.35);
}
.seatext__link--fill:hover {
  color: #1c1405; transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(245, 210, 120, 0.6);
}
@media (max-width: 768px) {
  /* 会社概要と縦に並べるため、こちらはセクション上部へ寄せて小さくまとめる。
     下に置いたままだと会社概要と重なり、どちらも読めなくなる。 */
  .seatext {
    left: 6vw; right: 6vw; top: 13vh; bottom: auto; max-width: none;
  }
  .seatext__title { font-size: 26px; margin-bottom: 12px; }
  .seatext__copy { font-size: 12.5px; line-height: 1.7; margin-bottom: 18px; }
  .seatext__link { font-size: 12px; padding: 9px 20px; }
}

/* ===== Work: chat-style navigator (bottom-left) ===== */
.chat {
  position: fixed; left: 4vw; bottom: 8vh; z-index: 4;
  font-family: var(--mono);
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.chat.is-in { opacity: 1; transform: none; pointer-events: auto; }
.chat__q {
  font-size: 13px; letter-spacing: 0.08em; color: #fff;
  margin-bottom: 18px; text-transform: uppercase;
}
.chat__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.chat__list a {
  font-size: 13px; letter-spacing: 0.06em; color: var(--peri);
  text-decoration: none; text-transform: uppercase;
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.chat__list a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.6); transform: translateX(6px); }
.chat__input {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.45);
  padding: 11px 26px;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 999px;
  background: rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  /* PC は中央にピルを置くが、狭い画面では指が届きやすいよう画面幅いっぱいに
     引き伸ばし、4項目を等間隔に配置する。文字も一回り大きくしてタップ精度を上げる。 */
  .nav { padding: 16px 10px; align-items: stretch; }
  .nav__pill { justify-content: space-between; gap: 2px; padding: 12px 14px; }
  .nav__link { font-size: 12.5px; letter-spacing: 0.06em; padding: 4px 2px; }
  .nav__link::after { bottom: 0; }
  .about__title { left: 6vw; bottom: auto; top: 12vh; font-size: clamp(34px, 13vw, 70px); }
  .about__copy { right: 6vw; left: 6vw; bottom: 8vh; max-width: none; }
  /* 背骨セクションの左下ナビ。狭い画面では3Dのカードと重なって読めないため隠す。
     同じ内容へはカード自体をタップすれば辿り着けるので、導線は失われない。 */
  .chat { display: none; }
}

/* 4 nav items are tight on a narrow phone — tighten further */
@media (max-width: 430px) {
  .nav { padding: 14px 8px; }
  .nav__pill { padding: 11px 10px; }
  .nav__link { font-size: 11.5px; letter-spacing: 0.02em; }
}

/* ===== Company profile overlay (over the underwater hex screen) ===== */
.company {
  position: fixed; inset: 0; z-index: 5;
  display: flex; opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.company.is-in { opacity: 1; }
.company__scrim { position: absolute; inset: 0; pointer-events: none; }
.company__inner {
  position: relative; z-index: 1;
  font-family: var(--mono); color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  /* the hex grid sits a little below the viewport centre, so nudge the text down
     to sit at the grid's vertical centre (tune this vh if needed) */
  transform: translateY(5vh);
}
.company__eyebrow {
  margin: 0 0 14px;
  font-size: 19px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: #f1c96b; /* gold */
}
.company__title {
  margin: 0 0 30px;
  font-family: "Shippori Mincho", serif; font-weight: 600;
  font-size: clamp(30px, 4vw, 48px); letter-spacing: 0.06em;
}
.company__list { margin: 0; display: flex; flex-direction: column; gap: 22px; }
/* 狭い画面でのみ有効になる改行（住所を1行増やす）。既定は無効 */
.br-sp { display: none; }
.company__row {
  display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: baseline;
}
.company__row dt {
  font-size: 17px; font-weight: 600; letter-spacing: 0.1em;
  color: rgba(190, 230, 255, 0.9);
}
.company__row dd {
  margin: 0; font-size: clamp(17px, 1.6vw, 22px); font-weight: 600; line-height: 1.65;
  letter-spacing: 0.02em; color: rgba(240, 248, 255, 0.96);
  word-break: keep-all; /* keep the address on the explicit line breaks, no mid-number wrap */
}

/* --- Layout A: centered over the screen (default) --- */
body.company-center .company { align-items: center; justify-content: center; }
body.company-center .company .company__inner { max-width: 460px; text-align: left; }
body.company-center .company .company__scrim {
  background: radial-gradient(ellipse 46% 54% at 50% 50%,
    rgba(2, 8, 14, 0.82), rgba(2, 8, 14, 0.35) 55%, rgba(2, 8, 14, 0) 78%);
}

/* --- Layout B: right-side glass panel --- */
body.company-panel .company { align-items: center; justify-content: flex-end; }
body.company-panel .company .company__inner {
  margin-right: 7vw; max-width: 400px;
  padding: 34px 38px; border-radius: 18px;
  background: rgba(4, 10, 16, 0.55);
  border: 1px solid rgba(150, 175, 255, 0.18);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
body.company-panel .company .company__scrim { background: none; }

/* --- Layout C: diagonal split — video (left) / profile (right).
   The darkening is done IN the hex-tile shader (uSplit), confined to the grid,
   so NO full-screen overlay here. The text just sits over the grid's right side. */
body.company-split .company { align-items: center; justify-content: flex-end; }
body.company-split .company .company__scrim { background: none; }
body.company-split .company .company__inner {
  margin-right: 17vw; max-width: 500px; text-align: left;
}

@media (max-width: 768px) {
  /* PC 同様、グリッド右側の暗い帯の上に載せる。JS 側でグリッドを左へ寄せて
     その帯を画面右半分に確保しているので、テキストもそちらへ寄せる。
     2列組みだと幅が足りないので、ラベルは本文の上に積む。 */
  .company__inner { transform: translateY(16vh); }
  .company__row { grid-template-columns: 1fr; gap: 2px; }
  .company__row dt { font-size: 10.5px; color: rgba(190, 230, 255, 0.75); }
  .company__row dd { font-size: 11.5px; line-height: 1.45; }
  .company__list { gap: 8px; }
  .company__title { font-size: 20px; margin-bottom: 10px; }
  .company__eyebrow { font-size: 11px; margin-bottom: 6px; }
  .br-sp { display: inline; }

  body.company-center .company .company__inner,
  body.company-panel .company .company__inner {
    margin: 0 6vw; max-width: none;
  }
  body.company-panel .company { justify-content: center; }

  body.company-split .company { justify-content: flex-end; }
  body.company-split .company .company__inner {
    /* 右余白を広げて左へ寄せる。暗くなり始めるのはグリッド幅の 48% の位置＝
       画面の左から約 35% なので、左端が 37% 程度までなら帯の中に収まる。 */
    margin: 0 12vw 0 0; max-width: 50vw; text-align: left;
  }
}
