@charset "UTF-8";

/* ==========================================================================
   RVL entertainment - メインスタイル

   【画像のフォーマット指定について】
   <img> 系はPHPヘルパー rvlent_image() を使う（AVIF → WebP の <picture> を自動生成）。
   CSSの背景画像で使う場合は image-set() で同じフォールバックを組む。
   image-set() 非対応ブラウザ向けに、先に素の url() を書いておくこと。

     .foo {
         background-image: url("../images/webp/foo.webp");
         background-image: image-set(
             url("../images/avif/foo.avif") type("image/avif"),
             url("../images/webp/foo.webp") type("image/webp")
         );
     }
   ========================================================================== */

:root {
	/* カラー */
	--color-bg: #ffffff;
	/* 薄いグレーの背景色。NEWSセクションのほか、下層ページでも汎用的に使う */
	--color-bg-alt: #f1f1f1;
	--color-text: #111111;
	--color-muted: #6b6b6b;
	--color-line: #e2e2e2;
	/* ロゴ画像（黒背景が焼き込まれている）と馴染ませるため純黒にする */
	--color-black: #000000;

	/* フォント
	   本文は各デバイス標準のゴシックを使用（外部読み込みなし）。
	   外部フォントは Anton（英字見出し）と Noto Serif JP（和文見出し）の2書体のみ。
	   Anton は和文グリフを持たないため、英字テキストにのみ使用する。 */
	--font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
	--font-display: "Anton", Impact, var(--font-base);
	--font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;

	/* レイアウト */
	--container: 1200px;
	--gutter: 40px;
	--header-h: 100px;

	/* ザラつき表現用のノイズ（SVG feTurbulence をデータURIでインライン化）
	   alphaを discrete で二値化して粒立ちを出している。 */
	--noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch' seed='5'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 0 0 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
	--noise-fine: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch' seed='11'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 0 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");

	/* ディザ（点描）グラデーション用のマスク画像。
	   ノイズに不透明度を掛けるだけでは「薄い粒」が並ぶだけで密度が上がらないため、
	   SVG内で「閾値そのものをグラデーションさせる」本来のディザを作っている。

	     alpha = 0.5 * ノイズ + 0.5 * 縦グラデーション を計算し、
	     feFuncA の discrete で 0.5 を境に二値化する

	   これで下端（グラデーション=1）はベタ、上端（=0）は粒が消え、
	   その間は「粒の密度」がなめらかに変化する。
	   タイルせず要素いっぱいに伸ばして使うこと（mask-size: 100% 100%）。

	   調整の目安:
	     baseFrequency … 粒の細かさ（大きいほど細かい）
	     linearGradient の x2 … 斜辺方向への濃淡の傾き（0で均一） */
	--dither: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 80' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0.02' y2='1'%3E%3Cstop offset='0' stop-color='%23fff' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23fff' stop-opacity='1'/%3E%3C/linearGradient%3E%3Cfilter id='d' x='0' y='0' width='100%25' height='100%25' color-interpolation-filters='sRGB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' seed='7' result='n'/%3E%3CfeComposite in='n' in2='SourceGraphic' operator='arithmetic' k2='0.5' k3='0.5'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3C/defs%3E%3Crect width='600' height='80' fill='url(%23g)' filter='url(%23d)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   リセット
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	/* スマホでリンク・ボタンをタップした瞬間に出る青いハイライトを消す。
	   このプロパティは継承するのでhtmlに指定すれば全要素に効く。
	   （キーボード操作時のフォーカス表示は :focus-visible 側で別途出しているので影響しない） */
	-webkit-tap-highlight-color: transparent;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-base);
	font-size: 16px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* rvlent_image() は <picture> を出力する。
   既定の inline のままだと中の <img> への % 指定が意図通りに解決されないため、
   ブロック化して親の枠をそのまま引き継がせる。 */
picture {
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.4;
}

p, ul, ol, figure, figcaption {
	margin: 0;
}

ul, ol {
	padding: 0;
	list-style: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

[hidden] {
	display: none !important;
}

/* フォント指定ユーティリティ */
.u-display {
	font-family: var(--font-display);
	font-weight: 400;
}

.u-serif {
	font-family: var(--font-serif);
}

/* 改行位置の出し分けユーティリティ
   .br-sp … スマホ（767px以下）でのみ改行する
   .br-pc … PC（768px以上）でのみ改行する
   ※スマホ側の指定は 767px 以下のメディアクエリ内にある */
.br-sp {
	display: none;
}

/* スクリーンリーダー専用テキスト */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* --------------------------------------------------------------------------
   共通ユーティリティ
   -------------------------------------------------------------------------- */

#site-main {
	padding-top: var(--header-h);
}

/* レイアウト全体（ヘッダー〜フッターの左カラムと、PICKUPの右カラム）。
   1333px以下では通常のブロックのまま（PICKUPは position: fixed で別扱い）。
   1334px以上で display: flex に切り替える（下部のメディアクエリ参照）。 */
.layout {
	position: relative;
}

.layout__content {
	min-width: 0;
}

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

.section {
	position: relative;
}

/* 黒ベタの上に白いザラつきを乗せる（ノイズをマスクに使う） */
.grain-overlay {
	position: relative;
}

/* 縦組みのセクションラベル（ABOUT US / TALENTS / NEWS） */
.vlabel {
	position: relative;
	writing-mode: vertical-rl;
	font-family: var(--font-serif);
	font-weight: 900;
	font-size: clamp(0.8rem, 2.8vw, 1rem);
	letter-spacing: 0.1em;
	white-space: nowrap;
	line-height: 1;
	transform: translateY(-20%);
}

.vlabel::after {
	position: absolute;
	display: block;
	content: "";
	width: 2px;
	height: 140%;
	background: currentColor;
	top: -10%;
	left: 0;
}

.vlabel--light {
	color: #fff;
}

/* 円形のVIEW MOREボタン */
.circle-btn {
	position: relative;
	display: grid;
	place-content: center;
	aspect-ratio: 1;
	padding-left: 22px;
	border-radius: 50%;
	background: var(--color-black);
	color: #fff;
	overflow: hidden;
	transition: transform 0.4s ease;
	justify-content: start;
	box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.4);
}

.circle-btn::before {
	/* ザラつき */
	content: "";
	position: absolute;
	inset: 0;
	background-color: #fff;
	-webkit-mask-image: var(--noise-fine);
	mask-image: var(--noise-fine);
	-webkit-mask-size: 150px 150px;
	mask-size: 150px 150px;
	opacity: 0.16;
	pointer-events: none;
}
.circle-btn::after {
	content: "";
	position: absolute;
	left: 132%;
	top: 86%;
	width: 100%;
	height: 70%;
	background-color: #fff;
	-webkit-mask-image: var(--dither);
	mask-image: var(--dither);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	transform-origin: 0 0;
	transform: rotate(320deg) translate(-100%, -100%);
	pointer-events: none;
}

.circle-btn:hover {
	transform: scale(1.04);
	opacity: 1;
}

.circle-btn__small {
	font-size: 0.6rem;
	letter-spacing: 0.1em;
    font-family: var(--font-display);
}

/* 矢印はインラインSVG（水平線＋右上に跳ね上がる矢羽根の折れ線）。
   stroke="currentColor" にしてあるので、circle-btn の color: #fff がそのまま乗る。 */
.circle-btn__arrow {
	display: block;
	width: 64%;
	height: auto;
	aspect-ratio: 224.5 / 39.5;
	margin: 0;
	color: #fff;
	overflow: visible;
	transform: translate(-0.2em, -0.8em);
}

.circle-btn__label {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(1rem, 1.7vw, 1.4rem);
	letter-spacing: 0.06em;
	line-height: 1.1;
	transform: translateY(-0.4em);
}

/* 角丸のVIEW MOREボタン */
.pill-btn {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	min-width: 120px;
	padding: 12px 28px;
	background: var(--color-black);
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 0.75rem;
	color: #fff;
	letter-spacing: 0.16em;
	justify-content: center;
}

/* 矢印はインラインSVG（水平線＋右上に跳ね上がる矢羽根の折れ線）。
   circle-btn__arrow と同じ形。stroke="currentColor" で色を継承する。 */
.pill-btn__arrow {
	display: block;
	width: 30px;
	height: auto;
	aspect-ratio: 8 / 3;
	overflow: visible;
	transition: transform 0.3s ease, color 0.3s ease;
}
.pill-btn:not([disabled]):hover .pill-btn__arrow {
	transform: translateX(8px);
}

/* --------------------------------------------------------------------------
   ヘッダー
   -------------------------------------------------------------------------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
	background: var(--color-black);
	color: #fff;
}

.site-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	max-width: var(--container);
	height: var(--header-h);
	margin-inline: auto;
	padding-inline: clamp(20px, 3vw, 40px);
}

.site-header__brand {
	flex: 0 0 auto;
}

.site-header__logo {
	display: block;
	width: clamp(56px, 6vw, 76px);
}

.site-header__logo picture,
.site-header__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.global-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.global-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(20px, 3.4vw, 52px);
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(0.9rem, 1.3vw, 1.15rem);
	letter-spacing: 0.08em;
}

.global-nav__list a {
	position: relative;
	display: block;
	padding-block: 4px;
}

.global-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width 0.3s ease;
}

.global-nav__list a:hover {
	opacity: 1;
}

.global-nav__list a:hover::after {
	width: 100%;
}

/* ハンバーガーボタン */
.menu-toggle {
	position: relative;
	flex: 0 0 auto;
	width: 34px;
	height: 22px;
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle__bar {
	top: 10px;
}

.menu-toggle__bar::before,
.menu-toggle__bar::after {
	content: "";
}

.menu-toggle__bar::before {
	top: -8px;
}

.menu-toggle__bar::after {
	top: 8px;
}

.menu-open .menu-toggle__bar {
	background: transparent;
}

.menu-open .menu-toggle__bar::before {
	transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle__bar::after {
	transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   ドロワー
   -------------------------------------------------------------------------- */

.drawer {
	position: fixed;
	inset: 0;
	z-index: 190;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 48px;
	padding: var(--header-h) var(--gutter) 40px;
	background: var(--color-black);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-open .drawer {
	opacity: 1;
	visibility: visible;
}

.drawer__list {
	display: grid;
	gap: clamp(18px, 3vh, 32px);
	text-align: center;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(1.4rem, 4vw, 2.4rem);
	letter-spacing: 0.08em;
}

/* メニュー展開中・モーダル表示中はスクロール無効 */
.menu-open,
.modal-open,
.is-loading {
	overflow: hidden;
}

/* ==========================================================================
   オープニングローディング（トップページのみ／inc/loader.php）

   アニメーションはすべてCSSで完結させ、JSは終了後の後片付けだけを行う。
   タイムライン（合計約2.2秒）:
     0.15s〜 ロゴがふわっと拡大しながら現れる
     0.70s〜 斜めの光がロゴを横切る（サイト共通の斜めモチーフに合わせて20度）
     0.75s〜 下部のバーが伸びる
     1.45s〜 ロゴが少し拡大しながら消える
     1.60s〜 黒幕が斜めに傾きながら上へ抜けて本編が現れる
   ========================================================================== */

.site-loader {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-black);
	/* 黒幕が抜けきったら操作を邪魔しないよう、最終状態で非表示にする（JS無効でも詰まらない） */
	animation: loader-curtain 0.75s cubic-bezier(0.76, 0, 0.24, 1) 1.6s forwards;
}

.site-loader__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.site-loader__mark {
	position: relative;
	width: min(42vw, 190px);
	overflow: hidden;
	opacity: 0;
	animation:
		loader-mark-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards,
		loader-mark-out 0.45s cubic-bezier(0.55, 0, 1, 0.45) 1.45s forwards;
}

.site-loader__logo {
	display: block;
	width: 100%;
	height: auto;
}

/* ロゴを横切る斜めの光。ロゴ枠内でクリップされる。
   ロゴは黒背景が焼き込まれているため、半透明の白を重ねると帯が四角く見えてしまう。
   そこで multiply で「白い部分だけを一瞬暗くして光沢が走るように見せる」方式にしている
   （両端を #fff にすると乗算で変化しないので、黒地では帯の境界が完全に見えない） */
.site-loader__sheen {
	position: absolute;
	top: -60%;
	left: -70%;
	width: 45%;
	height: 220%;
	background: linear-gradient(90deg, #fff 0%, #8a8a8a 50%, #fff 100%);
	mix-blend-mode: multiply;
	transform: rotate(20deg);
	animation: loader-sheen 0.9s ease-in-out 0.7s forwards;
}

/* ロゴ下の細いバー。中央から左右に伸びる */
.site-loader__bar {
	display: block;
	width: min(42vw, 190px);
	height: 1px;
	background: rgba(255, 255, 255, 0.6);
	transform: scaleX(0);
	animation: loader-bar 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
}

@keyframes loader-mark-in {
	from {
		opacity: 0;
		transform: scale(0.9);
		filter: blur(6px);
	}
	to {
		opacity: 1;
		transform: scale(1);
		filter: blur(0);
	}
}

@keyframes loader-mark-out {
	from {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: 0;
		transform: scale(1.08);
	}
}

@keyframes loader-sheen {
	from { left: -70%; }
	to   { left: 130%; }
}

@keyframes loader-bar {
	from { transform: scaleX(0); }
	to   { transform: scaleX(1); }
}

/* 斜めに傾けながら上へ抜く（FVの斜めのラインと同じ方向感） */
@keyframes loader-curtain {
	from {
		transform: translateY(0) skewY(0deg);
	}
	to {
		transform: translateY(-115%) skewY(-4deg);
		visibility: hidden;
		pointer-events: none;
	}
}

/* SNSアイコン */
.sns-list {
	display: flex;
	align-items: center;
	gap: 22px;
	width: 95%;
	margin: 0 auto;
}

.sns-icon {
	display: block;
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.sns-list--drawer .sns-icon,
.sns-list--footer .sns-icon {
	width: 24px;
	height: 24px;
}

/* ==========================================================================
   ファーストビュー
   ========================================================================== */

/* PICKUP表示時は .layout__content（左カラム）の幅がビューポート幅より狭くなる。
   vw はビューポート幅基準なので、その差分だけ計算がずれてしまう
   （margin-bottom は「その要素の実際の表示幅」の24%を打ち消したいのであって、
   画面全体の24%ではない）。
   margin の % は常に「包含ブロックの幅」基準というCSSの仕様を利用し、
   vw ではなく % で指定することで、.fv の実際の幅に連動させる。 */
.fv {
	position: relative;
	margin-bottom: -10%;
}

.fv__stage {
	position: relative;
	width: 100%;
	aspect-ratio: 1200 / 1250;
	--fv-ramp: 23%;
	/* .fv__stage の実際の幅を基準にした cqw 単位を子孫で使えるようにする。
	   vw（ビューポート幅基準）だとPICKUP表示時の幅とずれるため、
	   .fv__sub の font-size はこれを使う。 */
	container-type: inline-size;
}

/* --- 背景：黒ベタ＋境界のザラつき --- */

.fv__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

/* 黒ベタ。下向きの二等辺三角形（▽）にクリップする。
   上辺いっぱいから、下辺中央の頂点へ左右対称に収束させる。

   【重要】height を変えると斜辺の角度が変わる。
   ステージ 1250 × 1302 に対して height: 70%（= 911px）なので、
   左辺は (0, 0) → (625, 911)、角度は atan(911 / 625) ≒ 55.6度。
   height を変えたら .fv__dither と .fv__sub-line--1 / --2 の角度も再計算すること。 */
.fv__bg-solid {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 70%;
	background: var(--color-black);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* ディザのクリップ枠。
   clip-path は子孫要素にも効くので、ここを .fv__bg-solid と同じ三角形にしておけば
   帯が三角形の外へはみ出して白地を汚す事故を構造的に防げる。
   → 帯の width / height を雑に大きくしても安全になる。

   【.fv__bg-solid と同じ形にしつつ、各辺を3pxだけ外へ広げる】
   同じ線で切ると、黒の輪郭のアンチエイリアスと白ランプ下端のアンチエイリアスが
   重なって灰色のヘアラインになる。白を3pxだけ外へ出せば黒の輪郭を覆い隠せる。
   はみ出した白は白地の上なので見えない。
   （3px外へ = 上辺の左右は 1.213 * 3 ≒ 4px、頂点は 3 / 0.5655 ≒ 5px 下） */
.fv__dither-clip {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 70%;
	pointer-events: none;
}
.fv__dither {
	position: absolute;
	left: 50%;
	top: 105%;
	width: 100%;
	height: var(--fv-ramp);
	transform-origin: 0 0;
	transform: rotate(49.6deg) translate(-100%, -100%);
}

/* 黒ベタを内側から侵食する白い粒。
   帯いっぱいの白ベタを --dither（ディザランプ）でマスクする。
   帯の下端が斜辺に重なっているので、下端＝ベタ、上端＝粒が消える向きになる。
   下端がベタ白になることで clip-path のアンチエイリアス線も隠れる。 */
.fv__dither-ramp {
	position: absolute;
	inset: 0;
	background-color: #fff;
	-webkit-mask-image: var(--dither);
	mask-image: var(--dither);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

/* --- FV内の各要素 --- */

.fv__catch {
	position: absolute;
	left: 25%;
	top: 4%;
	width: 42%;
	z-index: 3;
}

.fv__catch-img {
	display: block;
	width: 100%;
}

.fv__photo {
	position: absolute;
	overflow: hidden;
	z-index: 2;
}

.fv__photo picture,
.fv__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fv__photo--1 {
	left: 70.7%;
	top: 0;
	width: 29.3%;
	height: 43%;
}

.fv__photo--2 {
	left: 31%;
	top: 25%;
	width: 24%;
	height: 34.6%;
	z-index: 4;
}

.fv__photo--3 {
	left: 0;
	top: 50%;
	width: 28.3%;
	height: 40%;
}

/* FV内のロゴ。背景は黒ベタの三角形がそのまま効くので、ロゴ画像を置くだけ。
   ただしロゴ画像は透過を持たず黒背景が焼き込まれているため、
   画像の矩形が三角形の外にはみ出すと黒い四角が見えてしまう。
   透過版のロゴに差し替えるまでは、三角形の内側に収まる位置・サイズを維持すること。 */
.fv__logo {
	position: absolute;
	left: 53.5%;
	top: 32%;
	width: 22%;
	z-index: 4;
}

.fv__logo img {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
}

/* 斜めのサブコピー。
   1行目を縦書き、2行目を横書きにして、黒ベタの左辺・右辺に沿わせV字に配置する。
   ステージ全体を覆うレイヤーにして、各行をその中で絶対配置する。
   .fv__bg-solid の頂点を動かしたら、各行の rotate と left / top も合わせて直すこと。 */
.fv__sub {
	position: absolute;
	inset: 0;
	z-index: 5;
	pointer-events: none;
	font-family: var(--font-serif);
	font-weight: 700;
	/* vw ではなく cqw（.fv__stage の実際の幅の1%）。
	   PICKUP表示時に左カラムが狭くなっても、.fv__stage の実寸に追随する。 */
	font-size: 7cqw;
	letter-spacing: 0.02em;
	line-height: 1;
}

.fv__sub-line {
	position: absolute;
	transform-origin: left center;
	white-space: nowrap;
}

/* スクロールで画面に入ったら script.js が is-visible を付与する（ぼかし解除＋フェードイン）。
   opacity/filter だけをアニメーションさせるので、fv__sub-line の位置決め用 rotate（上記）や
   about__body / talents__head の grid 配置とは干渉しない。 */
.fv__sub-line,
.about__body,
.talents__head,
.news-feature,
.news-list__item {
	opacity: 0;
	filter: blur(14px);
	/* 立ち上がりを速く、終わりを緩やかにするイージング（テーマ内の他の動きと同じカーブ）。
	   ease だと序盤がもたつくため、テンポを出す目的でこちらを使う */
	transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fv__sub-line.is-visible,
.about__body.is-visible,
.talents__head.is-visible,
.news-feature.is-visible,
.news-list__item.is-visible {
	opacity: 1;
	filter: blur(0);
}

/* NEWSの記事は続けて画面に入ったぶんを等間隔にずらして出す。
   --reveal-delay は script.js が1件ずつ計算して入れる（間隔の値もJS側） */
.news-feature,
.news-list__item {
	transition-delay: var(--reveal-delay, 0ms);
}

/* FVのサブコピーは2行を同時にis-visibleへ切り替え、
   ここでのdelayの差でV字の左辺→右辺の順に浮かび上がらせる */
.fv__sub-line--1 {
	transition-delay: 0.05s;
}

.fv__sub-line--2 {
	transition-delay: 0.35s;
}

/* 「心、揺さぶる」…縦書き。
   縦書きは文字が下方向（0, 1）に進むので、斜辺の向きに合わせるには
   「斜辺の角度 - 90度」だけ回す（55.6 - 90 = -34.4度）。

   起点を文字の始まり（上端）に固定するため transform-origin は top left にする。 */
.fv__sub-line--1 {
	left: 24%;
	top: 47%;
	writing-mode: vertical-rl;
	transform-origin: top left;
	transform: rotate(-34.4deg);
}

/* 「感動を。」…右辺と同じ角度で上る。V字の谷が --1 の終点とつながる */
.fv__sub-line--2 {
	left: 52%;
	top: 70.5%;
	transform: rotate(-55.6deg);
}

/* 「感動を。」の「を。」部分だけ小さく（rvlent_fv_sub_copy_2_html() が分離する） */
.fv__sub-tail {
	font-size: 0.62em;
}

/* 円形テキスト＋絵文字 */
.fv__circle {
	position: absolute;
	right: 1%;
	top: 58%;
	width: 28.7%;
	aspect-ratio: 1;
	z-index: 4;
	display: grid;
	place-items: center;
}

.circle-text {
	position: absolute;
	inset: 0;
	animation: rvl-spin 26s linear infinite;
}

/* 画面外・prefers-reduced-motion では回転を止める（負荷対策） */
.circle-text.is-paused {
	animation-play-state: paused;
}

.circle-text__svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.circle-text__ring {
	stroke: var(--color-text);
	stroke-width: 1.8;
	stroke-dasharray: 420 190;
	stroke-dashoffset: 400;
}

.circle-text__label {
	font-family: var(--font-display);
	font-size: 12.5px;
	fill: var(--color-text);
}

@keyframes rvl-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* 絵文字風アニメーション（4枚を切り替え） */
.face-anim {
	position: relative;
	width: 52%;
	aspect-ratio: 1;
}

.face-anim__frame {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.face-anim__frame.is-active {
	opacity: 1;
	transform: scale(1);
}

.face-anim__frame img {
	display: block;
	width: 100%;
	height: auto;
}

/* ==========================================================================
   ABOUT US
   ========================================================================== */

.about { margin-bottom: -8%; }
.about__stage {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: clamp(30px, 4.9vw, 62px);
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.about__photo {
	overflow: hidden;
	min-height: 0;
}

.about__photo picture,
.about__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 左上（縦長） */
.about__photo--1 {
	grid-column: 2 / 5;
	grid-row: 3 / 10;
}

/* 左下 */
.about__photo--2 {
	grid-column: 1 / 4;
	grid-row: 11 / 17;
}

/* 中央・大 */
.about__photo--3 {
	grid-column: 6 / 10;
	grid-row: 8 / 18;
	z-index: 1;
}

/* 右上 */
.about__photo--4 {
	grid-column: 11 / 15;
	grid-row: 5 / 11;
}

/* 右下 */
.about__photo--5 {
	grid-column: 10 / 13;
	grid-row: 13 / 19;
	transform: translateX(-3%);
}

.about__body {
	grid-column: 6 / 12;
	/* テキスト量に対して十分な行数を確保する（幅が狭くなるほど折り返しが増えるため）。
	   足りないとテキストがこの範囲からはみ出し、about__btn や写真と重なる。 */
	grid-row: 1 / 1;
	display: flex;
	gap: clamp(16px, 2.4vw, 34px);
	align-self: start;
}

.about__text,
.talents__lead {
	font-size: min(1.55vw, 16px);
	line-height: 2.2;
	letter-spacing: 0.04em;
}

.about__text p + p {
	margin-top: 1.5em;
}

.about__btn {
	grid-column: 8 / 6;
	grid-row: 12 /1;
	z-index: 2;
	align-self: center;
	transform: translate(-20%, 8%);
}

/* ==========================================================================
   TALENTS
   ========================================================================== */

#talents {
	padding-bottom: min(15vw, 100px);
}

.talents__head {
	grid-column: 1 / 7;
	grid-row: 2 / 7;
	display: flex;
	gap: clamp(16px, 2.4vw, 34px);
	align-self: start;
}

.talents__heading {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(1.1rem, 2.2vw, 1.75rem);
	line-height: 1.9;
	letter-spacing: 0.06em;
}

.talents__lead {
	margin-top: 1.6em;
	color: #444;
}

.talents__stage {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: clamp(30px, 4.9vw, 62px);
	max-width: var(--container);
	margin-inline: auto;
	margin-top: clamp(28px, 4vw, 56px);
	padding-inline: var(--gutter);
}

.talents__photo {
	position: relative;
	overflow: hidden;
	min-height: 0;
}

.talents__photo picture,
.talents__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.talents__btn {
	grid-column: 8 / 6;
	grid-row: 6 / 6;
	z-index: 2;
	align-self: start;
	transform: translateX(-30%);
}

/* 左・大 */
.talents__photo--1 {
	grid-column: 2 / 6;
	grid-row: 7 / 16;
}

/* 右・大 */
.talents__photo--2 {
	grid-column: 8 / 13;
	grid-row: 3 / 14;
}

/* 下段左 */
.talents__photo--3 {
	grid-column: 1 / 4;
	grid-row: 15 / 21;
	transform: translate(-6%,13%) scale(0.8);
}

/* 下段中央 */
.talents__photo--4 {
	grid-column: 6 / 9;
	grid-row: 15 / 22;
	transform: translateX(-3%);
}

/* 下段右 */
.talents__photo--5 {
	grid-column: 9 / 12;
	grid-row: 12 / 20;
	transform: translateY(7%);
}

/* ==========================================================================
   NEWS
   ========================================================================== */

.news {
	background: var(--color-bg-alt);
	color: var(--color-text);
	padding: 0 min(6vw, 90px) min(3vw, 30px);
	border-top: solid 4px var(--color-black);
}

.news__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(16px, 2.4vw, 34px);
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.news .vlabel {
	padding-top: 15px;
	transform: translateY(0);
}

.news .vlabel::after {
	height: 100%;
	top: 0;
}

.news__body {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(20px, 3vw, 44px);
	align-items: start;
	padding: min(6vw, 80px) 0 min(3vw, 30px) min(3vw, 20px);
}

/* 大きいカード */
.news-feature__link {
	display: block;
}

.news-feature__thumb {
	aspect-ratio: 12 / 10;
	width: 95%;
	overflow: hidden;
	background: #222;
	border-radius: min(10vw, 60px) 0 0 0;
}

.news-feature__thumb picture {
	display: block;
	width: 100%;
	height: 100%;
}

.news-feature__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.news-feature__link:hover .news-feature__thumb img {
	transform: scale(1.04);
}

.news-feature__body {
	margin-top: -28px;
	margin-left: 16px;
	padding: 18px 22px;
	background: #fff;
	color: var(--color-text);
	position: relative;
	z-index: 1;
	box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.15);
}

.news-feature__title {
	margin-top: 8px;
	font-size: clamp(0.85rem, 1.1vw, 1rem);
	line-height: 1.7;
}

.news-feature {
	max-width: 520px;
	margin: 0 auto;
}

/* リスト */
.news-list {
	display: grid;
	gap: 34px;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.news-list li:nth-child(2n) {
	transform: translateX(20px);
}

.news-card {
	display: grid;
	grid-template-columns: 0.6fr 1fr;
	align-items: end;
	color: var(--color-text);
}

.news-card__thumb {
	aspect-ratio: 1/0.7;
	overflow: hidden;
	background: #eee;
	border-radius: 30px 0 0 0;
}

.news-card__thumb picture,
.news-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
}

.news-card__thumb img {
	object-fit: cover;
	transition: transform 0.6s ease;
}

.news-card:hover .news-card__thumb img {
	transform: scale(1.1);
}

.news-card__body {
	padding: 18px 22px;
	background: #fff;
	color: var(--color-text);
	position: relative;
	z-index: 1;
	box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.15);
	transform: translate(-20px, 20px);
	/* グリッドアイテムは既定で min-width: auto（中身の最小コンテンツ幅未満に縮まない）。
	   タイトルにURLや長い英単語など途中で折り返せない文字列が入ると、その最小幅が
	   1fr の取り分を超えて本文トラックを押し広げ、サムネイル側（0.6fr）が縮んでしまう。
	   0 を明示して 0.6fr : 1fr の比率どおりのサイズを保つ */
	min-width: 0;
}

.news-card__title {
	margin-top: 6px;
	/* 上の min-width: 0 と対で必要。折り返せない長い文字列をカード内で必ず改行させる
	   （指定しないと、縮まなくなったぶん文字がカードからはみ出す） */
	overflow-wrap: anywhere;
	font-size: 0.82rem;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 日付＋カテゴリー */
.news-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	font-size: 0.6rem;
	letter-spacing: 0.06em;
}

.news-meta__date {
	font-weight: 700;
}

.news-meta__cat {
	padding: 0 10px;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 0.64rem;
	white-space: nowrap;
}

.news__more {
	position: absolute;
	grid-column: 2;
	text-align: center;
	bottom: -50px;
	right: 40px;
}
.news-archive__more .pill-btn {
	margin-top: min(5vw, 40px);
}
.news .pill-btn:hover .pill-btn__arrow  {
	transform: translateX(6px);
}

/* ==========================================================================
   CONTACT（CREATE WITH US）
   ========================================================================== */

.contact {
	padding-block: min(12vw, 80px);
	text-align: center;
}

.contact__heading {
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: clamp(1.5rem, 3.2vw, 2.4rem);
	letter-spacing: 0.14em;
}

.contact__lead {
	margin-top: 20px;
	font-size: clamp(0.78rem, 1vw, 0.9rem);
	letter-spacing: 0.04em;
}

.contact__action {
	margin-top: min(4vw, 30px);
}

.contact__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: min(420px, 86vw);
	padding: 20px 36px;
	border-radius: 999px;
	background: var(--color-black);
	color: #fff;
	font-size: min(4vw, 1.2rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	transition: transform 0.3s ease;
}

.contact__btn:hover {
	transform: translateY(-3px);
	opacity: 1;
}

.contact__btn-icon {
	width: min(6vw, 26px);
	height: min(6vw, 26px);
	fill: currentColor;
}

/* ==========================================================================
   フッター
   ========================================================================== */

.site-footer {
	position: relative;
	overflow: hidden;
	background: var(--color-black);
	color: #fff;
	padding-block: min(3vw, 20px) min(4vw, 56px);
}

/* 右上の角にディザ（点描）のノイズをあしらう。
   --dither は既定で「下端が濃い（白ベタ）・上端が薄い」向きなので、
   scaleY(-1) で上下反転させ、上端（footerの最上部＝右上の角）を濃くする。 */
.site-footer::before {
	content: "";
	position: absolute;
	top: -23%;
	right: -10%;
	width: 90%;
	height: 43%;
	background-color: #fff;
	-webkit-mask-image: var(--dither);
	mask-image: var(--dither);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	transform: scaleY(-1) rotate(-3deg);
	pointer-events: none;
}

.site-footer__inner {
	position: relative;
	z-index: 1;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.site-footer__top {
	display: flex;
	align-items: center;
	gap: clamp(24px, 4vw, 60px);
	flex-wrap: wrap;
}

.site-footer__logo {
	display: block;
	width: clamp(110px, 12vw, 150px);
}

.site-footer__logo img {
	display: block;
	width: 100%;
}

.footer-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(18px, 2.6vw, 40px);
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(0.85rem, 1.15vw, 1rem);
	letter-spacing: 0.08em;
}

.site-footer__sns {
	margin-top: 28px;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 28px;
	padding-top: 20px;
	color: #7f7f7f;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
}

/* ==========================================================================
   PICKUPパネル（画面下部に追従）
   ========================================================================== */

.pickup {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 150;
	width: 100%;
	max-width: 600px;
	pointer-events: none;
	transform: translateY(0);
	transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pickup.is-closed {
	transform: translateY(110%);
}

.pickup__panel,
.pickup__close {
	pointer-events: auto;
}

/* 閉じるボタン（パネル右上に飛び出す） */
.pickup__close {
	position: absolute;
	right: min(4vw, 40px);
	top: 40px;
	transform: translateY(-100%);
	display: grid;
	justify-items: center;
	color: var(--color-text);
}

.pickup__close-icon {
	position: relative;
	display: block;
	width: min(6vw, 35px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--color-black);
}

.pickup__close-icon::before,
.pickup__close-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 42%;
	height: 2px;
	background: #fff;
}

.pickup__close-icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.pickup__close-icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.pickup__close-text {
	font-size: 0.72rem;
	font-family: var(--font-display);
}

.pickup__panel {
	background: #fff;
	border-radius: 40px 0 0 0;
	box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
}

.pickup__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding: min(5vw, 50px) min(5vw, 70px) min(2vw, 20px);
}

.pickup__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	letter-spacing: 0.1em;
}

.pickup__viewport {
	position: relative;
	margin-top: 14px;
}

/* 1画面に3枚。grid だとトラックが縮んでしまうため flex で幅を固定する。 */
.pickup__track {
	--pickup-gap: clamp(12px, 1.6vw, 24px);
	--pickup-cols: 2.25;
	display: flex;
	gap: var(--pickup-gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	scroll-behavior: smooth;
}

.pickup__item {
	flex: 0 0 calc((100% - (var(--pickup-cols) - 1) * var(--pickup-gap)) / var(--pickup-cols));
	min-width: 0;
}

.pickup__track::-webkit-scrollbar {
	display: none;
}

.pickup__item {
	scroll-snap-align: start;
}

.pickup-card {
	display: block;
	text-align: center;
}

.pickup-card__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #eee;
}

.pickup-card__thumb picture,
.pickup-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
}

.pickup-card__thumb img {
	object-fit: cover;
	transition: transform 0.5s ease;
}

.pickup-card:hover .pickup-card__thumb img {
	transform: scale(1.05);
}

.pickup-card__title {
	display: block;
	margin-top: 12px;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.7;
}

/* カルーセルの矢印 */
.pickup__nav {
	position: absolute;
	top: 36%;
	transform: translateY(-50%);
	z-index: 2;
	width: 34px;
	height: 34px;
	background: rgba(0,0,0,0.5);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

/* 矢印はSVG（折れ線、右向き）をデータURIで直接背景表示する。
   prev は下の rotate(180deg) で反転させて左向きにする。 */
.pickup__nav::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.5 22.5'%3E%3Cpath d='M3.737,17.347 L10.674,10.320 L3.737,3.292' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	transform: translate(-50%, -50%);
}

.pickup__nav--prev {
	left: -10px;
}

.pickup__nav--prev::before {
	transform: translate(-50%, -50%) rotate(180deg);
}

.pickup__nav--next {
	right: -10px;
}

.pickup__nav:disabled {
	opacity: 0;
	pointer-events: none;
}

/* 再オープンボタン */
.pickup-open {
	position: fixed;
	right: clamp(12px, 2vw, 28px);
	bottom: 0;
	z-index: 150;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 14px 14px 0 0;
	background: #fff;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.14);
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1rem;
	letter-spacing: 0.1em;
}

.pickup-open__arrow {
	width: 10px;
	height: 8px;
	background: var(--color-text);
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* --------------------------------------------------------------------------
   PICKUPパネル：ウィンドウ幅1334px以上は右カラムとして本文と横並びにする

   position: fixed は使わない。.layout を display: flex にし、
   「左カラム：.layout__content（ヘッダー〜フッター）」
   「右カラム：.pickup」という通常のフローの中の2カラムにする。
   画面内に留まる動きは position: sticky（align-self: flex-start と併用）で行う
   ── fixed と違い、あくまで .layout というフレックスアイテムの1つとして
   スクロールに追従するだけなので、他カラムのレイアウトを壊さない。

   1333px以下は下のベーススタイル（画面下部からせり上がる横スクロール、
   position: fixed）のまま変更しない。 */

@media (min-width: 1334px) {
	.layout {
		display: flex;
		align-items: flex-start;
	}

	.layout__content {
		flex: 1 1 auto;
		min-width: 0;
	}

	/* ヘッダーは画面全体基準の fixed をやめ、左カラム内で追従する sticky にする。
	   これで右カラムのPICKUPと正しく横並びになる（fixedのままだと画面全幅に
	   広がってPICKUPの上に被ってしまう）。 */
	.site-header {
		position: sticky;
		top: 0;
		left: auto;
		width: 100%;
	}

	/* sticky headerはドキュメントフロー内に配置されるため、
	   fixed header用に確保していた上余白（padding-top）は不要になる。 */
	#site-main {
		padding-top: 0;
	}

	/* PICKUPを右カラムのフレックスアイテムにする。
	   幅を 0 ⇔ 実寸 でアニメーションさせることで開閉を表現する
	   （中身は .pickup__panel 側で実寸幅を保ち、overflow: hidden でクリップする）。 */
	.pickup {
		position: sticky;
		top: 0;
		right: auto;
		bottom: auto;
		left: auto;
		align-self: flex-start;
		flex: 0 0 auto;
		/* flexアイテムは既定で min-width: auto（中身の最小コンテンツ幅未満に縮まない）。
		   overflow: hidden があれば理論上 0 扱いになるはずのブラウザもあるが、
		   確実に縮められるよう明示しておく。 */
		min-width: 0;
		width: clamp(340px, 24vw, 440px);
		height: 100vh;
		max-width: none;
		overflow: hidden;
		z-index: 10;
		transition: width 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
	}

	.pickup.is-closed {
		width: 0;
	}

	.pickup__panel {
		/* 親(.pickup)の幅が0に縮んでも中身の実寸を保つ。はみ出た分は親のoverflow:hiddenで隠れる */
		width: clamp(340px, 24vw, 440px);
		height: 100%;
		display: flex;
		flex-direction: column;
		border-radius: 0;
		box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
	}

	.pickup__inner {
		display: flex;
		flex-direction: column;
		height: 100%;
		max-width: none;
		margin-inline: 0;
		/* vw基準だと画面全体の幅を参照してパネル幅と釣り合わなくなるため固定値にする */
		padding: 32px 28px 28px;
	}

	.pickup__viewport {
		flex: 1 1 auto;
		min-height: 0;
		margin-top: 24px;
	}

	/* 横スクロールのカルーセルから縦スクロールの一覧に切り替える */
	.pickup__track {
		flex-direction: column;
		height: 100%;
		gap: 28px;
		overflow-x: hidden;
		overflow-y: auto;
		scroll-snap-type: y mandatory;
		padding-right: 4px;
	}

	.pickup__item {
		flex: 0 0 auto;
		width: 100%;
	}

	/* 縦一列になるため左右の矢印は使わない */
	.pickup__nav {
		display: none;
	}

	/* パネル内右上に収まるので、パネルの外へ飛び出す配置をやめて横並びにする */
	.pickup__close {
		top: 14px;
		right: 28px;
		transform: none;
		flex-direction: row;
		align-items: center;
	}

	.pickup__close-icon {
		width: 32px;
	}

	/* 閉じているときは画面右端中央にタブ状に表示する（レイアウトフローの外でよいので fixed のまま） */
	.pickup-open {
		top: 50%;
		right: 0;
		bottom: auto;
		left: auto;
		transform: translateY(-50%);
		flex-direction: column;
		gap: 8px;
		border-radius: 14px 0 0 14px;
		writing-mode: vertical-rl;
		padding: 24px 12px;
	}

	.pickup-open__arrow {
		transform: rotate(-90deg);
	}
}

/* ==========================================================================
   下層ページ共通
   ========================================================================== */

.page-head {
	padding-block: 10px 40px;
}

.page-head__title {
	max-width: var(--container);
	padding: 0 var(--gutter);
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: min(7vw, 2.5rem);
	align-self: end;
}

.post-list-wrap {
	background-color: var(--color-bg-alt);
	padding-block: 0 min(6vw, 50px);
}

.post-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px 16px;
	padding-block: min(6vw, 50px) 0;
}

.post-card {
	min-width: 0;
	/* スクロールで入ってきたら下から持ち上げながら表示する。
	   件数が多くなるのでブラーは使わず opacity と transform だけを動かす。
	   遅らせる量（--reveal-delay）は script.js の initStaggerReveal() が入れる。
	   カテゴリ切り替え・もっと見るで差し替わったカードにも同じ処理を掛け直している */
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

.post-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.post-card__thumb {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f2f2f2;
	border-radius: 30px 0 0 0;
}

.post-card__thumb picture {
	display: block;
	width: 95%;
	height: 100%;
}

.post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.post-card__link:hover .post-card__thumb img {
	transform: scale(1.05);
}

.post-card__body {
	margin-top: -16px;
	margin-left: 16px;
	padding: 16px;
	background: #fff;
	color: var(--color-text);
	position: relative;
	z-index: 1;
	box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.15);
}

.post-card__title {
	margin-top: 8px;
	font-size: 0.8rem;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-all;
}

.news-post .post-head,
.news-post .section {
	max-width: 750px;
	margin: 0 auto;
}

/* 汎用固定ページ（page.php）：見出しと本文の幅を揃えて読みやすい幅に収める */
.page-default .page-head .container,
.page-default .section {
	max-width: 750px;
}

/* 戻るボタンがフッターに接しないよう下に余白を取る */
.page-default .section {
	padding-bottom: min(10vw, 90px);
}

/* --- 404ページ --- */

/* 短い案内文だけなので中央寄せにする（本文が長い他の固定ページは左寄せのまま） */
.error-404 .entry-content {
	text-align: center;
}

.error-404__lead {
	/* .entry-content h2 の上余白（2.5em）は見出しが続く前提の値なので詰める */
	margin-top: 0;
	margin-bottom: 1em;
	font-size: clamp(1.1rem, 2.4vw, 1.4rem);
}

.news-post .post-head {
	margin-top: min(12vw, 80px);
}

/* 日付とカテゴリーを横並びに。カテゴリーのバッジは一覧と同じ .news-meta__cat を流用する */
.single__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
}

.news-post .page-head__title {
	padding: var(--gutter);
	border-left: solid 2px var(--color-black);
	font-size: min(5vw, 1.5rem);
}

.entry-content > * + * {
	margin-top: 1.5em;
}

.entry-content a {
	text-decoration: underline;
	color: var(--color-muted)
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: var(--font-serif);
	font-weight: 600;
}

.entry-content h2 {
	margin-top: 2.5em;
	font-size: 1.5rem;
}

.entry-content h3 {
	margin-top: 2em;
	font-size: 1.25rem;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.5em;
	list-style: revert;
}

.single__thumb {
	float: left;
	width: 35%;
	margin: 0 60px 40px 0;
}

.entry-content {
	margin-bottom: 1em;
	line-height: 1.8em;
	word-break: normal;
	overflow-wrap: break-word;
}

.entry-content figure {
	clear: both;
}

.single__nav {
	clear: both;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 64px;
	padding-top: 24px;
	border-top: 1px solid var(--color-line);
}

.single__nav-prev a,
.single__nav-next a {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 12px 26px;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	font-size: 0.8rem;
}

.single__nav-arrow {
	display: block;
	width: 26px;
	height: auto;
	aspect-ratio: 59.5 / 20.5;
	overflow: visible;
}

.single__nav-arrow--prev {
	transform: scaleX(-1);
}

/* --------------------------------------------------------------------------
   パンくずリスト
   -------------------------------------------------------------------------- */

.breadcrumbs {
	margin-bottom: 20px;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 0.65rem;
	color: var(--color-muted);
	letter-spacing: 0.03em;
}

.breadcrumbs__item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.breadcrumbs__item:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.6;
}

.breadcrumbs__item a:hover {
	opacity: 0.7;
}

.breadcrumbs__item [aria-current] {
	color: var(--color-text);
}

.page-head .vlabel {
	transform: translateY(0);
}

.page-head__heading {
	display: flex;
	position: relative;
	justify-content: flex-start;
	min-height: min(30vw, 140px);
}

.page-head__heading .vlabel {
	position: static;
	padding-top: .5em;
}

.page-head__heading .vlabel::after {
	top: 0;
	height: 100%;
}

/* --- 下層ページ見出しの登場アニメーション ---
   読み込み直後に「パンくず → 英語ラベル（縦線を引きながら） → タイトル」の順で出す。
   見出しは必ず画面の一番上にあってスクロールを待つ必要がないので、
   IntersectionObserverは使わずCSSアニメーションだけで完結させている。
   こうしておけばJavaScriptが動かない環境でも見出しが消えたままにならない。 */

@keyframes rvlent-head-rise {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 縦線は上から下へ引く */
@keyframes rvlent-head-rule {
	from {
		transform: scaleY(0);
	}
	to {
		transform: scaleY(1);
	}
}

.page-head .breadcrumbs,
.page-head__heading .vlabel,
.page-head__title {
	animation: rvlent-head-rise 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.page-head .breadcrumbs {
	animation-delay: 0.05s;
}

.page-head__heading .vlabel {
	animation-delay: 0.2s;
}

/* ラベルと同時に線を引き始める */
.page-head__heading .vlabel::after {
	transform-origin: top;
	animation: rvlent-head-rule 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s both;
}

.page-head__title {
	animation-delay: 0.34s;
}

/* 動きを減らす設定では、その場に表示するだけにする */
@media (prefers-reduced-motion: reduce) {
	.page-head .breadcrumbs,
	.page-head__heading .vlabel,
	.page-head__heading .vlabel::after,
	.page-head__title {
		animation: none;
	}
}

/* ==========================================================================
   お問い合わせ
   ========================================================================== */

.contact-page {
	max-width: 720px;
	padding-bottom: min(8vw, 80px);
}

/* TikTokライバー：LINE相談への誘導バナー（フォームの上に表示） */
.line-cta {
	margin-bottom: 40px;
	padding-bottom: 36px;
	text-align: center;
	border-bottom: 1px solid var(--color-line);
}

.line-cta__lead {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.line-cta__lead::before,
.line-cta__lead::after {
	content: "";
	display: block;
	width: 1px;
	height: stretch;
	background: currentColor;
}

.line-cta__lead::before {
	transform: rotate(-20deg);
}

.line-cta__lead::after {
	transform: rotate(20deg);
}

.line-cta__action {
	margin-top: 20px;
}

.contact-form {
	/* 目的を選んだ直後の自動スクロール時に、固定ヘッダーへ隠れないようにする */
	scroll-margin-top: calc(var(--header-h) + 20px);
}

.contact-form__notice {
	margin-bottom: 32px;
	padding: 16px 20px;
	border-radius: 6px;
	font-size: 0.9rem;
}

.contact-form__notice--success {
	background: #eef7ee;
	color: #1e6b1e;
}

.contact-form__notice--error {
	background: #fbeaea;
	color: #a32424;
}

.contact-form__row {
	margin-bottom: 32px;
}

.contact-form__error {
	display: block;
	flex: 1 0 100%;
	margin-top: 8px;
	font-size: 0.78rem;
	color: #a32424;
}

.contact-form__label {
	display: block;
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 0.9rem;
}

.contact-form__label em {
	margin-left: 8px;
	padding: 2px 8px;
	border-radius: 3px;
	background: var(--color-black);
	color: #fff;
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 700;
	vertical-align: middle;
}

.contact-form__label span {
	margin-left: 8px;
	font-size: 0.7rem;
	font-weight: 400;
	color: var(--color-muted);
	vertical-align: middle;
}

.contact-form__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-form__pill {
	position: relative;
	display: block;
	width: calc(50% - 5px);
}

.contact-form__pill input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.contact-form__pill span {
	display: block;
	padding: 10px 22px;
	border: 2px solid var(--color-line);
	border-radius: 999px;
	background: #fff;
	font-size: 0.85rem;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
	text-align: center;
	font-weight: 700;
}

.contact-form__pill input:checked + span {
	background: var(--color-black);
	border-color: var(--color-black);
	color: #fff;
}

.contact-form__pills.is-invalid .contact-form__pill span {
	border-color: #a32424;
}

.contact-form__pill input:focus-visible + span {
	outline: 2px solid var(--color-black);
	outline-offset: 2px;
}

.contact-form__input,
.contact-form__textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--color-line);
	border-radius: 4px;
	background: #fff;
	font-family: inherit;
	font-size: 0.95rem;
}

.contact-form__input.is-invalid,
.contact-form__textarea.is-invalid,
.contact-form__select.is-invalid {
	border-color: #a32424;
}

.contact-form__textarea {
	resize: vertical;
}

.contact-form__photos {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.contact-form__photo {
	position: relative;
	width: 110px;
}

.contact-form__photo-drop {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	aspect-ratio: 1;
	overflow: hidden;
	border: 2px dashed var(--color-line);
	border-radius: 8px;
	background: #fafafa;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-form__photo--required .contact-form__photo-drop {
	border-style: solid;
}

.contact-form__photo-drop.is-invalid {
	border-color: #a32424;
}

.contact-form__photo-drop:hover {
	border-color: var(--color-black);
	background: #f2f2f2;
}

.contact-form__photo-drop input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.contact-form__photo-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: var(--color-muted);
}

.contact-form__photo-plus {
	width: 22px;
	height: 22px;
}

.contact-form__photo-num {
	font-size: 0.7rem;
}

.contact-form__photo-preview {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-form__photo-remove {
	position: absolute;
	top: -8px;
	right: -8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-black);
	color: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.contact-form__photo-remove svg {
	width: 12px;
	height: 12px;
}

.contact-form__photo-badge {
	display: block;
	margin-top: 8px;
	text-align: center;
	font-size: 0.65rem;
	color: var(--color-muted);
}

.contact-form__photo--required .contact-form__photo-badge {
	color: var(--color-black);
	font-weight: 700;
}

.contact-form__birthday {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.contact-form__select {
	padding: 12px 30px 12px 12px;
	border: 1px solid var(--color-line);
	border-radius: 4px;
	background-color: #fff;
	/* ネイティブの矢印を消し、SVGのシェブロンに差し替える（.talent-search__selectと同じ意匠で統一） */
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath d='M1 1l9 9 9-9' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 11px auto;
	font-family: inherit;
	font-size: 0.95rem;
	/* iOS Safariはappearance:noneだけだと文字色・行間を独自に描画することがあるため明示する */
	color: var(--color-text);
	line-height: 1.4;
}

.contact-form__birthday-suffix {
	font-size: 0.85rem;
	color: var(--color-muted);
}

.contact-form__row--split {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.contact-form__row--split > div {
	flex: 1 1 0;
}

.contact-form__hp {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.contact-form__checkbox {
	display: inline-flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	cursor: pointer;
}

.contact-form__checkbox a {
	text-decoration: underline;
}

/* ネイティブのチェックボックスは見た目だけ消し、隣の.contact-form__checkbox-boxを
   独自デザインとして表示する（フォーカス・キーボード操作・スクリーンリーダーは
   input自体が担うため、display:noneではなく視覚的に隠すだけにする） */
.contact-form__checkbox-input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.contact-form__checkbox-box {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border: 1px solid var(--color-line);
	border-radius: 4px;
	background: #fff;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.contact-form__checkbox-check {
	width: 12px;
	height: 12px;
	color: #fff;
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.contact-form__checkbox-input:checked + .contact-form__checkbox-box {
	background: var(--color-black);
	border-color: var(--color-black);
}

.contact-form__checkbox-input:checked + .contact-form__checkbox-box .contact-form__checkbox-check {
	opacity: 1;
	transform: scale(1);
}

.contact-form__checkbox-input:focus-visible + .contact-form__checkbox-box {
	outline: 2px solid var(--color-black);
	outline-offset: 2px;
}

.contact-form__checkbox-box.is-invalid {
	border-color: #a32424;
}

/* プライバシーポリシー同意：必須項目の中でも特に見落とされやすいため枠で強調する */
.contact-form__row--agree {
	padding: 22px 24px;
	border: 1px solid var(--color-black);
	border-radius: 6px;
	background: var(--color-bg-alt);
}

.contact-form__row--agree .contact-form__checkbox {
	margin-top: 10px;
	font-size: 0.95rem;
	font-weight: 700;
}

.contact-form__row--agree .contact-form__checkbox-box {
	width: 24px;
	height: 24px;
}

.contact-form__row--agree .contact-form__checkbox-check {
	width: 14px;
	height: 14px;
}

.contact-form__privacy-link {
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-weight: 700;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
}

.contact-form__submit {
	margin-top: 48px;
	text-align: center;
}

.contact-form__submit .pill-btn {
	min-width: 300px;
	padding-left: 65px;
	font-weight: 700;
	font-size: 1.1rem;
}

.pill-btn:disabled {
	background: var(--color-line);
	color: var(--color-muted);
	cursor: not-allowed;
}

.pill-btn:disabled .pill-btn__arrow {
	opacity: 0.4;
}

/* ==========================================================================
   送信完了（サンクス）ページ　page-thanks.php
   ========================================================================== */

.thanks {
	max-width: 720px;
	padding-bottom: min(8vw, 80px);
	text-align: center;
}

.thanks__mark {
	color: var(--color-black);
}

.thanks__mark svg {
	width: 64px;
	height: 64px;
}

.thanks__body {
	margin-top: 28px;
	font-size: 0.95rem;
	line-height: 2;
}

.thanks__body > * + * {
	margin-top: 1.4em;
}

.thanks__note {
	margin-top: 32px;
	padding: 16px 20px;
	border-radius: 6px;
	background: var(--color-bg-alt);
	font-size: 0.78rem;
	line-height: 1.9;
	color: var(--color-muted);
	text-align: left;
}

/* 下層ページ最下部の「トップページに戻る」ボタン（rvlent_home_back_button()） */
.back-home {
	margin-top: min(8vw, 64px);
	text-align: center;
}

/* 送信中モーダル（お問い合わせフォーム） */
.sending-modal {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.72);
}

.sending-modal__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 40px 44px;
	border-radius: 8px;
	background: #fff;
	text-align: center;
}

.sending-modal__spinner {
	display: block;
	width: 40px;
	height: 40px;
	border: 3px solid var(--color-line);
	border-top-color: var(--color-black);
	border-radius: 50%;
	animation: sending-spin 0.8s linear infinite;
}

.sending-modal__text {
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.8;
}

@keyframes sending-spin {
	to { transform: rotate(360deg); }
}

/* 動きを減らす設定では回転させず、静止した円で待機を示す */
@media (prefers-reduced-motion: reduce) {
	.sending-modal__spinner {
		animation: none;
	}
}

/* プライバシーポリシーモーダル */
.privacy-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.privacy-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.privacy-modal__panel {
	position: relative;
	z-index: 1;
	width: min(680px, 100%);
	max-height: 85vh;
	overflow-y: auto;
	padding: 40px clamp(20px, 4vw, 48px);
	background: #fff;
	border-radius: 8px;
}

.privacy-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: var(--color-bg-alt);
	cursor: pointer;
}

.privacy-modal__close svg {
	width: 16px;
	height: 16px;
}

.privacy-modal__title {
	padding-right: 40px;
	font-family: var(--font-serif);
	font-size: 1.3rem;
	font-weight: 600;
}

.privacy-modal__body {
	margin-top: 24px;
	font-size: 0.85rem;
	line-height: 1.9;
}

.privacy-modal__body > * + * {
	margin-top: 1.4em;
}

/* ==========================================================================
   お知らせ一覧
   ========================================================================== */

.news-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.news-tabs__item {
	padding: 10px 24px;
	border: 2px solid var(--color-line);
	border-radius: 999px;
	background: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-tabs__item.is-active {
	background: var(--color-black);
	border-color: var(--color-black);
	color: #fff;
}

.news-archive__empty {
	padding-block: 60px;
	text-align: center;
	color: var(--color-muted);
}

.news-archive__more {
	text-align: center;
}

.news-archive__more .pill-btn.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

/* ==========================================================================
   タレント一覧・詳細
   ========================================================================== */

/* --- 検索・絞り込みフォーム --- */

.talent-search {
	margin-bottom: 40px;
	border-radius: 6px;
	overflow: hidden;
}

.talent-search__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px 28px;
	background: var(--color-black);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.04em;
}

.talent-search__toggle-icon {
	width: 16px;
	height: 16px;
}

/* 縦線をアニメーションで出し入れして、開いている時はマイナス／閉じている時はプラスにする */
.talent-search__toggle-icon-v {
	transform-origin: center;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.talent-search__toggle[aria-expanded="true"] .talent-search__toggle-icon-v {
	opacity: 0;
	transform: rotate(90deg);
}

.talent-search__toggle[aria-expanded="false"] .talent-search__toggle-icon-v {
	opacity: 1;
	transform: rotate(0deg);
}

.talent-search__panel {
	background: var(--color-bg-alt);
	padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 48px);
}

.talent-search__row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 16px 24px;
	padding-block: 20px;
	border-bottom: 1px solid var(--color-line);
}

.talent-search__row:last-child {
	border-bottom: none;
}

.talent-search__row--keyword {
	align-items: center;
}

.talent-search__label,
.talent-search__row-label {
	flex: 0 0 140px;
	font-size: 0.85rem;
	font-weight: 700;
	padding-top: 12px;
}

.talent-search__row--keyword .talent-search__label {
	padding-top: 0;
}

.talent-search__keyword {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	width: 100%;
	max-width: 700px;
}

.talent-search__keyword input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	padding: 14px 18px;
	border: 1px solid var(--color-line);
	border-right: none;
	border-radius: 999px;
	font-size: 0.9rem;
	font-family: inherit;
	background: #fff;
}

.talent-search__keyword-btn {
	position: absolute;
	top: 50%;
	right: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	min-width: 120px;
	padding: 11px 26px;
	background: var(--color-black);
	border: 2px solid var(--color-black);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.85rem;
	white-space: nowrap;
	transform: translateY(-50%);
	justify-content: center;
}

.talent-search__keyword-btn svg {
	width: 15px;
	height: 15px;
}

.talent-search__filters {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	margin-top: 4px;
}

.talent-search__filters-label {
	display: flex;
	flex: 0 0 140px;
	align-items: center;
	gap: 8px;
	padding-top: 12px;
	font-weight: 700;
	font-size: 0.9rem;
}

.talent-search__filters-label svg {
	width: 19px;
	height: 12px;
	flex-shrink: 0;
}

.talent-search__rows {
	flex: 1 1 auto;
	min-width: 0;
}

.talent-search__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 6px;
}

.talent-search__pill {
	position: relative;
	display: inline-block;
}

.talent-search__pill input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.talent-search__pill span {
	display: inline-block;
	padding: 10px 22px;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: #fff;
	font-size: 0.85rem;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.talent-search__pill input:checked + span {
	background: var(--color-black);
	border-color: var(--color-black);
	color: #fff;
}

.talent-search__pill input:focus-visible + span {
	outline: 2px solid var(--color-black);
	outline-offset: 2px;
}

.talent-search__range {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding-top: 6px;
}

.talent-search__range input {
	width: 100px;
	padding: 12px 14px;
	border: 1px solid var(--color-line);
	border-radius: 4px;
	background: #fff;
	font-family: inherit;
	font-size: 0.9rem;
}

.talent-search__unit {
	font-size: 0.8rem;
	color: var(--color-muted);
}

.talent-search__range-sep {
	color: var(--color-muted);
}

.talent-search__select {
	padding: 12px 38px 12px 14px;
	border: 1px solid var(--color-line);
	border-radius: 4px;
	background-color: #fff;
	/* ネイティブの矢印を消し、SVGのシェブロンに差し替える */
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath d='M1 1l9 9 9-9' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px auto;
	font-family: inherit;
	font-size: 0.9rem;
	/* iOS Safariはappearance:noneだけだと文字色・行間を独自に描画することがあるため明示する */
	color: var(--color-text);
	line-height: 1.4;
	min-width: 220px;
	max-width: 100%;
}

.talent-search__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 32px;
}

.talent-search__submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 40px;
	background: var(--color-black);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9rem;
}

.talent-search__submit svg {
	width: 15px;
	height: 15px;
}

.talent-search__reset {
	display: inline-flex;
	align-items: center;
	padding: 16px 32px;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: #fff;
	font-weight: 700;
	font-size: 0.9rem;
}

/* --- 検索結果件数 --- */

.talent-result-count {
	margin: 8px 0 32px;
	/* 検索実行後の自動スクロール時に固定ヘッダーへ隠れないようにする */
	scroll-margin-top: calc(var(--header-h) + 20px);
	text-align: center;
	font-size: 0.85rem;
	color: var(--color-muted);
	line-height: 1.9;
}

/* --- タレントバッジ（エージェント契約） --- */

.talent-badge {
	display: inline-block;
	padding: 2px 8px;
	background: var(--color-black);
	color: #fff;
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

/* --- TikTokライバー一覧：ハッシュタグ絞り込み --- */

.liver-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.liver-filter__item {
	padding: 10px 22px;
	border: 2px solid var(--color-line);
	border-radius: 999px;
	background: #fff;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.liver-filter__item.is-active {
	background: var(--color-black);
	border-color: var(--color-black);
	color: #fff;
}

/* --- 一覧グリッド --- */

.talent-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px 28px;
	padding-block: min(6vw, 50px);
}

/* ライバー一覧だけは写真が正円で小さく見えるので、1行に並べる枚数を増やす
   （PC・タブレット6列／SP3列。SP側の指定は767px以下のブロックにある） */
.post-type-archive-liver .talent-grid {
	grid-template-columns: repeat(6, 1fr);
	gap: 32px;
}

.talent-archive__empty {
	padding-block: 60px;
	text-align: center;
	color: var(--color-muted);
}

.talent-card {
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* スクロールで入ってきたら、少し下から持ち上げながらスッと表示する。
   一覧は枚数が多くなるので、ブラー（描画コストが高い）は使わず、
   GPUで処理される opacity と transform だけを動かす。
   遅らせる量（--reveal-delay）は script.js の initStaggerReveal() が入れる。 */
.talent-grid .talent-card {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

.talent-grid .talent-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.talent-card__link {
	display: block;
}

.talent-card__photo {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #eee;
}

/* ライバー一覧のみ写真を正円にする（SNSのプロフィールアイコンに寄せた見せ方） */
.post-type-archive-liver .talent-card__photo {
	border-radius: 50%;
}

.top-livers .talent-card__photo {
	width: 70%;
	margin: 0 auto;
}

.talent-card__photo picture,
.talent-card__photo img {
	display: block;
	width: 100%;
	height: 100%;
}

.talent-card__photo img {
	object-fit: cover;
	transition: transform 0.6s ease;
}

.talent-card__link:hover .talent-card__photo img {
	transform: scale(1.05);
}

.talent-card__photo .talent-badge {
	position: absolute;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.75);
	margin: 0;
}

.talent-card__name {
	margin-top: 14px;
	font-size: min(3vw, 16px);
	font-weight: 700;
}

.talent-card__kana {
	font-size: 0.75rem;
	color: var(--color-muted);
}

.talent-card__group {
	margin-top: 4px;
	font-size: 0.6rem;
}

.talent-card__group a {
	text-decoration: underline;
	color: var(--color-muted);
}

.talent-card__sns {
	display: flex;
	gap: 12px;
	margin-top: 10px;
}

.talent-card__sns .sns-icon {
	width: 18px;
	height: 18px;
}

/* --- 詳細ページ --- */

.page-head--talent {
	padding-bottom: 0;
	border-bottom: none;
}

.talent-detail {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	padding-block: clamp(32px, 5vw, 56px);
	align-items: start;
	width: min(100%, 920px);
}

/* グループ詳細ページのみ：920px上限を外して.container幅いっぱいに使う */
.talent-detail--group {
	width: 100%;
}

.talent-gallery__main {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	/* 横方向のジェスチャーはスワイプ送りに使うためブラウザに渡さない。
	   縦方向（ページスクロール）はそのまま効かせる */
	touch-action: pan-y;
}

/* スワイプ時に画像やスライドが選択状態にならないようにする */
.talent-gallery__slide img {
	-webkit-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
}

/* グループ詳細ページのみ：集合写真を想定して横長基準にする */
.talent-gallery--landscape .talent-gallery__main {
	aspect-ratio: 3 / 1.8;
}

/* ライバー詳細でギャラリー画像を登録していない場合：一覧カードと同じく正円で見せる */
.talent-gallery--round .talent-gallery__main {
	aspect-ratio: 1;
	border-radius: 50%;
	width: min(80%, 320px);
	margin: 0 auto;
}

.talent-gallery--round .talent-gallery__main .talent-gallery__slide.is-active {
	padding: 0;
}

.talent-gallery__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease;
}

.talent-gallery__slide.is-active {
	opacity: 1;
	visibility: visible;
	padding: 0 min(3vw, 20px);
}

.talent-gallery__slide picture,
.talent-gallery__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.talent-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.55);
}

.talent-gallery__nav::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.5 22.5'%3E%3Cpath d='M3.737,17.347 L10.674,10.320 L3.737,3.292' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	transform: translate(-50%, -50%);
}

.talent-gallery__nav--prev {
	left: 0;
}

.talent-gallery__nav--prev::before {
	transform: translate(-50%, -50%) rotate(180deg);
}

.talent-gallery__nav--next {
	right: 0;
}

.talent-gallery__thumbs {
	display: flex;
	gap: 12px;
	margin-top: 16px;
	padding: 0 min(3vw, 20px);
}

.talent-gallery__thumb {
	width: 72px;
	aspect-ratio: 1;
	overflow: hidden;
	opacity: 0.5;
	transition: opacity 0.2s ease;
}

.talent-gallery__thumb.is-active,
.talent-gallery__thumb:hover {
	opacity: 1;
}

.talent-gallery__thumb picture,
.talent-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.talent-profile__group-logo picture,
.talent-profile__group-logo img {
	display: block;
	max-height: 120px;
	width: auto;
	border-radius: 50%;
	margin-top: 1em;
}

.talent-profile__name {
	margin-top: min(8vw, 40px);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	letter-spacing: 0.02em;
}

.talent-profile__kana {
	margin-top: 4px;
	font-size: min(2.85vw, 0.85rem);
	color: var(--color-muted);
}

.talent-profile__group {
	margin-top: 10px;
	font-size: min(2.85vw, 0.85rem);
}

.talent-profile__group a {
	text-decoration: underline;
}

.talent-profile__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: 100%;
}

.talent-profile__categories {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 5px;
}

.talent-profile__category {
	border: solid 1px var(--color-black);
	border-radius: 999px;
	padding: 0 1em;
	font-size: 0.7rem;
}

.talent-profile__sns {
	display: flex;
	gap: 16px;
	margin-top: 16px;
}

.talent-profile__sns .sns-icon {
	width: 22px;
	height: 22px;
}

.talent-profile__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.talent-profile__link-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
}

.talent-profile__link-btn:hover {
	background: var(--color-bg-alt);
}

.talent-profile__link-icon {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

/* グループ詳細ページのみ：本文（説明文）。ABOUTの見出しは出さずプロフィールの一部として表示する */
.talent-profile__description {
	margin-top: 24px;
	font-size: 0.9rem;
}

.talent-profile__table {
	width: 100%;
	margin-top: 32px;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.talent-profile__table tr {
	border-bottom: 1px solid var(--color-line);
}

.talent-profile__table tr:last-child {
	border-bottom: none;
}

.talent-profile__table th,
.talent-profile__table td {
	padding: 16px 8px;
	text-align: left;
	font-weight: 400;
	vertical-align: top;
}

.talent-profile__table th {
	width: 120px;
	color: var(--color-muted);
	font-weight: 700;
}

/* --- グループ：MEMBERS --- */

.talent-group-members {
	padding-block: min(8vw, 70px);
	border-top: 1px solid var(--color-line);
}

.talent-group-members__title {
	font-weight: 400;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	letter-spacing: 0.04em;
}

.talent-group-members-inner {
	width: min(100%, 960px);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.talent-grid-wrap {
	background-color: var(--color-bg-alt);
}

/* --- 今月のTOPライバー（ライバー一覧の先頭） --- */

.top-livers {
	padding-bottom: min(6vw, 50px);
	overflow: hidden; /* 横スクロール領域がページ全体の横幅を広げないように */
}

/* 見出しは画面左端から始まる黒帯。テキストの左位置は本文カラムに揃える */
.top-livers__title {
	display: inline-block;
	min-width: min(50vw, 400px);
	margin-bottom: min(3vw, 24px);
	padding: 8px min(5vw, 44px) 6px var(--gutter);
	background: var(--color-black);
	color: #fff;
	font-family: var(--font-base);
	font-size: clamp(1.05rem, 2.2vw, 1.4rem);
	font-weight: 700;
	letter-spacing: 0.04em;
}

/* 横スクロールの窓。スクロールバーは隠すが、指・トラックパッドでの操作は残す。
   touch-action は指定しない（既定のauto）。`pan-y`にすると横方向のスワイプが
   ブラウザのスクロールとして扱われなくなり、指で動かせなくなる。
   マウスでのドラッグ操作は script.js の initTopLivers() 側で足している。 */
.top-livers__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	/* 端まで動かしたときにブラウザの「戻る」ジェスチャーが出ないようにする */
	overscroll-behavior-x: contain;
	cursor: grab;
}

.top-livers__viewport.is-dragging {
	cursor: grabbing;
	/* ドラッグ中に文字や画像が選択されないように */
	user-select: none;
}

.top-livers__viewport::-webkit-scrollbar {
	display: none;
}

.top-livers__track {
	display: flex;
	align-items: stretch;
	gap: min(7vw, 24px);
	/* カードの影が切れないよう上下左右に余白を持たせる */
	padding: 10px var(--gutter) 24px;
	width: max-content;
}

/* カード自体はタレント一覧と共通のパーツ。ここでだけカードらしい装飾を足す */
.top-livers .talent-card {
	flex: 0 0 auto;
	width: min(52vw, 320px);
	padding: min(8vw, 26px) min(3vw, 18px);
	border-radius: 14px;
	background: var(--color-bg-alt);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

.talent-group-members .talent-grid {
	margin-top: 28px;
}

/* --- ACHIEVEMENTS --- */

.talent-achievements {
	padding-block: 0 min(5vw, 56px);
	width: min(100%, 960px);
}

.talent-achievements__title {
	padding-bottom: .5em;
	font-weight: 400;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	letter-spacing: 0.04em;
	border-bottom: solid 2px var(--color-black);
}

.talent-achievements__block {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 8px 32px;
	margin-top: 28px;
	padding: 24px 1em 0;
	border-top: 1px solid var(--color-line);
}

.talent-achievements__block:first-of-type {
	margin-top: 24px;
	padding-top: 0;
	border-top: none;
}

.talent-achievements__label {
	flex: 0 0 160px;
	font-weight: 700;
	font-size: 0.95rem;
}

.talent-achievements__body {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.85rem;
	line-height: 2;
}

.liver-archive {
	/* タグで絞り込んだ直後の自動スクロール時に、固定ヘッダーへ隠れないようにする */
	scroll-margin-top: calc(var(--header-h) + 20px);
}

/* --- TikTokタイムライン埋め込み（TikTokライバーのみ） --- */

.liver-tiktok {
	padding-block: clamp(32px, 5vw, 56px);
	border-top: 1px solid var(--color-line);
	text-align: center;
}

.liver-tiktok__title {
	font-weight: 400;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	letter-spacing: 0.04em;
}

.liver-tiktok__embed {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

/* --- 下部CTA・シェア・戻る --- */

.talent-cta {
	padding-block: min(8vw, 50px);
	text-align: center;
	border-top: 1px solid var(--color-line);
}

.talent-cta__thanks {
	font-size: 0.9rem;
	line-height: 1.9;
	letter-spacing: .1em;
}
.talent-cta__thanks strong {
	display: block;
	font-size: 1rem;
	padding-bottom: .5em;
}

.talent-cta__action {
	margin-top: 28px;
}

.talent-share__lead {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 56px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--color-black);
}
.talent-share__lead::before,
.talent-share__lead::after {
	content: "";
	display: block;
	width: 1px;
	height: stretch;
	background: currentColor;
}

.talent-share__lead::before {
	transform: rotate(-20deg);
}

.talent-share__lead::after {
	transform: rotate(20deg);
}

.talent-share__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .25em;
	margin-top: 16px;
}

.talent-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: min(1vw, 10px) min(4vw, 22px);
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #fff;
}

.talent-share__btn--facebook {
	background: #1877f2;
}

.talent-share__btn--x {
	background: #000;
}

.talent-share__btn--line {
	background: #06c755;
}

.talent-share__btn--copy {
	background: var(--color-muted);
}

.talent-back {
	margin-top: 48px;
	text-align: center;
}

.talent-back__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 14px 32px;
	border: 1.5px solid var(--color-black);
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
}

/* pill-btn__arrow と同じSVG（右向き矢印）を左右反転して使う */
.talent-back__arrow {
	display: block;
	width: 32px;
	height: auto;
	aspect-ratio: 59.5 / 20.5;
	overflow: visible;
	transform: scaleX(-1);
}

/* --- タレント詳細ページの各要素をスクロールで表示する ---
   タレントカードと同じく、負荷の高いブラーは使わず opacity と transform だけを動かす。
   表示の順番と遅延（--reveal-delay）は script.js の initStaggerReveal() が入れる。
   ギャラリーはスライドを重ねてクロスフェードしている構造なので、
   個々のスライドではなく外側のまとまりごと動かす。 */
.talent-single .talent-gallery,
.talent-profile > *,
.talent-group-members__title,
.talent-achievements__title,
.talent-achievements__block,
.liver-tiktok__title,
.liver-tiktok__embed,
.talent-cta > * {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

.talent-single .talent-gallery.is-visible,
.talent-profile > .is-visible,
.talent-group-members__title.is-visible,
.talent-achievements__title.is-visible,
.talent-achievements__block.is-visible,
.liver-tiktok__title.is-visible,
.liver-tiktok__embed.is-visible,
.talent-cta > .is-visible {
	opacity: 1;
	transform: translateY(0);
}

.pagination {
	margin-top: 64px;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 12px;
	font-size: 0.875rem;
}

.pagination .current {
	font-weight: 700;
	text-decoration: underline;
}

/* ==========================================================================
   会社概要ページ（page-about.php）
   ========================================================================== */

.about-statement {
	padding-block: 0 clamp(40px, 6vw, 64px);
}

.about-statement__text {
	position: relative;
	max-width: 820px;
	padding-left: min(10vw, 60px);
}
.about-statement__text::before {
	position: absolute;
	content: "";
	width: 1px;
	height: 190%;
	background-color: var(--color-black);
	top: 0;
	left: 0;
	transform: translateY(-19%);
}

.about-statement__title {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(1.25rem, 2.6vw, 1.75rem);
	letter-spacing: 0.04em;
}

.about-statement__body {
	margin-top: 20px;
	font-size: 0.9rem;
	line-height: 2;
}

.about-statement__body p + p {
	margin-top: 1.2em;
}

.about-statement__photo-wrap {
	position: relative;
}

.about-statement__photo {
	aspect-ratio: 16 / 3;
	overflow: hidden;
}

.about-statement__photo picture,
.about-statement__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- OUR MISSION --- */

.about-mission {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-mission__title {
	position: absolute;
	font-weight: 700;
	font-family: var(--font-serif);
	font-size: clamp(2rem, 6vw, 3.25rem);
	letter-spacing: 0.04em;
	text-align: center;
	bottom: -0.65em;
	left: 25%;
	transform: translateX(-25%);
}

.about-mission__list {
	margin-top: clamp(40px, 6vw, 72px);
	display: flex;
	flex-direction: column;
	gap: clamp(48px, 7vw, 88px);
	width: min(95%, 740px);
	margin: 0 auto;
}

.about-mission__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* 偶数項目（02・04）はイラストを左、テキストを右にする */
.about-mission__item:nth-child(even) {
	flex-direction: row-reverse;
}

.about-mission__content {
	display: flex;
	align-items: flex-start;
	gap: clamp(16px, 2.4vw, 28px);
	flex: 1 1 auto;
}

.about-mission__item:nth-child(even) .about-mission__illust {
	transform: translateX(min(6vw, 90px));
}

.about-mission__item:nth-child(odd) .about-mission__illust {
	transform: translateX(-20px);
}

.about-mission__number {
	font-weight: 400;
	font-size: min(20vw, 7rem);
	line-height: 1;
	color: #ebebeb;
	transform: translate(min(3vw, 38px), min(-2vw, -15px));
}

.about-mission__text {
	z-index: 1;
}

.about-mission--single .about-mission__text {
	padding-left: min(6vw, 40px);
}

.about-mission__item-title {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: min(4vw, 1.4rem);
	line-height: 1.7;
	letter-spacing: 0.065em;
}

.about-mission--single .about-mission__item-title {
	margin-bottom: 1.65rem;
}

.about-mission__item-body {
	margin-top: 14px;
	font-size: 0.9rem;
	line-height: 2;
	letter-spacing: 0.05em;
}

.about-mission__illust {
	flex: 0 0 auto;
	width: min(14vw, 180px);
}

.about-mission__illust picture,
.about-mission__illust img {
	display: block;
	width: 100%;
	height: auto;
}

/* MISSIONが1件だけのとき。番号（01）を出力しないぶんの余白を詰める。
   個別に見た目を調整したくなったらこのセレクタに追記する */
.about-mission--single {
	padding-block: clamp(40px, 6vw, 72px);
}

.about-mission--single .about-mission__content {
	gap: 0;
}

/* --- 会社情報 --- */

.company-overview {
	background: var(--color-bg-alt);
	padding-block: 0 min(5vw, 30px);
	border-top: solid 4px var(--color-black);
}

.company-overview .container {
	display: flex;
	align-items: flex-start;
	gap: min(7vw, 50px);
	max-width: 960px;
}

.company-overview__head {
	display: flex;
	align-self: stretch;
}

.company-overview__head .vlabel {
	padding-top: 15px;
	transform: translateY(0);
}
.company-overview__head .vlabel::after {
	height: 100%;
	top: 0;
}

.company-overview__title {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	padding-top: min(15vw, 100px);
}

.company-overview__table {
	width: 100%;
	margin-top: clamp(24px, 3.5vw, 40px);
	border-collapse: collapse;
	font-size: 0.9rem;
}

.company-overview__table tr {
	border-bottom: 1px solid var(--color-line);
}

.company-overview__table tr:last-child {
	border-bottom: none;
}

.company-overview__table th,
.company-overview__table td {
	padding: 20px 12px;
	text-align: left;
	font-weight: 400;
	vertical-align: top;
	line-height: 1.9;
}

.company-overview__table th {
	width: 140px;
	color: var(--color-muted);
	font-weight: 700;
	white-space: nowrap;
}

.company-overview__map-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	margin-top: 12px;
	padding: 8px 18px;
	border: 1px solid var(--color-text);
	border-radius: 999px;
	font-size: 0.78rem;
}

.company-overview__map-btn svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.company-overview__business {
	padding-left: 1.4em;
	list-style: decimal;
}

.company-overview__business li + li {
	margin-top: 0.4em;
}

/* --- 会社概要ページの各要素をスクロールで表示する ---
   タレントカードと同じく、負荷の高いブラーは使わず opacity と transform だけを動かす。
   表示の順番と遅延（--reveal-delay）は script.js の initStaggerReveal() が入れる。 */
.about-statement__title,
.about-statement__body,
.about-statement__photo,
.about-mission__title,
.about-mission__item,
.company-overview__head,
.company-overview__title {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

.about-statement__title.is-visible,
.about-statement__body.is-visible,
.about-statement__photo.is-visible,
.about-mission__title.is-visible,
.about-mission__item.is-visible,
.company-overview__head.is-visible,
.company-overview__title.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* OUR MISSIONの見出しは横位置の調整で transform を使っているので、
   それを打ち消さないよう translate にまとめて指定する */
.about-mission__title {
	transform: translate(-25%, 16px);
}

.about-mission__title.is-visible {
	transform: translate(-25%, 0);
}

/* 表の行は transform を掛けると崩れることがあるので、フェードだけにする */
.company-overview__table tr {
	opacity: 0;
	transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

.company-overview__table tr.is-visible {
	opacity: 1;
}

/* ==========================================================================
   タブレット（1024px以下）
   ========================================================================== */

@media (max-width: 1024px) {
	:root {
		--header-h: 80px;
	}

	.global-nav {
		display: none;
	}

	.news__body {
		grid-template-columns: 0.8fr 1fr;
		width: 100%;
		padding: min(6vw, 80px) 0;
	}

	.pickup__track {
		--pickup-cols: 2;
	}
}

/* ==========================================================================
   スマートフォン（767px以下）
   ========================================================================== */

@media (max-width: 767px) {
	:root {
		--gutter: 18px;
		--header-h: 64px;
	}

	/* 改行位置の出し分け（PC側の既定は共通ユーティリティを参照） */
	.br-sp {
		display: inline;
	}

	.br-pc {
		display: none;
	}

	#site-main {
		width: 100%;
		overflow: hidden;
	}

	.site-header__logo {
		width: 48px;
	}

	.fv__stage {
		aspect-ratio: 2 /3;
		--fv-ramp: 20vw;
	}

	.fv__bg-solid {
		width: 130vw;
		height: 95vw;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		left: 50%;
		transform: translateX(-50%);
	}

	.fv__dither {
		width: 100%;
		left: 5vw;
		top: 17vw;
		transform: rotate(52deg) translate(0, 0);
	}

	.fv__catch {
		left: 3.8vw;
		top: 1vw;
		width: 61vw;
	}

	.fv__photo--1 {
		left: auto;
		right: 0;
		top: 0vw;
		width: 32vw;
		height: 50vw;
	}

	.fv__photo--2 {
		left: 18vw;
		top: 27vw;
		width: 28vw;
		height: 42vw;
	}

	.fv__logo {
		left: 44vw;
		top: 30vw;
		width: 35vw;
	}

	.fv__photo--3 {
		left: 0;
		top: 75vw;
		width: 31vw;
		height: 46vw;
	}

	.fv__sub {
		font-size: 11.5vw;
	}

	.fv__sub-line--1 {
		left: 7vw;
		top: 56vw;
		transform: rotate(-35deg);
	}

	.fv__sub-line--2 {
		left: 53vw;
		top: 96vw;
		transform: rotate(-56deg);
	}

	.fv__circle {
		left: 60%;
		top: 97vw;
		width: 36%;
	}

	/* --- ABOUT / TALENTS --- */
	.vlabel { font-size: min(5vw, 20px); }
	.about__text,
	.talents__lead {
		font-size: min(3vw, 16px);
	}
	.about__stage,
	.talents__stage {
		grid-template-columns: repeat(0, 1fr);
		grid-auto-rows: auto;
		gap: 12px;
	}

	.about__body {
		grid-column: auto;
		grid-row: auto;
	}

	.about__photo--1 {
		grid-column: 1 / 6;
	}

	.about__photo--2 {
		grid-column: 1 / 5;
		grid-row: 10 / 15;
	}

	.about__photo--3 {
		grid-column: 5 / 11;
		grid-row: 9 / 12;
	}

	.about__photo--4 {
		grid-column: 10 / 16;
		grid-row: 2 / 10;
	}

	.about__photo--5 {
		grid-column: 10 / 16;
		grid-row: 11 / 20;
		transform: translateX(0);
	}

	/* リード文を先頭、ボタンを末尾に持ってくる（DOM順は写真が先のため） */
	.about__body {
		order: -1;
		grid-column: 1 / 15;
		margin-bottom: 8px;
	}

	.about__btn,
	.talents__btn {
		order: 1;
		justify-self: center;
		width: 56%;
		align-self: auto;
		max-width: 180px;
	}

	.about__btn {
		grid-column: 4 / 12;
		grid-row: 2 / 8;
	}

	.talents__btn {
		grid-column: 3 / 11;
		grid-row: 7 / 8;
	}

	.talents__head {
		grid-column: 1 / 14;
	}

	.talents__photo--1 {
		grid-column: 1 / 7;
		grid-row: 8 / 11;
	}

	.talents__photo--2 {
		grid-column: 7 / 15;
		grid-row: 7 / 10;
	}

	.talents__photo--3 {
		grid-column: 1 / 8;
		grid-row: 11 / 17;
		transform: translate(-6%, -12%) scale(0.75);
	}

	.talents__photo--4 {
		grid-column: 7 / 13;
		grid-row: 12 / 17;
		transform: translateX(-3%);
	}

	.talents__photo--5 {
		grid-column: 9 / 15;
		grid-row: 9 / 11;
		transform: translate(-8%, 25%);
	}

	/* --- NEWS --- */
	.news {
		padding: 0 0 min(15vw, 60px);
	}

	.single__thumb {
		width: 42%;
		margin: 0 20px 20px 0;
	}

	.news-feature__body {
		width: 95%;
		margin-left: 8px;
	}

	.news-card {
		grid-template-columns: min(32vw, 150px) 1fr;
		width: 95%;
	}

	.news-feature__thumb {
		width: 90%;
	}

	.news__body {
		grid-template-columns: 1fr;
		width: 100%;
		padding: min(10vw, 80px) 0 min(5vw, 40px);
	}

	.news-card__title {
		font-size: 0.74rem;
		line-height: 1.45;
		-webkit-line-clamp: 3;
	}

	.news-card__body {
		width: 100%;
		padding: 12px 14px;
		min-height: 90%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.news__more {
		grid-column: 1;
		bottom: -80px;
	}

	/* --- PICKUP --- */
	.pickup__panel {
		border-radius: 20px 0 0 0;
	}

	.pickup__track {
		--pickup-cols: 1.4;
	}

	.pickup__nav {
		display: none;
	}

	.pickup-open {
		padding: 10px 18px;
		font-size: 0.85rem;
	}

	.site-footer {
		padding-block: min(10vw, 50px) min(15vw, 100px);
	}

	.site-footer::before {
		top: -12%;
		right: -1%;
		width: 100%;
		height: 22%;
		transform: scaleY(-1) rotate(-4deg);
	}

	.site-footer__top {
		display: grid;
		justify-items: center;
		text-align: center;
	}

	.footer-nav__list {
		justify-content: center;
	}

	.site-footer__sns .sns-list {
		justify-content: center;
	}

	.site-footer__bottom {
		justify-content: center;
		text-align: center;
	}

	/* --- タレント一覧・詳細 --- */

	.talent-search__panel {
		padding-top: 0;
	}

	.talent-search__filters {
		flex-direction: column;
		gap: 12px;
		margin-top: 25px;
	}

	.talent-search__filters-label {
		flex-basis: auto;
		padding-top: 0;
	}

	.talent-search__row {
		flex-direction: column;
		gap: 10px;
	}

	.talent-search__filters .talent-search__row-label {
		padding-left: 8px;
	}

	.talent-profile {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.talent-achievements__block {
		flex-direction: column;
		gap: 6px;
	}

	.talent-search__label,
	.talent-search__row-label {
		flex-basis: auto;
		padding-top: 0;
	}
	.talent-achievements__label {
		flex: 0;
	}
	.talent-achievements__body {
		padding-left: 1em;
	}

	.talent-search__keyword {
		max-width: none;
	}

	.talent-search__keyword-btn {
		min-width: auto;
		margin-right: 3px;
		padding: .5em 1em;
	}

	.talent-search__select {
		width: 100%;
	}

	.talent-search__actions {
		flex-direction: column;
	}

	.talent-search__submit,
	.talent-search__reset {
		width: 100%;
		justify-content: center;
	}

	.talent-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 16px;
	}

	/* ライバー一覧はSPでも3列 */
	.post-type-archive-liver .talent-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px 10px;
		padding-bottom: min(12vw, 60px);
	}

	.post-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 16px;
	}

	/* お問い合わせ
	   選択肢は既定で2列。1つずつ縦に並べたいグループには
	   .contact-form__pills--full を付ける（選択肢が長い項目向け） */
	.contact-form__pills--full .contact-form__pill {
		width: 100%;
	}

	.contact-form__row--split {
		flex-direction: column;
		gap: 32px;
	}

	.contact-form__photo,
	.contact-form__photo-drop {
		width: 26vw;
	}

	.page-head--talent {
		padding-bottom: 0;
	}

	.talent-detail {
		grid-template-columns: 1fr;
		max-width: 600px;
	}

	.talent-profile__table th {
		width: 90px;
	}

	/* --- 会社概要ページ --- */

	.about-statement__photo {
		aspect-ratio: 16 / 5;
	}

	.about-mission__content {
		gap: 0;
	}

	.about-mission__number {
		transform: translate(3vw, -14vw);
	}

	.about-mission__text {
		transform: translateX(-3vw);
	}

	/* 1件のみのときは番号が無いので、番号に食い込ませるための左寄せ補正も不要 */
	.about-mission--single .about-mission__text {
		transform: none;
	}

	.about-mission__item,
	.about-mission__item:nth-child(even) {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.about-mission__item:nth-child(odd) .about-mission__illust,
	.about-mission__item:nth-child(even) .about-mission__illust {
		transform: translateX(0);
	}

	.about-mission__illust {
		width: 180px;
		align-self: center;
	}

	.company-overview__table th {
		width: 90px;
	}
}

/* ==========================================================================
   モーション設定を尊重する
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	/* ローディングは動きを付けず、短時間で静かに消すだけにする */
	.site-loader {
		animation: loader-fade 0.3s linear 0.4s forwards;
	}

	.site-loader__mark {
		opacity: 1;
		animation: none;
	}

	.site-loader__sheen {
		display: none;
	}

	.site-loader__bar {
		transform: scaleX(1);
		animation: none;
	}

	@keyframes loader-fade {
		to {
			opacity: 0;
			visibility: hidden;
			pointer-events: none;
		}
	}

	.circle-text {
		animation: none;
	}

	.face-anim__frame {
		transition: none;
	}

	.fv__sub-line,
	.about__body,
	.talents__head {
		opacity: 1;
		filter: none;
		transition: none;
	}
}
