/* ===================================
   BrioWorks - クリーンアップ済みCSS
   =================================== */

:root {
	--color-primary: #0eb1b5;
	--color-primary-dark: #0a8a8d;
	--color-primary-light: #e6f7f8;
	--color-text-main: #1a1a1a;
	--color-text-secondary: #4a4a4a;
	--color-text-light: #6a6a6a;
	--color-bg-main: #ffffff;
	--color-bg-light: #f8f9fa;
	--color-bg-dark: #2c3e50;
	--color-border: #e0e0e0;
	--transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	overflow-x: hidden;
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
}

/* -----------------------------------
   1. テーマの制限を強制解除（全幅対応）
   ----------------------------------- */
.site-main.bw-home,
.bw-home .inside-article,
.bw-home .site-content {
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
}

.bw-container {
	width: 100% !important;
	max-width: 1800px !important;
	margin: 0 auto !important; /* 0 !importantを0 autoに変更 */
	padding: 0 5% !important; /* 10%から5%に調整してゆとりを確保 */
	box-sizing: border-box;
}

.bw-section {
	padding: 100px 0;
}

.bw-bg-light {
	background-color: var(--color-bg-light);
}

.bw-bg-primary {
	background-color: var(--color-primary);
}

/* -----------------------------------
   3. ヘッダー
   ----------------------------------- */
.bw-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: #fff;
	backdrop-filter: blur(10px);
	z-index: 9999;
	border-bottom: 1px solid var(--color-border);
}

.bw-header-container {
	max-width: 1400px;
	width: 92%;
	margin: 0 auto;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bw-logo img {
	height: 60px;
	width: auto;
	display: block;
}

.bw-nav-list {
	display: flex;
	list-style: none;
	gap: 32px;
	align-items: center;
	margin: 0;
}

.bw-nav-list a {
	text-decoration: none;
	color: var(--color-text-main);
	font-weight: 400;
	font-size: 18px;
	transition: var(--transition-base);
}

/* ナビゲーションリスト */
.bw-nav-list {
	display: flex;
	list-style: none;
	gap: 40px;
	align-items: center;
	margin: 0;
	height: 100%; /* 親要素いっぱいに高さを取る */
}

/* ナビゲーションの共通設定 */
.bw-nav-list a {
	text-decoration: none;
	color: var(--color-text-main);
	font-weight: 400;
	font-size: 20px;
	font-family: 'Inter', 'Noto Sans JP', sans-serif;
	transition: var(--transition-base);
	display: inline-flex;
	align-items: center;
	height: 100%;
	position: relative;
}

/* 左側2つの文字リンク：ヘッダー最下部にラインを表示 */
.bw-nav-list li:not(:last-child) a::after {
	content: '';
	position: absolute;
	bottom: 0; /* ヘッダーの枠線（下端）に合わせる */
	left: 0;
	width: 100%;
	height: 2px; /* ラインの太さ */
	background: var(--color-primary);
	transform: scaleX(0); /* 最初は非表示 */
	transform-origin: center;
	transition: transform 0.3s ease;
}

/* ホバー時にラインを中央から広げる */
.bw-nav-list li:not(:last-child) a:hover {
	color: var(--color-primary);
}

.bw-nav-list li:not(:last-child) a:hover::after {
	transform: scaleX(1);
}

/* --- お問い合わせボタン（ヘッダー） --- */
.bw-header-btn {
	background: var(--color-primary);
	color: #ffffff !important;
	padding: 10px 24px;
	border-radius: 6px;
	font-weight: 600 !important;
	font-size: 16px !important;
	height: auto !important;
	border: 2px solid var(--color-primary);
	transition: var(--transition-base);
	box-shadow: none;
}

/* ホバー：背景を白く、文字と枠線をアクセントカラーに反転 */
.bw-header-btn:hover {
	background: #ffffff !important;
	color: var(--color-primary) !important;
}

/* --- カード内のリンク・ボタン等がある場合も同様のルールを適用 --- */
.bw-button-link {
	background: var(--color-primary);
	color: #ffffff;
	border: 2px solid var(--color-primary);
	padding: 12px 32px;
	border-radius: 6px;
	text-decoration: none;
	display: inline-block;
	transition: var(--transition-base);
}

.bw-button-link:hover {
	background: transparent;
	color: var(--color-primary);
}

/* --- 768px以下のスマホ・タブレット対応 --- */
@media (max-width: 768px) {
	.bw-header {
		height: 70px; /* スマホではヘッダーを少し低く */
	}

	.bw-logo img {
		height: 40px; /* ロゴも少し小さく */
	}

	/* PC用メニューを隠す */
	.bw-nav-list {
		position: fixed;
		top: 0;
		right: -100%; /* 最初は画面の外に隠す */
		width: 80%;
		height: 100vh;
		background: #fff;
		flex-direction: column; /* 縦並び */
		justify-content: center;
		gap: 30px;
		transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
		z-index: 10000;
		padding: 50px;
	}

	/* メニュー開閉時のクラス（JavaScriptで操作） */
	.bw-nav-list.is-active {
		right: 0;
	}

	.bw-nav-list a {
		font-size: 24px; /* スマホではタップしやすく大きく */
		height: auto;
		width: 100%;
		justify-content: flex-start;
	}

	/* スマホ用ハンバーガーボタンの作成 */
	.bw-hamburger {
		display: block;
		width: 30px;
		height: 24px;
		position: relative;
		cursor: pointer;
		z-index: 10001;
	}

	.bw-hamburger span {
		position: absolute;
		width: 100%;
		height: 2px;
		background: var(--color-primary);
		left: 0;
		transition: 0.3s;
	}

	.bw-hamburger span:nth-child(1) {
		top: 0;
	}
	.bw-hamburger span:nth-child(2) {
		top: 11px;
	}
	.bw-hamburger span:nth-child(3) {
		top: 22px;
	}

	/* メニューが開いている時のボタンの形（×印） */
	.bw-hamburger.is-active span:nth-child(1) {
		transform: translateY(11px) rotate(45deg);
	}
	.bw-hamburger.is-active span:nth-child(2) {
		opacity: 0;
	}
	.bw-hamburger.is-active span:nth-child(3) {
		transform: translateY(-11px) rotate(-45deg);
	}
}

/* PCではハンバーガーを隠す */
@media (min-width: 769px) {
	.bw-hamburger {
		display: none;
	}
}
/* ===================================
   事業内容ページ（Services Detail）
   =================================== */
/* 余白を消すための基本設定 */
#services-page.bw-section {
	padding: 0;
	max-width: none !important; /* 横幅の制限を解除 */
	width: 100% !important;
}

/* 2. ページヘッダー */
.bw-services-detail-page .bw-page-header {
	text-align: center;
	margin-bottom: 100px !important;
}

/* 事業内容ヘッダー（背景画像あり） */
.bw-page-header {
	position: relative;
	width: 100% !important;
	height: 60vh;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 0; /* 余計なマージンを削除 */
	padding-top: 0 !important;
	/* 親要素の隙間を埋める */
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	/* 右側の隙間を消す */
	left: 50%;
	right: 50%;
	transform: translateX(-50%);
}

/* HTMLのimgタグを背景のように扱う設定 */
.bw-header-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

/* 文字エリア */
.bw-header-content {
	position: relative;
	z-index: 3;
	margin-top: 40px;
	text-align: center;
}

.bw-services-detail-page .en {
	display: block;
	font-size: 14px;
	letter-spacing: 0.3em;
	color: var(--color-primary);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.bw-services-detail-page .bw-title-main-page {
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 700;
	margin-top: 0 !important;
	margin-bottom: 40px;
	color: var(--color-text-main);
}

.bw-services-detail-page .bw-text-lead {
	font-size: clamp(18px, 2vw, 22px);
	line-height: 2.1;
	color: var(--color-text-secondary);
	text-align: center;
	white-space: nowrap;
}

/* タフレットとスマホでは文章の折り返しを許可する */
@media (max-width: 1024px) {
	.bw-services-detail-page .bw-text-lead {
		white-space: normal;
		text-align: left;
		padding: 0 5%;
	}
}

@media (max-width: 768px) {
	.bw-services-detail-page .bw-text-lead {
		padding: 0 5%; /* 左右に少し余白を作る */
		text-align: left;
		line-height: 1.7;
		white-space: normal;
		font-size: 16px;
	}
}

/* -----------------------------------
   中央ガイド線・ジグザグレイアウト（追加分）
   ----------------------------------- */

/*  線を引きたい「wrapper」の中だけに限定して設定します */
.bw-zigzag-wrapper {
	position: relative;
	padding: 80px 0;
	width: 100%;
}

/* ガイド線 */
.bw-zigzag-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background-color: var(--color-border);
	z-index: 1;
	transform: translateX(-50%);
}

.bw-zigzag-row {
	display: flex;
	/* 両端に広げず、中央に集める */
	justify-content: center;
	align-items: center;
	margin-bottom: 150px;
	position: relative;
	z-index: 2;
}

.bw-zigzag-row:last-child {
	margin-bottom: 0;
}

/* 左右のカラム幅を50%にする */
.bw-zigzag-col {
	width: 50% !important;
	margin: 0;
	display: flex;
	flex-direction: column;
}

/* 親要素（section）の relative は維持しつつ、wrapperに線を引く */
.bw-zigzag-wrapper {
	position: relative;
	padding: 60px 0;
}

/* 中央のガイド線：wrapperの範囲内だけに限定 */
.bw-zigzag-wrapper::before {
	content: '';
	position: absolute;
	top: 0; /* wrapperのトップから開始 */
	bottom: 0; /* wrapperのボトムで終了 */
	left: 50%;
	width: 1px;
	background-color: var(--color-border);
	z-index: 1;
	transform: translateX(-50%);
}

.bw-zigzag-row:last-child {
	margin-bottom: 0;
}

/* 左右のカラム幅調整 */
.bw-zigzag-col {
	width: 45%;
}

/* テキストエリアの調整 */
.bw-zigzag-text {
	padding: 20px;
}

/* --- 1行目（CELF）：テキスト左 / 画像右 --- */

/* 左側のテキスト：線（右側）から少し離す */
.bw-zigzag-row:nth-child(odd) .bw-zigzag-col:first-child {
	padding-right: 60px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* 右側の画像：線（左側）にピタッとくっつける */
.bw-zigzag-row:nth-child(odd) .bw-zigzag-col:last-child {
	padding-left: 0;
	align-items: flex-start; /* 画像を左寄せ（線寄り）にする */
}

/* --- 2行目（Miniflu）：テキスト右 / 画像左（反転） --- */

.bw-zigzag-row:nth-child(even) {
	flex-direction: row-reverse;
}

/* 右側のテキスト：線（左側）から少し離す */
.bw-zigzag-row:nth-child(even) .bw-zigzag-col:first-child {
	padding-left: 60px; /* 線との距離（お好みで調整） */
	align-items: flex-start; /* テキストを左寄せ（線寄り）にする */
	text-align: left;
}

/* 左側の画像：線（右側）にピタッとくっつける */
.bw-zigzag-row:nth-child(even) .bw-zigzag-col:last-child {
	padding-right: 0;
	align-items: flex-end; /* 画像を右寄せ（線寄り）にする */
}

/* 画像エリアの調整 */
.bw-zigzag-image {
	width: 100%;
	display: flex;
}

.bw-zigzag-image img {
	max-width: 100%; /* 線に接地させるため100%に */
	height: auto;
	box-shadow: var(--shadow-md);
}

/* スマホモックアップ等の重ね合わせ用 */
.bw-device-mock {
	position: absolute;
	width: 45% !important; /* メイン画像に対するサイズ */
	bottom: -10%;
	right: -5%;
	z-index: 3;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
}

/* 偶数行の反転設定 */
.bw-zigzag-row:nth-child(even) {
	flex-direction: row-reverse;
}

/* 偶数行の場合、モックアップを左側に配置 */
.bw-zigzag-row:nth-child(even) .bw-device-mock {
	left: -5%;
	right: auto;
}

/* モバイル対応：ガイド線を消して縦並びに */
@media (max-width: 768px) {
	.bw-zigzag-wrapper::before {
		display: none !important;
	}

	.bw-zigzag-col {
		width: 100% !important;
		padding: 0 !important;
		text-align: left !important;
		align-items: flex-start !important;
	}
	.bw-zigzag-row:nth-child(even) .bw-zigzag-col:first-child {
		padding-left: 0;
	}

	/* 行全体をフレックスにして縦に並べる */
	.bw-zigzag-row {
		display: flex;
		flex-direction: column !important;
	}
	/* 画像が入っている方のカラム（2番目のcol）を上に持ってくる */
	.bw-zigzag-row .bw-zigzag-col:last-child {
		order: -1; /* これで画像がテキストより上に来ます */
		margin-bottom: 30px;
	}

	.bw-detail-sub-box {
		margin: 10px 0;
	}
}

/* 3. 事業ごとの詳細ブロック */
.bw-service-detail-block {
	max-width: 1000px;
	margin: 0 auto 150px; /* 余白を広めにとり、各事業の専門性を独立させる */
	padding-top: 0;
	border: none;
}

/* 事業名エリア（ホームのValuesセクションのトーンを継承） */
.bw-service-info .bw-service-label {
	font-size: 16px;
	letter-spacing: 0.2em;
	color: var(--color-primary);
	font-weight: 600;
	margin-bottom: 10px;
}

.bw-service-name {
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 700;
	color: var(--color-text-main);
	margin-bottom: 50px;
	position: relative;
	padding-bottom: 20px;
}

.bw-service-name::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background: var(--color-primary); /* 知的なアクセントライン */
}

/* 本文テキスト */
.bw-service-content p {
	font-size: 16px;
	line-height: 2;
	color: var(--color-text-secondary);
	margin: 30px auto;
}

/* 4. サブ情報ボックス（対応内容など） */
.bw-detail-sub-box {
	background: transparent; /* 背景なし */
	padding: 0;
	border: none;
	margin: 40px 0;
}
.bw-detail-sub-box h3 {
	font-size: 16px;
	letter-spacing: 0.1em;
	color: var(--color-text-light); /* あえて控えめな色に */
	text-transform: uppercase;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}

/* 見出しの横に細い線を伸ばす */
.bw-detail-sub-box h3::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--color-border);
}

/* チェックリストの洗練（ホームのリスト形式に準拠） */
.bw-check-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px 40px;
}

.bw-check-list li {
	position: relative;
	padding-left: 35px;
	font-size: 16px;
	color: var(--color-text-main);
	display: flex;
	align-items: center;
}

.bw-check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	width: 20px;
	height: 1px;
	background: var(--color-primary); /* ホームのValuesの横線と同じ意匠 */
}

/* 5. ステータス・注意書き（誠実さの表現） */
.bw-important-note {
	font-weight: 600;
	color: var(--color-text-main);
	padding: 10px 20px 10px 30px;
	background: rgba(14, 177, 181, 0.05);
}

.bw-status-badge {
	display: inline-block;
	border: 1px solid var(--color-border);
	color: var(--color-text-light);
	padding: 10px 20px;
	font-size: 13px;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}

.bw-external-text {
	margin-top: 0;
	margin-bottom: 0;
}

/* 操作ガイドボタン（”＞”こういうボタン。今ページでは使用していないけど残してます） */
.bw-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	padding: 18px 40px;
	margin-top: 20px;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: var(--transition-base);
}

.bw-btn-outline:hover {
	background: var(--color-primary);
	color: #fff;
}

/* ボタン内の矢印（右側に配置） */
.bw-btn-outline {
	position: relative; /* これが抜けると矢印がどこかへ飛んでいきます */
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 60px 18px 40px; /* 右側の余白を広げて矢印スペースを作る */
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	background: transparent;
	transition: all 0.3s ease;
	z-index: 1;
}
.bw-btn-outline .bw-icon-arrow {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	border: none; /* 円の枠線は不要なら消す */
	width: auto;
	height: auto;
}

/* 矢印のコンテナ */
.bw-icon-arrow {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	border-top: 2px solid var(--color-primary);
	border-right: 2px solid var(--color-primary);
	width: 24px; /* 矢印の全体の長さ */
	height: 14px; /* 矢印の高さ */
	display: inline-block;
	transition: all 0.3s ease;
}

/* 矢印の「先端（＞）」部分 */
.bw-icon-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--color-primary);
	border-right: 2px solid var(--color-primary);
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s ease;
}
/* ホバー時の挙動：色を反転 */
.bw-btn-outline:hover {
	background: var(--color-primary);
	color: #ffffff;
}
/* ★重要：ボタンがホバーされた時、中にある矢印のborderを白くする */
.bw-btn-outline:hover .bw-icon-arrow::after {
	border-color: #ffffff;
}

/* --- 外部リンク専用ボタン --- */
.bw-btn-external {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 60px 18px 40px;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	background: transparent;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
	z-index: 1;
}

/* 外部リンクボタン全体の調整 */
.bw-btn-external {
	display: inline-flex;
	align-items: center;
	gap: 10px; /* 文字とアイコンの間隔 */
	padding: 15px 30px;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
}

/* アイコン自体の調整 */
.bw-btn-external .material-symbols-outlined {
	font-size: 20px; /* アイコンの大きさ */
	vertical-align: middle;
}

/* ホバー時の設定 */
.bw-btn-external:hover {
	background: var(--color-primary);
	color: #ffffff;
}

/* 外側の余白調整 */
.bw-footer-contact-wrapper {
	margin: 100px auto;
	max-width: 1000px; /* カードの横幅を抑えて洗練させる（全幅なら 100% ） */
	padding: 0 5%;
}

/* お問い合わせカード本体（スプリットセクション右側と同一） */
.bw-contact-card {
	background-color: var(--color-primary) !important;
	border: 1px solid var(--color-primary);
	text-decoration: none !important;
	padding: 60px 40px !important;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 0 !important;
	min-height: 300px !important;
	width: 100%;
}

/* カード内の文字色（白で統一） */
.bw-contact-card .en {
	font-size: 14px;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.8) !important;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.bw-contact-card .bw-title-section-center {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 20px 0 !important;
}

.bw-contact-card .bw-p-center {
	font-size: 16px;
	line-height: 1.8;
	color: #ffffff !important;
	margin: 0 !important;
}

/* お問い合わせカード内の矢印アイコン */
.bw-icon-center {
	display: block;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.6); /* 白い円 */
	border-radius: 50%;
	position: relative;
	margin-top: 30px;
	transition: all 0.3s ease;
}

/* 矢印の「横棒（シャフト）」 */
.bw-icon-center::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 25%;
	width: 50%; /* 棒の長さ */
	height: 1px; /* 棒の太さ */
	background-color: #ffffff;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

/* 矢印の「＞」部分 */
.bw-icon-center::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 54%;
	width: 10px;
	height: 10px;
	border-top: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	transform: translateY(-50%) rotate(45deg);
}

/* --- ホバー時の演出 --- */
.bw-contact-card:hover .bw-icon-center {
	background-color: #ffffff;
	border-color: #ffffff;
}

/* ホバー時に横棒の色をメインカラーに変え、少し右に伸ばす */
.bw-contact-card:hover .bw-icon-center::before {
	background-color: var(--color-primary);
	left: 30%;
}

/* ホバー時に先端の色をメインカラーに変え、少し右に動かす */
.bw-contact-card:hover .bw-icon-center::after {
	border-color: var(--color-primary);
	right: 20%;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.bw-services-detail-page .bw-page-header {
		padding-left: 30px;
		margin-bottom: 60px;
	}
	.bw-detail-sub-box {
		padding: 10px 25px;
	}
	.bw-page-footer-contact {
		margin: 100px -5% 0;
		padding: 80px 5%;
	}
	.bw-footer-contact-wrapper {
		margin-top: 60px;
	}
	.bw-contact-card .bw-title-section-center {
		font-size: 24px;
	}
	.bw-contact-card br {
		display: none; /* スマホでは改行を無視して1行に */
	}
}

/* -----------------------------------
   7. フッター
   ----------------------------------- */
/* --- フッター全体の高さを抑える --- */
.bw-footer {
	background: var(--color-bg-dark);
	color: #fff;
	padding: 40px 0 20px; /* 上下の余白を大幅に削減 */
}

/* --- ロゴとナビを横一列に並べる --- */
.bw-footer-flex {
	display: flex;
	justify-content: space-between;
	align-items: center; /* 垂直中央 */
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 20px;
}

/* --- ロゴとタグラインを横並びに（一体感） --- */
.bw-footer-brand {
	display: flex;
	align-items: center;
	gap: 20px;
}

.bw-footer-logo img {
	height: 40px; /* 少し小さくして高さを抑える */
	width: auto;
}

.bw-footer-tagline {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	padding-left: 20px;
}

/* --- ナビゲーションを横並びに --- */
.bw-footer-nav {
	display: flex;
	gap: 24px; /* リンク同士の間隔 */
}

.bw-footer-nav a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.bw-footer-nav a:hover {
	opacity: 1;
	color: var(--color-primary);
}

/* --- コピーライトを右寄せにしてさらにコンパクトに --- */
.bw-copyright {
	text-align: center;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	padding-top: 0;
	border: none;
}

/* --- スマホ対応：入り切らない場合は縦並びに戻す --- */
@media (max-width: 768px) {
	.bw-footer-flex {
		flex-direction: column;
		gap: 25px;
		align-items: flex-start;
	}

	.bw-footer-brand {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.bw-footer-tagline {
		border-left: none;
		padding-left: 0;
	}

	.bw-footer-nav {
		flex-wrap: wrap; /* 折り返し許可 */
		gap: 15px 20px;
	}

	.bw-copyright {
		text-align: left;
	}
}
