/* =========================================================
   株式会社Nowme - style.css
   Pure CSS / no framework。配色・フォント・余白は :root のトークンで一元管理する。
   コンセプト：全面ダーク（黒基調）× 白 × Mission「明日を灯す」を象徴する琥珀(ember)。
   参考：トゥモローゲート（黒×白のハイコントラスト・太ゴシック・テキスト中心）。
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* overflow-x: hidden は body のみ（html にも付けると二重スクロールコンテナ化して壊れる）。 */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { overflow-x: hidden; }
body, h1, h2, h3, h4, p, ul, ol, figure, dl, dd, table, th, td { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Design Tokens（ダークテーマ） ---------- */
:root {
  /* 背景：真っ黒（純黒）で統一。カード等は枠線で分離する */
  --c-bg: #000000;              /* ページ標準背景 */
  --c-bg-cream: #000000;        /* 差し色パネル（旧cream枠） */
  --c-ink: #000000;             /* 最深部（ヒーロー・フッター・強調セクション） */
  --c-surface: #000000;         /* カード・入力欄 */
  --c-surface-hover: #000000;

  /* アクセント：オリーブ（基本は #4D5724 を使用） */
  --c-accent: #4d5724;
  --c-accent-deep: #3b4319;
  --c-accent-soft: rgba(77,87,36,0.12);

  /* テキスト（暗背景前提で明色） */
  --c-text: #ffffff;
  --c-text-muted: #9a9a9a;
  --c-text-inv: #ffffff;        /* 互換：ink セクション上の本文 */
  --c-text-inv-muted: #9a9a9a;
  --c-border: #4f4f4f;
  --c-border-dark: #565656;
  --c-danger: #e5766b;

  /* 旧・主役色（互換のため残置。ボタンは個別指定でダーク対応） */
  --c-primary: #ffffff;
  --c-primary-deep: #e4e4e4;
  --c-primary-soft: #000000;

  /* フォント：本文・UIは Helvetica Neue（和文はゴシックにフォールバック）＋ 英字ディスプレイに Oswald */
  --f-base: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  --f-disp: "Oswald", "Helvetica Neue", "Noto Sans JP", sans-serif;
  /* MVV・代表メッセージなどメッセージ性の強い要素は太明朝（Shippori Mincho B1） */
  --f-mincho: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;

  /* レイアウト */
  --container: 1120px;
  --gutter: 24px;
  --header-h: 88px;
  --radius: 4px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.4);
  --shadow-card: 0 24px 60px rgba(0,0,0,0.55);
}

/* ---------- Base ---------- */
html, body {
  font-family: var(--f-base);
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  :root { --header-h: 62px; }
}

h1, h2, h3 { line-height: 1.35; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: 104px 0; background: var(--c-bg); }
.section--cream { background: var(--c-bg-cream); border-block: 1px solid var(--c-border); }
.section--ink { background: var(--c-ink); border-block: 1px solid rgba(255,255,255,0.045); }
/* 白背景セクション（ダークテーマ内で部分的に白地にし、文字色を反転する） */
.section--light { background: #ffffff; border-block: 1px solid #e5e5e5; }
.section--light .section__title { color: #111; }
.section--light .section__lead { color: #555; }
.section--light .info-table th { color: #111; }
.section--light .info-table td { color: #555; }
.section--light .info-table th, .section--light .info-table td { border-bottom-color: #e0e0e0; }
.section--light .form__label,
.section--light .form__check,
.section--light .form__select { color: #111; }
.section--light .form__intro,
.section--light .form__hint,
.section--light .form__optional { color: #666; }
.section--light .form__input,
.section--light .form__select,
.section--light .form__textarea { background: #ffffff; color: #111; border-color: #ccc; }
.section--light .form__input::placeholder,
.section--light .form__textarea::placeholder { color: #999; }
.section--light .form__select option { background: #ffffff; color: #111; }
.section--light .form__optional { border-color: #ccc; }
@media (max-width: 768px) {
  .section--light .info-table th { color: var(--c-accent); }
  .section--light .info-table tr { border-bottom-color: #e0e0e0; }
}
/* 白背景ページヒーロー */
.page-hero.page-hero--light { background: #ffffff; color: #111; border-bottom-color: #e5e5e5; }
.page-hero--light .page-hero__title { color: #111; }
.page-hero--light .page-hero__lead { color: #555; }
.section__head { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.section__label {
  display: inline-block; font-family: var(--f-disp); font-size: 13px;
  font-weight: 600; letter-spacing: 0.34em; color: var(--c-accent);
  text-transform: uppercase; margin-bottom: 14px; position: relative; padding-left: 26px;
}
.section__label::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 18px; height: 1px;
  background: var(--c-accent); transform: translateY(-50%);
}
.section__title { font-size: clamp(24px, 4.6vw, 36px); font-weight: 700; letter-spacing: 0.04em; color: var(--c-text); }
.section__lead { margin-top: 20px; color: var(--c-text-muted); font-size: 15px; }

/* ---------- Buttons ---------- */
/* 白＝ナビ系の主ボタン／琥珀＝最終コンバージョン／ghost＝副次 */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px; border-radius: var(--radius-pill);
  background: #fff; color: #000000; font-weight: 700;
  letter-spacing: 0.08em; font-size: 15px;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.btn:hover { background: #e2e2e2; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn--ghost:hover { background: #fff; color: #000000; border-color: #fff; }
.btn--accent { background: var(--c-accent); color: #fff; }
.btn--accent:hover { background: var(--c-accent-deep); }

/* ---------- Header（Hero上では透明、スクロール後はピル型） ---------- */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 8px 0; pointer-events: none;
  transition: padding 0.35s ease, transform 0.35s ease;
}
.hdr__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; max-width: min(820px, calc(100vw - 32px)); pointer-events: auto;
  padding-inline: 18px; border-radius: var(--radius-pill);
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.hdr.is-scrolled .hdr__inner {
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

/* ロゴ（テキストロゴ） */
.hdr__logo { display: inline-flex; align-items: baseline; gap: 2px; }
.hdr__logo-text { font-family: var(--f-disp); font-weight: 500; font-size: 20px; letter-spacing: 0.06em; color: #000000; white-space: nowrap; }
.hdr__logo-dot { color: var(--c-accent); font-size: 26px; line-height: 1; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a { font-size: 14px; letter-spacing: 0.06em; font-weight: 500; color: #000; transition: color 0.2s; position: relative; }
.nav > a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--c-accent); transition: width 0.25s;
}
.nav > a:hover { color: var(--c-accent); }
.nav > a:hover::after { width: 100%; }

.hdr__actions { display: flex; align-items: center; gap: 14px; }
.hdr__cta {
  display: none; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-pill);
  background: var(--c-accent); color: #fff; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; transition: background 0.2s;
}
.hdr__cta:hover { background: var(--c-accent-deep); }

/* Burger */
.hdr__burger { display: none; width: 40px; height: 40px; position: relative; z-index: 96; }
.hdr__burger span { position: absolute; left: 9px; right: 9px; height: 2px; background: #000000; transition: transform 0.3s, opacity 0.2s; }
.hdr__burger span:nth-child(1) { top: 13px; }
.hdr__burger span:nth-child(2) { top: 19px; }
.hdr__burger span:nth-child(3) { top: 25px; }
.hdr__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hdr__burger.is-open span:nth-child(2) { opacity: 0; }
.hdr__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; z-index: 90; }
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero（動画が広がるファーストビュー） ---------- */
.hero {
  position: relative; overflow: hidden; min-height: 100svh;
  display: flex; align-items: flex-end; isolation: isolate;
  background: #000000; color: #fff; padding: 24px;
}
.hero__media {
  position: absolute; inset: 8px; z-index: -2; overflow: hidden;
  border-radius: 18px; background: #000; transform-origin: center;
  animation: heroMediaReveal 1.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroMediaReveal {
  0% { clip-path: inset(32% 34% 24% 34% round 24px); transform: scale(0.96); filter: saturate(0.85) brightness(0.8); }
  100% { clip-path: inset(0 round 18px); transform: scale(1); filter: saturate(1) brightness(1); }
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transform: scale(1.03);
  transition: opacity 1.1s ease, transform 6s ease;
}
.hero__video.is-active { opacity: 1; transform: scale(1); }
.hero__shade {
  position: absolute; inset: 8px; z-index: -1; border-radius: 18px; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 42%, rgba(0,0,0,0.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.08) 38%, rgba(0,0,0,0.70) 100%);
}
.hero__content {
  width: 100%; position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr); align-content: end;
  min-height: calc(100svh - 48px); padding: 126px 34px 56px;
}
.hero__eyebrow {
  font-family: var(--f-disp); font-weight: 500; letter-spacing: 0.36em; font-size: 13px;
  color: rgba(255,255,255,0.78); text-transform: uppercase; margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(18px); animation: heroTextIn 0.8s ease 0.55s forwards;
}
.hero__eyebrow::before { content: ""; width: 30px; height: 1px; background: rgba(255,255,255,0.65); }
.hero__title {
  max-width: 1050px; font-family: var(--f-base);
  font-size: clamp(56px, 13.4vw, 176px); font-weight: 900;
  line-height: 1.02; letter-spacing: 0; margin-left: -0.06em;
  text-wrap: balance; opacity: 0; transform: translateY(30px);
  animation: heroTextIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.68s forwards;
}
.hero__title span { display: block; }
.hero__bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; margin-top: 30px; max-width: 980px;
  opacity: 0; transform: translateY(24px); animation: heroTextIn 0.85s ease 0.88s forwards;
}
.hero__sub {
  position: absolute; right: 36px; bottom: 58px; writing-mode: vertical-rl;
  font-family: var(--f-disp); font-weight: 300; font-size: 12px; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.58); text-transform: uppercase;
  opacity: 0; animation: heroTextIn 0.8s ease 1.05s forwards;
}
.hero__lead { max-width: 570px; color: rgba(255,255,255,0.88); font-size: 16px; line-height: 2; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; flex: 0 0 auto; padding-right: 74px; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 1;
  font-family: var(--f-disp); font-size: 11px; letter-spacing: 0.3em; color: rgba(255,255,255,0.62);
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-transform: uppercase;
}
.hero__scroll::after { content: ""; width: 1px; height: 40px; background: linear-gradient(var(--c-accent), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes heroTextIn { to { opacity: 1; transform: none; } }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Hero：白背景・黒文字バージョン（動画背景なし。BUSINESS / RECRUIT のサブページ用） */
.hero--light { background: #ffffff; color: #111; min-height: 66svh; padding: 24px; }
.hero--light .hero__content { min-height: calc(66svh - 48px); }
.hero--light .hero__eyebrow { color: var(--c-accent); }
.hero--light .hero__eyebrow::before { background: var(--c-accent); }
.hero--light .hero__title { color: #111; }
.hero--light .recruit-hero__title { color: #111; text-shadow: none; }
.hero--light .hero__scroll { color: rgba(0,0,0,0.45); }
@media (max-width: 768px) {
  .hero--light { min-height: 58svh; padding: 12px; }
  .hero--light .hero__content { min-height: calc(58svh - 24px); }
}

/* ---------- Top MVV Spotlight ---------- */
.mvv-spotlight {
  position: relative;
  background: #ffffff;
  color: #ffffff;
  padding: 88px 0 96px;
}
/* カードは通常コンテナ幅より広く、画面いっぱいに近い横幅で見せる */
.mvv-spotlight .container {
  max-width: min(1560px, 100% - 48px);
}
.mvv-spotlight__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr) 230px;
  gap: 48px;
  align-items: end;
  min-height: 420px;
  padding: 48px 60px 40px;
  background: #000000;
  border-radius: 28px;
}
.mvv-spotlight__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 25% 100%, 100% 100%;
  opacity: 0.5;
}
.mvv-spotlight__meta,
.mvv-spotlight__stage,
.mvv-spotlight__controls {
  position: relative;
  z-index: 1;
}
.mvv-spotlight__meta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 0 34px;
}
.mvv-spotlight__label {
  max-width: 210px;
  font-family: var(--f-disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}
.mvv-spotlight__count {
  font-family: var(--f-disp);
  font-size: clamp(132px, 20vw, 264px);
  font-weight: 300;
  line-height: 0.78;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.mvv-spotlight__stage {
  padding: 34px 0;
}
.mvv-spotlight__title {
  margin-bottom: 30px;
  font-family: var(--f-disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.mvv-spotlight__slides {
  position: relative;
  display: grid;
  min-height: 252px;
}
.mvv-spotlight__slide {
  grid-area: 1 / 1;
  max-width: 720px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.72s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s ease;
}
.mvv-spotlight__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.mvv-spotlight__key {
  font-family: var(--f-disp);
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  color: #ffffff;
}
.mvv-spotlight__word {
  margin-top: 18px;
  font-family: var(--f-mincho);
  font-size: clamp(30px, 5.2vw, 58px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.04em;
  color: #ffffff;
}
.mvv-spotlight__nowrap {
  white-space: nowrap;
}
.mvv-spotlight__desc {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 2;
}
.mvv-spotlight__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-family: var(--f-disp);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
}
.mvv-spotlight__link span:first-child {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.mvv-spotlight__controls {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  padding-bottom: 38px;
}
.mvv-spotlight__tab {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.44);
  font-family: var(--f-disp);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-align: left;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.mvv-spotlight__tab:last-of-type {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.mvv-spotlight__tab span {
  font-weight: 300;
  color: rgba(255,255,255,0.62);
}
.mvv-spotlight__tab.is-active,
.mvv-spotlight__tab:hover {
  color: #ffffff;
}
.mvv-spotlight__progress {
  position: relative;
  height: 2px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.14);
}
.mvv-spotlight__progress span {
  position: absolute;
  inset: 0;
  transform-origin: left;
  background: var(--c-accent);
  animation: mvvProgress 5.8s linear infinite;
}
@keyframes mvvProgress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* ---------- MVV ---------- */
.mvv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; }
.mvv__item { padding: 48px 34px; border-right: 1px solid var(--c-border); position: relative; }
.mvv__item:last-child { border-right: none; }
.mvv__key { font-family: var(--f-disp); font-weight: 600; font-size: 13px; letter-spacing: 0.24em; color: var(--c-accent); text-transform: uppercase; margin-bottom: 8px; }
.mvv__no { font-family: var(--f-disp); font-weight: 300; font-size: 34px; color: #000; position: absolute; top: 28px; right: 30px; }
.mvv__word { font-family: var(--f-mincho); font-size: clamp(24px, 3vw, 30px); font-weight: 800; letter-spacing: 0.06em; margin: 18px 0 14px; line-height: 1.5; color: #fff; }
.mvv__desc { color: var(--c-text-muted); font-size: 14px; }

/* ---------- About / テキスト＋図版 ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.split__body p { color: var(--c-text-muted); margin-bottom: 20px; }
.split__body p:last-child { margin-bottom: 0; }
.split__body .lead-line { font-family: var(--f-mincho); font-size: clamp(20px, 3vw, 26px); font-weight: 700; color: var(--c-text); line-height: 1.7; margin-bottom: 26px; letter-spacing: 0.04em; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }
.split__media--framed::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--c-accent); border-radius: var(--radius); z-index: -1; }

/* ---------- 事業内容 ---------- */
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.biz-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 40px 30px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s; }
.biz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--c-accent); background: var(--c-surface-hover); }
.biz-card__no { font-family: var(--f-disp); font-weight: 300; font-size: 22px; color: var(--c-accent); letter-spacing: 0.1em; }
.biz-card__title { font-size: 20px; font-weight: 700; margin: 14px 0 12px; letter-spacing: 0.03em; color: var(--c-text); }
.biz-card__desc { color: var(--c-text-muted); font-size: 14px; }

.biz-flow { max-width: 900px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.biz-flow__step { text-align: center; position: relative; padding: 24px 12px; }
.biz-flow__step:not(:last-child)::after { content: "→"; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); color: var(--c-accent); font-family: var(--f-disp); }
.biz-flow__no { font-family: var(--f-disp); font-size: 12px; letter-spacing: 0.2em; color: var(--c-accent); }
.biz-flow__title { font-weight: 700; margin: 8px 0 6px; font-size: 15px; color: var(--c-text); }
.biz-flow__desc { font-size: 12.5px; color: var(--c-text-muted); }

/* ---------- 数字 ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 16px; border: 1px solid var(--c-border); border-radius: var(--radius); }
.stat__num { font-family: var(--f-disp); font-weight: 600; font-size: clamp(38px, 6vw, 56px); line-height: 1; color: #fff; white-space: nowrap; }
.stat__num .unit { font-size: 0.4em; color: var(--c-accent); margin-left: 4px; letter-spacing: 0.05em; }
.stat__label { margin-top: 14px; font-size: 13px; color: var(--c-text-muted); letter-spacing: 0.06em; }

/* ---------- 代表メッセージ ---------- */
.message { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.message__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; }
.message__body .section__title { font-family: var(--f-mincho); font-weight: 800; text-align: left; margin-bottom: 28px; }
.message__text { font-family: var(--f-mincho); }
.message__text p { color: var(--c-text-muted); margin-bottom: 18px; line-height: 2; letter-spacing: 0.03em; }
.message__sign { margin-top: 30px; display: flex; align-items: baseline; gap: 14px; }
.message__sign-role { font-size: 13px; color: var(--c-text-muted); letter-spacing: 0.08em; }
.message__sign-name { font-size: 22px; font-weight: 700; letter-spacing: 0.14em; color: var(--c-text); }

/* ---------- 会社概要テーブル ---------- */
.info-table { max-width: 800px; margin: 0 auto; }
.info-table th, .info-table td { text-align: left; vertical-align: top; padding: 22px 8px; border-bottom: 1px solid var(--c-border); font-size: 15px; }
.info-table th { width: 200px; font-weight: 700; letter-spacing: 0.06em; color: var(--c-text); }
.info-table td { color: var(--c-text-muted); }

/* ---------- アクセス ---------- */
.access { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: stretch; }
.access__info { align-self: center; }
.access__info dt { font-family: var(--f-disp); font-size: 12px; letter-spacing: 0.2em; color: var(--c-accent); text-transform: uppercase; margin-bottom: 6px; }
.access__info dd { margin-bottom: 24px; color: var(--c-text-muted); }
.access__info dd strong { color: var(--c-text); font-weight: 700; }
.access__map { border-radius: var(--radius); overflow: hidden; min-height: 340px; border: 1px solid var(--c-border); }
.access__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- 採用 ---------- */
.recruit-lead { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.persona { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.persona__item { padding: 34px 28px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); border-top: 3px solid var(--c-accent); }
.persona__title { font-weight: 700; font-size: 17px; margin-bottom: 12px; letter-spacing: 0.03em; color: var(--c-text); }
.persona__desc { color: var(--c-text-muted); font-size: 14px; }

.req-table { max-width: 820px; margin: 0 auto; }
.req-table th, .req-table td { text-align: left; vertical-align: top; padding: 20px 8px; border-bottom: 1px solid var(--c-border); font-size: 15px; }
.req-table th { width: 200px; font-weight: 700; color: var(--c-text); }
.req-table td { color: var(--c-text-muted); }

/* ---------- CTA 帯 ---------- */
.cta-band { position: relative; overflow: hidden; background: #ffffff; color: #000000; text-align: center; padding: 96px 0; border-top: 1px solid rgba(0,0,0,0.08); }
.cta-band__glow { position: absolute; z-index: 0; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(77,87,36,0.10), transparent 65%); pointer-events: none; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band__label { font-family: var(--f-disp); letter-spacing: 0.3em; font-size: 12px; color: var(--c-accent); text-transform: uppercase; }
.cta-band__title { font-family: var(--f-mincho); font-size: clamp(24px, 4.4vw, 38px); font-weight: 800; margin: 16px 0 14px; letter-spacing: 0.06em; color: #000000; }
.cta-band__lead { color: #555; margin-bottom: 36px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--ghost { color: #000000; border-color: rgba(0,0,0,0.25); }
.cta-band .btn--ghost:hover { background: #000000; color: #fff; border-color: #000000; }

/* ---------- Page hero（サブページ共通の見出し帯：黒） ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--c-ink); color: #fff; padding: 92px 0; text-align: center; border-bottom: 1px solid var(--c-border); }
.page-hero__glow { position: absolute; z-index: 0; left: 50%; top: -40%; transform: translateX(-50%); width: 600px; height: 500px; background: radial-gradient(circle, rgba(77,87,36,0.20), transparent 62%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__label { display: inline-block; font-family: var(--f-disp); letter-spacing: 0.34em; color: var(--c-accent); font-size: 13px; text-transform: uppercase; margin-bottom: 14px; }
.page-hero__title { font-size: clamp(28px, 5.5vw, 46px); letter-spacing: 0.06em; font-weight: 700; }
.page-hero__lead { margin-top: 16px; color: var(--c-text-inv-muted); font-size: 15px; }

/* ---------- 採用ヒーロー（動画背景＋左寄せ：RECRUIT / 常に。今。自分と戦う。） ---------- */
.recruit-hero__title {
  /* Business Hero（.hero--sub .hero__title）と書体・太さ・字間・サイズを完全一致させる */
  font-family: var(--f-base); font-weight: 900;
  font-size: clamp(52px, 11vw, 132px); line-height: 1.02; letter-spacing: 0; margin-left: -0.06em;
  text-shadow: 0 2px 26px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(30px);
  animation: heroTextIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.68s forwards;
}

/* ---------- 採用理念（オリーブ背景・白文字） ---------- */
.recruit-creed { position: relative; overflow: hidden; text-align: center; color: #fff; padding: 96px 0 104px; background: linear-gradient(165deg, #4d5724 0%, #3b4319 100%); border-top: 1px solid rgba(255,255,255,0.22); }
.recruit-creed__glow { position: absolute; z-index: 0; left: 50%; top: -32%; transform: translateX(-50%); width: 760px; height: 560px; background: radial-gradient(circle, rgba(255,255,255,0.13), transparent 60%); pointer-events: none; }
.recruit-creed .container { position: relative; z-index: 1; }
.recruit-creed__en { font-family: var(--f-disp); font-weight: 500; font-size: clamp(22px, 3.6vw, 34px); letter-spacing: 0.22em; color: rgba(255,255,255,0.92); }
.recruit-creed__en span { margin: 0 0.16em; font-weight: 300; color: rgba(255,255,255,0.72); }
.recruit-creed__head { font-family: var(--f-mincho); font-weight: 800; font-size: clamp(28px, 5.4vw, 48px); letter-spacing: 0.06em; line-height: 1.5; margin: 14px 0 46px; color: #fff; }
.recruit-creed__body { max-width: 720px; margin: 0 auto; }
.recruit-creed__body p { color: rgba(255,255,255,0.94); font-size: clamp(18px, 2.6vw, 23px); line-height: 2.05; letter-spacing: 0.04em; margin-bottom: 30px; }
.recruit-creed__body .recruit-creed__value { font-family: var(--f-mincho); font-weight: 700; font-size: clamp(19px, 2.9vw, 26px); line-height: 1.85; letter-spacing: 0.05em; margin-bottom: 42px; color: #fff; }
.recruit-creed__body .recruit-creed__chance { font-family: var(--f-mincho); font-weight: 700; font-size: clamp(18px, 2.6vw, 23px); letter-spacing: 0.05em; margin: 10px 0 14px; color: #fff; }
.recruit-creed__body .recruit-creed__closing { font-family: var(--f-mincho); font-weight: 800; font-size: clamp(18px, 2.6vw, 23px); line-height: 1.7; letter-spacing: 0.05em; margin-bottom: 0; color: #fff; }
.recruit-creed__cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 50px; padding: 15px 42px; border-radius: var(--radius-pill); border: 1.5px solid rgba(255,255,255,0.85); color: #fff; font-family: var(--f-disp); font-weight: 500; font-size: 14px; letter-spacing: 0.16em; transition: background 0.25s, color 0.25s; }
.recruit-creed__cta:hover { background: #fff; color: var(--c-accent-deep); }
.recruit-creed__cta span { transition: transform 0.25s; }
.recruit-creed__cta:hover span { transform: translateX(4px); }

/* ---------- Cards / CTA（汎用） ---------- */
.cta-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 880px; margin: 0 auto; }
.cta-card { display: block; padding: 32px 28px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; text-align: center; }
.cta-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--c-accent); }
.cta-card__label { font-family: var(--f-disp); letter-spacing: 0.2em; color: var(--c-accent); font-size: 12px; text-transform: uppercase; }
.cta-card__title { margin: 8px 0 10px; font-size: 19px; color: var(--c-text); }
.cta-card__desc { color: var(--c-text-muted); font-size: 14px; }
.cta-card__btn { display: inline-block; margin-top: 16px; color: var(--c-accent); font-weight: 700; }

/* ---------- Form（Web3Forms / contact.js と対応） ---------- */
.form { max-width: 720px; margin: 0 auto; }
.form__intro { font-size: 13px; color: var(--c-text-muted); margin-bottom: 24px; }
.form__intro strong { color: var(--c-danger); }
.form__field { margin-bottom: 22px; }
.form__label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--c-text); }
.form__required { font-size: 11px; color: #fff; background: #b23a2c; border-radius: 3px; padding: 2px 7px; margin-left: 6px; }
.form__optional { font-size: 11px; color: var(--c-text-muted); border: 1px solid var(--c-border); border-radius: 3px; padding: 2px 7px; margin-left: 6px; }
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--c-border); border-radius: var(--radius);
  background: var(--c-surface); color: var(--c-text); font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form__input::placeholder, .form__textarea::placeholder { color: #6a6a6a; }
.form__select { color: var(--c-text); }
.form__select option { background: #000000; color: var(--c-text); }
.form__input:focus, .form__select:focus, .form__textarea:focus { border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(77,87,36,0.22); }
.form__textarea { min-height: 160px; resize: vertical; }
.form__hint { display: block; margin-top: 6px; font-size: 12px; color: var(--c-text-muted); }
.form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; cursor: pointer; color: var(--c-text); }
.form__check input { margin-top: 5px; accent-color: var(--c-accent); }
.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; border-radius: var(--radius-pill); background: var(--c-accent); color: #fff; font-weight: 700; letter-spacing: 0.1em; transition: background 0.2s; }
.form__submit:hover { background: var(--c-accent-deep); }
.form__submit:disabled { opacity: 0.6; cursor: default; }
.form__success { max-width: 720px; margin: 0 auto 24px; padding: 28px; border: 1px solid var(--c-accent); border-radius: var(--radius); background: var(--c-accent-soft); text-align: center; color: var(--c-text); }
.form__error { padding: 14px; border: 1px solid var(--c-danger); border-radius: var(--radius); background: rgba(192,57,43,0.14); color: var(--c-danger); font-size: 14px; margin-bottom: 20px; }

/* ---------- Footer ---------- */
.ftr { background: var(--c-ink); color: #fff; padding: 72px 0 32px; border-top: 1px solid var(--c-border); }
.ftr__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.ftr__logo-text { font-family: var(--f-disp); font-weight: 700; font-size: 24px; letter-spacing: 0.06em; color: #fff; }
.ftr__logo-text .dot { color: var(--c-accent); }
.ftr__about, .ftr__address { font-size: 13px; color: #8f8f8f; margin-top: 16px; line-height: 1.9; }
.ftr__heading { font-family: var(--f-disp); letter-spacing: 0.2em; font-size: 13px; color: #fff; margin-bottom: 18px; text-transform: uppercase; }
.ftr__links { display: flex; flex-direction: column; gap: 12px; }
.ftr__links a { font-size: 14px; color: #ababab; transition: color 0.2s; }
.ftr__links a:hover { color: var(--c-accent); }
.ftr__bottom { border-top: 1px solid var(--c-border); margin-top: 52px; padding-top: 24px; text-align: center; }
.ftr__copy { font-family: var(--f-disp); font-size: 12px; color: #6f6f6f; letter-spacing: 0.1em; }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: rgba(42,42,42,0.96); border-top: 1px solid var(--c-border); backdrop-filter: blur(8px); }
.mobile-cta__inner { display: flex; }
.mobile-cta__btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 11px 4px; font-size: 10.5px; color: #fff; letter-spacing: 0.04em; }
.mobile-cta__btn--primary { background: var(--c-accent); color: #fff; }
.mobile-cta__btn small { font-family: var(--f-disp); font-size: 9px; letter-spacing: 0.16em; opacity: 0.7; text-transform: uppercase; }

/* ---------- Fade-in ---------- */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.is-visible { opacity: 1; transform: none; }
.fade-in.d1 { transition-delay: 0.1s; }
.fade-in.d2 { transition-delay: 0.2s; }
.fade-in.d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hdr { padding: 10px 10px 0; }
  /* ピルの背景・ぼかしは疑似要素に持たせる（.hdr__inner に backdrop-filter を掛けると
     子の position:fixed な .nav の基準がヘッダーになり、ドロワーがヘッダーの高さで
     切れてしまうため） */
  .hdr__inner {
    position: relative;
    height: var(--header-h); max-width: calc(100vw - 20px);
    padding-inline: 18px;
    background: none; border: 0;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    box-shadow: none;
  }
  .hdr__inner::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    border-radius: var(--radius-pill);
    background: #fff; border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: background 0.35s ease, box-shadow 0.35s ease;
  }
  .hdr.is-scrolled { padding-top: 10px; }
  .hdr.is-scrolled .hdr__inner { height: var(--header-h); max-width: calc(100vw - 20px); }
  .hdr.is-scrolled .hdr__inner::before {
    background: #fff;
    box-shadow: 0 18px 38px rgba(0,0,0,0.18);
  }
  .hdr__burger { display: block; }
  .hdr__cta { display: none; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(80vw, 340px);
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; padding: calc(var(--header-h) + 20px) 30px 30px;
    transform: translateX(100%); transition: transform 0.35s ease; z-index: 95;
    box-shadow: -10px 0 40px rgba(0,0,0,0.25); overflow-y: auto;
    border-left: 1px solid rgba(0,0,0,0.06);
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a { width: 100%; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-size: 15px; color: #000000; }
  .nav > a::after { display: none; }
  .split, .message, .access { grid-template-columns: 1fr; gap: 40px; }
  .message__media { max-width: 360px; }
  /* スマホ：直前のMission画像と続かないよう、Recruitは見出し→画像の順にする */
  #recruit-teaser .message__body { order: 1; }
  #recruit-teaser .message__media { order: 2; }
  .split__media--framed::after { inset: 12px -12px -12px 12px; }
  .mvv-spotlight__inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;
    min-height: 0;
    padding: 40px 36px 32px;
  }
  .mvv-spotlight__controls {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 32px;
  }
  .mvv-spotlight__tab {
    justify-content: center;
    padding: 16px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    text-align: center;
  }
  .mvv-spotlight__tab + .mvv-spotlight__tab {
    border-left: 1px solid rgba(255,255,255,0.18);
  }
  .mvv-spotlight__progress {
    grid-column: 1 / -1;
  }
  .hero__bottom { display: block; max-width: 640px; }
  .hero__actions { padding-right: 0; margin-top: 24px; }
  .hero__sub { right: 28px; bottom: 54px; }
}

@media (max-width: 860px) {
  .mvv, .biz-grid, .stats, .persona { grid-template-columns: 1fr; }
  .mvv__item { border-right: none; border-bottom: 1px solid var(--c-border); }
  .mvv__item:last-child { border-bottom: none; }
  .biz-flow { grid-template-columns: repeat(2, 1fr); }
  .biz-flow__step:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .ftr__inner { grid-template-columns: 1fr; gap: 32px; }
  .mobile-cta { display: none; }
  .info-table th, .req-table th { width: 120px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  /* スマホ：2列で狭くなるため数値を縮小し「できたて」等を1行で表示 */
  .stat__num { font-size: 28px; white-space: nowrap; }
  .hero { min-height: 100svh; padding: 12px; }
  .hero__media, .hero__shade { inset: 6px; border-radius: 14px; }
  .hero__content { min-height: calc(100svh - 24px); padding: 104px 16px 62px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.28em; margin-bottom: 16px; }
  .hero__title { font-size: clamp(50px, 19vw, 96px); line-height: 1.02; margin-left: 0; }
  .recruit-hero__title { margin-left: 0; }
  .hero__lead { font-size: 14px; line-height: 1.9; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; padding-inline: 20px; }
  .hero__sub { position: static; writing-mode: horizontal-tb; margin-top: 24px; font-size: 11px; }
  .hero__scroll { display: none; }
  .mvv-spotlight {
    padding: 24px 0 28px;
  }
  .mvv-spotlight .container {
    max-width: min(1560px, 100% - 16px);
  }
  .mvv-spotlight::before {
    background-size: 50% 100%, 100% 100%;
  }
  .mvv-spotlight__inner {
    display: block;
    padding: 22px 16px 20px;
  }
  .mvv-spotlight__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0 10px;
  }
  .mvv-spotlight__label {
    max-width: 160px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }
  .mvv-spotlight__count {
    margin-top: 0;
    font-size: clamp(64px, 20vw, 92px);
    line-height: 0.85;
  }
  .mvv-spotlight__stage {
    padding: 14px 0 22px;
  }
  .mvv-spotlight__title {
    margin-bottom: 18px;
  }
  .mvv-spotlight__slides {
    min-height: 168px;
  }
  .mvv-spotlight__key {
    font-size: clamp(32px, 12vw, 46px);
  }
  .mvv-spotlight__word {
    font-size: clamp(26px, 7.6vw, 36px);
  }
  .mvv-spotlight__link {
    margin-top: 20px;
  }
  .mvv-spotlight__desc {
    font-size: 14px;
  }
  .mvv-spotlight__controls {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }
  .mvv-spotlight__tab {
    justify-content: flex-start;
    padding: 14px 0;
    border-left: 0;
  }
  .mvv-spotlight__tab + .mvv-spotlight__tab {
    border-left: 0;
  }
  /* スマホ：ヘッダーの会社名を一回り小さく */
  .hdr__logo-text, .hdr__logo-dot { font-size: 17px; }
}

@media (max-width: 480px) {
  .info-table th, .info-table td, .req-table th, .req-table td { display: block; width: 100%; padding: 6px 4px; border-bottom: none; }
  .info-table th, .req-table th { padding-top: 18px; color: var(--c-accent); font-size: 13px; }
  .info-table tr, .req-table tr { display: block; border-bottom: 1px solid var(--c-border); padding-bottom: 12px; }
}

/* =========================================================
   事業内容ページ（白基調エディトリアル・ラフ準拠）
   サイト全体はダークだが、本ページのみ意図的に白背景で構成する。
   スコープは .biz-page 配下に限定し、他ページへ波及させない。
   ========================================================= */
.biz-page { background: #ffffff; }

/* Hero：トップと同じ「動画背景＋テキストオーバーレイ」を流用（.hero を継承）。
   サブページ用に見出しをトップよりやや控えめのサイズにする。 */
.hero--sub .hero__title { font-size: clamp(52px, 11vw, 132px); }

/* 01 / 02 事業紹介（2カラム・中央仕切り） */
.biz-svc { background: #fff; padding: 92px 0; border-block: 1px solid rgba(0,0,0,0.08); }
.biz-svc__grid { display: grid; grid-template-columns: 1fr 1fr; }
.biz-svc__item { padding: 6px 0; }
.biz-svc__item:first-child { padding-right: 56px; }
.biz-svc__item:last-child { padding-left: 56px; border-left: 1px solid rgba(0,0,0,0.12); }
.biz-svc__no { font-family: var(--f-disp); font-weight: 300; font-size: clamp(42px, 6vw, 66px); line-height: 1; letter-spacing: 0.04em; color: var(--c-accent); }
.biz-svc__title { margin: 16px 0 18px; font-size: clamp(22px, 3vw, 28px); font-weight: 700; letter-spacing: 0.04em; color: #000000; }
.biz-svc__desc { color: #555; font-size: 15px; line-height: 2; }

/* Partner / Recruit / Contact：カラーパネル＋スライドインボタン
   （sense-trust の .c-btn の挙動を踏襲。色はNowmeのグリーン系に置換） */
.biz-contact { display: flex; }
.biz-contact__block {
  position: relative; width: 33.3333%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 60px 40px 46px; min-height: 384px;
  background: var(--panel); color: #fff;
}
.biz-contact__block--partner { --panel: #5f6c2c; }
.biz-contact__block--recruit { --panel: #3b4319; }
.biz-contact__block--contact { --panel: #4d5724; }
.biz-contact__title { font-family: var(--f-disp); font-weight: 600; font-size: clamp(38px, 4.4vw, 58px); line-height: 0.82; letter-spacing: 0.01em; }
.biz-contact__sub { margin-top: 14px; font-size: 15px; font-weight: 700; letter-spacing: 0.04em; color: rgba(255,255,255,0.92); }
.biz-contact__foot { margin-top: 40px; }
.biz-contact__text { margin-bottom: 28px; font-size: 14.5px; line-height: 1.9; color: rgba(255,255,255,0.9); }
.biz-contact__btn { display: flex; justify-content: flex-end; }

/* c-btn：ホバーでピルの背景塗りが「→」側へスライドして抜ける */
.c-btn { display: inline-flex; justify-content: center; align-items: center; gap: 10px; transition: all 0.5s ease; }
.c-btn__text {
  position: relative; z-index: 1;
  display: inline-flex; justify-content: center; align-items: center;
  min-width: 150px; min-height: 44px; padding: 0 20px;
  border: 1px solid #fff; border-radius: 999px; color: #000000;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  transition: color 0.5s ease, border-color 0.5s ease;
}
.c-btn__text::before {
  content: ""; position: absolute; top: 0; left: 0; z-index: -1;
  width: 100%; height: 100%; border-radius: 999px; background: #fff;
  transition: all 0.5s ease;
}
.c-btn__arrow-wrapper {
  position: relative; z-index: 10; flex: 0 0 auto;
  width: 54px; height: 54px; border-radius: 50%; background: #fff;
  transition: all 0.5s ease;
}
.c-btn__arrow { position: absolute; left: 50%; top: 50%; width: 18px; height: 18px; transform: translate(-50%, -50%); transition: all 0.5s ease; }
.c-btn__arrow path { fill: #000000; transform-origin: center; transition: all 0.5s ease; }
.c-btn:hover .c-btn__text { border-color: #fff; color: #fff; }
.c-btn:hover .c-btn__text::before { left: 130%; width: 0; }
.c-btn:hover .c-btn__arrow-wrapper { transform: scale(1.12); background: #fff; }
.c-btn:hover .c-btn__arrow { transform: translate(-50%, -50%) scale(1.12); }
.c-btn:hover .c-btn__arrow path { transform: scale(0.8); fill: var(--panel); }

@media (max-width: 900px) {
  .biz-svc__grid { grid-template-columns: 1fr; gap: 40px; }
  .biz-svc__item:first-child { padding-right: 0; }
  .biz-svc__item:last-child { padding-left: 0; border-left: 0; border-top: 1px solid rgba(0,0,0,0.12); padding-top: 40px; }
  .biz-contact { flex-direction: column; }
  .biz-contact__block { width: 100%; min-height: 0; padding: 44px 24px 40px; }
}

/* =========================================================
   Philosophy ページ（白基調・MVV＋美学ステートメント）
   Hero はトップと同じ動画背景を流用しつつ、見出しは控えめに。
   スコープは .philo-page / .philo 配下に限定し、他ページへ波及させない。
   ========================================================= */
.philo-page { background: #ffffff; }

/* Hero 見出し：トップHeroの英字（Make. Today. Better.）よりちょい小さい程度に（英字・太ゴシック） */
.hero--philo .hero__title {
  font-size: clamp(50px, 12.4vw, 154px);
  font-weight: 900; line-height: 0.9; letter-spacing: 0; margin-left: -0.04em;
}

/* 白セクション本体 */
.philo { background: #ffffff; padding: clamp(66px, 9vw, 118px) 0; }

/* MVV（中央・縦積み） */
.philo-mvv { display: flex; flex-direction: column; gap: clamp(34px, 5vw, 58px); text-align: center; }
.philo-mvv__key {
  font-family: var(--f-disp); font-weight: 500; font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-accent);
}
.philo-mvv__word {
  margin-top: 10px; font-family: var(--f-mincho); font-weight: 800;
  font-size: clamp(26px, 4.4vw, 46px); line-height: 1.4; letter-spacing: 0.04em; color: #000000;
}

/* 区切り線 */
.philo-divider { width: 44px; height: 2px; margin: clamp(50px, 7vw, 76px) auto; background: var(--c-accent); opacity: 0.55; }

/* 美学ステートメント */
.philo-creed { max-width: 760px; margin: 0 auto; text-align: center; }
.philo-creed p { color: #000; font-size: clamp(15px, 1.9vw, 17px); line-height: 2.4; letter-spacing: 0.04em; }
.philo-creed p + p { margin-top: 1.6em; }
.philo-creed .philo-creed__end {
  margin-top: 1.9em; font-family: var(--f-mincho); font-weight: 700;
  font-size: clamp(18px, 2.6vw, 24px); line-height: 1.85; color: #000000;
}

@media (max-width: 900px) {
  .philo-creed p br { display: none; }
  .philo-creed .philo-creed__lines br { display: inline; }
}

/* ---------- Accessibility：動きを抑える設定への配慮 ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .fade-in { opacity: 1; transform: none; }
  .hero__media, .hero__eyebrow, .hero__title, .hero__bottom, .hero__sub, .hero__scroll::after { animation: none; opacity: 1; transform: none; }
  .mvv-spotlight__slide.is-active, .mvv-spotlight__progress span { animation: none; }
}
