/* =========================================================
   v2：バイヤー・代理店向け動線設計／白ベース・フォーマル寄り
   - 背景：#FFFFFF 基調、セクション区切りのみ #FAFAFA
   - アクセント：イボンヌレッド #C30D23 は CTA・タグ・見出しラインのみ
   - 罫線中心のレイアウトで「ブランド＆IPカンパニー」の信頼感を出す
   ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  /* ブランドカラー（RULES.md §8.5） */
  --red: #C30D23;          /* イボンヌレッド：アクセントのみ */
  --red-dark: #9A0A1B;
  --red-tint: #FDF4F5;     /* 極淡い赤背景（ホバー等） */

  /* コーポレートニュートラル */
  --bg: #FFFFFF;
  --bg-alt: #FAFAFA;       /* セクション交互背景 */
  --bg-panel: #F5F5F5;     /* パネル用 */
  --ink: #1A1A1A;          /* 主要テキスト */
  --ink-2: #4A4A4A;        /* 本文 */
  --ink-3: #8A8A8A;        /* 補足・ラベル */
  --line: #E5E5E5;         /* 罫線 */
  --line-2: #D0D0D0;       /* やや濃い罫線 */

  /* タイポ */
  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* レイアウト */
  --container: 1200px;          /* 標準：text系・Header・Topics・News・Company・Contact */
  --container-wide: 1360px;     /* 拡張：Business/Portfolio/Products のグリッド系 */
  --gutter: 24px;
  --section-y: 120px;      /* PC：セクション間 */
  --section-y-sp: 72px;
}

/* ---------- リセット ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  background: var(--bg);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--red); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---------- 汎用クラス ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
/* グリッド主体セクションだけ幅を広めに（BtoBバイヤー向けの息抜き） */
.biz .container,
#portfolio .container,
#products .container {
  max-width: var(--container-wide);
}
.section { padding: var(--section-y) 0; }
.section--alt { background: var(--bg-alt); }
.section--hairline { border-top: 1px solid var(--line); }

/* セクションヘッダ共通 */
.sec-head { margin-bottom: 56px; }
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.sec-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--red);
}
.sec-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: .02em;
}
.sec-title .en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: .12em;
  margin-top: 8px;
}
.sec-lead {
  max-width: 720px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  color: var(--ink-2);
}

/* セクション末尾の遷移CTA：下層ページへの誘導
   トップ各セクションの要約→詳細ページ導線を視認性高く統一
   ・背景パネル(bg-alt)＋左に赤アクセントバーで「ここが導線」と明示
   ・ボタンは赤塗り＋影で主要アクションとして強調
   ・中央寄せで視線を集中させる */
.sec-cta {
  position: relative;
  margin-top: 64px;
  padding: 32px 40px;
  background: var(--bg-alt);
  border-left: 4px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
  isolation: isolate;
}
/* 右上に薄いEN透かしで「Detail」感を強める */
.sec-cta::after {
  content: "MORE DETAIL"; font-family: 'Cormorant Garamond', 'Georgia', serif;
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 64px; font-weight: 800;
  color: rgba(195, 13, 35, .04);
  letter-spacing: -.01em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
/* 左側ガイドテキスト（このセクションの続きが下層にある旨を示す） */
.sec-cta::before {
  content: "詳しくはこちらの専用ページで";
  position: relative;
  z-index: 1;
  font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .04em;
}
.sec-cta__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 20px 36px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 2px;
  box-shadow: 0 6px 18px rgba(195, 13, 35, .22);
  transition: background .2s, transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.sec-cta__link:hover {
  background: #A00A1C;
  border-color: #A00A1C;
  color: #fff; /* グローバル a:hover{color:red} の上書き対策 */
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(195, 13, 35, .32);
}
/* specificity を 0-3-0 に上げて、親セクションの .biz__body .en / .ip__body .en
   （いずれも display: block＋色変更）を確実に上書きする */
.sec-cta .sec-cta__link .en {
  display: inline-flex; /* 親側の display:block を打ち消し */
  align-items: center;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9); /* 赤背景の上で確実に読める明度 */
  margin: 0 16px 0 0;             /* 親側の margin-bottom リセット */
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, .45);
  transition: color .2s, border-color .2s;
}
.sec-cta .sec-cta__link:hover .en {
  color: #fff;
  border-right-color: rgba(255, 255, 255, .65);
}
.sec-cta__link .arrow {
  width: 18px;
  height: 18px;
  margin-left: 18px;
  transition: transform .2s;
}
.sec-cta__link:hover .arrow { transform: translateX(4px); }
/* 暗背景セクション（section--alt）では背景を白に反転して視認性を確保 */
.section--alt .sec-cta {
  background: #fff;
}

/* ボタン系 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .06em;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover {
  background: var(--red-dark);
  color: #fff;
}
.btn--outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 0 16px;
}
.btn--ghost:hover { color: var(--red); }
.btn .arrow {
  width: 16px; height: 16px;
  stroke-width: 2;
}

/* =========================================================
   Utility Bar（最上部の極細バー）
   - 英語切替・採用・ECリンクなど「コーポレ補助導線」
   ========================================================= */
.utility {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.utility__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility__left {
  font-family: var(--font-en);
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}
.utility__right { display: flex; align-items: center; gap: 18px; }
.utility__right a {
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.utility__right a:hover { color: #fff; }
/* Utility barのSNSアイコン専用（テキストなし・小さく） */
.utility__sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.18);
  align-self: center;
}
.utility__icon { gap: 0; }
.utility__icon i { width: 14px; height: 14px; }

/* =========================================================
   Header：ロゴ + グローバルナビ + CTA
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__primary {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
}
.logo__secondary {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 3px;
}
.gnav { display: flex; align-items: center; gap: 32px; }
.gnav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .04em;
  position: relative;
  padding: 4px 0;
}
.gnav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .25s ease;
}
.gnav a:hover::after { width: 100%; }
.header__cta .btn {
  min-height: 44px;
  padding: 0 22px;
  font-size: 13px;
}
.burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
}

/* =========================================================
   モバイルドロワー（Mobile Drawer）
   - burgerクリックで右からスライドイン
   - 背景クリック／×ボタン／メニュー内リンク／ESCキーで閉じる
   - body.is-lockedで背景スクロール抑止
   ========================================================= */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  transition: opacity .3s ease;
}
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,.08);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head {
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer__head-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--ink-3);
  font-weight: 600;
}
.drawer__close {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background-color .2s ease, color .2s ease;
}
.drawer__nav a:hover { background: var(--bg); color: var(--red); }
.drawer__nav a .en {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--ink-3);
  font-weight: 600;
}
.drawer__cta {
  padding: 24px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer__cta .btn { width: 100%; }
/* PC幅では非表示にして安全側に倒す */
@media (min-width: 768px) {
  .drawer { display: none; }
}
/* スクロールロック */
body.is-locked { overflow: hidden; }

/* =========================================================
   Hero - Variation T1 | Cinematic Split（トップ／プロトT1準拠）
   左：写真パネル（5枚フェードクロス＋Ken Burns）／右：コピー＋メトリクス
   ========================================================= */
.v-t1 { background: #fff; border-bottom: 1px solid var(--line); }
.v-t1 .container {
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 0;
  /* ヘッダー(76px) + Topicsバーを余裕を持って表示させる分(約140px) を差し引き、Topicsを主張させる */
  min-height: calc(100vh - 216px);
}
/* ---- 左：写真パネル ---- */
.v-t1 .panel {
  background: #111;
  position: relative;
  overflow: hidden;
  transform: translateX(-4%);
  opacity: 0;
  transition:
    transform 1.1s cubic-bezier(.22, 1, .36, 1),
    opacity .9s cubic-bezier(.22, 1, .36, 1);
}
.v-t1.is-visible .panel { transform: none; opacity: 1; }
.v-t1 .slides { position: absolute; inset: 0; }
.v-t1 .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity;
}
.v-t1 .slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s linear;
}
/* 横長画角の店舗写真は左揃えで切り抜く（fv01/fv03用） */
.v-t1 .slide--left img { object-position: left center; }
.v-t1 .slide.is-active { opacity: 1; }
.v-t1 .slide.is-active img { transform: scale(1.08); }
.v-t1 .slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}
.v-t1 .panel .caption {
  position: absolute; left: 28px; bottom: 28px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  z-index: 3;
  display: flex; align-items: center; gap: 14px;
}
.v-t1 .panel .caption-text { transition: opacity .5s cubic-bezier(.22, 1, .36, 1); }
.v-t1 .panel .dots {
  position: absolute; right: 28px; bottom: 28px;
  display: flex; gap: 8px; z-index: 3;
}
.v-t1 .panel .dots i {
  width: 22px; height: 2px;
  background: rgba(255,255,255,.35);
  display: block;
  transition:
    background .4s cubic-bezier(.22, 1, .36, 1),
    width .4s cubic-bezier(.22, 1, .36, 1);
}
.v-t1 .panel .dots i.is-active { background: #fff; width: 36px; }
/* ---- 右：コピー ---- */
.v-t1 .copy {
  padding: 72px 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v-t1 .copy .label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .7s cubic-bezier(.22, 1, .36, 1) .3s,
    transform .7s cubic-bezier(.22, 1, .36, 1) .3s;
  font-weight: 700;
}
.v-t1 .copy .label::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--red);
}
.v-t1 .copy h1 {
  font-weight: 900;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.18;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 32px;
}
.v-t1 .copy h1 em { color: var(--red); font-style: normal; }
.v-t1 .copy h1 .line { display: block; overflow: hidden; }
.v-t1 .copy h1 .line > span {
  display: block;
  transform: translateY(110%);
  transition: transform .95s cubic-bezier(.22, 1, .36, 1);
}
.v-t1.is-visible .copy h1 .line:nth-child(1) > span { transition-delay: .45s; transform: none; }
.v-t1.is-visible .copy h1 .line:nth-child(2) > span { transition-delay: .55s; transform: none; }
.v-t1.is-visible .copy h1 .line:nth-child(3) > span { transition-delay: .65s; transform: none; }
.v-t1.is-visible .copy .label { opacity: 1; transform: none; }
.v-t1 .copy .lead {
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1) .95s,
    transform .8s cubic-bezier(.22, 1, .36, 1) .95s;
}
.v-t1 .copy .lead p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-2);
}
.v-t1 .copy .lead p + p { margin-top: 16px; }
.v-t1 .copy .lead b { color: var(--ink); font-weight: 700; }
.v-t1 .copy .lead .mark { color: var(--red); font-weight: 700; }
.v-t1 .copy .ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1) 1.1s,
    transform .8s cubic-bezier(.22, 1, .36, 1) 1.1s;
}
.v-t1 .copy .metrics {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1) 1.25s,
    transform .8s cubic-bezier(.22, 1, .36, 1) 1.25s;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 32px;
  margin: 0;
  font-size: 12px;
  color: var(--ink-3);
}
.v-t1 .copy .metrics strong {
  display: block;
  color: var(--red);
  font-family: var(--font-en);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}
.v-t1 .copy .metrics span { display: block; }
.v-t1.is-visible .copy .lead,
.v-t1.is-visible .copy .ctas,
.v-t1.is-visible .copy .metrics { opacity: 1; transform: none; }

/* =========================================================
   News ticker：フォーマル寄りに
   ========================================================= */
.topics {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.topics__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.topics__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .18em;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.topics__list {
  display: flex;
  gap: 40px;
  overflow: hidden;
  flex: 1;
}
.topics__list li { display: flex; gap: 16px; align-items: center; }
.topics__date { color: var(--ink-3); font-family: var(--font-en); font-size: 12px; }
.topics__tag {
  font-size: 11px;
  padding: 2px 10px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  letter-spacing: .04em;
}
.topics__text { color: var(--ink); }
.topics__text:hover { color: var(--red); }

/* =========================================================
   Value props：バイヤー視点の3つの価値
   ========================================================= */
.value { padding: var(--section-y) 0; }
.value__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value__item {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.value__num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.value__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}
.value__desc {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-2);
}

/* =========================================================
   Business Portfolio：3事業を並列で整理
   ========================================================= */
.biz { background: var(--bg-alt); }
.biz__list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.biz__item {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.biz__no {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .12em;
}
.biz__no strong {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1;
}
.biz__body h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.biz__body .en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .15em;
  margin-bottom: 20px;
}
.biz__body p {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-2);
}
.biz__body .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.biz__body .tags span {
  font-size: 11px;
  padding: 4px 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  letter-spacing: .04em;
}
.biz__thumb {
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.biz__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Bleed Band：セクション間を繋ぐフルブリード写真帯
   - 画面幅いっぱいに広がる横長ビジュアル + 左下にコピー
   - Why→Business、Portfolio→Products の導線に使用
   ========================================================= */
.bleed-band {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 8;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.bleed-band__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bleed-band__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}
.bleed-band:hover .bleed-band__img img { transform: scale(1.06); }
.bleed-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .28) 55%, rgba(0, 0, 0, .06) 100%);
}
.bleed-band__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
}
.bleed-band__text { max-width: 680px; }
.bleed-band__en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, .4);
  padding-top: 12px;
}
.bleed-band__title {
  font-size: 34px;
  line-height: 1.55;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.bleed-band__sub {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .85);
  max-width: 580px;
}

/* =========================================================
   Track Record：実績数値 + パートナー一覧
   ========================================================= */
.record__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.record__stat {
  padding: 40px 24px;
  text-align: left;
  border-right: 1px solid var(--line);
}
.record__stat:last-child { border-right: none; }
.record__stat dt {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .15em;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.record__stat dd {
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 700;
  color: var(--red); /* イボンヌレッド：実績数値をアクセントカラーで強調 */
  line-height: 1.1;
  letter-spacing: -.02em;
}
.record__stat dd .unit {
  font-size: 16px;
  color: var(--ink-2); /* ユニット部分はグレーのままでメリハリを出す */
  margin-left: 4px;
  font-weight: 500;
}

.record__group { margin-top: 64px; }
.record__group h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.record__partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.record__partners li {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  text-align: center;
  padding: 16px;
  letter-spacing: .02em;
  background: #fff;
}
.record__awards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.record__award {
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.record__award .ico {
  width: 32px; height: 32px;
  color: var(--red);
  flex-shrink: 0;
}
.record__award p { font-size: 13px; line-height: 1.8; color: var(--ink); }
.record__award small { color: var(--ink-3); font-family: var(--font-en); display: block; margin-top: 4px; }

