/**
 * サイト共通パンくずバー（LP / Labo 事業ページ / 情報ページ）
 * 控えめ・テキスト主体。装飾は最小限。
 */

.depost-lp-breadcrumb-bar {
	position: relative;
	background: #fbfcfd;
	border-bottom: 1px solid #eef2f6;
}

.depost-lp-breadcrumb-bar {
	--depost-breadcrumb-pad-x: clamp(1rem, 4vw, 1.75rem);
}

.depost-lp-breadcrumb-bar > .depost-lp-breadcrumb-bar__inner {
	max-width: 1120px;
	margin-inline: auto;
	padding-block: 0.58rem 0.62rem;
	padding-inline: var(--depost-breadcrumb-pad-x);
}

.depost-lp-breadcrumb {
	max-width: none;
	margin: 0;
	padding: 0;
}

.depost-lp-breadcrumb__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.28rem 0;
	font-size: 0.75rem;
	line-height: 1.5;
	color: #94a3b8;
	letter-spacing: 0.01em;
}

.depost-lp-breadcrumb__item {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: nowrap;
	min-width: 0;
	max-width: 100%;
}

.depost-lp-breadcrumb__item:not(:last-child)::after {
	content: '›';
	flex-shrink: 0;
	margin-left: 0.48rem;
	margin-right: 0.48rem;
	color: #cbd5e1;
	font-size: 0.72rem;
	font-weight: 400;
	line-height: 1;
}

.depost-lp-breadcrumb__item.is-current {
	color: #94a3b8;
	font-weight: 400;
	flex: 1 1 auto;
}

.depost-lp-breadcrumb__item a {
	color: #64748b;
	font-weight: 500;
	text-decoration: none;
	overflow-wrap: break-word;
	word-break: normal;
	white-space: normal;
	transition: color 0.15s ease;
}

.depost-lp-breadcrumb__item a:hover,
.depost-lp-breadcrumb__item a:focus-visible {
	color: #475569;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

/* ヒーロー帯・FV 直下 */
.depost-lp-breadcrumb--hero-follow .depost-lp-breadcrumb__item:first-child a {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	color: #64748b;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

.depost-lp-breadcrumb--hero-follow .depost-lp-breadcrumb__item:first-child a::before {
	content: '';
	display: inline-block;
	width: 0.72rem;
	height: 0.72rem;
	flex-shrink: 0;
	opacity: 0.72;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5 12 4l9 6.5V20a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5 12 4l9 6.5V20a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.depost-lp-breadcrumb--hero-follow .depost-lp-breadcrumb__item:first-child a:hover,
.depost-lp-breadcrumb--hero-follow .depost-lp-breadcrumb__item:first-child a:focus-visible {
	color: #475569;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.depost-lp-breadcrumb--hero-follow .depost-lp-breadcrumb__item.is-current span {
	display: inline;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	color: #94a3b8;
	font-weight: 400;
	overflow-wrap: break-word;
	word-break: normal;
	white-space: normal;
}

@media (max-width: 767px) {
	.depost-lp-breadcrumb-bar {
		--depost-breadcrumb-pad-x: clamp(1rem, 4vw, 1.25rem);
	}
}

@media (min-width: 768px) {
	.depost-lp-breadcrumb-bar > .depost-lp-breadcrumb-bar__inner {
		padding-block: 0.62rem 0.66rem;
	}

	.depost-lp-breadcrumb__list {
		font-size: 0.78rem;
	}
}

/* Labo LP：直下の青帯と同色にして自然に接続 */
.depost-carshop .depost-lp-breadcrumb-bar {
	background: var(--dc-blue-band, #1f3b95);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.depost-carshop .depost-lp-breadcrumb-bar > .depost-lp-breadcrumb-bar__inner {
	padding-block: 0.52rem 0.48rem;
}

.depost-carshop .depost-lp-breadcrumb__list,
.depost-carshop .depost-lp-breadcrumb__item.is-current,
.depost-carshop .depost-lp-breadcrumb--hero-follow .depost-lp-breadcrumb__item.is-current span {
	color: rgba(255, 255, 255, 0.62);
}

.depost-carshop .depost-lp-breadcrumb__item a,
.depost-carshop .depost-lp-breadcrumb--hero-follow .depost-lp-breadcrumb__item:first-child a {
	color: rgba(255, 255, 255, 0.82);
}

.depost-carshop .depost-lp-breadcrumb__item a:hover,
.depost-carshop .depost-lp-breadcrumb__item a:focus-visible,
.depost-carshop .depost-lp-breadcrumb--hero-follow .depost-lp-breadcrumb__item:first-child a:hover,
.depost-carshop .depost-lp-breadcrumb--hero-follow .depost-lp-breadcrumb__item:first-child a:focus-visible {
	color: rgba(255, 255, 255, 0.95);
}

.depost-carshop .depost-lp-breadcrumb__item:not(:last-child)::after {
	color: rgba(255, 255, 255, 0.38);
}

.depost-carshop .depost-lp-breadcrumb--hero-follow .depost-lp-breadcrumb__item:first-child a::before {
	opacity: 0.85;
}

/* select-brands：パンくずをナビと同色・区切り線なし */
.depost-lp-sub--select-brands .depost-lp-breadcrumb-bar {
	background: #fbfcfd;
	border-bottom: 1px solid #eef2f6;
}

.depost-lp-sub--select-brands .depost-lp-breadcrumb-bar > .depost-lp-breadcrumb-bar__inner {
	padding-block-start: 0.15rem;
}
