
	/* ▼▼ 調整用の変数 ▼▼ */
	.cc-lp {
		--cc-accent: #ff8a00;
		/* アクセント（ピンク） */
		--cc-accent-2: #ff8a00;
		/* サブアクセント */
		--cc-ink: #2b2b2b;
		/* 本文文字色 */
		--cc-muted: #6b6b6b;
		/* 補足文字色 */
		--cc-line: #ececec;
		/* 罫線 */
		--cc-bg-soft: #f7f7f5;
		/* うすい背景 */
		--cc-radius: 18px;
		/* 角丸 */
		--cc-gap: 32px;
		/* セクション間の余白 */
		--cc-maxw: 1080px;
		/* 中身の最大幅 */
	}

	/* ▲▲ 変数ここまで ▲▲ */

	.cc-lp {
		color: var(--cc-ink);
		line-height: 1.9;
		font-feature-settings: "palt";
		max-width: var(--cc-maxw);
		margin: 0 auto;
	}

	.cc-lp img {
		max-width: 100%;
		display: block;
	}

	/* 共通：カラープレースホルダー */
	.cc-ph {
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-weight: bold;
		letter-spacing: .08em;
		text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
		border-radius: var(--cc-radius);
		overflow: hidden;
	}

	/* 共通：英字見出し + 和文サブ */
	.cc-eyebrow {
		display: inline-block;
		font-size: 13px;
		letter-spacing: .22em;
		font-weight: 700;
		color: var(--cc-accent);
		margin-bottom: 10px;
	}

	.cc-title {
		font-size: clamp(24px, 4vw, 40px);
		font-weight: 800;
		line-height: 1.35;
		margin: 0 0 18px;
	}

	.cc-lead {
		color: var(--cc-muted);
		font-size: 15px;
		max-width: 760px;
	}

	/* ---------- HERO ---------- */
	.cc-hero {
		position: relative;
		border-radius: var(--cc-radius);
		overflow: hidden;
		margin-bottom: var(--cc-gap);
	}

	.cc-hero .cc-ph {
		height: clamp(260px, 42vw, 520px);
		border-radius: 0;
		background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
		font-size: 30px;
	}

	/* hero は画像を全面カバー表示 */
	.cc-hero>img {
		width: 100%;
		height: clamp(260px, 42vw, 520px);
		object-fit: cover;
	}

	/* コピーの視認性を上げる暗いオーバーレイ */
	.cc-hero::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 55%);
		pointer-events: none;
	}

	.cc-hero-copy {
		z-index: 1;
	}

	.cc-hero-copy {
		position: absolute;
		left: clamp(20px, 5vw, 56px);
		bottom: clamp(24px, 5vw, 48px);
		right: 20px;
		color: #fff;
	}

	.cc-hero-copy h1 {
		font-size: clamp(26px, 3vw, 42px);
		font-weight: 800;
		line-height: 1.25;
		margin: 0 0 12px;
		text-shadow: 0 3px 18px rgba(0, 0, 0, .4);
	}

	.cc-hero-copy p {
		font-size: clamp(14px, 2vw, 18px);
		text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
		max-width: 620px;
	}

	/* ---------- セクション共通枠 ---------- */
	.cc-section {
		margin-bottom: calc(var(--cc-gap) * 1.6);
	}

	.cc-section-head {
		text-align: center;
		margin-bottom: 40px;
	}

	.cc-section-head .cc-lead {
		margin: 0 auto;
	}

	/* ---------- 車両カード（2カラム） ---------- */
	.cc-cards {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

	.cc-card {
		background: #fff;
		border: 1px solid var(--cc-line);
		border-radius: var(--cc-radius);
		overflow: hidden;
		display: flex;
		flex-direction: column;
		transition: transform .25s ease, box-shadow .25s ease;
	}

	.cc-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
	}

	.cc-card .cc-ph {
		height: 240px;
		border-radius: 0;
		font-size: 24px;
	}

	/* カード画像：高さを揃え、画像は切り取らず全体表示（contain） */
	.cc-card-media {
		height: 240px;
		background: var(--cc-bg-soft);
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}

	.cc-card-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.cc-card-body {
		padding: 24px 24px 28px;
		display: flex;
		flex-direction: column;
		flex: 1;
	}

	.cc-card-name {
		font-size: 26px;
		font-weight: 800;
		margin: 0 0 4px;
		letter-spacing: .04em;
	}

	.cc-card-type {
		color: var(--cc-muted);
		font-size: 13px;
		margin: 0 0 14px;
	}

	.cc-card-desc {
		font-size: 14px;
		color: var(--cc-ink);
		margin: 0 0 18px;
	}

	.cc-badges {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin-bottom: 18px;
	}

	.cc-badge {
		font-size: 12px;
		padding: 5px 12px;
		border-radius: 999px;
		background: var(--cc-bg-soft);
		color: var(--cc-muted);
		border: 1px solid var(--cc-line);
	}

	.cc-badge.is-yes {
		color: #1a8f4c;
		background: #eafaf0;
		border-color: #cdeede;
	}

	.cc-badge.is-no {
		color: #c0392b;
		background: #fdeeec;
		border-color: #f6d4cf;
	}

	.cc-price {
		margin: auto 0 18px;
		font-size: 15px;
		color: var(--cc-muted);
	}

	.cc-price b {
		font-size: 30px;
		color: #1a8f4c;
		font-weight: 800;
		margin: 0 2px;
	}

	.cc-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 14px 22px;
		border-radius: 999px;
		background: var(--cc-accent);
		color: #fff;
		font-weight: 700;
		font-size: 15px;
		text-decoration: none;
		transition: opacity .2s ease, transform .2s ease;
	}

	.cc-btn:hover {
		opacity: .9;
		transform: translateY(-2px);
		color: #fff;
	}

	.cc-btn::after {
		content: "→";
	}

	.cc-btn.is-ghost {
		background: transparent;
		color: var(--cc-accent);
		border: 2px solid var(--cc-accent);
	}

	/* ---------- 詳細セクション ---------- */
	.cc-detail {
		display: grid;
		grid-template-columns: 1.1fr 1fr;
		gap: 40px;
		align-items: start;
		padding: 40px 0;
		border-top: 1px solid var(--cc-line);
	}

	.cc-detail.is-reverse .cc-detail-media {
		order: 2;
	}

	.cc-detail-media {
		background: var(--cc-bg-soft);
		border-radius: var(--cc-radius);
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		/* 画像の縦横比が違っても枠を揃える */
		aspect-ratio: 4 / 3;
	}

	.cc-detail-media .cc-ph {
		height: 320px;
		font-size: 22px;
	}

	.cc-detail-img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.cc-detail-body h3 {
		font-size: 30px;
		font-weight: 800;
		margin: 0 0 6px;
	}

	.cc-detail-body .cc-card-type {
		font-size: 14px;
		margin-bottom: 16px;
	}

	/* スペック表 */
	.cc-spec {
		width: 100%;
		border-collapse: collapse;
		margin: 20px 0 24px;
		font-size: 14px;
	}

	.cc-spec th,
	.cc-spec td {
		text-align: left;
		padding: 12px 14px;
		border-bottom: 1px solid var(--cc-line);
		vertical-align: top;
	}

	.cc-spec th {
		width: 42%;
		color: var(--cc-muted);
		font-weight: 700;
		background: var(--cc-bg-soft);
	}

	/* ドキュメントリンク */
	.cc-docs {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 8px;
	}

	.cc-doc {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 10px 16px;
		border: 1px solid var(--cc-line);
		border-radius: 10px;
		font-size: 13px;
		text-decoration: none;
		color: var(--cc-ink);
		background: #fff;
		transition: border-color .2s ease, color .2s ease;
	}

	.cc-doc::before {
		content: "📄";
	}

	.cc-doc:hover {
		border-color: var(--cc-accent);
		color: var(--cc-accent);
	}

	/* ---------- ギャラリー（横スクロール） ---------- */
	.cc-gallery-wrap {
		position: relative;
		margin-top: 24px;
	}

	/* スクロールする本体 */
	.cc-gallery {
		--cc-gh: 260px;
		/* ギャラリーの高さ（1行分） */
		display: flex;
		gap: 14px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		padding: 4px 4px 16px;
		/* 下はスクロールバー用の余白 */
		scrollbar-width: thin;
		scrollbar-color: var(--cc-accent) var(--cc-line);
	}

	.cc-gallery::-webkit-scrollbar {
		height: 8px;
	}

	.cc-gallery::-webkit-scrollbar-track {
		background: var(--cc-line);
		border-radius: 999px;
	}

	.cc-gallery::-webkit-scrollbar-thumb {
		background: var(--cc-accent);
		border-radius: 999px;
	}

	/* 各カット：高さ固定・幅は画像比率に追従（全体表示＝切り取らない） */
	.cc-gitem {
		flex: 0 0 auto;
		height: var(--cc-gh);
		/* 画像が読み込まれる前でも幅を確保（scrollWidth が 0 にならずボタン判定が安定） */
		min-width: calc(var(--cc-gh) * 0.75);
		scroll-snap-align: center;
		border-radius: 14px;
		overflow: hidden;
		background: var(--cc-bg-soft);
		box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
		cursor: pointer;
	}

	.cc-gitem img {
		height: 100%;
		width: auto;
		/* 高さ基準で幅は比率どおり → 縦横問わず全体が見える */
		max-width: none;
		object-fit: cover;
		/* 高さいっぱい。幅は自然サイズなので実質トリミングなし */
		display: block;
		transition: transform .3s ease, filter .2s ease;
	}

	.cc-gitem:hover img {
		transform: scale(1.05);
		filter: brightness(1.05);
	}

	/* 左右スクロールボタン */
	.cc-gal-btn {
		position: absolute;
		top: calc((var(--cc-gh, 260px) / 2) + 4px);
		transform: translateY(-50%);
		z-index: 3;
		width: 44px;
		height: 44px;
		border: none;
		border-radius: 50%;
		background: rgba(255, 255, 255, .92);
		box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
		color: #333;
		font-size: 18px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background .2s ease, transform .2s ease, opacity .2s ease;
	}

	.cc-gal-btn:hover {
		background: #fff;
	}

	.cc-gal-btn:active {
		transform: translateY(-50%) scale(.94);
	}

	.cc-gal-btn.is-prev {
		left: -6px;
	}

	.cc-gal-btn.is-next {
		right: -6px;
	}

	/* 端に来たら薄く無効化 */
	.cc-gal-btn[disabled] {
		opacity: 0;
		pointer-events: none;
	}

	/* ---------- ライトボックス（拡大表示） ---------- */
	.cc-lb {
		position: fixed;
		inset: 0;
		z-index: 9999;
		display: none;
		align-items: center;
		justify-content: center;
		background: rgba(0, 0, 0, .88);
		padding: 24px;
		opacity: 0;
		transition: opacity .25s ease;
	}

	.cc-lb.is-open {
		display: flex;
		opacity: 1;
	}

	.cc-lb img {
		max-width: 92vw;
		max-height: 88vh;
		width: auto;
		height: auto;
		border-radius: 10px;
		box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
		-webkit-user-select: none;
		user-select: none;
		pointer-events: none;
		/* 右クリック保存以外の誤操作を防止 */
	}

	.cc-lb-btn {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 52px;
		height: 52px;
		border: none;
		border-radius: 50%;
		background: rgba(255, 255, 255, .15);
		color: #fff;
		font-size: 24px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background .2s ease;
	}

	.cc-lb-btn:hover {
		background: rgba(255, 255, 255, .3);
	}

	.cc-lb-prev {
		left: 16px;
	}

	.cc-lb-next {
		right: 16px;
	}

	.cc-lb-close {
		position: absolute;
		top: 16px;
		right: 16px;
		width: 46px;
		height: 46px;
		border: none;
		border-radius: 50%;
		background: rgba(255, 255, 255, .15);
		color: #fff;
		font-size: 26px;
		line-height: 1;
		cursor: pointer;
		transition: background .2s ease;
	}

	.cc-lb-close:hover {
		background: rgba(255, 255, 255, .3);
	}

	.cc-lb-count {
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		color: #fff;
		font-size: 14px;
		letter-spacing: .1em;
		background: rgba(0, 0, 0, .4);
		padding: 6px 14px;
		border-radius: 999px;
	}

	@media (max-width: 520px) {
		.cc-lb-btn {
			width: 42px;
			height: 42px;
			font-size: 20px;
		}

		.cc-lb-prev {
			left: 8px;
		}

		.cc-lb-next {
			right: 8px;
		}
	}

	/* ---------- お問い合わせ / LINE ---------- */
	.cc-contact {
		text-align: center;
		background: var(--cc-bg-soft);
		border-radius: var(--cc-radius);
		padding: clamp(32px, 6vw, 64px) 24px;
		margin-top: var(--cc-gap);
	}

	.cc-line-btn {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		margin-top: 20px;
		padding: 16px 32px;
		border-radius: 999px;
		background: #06c755;
		color: #fff;
		font-weight: 800;
		font-size: 17px;
		text-decoration: none;
		box-shadow: 0 10px 26px rgba(6, 199, 85, .35);
		transition: transform .2s ease;
	}

	.cc-line-btn:hover {
		transform: translateY(-3px);
	}

	.cc-line-btn::before {
		content: "LINE";
		font-size: 13px;
		background: rgba(255, 255, 255, .25);
		padding: 4px 8px;
		border-radius: 6px;
	}

	/* LINE 画像バナー */
	.cc-line-banner {
		margin: 24px 0 0;
	}

	.cc-line-banner a {
		display: inline-block;
		transition: transform .2s ease, box-shadow .2s ease;
		border-radius: 12px;
	}

	.cc-line-banner a:hover {
		transform: translateY(-3px);
		box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
	}

	.cc-line-banner img {
		border-radius: 12px;
		max-width: 480px;
		width: 100%;
	}

	/* ---------- レスポンシブ ---------- */
	@media (max-width: 860px) {
		.cc-cards {
			grid-template-columns: 1fr;
		}

		.cc-detail {
			grid-template-columns: 1fr;
			gap: 24px;
			padding: 32px 0;
		}

		.cc-detail.is-reverse .cc-detail-media {
			order: 0;
		}

		.cc-detail-media .cc-ph {
			height: 240px;
		}

		.cc-gallery {
			--cc-gh: 220px;
		}
	}

	@media (max-width: 520px) {
		.cc-lp {
			line-height: 1.8;
		}

		.cc-card-name,
		.cc-detail-body h3 {
			font-size: 22px;
		}

		.cc-price b {
			font-size: 26px;
		}

		.cc-gallery {
			--cc-gh: 170px;
		}

		/* スマホはスワイプ主体：ボタンは端に小さめで重ねる */
		.cc-gal-btn {
			width: 38px;
			height: 38px;
			font-size: 16px;
		}

		.cc-gal-btn.is-prev {
			left: 2px;
		}

		.cc-gal-btn.is-next {
			right: 2px;
		}
	}

	.btn_close input {
		color: #0ba35c;
		text-decoration: underline;
		font-weight: 600;
		cursor: pointer;
		border: none;
		font-size: 16px;
		background: none;
	}

