/**
 * 輸入車6エリアハブ・仮想ルート（明るいトーン／アクセント赤）
 */

/* ===========================================================
   親 Gensen テーマの `body { min-width: 1330px }` を無効化。
   これが残ると TB/SP 幅でも PC レイアウトのまま横スクロールになり、
   media query が事実上効かない（= レスポンシブ非対応に見える）主因。
   carshop-support と同じ手法で `#body` を二重指定して詳細度を上げ確実に上書き。
   =========================================================== */
body.depost-lp,
body.depost-lp#body {
	min-width: 0;
	max-width: 100%;
}
body.depost-lp #main_contents,
body.depost-lp #main,
body.depost-lp #main_col,
body.depost-lp#body #main_contents,
body.depost-lp#body #main,
body.depost-lp#body #main_col {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: clip;
}
body.depost-lp.fix_top.header_fix #header_top,
body.depost-lp #header_top,
body.depost-lp#body.fix_top.header_fix #header_top,
body.depost-lp#body #header_top {
	min-width: 0 !important;
	max-width: 100% !important;
	width: 100% !important;
}

.depost-lp-shell {
	--depost-lp-bg: #f6f7f9;
	--depost-lp-card: #ffffff;
	--depost-lp-text: #1a1a1a;
	--depost-lp-muted: #5c6370;
	--depost-lp-accent: #c41e3a;
	--depost-lp-radius: 12px;
	--depost-lp-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	background: var(--depost-lp-bg);
	color: var(--depost-lp-text);
	font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
	line-height: 1.6;
}

/* エリアTOPは デポスト標準で明るいベース */
.depost-lp-area.depost-lp-shell {
	background: #fff;
}

.depost-lp-lead--emph {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--depost-lp-text);
}

.depost-lp-section--area-lead {
	padding-top: 1.25rem;
	padding-bottom: 0.5rem;
}

/* ----- エリアTOPヒーロー（エリアTOPヒーロー相当・Tailwind なし） -----
   固定ヘッダー分の余白は site-header.css の `#main_contents { padding-top: var(--depost-main-pad-top) }`
   に任せる（ヘッダー直下から main_contents が始まる）。ヒーロー側では余白を取らない。 */
.depost-lp-area-hero {
	background: #ffffff;
	margin: 0;
	padding: 0;
}

.depost-lp-area-hero__fv {
	position: relative;
}

.depost-lp-area-hero__pc {
	display: none;
	position: relative;
	overflow: hidden;
	background: #ffffff;
}

/* __pc-bg は元々 position:absolute の背景レイヤだったが、blur を ::before に移したので
   ここでは <img> を中央配置するための flex コンテナに役割変更。 */
.depost-lp-area-hero__pc-bg {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0;
	margin: 0;
	background: transparent !important;
	line-height: 0;
}

.depost-lp-area-hero__pc-bg img,
.depost-lp-area-hero__pc-img {
	position: relative;
	left: auto !important;
	top: auto !important;
	transform: none !important;
	width: auto !important;
	height: auto !important;
	max-width: min(100%, 1280px) !important;
	max-height: min(72vh, 720px);
	object-fit: contain;
	object-position: center center;
	display: block;
	z-index: 3;
	margin: 0;
	border-radius: 0;
	box-shadow: none;
}

.depost-lp-area-hero__pc-fg {
	position: relative;
	z-index: 1;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: flex-end;
}

.depost-lp-area-hero__pc-fg img {
	width: 75%;
	max-width: 960px;
	height: auto;
	display: block;
}

.depost-lp-area-hero__sp {
	display: block;
	position: relative;
	min-height: min(42vh, 520px);
}

.depost-lp-area-hero__sp img,
.depost-lp-area-hero__sp-img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
	display: block;
}

@media (min-width: 1024px) {
	.depost-lp-area-hero__pc {
		display: block;
	}

	.depost-lp-area-hero__sp {
		display: none;
	}
}

/* H1帯（depost-lp + 当社デザイン融合・グラデ＋アクセント赤バー＋メリハリ階層） */
.depost-lp-area-hero__band {
	position: relative;
	background: linear-gradient(135deg, #1f2a3a 0%, #2c3850 50%, #1a2333 100%);
	padding: 1.4rem 1rem 1.55rem;
	text-align: center;
	overflow: hidden;
}

.depost-lp-area-hero__band::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent 0%, var(--depost-lp-accent, #c41e3a) 25%, var(--depost-lp-accent, #c41e3a) 75%, transparent 100%);
}

.depost-lp-area-hero__band::after {
	content: '';
	position: absolute;
	right: -8%;
	top: -50%;
	width: 60%;
	height: 200%;
	background: radial-gradient(ellipse at center, rgba(196, 30, 58, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

@media (min-width: 768px) {
	.depost-lp-area-hero__band {
		padding: 1.7rem 1.5rem 1.85rem;
	}
}

.depost-lp-area-hero__band-inner {
	position: relative;
	z-index: 2;
	max-width: 80rem;
	margin: 0 auto;
}

.depost-lp-area-hero__h1 {
	margin: 0;
	font-size: clamp(0.92rem, 1.55vw, 1.1rem);
	font-weight: 700;
	line-height: 1.5;
	color: #ffffff;
}

.depost-lp-area-hero__h1-line {
	display: block;
}

/* 1行目=主訴求：太く・少し大きく・赤アンダーラインの「店舗名」を視覚アクセント */
.depost-lp-area-hero__h1-line--lead {
	font-size: clamp(1rem, 1.7vw, 1.2rem);
	font-weight: 800;
	letter-spacing: 0.01em;
	color: #ffffff;
	margin-bottom: 0.55rem;
	padding-bottom: 0.55rem;
	position: relative;
}

.depost-lp-area-hero__h1-line--lead::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 64px;
	height: 2px;
	background: var(--depost-lp-accent, #c41e3a);
	transform: translateX(-50%);
	border-radius: 2px;
}

/* 2行目=対応エリア《…》：細めで補助情報感を出す */
.depost-lp-area-hero__h1-line--area {
	font-size: clamp(0.78rem, 1.15vw, 0.92rem);
	font-weight: 500;
	letter-spacing: 0;
	color: #cdd5e0;
	line-height: 1.7;
	max-width: 78rem;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.depost-lp-area-hero__h1-line--lead {
		white-space: nowrap;
	}
}

/* エリアTOPではナビをヒーロー直下に */
.depost-lp-area .depost-lp-svcnav {
	border-bottom-color: #dfe3ea;
}

.depost-lp-container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

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

/* ----- ハブ（TOP内・コーポレートセクションの直下） ----- */
.depost-front-shell > .depost-lp-hub {
	border-top: 1px solid #e4e7ec;
}

.depost-lp-hub {
	padding: 2.5rem 0 2rem;
	background: linear-gradient(180deg, #ffffff 0%, #f0f2f5 100%);
	border-bottom: 1px solid #e4e7ec;
}

.depost-lp-hub__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	letter-spacing: 0.02em;
}

.depost-lp-hub__lead {
	margin: 0 0 1.75rem;
	color: var(--depost-lp-muted);
	font-size: 0.95rem;
}

.depost-lp-hub__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.depost-lp-hub-card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	height: 100%;
	padding: 1.25rem 1.35rem;
	background: var(--depost-lp-card);
	border-radius: var(--depost-lp-radius);
	box-shadow: var(--depost-lp-shadow);
	border: 1px solid #eceef2;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.depost-lp-hub-card:hover {
	border-color: rgba(196, 30, 58, 0.35);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.depost-lp-hub-card__label {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--depost-lp-accent);
}

.depost-lp-hub-card__store {
	font-size: 0.9rem;
	font-weight: 600;
}

.depost-lp-hub-card__go {
	margin-top: auto;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--depost-lp-accent);
}

/* ----- エリアTOP ----- */
.depost-lp-hero {
	background: #fff;
}

.depost-lp-hero--area {
	border-bottom: 1px solid #e4e7ec;
}

.depost-lp-hero__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 2rem 1.25rem 2.25rem;
}

.depost-lp-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--depost-lp-accent);
	letter-spacing: 0.04em;
}

.depost-lp-h1 {
	margin: 0;
	font-size: clamp(0.95rem, 1.6vw, 1.125rem);
	font-weight: 700;
	line-height: 1.45;
}

.depost-lp-h1__line1,
.depost-lp-h1__line2 {
	display: block;
}

.depost-lp-h1__line2 {
	margin-top: 0.5rem;
}

.depost-lp-lead {
	margin: 1rem 0 0;
	font-size: 0.95rem;
	color: var(--depost-lp-muted);
}

.depost-lp-section {
	padding: 2.25rem 0;
}

.depost-lp-section--muted {
	background: #eef0f3;
}

.depost-lp-h2 {
	margin: 0 0 1.25rem;
	font-size: 1.15rem;
	font-weight: 700;
}

.depost-lp-bento {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 0.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.depost-lp-card {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 1.1rem;
	background: var(--depost-lp-card);
	border-radius: var(--depost-lp-radius);
	border: 1px solid #e4e7ec;
	box-shadow: var(--depost-lp-shadow);
	text-decoration: none;
	color: inherit;
	min-height: 120px;
	transition: border-color 0.15s ease;
}

.depost-lp-card:hover {
	border-color: rgba(196, 30, 58, 0.4);
}

.depost-lp-card__abbr {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--depost-lp-accent);
}

.depost-lp-card__ja {
	font-size: 0.8rem;
	color: var(--depost-lp-muted);
}

.depost-lp-card__cta {
	margin-top: auto;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--depost-lp-text);
}

.depost-lp-store-card {
	padding: 1.25rem 1.35rem;
	background: #fff;
	border-radius: var(--depost-lp-radius);
	border: 1px solid #e4e7ec;
	max-width: 640px;
}

.depost-lp-store-name {
	margin: 0 0 0.5rem;
	font-weight: 700;
}

.depost-lp-address {
	margin: 0;
	font-size: 0.9rem;
	color: var(--depost-lp-muted);
}

/* ----- メーカーLP ----- */
.depost-lp-hero--maker {
	background: #111;
}

.depost-lp-maker-fv__pc {
	position: relative;
	display: none;
	overflow: hidden;
}

.depost-lp-maker-fv__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.depost-lp-maker-fv__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.depost-lp-maker-fv__pc-inner {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-bottom: 0;
}

.depost-lp-maker-fv__pc-inner img {
	width: 75%;
	max-width: 960px;
	height: auto;
	display: block;
}

.depost-lp-maker-fv__sp {
	display: block;
}

.depost-lp-maker-fv__sp img {
	width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 1024px) {
	.depost-lp-maker-fv__pc {
		display: block;
	}

	.depost-lp-maker-fv__sp {
		display: none;
	}
}

.depost-lp-hero__inner--placeholder {
	min-height: 140px;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #2a2a2a, #111);
	color: #fff;
}

.depost-lp-h1-band {
	background: #2c2c2c;
	padding: 0.85rem 1rem;
}

@media (min-width: 768px) {
	.depost-lp-h1-band {
		padding: 1rem 1.5rem;
	}
}

.depost-lp-h1--inverse {
	color: #fff;
	text-align: center;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
}

.depost-lp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.25rem 0 0;
}

.depost-lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.15rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	border: 2px solid transparent;
}

.depost-lp-btn--primary {
	background: var(--depost-lp-accent);
	color: #fff;
}

.depost-lp-btn--primary:hover {
	filter: brightness(1.05);
}

.depost-lp-btn--ghost {
	background: #fff;
	color: var(--depost-lp-text);
	border-color: #d5d8de;
}

.depost-lp-btn--ghost:hover {
	border-color: var(--depost-lp-accent);
	color: var(--depost-lp-accent);
}

/* ----- MVP-2: エリア内サービスナビ・サブページ ----- */
.depost-lp-svcnav {
	background: #fff;
	border-bottom: 1px solid #e4e7ec;
	position: sticky;
	top: 0;
	z-index: 30;
}

.depost-lp-svcnav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	list-style: none;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0.65rem 1rem;
}

@media (min-width: 768px) {
	.depost-lp-svcnav__list {
		padding: 0.65rem 1.25rem;
		flex-wrap: nowrap;
		justify-content: center;
	}
}

.depost-lp-svcnav__link {
	display: inline-block;
	padding: 0.4rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--depost-lp-text);
	text-decoration: none;
	border-radius: 999px;
	border: 1px solid #e0e3e8;
	background: #f9fafb;
}

.depost-lp-svcnav__link:hover {
	border-color: rgba(196, 30, 58, 0.45);
	color: var(--depost-lp-accent);
}

.depost-lp-svcnav__link.is-active {
	background: var(--depost-lp-accent);
	color: #fff;
	border-color: var(--depost-lp-accent);
}

/* select-brands：ナビ上余白・パンくずとの背景統一 */
.depost-lp-sub--select-brands .depost-lp-svcnav {
	background: #fbfcfd;
	border-bottom: none;
}

.depost-lp-sub--select-brands .depost-lp-svcnav__list {
	padding-top: 1rem;
	padding-bottom: 0.55rem;
}

@media (min-width: 768px) {
	.depost-lp-sub--select-brands .depost-lp-svcnav__list {
		padding-top: 1.1rem;
		padding-bottom: 0.6rem;
	}
}

.depost-lp-hero--sub {
	background: #fff;
}

.depost-lp-h1-band--solo {
	border-top: none;
}

.depost-lp-sub-fv__pc-inner img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.depost-lp-actions--tight {
	margin-top: 1rem;
}

.depost-lp-prose .depost-lp-h2 {
	margin-top: 0;
}

.depost-lp-dl {
	display: grid;
	grid-template-columns: minmax(6rem, 8rem) 1fr;
	gap: 0.65rem 1rem;
	margin: 1.5rem 0 0;
	font-size: 0.95rem;
}

.depost-lp-dl dt {
	margin: 0;
	font-weight: 700;
	color: var(--depost-lp-muted);
}

.depost-lp-dl dd {
	margin: 0;
}

.depost-lp-dl a {
	color: var(--depost-lp-accent);
	font-weight: 600;
}

.depost-lp-note {
	margin: 1.25rem 0 0;
	font-size: 0.85rem;
	color: var(--depost-lp-muted);
}

.depost-lp-note a {
	color: var(--depost-lp-accent);
	font-weight: 600;
}

.depost-lp-callout {
	padding: 1rem 1.25rem;
	background: #fff8f0;
	border: 1px solid #f0d8c8;
	border-radius: var(--depost-lp-radius);
	font-size: 0.9rem;
}

.depost-lp-section--inquiry .depost-carshop-contact {
	margin-top: 1.5rem;
}

.depost-lp-company .depost-lp-h1-band--solo {
	border-top: 1px solid #333;
}

.depost-lp-actions--subfooter {
	margin-top: 2rem;
}

/* メーカーLP：HWミラーの comparison/diagnostics は使わず自作レンダラで描画する。
   念のため 旧実装由来のピンク帯背景がほかで残っても透明化。 */
.depost-lp-maker .depost-lp-section [class*="bg-[rgba(255,180,180"] {
	background: transparent !important;
}

/* ============================================================
   会社概要ページ (dpc-*)
   ============================================================ */

.dpc-hero {
	background: linear-gradient(135deg, #0f172a 0%, #1a2640 55%, #0f1e30 100%);
	padding: 52px 24px 48px;
	text-align: center;
}

.dpc-hero__inner {
	max-width: 760px;
	margin: 0 auto;
}

.dpc-hero__eyebrow {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: rgba(255,255,255,0.38);
	margin: 0 0 12px;
	text-transform: uppercase;
}

.dpc-hero__h1 {
	font-size: clamp(1.4rem, 3.8vw, 2rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 14px;
	letter-spacing: -0.01em;
	line-height: 1.25;
}

.dpc-hero__lead {
	font-size: clamp(0.82rem, 1.7vw, 0.93rem);
	color: rgba(255,255,255,0.6);
	line-height: 1.8;
	margin: 0;
}

/* select-brands: サービスナビ直下のヒーロー帯で H1 を可視（dpc-* と共通トーン） */
.depost-lp-sub--select-brands .depost-lp-select-brands-hero {
	padding-top: clamp(36px, 6vw, 48px);
	padding-bottom: clamp(36px, 6vw, 44px);
}

/* Body: info + map 2カラム */
.dpc-body {
	background: #f4f6f9;
	padding: 52px 20px 56px;
}

.dpc-body__inner {
	max-width: 1040px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
}

@media (max-width: 767px) {
	.dpc-body__inner {
		grid-template-columns: 1fr;
	}
}

/* 会社情報 */
.dpc-info {
	background: #fff;
	border-radius: 16px;
	padding: 32px 28px;
	box-shadow: 0 2px 14px rgba(15, 23, 42, 0.07);
}

@media (max-width: 599px) {
	.dpc-info {
		padding: 24px 18px;
	}
}

.dpc-info__eyebrow {
	display: block;
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #c41e3a;
	margin-bottom: 6px;
}

.dpc-info__h2 {
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 24px;
	line-height: 1.3;
}

/* DL */
.dpc-dl {
	margin: 0;
	padding: 0;
	border-top: 1px solid #eef0f4;
}

.dpc-dl__row {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 0;
	border-bottom: 1px solid #eef0f4;
	padding: 13px 0;
}

.dpc-dl__term {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	color: #94a3b8;
	letter-spacing: 0.04em;
	padding-right: 10px;
	line-height: 1.5;
}

.dpc-dl__desc {
	margin: 0;
	font-size: 0.88rem;
	color: #1e293b;
	line-height: 1.6;
}

.dpc-dl__tel {
	font-size: 1.15rem;
	font-weight: 800;
	color: #c41e3a;
	text-decoration: none;
	letter-spacing: 0.03em;
}

.dpc-dl__tel:hover {
	text-decoration: underline;
}

.dpc-dl__line {
	color: #06c755;
	font-weight: 700;
	text-decoration: none;
}

.dpc-dl__line:hover {
	text-decoration: underline;
}

/* LINE QR（company ページ） */
.dpc-dl__qr-wrap {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	margin-top: 8px;
	text-decoration: none;
}

.dpc-dl__qr {
	display: block;
	width: 88px;
	height: 88px;
	border-radius: 8px;
	border: 1.5px solid #e8f8ec;
	object-fit: contain;
	background: #fff;
	transition: transform 0.15s;
}

.dpc-dl__qr-wrap:hover .dpc-dl__qr {
	transform: scale(1.05);
}

.dpc-dl__qr-caption {
	font-size: 0.7rem;
	color: #06c755;
	font-weight: 600;
}

.dpc-dl__map-link {
	display: inline-block;
	margin-top: 4px;
	font-size: 0.75rem;
	color: #3b6de8;
	text-decoration: none;
	font-weight: 600;
}

.dpc-dl__map-link:hover {
	text-decoration: underline;
}

/* CTA ボタン群 */
.dpc-info__cta {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dpc-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 20px;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.15s, transform 0.15s;
	width: 100%;
	box-sizing: border-box;
}

.dpc-cta-btn:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}

.dpc-cta-btn--tel  { background: #c41e3a; color: #fff; }
.dpc-cta-btn--line { background: #06c755; color: #fff; }
.dpc-cta-btn--form { background: #0f172a; color: #fff; }

/* Map */
.dpc-map {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dpc-map__frame-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 68%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(15, 23, 42, 0.1);
}

.dpc-map__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.dpc-map__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	align-self: flex-end;
	font-size: 0.78rem;
	color: #3b6de8;
	font-weight: 600;
	text-decoration: none;
}

.dpc-map__link:hover {
	text-decoration: underline;
}

/* Coverage */
.dpc-coverage {
	background: #fff;
	padding: 48px 20px;
	border-top: 1px solid #eef0f4;
}

.dpc-coverage__inner {
	max-width: 860px;
	margin: 0 auto;
}

.dpc-coverage__eyebrow {
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #c41e3a;
	margin: 0 0 8px;
}

.dpc-coverage__h2 {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 16px;
}

.dpc-coverage__text {
	font-size: 0.85rem;
	color: #4b5563;
	line-height: 1.85;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 18px 20px;
	margin: 0 0 10px;
}

.dpc-coverage__note {
	font-size: 0.78rem;
	color: #94a3b8;
	margin: 0;
}

/* Sub Footer */
.dpc-subfooter {
	background: #f4f6f9;
	border-top: 1px solid #e2e8f0;
	padding: 28px 20px;
	text-align: center;
}

.dpc-subfooter__copyright {
	font-size: 0.72rem;
	color: #b0b8c4;
	margin: 0 0 12px;
	letter-spacing: 0.02em;
}

.dpc-subfooter__note {
	font-size: 0.78rem;
	color: #94a3b8;
	margin: 0 0 16px;
	line-height: 1.7;
}

.dpc-subfooter__note a {
	color: #c41e3a;
	font-weight: 600;
	text-decoration: none;
}

.dpc-subfooter__note a:hover {
	text-decoration: underline;
}

.dpc-subfooter__links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.dpc-subfooter__link {
	display: inline-flex;
	align-items: center;
	padding: 10px 24px;
	border: 1.5px solid #d1d5db;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #374151;
	text-decoration: none;
	background: #fff;
	transition: border-color 0.15s, color 0.15s;
}

.dpc-subfooter__link:hover {
	border-color: #c41e3a;
	color: #c41e3a;
}

/* ============================================================
   特定商取引法ページ (dpl-*)
   ============================================================ */

.dpl-hero {
	background: linear-gradient(135deg, #0f172a 0%, #1e2a3a 60%, #162032 100%);
	padding: 52px 24px 48px;
	text-align: center;
}

.dpl-hero__inner {
	max-width: 720px;
	margin: 0 auto;
}

.dpl-hero__eyebrow {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: rgba(255,255,255,0.38);
	margin: 0 0 12px;
	text-transform: uppercase;
}

.dpl-hero__h1 {
	font-size: clamp(1.35rem, 3.5vw, 1.9rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 14px;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.dpl-hero__lead {
	font-size: clamp(0.82rem, 1.7vw, 0.92rem);
	color: rgba(255,255,255,0.58);
	line-height: 1.8;
	margin: 0;
}

/* Table Section */
.dpl-table-section {
	background: #f4f6f9;
	padding: 56px 20px 64px;
}

.dpl-table-section__inner {
	max-width: 860px;
	margin: 0 auto;
}

.dpl-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(15, 23, 42, 0.07);
	border: 1px solid #e2e8f0;
}

.dpl-dl {
	margin: 0;
	padding: 0;
}

.dpl-dl__row {
	display: grid;
	grid-template-columns: minmax(140px, 220px) 1fr;
	gap: 0;
	border-bottom: 1px solid #eef0f4;
}

.dpl-dl__row:last-child {
	border-bottom: none;
}

.dpl-dl__row--even .dpl-dl__term,
.dpl-dl__row--even .dpl-dl__desc {
	background: #fafbfd;
}

.dpl-dl__term {
	margin: 0;
	padding: 18px 20px 18px 24px;
	font-size: 0.82rem;
	font-weight: 700;
	color: #374151;
	background: #fff;
	border-right: 1px solid #eef0f4;
	display: flex;
	align-items: flex-start;
	line-height: 1.5;
}

.dpl-dl__desc {
	margin: 0;
	padding: 18px 24px;
	font-size: 0.88rem;
	color: #4b5563;
	line-height: 1.75;
	background: #fff;
}

.dpl-dl__row--even .dpl-dl__desc {
	background: #fafbfd;
}

.dpl-dl__desc a {
	color: #c41e3a;
	font-weight: 600;
	text-decoration: none;
}

.dpl-dl__desc a:hover {
	text-decoration: underline;
}

@media (max-width: 599px) {
	.dpl-dl__row {
		grid-template-columns: 1fr;
	}

	.dpl-dl__term {
		padding: 14px 16px 6px;
		border-right: none;
		border-bottom: 1px solid #eef0f4;
		font-size: 0.78rem;
		color: #64748b;
		background: #f8fafc !important;
	}

	.dpl-dl__desc {
		padding: 10px 16px 16px;
		background: #fff !important;
		font-size: 0.86rem;
	}

	.dpl-dl__row--even .dpl-dl__term {
		background: #f1f4f8 !important;
	}
}

/* セクション見出し（プライバシーポリシー + 特定商取引法区分け） */
.dpl-section-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 20px;
}

.dpl-section-head--mt {
	margin-top: 52px;
}

.dpl-section-head__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #0f172a;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	flex-shrink: 0;
}

.dpl-section-head__title {
	font-size: clamp(1.1rem, 3vw, 1.35rem);
	font-weight: 800;
	color: #0f172a;
	letter-spacing: 0.02em;
	line-height: 1.3;
	margin: 0;
}

.dpl-section-lead {
	font-size: 0.85rem;
	color: #64748b;
	line-height: 1.7;
	margin: -10px 0 20px;
}

.dpl-dl__list {
	margin: 0;
	padding: 0 0 0 1.2em;
	list-style: disc;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.dpl-dl__list li {
	font-size: inherit;
}

/* Actions */
.dpl-actions {
	margin-top: 32px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.dpl-actions__btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 13px 28px;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.15s, transform 0.15s;
}

.dpl-actions__btn:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}

.dpl-actions__btn--primary {
	background: #c41e3a;
	color: #fff;
}

.dpl-actions__btn--ghost {
	background: #fff;
	color: #374151;
	border: 1.5px solid #d1d5db;
}

.dpl-actions__btn--ghost:hover {
	border-color: #c41e3a;
	color: #c41e3a;
}

/* ============================================================
   お問い合わせページ (dpi-*)
   ============================================================ */

/* Hero */
.dpi-hero {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #1a1f2e 100%);
	padding: 56px 24px 52px;
	text-align: center;
}

.dpi-hero__inner {
	max-width: 760px;
	margin: 0 auto;
}

.dpi-hero__eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: rgba(255,255,255,0.45);
	margin: 0 0 14px;
	text-transform: uppercase;
}

.dpi-hero__h1 {
	font-size: clamp(1.45rem, 4vw, 2.1rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.35;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}

.dpi-hero__h1-store {
	display: block;
	font-size: clamp(0.9rem, 2.2vw, 1.15rem);
	font-weight: 500;
	color: rgba(255,255,255,0.55);
	margin-top: 6px;
	letter-spacing: 0.02em;
}

.dpi-hero__lead {
	font-size: clamp(0.85rem, 1.8vw, 0.95rem);
	color: rgba(255,255,255,0.65);
	line-height: 1.75;
	margin: 14px 0 0;
}

/* Contact Methods */
.dpi-methods {
	background: #f4f6f9;
	padding: 52px 20px;
}

.dpi-methods__inner {
	max-width: 1040px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 767px) {
	.dpi-methods__inner {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.dpi-methods__inner {
		grid-template-columns: 1fr 1fr;
	}
	.dpi-method--web {
		grid-column: 1 / -1;
		max-width: 420px;
		margin: 0 auto;
		width: 100%;
	}
}

.dpi-method {
	background: #fff;
	border-radius: 14px;
	padding: 32px 24px 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dpi-method:hover {
	box-shadow: 0 6px 24px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.dpi-method__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	flex-shrink: 0;
}

.dpi-method__icon svg {
	width: 26px;
	height: 26px;
}

.dpi-method--tel .dpi-method__icon {
	background: #fff0f0;
	color: #c41e3a;
}

.dpi-method--line .dpi-method__icon {
	background: transparent;
	color: #06c755;
}

/* LINE公式ロゴ画像をアイコン枠で表示 */
.dpi-method__icon--logo {
	background: transparent !important;
	border-radius: 12px;
	overflow: hidden;
	padding: 0;
}

.dpi-method__icon--logo img {
	width: 52px;
	height: 52px;
	display: block;
	object-fit: cover;
	border-radius: 12px;
}

.dpi-method--web .dpi-method__icon {
	background: #eff4ff;
	color: #3b6de8;
}

.dpi-method__label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
	margin: 0 0 10px;
}

.dpi-method__tel-num {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	font-size: clamp(1.5rem, 4vw, 1.9rem);
	font-weight: 800;
	color: #c41e3a;
	text-decoration: none;
	letter-spacing: 0.03em;
	line-height: 1.1;
	padding: 6px 0;
}

.dpi-method__tel-num:hover {
	text-decoration: underline;
}

.dpi-method__line-id {
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 6px;
	flex: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.dpi-method__hours {
	font-size: 0.8rem;
	color: #64748b;
	margin: 0 0 18px;
	line-height: 1.5;
}

/* LINE QR（inquiry ページ） */
.dpi-method__qr-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	margin-bottom: 10px;
}

.dpi-method__qr {
	display: block;
	width: 110px;
	height: 110px;
	border-radius: 10px;
	border: 2px solid #e8f8ec;
	object-fit: contain;
	background: #fff;
	transition: transform 0.15s;
}

.dpi-method__qr-wrap:hover .dpi-method__qr {
	transform: scale(1.04);
}

.dpi-method__qr-caption {
	font-size: 0.72rem;
	color: #06c755;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.dpi-method__web-features {
	list-style: none;
	padding: 0;
	margin: 0 0 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
	text-align: left;
}

.dpi-method__web-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	color: #374151;
	line-height: 1.5;
}

.dpi-method__web-features li::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #3b6de8;
	flex-shrink: 0;
}

.dpi-method__web-note {
	font-size: 0.78rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0 0 18px;
	flex: 1;
}

.dpi-method__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 13px 20px;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.15s, transform 0.15s;
	margin-top: auto;
}

.dpi-method__btn:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}

.dpi-method__btn--tel {
	background: #c41e3a;
	color: #fff;
}

.dpi-method__btn--line {
	background: #06c755;
	color: #fff;
}

.dpi-method__btn--web {
	background: #0f172a;
	color: #fff;
}

/* Form Section */
.dpi-form-section {
	background: #fff;
	padding: 60px 20px 64px;
}

.dpi-form-section__inner {
	max-width: 760px;
	margin: 0 auto;
}

.dpi-form-section__head {
	text-align: center;
	margin-bottom: 36px;
}

.dpi-form-section__eyebrow {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #c41e3a;
	margin: 0 0 10px;
}

.dpi-form-section__h2 {
	font-size: clamp(1.3rem, 3vw, 1.75rem);
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}

.dpi-form-section__desc {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.7;
	margin: 0;
}

.dpi-form-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 36px 32px;
}

@media (max-width: 599px) {
	.dpi-form-card {
		padding: 24px 18px;
		border-radius: 12px;
	}
}

/* ============================================================
   CF7 カスタムフォームスタイル（depost-cf7-* クラス）
   ============================================================ */

.depost-cf7-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.depost-cf7-row {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media (min-width: 600px) {
	.depost-cf7-row--half {
		flex-direction: row;
		gap: 16px;
	}
	.depost-cf7-row--half .depost-cf7-field {
		flex: 1;
		min-width: 0;
	}
	.depost-cf7-row--attachments {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
		align-items: stretch;
	}
}

.depost-cf7-field {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.depost-cf7-label {
	font-size: 0.82rem;
	font-weight: 700;
	color: #374151;
	display: flex;
	align-items: center;
	gap: 6px;
}

.depost-cf7-label--required::after {
	content: '必須';
	display: inline-block;
	padding: 2px 6px;
	background: #c41e3a;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: 3px;
	letter-spacing: 0.04em;
	line-height: 1.4;
}

.depost-cf7-label-note {
	font-size: 0.75rem;
	font-weight: 400;
	color: #94a3b8;
}

.depost-cf7-hint {
	font-size: 0.75rem;
	color: #94a3b8;
	margin-top: -2px;
}

.depost-cf7-input,
input.depost-cf7-input,
.wpcf7-form .depost-cf7-input {
	width: 100% !important;
	padding: 11px 13px !important;
	border: 1.5px solid #d1d5db !important;
	border-radius: 8px !important;
	font-size: 0.9rem !important;
	background: #fff !important;
	color: #1e293b !important;
	transition: border-color 0.15s, box-shadow 0.15s !important;
	box-sizing: border-box !important;
	appearance: none;
}

.depost-cf7-select,
select.depost-cf7-select,
.wpcf7-form .depost-cf7-select {
	width: 100% !important;
	padding: 11px 36px 11px 13px !important;
	border: 1.5px solid #d1d5db !important;
	border-radius: 8px !important;
	font-size: 0.9rem !important;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='%2394a3b8'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 12px center !important;
	color: #1e293b !important;
	transition: border-color 0.15s, box-shadow 0.15s !important;
	box-sizing: border-box !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	cursor: pointer;
}

.depost-cf7-textarea,
textarea.depost-cf7-textarea,
.wpcf7-form .depost-cf7-textarea,
.dpi-form-card .wpcf7-form textarea {
	width: 100% !important;
	padding: 11px 13px !important;
	border: 1.5px solid #d1d5db !important;
	border-radius: 8px !important;
	font-size: 0.9rem !important;
	background: #fff !important;
	color: #1e293b !important;
	resize: vertical !important;
	height: 120px !important;
	min-height: 120px !important;
	max-height: 200px !important;
	transition: border-color 0.15s, box-shadow 0.15s !important;
	box-sizing: border-box !important;
	font-family: inherit !important;
	line-height: 1.65 !important;
}

.depost-cf7-input:focus,
.depost-cf7-select:focus,
.depost-cf7-textarea:focus {
	outline: none !important;
	border-color: #c41e3a !important;
	box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1) !important;
}

.depost-cf7-file,
input.depost-cf7-file {
	font-size: 0.82rem !important;
	color: #64748b !important;
}

/* 送信ボタン */
.depost-cf7-submit,
input.depost-cf7-submit,
.wpcf7-form input[type="submit"].depost-cf7-submit {
	display: block !important;
	width: 100% !important;
	max-width: 360px !important;
	margin: 8px auto 0 !important;
	padding: 15px 32px !important;
	background: #c41e3a !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.05em !important;
	cursor: pointer !important;
	transition: background 0.15s, transform 0.15s !important;
}

.depost-cf7-submit:hover,
input.depost-cf7-submit:hover {
	background: #a8172e !important;
	transform: translateY(-1px) !important;
}

/* スパン（CF7が自動挿入する span.wpcf7-form-control-wrap） */
.dpi-form-card .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* バリデーションエラー */
.dpi-form-card .wpcf7-not-valid-tip {
	font-size: 0.78rem;
	color: #c41e3a;
	margin-top: 4px;
	display: block;
}

.dpi-form-card .wpcf7-response-output {
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 0.88rem;
	margin-top: 16px;
}

/* 旧スタイルの上書き（存在する場合のフォールバック） */
.dpi-form-card .wpcf7-form label,
.dpi-form-card .wpcf7-form p {
	font-size: 0.9rem;
	color: #374151;
}

.dpi-form-card .wpcf7-form input[type="text"],
.dpi-form-card .wpcf7-form input[type="email"],
.dpi-form-card .wpcf7-form input[type="tel"],
.dpi-form-card .wpcf7-form textarea,
.dpi-form-card .wpcf7-form select {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	font-size: 0.9rem;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
	box-sizing: border-box;
}

.dpi-form-card .wpcf7-form input:focus,
.dpi-form-card .wpcf7-form textarea:focus,
.dpi-form-card .wpcf7-form select:focus {
	outline: none;
	border-color: #c41e3a;
	box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.dpi-form-card .wpcf7-form input[type="submit"] {
	background: #c41e3a;
	color: #fff;
	border: none;
	padding: 15px 36px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s, transform 0.15s;
	width: 100%;
	max-width: 360px;
	display: block;
	margin: 8px auto 0;
}

.dpi-form-card .wpcf7-form input[type="submit"]:hover {
	background: #a8172e;
	transform: translateY(-1px);
}

/* Form Notes */
.dpi-form-notes {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dpi-form-notes__item {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 0.8rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

.dpi-form-notes__item svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: #94a3b8;
}

.dpi-form-notes__item a {
	color: #c41e3a;
	font-weight: 600;
	text-decoration: none;
}

.dpi-form-notes__item a:hover {
	text-decoration: underline;
}

/* Sub Footer */
.dpi-subfooter {
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
	padding: 28px 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.dpi-subfooter__link {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	border: 1.5px solid #d1d5db;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #374151;
	text-decoration: none;
	background: #fff;
	transition: border-color 0.15s, color 0.15s;
}

.dpi-subfooter__link:hover {
	border-color: #c41e3a;
	color: #c41e3a;
}

/* LP Breadcrumb styles: assets/css/site-breadcrumb-bar.css */
