/* Brand Value Lab — サイト共通レイアウト・コンポーネント（トップほか全ページで利用） Zeplin: zpl.io/KE49jd7 + LP (brand-value-lab-lp.html) */
:root {
	--bvl-cream: #f9f9f9;
	--bvl-footer: #0a0a0a;
	--bvl-gray: #d9d9d9;
	--bvl-decor-line: #bfbcb3;
	--bvl-black: #0a0a0a;
	--bvl-white: #fff;
	--bvl-inner: 1000px;
	--bvl-hero-inner: 1280px;
	--bvl-radius: 10px;
	--bvl-card-pop-radius: 12px;
	--bvl-support-band-padding-top: clamp(1.5rem, 3vw, 2.75rem);
	--bvl-inner-padding-y: clamp(2.5rem, 10vw, 9rem);
	--bvl-inner-padding-x: clamp(1rem, 3vw, 2.5rem);
	--bvl-diff-band-bg: #e5bf9a;
	--bvl-diff-wave-h: clamp(4rem, 9vw, 7rem);
	--bvl-ink: #0a0a0a;
	--bvl-ink-soft: #1a1a1a;
	--bvl-paper: #ffffff;
	--bvl-paper-warm: #f6f4ef;
	--bvl-line: rgba(10, 10, 10, 0.12);
	--bvl-line-on-dark: rgba(255, 255, 255, 0.18);
	--bvl-muted: rgba(10, 10, 10, 0.55);
	--bvl-muted-on-dark: rgba(255, 255, 255, 0.55);
	--bvl-lp-max: 1280px;
	--bvl-lp-gutter: clamp(24px, 5vw, 80px);
	--bvl-lp-section-pad: clamp(120px, 18vh, 220px);
	--bvl-font-sans: "Noto Sans JP", system-ui, -apple-system, sans-serif;
	--bvl-font-serif: "Noto Serif JP", "Noto Sans JP", serif;
	--bvl-font-en: "Inter", "Noto Sans JP", sans-serif;
	--bvl-font-en-serif: "Cormorant Garamond", "Noto Serif JP", serif;
	--bvl-reveal-duration: 1.2s;
	--bvl-reveal-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--bvl-reveal-stagger: 0.14s;
	/* ビューポート進入後、ここで指定した時間だけ待ってからフェード開始 */
	--bvl-reveal-entry-delay: 0.5s;
	/* チャレンジ／フロー共通 — 3枚のフェード速度・間隔（.bvl-challenges__cards と .bvl-flow__steps で共有） */
	--bvl-challenges-reveal-total-min: 3s;
	--bvl-challenges-stagger: 0.22s;
	--bvl-challenges-reveal-duration: max(
		3.5s,
		calc(
			var(--bvl-challenges-reveal-total-min) - var(--bvl-reveal-entry-delay) -
				(2 * var(--bvl-challenges-stagger))
		)
	);
}

.home #wrapper,
.page #wrapper,
.archive #wrapper,
.single-case #wrapper {
	background: var(--bvl-white);
}

.home #content,
.page #content,
.archive #content,
.single-case #content {
	max-width: none;
	width: 100%;
	padding: 0;
	margin: 0;
}

.bvl-front {
	font-family: var(--bvl-font-gothic);
	color: var(--bvl-text);
	background: var(--bvl-white);
}

.bvl-front a {
	color: inherit;
}

.bvl-front a:hover,
.bvl-front a:focus {
	text-decoration: underline;
}

.bvl-front .bvl-case__link:hover,
.bvl-front .bvl-case__link:focus,
.bvl-front .bvl-case__link:focus-visible {
	text-decoration: none;
}

/* PC のみ <br> を有効（768px 未満では改行しない） */
@media (max-width: 767px) {
	br.bvl-br--pc-only {
		display: none;
	}
}

/* スマホのみ <br> を有効（768px 以上では改行しない） */
br.bvl-br--sp-only {
	display: none;
}

@media (max-width: 767px) {
	br.bvl-br--sp-only {
		display: inline;
	}
}

/* タブレットのみ <br> を有効（PC/スマホは改行しない） */
br.bvl-br--tab-only {
	display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
	br.bvl-br--tab-only {
		display: inline;
	}
}

/* スクロール連動 — カードのフェードアップ（表示時に .is-revealed を付与: bvl-reveal.js） */
.bvl-reveal:not(.is-revealed) {
	opacity: 0;
	transform: translate3d(0, 1.25rem, 0);
}

.bvl-reveal.is-revealed {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition:
		opacity var(--bvl-reveal-duration) var(--bvl-reveal-ease) var(--bvl-reveal-entry-delay),
		transform var(--bvl-reveal-duration) var(--bvl-reveal-ease) var(--bvl-reveal-entry-delay);
}

@media (prefers-reduced-motion: reduce) {
	.bvl-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.bvl-challenges__cards > .bvl-card-pillar.bvl-reveal.is-revealed {
		animation: none;
	}
}

/* Header — 全ページ共通（LP: 固定・差分ブレンド・英字トーン） */
.bvl-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	border-bottom: none;
	mix-blend-mode: difference;
	color: #fff;
}

.bvl-header a {
	color: inherit;
}

.bvl-header a:focus-visible {
	outline: 2px solid var(--bvl-white);
	outline-offset: 3px;
}

/* ヘッダー／フッターで共通インナー（max-width・横パディングは .bvl-header__inner と同一） */
.bvl-header__inner,
.bvl-footer__inner {
	max-width: 1920px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 10rem);
	box-sizing: border-box;
	width: 100%;
}

.bvl-header__inner {
	min-height: auto;
	padding-block: clamp(1.25rem, 3vw, 1.75rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.bvl-header__brand {
	font-family: var(--bvl-font-en);
	font-weight: 500;
	font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
	letter-spacing: 0.2em;
}

/* style.css の h1 見出し色より優先（サイトタイトル） */
.bvl-header .bvl-header__brand > h1,
.bvl-header .bvl-header__title {
	color: inherit;
}

.bvl-header__brand a {
	text-decoration: none;
}

.bvl-header__brand a:hover,
.bvl-header__brand a:focus {
	text-decoration: none;
}

.bvl-header__meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left: auto;
	gap: clamp(1rem, 4vw, 3rem);
	font-family: var(--bvl-font-en);
	font-size: clamp(0.65rem, 1.1vw, 0.75rem);
	letter-spacing: 0.12em;
	flex-wrap: wrap;
}

.bvl-header__company {
	font-family: var(--bvl-font-sans);
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0.12em;
}

.bvl-header__company:hover,
.bvl-header__company:focus-visible {
	text-decoration: underline;
}

.bvl-header__reach {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: clamp(0.75rem, 2.5vw, 1.75rem);
}

.bvl-header__contact {
	font-family: var(--bvl-font-en, "Inter", "Noto Sans JP", sans-serif);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}

.bvl-header__contact:hover,
.bvl-header__contact:focus-visible {
	text-decoration: underline;
}

.bvl-header__tel {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	text-decoration: none;
	white-space: nowrap;
}

.bvl-header__tel-icon {
	font-size: 1.15em;
	line-height: 1;
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.bvl-header__tel:hover .bvl-header__tel-num,
.bvl-header__tel:focus .bvl-header__tel-num {
	text-decoration: underline;
}

.bvl-header__tel-num {
	font-weight: 400;
}

@media (max-width: 767px) {
	.bvl-header__title {
		font-size: 1.8em;
	}

	.bvl-header__meta {
		flex-basis: auto;
		width: 100%;
		justify-content: space-between;
	}

	.bvl-header__reach {
		margin-left: auto;
	}
}

/* 固定ヘッダー分（トップはヒーロー全幅のため余白なし） */
body.home #container {
	padding-top: 0;
}

body:not(.home) #container {
	padding-top: clamp(4rem, 11vw, 6.25rem);
}

.bvl-header .custom-logo-link {
	display: inline-block;
	line-height: 0;
}

.bvl-header .custom-logo-link img {
	display: block;
	height: auto;
	max-height: 52px;
	width: auto;
	border-radius: calc(var(--bvl-radius) * 0.5);
}

/* Hero */
.bvl-hero {
	max-width: 1980px;
	margin: 0 auto;
	padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.5rem) clamp(1rem, 1.5vw, 1.5rem);
}

.bvl-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	border: 1px solid transparent;
	border-radius: var(--bvl-radius);
	overflow: hidden;
}

@media (min-width: 900px) {
	.bvl-hero__grid {
		grid-template-columns: minmax(0, 50fr) minmax(0, 50fr);
		/* 右カラム（リード）を画像と同じ高さに伸ばし、内部は .bvl-hero__lead の flex で垂直中央に */
		align-items: stretch;
	}

	/* PC: 左＝リード / 右＝画像 に入れ替え（SP はDOM順で画像が上） */
	.bvl-hero__lead {
		grid-column: 1;
		grid-row: 1;
	}

	.bvl-hero__visual {
		grid-column: 2;
		grid-row: 1;
	}
}

.bvl-hero__visual img {
	width: 100%;
	height: auto;
	display: block;
}

.bvl-hero__lead {
	font-size: 2.25em;
	font-weight: 900;
	font-family: "リュウミン B-KL", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho Pro", "MS PMincho", serif;
	letter-spacing: 0.08em;
	padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.25rem, 3vw, 3rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5rem;
	text-align: left;
}

@media (min-width: 768px) {
	.bvl-hero__lead {
		font-size: 2em;
		text-align: center;
	}
}

.bvl-hero__lead p {
	line-height: 2;
	white-space: pre-line;
	font-weight: bold;
}

/* リード内の強調 — 左→右にハイライトが伸びる（単色を gradient で塗り、background-size をアニメ） */
@keyframes bvl-hero-highlight-grow {
	from {
		background-size: 0% 100%;
	}
	to {
		background-size: 100% 100%;
	}
}

.bvl-hero__lead span {
	--bvl-hero-highlight: rgba(246, 139, 105, 0.64);
	display: inline;
	padding: 0.12em 0.35em;
	border-radius: 0.2em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	background-image: linear-gradient(to right, var(--bvl-hero-highlight), var(--bvl-hero-highlight));
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 0% 100%;
	animation: bvl-hero-highlight-grow 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bvl-hero__lead p:last-child span {
	animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
	.bvl-hero__lead span {
		animation: none;
		background-size: 100% 100%;
	}
}

/* ヒーロー CTA — 白背景は画面幅いっぱい */
.bvl-hero-cta-band {
	--bvl-hero-cta-band-padding-top: calc((40px + clamp(0.75rem, 1.5vw, 1.25rem)) * 1.5);
	position: relative;
	width: 100%;
	background: #fff;
	box-sizing: border-box;
	padding: var(--bvl-hero-cta-band-padding-top) 0
		calc((40px + clamp(1.25rem, 2vw, 2rem)) * 1.5);
}

/* スマホ: 上方向の余白（既定は padding-top）を 75% に */
@media (max-width: 767px) {
	.bvl-hero-cta-band {
		padding-top: calc(var(--bvl-hero-cta-band-padding-top) * 0.25);
	}
}

.bvl-hero-cta {
	max-width: var(--bvl-hero-inner);
	margin: 0 auto;
	padding: 0 clamp(1rem, 3vw, 2.5rem);
	box-sizing: border-box;
}

.bvl-hero__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.25rem clamp(1rem, 2vw, 2.5rem);
	margin-top: 0;
}

/* 2つの CTA を並べるときは等幅（404 など単一ボタンは従来の flex のまま） */
.bvl-hero__actions:has(> .bvl-btn + .bvl-btn),
.bvl-diff__cta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 1.25rem clamp(1rem, 2vw, 2.5rem);
	width: 100%;
	max-width: min(100%, 42rem);
	margin-inline: auto;
	box-sizing: border-box;
}

.bvl-hero__actions:has(> .bvl-btn + .bvl-btn) .bvl-btn,
.bvl-diff__cta .bvl-btn {
	width: 100%;
	min-width: 0;
	max-width: none;
}

@media (max-width: 600px) {
	.bvl-hero__actions:has(> .bvl-btn + .bvl-btn),
	.bvl-diff__cta {
		grid-template-columns: 1fr;
		max-width: min(100%, 26rem);
	}
}

.bvl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	max-width: 100%;
	height: 60px;
	padding: 0 1.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	background: var(--bvl-white);
	border: 2px solid var(--bvl-black);
	border-radius: 999px;
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
	text-decoration: none;
	transition:
		background 0.15s ease,
		color 0.15s ease,
		border-color 0.15s ease,
		box-shadow 0.15s ease,
		transform 0.15s ease;
}

.bvl-btn:hover,
.bvl-btn:focus {
	background: var(--bvl-black);
	color: var(--bvl-white);
	text-decoration: none;
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

/* .bvl-front a より詳細度を上げる（a + クラス1 より クラス2） */
.bvl-btn.bvl-btn--primary {
	background: #571821;
	color: #fff;
	border-color: rgba(248, 236, 197, 0.45);
}

.bvl-btn.bvl-btn--primary:hover,
.bvl-btn.bvl-btn--primary:focus {
	background: #7a2d3d;
	color: var(--bvl-white);
	border-color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

.bvl-btn.bvl-btn--inquiry {
	background: #f05a22;
	color: #fff;
	border-color: rgba(0, 0, 0, 0.12);
}

.bvl-btn.bvl-btn--inquiry:hover,
.bvl-btn.bvl-btn--inquiry:focus {
	background: #d94a17;
	color: #fff;
	border-color: rgba(0, 0, 0, 0.2);
	text-decoration: none;
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

.bvl-btn.bvl-btn--request {
	background: #f05a22;
	color: #fff;
	border-color: rgba(0, 0, 0, 0.12);
}

.bvl-btn.bvl-btn--request:hover,
.bvl-btn.bvl-btn--request:focus {
	background: #d94a17;
	color: #fff;
	border-color: rgba(0, 0, 0, 0.2);
	text-decoration: none;
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
	.bvl-btn:hover,
	.bvl-btn:focus,
	.bvl-btn.bvl-btn--primary:hover,
	.bvl-btn.bvl-btn--primary:focus,
	.bvl-btn.bvl-btn--inquiry:hover,
	.bvl-btn.bvl-btn--inquiry:focus,
	.bvl-diff__cta .bvl-btn.bvl-btn--inquiry:hover,
	.bvl-diff__cta .bvl-btn.bvl-btn--inquiry:focus {
		transform: none;
		box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
	}
}

/* 全ページ — 右下固定の無料相談 CTA（インナー幅・横パディングをヘッダーと揃える） */
.bvl-floating-cta__track {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	width: min(100vw, 1920px);
	max-width: 1920px;
	box-sizing: border-box;
	padding-inline: clamp(1rem, 4vw, 10rem);
	bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
	z-index: 100;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	pointer-events: none;
}

a.bvl-floating-cta.bvl-btn {
	position: relative;
	right: auto;
	bottom: auto;
	box-sizing: border-box;
	font-weight: normal;
	font-size: clamp(0.875rem, 2.4vw, 1rem);
	letter-spacing: 0.04em;
	min-height: 2.75rem;
	height: auto;
	padding: 0.45rem 1rem;
	min-width: min(9.5rem, calc(100% - 1rem));
	max-width: min(100%, 18rem);
	flex-shrink: 0;
	box-shadow:
		3px 3px 0 rgba(0, 0, 0, 0.12),
		0 0.25rem 0.85rem rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.45s var(--bvl-reveal-ease, cubic-bezier(0.22, 1, 0.36, 1)),
		visibility 0.45s linear;
}

a.bvl-floating-cta.bvl-btn.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
	a.bvl-floating-cta.bvl-btn {
		transition-duration: 0.01s;
	}
}

@media print {
	.bvl-floating-cta__track {
		display: none !important;
	}
}

.bvl-rule {
	height: 3px;
	background: var(--bvl-black);
	border: 0;
	border-radius: 999px;
	margin: 0;
}

/* Sections common */
.bvl-inner:is(
	.bvl-inner--page,
	.bvl-inner--archive,
	.bvl-inner--lead,
	.bvl-inner--challenges,
	.bvl-inner--support,
	.bvl-inner--diff,
	.bvl-inner--flow,
	.bvl-inner--cases,
	.bvl-inner--faq,
	.bvl-inner--company
) {
	position: relative;
	max-width: var(--bvl-inner);
	margin: 0 auto;
	padding: var(--bvl-inner-padding-y) var(--bvl-inner-padding-x);
}

.bvl-inner.bvl-inner--cases {
	padding-top: 0;
}

.bvl-inner.bvl-inner--archive {
	padding-top: calc(var(--bvl-inner-padding-y) * 0.5);
}

/* 768px 未満: clamp 由来の縦余白が小さくなるため、PC 上限（9rem）に揃える */
@media (max-width: 767px) {
	.bvl-inner:is(
		.bvl-inner--page,
		.bvl-inner--archive,
		.bvl-inner--lead,
		.bvl-inner--challenges,
		.bvl-inner--support,
		.bvl-inner--diff,
		.bvl-inner--flow,
		.bvl-inner--cases,
		.bvl-inner--faq,
		.bvl-inner--company
	) {
		padding-top: 9rem;
		padding-bottom: 9rem;
	}

	.bvl-inner.bvl-inner--cases {
		padding-top: 0;
	}

	.bvl-inner.bvl-inner--archive {
		padding-top: calc(9rem * 0.5);
	}

	.bvl-front .bvl-support-band:has(+ .bvl-diff-band) .bvl-inner--support {
		padding-bottom: 9rem;
	}

	.bvl-front .bvl-inner.bvl-inner--flow {
		padding-top: 9rem;
	}
}

/* Top lead */
.bvl-lead {
	background: #fff !important;
}

.bvl-lead .bvl-inner--lead {
	padding-top: calc(var(--bvl-inner-padding-y) * 0.75);
	padding-bottom: calc(var(--bvl-inner-padding-y) * 0.75);
}

.bvl-lead__text {
	margin: 0 auto 2em auto;
	max-width: 60rem;
	text-align: center;
	line-height: 1.8;
	font-size: 1.8em;
	letter-spacing: 0.08em;
}

.bvl-lead__text:last-child {
	margin-bottom: 0;
}

.bvl-lead__text span {
	font-weight: 700;
}

/* リード — 各 p をビューポート進入時にフェードアップ（bvl-reveal.js）。2段落目はスタッガー */
.bvl-inner--lead > .bvl-lead__text.bvl-reveal.is-revealed:nth-child(2) {
	transition:
		opacity var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 1),
		transform var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 1);
}

/* セクション間の縦ライン（疑似要素）を撤去 */

.bvl-section-title {
	margin: 0 auto 4rem;
	padding: 0;
	max-width: none;
	background: none;
	border: 0;
	min-height: 0;
	display: block;
	text-align: center;
	font-size: 2.5em;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: underline;
	text-decoration-thickness: 0.06em;
	text-underline-offset: 0.12em;
	text-decoration-skip-ink: auto;
}

.bvl-section-title::after {
	content: none;
	display: none;
}

@media (max-width: 767px) {
	.bvl-section-title {
		font-size: 2em;
	}
}

.bvl-section-title .bvl-section-title__mark {
	display: inline;
	background: #e0c089;
	padding: 0.12em 0.4em;
	border-radius: 0.2em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.bvl-section-title .bvl-section-title__mark--white {
	background: var(--bvl-white);
}

@media (min-width: 768px) {
	.bvl-section-title .bvl-section-title__mark,
	.bvl-section-title .bvl-section-title__mark--white {
		margin-left: 0.5rem;
	}
}

/* Challenges — 入場は animation（ホバーの transform は transition 0.2s と分離） */
@keyframes bvl-challenges-card-reveal {
	from {
		opacity: 0;
		transform: translate3d(0, 1.25rem, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* Challenges — reveal の長さ・スタッガーは :root の --bvl-challenges-* と同期 */
.bvl-challenges__cards {
	--bvl-reveal-stagger: var(--bvl-challenges-stagger);
	--bvl-reveal-duration: var(--bvl-challenges-reveal-duration);
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.bvl-challenges__cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem;
	}
}

.bvl-card-pillar {
	border: 2px solid var(--bvl-black);
	background: var(--bvl-white);
	border-radius: var(--bvl-card-pop-radius);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.bvl-card-pillar.bvl-reveal:not(.is-revealed) {
	transition: none;
}

.bvl-challenges__cards > .bvl-card-pillar.bvl-reveal.is-revealed {
	animation: bvl-challenges-card-reveal var(--bvl-challenges-reveal-duration) var(--bvl-reveal-ease)
		var(--bvl-reveal-entry-delay) both;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bvl-challenges__cards > .bvl-card-pillar.bvl-reveal.is-revealed:nth-child(2) {
	animation-delay: calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 1);
}

.bvl-challenges__cards > .bvl-card-pillar.bvl-reveal.is-revealed:nth-child(3) {
	animation-delay: calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 2);
}

.bvl-card-pillar__img {
	background: var(--bvl-gray);
}

.bvl-card-pillar__img img {
	width: 100%;
	height: auto;
	display: block;
}

.bvl-card-pillar__body {
	padding: 1.5rem 1rem 2rem;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bvl-card-pillar__body p {
	color: var(--bvl-heading);
	font-weight: 700;
	font-size: 1.25em;
	line-height: 1.4;
	white-space: pre-line;
}

/* Full-bleed band（section 最外殻 + 内側 .bvl-inner） */
.bvl-front .bvl-section {
	background: #f2f2f2;
}

.bvl-support-band,
.bvl-faq-band {
	width: 100%;
	background: #f2f2f2;
	box-sizing: border-box;
}

.bvl-support-band {
	position: relative;
}

/* .bvl-section の margin-bottom が帯の外に乗り背景が割れて見えるのを防ぐ */
.bvl-section.bvl-support-band,
.bvl-section.bvl-faq-band {
	margin-bottom: 0;
}

/* 支援の特徴 — full-bleed（上下境界は SVG 波） */
.bvl-diff-band {
	position: relative;
	z-index: 0;
	width: 100%;
	background: #f2f2f2;
	box-sizing: border-box;
}

.bvl-section.bvl-diff-band {
	margin-bottom: 0;
}

/* bvl-diff の上下 wave を撤去（余白は通常のセクション余白に戻す） */
.bvl-front .bvl-support-band:has(+ .bvl-diff-band) .bvl-inner--support {
	padding-bottom: var(--bvl-inner-padding-y);
}

.bvl-front .bvl-section.bvl-flow {
	position: relative;
	z-index: 0;
	margin-top: 0;
}

.bvl-front .bvl-section.bvl-flow::before {
	content: none;
	display: none;
}

.bvl-diff-band::before {
	content: none;
	display: none;
}

.bvl-front .bvl-inner.bvl-inner--flow {
	position: relative;
	z-index: 1;
	padding-top: var(--bvl-inner-padding-y);
}

/* Support rows */
.bvl-support__row {
	display: grid;
	grid-template-columns: 1fr;
	border: 2px solid var(--bvl-black);
	background: var(--bvl-white);
	border-radius: var(--bvl-card-pop-radius);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
	overflow: hidden;
	margin-bottom: 1.5rem;
	min-height: 250px;
}

.bvl-inner--support > .bvl-support__row.bvl-reveal.is-revealed:nth-child(3) {
	transition:
		opacity var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 1),
		transform var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 1);
}

.bvl-inner--support > .bvl-support__row.bvl-reveal.is-revealed:nth-child(4) {
	transition:
		opacity var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 2),
		transform var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 2);
}

.bvl-inner--support > .bvl-support__row.bvl-reveal.is-revealed:nth-child(5) {
	transition:
		opacity var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 3),
		transform var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 3);
}

@media (min-width: 768px) {
	.bvl-support__row {
		grid-template-columns: 320px 1fr;
	}
}

.bvl-support__row-img {
	background: var(--bvl-gray);
	margin: 1.5rem auto;
	width: min(320px, 100%);
}

.bvl-support__row-img img {
	width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 768px) {
	.bvl-support__row-img {
		margin: 2rem 1.5rem;
		align-self: start;
		width: 100%;
		max-width: 320px;
	}
}

.bvl-support__row-text {
	padding: 1.5rem 1.25rem 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
}

.bvl-support__row-text h3 {
	position: relative;
	display: inline-block;
	align-self: center;
	margin: 0 0 2rem;
	padding-bottom: 0.7rem;
	font-size: 1.75rem;
	line-height: 1.5;
	font-weight: 700;
	color: var(--bvl-heading);
	letter-spacing: 0.02em;
}

.bvl-support__row-text h3::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 3rem;
	height: 3px;
	background: currentColor;
	border-radius: 999px;
}

.bvl-support__row-text p {
	font-size: 1.25rem;
	line-height: 1.8;
	white-space: pre-line;
	max-width: 36em;
	margin: 0;
	align-self: flex-start;
	text-align: left;
}

/* PC: 本文は中央寄せ（スマホは左寄せのまま） */
@media (min-width: 768px) {
	.bvl-support__row-text p {
		align-self: center !important;
		text-align: center !important;
		margin-inline: auto;
	}
}

/* Differentiators */
.bvl-diff__intro {
	text-align: center;
	margin-bottom: 2rem;
}

.bvl-diff__intro h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.bvl-diff__intro p {
	font-size: 1.25rem;
	line-height: 1.5;
	margin: 0;
	text-align: center;
}

@media (max-width: 1024px) {
	.bvl-diff__intro p {
		text-align: left;
	}
}

.bvl-members {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.bvl-members {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.bvl-member {
	border: 2px solid var(--bvl-black);
	background: var(--bvl-white);
	border-radius: var(--bvl-card-pop-radius);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.bvl-member__img {
	aspect-ratio: 240 / 180;
	background: var(--bvl-gray);
}

.bvl-member__body {
	padding: 1rem 0.75rem 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-align: center;
}

.bvl-member__role {
	font-size: 1rem;
	line-height: 1.35;
	margin: 0;
}

.bvl-member__name {
	font-size: 1.5em;
	margin-top: auto;
}

@media (max-width: 767px) {
	.bvl-member__name {
		font-size: 1.2em;
	}
}

/* Shien cards (3 pillars under members) */
.bvl-shien {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: 5rem;
}

@media (min-width: 768px) {
	.bvl-shien {
		grid-template-columns: repeat(3, 1fr);
	}
}

.bvl-shien__card {
	border: 2px solid var(--bvl-black);
	background: var(--bvl-white);
	border-radius: var(--bvl-card-pop-radius);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	padding: 2.5rem 1.5rem 2rem;
	text-align: center;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 0;
}

.bvl-shien__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	background-color: #fce8e1;
	color: #f68b69;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(246, 139, 105, 0.15);
}

.bvl-shien__icon .material-symbols-outlined {
	font-size: 32px;
	font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 48;
}

.bvl-shien__card h4 {
	position: relative;
	margin: 0 0 1.25rem;
	padding-bottom: 0.75rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: pre-line;
	min-height: 0;
	display: block;
	text-align: center;
	width: 100%;
}

.bvl-shien__card h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 3px;
	background-color: var(--bvl-ink);
	border-radius: 2px;
}

.bvl-shien__card p {
	color: #444;
	font-size: 1rem;
	line-height: 1.6;
	white-space: pre-line;
	margin: 0;
	width: 100%;
	max-width: 100%;
}

.bvl-card-pillar:not(.bvl-reveal):hover,
.bvl-member:hover,
.bvl-shien__card:hover,
.bvl-card-pillar.bvl-reveal.is-revealed:hover {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

.bvl-card-pillar.bvl-reveal:not(.is-revealed):hover {
	transform: translate3d(0, 1.25rem, 0);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
	.bvl-card-pillar:not(.bvl-reveal):hover,
	.bvl-member:hover,
	.bvl-shien__card:hover,
	.bvl-card-pillar.bvl-reveal.is-revealed:hover {
		transform: none;
		box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
	}

	.bvl-card-pillar.bvl-reveal:not(.is-revealed):hover {
		transform: none;
	}
}


/* Flow — 3ステップの reveal はチャレンジ3枚と同じ --bvl-challenges-* */
.bvl-flow__steps {
	--bvl-reveal-stagger: var(--bvl-challenges-stagger);
	--bvl-reveal-duration: var(--bvl-challenges-reveal-duration);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	overflow: visible;
}

.bvl-flow__step {
	position: relative;
	overflow: visible;
	border: 2px solid var(--bvl-black);
	background: var(--bvl-white);
	border-radius: var(--bvl-card-pop-radius);
	box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
	padding: 3.5rem 1.25rem 2rem;
	text-align: center;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	gap: 1rem;
}

/* カード上辺中央からはみ出すステップ番号 */
.bvl-flow__badge {
	position: absolute;
	top: -1.25rem;
	left: 50%;
	z-index: 2;
	transform: translateX(-50%);
	box-sizing: border-box;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid var(--bvl-black);
	background: var(--bvl-black);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

/* ステップ見出し（※マークアップは h3）：3列で同じ高さ・縦中央 */
.bvl-flow__step h3 {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	min-height: calc(3 * 1.3em);
	display: grid;
	place-content: center;
	text-align: center;
}

.bvl-flow__step p {
	font-size: 1em;
	line-height: 1.6;
	white-space: pre-line;
	max-width: 40rem;
	margin: 0 auto;
}

/* フロー — スクロールでフェードアップ（子は step → arrow → step → arrow → step の順に stagger） */
.bvl-flow__step.bvl-reveal:not(.is-revealed),
.bvl-flow__arrow.bvl-reveal:not(.is-revealed) {
	transition: none;
}

.bvl-flow__step.bvl-reveal.is-revealed {
	transition:
		opacity var(--bvl-reveal-duration) var(--bvl-reveal-ease) var(--bvl-reveal-entry-delay),
		transform var(--bvl-reveal-duration) var(--bvl-reveal-ease) var(--bvl-reveal-entry-delay);
}

.bvl-flow__steps > .bvl-flow__arrow.bvl-reveal.is-revealed:nth-child(2) {
	transition:
		opacity var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 1),
		transform var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 1);
}

.bvl-flow__steps > .bvl-flow__step.bvl-reveal.is-revealed:nth-child(3) {
	transition:
		opacity var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 2),
		transform var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 2);
}

.bvl-flow__steps > .bvl-flow__arrow.bvl-reveal.is-revealed:nth-child(4) {
	transition:
		opacity var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 3),
		transform var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 3);
}

.bvl-flow__steps > .bvl-flow__step.bvl-reveal.is-revealed:nth-child(5) {
	transition:
		opacity var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 4),
		transform var(--bvl-reveal-duration) var(--bvl-reveal-ease)
			calc(var(--bvl-reveal-entry-delay) + var(--bvl-reveal-stagger) * 4);
}

.bvl-flow__arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 0.35rem 0;
	margin: 2rem 0;
	color: var(--bvl-heading, #3f180c);
}

/* Material Symbols（フロー矢印 — スマホは keyboard_arrow_down、900px 以上は keyboard_arrow_right） */
.bvl-flow__arrow .material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
	font-size: 2.5rem;
	width: 1em;
	height: 1em;
	display: block;
	overflow: hidden;
	transform-origin: center;
}

/* .bvl-flow__arrow .material-symbols-outlined より詳細度を上げないと display が効かない */
.bvl-flow__arrow .material-symbols-outlined.bvl-flow__arrow-icon--pc {
	display: none;
}

@media (min-width: 768px) {
	.bvl-flow__steps {
		flex-direction: row;
		align-items: stretch;
		gap: 0.5rem;
	}

	.bvl-flow__step {
		flex: 1;
		min-width: 0;
		min-height: 0;
	}

	/* 3列時も見出し行の高さを揃える（最も行数が多い見出しに合わせて伸びる） */
	@supports (grid-template-rows: subgrid) {
		.bvl-flow__steps {
			display: grid;
			grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
			grid-template-rows: auto 1fr;
			gap: 0.5rem;
			align-items: stretch;
		}

		.bvl-flow__steps > :nth-child(1) {
			grid-column: 1;
			grid-row: 1 / -1;
		}

		.bvl-flow__steps > :nth-child(2) {
			grid-column: 2;
			grid-row: 1 / -1;
			align-self: center;
		}

		.bvl-flow__steps > :nth-child(3) {
			grid-column: 3;
			grid-row: 1 / -1;
		}

		.bvl-flow__steps > :nth-child(4) {
			grid-column: 4;
			grid-row: 1 / -1;
			align-self: center;
		}

		.bvl-flow__steps > :nth-child(5) {
			grid-column: 5;
			grid-row: 1 / -1;
		}

		.bvl-flow__step {
			display: grid;
			grid-template-rows: subgrid;
			grid-row: 1 / -1;
			row-gap: 1rem;
		}

		.bvl-flow__step h3 {
			min-height: 0;
			align-self: stretch;
		}

		.bvl-flow__step p {
			align-self: stretch;
			flex: unset;
			max-width: none;
		}
	}

	.bvl-flow__step p {
		flex: 1;
		max-width: none;
	}

	.bvl-flow__arrow {
		align-self: center;
		padding: 0 0.15rem;
	}

	.bvl-flow__arrow .material-symbols-outlined.bvl-flow__arrow-icon--down {
		display: none;
	}

	.bvl-flow__arrow .material-symbols-outlined.bvl-flow__arrow-icon--pc {
		display: block;
	}
}

/* Cases */
.bvl-cases__desc {
	text-align: center;
	font-size: 1.125rem;
	line-height: 1.6;
	max-width: 40rem;
	margin: -0.5rem auto 2rem;
}

.bvl-cases__empty {
	text-align: center;
	font-size: 1.125rem;
	margin: 0;
}

.bvl-cases__more {
	text-align: center;
	margin: 2rem 0 0;
}

/* Cases slider (Splide, max 3 columns) — gutter via padding + overflow clips peeking slides */
.bvl-cases-splide {
	--bvl-cases-gutter: 3.75rem;
	--bvl-cases-arrow: 2.75rem;
	position: relative;
	padding: 0 var(--bvl-cases-gutter) 3rem;
	overflow: hidden;
	box-sizing: border-box;
}

@media (max-width: 1024px) {
	.bvl-cases-splide {
		--bvl-cases-gutter: 3.5rem;
	}
}

@media (max-width: 639px) {
	.bvl-cases-splide {
		--bvl-cases-gutter: 3rem;
		--bvl-cases-arrow: 2.25rem;
	}
}

.bvl-cases-splide .splide__track {
	overflow: hidden;
}

.bvl-cases-splide .splide__list {
	align-items: stretch;
}

.bvl-cases-splide .splide__slide {
	height: auto;
}

.bvl-cases-splide .splide__slide > .bvl-case {
	height: 100%;
}

.bvl-cases-splide .splide__arrow {
	background: var(--bvl-white);
	border: 1px solid var(--bvl-ink);
	border-radius: 50%;
	opacity: 1;
	width: var(--bvl-cases-arrow);
	height: var(--bvl-cases-arrow);
}

.bvl-cases-splide .splide__arrow--prev {
	left: calc((var(--bvl-cases-gutter) - var(--bvl-cases-arrow)) / 2);
}

.bvl-cases-splide .splide__arrow--next {
	right: calc((var(--bvl-cases-gutter) - var(--bvl-cases-arrow)) / 2);
}

.bvl-cases-splide .splide__arrow:hover:not(:disabled),
.bvl-cases-splide .splide__arrow:focus-visible:not(:disabled) {
	background: var(--bvl-black);
	border-color: var(--bvl-black);
}

.bvl-cases-splide .splide__arrow svg {
	fill: var(--bvl-ink);
}

.bvl-cases-splide .splide__arrow:hover:not(:disabled) svg,
.bvl-cases-splide .splide__arrow:focus-visible:not(:disabled) svg {
	fill: var(--bvl-white);
}

.bvl-cases-splide .splide__arrow:disabled {
	opacity: 0.35;
}

.bvl-cases-splide .splide__pagination,
.bvl-cases-splide .splide__pagination.splide__pagination--ltr {
	bottom: 0;
	gap: 0.5rem;
}

.bvl-cases-splide .splide__pagination__page {
	background: rgba(10, 10, 10, 0.08);
	border: 1px solid rgba(10, 10, 10, 0.2);
	border-radius: 50%;
	opacity: 1;
}

.bvl-cases-splide .splide__pagination__page:hover:not(.is-active),
.bvl-cases-splide .splide__pagination__page:focus-visible:not(.is-active) {
	background: rgba(10, 10, 10, 0.14);
	border-color: rgba(10, 10, 10, 0.35);
}

.bvl-cases-splide .splide__pagination__page.is-active {
	background: var(--bvl-ink);
	border-color: var(--bvl-ink);
	transform: scale(1.15);
}

.bvl-case {
	border: 1px solid transparent;
	background: var(--bvl-white);
	border-radius: var(--bvl-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding-bottom: 1rem;
	transition:
		box-shadow 0.32s ease,
		filter 0.32s ease;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
	filter: saturate(1);
}

.bvl-case:has(.bvl-case__link:hover),
.bvl-case:has(.bvl-case__link:focus-visible) {
	box-shadow:
		0 10px 36px rgba(0, 0, 0, 0.1),
		0 4px 12px rgba(0, 0, 0, 0.06);
	filter: saturate(1.04);
}

@media (prefers-reduced-motion: reduce) {
	.bvl-case {
		transition: none;
	}

	.bvl-case:has(.bvl-case__link:hover),
	.bvl-case:has(.bvl-case__link:focus-visible) {
		filter: none;
	}
}

.bvl-case__link {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	color: inherit;
	text-decoration: none;
}

.bvl-case__link:focus-visible {
	outline: 2px solid var(--bvl-black);
	outline-offset: 2px;
}

.bvl-case__img {
	background: var(--bvl-gray);
	flex-shrink: 0;
}

.bvl-case__img img,
.bvl-case__thumb {
	width: 100%;
	height: auto;
	display: block;
}

.bvl-case__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 8rem;
	padding: 1rem;
	font-size: 1rem;
	color: var(--bvl-text);
	opacity: 0.6;
}

.bvl-case__meta {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 0.75rem;
	padding: 1rem 1rem 0.5rem;
	justify-content: center;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.bvl-case__meta:empty {
	display: none;
	padding: 0;
	margin: 0;
}

/* トップ支援事例スライダー（カード下部メタ） */
.bvl-case__meta .bvl-case__tag {
	flex: 0 1 auto;
	min-width: 0;
	border: 1px solid var(--bvl-black);
	background: #222;
	border-radius: 0;
	padding: 0.25rem 0.75rem;
	font-size: 1em;
	font-weight: 400;
	text-align: center;
	color: var(--bvl-white);
}

.bvl-case__body {
	padding: 0.5rem 1rem 1rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.bvl-case__label {
	font-size: 1em;
	margin-bottom: 1em;
	line-height: 1.3;
}

.bvl-case__company {
	font-size: 1em;
}

/* FAQ */
.bvl-faq__item {
	margin-bottom: 1.5rem;
	border: 1px solid var(--bvl-black);
	background: var(--bvl-white);
	border-radius: var(--bvl-radius);
	overflow: hidden;
}

.bvl-faq__q {
	display: flex;
	align-items: flex-start;
	gap: 0.35em;
	padding: 0.85rem 2.5rem 0.85rem 1rem;
	text-align: left;
	font-size: clamp(1.125rem, 2vw, 1.75rem);
	cursor: pointer;
	list-style: none;
	position: relative;
	user-select: none;
}

.bvl-faq__q-label {
	flex-shrink: 0;
}

.bvl-faq__q-text {
	flex: 1;
	min-width: 0;
}

@media (max-width: 767px) {
	.bvl-faq__q-label,
	.bvl-faq__q-text {
		line-height: 1.5;
	}
}

/* PC: Q. と本文をインライン表示（質問全体は左揃え） */
@media (min-width: 768px) {
	.bvl-faq__q {
		display: block;
		text-align: left;
	}

	.bvl-faq__q-label,
	.bvl-faq__q-text {
		display: inline;
	}

	.bvl-faq__q-label {
		margin-right: 0.35em;
	}
}

.bvl-faq__q::-webkit-details-marker {
	display: none;
}

.bvl-faq__q::marker {
	content: '';
}

.bvl-faq__q:hover,
.bvl-faq__q:focus {
	outline: none;
}

.bvl-faq__q:focus-visible {
	box-shadow: inset 0 0 0 2px var(--bvl-black);
}

.bvl-faq__q::after {
	content: '';
	position: absolute;
	right: 1.1rem;
	top: 50%;
	width: 0.55rem;
	height: 0.55rem;
	margin-top: -0.35rem;
	border-right: 2px solid var(--bvl-black);
	border-bottom: 2px solid var(--bvl-black);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.bvl-faq__item[open] > .bvl-faq__q {
	border-bottom: 1px solid var(--bvl-black);
}

.bvl-faq__item[open] > .bvl-faq__q::after {
	margin-top: -0.2rem;
	transform: rotate(225deg);
}

.bvl-faq__a {
	padding: 1rem 1.25rem 1.25rem;
	font-size: clamp(1.125rem, 2vw, 1.75rem);
	line-height: 1.5;
	white-space: pre-line;
	margin: 0;
	text-align: left;
}

/* Company */
.bvl-company__table {
	width: 100%;
	max-width: 800px;
	margin: 0 auto 2rem;
	border-collapse: collapse;
	background: var(--bvl-white);
	border: 1px solid var(--bvl-black);
	font-size: 1.25rem;
}

.bvl-company__table th,
.bvl-company__table td {
	border: 1px solid var(--bvl-black);
	padding: 0.75rem 1rem;
	vertical-align: top;
}

.bvl-company__table th {
	width: 200px;
	font-weight: 700;
	color: var(--bvl-ink);
	text-align: center;
	background: var(--bvl-white);
}

@media (max-width: 600px) {
	.bvl-company__table th,
	.bvl-company__table td {
		display: block;
		width: 100%;
		text-align: left;
	}

	.bvl-company__table th {
		border-bottom: 0;
		padding-bottom: 0.25rem;
	}

	.bvl-company__table td {
		border-top: 0;
		padding-top: 0.25rem;
	}
}

/* Static pages (page.php) */
.bvl-page-header {
	text-align: center;
}

.bvl-page-title {
	margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.bvl-page-edit {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	opacity: 0.85;
}

.bvl-page-edit a {
	text-decoration: underline;
}

.bvl-page-featured {
	margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
	max-width: 100%;
	border-radius: var(--bvl-radius);
	overflow: hidden;
	line-height: 0;
}

.bvl-page-featured__img {
	display: block;
	width: 100%;
	height: auto;
}

.bvl-page-content {
	font-size: clamp(1rem, 1.2vw, 1.0625rem);
	line-height: 1.85;
	text-align: left;
}

.bvl-page-content > *:first-child {
	margin-top: 0;
}

.bvl-page-content > * + * {
	margin-top: 1.25em;
}

.bvl-page-content :is(h2, h3, h4) {
	margin-top: 1.75em;
	margin-bottom: 0.65em;
	line-height: 1.35;
}

.bvl-page-content :is(ul, ol) {
	padding-left: 1.35em;
	list-style: revert;
}

.bvl-page-content li + li {
	margin-top: 0.35em;
}

.bvl-page-content blockquote {
	margin: 1.5em 0;
	padding: 0.75em 1.25em;
	border-left: 4px solid rgba(63, 24, 12, 0.35);
	background: rgba(255, 255, 255, 0.45);
	border-radius: 0 var(--bvl-radius) var(--bvl-radius) 0;
}

.bvl-page-content .alignwide {
	max-width: min(100%, var(--bvl-hero-inner));
	margin-left: auto;
	margin-right: auto;
}

.bvl-page-content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* WPForms: プラグインの body div.wpforms-container-full … より詳細度を上げて送信ボタン幅を固定 */
body .bvl-front .bvl-page-content div.wpforms-container-full .wpforms-submit-container,
body .bvl-front .bvl-page-content div.wpforms-container.wpforms-container-full .wpforms-submit-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 40px;
}

body .bvl-front .bvl-page-content div.wpforms-container-full .wpforms-submit-container button.wpforms-submit,
body .bvl-front .bvl-page-content div.wpforms-container-full .wpforms-submit-container button[type='submit'],
body .bvl-front .bvl-page-content div.wpforms-container.wpforms-container-full .wpforms-submit-container button.wpforms-submit,
body .bvl-front .bvl-page-content div.wpforms-container.wpforms-container-full .wpforms-submit-container button[type='submit'] {
	width: 21rem !important;
	max-width: 100% !important;
	box-sizing: border-box;
}

.bvl-page-article .comments-area {
	margin-top: clamp(2.5rem, 6vw, 4rem);
	padding-top: clamp(2rem, 5vw, 3rem);
	border-top: 1px solid rgba(63, 24, 12, 0.12);
}

/* Archives (archive.php — category / tag / author / date / CPT など) */
.bvl-archive-description {
	margin: -0.5rem auto 2.5rem;
	max-width: 42rem;
	text-align: left;
}

.bvl-archive-description:empty {
	display: none;
}

.bvl-archive-list {
	list-style: none;
	margin: 2rem 0 0;
	padding: 2rem;
	background: #fff;
	border: 1px solid rgba(63, 24, 12, 0.12);
	border-radius: var(--bvl-radius);
}

.bvl-archive-list > li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(63, 24, 12, 0.12);
}

.bvl-archive-list > li:last-child {
	border-bottom: none;
}

.bvl-archive-item__link {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 1rem 1.25rem;
	padding: clamp(1rem, 2.2vw, 1.35rem) 0;
	color: inherit;
	text-decoration: none;
	min-width: 0;
}

.bvl-archive-item__link:hover .bvl-archive-item__title,
.bvl-archive-item__link:focus-visible .bvl-archive-item__title {
	text-decoration: underline;
}

.bvl-archive-item__link:focus-visible {
	outline: 2px solid var(--bvl-black);
	outline-offset: 4px;
}

.bvl-archive-item__thumb {
	position: relative;
	flex: 0 0 auto;
	width: 8rem;
	aspect-ratio: 4 / 3;
	line-height: 0;
	border-radius: 0.35rem;
	overflow: hidden;
	background: var(--bvl-gray);
}

.bvl-archive-item__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bvl-archive-item__body {
	flex: 1;
	min-width: 0;
}

.bvl-archive-item__title {
	font-size: clamp(1.0625rem, 2.2vw, 1.15rem);
	font-weight: 700;
	margin: 0 0 0.35rem;
	line-height: 1.4;
	color: var(--bvl-heading);
}

.bvl-archive-item__excerpt {
	font-size: 0.9375rem;
	line-height: 1.65;
	margin: 0 0 0.4rem;
	color: var(--bvl-text);
}

.bvl-archive-item__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--bvl-text);
	opacity: 0.88;
}

.bvl-archive-item--case .bvl-archive-item__meta {
	opacity: 1;
}

.bvl-archive-item__company {
	font-weight: 500;
}

.bvl-archive-item__sep {
	opacity: 0.45;
	user-select: none;
}

.bvl-archive-item__tags {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0.35rem;
}

.bvl-archive-item__tag {
	display: inline-block;
}

.bvl-archive-item__date {
	opacity: 0.8;
}

@media (max-width: 480px) {
	.bvl-archive-item__link {
		flex-direction: column;
		align-items: stretch;
	}

	.bvl-archive-item__thumb {
		width: 100%;
		max-width: 8rem;
	}
}

.bvl-archive-empty {
	text-align: center;
	font-size: 1.125rem;
	margin: 2rem 0 0;
}

.bvl-archive-nav {
	margin-top: clamp(2rem, 5vw, 3rem);
	padding-top: clamp(1.5rem, 4vw, 2.25rem);
	border-top: 1px solid rgba(63, 24, 12, 0.12);
}

.bvl-front .bvl-archive-nav .navigation.posts-navigation,
.bvl-front .bvl-archive-nav .navigation.pagination {
	margin: 0;
}

.bvl-front .bvl-archive-nav .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.bvl-front .bvl-archive-nav .posts-navigation .nav-links {
	justify-content: space-between;
}

.bvl-front .bvl-archive-nav .nav-links a {
	text-decoration: none;
}

/* アーカイブ：数字＋矢印のページネーション */
/* ul にも .page-numbers が付くため、円の寸法は a/span のみに限定（ul を 3rem 固定にしない） */
.bvl-front .bvl-archive-nav ul.page-numbers {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	width: auto;
	max-width: 100%;
	min-height: 0;
	border: none;
	background: none;
}

.bvl-front .bvl-archive-nav ul.page-numbers li {
	margin: 0;
	padding: 0;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.bvl-front .bvl-archive-nav a.page-numbers,
.bvl-front .bvl-archive-nav span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	min-width: 3rem;
	min-height: 3rem;
	padding: 0;
	box-sizing: border-box;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	color: var(--bvl-heading);
	background: var(--bvl-white);
	border: 1px solid rgba(0, 0, 0, 0.18);
	border-radius: 50%;
	text-decoration: none;
	transition:
		background 0.15s ease,
		color 0.15s ease,
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}

.bvl-front .bvl-archive-nav a.page-numbers:hover,
.bvl-front .bvl-archive-nav a.page-numbers:focus-visible {
	background: #222;
	color: var(--bvl-white);
	border-color: var(--bvl-black);
	box-shadow: 0 1px 3px rgba(39, 15, 8, 0.08);
	text-decoration: none;
}

.bvl-front .bvl-archive-nav span.page-numbers.current {
	background: #222;
	color: var(--bvl-white);
	border-color: var(--bvl-black);
	cursor: default;
}

.bvl-front .bvl-archive-nav span.page-numbers.dots {
	width: auto;
	height: auto;
	min-width: auto;
	min-height: auto;
	padding: 0 0.25rem;
	border-radius: 0;
	background: transparent;
	border: none;
	color: var(--bvl-text);
	opacity: 0.55;
	font-weight: 400;
}

.bvl-front .bvl-archive-nav .bvl-archive-pagination__icon {
	font-size: 1.35rem;
	line-height: 1;
	font-variation-settings:
		'FILL' 0,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24;
}

/* 支援事例シングル (single-case.php) */
.bvl-case-hero__band {
	background: var(--bvl-footer);
	color: var(--bvl-white);
	padding: clamp(1.1rem, 2.8vw, 1.5rem) 0;
	text-align: center;
}

.bvl-case-hero__eyebrow {
	margin: 0;
	font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
	font-weight: 700;
	letter-spacing: 0.1em;
}

.bvl-case-hero__inner {
	padding-top: clamp(1.5rem, 4vw, 2.25rem);
	padding-bottom: clamp(1.75rem, 4.5vw, 2.75rem);
}

.bvl-breadcrumb {
	margin: 0 0 clamp(1.35rem, 3.2vw, 1.85rem);
	text-align: left;
}

@media (max-width: 767px) {
	.bvl-breadcrumb {
		margin-bottom: 2rem;
	}
}

.bvl-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	line-height: 1.5;
}

.bvl-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--bvl-text);
}

.bvl-breadcrumb__item:not(:last-child)::after {
	content: '/';
	opacity: 0.4;
	font-weight: 400;
	margin-left: 0.5rem;
	pointer-events: none;
}

.bvl-breadcrumb__item a {
	text-decoration: none;
}

.bvl-breadcrumb__item a:hover,
.bvl-breadcrumb__item a:focus-visible {
	text-decoration: underline;
}

.bvl-breadcrumb__item--current {
	font-weight: 600;
	color: var(--bvl-heading);
	max-width: 100%;
	min-width: 0;
}

.bvl-breadcrumb__current-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	word-break: break-word;
	font-weight: normal;
}

@media (min-width: 768px) {
	.bvl-breadcrumb__current-text {
		-webkit-line-clamp: 3;
		line-clamp: 3;
	}
}

.bvl-case-hero__title.bvl-section-title {
	margin: 0 auto clamp(1.15rem, 3vw, 1.65rem);
	max-width: 100%;
	font-size: clamp(1.35rem, 3.4vw, 1.95rem);
	line-height: 1.38;
	font-weight: 700;
	text-align: left;
}

.bvl-case-hero__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.85rem 1.5rem;
	margin: 0 auto;
	max-width: 36rem;
	padding: clamp(0.65rem, 1.5vw, 0.85rem) clamp(1rem, 2.5vw, 1.35rem);
}

.bvl-case-hero__meta-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.5rem;
	margin: 0;
}

.bvl-case-hero__meta-label {
	flex: 0 1 auto;
	min-width: 0;
	border: 1px solid var(--bvl-black);
	background: #222;
	border-radius: 0;
	padding: 0.25rem 0.75rem;
	font-size: 1em;
	font-weight: 400;
	text-align: center;
	color: var(--bvl-white);
}

/* 事例シングル：ヒーロー内の値（ラベルと重複しない見た目） */
.bvl-case-hero__meta .bvl-case__tag {
	flex: 0 1 auto;
	min-width: 0;
	border: none;
	background: transparent;
	border-radius: 0;
	padding: 0;
	font-size: 1em;
	font-weight: 400;
	text-align: left;
}

.bvl-case-body {
	margin-bottom: 0;
}

.bvl-case-body > .bvl-inner {
	padding-top: clamp(1.75rem, 4.5vw, 2.75rem);
	padding-bottom: var(--bvl-inner-padding-y);
}

.bvl-case-body .bvl-breadcrumb {
	margin-bottom: clamp(1rem, 3.2vw, 4rem);
}

@media (max-width: 767px) {
	.bvl-case-body .bvl-breadcrumb {
		margin-bottom: 2rem;
	}
}

.bvl-case-body .bvl-case-hero__title {
	margin-bottom: clamp(0.9rem, 2.5vw, 1.35rem);
}

.bvl-case-body .bvl-case-hero__meta {
	margin-bottom: clamp(1.35rem, 3.2vw, 1.9rem);
}

/* 事例シングル内の h2 共通装飾（プロフィール / 目次 / 本文見出し） */
.bvl-case-body h2 {
	display: flex;
	align-items: stretch;
	gap: 0.65rem;
}

.bvl-case-body h2::before {
	content: '';
	flex: 0 0 4px;
	width: 4px;
	min-height: 1.15em;
	background: linear-gradient(180deg, var(--bvl-black) 0%, #222 100%);
	border-radius: 2px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.bvl-case-profile {
	display: grid;
	gap: clamp(1.25rem, 3vw, 1.75rem);
	border: 1px solid rgba(0, 0, 0, 0.14);
	background: var(--bvl-white);
	border-radius: var(--bvl-radius);
	overflow: hidden;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	margin-bottom: clamp(2rem, 5vw, 2.75rem);
	align-items: start;
	box-shadow:
		0 2px 16px rgba(39, 15, 8, 0.06),
		0 1px 3px rgba(39, 15, 8, 0.04);
}

@media (min-width: 768px) {
	.bvl-case-profile {
		grid-template-columns: 1fr min(300px, 38%);
	}
}

.bvl-case-profile__heading {
	margin: 0 0 1.25rem;
	padding-bottom: 0;
	font-family: var(--bvl-font-serif);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--bvl-heading);
	text-align: left;
	letter-spacing: 0.02em;
}

.bvl-case-profile__company {
	font-size: clamp(1.0625rem, 2vw, 1.2rem);
	font-weight: 700;
	margin: 0 0 1rem;
	color: var(--bvl-heading);
	line-height: 1.45;
}

.bvl-case-profile__about {
	font-size: clamp(1rem, 1.2vw, 1.0625rem);
	line-height: 1.85;
	text-align: left;
}

.bvl-case-profile__about > *:first-child {
	margin-top: 0;
}

.bvl-case-profile__thumb {
	background: var(--bvl-gray);
	border-radius: calc(var(--bvl-radius) - 2px);
	overflow: hidden;
	line-height: 0;
	align-self: stretch;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.bvl-case-profile__img {
	display: block;
	width: 100%;
	height: auto;
}

.bvl-case-profile__placeholder {
	min-height: 12rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	text-align: center;
	color: var(--bvl-text);
	opacity: 0.75;
}

.bvl-case-toc {
	background: var(--bvl-white);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: var(--bvl-radius);
	padding: clamp(1.35rem, 3.2vw, 1.85rem) clamp(1.35rem, 3.2vw, 1.65rem);
	margin-bottom: clamp(2.25rem, 5vw, 5rem);
	box-shadow:
		0 2px 14px rgba(39, 15, 8, 0.05),
		0 1px 2px rgba(39, 15, 8, 0.04);
}

.bvl-case-toc__title {
	margin: 0 0 0.85rem;
	padding-bottom: 0.45rem;
	font-family: var(--bvl-font-serif);
	font-size: clamp(1.15rem, 2.2vw, 1.5rem);
	font-weight: 700;
	line-height: 1.4;
	color: var(--bvl-heading);
	border-bottom: 1px solid rgba(63, 24, 12, 0.12);
}

.bvl-case-toc__list {
	margin: 0;
	padding-left: 0;
	list-style: none;
	line-height: 1.55;
	font-size: 0.9375rem;
}

.bvl-case-toc__item {
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
	margin: 0.45em 0;
	line-height: 1.5;
}

.bvl-case-toc__icon {
	flex-shrink: 0;
	font-size: 1.125rem;
	width: 1.25em;
	height: 1.25em;
	line-height: 1;
	margin-top: 0.12em;
	color: var(--bvl-heading);
	opacity: 0.55;
	font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.bvl-case-toc__item--level-3 {
	margin-left: 0.75rem;
}

.bvl-case-toc__item--level-4 {
	margin-left: 1.5rem;
}

.bvl-case-toc__item a {
	flex: 1;
	min-width: 0;
	color: var(--bvl-heading);
	text-decoration: none;
	border-bottom: 1px solid rgba(10, 10, 10, 0.2);
	transition:
		color 0.15s ease,
		border-color 0.15s ease;
}

.bvl-case-toc__item a:hover,
.bvl-case-toc__item a:focus-visible {
	color: var(--bvl-ink);
	text-decoration: none;
}

.bvl-case-content {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(1rem, 1.15vw, 1.0625rem);
	line-height: 1.9;
}

.bvl-case-content.bvl-page-content > * + * {
	margin-top: 0;
}

.bvl-case-content > *:first-child {
	margin-top: 0;
}

.bvl-case-content :is(h2, h3, h4) {
	scroll-margin-top: clamp(5rem, 12vw, 7rem);
	margin-top: clamp(2.25rem, 5vw, 2.85rem);
	margin-bottom: 0.85rem;
	padding-bottom: 0.45rem;
	font-weight: 700;
	color: var(--bvl-heading);
	line-height: 1.4;
	border-bottom: 1px solid rgba(63, 24, 12, 0.12);
}

.bvl-case-content > :is(h2, h3, h4):first-child {
	margin-top: 0;
}

.bvl-case-content h2 {
	font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}

.bvl-case-content h3 {
	font-size: clamp(1.05rem, 1.8vw, 1.15rem);
	border-bottom-color: rgba(63, 24, 12, 0.08);
}

.bvl-case-content h4 {
	font-size: 1.02rem;
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0.5rem;
}

.bvl-case-content p {
	margin: 0 0 1.1em;
}

.bvl-case-content :is(ul, ol) {
	margin: 0 0 1.1em;
	padding-left: 1.35em;
	list-style: revert;
}

.bvl-case-content li + li {
	margin-top: 0.35em;
}

.bvl-case-content blockquote {
	margin: 1.35em 0;
	padding: 0.85em 1.15em;
	border-left: 3px solid rgba(87, 24, 33, 0.45);
	background: rgba(255, 255, 255, 0.5);
	border-radius: 0 var(--bvl-radius) var(--bvl-radius) 0;
}

.bvl-case-content img {
	border-radius: calc(var(--bvl-radius) - 2px);
	height: auto;
	max-width: 100%;
}

.bvl-case-pagination {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	align-items: stretch;
	margin-top: clamp(2.5rem, 6vw, 3.5rem);
	padding-top: clamp(1.75rem, 4vw, 2.25rem);
	border-top: 1px solid rgba(63, 24, 12, 0.12);
}

.bvl-case-pagination__hint {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--bvl-heading);
	opacity: 0.55;
	margin-bottom: 0.2rem;
}

.bvl-case-pagination__row {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	width: 100%;
	min-width: 0;
}

.bvl-case-pagination__link:link,
.bvl-case-pagination__link:visited,
.bvl-case-pagination__link:hover,
.bvl-case-pagination__link:active,
.bvl-case-pagination__link:focus,
.bvl-case-pagination__link:focus-visible {
	text-decoration: none !important;
}

.bvl-case-pagination__link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	padding: 0.95rem 1.1rem;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	background: var(--bvl-white);
	color: inherit;
	text-decoration: none;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.35;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
	min-height: 4.25rem;
	box-shadow: 0 1px 2px rgba(39, 15, 8, 0.04);
}

.bvl-case-pagination__link:hover,
.bvl-case-pagination__link:focus-visible {
	background: #222;
	color: var(--bvl-white);
	border-color: var(--bvl-black);
	box-shadow: 0 1px 3px rgba(39, 15, 8, 0.08);
	text-decoration: none;
}

.bvl-case-pagination__link:hover .bvl-case-pagination__hint,
.bvl-case-pagination__link:focus-visible .bvl-case-pagination__hint {
	color: var(--bvl-white);
	opacity: 0.85;
}

.bvl-case-pagination__link--next {
	align-items: flex-end;
	text-align: right;
}

.bvl-case-pagination__link--next .bvl-case-pagination__row {
	justify-content: flex-end;
}

.bvl-case-pagination__icon {
	font-size: 1.35rem;
	flex-shrink: 0;
}

.bvl-case-pagination__label {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	text-align: inherit;
}

.bvl-case-pagination__spacer {
	min-height: 4.25rem;
}

.bvl-case-edit {
	margin: 2rem 0 0;
	font-size: 0.875rem;
	text-align: center;
}

/* 404 page */
.error404 #wrapper {
	background: var(--bvl-white);
}

.error404 #content {
	max-width: none;
	width: 100%;
	padding: 0;
	margin: 0;
}

.bvl-404 {
	margin-bottom: 0;
}

.bvl-404__inner {
	padding-top: clamp(3rem, 10vw, 8rem);
	padding-bottom: clamp(4rem, 11vw, 9rem);
}

.bvl-404__card {
	max-width: min(100%, 46rem);
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.25rem);
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: var(--bvl-radius);
	background: var(--bvl-white);
	box-shadow:
		0 2px 16px rgba(39, 15, 8, 0.06),
		0 1px 3px rgba(39, 15, 8, 0.04);
	text-align: center;
}

.bvl-404__code {
	margin: 0 0 0.45rem;
	font-size: clamp(2.2rem, 8vw, 4rem);
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--bvl-ink);
}

.bvl-404__title.bvl-section-title {
	margin: 0 auto 1.2rem;
	font-size: clamp(1.35rem, 3.3vw, 1.95rem);
}

.bvl-404__content {
	max-width: 33rem;
	margin: 0 auto;
	line-height: 1.85;
}

.bvl-404__actions {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.bvl-404__search,
.bvl-search-page__form {
	max-width: 30rem;
	margin: 0 auto;
}

.bvl-search-no-results .bvl-search-page__form {
	margin-top: 1.25rem;
}

.bvl-404__search form,
.bvl-search-page__form form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.5rem;
	align-items: stretch;
}

.bvl-404__search input[type='search'],
.bvl-404__search input[type='text'],
.bvl-search-page__form input[type='search'],
.bvl-search-page__form input[type='text'] {
	min-height: 2.7rem;
	padding: 0.55rem 0.8rem;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: calc(var(--bvl-radius) - 2px);
}

.bvl-404__search input[type='submit'],
.bvl-search-page__form input[type='submit'] {
	min-height: 2.7rem;
	padding: 0 1rem;
	border: 1px solid rgba(248, 236, 197, 0.45);
	border-radius: calc(var(--bvl-radius) - 2px);
	background: #571821;
	color: #fff;
	cursor: pointer;
}

.bvl-404__search input[type='submit']:hover,
.bvl-404__search input[type='submit']:focus-visible,
.bvl-search-page__form input[type='submit']:hover,
.bvl-search-page__form input[type='submit']:focus-visible {
	background: #7a2d3d;
	border-color: rgba(255, 255, 255, 0.55);
}

/* Footer */
.bvl-footer {
	background: var(--bvl-footer);
	color: var(--bvl-white);
	padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
	padding-inline: 0;
	text-align: center;
}

.bvl-footer__company {
	margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.bvl-footer__company-title {
	margin: 0 0 1rem;
	font-weight: 700;
	font-size: 1.25rem;
	letter-spacing: 0.04em;
}

.bvl-footer .bvl-company__table {
	margin-bottom: 0;
	background: var(--bvl-footer);
	color: var(--bvl-white);
	border-color: rgba(255, 255, 255, 0.22);
}

.bvl-footer .bvl-company__table th,
.bvl-footer .bvl-company__table td {
	background: transparent;
	color: var(--bvl-white);
	border-color: rgba(255, 255, 255, 0.22);
}

.bvl-footer__brand {
	font-weight: 700;
	font-size: 2rem;
	margin-bottom: clamp(2rem, 5vw, 4rem);
}

.bvl-footer__copy {
	margin-top: 4rem;
	font-size: 1rem;
	line-height: 1.6;
}

.bvl-footer__privacy {
	margin: 1.25rem 0 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.bvl-footer__privacy a {
	text-decoration: none;
}

.bvl-footer__privacy a:hover,
.bvl-footer__privacy a:focus-visible {
	text-decoration: underline;
}

.bvl-footer a {
	color: inherit;
}

/* ========== LP デザイン（brand-value-lab-lp.html） ========== */

.bvl-front {
	font-family: var(--bvl-font-sans);
	color: var(--bvl-ink);
	background: var(--bvl-paper);
	letter-spacing: 0.04em;
	line-height: 1.9;
	-webkit-font-smoothing: antialiased;
}

.bvl-front ::selection {
	background: var(--bvl-ink);
	color: var(--bvl-paper);
}

/* 全ページ：フッター LP トーン */
.bvl-footer {
	background: var(--bvl-footer);
	text-align: left;
	font-family: var(--bvl-font-en);
	font-size: 0.6875rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--bvl-muted-on-dark);
}

/* メールアドレスは実際の表記（小文字）を保つ — .bvl-footer の uppercase を打ち消す */
.bvl-footer a[href^='mailto:'] {
	text-transform: none;
	letter-spacing: 0.08em;
}

.bvl-footer__inner {
	max-width: var(--bvl-lp-max);
	padding-inline: var(--bvl-lp-gutter);
}

.bvl-footer__company-title {
	font-family: var(--bvl-font-en);
	font-size: 0.6875rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--bvl-paper);
}

.bvl-footer__copy {
	margin-top: clamp(2rem, 4vw, 3rem);
	font-family: var(--bvl-font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: none;
	line-height: 1.8;
}

.bvl-footer__privacy {
	font-family: var(--bvl-font-sans);
	text-transform: none;
	letter-spacing: 0.04em;
	font-size: 0.8125rem;
}

/* LP ラップ */
.bvl-lp-wrap {
	width: 100%;
	max-width: var(--bvl-lp-max);
	margin-inline: auto;
	padding-inline: var(--bvl-lp-gutter);
	box-sizing: border-box;
}

.bvl-lp-wrap--flow,
.bvl-lp-wrap--cases,
.bvl-lp-wrap--faq {
	padding-block: var(--bvl-lp-section-pad);
}

/* セクションヘッダ */
.bvl-lp-section-head {
	display: flex;
	align-items: baseline;
	gap: 1.5rem;
	margin-bottom: clamp(3.75rem, 10vh, 7.5rem);
	font-family: var(--bvl-font-en);
	font-size: 0.6875rem;
	letter-spacing: 0.3em;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--bvl-muted);
}

.bvl-lp-section-head__num {
	font-family: var(--bvl-font-en-serif);
	font-style: italic;
	font-weight: 300;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: none;
}

.bvl-lp-section-head__rule {
	flex: 1;
	height: 1px;
	background: var(--bvl-line);
}

.bvl-lp-section-head--on-dark {
	color: var(--bvl-muted-on-dark);
}

.bvl-lp-section-head--on-dark .bvl-lp-section-head__rule {
	background: var(--bvl-line-on-dark);
}

.bvl-lp-dim {
	color: var(--bvl-muted);
	font-weight: 300;
}

/* ヒーロー */
.bvl-lp-hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	padding: 0;
}

.bvl-lp-hero .bvl-lp-wrap {
	padding-top: 18vh;
	padding-bottom: 10vh;
}

.bvl-lp-hero__kicker {
	font-family: var(--bvl-font-en-serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(0.875rem, 1.4vw, 1.125rem);
	letter-spacing: 0.08em;
	color: var(--bvl-muted);
	margin-bottom: 2.5rem;
	opacity: 0;
	animation: bvl-lp-fade-up 1.2s 0.2s forwards;
}

.bvl-lp-hero__title {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2.75rem, 8.2vw, 8rem);
	letter-spacing: 0.02em;
	line-height: 1.18;
	color: var(--bvl-ink);
	margin-bottom: 5rem;
	opacity: 0;
	animation: bvl-lp-fade-up 1.4s 0.5s forwards;
}

.bvl-lp-hero__title-sub {
	display: block;
	font-size: 0.42em;
	font-weight: 300;
	letter-spacing: 0.06em;
	color: var(--bvl-muted);
	margin-top: 1.5rem;
	font-family: var(--bvl-font-sans);
}

.bvl-lp-hero__mark {
	font-family: var(--bvl-font-en);
	font-weight: 200;
	font-size: clamp(1.375rem, 3vw, 2.5rem);
	letter-spacing: 0.18em;
	color: var(--bvl-ink);
	opacity: 0;
	animation: bvl-lp-fade-up 1.4s 0.9s forwards;
}

.bvl-lp-hero__scroll {
	position: absolute;
	left: var(--bvl-lp-gutter);
	bottom: 2.5rem;
	font-family: var(--bvl-font-en);
	font-size: 0.625rem;
	letter-spacing: 0.4em;
	color: var(--bvl-muted);
	text-transform: uppercase;
	opacity: 0;
	animation: bvl-lp-fade-up 1.4s 1.4s forwards;
}

.bvl-lp-hero__scroll::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 40px;
	background: var(--bvl-muted);
	vertical-align: middle;
	margin-left: 1rem;
	transform-origin: top;
	animation: bvl-lp-scroll-line 2.4s ease-in-out infinite;
}

@keyframes bvl-lp-fade-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bvl-lp-scroll-line {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}
	45% {
		transform: scaleY(1);
		transform-origin: top;
	}
	55% {
		transform: scaleY(1);
		transform-origin: bottom;
	}
	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bvl-lp-hero__kicker,
	.bvl-lp-hero__title,
	.bvl-lp-hero__mark,
	.bvl-lp-hero__scroll {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.bvl-lp-hero__scroll::after {
		animation: none;
		transform: scaleY(1);
	}
}

/* Manifesto */
.bvl-lp-statement {
	padding: var(--bvl-lp-section-pad) 0;
	background: var(--bvl-paper);
	border-top: 1px solid var(--bvl-line);
	border-bottom: 1px solid var(--bvl-line);
}

.bvl-lp-mvv {
	display: flex;
	gap: clamp(1.5rem, 5vw, 4rem);
	flex-wrap: wrap;
	margin-bottom: 3.75rem;
}

.bvl-lp-mvv span {
	font-family: var(--bvl-font-en);
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--bvl-muted);
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--bvl-line);
}

.bvl-lp-lede {
	font-family: var(--bvl-font-serif);
	font-weight: 300;
	font-size: clamp(1.25rem, 2.4vw, 2rem);
	letter-spacing: 0.08em;
	line-height: 2.1;
	max-width: 28em;
	margin-bottom: 1.5rem;
}

.bvl-lp-lede strong {
	font-weight: 500;
}

/* Problem */
.bvl-lp-problem {
	padding: var(--bvl-lp-section-pad) 0;
}

.bvl-lp-problem__h2 {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2.25rem, 6vw, 5.5rem);
	letter-spacing: 0.02em;
	line-height: 1.35;
	margin-bottom: 5rem;
}

.bvl-lp-problem__list {
	list-style: none;
	max-width: 32.5rem;
	margin: 5rem 0;
}

.bvl-lp-problem__list li {
	padding: 1.75rem 0;
	border-bottom: 1px solid var(--bvl-line);
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.08em;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.bvl-lp-problem__list li::before {
	content: "─";
	color: var(--bvl-muted);
}

.bvl-lp-problem__conclusion {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: 0.04em;
	margin-top: 2.5rem;
}

/* Philosophy（暗背景） */
.bvl-lp-philosophy {
	padding: var(--bvl-lp-section-pad) 0;
	background: var(--bvl-ink);
	color: var(--bvl-paper);
}

.bvl-lp-philosophy__h2 {
	font-family: var(--bvl-font-serif);
	font-weight: 300;
	font-size: clamp(3rem, 9vw, 9rem);
	letter-spacing: 0.04em;
	line-height: 1.25;
	margin-bottom: 6.25rem;
	/* style.css の :is(h1–h6) より詳細度を上げ、LP と同じく全文 #fff（親の --paper） */
	color: var(--bvl-paper);
}

.bvl-lp-philosophy__h2 strong {
	font-weight: 700;
	color: var(--bvl-paper);
}

.bvl-lp-philosophy__p {
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	font-weight: 300;
	letter-spacing: 0.1em;
	line-height: 2.2;
	max-width: 36em;
	margin-bottom: 2.5rem;
}

.bvl-lp-philosophy__closer {
	font-family: var(--bvl-font-serif);
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	margin-top: 5rem;
	padding-top: 3.75rem;
	border-top: 1px solid var(--bvl-line-on-dark);
	max-width: 24em;
}

/* Why us */
.bvl-lp-whyus {
	padding: var(--bvl-lp-section-pad) 0;
}

.bvl-lp-whyus__h2 {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: 0.04em;
	line-height: 1.5;
	margin-bottom: 3.75rem;
	max-width: 22em;
}

.bvl-lp-whyus__h2 strong {
	font-weight: 700;
}

.bvl-lp-whyus__copy {
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	line-height: 2.2;
	max-width: 32em;
	margin-bottom: 3rem;
	color: var(--bvl-ink-soft);
}

.bvl-lp-whyus__issue {
	margin: 5rem 0;
	padding: 3rem 0;
	border-top: 1px solid var(--bvl-line);
	border-bottom: 1px solid var(--bvl-line);
}

.bvl-lp-whyus__issue-label {
	font-family: var(--bvl-font-en);
	font-size: 0.6875rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--bvl-muted);
	margin-bottom: 1.5rem;
}

.bvl-lp-whyus__issue-text {
	font-family: var(--bvl-font-serif);
	font-size: clamp(1.5rem, 3.4vw, 2.75rem);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.bvl-lp-whyus__principle {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	margin: 5rem 0;
}

.bvl-lp-whyus__principle > div {
	padding: 3rem 2rem 3rem 0;
	border-top: 1px solid var(--bvl-line);
	font-family: var(--bvl-font-serif);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 300;
	letter-spacing: 0.08em;
}

.bvl-lp-whyus__principle strong {
	font-weight: 700;
}

.bvl-lp-whyus__credo {
	font-family: var(--bvl-font-serif);
	font-size: clamp(1.625rem, 3.6vw, 3rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6;
	max-width: 22em;
}

/* Service */
.bvl-lp-service {
	padding: var(--bvl-lp-section-pad) 0;
	background: var(--bvl-paper-warm);
}

.bvl-lp-service__h2 {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2.25rem, 6vw, 5.5rem);
	letter-spacing: 0.04em;
	line-height: 1.4;
	margin-bottom: 7.5rem;
}

.bvl-lp-service__steps {
	display: grid;
	gap: 0;
}

.bvl-lp-service__step {
	display: grid;
	grid-template-columns: 120px 1fr 1fr;
	gap: 2.5rem;
	align-items: baseline;
	padding: 3.5rem 0;
	border-top: 1px solid var(--bvl-line);
}

.bvl-lp-service__step:last-child {
	border-bottom: 1px solid var(--bvl-line);
}

.bvl-lp-service__step-num {
	font-family: var(--bvl-font-en-serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: var(--bvl-muted);
}

.bvl-lp-service__step-title {
	font-family: var(--bvl-font-serif);
	font-weight: 700;
	font-size: clamp(1.75rem, 3.6vw, 3rem);
	letter-spacing: 0.06em;
	margin: 0;
}

.bvl-lp-service__step-desc {
	font-size: 0.875rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	color: var(--bvl-muted);
	line-height: 2;
	margin: 0;
}

/* Features */
.bvl-lp-features {
	padding: var(--bvl-lp-section-pad) 0;
}

.bvl-lp-features__h2 {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2.25rem, 6vw, 6rem);
	letter-spacing: 0.04em;
	line-height: 1.35;
	margin-bottom: 6.25rem;
}

.bvl-lp-features__list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin: 0 0 7.5rem;
	padding: 0;
}

.bvl-lp-features__list li {
	border-top: 1px solid var(--bvl-ink);
	padding-top: 1.5rem;
	font-family: var(--bvl-font-serif);
	font-size: clamp(1.125rem, 1.8vw, 1.375rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.8;
}

.bvl-lp-features__idx {
	display: block;
	font-family: var(--bvl-font-en-serif);
	font-style: italic;
	font-weight: 300;
	font-size: 0.875rem;
	color: var(--bvl-muted);
	margin-bottom: 1rem;
	letter-spacing: 0.1em;
}

.bvl-lp-features__sum {
	font-family: var(--bvl-font-serif);
	font-size: clamp(1.75rem, 4vw, 3.5rem);
	font-weight: 500;
	letter-spacing: 0.06em;
}

.bvl-lp-features__sum strong {
	font-weight: 700;
}

/* Members */
.bvl-lp-members {
	padding: var(--bvl-lp-section-pad) 0;
	background: var(--bvl-ink);
	color: var(--bvl-paper);
}

.bvl-lp-members__h2 {
	font-family: var(--bvl-font-serif);
	font-weight: 300;
	font-size: clamp(2.5rem, 7vw, 7rem);
	letter-spacing: 0.04em;
	margin-bottom: 6.25rem;
	/* LP .members h2 — 親の var(--paper) と同じ白（style.css の h2 色を上書き） */
	color: var(--bvl-paper);
}

.bvl-lp-members__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}

.bvl-lp-members__row {
	padding: 2.5rem 0;
	border-top: 1px solid var(--bvl-line-on-dark);
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1.5rem;
}

.bvl-lp-members__row:nth-last-child(-n + 2) {
	border-bottom: 1px solid var(--bvl-line-on-dark);
}

.bvl-lp-members__name {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(1.25rem, 2.4vw, 2rem);
	letter-spacing: 0.08em;
}

.bvl-lp-members__role {
	font-family: var(--bvl-font-en);
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--bvl-muted-on-dark);
	text-align: right;
}

/* Format */
.bvl-lp-format {
	padding: var(--bvl-lp-section-pad) 0;
}

.bvl-lp-format__h2 {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(32px, 5vw, 72px);
	letter-spacing: 0.04em;
	margin: 0 0 100px;
}

.bvl-lp-format__h2 .bvl-lp-format__h2-inner {
	font-size: 45px;
	line-height: 1.9;
	letter-spacing: 0.04em;
}

.bvl-lp-format__plans {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-bottom: 5rem;
}

.bvl-lp-format__plan {
	padding: 4rem 3rem 4rem 0;
	border-top: 1px solid var(--bvl-line);
}

.bvl-lp-format__plan:first-child {
	padding-right: 3rem;
	border-right: 1px solid var(--bvl-line);
}

.bvl-lp-format__plan:nth-child(2) {
	padding-left: 3rem;
}

.bvl-lp-format__plan-label {
	font-family: var(--bvl-font-en);
	font-size: 0.6875rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--bvl-muted);
	margin: 0 0 2rem;
}

.bvl-lp-format__plan-name {
	font-family: var(--bvl-font-serif);
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	margin: 0 0 1.5rem;
}

.bvl-lp-format__note {
	font-family: var(--bvl-font-serif);
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	font-weight: 300;
	letter-spacing: 0.08em;
	color: var(--bvl-muted);
	padding-top: 3rem;
	border-top: 1px solid var(--bvl-line);
	margin: 0;
}

/* Flow（LP トーンで上書き） */
.bvl-front .bvl-section.bvl-flow {
	padding: 0;
	background: var(--bvl-paper);
}

.bvl-front .bvl-section.bvl-flow::before {
	display: none;
}

.bvl-lp-flow-title {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2rem, 5vw, 3.5rem);
	letter-spacing: 0.04em;
	line-height: 1.35;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.bvl-front .bvl-flow__step {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 2rem 0;
	box-shadow: none;
}

.bvl-front .bvl-flow__badge {
	background: transparent;
	color: var(--bvl-muted);
	border: 1px solid var(--bvl-line);
	font-family: var(--bvl-font-en-serif);
	font-style: italic;
}

.bvl-front .bvl-flow__step h3 {
	font-family: var(--bvl-font-serif);
	font-weight: 700;
	letter-spacing: 0.06em;
}

.bvl-front .bvl-flow__step p {
	color: var(--bvl-muted);
	letter-spacing: 0.06em;
}

.bvl-front .bvl-flow__arrow .material-symbols-outlined {
	color: var(--bvl-muted);
}

/* Cases */
.bvl-lp-cases {
	padding: 0;
	background: var(--bvl-paper);
}

.bvl-lp-cases__h2 {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: 0.04em;
	margin-bottom: 1.5rem;
}

.bvl-lp-cases__desc {
	font-size: 1rem;
	color: var(--bvl-muted);
	letter-spacing: 0.06em;
	margin-bottom: 3rem;
}

.bvl-lp-cases .bvl-case {
	border-radius: 0;
	border-color: var(--bvl-line);
}

.bvl-lp-cases .bvl-case__label {
	font-family: var(--bvl-font-serif);
	letter-spacing: 0.04em;
}

/* FAQ */
.bvl-front .bvl-faq-band {
	background: var(--bvl-paper-warm);
	border: none;
}

.bvl-lp-faq-title {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2rem, 5vw, 3.5rem);
	letter-spacing: 0.04em;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.bvl-front .bvl-faq__item {
	border-color: var(--bvl-line);
}

.bvl-front .bvl-faq__q {
	font-family: var(--bvl-font-sans);
	letter-spacing: 0.04em;
}

.bvl-front .bvl-faq__a {
	color: var(--bvl-ink-soft);
	letter-spacing: 0.05em;
	line-height: 2;
}

/* Closing */
.bvl-lp-closing {
	padding: clamp(10rem, 24vh, 17.5rem) 0;
	text-align: left;
	background: var(--bvl-paper);
}

.bvl-lp-closing__h2 {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2.5rem, 7vw, 7rem);
	letter-spacing: 0.04em;
	line-height: 1.35;
}

.bvl-lp-closing__h2-lead {
	font-size: clamp(2.5rem, 5vw, 4.375rem);
	color: var(--bvl-ink);
	font-weight: 500;
}

/* CTA */
.bvl-lp-cta {
	background: var(--bvl-ink);
	color: var(--bvl-paper);
	padding: clamp(7.5rem, 20vh, 12.5rem) 0;
}

.bvl-lp-cta__inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.bvl-lp-cta__headline {
	font-family: var(--bvl-font-serif);
	font-weight: 300;
	font-size: clamp(2.5rem, 6vw, 5.5rem);
	letter-spacing: 0.08em;
	line-height: 1.35;
	margin: 0;
	max-width: 14em;
}

.bvl-lp-cta__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem clamp(1rem, 2.5vw, 1.5rem);
	align-items: stretch;
	justify-content: flex-end;
	min-width: 0;
	max-width: 100%;
}

.bvl-lp-cta__actions .bvl-btn.bvl-btn--lp {
	width: auto;
	flex: 0 1 auto;
	min-width: 0;
	max-width: none;
	padding-inline: clamp(1.75rem, 4vw, 3.5rem);
	/* 日本語ラベル：1行に収めやすく */
	font-size: clamp(0.8125rem, 1.15vw, 0.9375rem);
	letter-spacing: 0.06em;
	text-transform: none;
}

.bvl-lp-cta__actions .bvl-btn.bvl-btn--lp .bvl-btn__label {
	white-space: nowrap;
}

/* LP ボタン（全ページ共通スタイルの基準） */
.bvl-btn.bvl-btn--lp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	min-width: 0;
	max-width: none;
	width: 100%;
	height: auto;
	min-height: 3.5rem;
	padding: 1.75rem 3rem;
	border: 1px solid var(--bvl-ink);
	border-radius: 0;
	color: var(--bvl-ink);
	background: transparent;
	box-shadow: none;
	font-family: var(--bvl-font-en);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	transition:
		background 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
		color 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
		border-color 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bvl-btn.bvl-btn--lp .bvl-btn__arrow {
	width: 40px;
	height: 1px;
	background: currentColor;
	position: relative;
	flex-shrink: 0;
	transition: width 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bvl-btn.bvl-btn--lp .bvl-btn__arrow::after {
	content: "";
	position: absolute;
	right: 0;
	top: -3px;
	width: 8px;
	height: 8px;
	border-right: 1px solid currentColor;
	border-top: 1px solid currentColor;
	transform: rotate(45deg);
}

.bvl-btn.bvl-btn--lp:hover,
.bvl-btn.bvl-btn--lp:focus-visible {
	background: var(--bvl-ink);
	color: var(--bvl-paper);
	border-color: var(--bvl-ink);
	text-decoration: none;
	transform: none;
	box-shadow: none;
}

.bvl-btn.bvl-btn--lp:hover .bvl-btn__arrow,
.bvl-btn.bvl-btn--lp:focus-visible .bvl-btn__arrow {
	width: 60px;
}

.bvl-btn.bvl-btn--lp-on-dark {
	border-color: var(--bvl-paper);
	color: var(--bvl-paper);
}

.bvl-btn.bvl-btn--lp-on-dark:hover,
.bvl-btn.bvl-btn--lp-on-dark:focus-visible {
	background: var(--bvl-paper);
	color: var(--bvl-ink);
	border-color: var(--bvl-paper);
}

/* 従来の pill ボタンを LP トーンに寄せる（サブページ・404 等） */
.bvl-btn:not(.bvl-btn--lp):not(.bvl-floating-cta) {
	border-radius: 0;
	border-width: 1px;
	box-shadow: none;
	min-height: 3.5rem;
	height: auto;
	padding: 1.25rem 2rem;
	font-family: var(--bvl-font-en);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	background: transparent;
	color: var(--bvl-ink);
	border-color: var(--bvl-ink);
	transition:
		background 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
		color 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bvl-btn.bvl-btn--primary:not(.bvl-btn--lp),
.bvl-btn.bvl-btn--inquiry:not(.bvl-btn--lp),
.bvl-btn.bvl-btn--request:not(.bvl-btn--lp) {
	background: transparent;
	color: var(--bvl-ink);
	border-color: var(--bvl-ink);
}

.bvl-btn:not(.bvl-btn--lp):not(.bvl-floating-cta):hover,
.bvl-btn:not(.bvl-btn--lp):not(.bvl-floating-cta):focus-visible {
	background: var(--bvl-ink);
	color: var(--bvl-paper);
	border-color: var(--bvl-ink);
	transform: none;
	box-shadow: none;
}

/* .bvl-btn--request:not(.bvl-btn--lp) より詳細度を上げて白系背景を確実に適用 */
a.bvl-floating-cta.bvl-btn.bvl-btn--request {
	border-radius: 0;
	border: 1px solid var(--bvl-ink);
	box-shadow:
		0 2px 14px rgba(10, 10, 10, 0.08),
		0 1px 3px rgba(10, 10, 10, 0.06);
	background: var(--bvl-paper-warm);
	color: var(--bvl-ink);
	font-family: var(--bvl-font-en);
	font-size: 0.6875rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
}

a.bvl-floating-cta.bvl-btn.bvl-btn--request:hover,
a.bvl-floating-cta.bvl-btn.bvl-btn--request:focus-visible {
	background: var(--bvl-ink);
	color: var(--bvl-paper);
	border-color: var(--bvl-ink);
	transform: none;
	box-shadow: none;
}

.bvl-cases__more {
	margin-top: 3rem;
	text-align: center;
}

.bvl-cases__more .bvl-btn--lp {
	width: auto;
	max-width: 100%;
	display: inline-flex;
}

@media (max-width: 820px) {
	.bvl-lp-service__step {
		grid-template-columns: 80px 1fr;
		gap: 1.5rem;
	}

	.bvl-lp-service__step-desc {
		grid-column: 1 / -1;
		padding-left: 6.5rem;
		margin-top: -1.5rem;
	}

	.bvl-lp-features__list {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.bvl-lp-whyus__principle {
		grid-template-columns: 1fr;
	}

	.bvl-lp-format__plans {
		grid-template-columns: 1fr;
	}

	.bvl-lp-format__plan:first-child {
		border-right: none;
		padding-right: 0;
	}

	.bvl-lp-format__plan:nth-child(2) {
		padding-left: 0;
	}

	.bvl-lp-members__grid {
		grid-template-columns: 1fr;
	}

	.bvl-lp-members__row:nth-last-child(-n + 2) {
		border-bottom: none;
	}

	.bvl-lp-members__row:last-child {
		border-bottom: 1px solid var(--bvl-line-on-dark);
	}

	.bvl-lp-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.bvl-lp-cta__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.bvl-lp-cta__actions .bvl-btn.bvl-btn--lp {
		width: 100%;
		max-width: none;
		flex: none;
	}

	.bvl-lp-cta__actions .bvl-btn.bvl-btn--lp .bvl-btn__label {
		white-space: normal;
		text-align: center;
	}

	:root {
		--bvl-lp-section-pad: clamp(100px, 16vh, 160px);
	}
}

/* 固定ページ・アーカイブ：LP タイポグラフィ */
.bvl-inner--page,
.bvl-inner--archive {
	max-width: var(--bvl-lp-max);
	padding-inline: var(--bvl-lp-gutter);
}

.bvl-page-title,
.bvl-section-title,
.bvl-archive-header .bvl-page-title {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2rem, 5vw, 3.75rem);
	letter-spacing: 0.04em;
	line-height: 1.35;
	color: var(--bvl-ink);
}

.bvl-page-content,
.bvl-page-content.entry-content,
.bvl-case-content {
	font-family: var(--bvl-font-sans);
	font-size: 1rem;
	letter-spacing: 0.06em;
	line-height: 2;
	color: var(--bvl-ink-soft);
}

.bvl-page-content h2,
.bvl-case-content h2 {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	letter-spacing: 0.04em;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: var(--bvl-ink);
}

.bvl-page-content h3,
.bvl-case-content h3 {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	letter-spacing: 0.04em;
	margin-top: 2rem;
	color: var(--bvl-ink);
}

.bvl-breadcrumb__list {
	font-family: var(--bvl-font-en);
	font-size: 0.6875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.bvl-case-hero__title {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	font-size: clamp(2rem, 5vw, 3.5rem);
	letter-spacing: 0.04em;
}

.bvl-archive-item__title {
	font-family: var(--bvl-font-serif);
	font-weight: 500;
	letter-spacing: 0.04em;
}

/* 404 / 検索の送信ボタンを LP トーンへ */
.bvl-404__search input[type='submit'],
.bvl-search-page__form input[type='submit'] {
	background: transparent;
	color: var(--bvl-ink);
	border: 1px solid var(--bvl-ink);
	border-radius: 0;
	font-family: var(--bvl-font-en);
	font-size: 0.6875rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

.bvl-404__search input[type='submit']:hover,
.bvl-404__search input[type='submit']:focus-visible,
.bvl-search-page__form input[type='submit']:hover,
.bvl-search-page__form input[type='submit']:focus-visible {
	background: var(--bvl-ink);
	color: var(--bvl-paper);
	border-color: var(--bvl-ink);
}
