@charset "UTF-8";
/* =========================================================
   ブランディングLP 2026
   デザイン基準: Figma PC 1280px（コンテンツ幅1184px）
   ========================================================= */

:root {
	--blp-orange: #f15a24;
	--blp-yellow: #fff08c;
	--blp-teal: #00a6b4;
	--blp-gray: #787878;
	--blp-border: #b0b0b0;
	--blp-bg-gray: #f2f2f2;
}

/* ---------- リセット・ベース ---------- */
.blp-body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
}

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

/* 要素リセット（:whereで詳細度ゼロにし、コンポーネント側のクラス指定が必ず勝つようにする） */
.blp-body :where(h1, h2, h3, p, ul, ol, li, dl, dt, dd) {
	margin: 0;
	padding: 0;
}

.blp-body :where(ul, ol) {
	list-style: none;
}

.blp-body img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.blp-body a {
	color: inherit;
	text-decoration: none;
}

/* 見出し用フォント（Adobe Fonts kit hws8dah のリョウゴシックPlusN。800=Hウェイト。
   フォントが来ない環境ではNoto Sans JPで代替＝800指定でも900 Blackが選ばれる） */
.blp-head {
	font-family: 'ryo-gothic-plusn', 'Noto Sans JP', sans-serif;
	font-weight: 800;
	font-feature-settings: 'palt' 1;
}

.blp-en {
	font-family: 'Jost', sans-serif;
	font-weight: 600;
}

.blp-container {
	max-width: 1184px;
	margin: 0 auto;
}

.blp-text-orange { color: var(--blp-orange); }
.blp-text-white { color: #fff; }

/* SP/PCでの表示出し分け（コンポーネント側のdisplay指定に負けないよう .blp-body で修飾） */
.blp-body .blp-sp-br,
.blp-body .blp-sp-only { display: none; }

@media (max-width: 767px) {
	.blp-body .blp-sp-br { display: inline; }
	.blp-body .blp-sp-only { display: inline; }
	.blp-body .blp-pc-only { display: none; }
}

/* ---------- 共通パーツ ---------- */

/* セクションラベル（● Issue など） */
.blp-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
	letter-spacing: 0.02em;
}

.blp-label-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--blp-orange);
	flex-shrink: 0;
}

.blp-label--white { color: #fff; }

/* セクション見出し（セクションごとに個別調整可） */
.blp-issue-h2 {
	margin-top: 25px;
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-connect-h2 {
	margin-top: 28px;
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
	color: var(--blp-orange);
}

.blp-necessity-h2 {
	margin-top: 25px;
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
	color: #fff;
}

.blp-branding-h2 {
	margin-top: 27px;
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
	text-align: left;
	color: #fff;
}

.blp-member-h2 {
	margin-top: 28px;
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-support-h2 {
	margin-top: 25px;
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-cases-h2 {
	margin-top: 26px;
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-flow-h2 {
	margin-top: 27px;
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-faq-h2 {
	margin-top: 26px;
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
}

/* セクションリード（セクションごとに個別調整可） */
.blp-issue-lead {
	margin-top: 25px;
	font-size: 20px;
	line-height: 1.9;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-connect-lead {
	margin-top: 28px;
	font-size: 20px;
	line-height: 1.67;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-necessity-lead {
	margin-top: 28px;
	font-size: 20px;
	line-height: 1.7;
	letter-spacing: 0.05em;
	text-align: center;
	color: #fff;
}

.blp-member-lead {
	margin-top: 28px;
	font-size: 20px;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-support-lead {
	margin-top: 26px;
    font-size: 20px;
    line-height: 1.9;
    letter-spacing: 0.05em;
	text-align: center;
}

.blp-section {
	padding: 100px 0;
}

/* CTAボタン共通（ホバーで黒地・白文字に統一）
   ※ #blp-wrapper a のリセットに勝つため、色を持つセレクタはIDで修飾する */
#blp-wrapper .blp-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 330px;
	height: 70px;
	font-size: 20px;
	letter-spacing: 0.05em;
	color: #fff;
	transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

#blp-wrapper .blp-btn--outline {
	border: 1px solid #fff;
	background: transparent;
}

#blp-wrapper .blp-btn--fill {
	background: var(--blp-orange);
	border: 1px solid var(--blp-orange);
}

.blp-btn-icon {
	flex-shrink: 0;
}

#blp-wrapper .blp-btn:hover {
	background: #000;
	color: #fff;
	border-color: #fff; /* 暗い背景上でも輪郭が見えるように白枠 */
}

/* 明るい背景上に置くボタンは、枠も黒にして地続きに見せる */
#blp-wrapper .blp-btn--on-light:hover {
	border-color: #000;
}

/* CTAボタン上の「＼ ラベル ／」 */
.blp-cta-note {
	position: relative;
	width: fit-content;
	margin: 0 auto 8px;
	padding: 0 20px;
	font-size: 15px;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	letter-spacing: 0.05em;
}

.blp-cta-note::before,
.blp-cta-note::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 1px;
	height: 14px;
	background: currentColor;
}

.blp-cta-note::before {
	left: 4px;
	transform: translateY(-50%) rotate(-27deg);
}

.blp-cta-note::after {
	right: 4px;
	transform: translateY(-50%) rotate(27deg);
}

/* ---------- ヘッダー ---------- */
.blp-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

.blp-header-logo {
	display: inline-block;
	margin: 30px 0 0 48px;
}

.blp-header-logo img {
	width: 72px;
}

/* ---------- ファーストビュー ---------- */
.blp-hero {
	position: relative;
	height: 618px;
	background: linear-gradient(to right, #000, var(--blp-orange));
	overflow: hidden;
}

.blp-hero-inner {
	position: relative;
	height: 100%;
	/* 〜1600px: FVが画面幅いっぱいを使う（テキスト左48px固定のまま画像の見切れが解消していく）
	   1600px〜: コンテンツは固定・中央寄せになり、背景だけが左右に広がる
	   （クライアント指示 & Figma w1600 / w1800 準拠） */
	max-width: 1600px;
	margin: 0 auto;
}

.blp-hero-content {
	position: relative;
	z-index: 2;
	padding: 135px 0 0 49px;
}

.blp-hero-title {
	font-size: 50px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #fff;
}

.blp-hero-title em {
	font-style: normal;
	background: linear-gradient(to right, var(--blp-orange), var(--blp-yellow));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.blp-hero-lead {
	margin-top: 13px;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #fff;
}

.blp-hero-cta {
	position: absolute;
	left: 48px;
	top: 479px;
	z-index: 2;
	display: flex;
	gap: 10px;
}

/* 右側の事例画像ギャラリー（1枚画像。書き出しは hero-gallery-pc2.png / -sp.png） */
.blp-hero-gallery {
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	height: 538px;
	z-index: 1;
	pointer-events: none;
}

.blp-hero-gallery-img {
	display: block;
	width: auto;
	height: auto;
	max-height: 100%;
}

/* PC: 完全画像（表示サイズ 733×538px）をコンテナ右端基準で配置。
   〜1280px: right が -224px になり右側224pxが画面外に見切れる（従来の見え方と同じ）
   1280〜1600px: 見切れが徐々に解消し（約1543pxで全体表示）、1600pxで右余白49pxに着地
   1600px〜: 右余白49pxのままコンテナ(1600px)と一緒に中央寄せ（Figma w1600 / w1800 準拠）
   ※ 0.853125 = (49 - (-224)) / (1600 - 1280) の補間係数 */
.blp-hero-gallery-img.blp-pc-only {
	position: absolute;
	top: 0;
	right: clamp(-224px, calc((100vw - 1280px) * 0.853125 - 224px), 49px);
	height: 100%;
}

/* ---------- クライアントロゴ ---------- */
.blp-logos {
	background: #fff;
	margin-top: 30px;
	padding: 4px 0;
}

.blp-logos-row {
	overflow: hidden;
}

.blp-logos-row + .blp-logos-row {
	margin-top: 8px;
}

.blp-logos-track {
	display: flex;
	width: max-content;
	animation: blp-marquee 60s linear infinite;
	will-change: transform;
}

/* 下段は右方向へスクロール */
.blp-logos-track--reverse {
	animation-direction: reverse;
}

.blp-logos-track img {
	width: auto;
	height: 72px;
	flex-shrink: 0;
}

@keyframes blp-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ---------- Issue ---------- */
.blp-issue {
	padding: 130px 0 0;
}

.blp-issue-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 67px;
}

.blp-issue-card {
	background: #fff;
	border: 1px solid var(--blp-border);
	border-radius: 10px;
	min-height: 402px;
	padding: 48px 20px 24px;
}

.blp-issue-illust {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

.blp-issue-illust img {
	width: 135px;
	height: 135px;
}

.blp-issue-card-title {
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-issue-card-text {
	margin-top: 16px;
	padding: 0 10px;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

/* ---------- 経営課題とブランド課題 ---------- */
.blp-connect {
	padding: 100px 0 0;
}

.blp-connect-diagram {
	display: flex;
	align-items: flex-start; /* 上端基準。縦位置は各要素のmargin-topで個別調整 */
	justify-content: center;
	margin-top: 54px;
}

/* 左カラム（経営の課題） */
.blp-connect-left {
	width: 320px;
	flex-shrink: 0;
}

.blp-connect-left-title {
	margin-bottom: 16px;
	font-size: 24px;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-connect-left-list li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	padding: 8px 12px;
	border: 1px solid var(--blp-border);
	border-radius: 6px;
	font-size: 16px;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 0.05em;
}

.blp-connect-left-list li + li {
	margin-top: 20px;
}

/* 右カラム（ブランドで目指す姿） */
.blp-connect-right {
	width: 328px;
	flex-shrink: 0;
}

.blp-connect-right-title {
	margin-bottom: 16px;
	font-size: 24px;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-connect-right-list li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	padding: 8px 12px;
	border: 1px solid var(--blp-border);
	border-radius: 6px;
	font-size: 16px;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 0.05em;
}

.blp-connect-right-list li + li {
	margin-top: 20px;
}

/* 接続ブラケット（左右個別） */
.blp-connect-bracket-left {
	flex-shrink: 0;
	margin: 93px 0 0;
}

.blp-connect-bracket-left img {
	width: 83px;
	margin-top: 3px;
}

.blp-connect-bracket-right {
	flex-shrink: 0;
	margin: 93px 0 0;
}

.blp-connect-bracket-right img {
	width: 85px;
}

.blp-connect-circle {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 384px;
	height: 384px;
	flex-shrink: 0;
	margin-top: 43px;
	border: 1px solid var(--blp-orange);
	border-radius: 50%;
	background: #fff;
	text-align: center;
}

.blp-connect-circle-title {
	font-size: 34px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	margin-top: -6px;
}

.blp-connect-circle-title span {
	color: var(--blp-orange);
}

.blp-connect-circle-text {
	margin-top: 19px;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0.04em;
}

.blp-connect-note {
	margin-top: 71px;
	font-size: 20px;
	line-height: 1.6;
	text-align: center;
	letter-spacing: 0.05em;
}

.blp-connect-copy {
	margin-top: 18px;
	font-size: 40px;
	letter-spacing: 0.05em;
	text-align: center;
}

/* ---------- Necessity（黒→オレンジのグラデーション帯） ---------- */
.blp-necessity {
	margin-top: 115px;
	padding: 131px 0 141px;
	background: linear-gradient(to bottom, #000, var(--blp-orange));
	color: #fff;
}

.blp-necessity-cards {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 70px;
	color: #000;
}

.blp-necessity-card {
	background: #fff;
	border-radius: 10px;
	min-height: 417px;
	padding: 8px 20px 20px;
}

.blp-necessity-card-title {
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-necessity-num {
	font-size: 18px;
	color: var(--blp-orange);
	letter-spacing: 0.02em;
}

.blp-necessity-icon {
	display: flex;
	justify-content: center;
	margin-top: 16px;
	margin-bottom: 42px;
}

.blp-necessity-icon img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.blp-necessity-card-text {
	margin-top: 17px;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.05em;
	padding: 0 7px 0 9px;
}

/* 事例画像マーキー */
.blp-case-marquee {
	margin-top: 139px;
	overflow: hidden;
}

.blp-case-marquee-track {
	display: flex;
	gap: 20px;
	width: max-content;
	animation: blp-marquee 50s linear infinite;
	will-change: transform;
}

.blp-case-marquee-track img {
	width: 360px;
	height: 203px;
	object-fit: cover;
}

/* Branding */
.blp-branding {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	margin-top: 184px;
}

.blp-branding-text {
	margin-top: -10px;
}

.blp-branding .blp-label {
	justify-content: flex-start;
}

.blp-branding-body {
	margin-top: 57px;
	font-size: 20px;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #fff;
}

.blp-branding-illust {
	flex-shrink: 0;
	width: 422px;
	margin-top: -44px;
}

/* Strength */
.blp-strengths {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 91px;
}

.blp-strength-label {
	margin-bottom: 5px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	letter-spacing: 0.02em;
}

.blp-strength-box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	border: 1px solid #fff;
	border-radius: 10px;
	font-size: 24px;
	color: #fff;
	letter-spacing: 0.05em;
}

/* ---------- 対話重視メッセージ ---------- */
.blp-dialogue {
	padding: 0 0 109px;
	text-align: center;
}

.blp-dialogue-line {
	width: 1px;
	height: 220px;
	margin: -110px auto 80px;
	background: linear-gradient(to bottom, #fff 0%, #fff 50%, var(--blp-orange) 50%, var(--blp-orange) 100%);
	position: relative;
	z-index: 2;
}

.blp-dialogue .blp-dialogue-line {
	margin-bottom: 17px;
}

.blp-dialogue-title {
	font-size: 30px;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.blp-dialogue-text {
	margin-top: 26px;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* ---------- Member ---------- */
.blp-member {
	padding: 10px 0 140px;
}

.blp-roles {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-top: 73px;
}

.blp-roles li {
	padding: 39px 16px 40px;
	text-align: center;
}

.blp-roles li + li {
	border-left: 1px solid var(--blp-border);
}

.blp-role-title {
	font-size: 18px;
	letter-spacing: 0.05em;
}

.blp-roles p {
	margin-top: 11px;
    font-size: 16px;
    line-height: 1.6;
}

.blp-members {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px 28px; /* 縦 横 */
	margin-top: 84px;
    padding: 0 101px;
}

.blp-member-card {
	display: flex;
	gap: 32px;
	min-height: 215px;
	padding: 30px 27px 28px 30px;
	background: #fff;
	border: 1px solid var(--blp-border);
	border-radius: 10px;
}

.blp-member-photo {
	flex-shrink: 0;
	width: 155px;
	height: 155px;
	border-radius: 6px;
	overflow: hidden;
}

.blp-member-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 元写真の構図に合わせて表示位置を調整（Figmaのマスク位置準拠） */
/* .blp-member-card:nth-child(1) .blp-member-photo img { object-position: 65% center; }
.blp-member-card:nth-child(2) .blp-member-photo img { object-position: 38% center; }
.blp-member-card:nth-child(3) .blp-member-photo img { object-position: 70% center; } */

.blp-member-name {
	font-size: 18px;
	letter-spacing: 0.05em;
	margin-top: 10px;
}

.blp-member-role {
	margin-top: 1px;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.blp-member-text {
	font-size: 14px;
    line-height: 1.6;
    margin-top: -1px;
    letter-spacing: 0.05em;
}

/* ---------- Support Area ---------- */
.blp-support {
	background: var(--blp-bg-gray);
	padding: 132px 0 137px;
}

.blp-support-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px 28px;
	margin-top: 68px;
}

.blp-support-card {
	position: relative;
	background: #fff;
	border: 1px solid #B0B0B0;
	border-radius: 10px;
	min-height: 195px;
	padding: 98px 20px 11px 18px;
}

.blp-support-icon {
	position: absolute;
	top: 20px;
	right: 20px;
}

.blp-support-icon img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.blp-support-title {
	font-size: 18px;
	letter-spacing: 0.05em;
}

.blp-support-text {
	margin-top: 1px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

/* ---------- Case Study ---------- */
.blp-cases {
	padding: 134px 0 142px;
}

.blp-case {
	display: flex;
	gap: 50px;
	margin-top: 79px;
}

.blp-case:first-of-type {
	margin-top: 66px;
}

.blp-case-image {
	flex-shrink: 0;
	width: 578px;
	height: 340px;
	overflow: hidden;
}

.blp-case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blp-case-body {
	flex: 1;
	min-width: 0;
}

.blp-case-name {
	font-size: 26px;
	letter-spacing: 0.05em;
	margin-top: -16px;
}

.blp-case-brand {
	margin-left: 10px;
	font-size: 16px;
}

.blp-case-cat {
	margin-top: 1px;
    font-size: 20px;
    letter-spacing: 0.05em;
}

.blp-case-rows {
	margin-top: 29px;
}

/* 区切り線は行と行の間だけ（最上部・最下部には出さない） */
.blp-case-row {
	display: flex;
	gap: 26px;
	padding: 12px 0 14px;
}

.blp-case-row + .blp-case-row {
	border-top: 1px solid #d5d5d5;
}

.blp-case-row dt {
	flex-shrink: 0;
	width: 68px;
	font-size: 16px;
	color: var(--blp-gray);
	letter-spacing: 0.05em;
	line-height: 1.6;
}

.blp-case-row dd {
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.blp-case-more {
	margin-top: 18px;
	text-align: right;
}

.blp-case-more a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	letter-spacing: 0.05em;
}

.blp-case-more a span {
	text-decoration: underline;
	text-decoration-color: #000;
	text-decoration-thickness: 1px;
	text-underline-offset: 6px; /* 線の縦位置。大きくすると下がる */
	transition: color .3s ease, text-decoration-color .3s ease;
}

.blp-case-more a img {
	width: 20px;
	margin-top: 8px;
	transition: transform .3s ease;
}

.blp-case-more a:hover span {
	color: var(--blp-orange);
	text-decoration-color: var(--blp-orange);
}

.blp-case-more a:hover img {
	transform: translateX(4px);
}

/* ---------- All Works: その他事例への導線 ---------- */
.blp-allworks {
	position: relative;
	height: 350px;
	overflow: hidden;
}

.blp-allworks-bg {
	position: absolute;
	inset: 0;
}

.blp-allworks-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 41%; /* 元画像565pxのうち上から89px位置を切り抜き */
	filter: brightness(0.494); /* Figmaの #7e7e7e 乗算オーバーレイ相当（126/255） */
}

/* 文字色はテーマ側CSSのリセットに勝つようIDで修飾 */
#blp-wrapper .blp-allworks-link,
#blp-wrapper .blp-allworks-title,
#blp-wrapper .blp-allworks-more {
	color: #fff;
}

.blp-allworks-link {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
}

.blp-allworks-title {
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1;
	letter-spacing: 0;
}

.blp-allworks-more {
	margin-top: 38px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
}

.blp-allworks-more span {
	display: inline-block;
	padding-bottom: 9px;
	border-bottom: 1px solid #fff;
	transition: opacity .3s ease;
}

.blp-allworks-link:hover .blp-allworks-more span {
	opacity: .6;
}

/* ---------- Flow ---------- */
.blp-flow {
	background: var(--blp-bg-gray);
	padding: 128px 0 132px;
}

.blp-flow-steps {
	max-width: 982px;
	margin: 48px auto 0;
	position: relative;
}

.blp-flow-step {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 50px;
	padding: 16px 0 36px;
	border-bottom: 1px solid #ccc;
}

/* 2つ目以降のステップ */
.blp-flow-step + .blp-flow-step {
	padding-top: 28px;
}

.blp-flow-step + .blp-flow-step .blp-flow-num {
	margin-top: 15px;
}

.blp-flow-step:first-child {
	border-top: 1px solid transparent;
}

/* 番号円をつなぐ縦ライン */
.blp-flow-steps::before {
	content: '';
	position: absolute;
	top: 60px;
	bottom: 100px;
	left: 68px;
	width: 2px;
	background: var(--blp-orange);
}

.blp-flow-num {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 136px;
	height: 136px;
	border-radius: 50%;
	background: var(--blp-orange);
}

.blp-flow-num span {
	font-size: 40px;
	font-weight: 500;
	color: #fff;
}

.blp-flow-head {
	flex-shrink: 0;
	width: 250px;
	padding-top: 36px;
}

.blp-flow-title {
	font-size: 20px;
	letter-spacing: 0.05em;
}

.blp-flow-sub {
	margin-top: -1px;
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 0.05em;
	white-space: nowrap; /* 列幅による自動折返しを禁止（<br>による改行は有効） */
}

.blp-flow-body {
	flex: 1;
    line-height: 1.6;
    margin-top: 3px;
    margin-left: 19px;
    letter-spacing: 0.05em;
}

#blp-wrapper .blp-flow-body a {
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color .3s ease;
}

#blp-wrapper .blp-flow-body a:hover {
	color: var(--blp-orange);
}

.blp-flow-body ul {
	margin-top: 27px;
}

.blp-flow-note {
	margin-top: 50px;
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.05em;
}

/* ---------- Download Document ---------- */
.blp-download {
	background: var(--blp-bg-gray);
	padding: 0 0 140px;
}

.blp-download-card {
	background: #fff;
	border-radius: 10px;
	padding: 87px 50px 100px;
}

.blp-download-inner {
	display: flex;
	gap: 88px;
	max-width: 1084px;
	margin: 57px auto 0;
}

.blp-download-text {
	width: 528px;
	flex-shrink: 0;
}

.blp-download-title {
	font-size: 28px;
	line-height: 1.7;
	letter-spacing: 0.12em;
}

.blp-download-body {
	margin-top: 30px;
	font-size: 16px;
	line-height: 1.6;
}

.blp-download-list {
	margin-top: 12px;
}

.blp-download-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
	font-size: 20px;
	letter-spacing: 0.05em;
}

.blp-download-list img {
	width: 30px;
	height: 30px;
}

#blp-wrapper .blp-download-text .blp-btn--large {
	width: 100%;
	max-width: 528px;
	height: 100px;
	margin-top: 43px;
	font-size: 26px;
	font-weight: 500;
}

.blp-download-visual {
	flex: 1;
	min-width: 0;
	margin-top: 12px;
}

.blp-download-cover img {
	width: 100%;
	max-width: 437px;
}

.blp-download-badges {
	display: flex;
	gap: 11px;
	margin-top: 18px;
    margin-left: 17px;
}

.blp-download-badges li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 1px 8px;
	border: 1px solid #B0B0B0;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.blp-download-badges .blp-label-dot {
	width: 6px;
	height: 6px;
}

.blp-download-pages {
	display: flex;
	gap: 17px;
    margin-top: 29px;
    margin-left: -30px;
}

.blp-download-pages img {
	width: calc(50% - 8px);
	border: 1px solid #e5e5e5;
}

/* ---------- FAQ ---------- */
.blp-faq {
	padding: 130px 0 140px;
}

.blp-faq-tabs {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 66px;
}

.blp-faq-tab {
	padding: 12px 20px;
	border: 1px solid var(--blp-gray);
	border-radius: 30px;
	background: #fff;
	color: var(--blp-gray);
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1;
	cursor: pointer;
	transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.blp-faq-tab:hover {
	border-color: var(--blp-orange);
	color: var(--blp-orange);
}

.blp-faq-tab.is-active {
	background: var(--blp-orange);
	border-color: var(--blp-orange);
	color: #fff;
}

.blp-faq-list {
	display: none;
	max-width: 982px;
	margin: 29px auto 0;
}

.blp-faq-list.is-active {
	display: block;
}

.blp-faq-item {
	border-bottom: 1px solid #ccc;
}

.blp-faq-item:first-child {
	border-top: 1px solid #ccc;
}

.blp-faq-toggle {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	padding: 36px 10px 31px;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	font-family: inherit;
	color: inherit;
	margin-left: -10px;
}

.blp-faq-mark {
	flex-shrink: 0;
	width: 26px;
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
	color: var(--blp-teal);
}

.blp-faq-mark--a {
	color: var(--blp-orange);
}

.blp-faq-q-text {
	flex: 1;
	font-size: 20px;
	line-height: 1.6;
	letter-spacing: -0.03em;
	font-weight: 500;
}

/* ＋／－アイコン */
.blp-faq-icon {
	position: relative;
	flex-shrink: 0;
	width: 21px;
	height: 21px;
	margin-right: -20px;
}

.blp-faq-icon::before,
.blp-faq-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--blp-gray);
	transition: transform .3s ease;
}

.blp-faq-icon::after {
	transform: rotate(90deg);
}

.blp-faq-toggle[aria-expanded="true"] .blp-faq-icon::after {
	transform: rotate(0deg);
}

/* 回答（初期クローズ、max-heightで開閉） */
.blp-faq-a {
	overflow: hidden;
	max-height: 0;
	margin-left: -11px;
	transition: max-height .4s ease;
}

.blp-faq-a-inner {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 6px 10px 31px;
}

.blp-faq-a-inner .blp-faq-mark {
	margin-top: -2px;
}

.blp-faq-a-inner p {
	flex: 1;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-top: -7px;
}

/* ---------- コンタクトCTA ---------- */
.blp-contact {
	padding: 125px 0 141px;
	background: linear-gradient(to right, var(--blp-orange), #000);
	color: #fff;
}

.blp-contact-title {
	font-size: 30px;
	letter-spacing: 0.05em;
	text-align: center;
}

.blp-contact-lead {
	margin-top: 16px;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}

.blp-contact-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-top: 68px;
}

.blp-contact-card {
	display: block;
	min-height: 300px;
	padding: 38px 48px 32px;
	border-top-left-radius: 10px;
	transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.blp-contact-card .blp-label {
	justify-content: flex-start;
}

.blp-contact-card-title {
	margin-top: 0px;
	font-size: 30px;
	letter-spacing: 0.05em;
}

.blp-contact-card-title span {
	font-size: 16px;
	margin-left: 4px;
}

.blp-contact-card-text {
	margin-top: 74px;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.12em;
}

#blp-wrapper .blp-contact-card--download {
	background: #fff;
	border: 2px solid var(--blp-orange);
	color: #000;
}

#blp-wrapper .blp-contact-card--inquiry {
	background: var(--blp-orange);
	color: #fff;
}

/* カードはホバーで黒地・白文字に（他のボタンと統一） */
#blp-wrapper .blp-contact-card:hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

/* オレンジ地のカードではドットを白に */
.blp-contact-card--inquiry .blp-label-dot {
	background: #fff;
}

/* ---------- フッター ---------- */
.blp-footer {
	background: #fff;
	padding: 60px 0 30px;
}

.blp-footer .blp-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width: 1184px;
}

.blp-footer-logo {
	display: block;
	width: 172px;
	order: 2;
	align-self: flex-start;
}

.blp-footer small {
	display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.00em;
    margin-left: 21px;
    margin-top: 100px;
}

/* ---------- フローティングCTA ---------- */
.blp-float {
	position: fixed;
	right: 30px;
	bottom: 40px;
	gap: 10px;
	z-index: 100;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
}

.blp-float.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#blp-wrapper .blp-btn--float {
	justify-content: space-between;
	width: 230px;
	height: 58px;
	padding: 0 24px;
	font-size: 18px;
	border: 2px solid #fff;
	white-space: nowrap;
	letter-spacing: 0;
}

#blp-wrapper .blp-btn--float-dl {
	background: #000;
}

#blp-wrapper .blp-btn--float-contact {
	background: var(--blp-orange);
}

#blp-wrapper .blp-btn--float:hover {
	background: #000;
	color: #fff;
	border-color: #fff;
}

/* 資料DLの追従ボタンは通常時が黒のため、ホバーは白地・黒字に反転 */
#blp-wrapper .blp-btn--float-dl:hover {
	background: #fff;
	color: #000;
	border-color: #000;
}

/* =========================================================
   レスポンシブ（SPデザインは未支給のため暫定対応）
   ========================================================= */
@media (max-width: 1100px) {

	.blp-hero-gallery {
		opacity: 0.45;
	}

	.blp-hero-content {
		position: relative;
		z-index: 2;
	}

	.blp-issue-cards,
	.blp-support-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.blp-issue-card {
		min-height: 0;
	}

	.blp-necessity-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.blp-necessity-card {
		min-height: 0;
	}

	.blp-connect-diagram {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.blp-connect-bracket-left,
	.blp-connect-bracket-right {
		display: none;
	}

	.blp-connect-circle {
		margin-top: 0;
	}

	.blp-branding {
		flex-direction: column;
	}

	.blp-branding-illust {
		margin: 0 auto;
	}

	.blp-case {
		flex-direction: column;
		gap: 30px;
	}

	.blp-case-image {
		width: 100%;
		height: auto;
		aspect-ratio: 578 / 340;
	}

	.blp-download-inner {
		flex-direction: column;
	}

	.blp-download-text {
		width: 100%;
	}
}

@media (max-width: 767px) {

	/* =========================================
	   SP版（Figma 390px基準 / 余白20px）
	   ========================================= */

	.blp-body {
		font-size: 14px;
	}

	.blp-container {
		padding: 0 20px;
	}

	.blp-section {
		padding: 70px 0;
	}

	/* ---------- ヘッダー ---------- */
	.blp-header-logo {
		margin: 20px 0 0 20px;
	}

	.blp-header-logo img {
		width: 62px;
	}

	/* ---------- ファーストビュー ---------- */
	.blp-hero {
		height: auto;
		background: linear-gradient(to bottom left, #000, var(--blp-orange));
	}

	.blp-hero-content {
		padding: 99px 20px 0;
	}

	.blp-hero-title {
		font-size: 30px;
		text-align: center;
		letter-spacing: 0.05em;
	}

	.blp-hero-lead {
		font-size: 14px;
        line-height: 1.6;
        margin-top: 14px;
        letter-spacing: 0.047em;
	}

	.blp-hero-lead br {
		display: none;
	}

	/* 事例画像: SP用の1枚画像 */
	.blp-hero-gallery {
		position: static;
		width: auto;
		height: auto;
		margin-top: 25px;
		opacity: 1;
	}

	.blp-hero-gallery-img {
		width: 100%;
		max-width: none;
		height: auto;
		margin-left: 0;
	}

	.blp-hero-gallery-img.blp-sp-only {
		display: block;
	}

	/* CTA: 2カラム横並び */
	.blp-hero-cta {
		position: static;
		display: flex;
		gap: 14px;
		padding: 26px 20px 21px;
	}

	.blp-hero-cta-item {
		flex: 1;
		min-width: 0;
	}

	.blp-cta-note {
		font-size: 12px;
		line-height: 1.2;
		padding: 0 14px;
		margin-bottom: 7px;
	}

	.blp-cta-note::before,
	.blp-cta-note::after {
		height: 27px;
	}

	#blp-wrapper .blp-btn {
		width: 100%;
		height: 50px;
		font-size: 14px;
		line-height: 1.3;
		gap: 8px;
		padding: 0 8px;
	}

	.blp-btn-icon {
		width: 16px;
	}

	/* ---------- クライアントロゴ ---------- */
	.blp-logos {
		padding: 2px 0;
		margin-top: 5px;
	}

	.blp-logos-track img {
		height: 44px;
	}

	.blp-logos-row + .blp-logos-row {
		margin-top: 6px;
	}

	/* ---------- セクション見出し（個別） ---------- */
	.blp-issue-h2 {
		font-size: 24px;
		margin-top: 21px;
	}

	.blp-connect-h2 {
		font-size: 24px;
		margin-top: 15px;
	}

	.blp-necessity-h2 {
		font-size: 24px;
        margin-top: 20px;
        line-height: 1.5;
	}

	.blp-branding-h2 {
		font-size: 24px;
        margin-top: 20px;
        text-align: center;
        line-height: 1.5;
	}

	.blp-member-h2 {
		font-size: 25px;
		margin-top: 20px;
	}

	.blp-support-h2 {
		font-size: 24px;
		margin-top: 22px;
	}

	.blp-cases-h2 {
		font-size: 24px;
		margin-top: 22px;
	}

	.blp-flow-h2 {
		font-size: 24px;
		margin-top: 21px;
	}

	.blp-faq-h2 {
		font-size: 24px;
		margin-top: 21px;
	}

	.blp-issue-lead {
		font-size: 16px;
        line-height: 1.6;
        margin-top: 26px;
        text-align: left;
        letter-spacing: 0.05em;
	}

	.blp-issue-lead br {
		display: none;
	}

	.blp-connect-lead {
		font-size: 16px;
		line-height: 1.6;
		margin-top: 25px;
		text-align: left;
		letter-spacing: 0.05em;
	}

	.blp-connect-lead br {
		display: none;
	}

	.blp-necessity-lead {
		font-size: 16px;
        line-height: 1.6;
        margin-top: 26px;
        text-align: left;
        letter-spacing: 0.05em;
	}

	.blp-necessity-lead br {
		display: none;
	}

	.blp-member-lead {
		font-size: 16px;
		line-height: 1.6;
		margin-top: 26px;
		text-align: left;
	}

	.blp-member-lead br {
		display: none;
	}

	.blp-support-lead {
		font-size: 16px;
		line-height: 1.6;
		margin-top: 24px;
		text-align: left;
	}

	.blp-support-lead br {
		display: none;
	}

	/* ---------- Issue ---------- */
	.blp-issue {
		padding-top: 87px;
	}

	.blp-issue-cards {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 52px;
	}

	.blp-issue-card {
		min-height: 0;
		padding: 49px 20px 42px;
	}

	.blp-issue-illust {
		margin-bottom: 24px;
	}

	.blp-issue-illust img {
		width: 200px;
		height: 200px;
	}

	.blp-issue-card-title {
		font-size: 18px;
	}

	.blp-issue-card-text {
		margin-top: 15px;
		letter-spacing: 0.05em;
	}

	/* ---------- 経営課題とブランド課題 ---------- */
	.blp-connect {
		padding-top: 9px;
	}

	.blp-connect-diagram {
		margin-top: 59px;
		gap: 0;
	}

	.blp-connect-left,
	.blp-connect-right {
		width: 100%;
	}

	.blp-connect-left-title {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.blp-connect-right-title {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.blp-connect-left-list li + li {
		margin-top: 12px;
	}

	.blp-connect-right-list li + li {
		margin-top: 12px;
	}

	/* 上詰め（flex-start）にして、タイトル→テキストと上から順にmargin-topで調整できるようにする */
	.blp-connect-circle {
		position: relative;
		width: 350px;
		max-width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		margin: 31px auto 36px;
		justify-content: flex-start;
	}

	.blp-connect-circle::before,
	.blp-connect-circle::after {
		content: '';
		position: absolute;
		left: 50%;
		width: 1px;
		height: 30px;
		background: var(--blp-border);
	}

	.blp-connect-circle::before {
		top: -33px;
        height: 34px;
	}

	.blp-connect-circle::after {
		bottom: -31px;
	}

	.blp-connect-circle-title {
		font-size: 34px;
		margin-top: 79px; /* 円の上端からの距離 */
	}

	.blp-connect-circle-text {
		margin-top: 11px;
        padding: 0 30px;
        letter-spacing: 0.05em;
	}

	.blp-connect-note {
		margin-top: 74px;
		font-size: 16px;
	}

	.blp-connect-copy {
		margin-top: 24px;
        font-size: 24px;
        line-height: 1.5;
	}

	/* ---------- Necessity: カードは横型（アイコン左） ---------- */
	.blp-necessity {
		margin-top: 20px;
		padding: 90px 0 100px;
	}

	.blp-necessity-cards {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 53px;
	}

	.blp-necessity-card {
		display: grid;
		grid-template-columns: 80px 1fr;
		grid-template-areas:
			"icon num"
			"icon title"
			"icon text";
		column-gap: 17px;
		align-items: start;
		min-height: 0;
		padding: 22px 6px 23px 13px;
	}

	.blp-necessity-num {
		grid-area: num;
		font-size: 14px;
	}

	.blp-necessity-icon {
		grid-area: icon;
		align-self: center;
		margin: 0;
	}

	.blp-necessity-icon img {
		width: 66px;
		height: 66px;
	}

	.blp-necessity-card-title {
		grid-area: title;
		font-size: 16px;
		text-align: left;
		margin-top: -4px;
	}

	.blp-necessity-card-title br {
		display: none;
	}

	.blp-necessity-card-text {
		grid-area: text;
        font-size: 14px;
        line-height: 1.6;
        margin-top: 8px;
        letter-spacing: 0.02em;
        padding: 0;
	}

	/* 事例マーキー */
	.blp-case-marquee {
		margin-top: 101px;
	}

	.blp-case-marquee-track {
		gap: 14px;
	}

	.blp-case-marquee-track img {
		width: 177px;
        height: 100px;
	}

	/* Branding */
	.blp-branding {
		margin-top: 100px;
		gap: 24px;
	}

	.blp-branding .blp-label {
		justify-content: center;
	}

	.blp-branding-body {
		margin-top: 25px;
        font-size: 14px;
        line-height: 1.6;
        letter-spacing: 0.05em;
	}

	.blp-branding-body br {
		display: none;
	}

	.blp-branding-illust {
		width: 100%;
        max-width: 300px;
        margin-top: 10px;
	}

	/* Strength */
	.blp-strengths {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 41px;
	}

	.blp-strength-label {
		font-size: 14px;
		margin-bottom: 4px;
	}

	.blp-strength-box {
		height: 80px;
		font-size: 20px;
		letter-spacing: 0.05em;
	}

	/* ---------- 対話メッセージ ---------- */
	.blp-dialogue {
		padding-bottom: 70px;
	}

	.blp-dialogue-line {
		height: 150px;
        margin: -150px auto 48px;
		background: linear-gradient(to bottom, #fff 0%, #fff 50%, var(--blp-orange) 56%, var(--blp-orange) 100%);
	}

	.blp-dialogue-title {
		font-size: 24px;
        line-height: 1.4;
        margin-top: 22px;
	}

	.blp-dialogue-text {
		margin-top: 25px;
        font-size: 16px;
        text-align: left;
        line-height: 1.6;
        letter-spacing: 0.05em;
	}

	.blp-dialogue-text br {
		display: none;
	}

	/* ---------- Member ---------- */
	.blp-member {
		padding-top: 14px;
	}

	.blp-roles {
		grid-template-columns: 1fr;
		margin-top: 12px;
	}

	.blp-roles li {
		padding: 31px 0 31px;
	}

	.blp-roles li + li {
		border-left: none;
		border-top: 1px solid var(--blp-border);
	}

	.blp-roles li:last-child {
		border-bottom: 1px solid var(--blp-border);
	}

	.blp-roles p {
		margin-top: 2px;
        letter-spacing: 0.05em;
	}

	.blp-roles p br {
		display: none;
	}

	/* メンバーカードは2列 */
	.blp-members {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 14px;
		margin-top: 79px;
        padding: 0 0 30px;
	}

	.blp-member-card {
		flex-direction: column;
		gap: 0;
		min-height: 0;
		padding: 20px 19px 12px;
	}

	.blp-member-photo {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.blp-member-name {
		margin-top: 18px;
		font-size: 16px;
	}

	.blp-member-role {
		margin-top: 6px;
		font-size: 13px;
		line-height: 1.6;
	}

	.blp-member-text {
		font-size: 13px;
		line-height: 1.7;
		margin-top: 1px;
	}

	/* ---------- Support Area: 横型カード ---------- */
	.blp-support {
		padding: 90px 0 100px;
	}

	.blp-support-cards {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 54px;
	}

	.blp-support-card {
		display: grid;
		grid-template-columns: 60px 1fr;
		grid-template-areas:
			"icon title"
			"icon text";
		column-gap: 14px;
		align-items: center;
		min-height: 124px;
		padding: 17px 15px 22px 27px;
	}

	.blp-support-icon {
		grid-area: icon;
		position: static;
		align-self: center;
	}

	.blp-support-title {
		grid-area: title;
		font-size: 16px;
	}

	.blp-support-text {
		grid-area: text;
		margin-top: 0px;
	}

	/* ---------- Case Study ---------- */
	.blp-cases {
		padding: 89px 0 101px;
	}

	.blp-case {
		margin-top: 52px;
		gap: 41px;
	}

	.blp-case:first-of-type {
		margin-top: 51px;
		gap: 42px;
	}

	.blp-case-name {
		font-size: 20px;
	}

	.blp-case-brand {
		font-size: 14px;
		margin-left: 8px;
	}

	.blp-case-cat {
		margin-top: -3px;
		font-size: 16px;
	}

	.blp-case-rows {
		margin-top: 10px;
	}

	/* ラベルと本文を縦積みに */
	.blp-case-row {
		flex-direction: column;
		gap: 7px;
		padding: 14px 0;
	}

	.blp-case-row dt {
		width: auto;
		font-size: 14px;
	}

	.blp-case-row dd {
		font-size: 14px;
		line-height: 1.6;
	}

	.blp-case-more {
		margin-top: 10px;
	}

	/* ---------- All Works ---------- */
	.blp-allworks {
		height: 372px;
	}

	.blp-allworks-bg img {
		object-position: center 40%; /* 元画像565pxのうち上から78px位置を切り抜き */
	}

	.blp-allworks-title {
		font-size: 36px;
	}

	.blp-allworks-more {
		margin-top: 22px;
		font-size: 16px;
	}

	.blp-allworks-more span {
		padding-bottom: 8px;
	}

	/* ---------- Flow ---------- */
	.blp-flow {
		padding: 90px 0 25px;
	}

	.blp-flow-steps {
		margin-top: 9px;
	}

	.blp-flow-steps::before {
		display: none;
	}

	.blp-flow-step {
		display: grid;
		grid-template-columns: 77px 1fr;
		grid-template-areas:
			"num head"
			"body body";
		column-gap: 20px;
		row-gap: 17px;
		padding: 32px 0 24px;
	}

	.blp-flow-step + .blp-flow-step {
		padding-top: 18px;
	}

	.blp-flow-step + .blp-flow-step .blp-flow-num {
		margin-top: 12px;
	}

	.blp-flow-num {
		grid-area: num;
		width: 77px;
		height: 77px;
	}

	.blp-flow-num span {
		font-size: 24px;
	}

	.blp-flow-head {
		grid-area: head;
		width: auto;
		padding-top: 3px;
	}

	.blp-flow-title {
		font-size: 20px;
	}

	.blp-flow-sub {
		margin-top: 1px;
		font-size: 14px;
	}

	.blp-flow-body {
		grid-area: body;
		font-size: 14px;
		line-height: 1.6;
		padding-top: 1px;
		margin-left: 0;
		letter-spacing: 0.04em;
	}

	.blp-flow-body ul {
		margin-top: 22px;
	}

	.blp-flow-note {
		margin-top: 54px;
		font-size: 16px;
		text-align: left;
	}

	.blp-flow-note br {
		display: none;
	}

	/* ---------- Download Document ----------
	   ボタンをカード最下部（サムネイルの後）に置くため
	   display:contents で子要素を並び替える */
	.blp-download {
		padding-bottom: 100px;
	}

	.blp-download-card {
		padding: 88px 20px 100px;
	}

	.blp-download-inner {
		display: flex;
		flex-direction: column;
		margin-top: 40px;
		gap: 0;
	}

	.blp-download-text,
	.blp-download-visual {
		display: contents;
	}

	.blp-download-title {
		order: 1;
		font-size: 20px;
		text-align: center;
		letter-spacing: 0.05em;
        line-height: 1.6;
	}

	.blp-download-body {
		order: 2;
        margin-top: 25px;
        font-size: 14px;
        line-height: 1.6;
        letter-spacing: 0.054em;
        padding: 0 10px;
	}

	.blp-download-list {
		order: 3;
		margin-top: 20px;
		padding: 0 11px;
	}

	.blp-download-list li {
		font-size: 16px;
		margin-top: 10px;
	}

	.blp-download-list img {
		width: 30px;
		height: 30px;
	}

	.blp-download-cover {
		order: 4;
		margin-top: 40px;
	}

	.blp-download-cover img {
		max-width: none;
		width: 94%; /* コンテナ幅に対する割合。ここで大きさを調整 */
		display: block;
		margin: 0 auto;
	}

	/* 1段目: 無料PDF・社内共有可 / 2段目: 検討初期の方にもおすすめ（中央ぞろえ） */
	.blp-download-badges {
		order: 5;
		display: grid;
		grid-template-columns: repeat(2, auto);
		justify-content: center;
		margin-top: 9px;
        margin-left: 0;
		gap: 9px;
	}

	.blp-download-badges li:last-child {
		grid-column: 1 / -1;
		justify-self: center;
	}

	.blp-download-badges li {
		font-size: 12px;
		padding: 0px 7px;
        gap: 3px;
	}

	.blp-download-pages {
		order: 6;
		gap: 20px;
		margin-top: 20px;
        margin-left: 0;
	}

	.blp-download-pages img {
		width: calc(48% - 8px);
	}

	#blp-wrapper .blp-download-text .blp-btn--large {
		order: 7;
		width: 290px;
		max-width: 100%;
		height: 60px;
		margin: 39px auto 0;
		font-size: 18px;
		letter-spacing: 0.05em;
	}

	/* ---------- FAQ ---------- */
	.blp-faq {
		padding: 90px 0 100px;
	}

	.blp-faq-tabs {
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 9px 6px;
		margin-top: 52px;
	}

	.blp-faq-tab {
		font-size: 13px;
		padding: 8px 11px;
	}

	.blp-faq-list {
		margin-top: 28px;
	}

	/* Q行: Qと＋を上段、質問文を全幅で下段に */
	.blp-faq-toggle {
		flex-wrap: wrap;
		gap: 0;
		padding: 27px 0px 22px 9px;
	}

	.blp-faq-mark {
		width: auto;
		font-size: 24px;
	}

	.blp-faq-icon {
		width: 18px;
		height: 18px;
		margin-left: auto;
		margin-right: -11px;
	}

	.blp-faq-q-text {
		flex-basis: 100%;
        order: 3;
        font-size: 16px;
        margin-top: 10px;
	}

	.blp-faq-a-inner {
		flex-direction: column;
		gap: 12px;
		padding: 0px 3px 22px 11px;
		line-height: 1.6;
	}

	.blp-faq-a-inner p {
		font-size: 14px;
		padding-right: 0;
		margin-top: -4px;
	}

	/* ---------- コンタクトCTA ---------- */
	.blp-contact {
		padding: 85px 0 98px;
		background: linear-gradient(to bottom, var(--blp-orange), #000);
	}

	.blp-contact-title {
		font-size: 24px;
	}

	.blp-contact-lead {
		margin-top: 19px;
        font-size: 16px;
        line-height: 1.6;
	}

	.blp-contact-cards {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 55px;
	}

	.blp-contact-card {
		min-height: 285px;
		display: flex;
		flex-direction: column;
	}

	/* カードごとに個別調整（上: 資料ダウンロード / 下: 無料相談） */
	#blp-wrapper .blp-contact-card--download {
		padding: 17px 28px;
	}

	#blp-wrapper .blp-contact-card--inquiry {
		padding: 20px 30px;
	}

	.blp-contact-card-title {
		margin-top: 4px;
		font-size: 24px;
	}

	.blp-contact-card-title span {
		display: block;
		margin: -5px 0 0;
		font-size: 16px;
	}

	.blp-contact-card-text {
        font-size: 14px;
        line-height: 1.8;
	}

	/* カードごとに個別調整（上: 資料ダウンロード / 下: 無料相談） */
	.blp-contact-card--download .blp-contact-card-text {
		padding-top: 32px;
	}

	.blp-contact-card--inquiry .blp-contact-card-text {
		margin-top: 17px;
		padding-top: 34px;
		line-height: 1.9;
	}

	/* ---------- フッター ---------- */
	.blp-footer {
		padding: 79px 0 40px;
		text-align: center;
	}

	.blp-footer .blp-container {
		display: block;
	}

	.blp-footer-logo {
		order: 0;
	}

	.blp-footer small {
		margin-top: 48px;
	}

	.blp-footer-logo {
		width: 100px;
		margin: 0 auto;
	}

	.blp-footer small {
		margin-top: 32px;
        font-size: 13px;
        letter-spacing: 0.0em;
        margin-left: 1px;
	}

	/* ---------- フローティングCTA: 下部固定バー ---------- */
	.blp-float {
		left: 10px;
		right: 10px;
		bottom: 15px;
		flex-direction: row;
		gap: 7px;
		padding: 0 7px;
		
	}

	#blp-wrapper .blp-btn--float {
		flex: 1;
		width: auto;
		height: 45px;
		font-size: 14px;
		padding: 0 16px;
		letter-spacing: 0.03em;
		gap: 11px;
	}
}
