@charset "UTF-8";
/* =========================================================================
   cadence — 株式会社cadence
   方向A「暗室」: ブースの闇。声だけが灯る。
   アクセント = CUEランプの朱。「音を立てずに送る、声を始める合図」。
   → 聴ける場所 / 進む場所だけに灯す（United Voices の実ルールの翻案）
   ========================================================================= */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
/* height:auto を書かないと width/height 属性が aspect-ratio を殺して実寸で描画される */
img, picture, video, canvas { max-width: 100%; height: auto; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- tokens ---------- */
:root {
  /* 地 — 温かい黒。ブースの暗がり。灰色の黒にしない */
  --ink:        #14120F;
  --ink-2:      #1B1815;
  --ink-3:      #232019;
  /* 紙 — 台本の紙 */
  --paper:      #EDE7DC;
  --paper-2:    #E2DACB;
  /* CUEランプの朱 */
  --cue:        #C8382E;
  --cue-soft:   #E0574B;

  /* セマンティックロール（暗地が既定） */
  --bg:         var(--ink);
  --text:       #EDE7DC;
  --mute:       #9C9287;
  --dim:        #6C635A;
  --line:       rgba(237, 231, 220, .14);
  --line-2:     rgba(237, 231, 220, .30);

  /* 書体 */
  --f-mincho: "Shippori Mincho B1", "Hiragino Mincho ProN", serif;
  --f-sans:   "Noto Sans JP", "Hiragino Sans", sans-serif;
  --f-en:     "Newsreader", Georgia, serif;
  --f-mono:   "IBM Plex Mono", ui-monospace, monospace;

  /* 余白 */
  --pad:    clamp(20px, 5vw, 72px);
  --sec-y:  clamp(84px, 12vw, 168px);
  --maxw:   1320px;
  --maxw-narrow: 760px;
  /* United Voices 実測: 列は詰め、行は空ける（非対称 gap） */
  --space-xs: clamp(16px, 2vw, 30px);
  --space-s:  clamp(10px, 1vw, 14px);
  --space-m:  clamp(14px, 1.5vw, 22px);
  --space-l:  clamp(26px, 2.6vw, 38px);
  --space-xl: clamp(32px, 3.4vw, 49px);

  --ease:     cubic-bezier(.19, 1, .22, 1);
  --ease-io:  cubic-bezier(.65, 0, .35, 1);
  --r-pill:   999px;
}

/* 明地セクション（暗↔明の交互配置） */
.sec--paper {
  --bg:   var(--paper);
  --text: #14120F;
  --mute: #6B6259;
  --dim:  #8C8378;
  --line:   rgba(20, 18, 15, .14);
  --line-2: rgba(20, 18, 15, .30);
}
.sec--paper2 { --bg: var(--paper-2); }
.sec--ink2   { --bg: var(--ink-2); }

/* ---------- base ---------- */
html { scroll-behavior: smooth; line-break: strict; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* 行頭禁則 */
p, li, dd, dt, figcaption { word-break: auto-phrase; text-wrap: pretty; }
h1, h2, h3, h4, .h-lg, .h-md { word-break: auto-phrase; text-wrap: balance; }
/* 文節で明示改行させる（約物の泣き別れ防止） */
.nb { display: inline-block; }

::selection { background: var(--cue); color: #fff; }
:focus-visible { outline: 2px solid var(--cue); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: var(--maxw-narrow); }
.sec { background: var(--bg); color: var(--text); padding-block: var(--sec-y); position: relative; }

/* ---------- typography roles ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex;
  align-items: center;
  gap: .9em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--cue);
  flex: none;
}
.eyebrow--plain::before { display: none; }

.h-lg {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 62px);
  line-height: 1.38;
  letter-spacing: .04em;
}
.h-md {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.6;
  letter-spacing: .05em;
}
.h-sm {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
  letter-spacing: .05em;
}
.lead {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 2.3;
  letter-spacing: .06em;
}
.body { font-size: 15px; line-height: 2.15; color: var(--mute); }
.body + .body { margin-top: 1.6em; }
.body strong { color: var(--text); font-weight: 500; }

/* 引用の一行（思想の核） */
.pull {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 36px);
  line-height: 1.85;
  letter-spacing: .06em;
  color: var(--text);
  padding-left: clamp(16px, 2vw, 28px);
  border-left: 1px solid var(--cue);
}

.num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--dim);
}

/* ---------- button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .8em;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  color: var(--text);
  background: transparent;
  word-break: keep-all;   /* ラベルを語中で折らない */
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); border-color: var(--cue); background: var(--cue); color: #fff; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--cue { border-color: var(--cue); background: var(--cue); color: #fff; }
.btn--cue:hover { background: var(--cue-soft); border-color: var(--cue-soft); }

/* テキストリンク（下線が引かれて伸びる） */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 5px;
  position: relative;
}
.tlink::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--line-2);
  transform-origin: right;
  transition: transform .5s var(--ease), background .35s var(--ease);
}
.tlink:hover { color: var(--cue); }
.tlink:hover::after { background: var(--cue); transform: scaleX(1.06); transform-origin: left; }
.tlink svg { transition: transform .35s var(--ease); }
.tlink:hover svg { transform: translateX(4px); }

/* =========================================================================
   header / drawer
   ========================================================================= */
.header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 90;
  padding-block: 22px;
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s var(--ease);
}
.header::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(20, 18, 15, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: -1;
}
.header.is-scrolled { padding-block: 13px; }
.header.is-scrolled::after { opacity: 1; }
.header__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: var(--f-en);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1;
  color: #EDE7DC;
  display: inline-flex; align-items: baseline; gap: 2px;
}
/* ワードマークの「c」の頭にCUEの点 — 声が始まる合図 */
.brand::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cue);
  align-self: center;
  margin-right: 7px;
  flex: none;
}
.nav { display: flex; align-items: center; gap: clamp(16px, 1.9vw, 30px); }
.nav__link {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(237, 231, 220, .74);
  transition: color .3s var(--ease);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.is-current { color: var(--cue); }
.nav__cta { margin-left: 6px; padding: 11px 20px; font-size: 12px; }

.burger { display: none; width: 40px; height: 40px; position: relative; flex: none; }
.burger span {
  position: absolute; left: 9px; right: 9px; height: 1px;
  background: #EDE7DC;
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { bottom: 15px; }

.drawer {
  position: fixed; inset: 0;
  z-index: 95;
  background: var(--ink);
  padding: 84px var(--pad) 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__close {
  position: absolute; top: 20px; right: max(var(--pad), 20px);
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.drawer__close:hover { border-color: var(--cue); color: var(--cue); }
.drawer__list { display: flex; flex-direction: column; }
.drawer__item {
  display: flex; align-items: baseline; gap: 16px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: .06em;
  transition: color .3s var(--ease);
}
.drawer__item:last-child { border-bottom: 1px solid var(--line); }
.drawer__item:hover { color: var(--cue); }
.drawer__item .num { flex: none; }
.drawer__en {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim); margin-left: auto;
}
.drawer__foot { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }

/* =========================================================================
   hero — 暗闇。溜め。一行が息を継ぐように立ち上がる。
   ========================================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 32% 50%; }
/* 被写体と文字領域を分離するスクリム（多段グラデ） */
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20,18,15,.94) 0%, rgba(20,18,15,.72) 26%, rgba(20,18,15,.12) 62%, rgba(20,18,15,.42) 100%),
    linear-gradient(to right, rgba(20,18,15,.10) 0%, rgba(20,18,15,.55) 58%, rgba(20,18,15,.88) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: 0 var(--pad) clamp(56px, 8vh, 104px);
}
.hero__body { max-width: 760px; }
.hero__eyebrow { margin-bottom: clamp(18px, 2.4vw, 30px); }
.hero__title {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(31px, 5.1vw, 76px);
  line-height: 1.42;
  letter-spacing: .045em;
  text-shadow: 0 2px 40px rgba(20, 18, 15, .6);
}
.hero__lead { margin-top: clamp(20px, 2.6vw, 32px); max-width: 500px; color: rgba(237,231,220,.8); }
.hero__actions { margin-top: clamp(28px, 3.4vw, 42px); display: flex; flex-wrap: wrap; gap: 12px; }
.hero__mobile-media { display: none; }

/* 「間」= 溜めてから立ち上がる。JS非依存・CSSのみ。 */
.rise { display: block; overflow: hidden; }
.rise > span {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  animation: rise 1.25s var(--ease) forwards;
}
.hero__eyebrow, .hero__lead, .hero__actions { opacity: 0; animation: fade .95s var(--ease) forwards; }
.hero__eyebrow { animation-delay: .28s; }
.rise:nth-of-type(1) > span { animation-delay: .62s; }
.rise:nth-of-type(2) > span { animation-delay: .74s; }
.rise:nth-of-type(3) > span { animation-delay: .86s; }
.hero__lead    { animation-delay: 1.18s; }
.hero__actions { animation-delay: 1.34s; }
@keyframes rise { to { transform: translateY(0); opacity: 1; } }
@keyframes fade { to { opacity: 1; } }

/* =========================================================================
   署名① 「ありがとう」の言い方 — 同じ言葉が、まったく違うものになる
   ========================================================================= */
.kotoba__head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(44px, 5vw, 72px); }
.kotoba__stage {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 92px);
  display: grid;
  grid-template-columns: 1fr minmax(0, 400px);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.kotoba__word {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(38px, 8.4vw, 116px);
  line-height: 1.24;
  letter-spacing: 0;
  white-space: nowrap;
  display: flex;
  min-height: 1.3em;
  align-items: center;
}
/* 既定は「見えている」。JS/フォントが死んでも「ありがとう」は必ず読める。
   間(=無音)は animation-fill-mode:both が遅延中に from を保持して作る。 */
.kotoba__ch {
  display: inline-block;
  opacity: 1;
  will-change: transform, opacity, filter;
}
.kotoba.is-playing .kotoba__ch {
  animation: koe var(--dur, 620ms) var(--ez, cubic-bezier(.19, 1, .22, 1)) both;
  animation-delay: var(--d, 0ms);
}
@keyframes koe {
  from { transform: translateY(var(--fy, 0)) translateX(var(--fx, 0)) scale(var(--fs, 1)) rotate(var(--fr, 0deg)); opacity: 0; filter: blur(var(--fb, 0px)); }
  to   { transform: translateY(var(--ty, 0)) translateX(0) scale(var(--ts, 1)) rotate(var(--tr, 0deg)); opacity: var(--to, 1); filter: blur(0); }
}
/* 間(かん)を示す発話バー — 波形は描かない。鳴っている時間だけを描く。 */
.kotoba__rhythm { margin-top: clamp(26px, 3vw, 40px); }
/* バーはJS生成なので、JSが無いなら空のトラックだけ残さず畳む */
html.no-js .kotoba__rhythm { display: none; }
.kotoba__rhythm-label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 12px;
}
.kotoba__bars { position: relative; height: 3px; background: var(--line); }
.kotoba__bar {
  position: absolute; top: 0; height: 100%;
  background: var(--cue);
  transform: scaleX(0); transform-origin: left;
}
.kotoba.is-playing .kotoba__bar {
  animation: barin var(--bdur, 300ms) linear both;
  animation-delay: var(--bd, 0ms);
}
@keyframes barin { to { transform: scaleX(1); } }

.kotoba__modes { display: flex; flex-direction: column; gap: 0; }
.kotoba__mode {
  display: block; width: 100%; text-align: left;
  padding: 17px 0 16px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  transition: color .35s var(--ease), padding-left .35s var(--ease);
  position: relative;
}
.kotoba__mode:last-child { border-bottom: 1px solid var(--line); }
.kotoba__mode::before {
  content: "";
  position: absolute; left: 0; top: -1px;
  width: 0; height: 1px; background: var(--cue);
  transition: width .5s var(--ease);
}
.kotoba__mode-name {
  font-family: var(--f-mincho); font-weight: 600;
  font-size: clamp(15px, 1.4vw, 18px); letter-spacing: .05em;
  line-height: 1.7; display: block;
}
.kotoba__mode-desc { font-size: 12.5px; line-height: 1.85; color: var(--dim); display: block; margin-top: 3px; }
.kotoba__mode:hover { color: var(--text); padding-left: 14px; }
.kotoba__mode.is-active { color: var(--text); padding-left: 14px; }
.kotoba__mode.is-active::before { width: 100%; }
.kotoba__mode.is-active .kotoba__mode-desc { color: var(--mute); }
.kotoba__note { margin-top: clamp(40px, 5vw, 64px); }

/* =========================================================================
   間(ま) — 語らない一瞬が、いちばん、語る
   ========================================================================= */
.ma__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}
.ma__media { position: relative; }
.ma__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ma__body { display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 30px); }

/* =========================================================================
   TALENT — United Voices 忠実再現
   ========================================================================= */
.voice-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xs);
  row-gap: var(--space-xl);
}
.voice-card { display: flex; flex-direction: column; }
.voice-card__link { display: block; color: inherit; }
.voice-card__image-wrapper { position: relative; aspect-ratio: 1; overflow: hidden; margin-bottom: var(--space-xs); background: var(--ink-3); }
.voice-card__image-wrapper::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background .2s ease;
  pointer-events: none; z-index: 1;
}
.voice-card:hover .voice-card__image-wrapper::after { background: rgba(0, 0, 0, .3); }
.voice-card__image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s var(--ease); }
.voice-card:hover .voice-card__image { transform: scale(1.035); }
/* 固定高で名前行のガタつきを封じる（UV実測 4.5em） */
.voice-card__details { height: 4.5em; }
.voice-card__name {
  font-family: var(--f-mincho); font-weight: 600;
  font-size: 16px; line-height: 1.6; letter-spacing: .04em;
  margin-bottom: 3px;
  transition: color .2s ease;
}
.voice-card:hover .voice-card__name { color: var(--cue); }
.voice-card__kana { font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; color: var(--dim); display: block; }
.voice-card__accent { font-size: 12px; line-height: 1.7; color: var(--mute); }
.voice-card__footer { margin-top: auto; }
.voice-card__playbar { position: relative; height: 1.5px; width: 100%; }
.voice-card__playbar-track { position: absolute; inset: 0; background: var(--line-2); }
.voice-card__playbar-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0; background: var(--cue); }
.voice-card__actions { display: flex; align-items: center; justify-content: space-between; padding-top: 3px; gap: 8px; }
.voice-card__play-btn {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--mute);
  font-family: var(--f-mono); font-size: 11px; line-height: 16px;
  letter-spacing: .1em; text-transform: uppercase;
  transition: color .2s ease;
}
.voice-card__play-btn:hover { color: var(--cue); }
.voice-card:hover .voice-card__play-btn { color: var(--cue); }
/* 音源が無い声は、静かに沈む（United Voices 実装の忠実再現） */
.voice-card__play-btn--disabled { cursor: default; opacity: .4; }
.voice-card__play-btn--disabled:hover { color: var(--mute); }
.voice-card:hover .voice-card__play-btn--disabled { color: var(--mute); }
.shortlist-add {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--mute);
  font-family: var(--f-mono); font-size: 11px; line-height: 16px;
  letter-spacing: .1em; text-transform: uppercase;
  transition: color .2s ease;
}
.shortlist-add:hover { color: var(--cue); }
.voice-card:hover .shortlist-add { color: var(--cue); }
.shortlist-add.is-added { color: var(--cue); }
.shortlist-add__box {
  width: 11px; height: 11px; border: 1px solid currentColor; border-radius: 2px;
  display: grid; place-items: center; flex: none;
}
.shortlist-add__box svg { opacity: 0; transition: opacity .25s var(--ease); }
.shortlist-add.is-added .shortlist-add__box svg { opacity: 1; }

/* 支給原稿の箇条書き */
.tlist { margin-top: clamp(20px, 2.4vw, 30px); border-top: 1px solid var(--line); }
.tlist li {
  display: flex; gap: 15px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line);
  font-size: 14.5px; line-height: 1.95; color: var(--mute);
}
/* 1px だと行の端数座標に跨ってアンチエイリアスで濃さがバラつくので 2px */
.tlist li::before { content: ""; width: 15px; height: 2px; background: var(--cue); flex: none; transform: translateY(-5px); }

/* フィルタ — 業界の資産を、発注者の探し方に並べ替える */
.filters { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.filter-row { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 22px); padding: 15px 0; flex-wrap: wrap; }
.filter-row + .filter-row { border-top: 1px solid var(--line); }
.filter-row__label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--dim);
  width: 92px; flex: none;
}
.chip {
  font-size: 12.5px; letter-spacing: .04em; line-height: 1;
  padding: 8px 15px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
  color: var(--mute);
  transition: color .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
  white-space: nowrap;
}
.chip:hover { color: var(--text); border-color: var(--line-2); }
.chip.is-on { background: var(--cue); border-color: var(--cue); color: #fff; }
.filters__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 15px 0; flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.filters__count { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; color: var(--mute); }
.filters__count b { color: var(--cue); font-weight: 500; }
.filters__reset { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); transition: color .3s var(--ease); }
.filters__reset:hover { color: var(--cue); }
.voice-card.is-hidden { display: none; }
.grid-empty { padding: clamp(60px, 10vw, 120px) 0; text-align: center; color: var(--mute); }

/* 常駐プレイヤー（floating bar）— 一覧↔詳細で音が途切れない */
.floating-bar {
  position: fixed; bottom: 22px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - var(--pad) * 2); max-width: 640px;
  z-index: 80;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.floating-bar.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.floating-bar__inner {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 16px;
  background: rgba(35, 32, 25, .82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.floating-bar__thumb { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex: none; }
.floating-bar__name { font-family: var(--f-mincho); font-weight: 600; font-size: 13px; white-space: nowrap; flex: none; }
.floating-bar__play { display: grid; place-items: center; width: 20px; flex: none; color: var(--cue); }
.floating-bar__progress { flex: 1; height: 3px; position: relative; cursor: pointer; min-width: 0; }
.floating-bar__track { position: absolute; inset: 0; background: var(--line-2); }
.floating-bar__fill { position: absolute; top: 0; left: 0; height: 100%; width: 0; background: var(--cue); transition: width .1s linear; }
.floating-bar__timer { font-family: var(--f-mono); font-size: 11px; color: var(--mute); flex: none; min-width: 34px; text-align: right; }
.floating-bar__close { color: var(--dim); flex: none; transition: color .3s var(--ease); }
.floating-bar__close:hover { color: var(--cue); }

/* =========================================================================
   FIELD — 声が、仕事になる場所
   ========================================================================= */
.field-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
/* インラインで列数を書くとメディアクエリに勝ってスマホで破綻するのでクラスにする */
.field-grid--2 { grid-template-columns: repeat(2, 1fr); }
.field-item { background: var(--bg); padding: clamp(24px, 2.6vw, 38px); display: flex; flex-direction: column; gap: 18px; min-width: 0; transition: background .5s var(--ease); }
.field-item:hover { background: var(--ink-2); }
.sec--paper .field-item:hover { background: var(--paper-2); }
.field-item__media { overflow: hidden; aspect-ratio: 4/3; }
.field-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.field-item:hover .field-item__media img { transform: scale(1.05); }
.field-item__head { display: flex; align-items: baseline; gap: 12px; }
.field-item__body { font-size: 13.5px; line-height: 2; color: var(--mute); }

/* =========================================================================
   署名③ 2つの入口 — Zelig型2カラム・ホバーフォーカス
   ========================================================================= */
.gates { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.gate {
  background: var(--ink);
  padding: clamp(44px, 6vw, 96px) clamp(24px, 3.4vw, 60px);
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  transition: opacity .55s var(--ease), background .55s var(--ease);
}
.gate__bg { position: absolute; inset: 0; z-index: 0; opacity: .16; transition: opacity .7s var(--ease), transform 1.4s var(--ease); }
/* 素材の明るさが違う(暗い調整室 vs 明るいレッスン室)ので、同じ不透明度でも白浮きする。輝度を揃える。 */
.gate__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6) saturate(.9); }
.gate > *:not(.gate__bg) { position: relative; z-index: 1; }
.gate__title { font-family: var(--f-mincho); font-weight: 600; font-size: clamp(26px, 3.2vw, 44px); line-height: 1.45; letter-spacing: .05em; }
.gate__body { font-size: 13.5px; line-height: 2.05; color: var(--mute); max-width: 30em; }
.gate__cta { margin-top: auto; padding-top: 20px; }
/* 片方にホバーすると、他方が減光する */
.gates:hover .gate { opacity: .34; }
.gates:hover .gate:hover { opacity: 1; }
.gate:hover .gate__bg { opacity: .3; transform: scale(1.04); }

/* =========================================================================
   WORKS — 実績はクレジットで担保する
   ========================================================================= */
.credits { border-top: 1px solid var(--line); }
.credit {
  display: grid;
  grid-template-columns: 76px 1fr 200px 150px;
  gap: clamp(12px, 2vw, 28px);
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), padding-left .4s var(--ease);
}
.credit:hover { background: rgba(237, 231, 220, .03); padding-left: 12px; }
.sec--paper .credit:hover { background: rgba(20, 18, 15, .03); }
.credit__year { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; color: var(--dim); }
.credit__title { font-family: var(--f-mincho); font-weight: 600; font-size: clamp(15px, 1.4vw, 18px); letter-spacing: .04em; line-height: 1.7; }
.credit__cat { font-size: 12.5px; color: var(--mute); }
.credit__role { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; color: var(--dim); text-align: right; }

/* =========================================================================
   MESSAGE / COMPANY / CONTACT
   ========================================================================= */
.msg__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(34px, 5vw, 80px); align-items: start; }
.msg__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.msg__sign { margin-top: 32px; display: flex; flex-direction: column; gap: 4px; }
.msg__sign-role { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); }
.msg__sign-name { font-family: var(--f-mincho); font-weight: 600; font-size: 19px; letter-spacing: .08em; }

.dl { border-top: 1px solid var(--line); }
.dl__row { display: grid; grid-template-columns: 210px 1fr; gap: clamp(14px, 2vw, 32px); padding: 19px 0; border-bottom: 1px solid var(--line); }
.dl__row dt { font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); line-height: 2.2; }
.dl__row dd { font-size: 14.5px; line-height: 2.1; }

.cta { text-align: center; }
.cta__title { margin-bottom: clamp(22px, 2.6vw, 32px); }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: clamp(28px, 3.4vw, 40px); }

/* =========================================================================
   footer
   ========================================================================= */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding-block: clamp(56px, 7vw, 90px) 34px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(24px, 3vw, 48px); padding-bottom: clamp(40px, 5vw, 64px); }
.footer__brand .brand { font-size: 30px; }
.footer__tag { margin-top: 18px; font-size: 13px; color: var(--mute); line-height: 2; }
.footer__col-title { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.footer__list { display: flex; flex-direction: column; gap: 11px; }
.footer__list a { font-size: 13px; color: var(--mute); transition: color .3s var(--ease); }
.footer__list a:hover { color: var(--cue); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); }
.footer__copy { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; color: var(--dim); }

/* =========================================================================
   下層ページ共通ヒーロー
   ========================================================================= */
.phero { position: relative; padding-top: clamp(140px, 17vw, 210px); padding-bottom: clamp(48px, 6vw, 80px); background: var(--ink-2); overflow: hidden; }
.phero__inner { position: relative; z-index: 1; }
.phero__eyebrow { margin-bottom: 18px; }
.phero__lead { margin-top: 22px; max-width: 640px; color: var(--mute); }
.phero__media { position: absolute; inset: 0; z-index: 0; opacity: .3; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; }
.phero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, var(--ink-2) 14%, rgba(27,24,21,.72) 58%, rgba(27,24,21,.5) 100%); }

.crumbs { display: flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-bottom: 22px; }
.crumbs a { transition: color .3s var(--ease); }
.crumbs a:hover { color: var(--cue); }

/* 個別タレント */
.tprof { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(30px, 4.4vw, 72px); align-items: start; }
.tprof__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.tprof__name { font-family: var(--f-mincho); font-weight: 600; font-size: clamp(28px, 3.4vw, 46px); letter-spacing: .06em; line-height: 1.4; }
.tprof__kana { font-family: var(--f-mono); font-size: 11px; letter-spacing: .22em; color: var(--dim); margin-top: 8px; }
.tprof__attrs { margin-top: clamp(26px, 3vw, 38px); border-top: 1px solid var(--line); }
/* UV実測: label 1fr : value 1fr。増やさない。 */
.voice-attr { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.voice-attr__k { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); line-height: 1.7; }
.voice-attr__v { font-size: 14px; line-height: 1.7; }
.samples { border-top: 1px solid var(--line); }
.sample {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.sample__play { display: inline-flex; align-items: center; gap: 9px; color: var(--mute); font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; transition: color .2s ease; flex: none; }
.sample__play:hover { color: var(--cue); }
.sample__play--disabled { cursor: default; opacity: .4; }
.sample__play--disabled:hover { color: var(--mute); }
.sample__name { font-size: 13.5px; flex: none; min-width: 130px; }
.sample__bar { flex: 1; height: 1.5px; background: var(--line-2); position: relative; min-width: 0; }
.sample__fill { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--cue); }
.sample__note { font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; color: var(--dim); flex: none; }

/* =========================================================================
   reveal
   ========================================================================= */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .95s var(--ease), transform .95s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
html.no-js .rv, html.ready-fallback .rv { opacity: 1; transform: none; }

/* =========================================================================
   responsive — スマホは専用UI（PC縮小でない）
   ========================================================================= */
@media (max-width: 1180px) {
  .voice-card-grid { grid-template-columns: repeat(4, 1fr); }
  .credit { grid-template-columns: 64px 1fr 170px; }
  .credit__role { display: none; }
}
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: block; }
  .field-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .ma__grid, .msg__grid, .tprof { grid-template-columns: 1fr; }
  .msg__media img { aspect-ratio: 16/9; }
  .tprof__media img { max-width: 420px; }
  .kotoba__stage { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .voice-card-grid { grid-template-columns: repeat(3, 1fr); }
  .gates { grid-template-columns: 1fr; }
  .gates:hover .gate { opacity: 1; }
  .dl__row { grid-template-columns: 150px 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 14.5px; }
  /* スマホヒーローは 画像上 / 文字下 に分割（PC縮小にしない） */
  .hero { min-height: 0; display: block; }
  .hero__media { display: none; }
  .hero__mobile-media { display: block; position: relative; }
  .hero__mobile-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
  .hero__mobile-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,18,15,.96) 0%, rgba(20,18,15,.28) 38%, rgba(20,18,15,.45) 100%);
  }
  .hero__inner { padding-top: 0; padding-bottom: clamp(44px, 8vw, 64px); margin-top: -14vw; }
  .hero__title { font-size: clamp(27px, 7.6vw, 38px); }
  /* 横並びだと「キャスティン／グのご相談」と語中で折れるので縦に積む */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .voice-card-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-card__details { height: auto; min-height: 4.2em; }
  .field-grid, .field-grid--2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .dl__row { grid-template-columns: 1fr; gap: 2px; padding: 15px 0; }
  .dl__row dt { line-height: 1.8; }
  .credit { grid-template-columns: 56px 1fr; row-gap: 2px; }
  .credit__cat { grid-column: 2; }
  .filter-row { gap: 8px; }
  .filter-row__label { width: 100%; }
  .kotoba__word { font-size: clamp(34px, 12vw, 54px); }
  .floating-bar { bottom: 12px; }
  .floating-bar__name { display: none; }
}
@media (max-width: 460px) {
  .voice-card-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; row-gap: 28px; }
  .voice-card__actions { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* =========================================================================
   a11y / print
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rise > span, .hero__eyebrow, .hero__lead, .hero__actions { opacity: 1; transform: none; animation: none; }
  .kotoba__ch { opacity: 1 !important; transform: none !important; }
  .kotoba__bar { transform: scaleX(1); }
  .rv { opacity: 1; transform: none; }
}
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; top: -60px; left: var(--pad); z-index: 200;
  background: var(--cue); color: #fff; padding: 10px 18px; border-radius: 4px;
  transition: top .3s var(--ease);
}
.skip:focus { top: 12px; }
