@charset "UTF-8";
/* =========================================================================
   OCEAN DESIGN / 株式会社Guild
   国内自動車メーカー系サイトの構成（ヒーロー＋サムネ帯 → 3カード →
   ブランド → 大ビジュアル帯 → インフォメーション → 一覧ブロック →
   検索 → サポートタイル → フッター）を白×黄色で。
   -------------------------------------------------------------------------
   見出しの折り返し禁止:
     .cg-h1 / .cg-h2 / .cg-h3 は --ch（実効文字数。半角英数は0.55で数える）を
     受け取り、nowrap のまま画面幅から font-size を逆算する。--max で頭打ち。
   ====================================================================== */

/* -------------------------------------------------- tokens */
:root {
	--w: #ffffff;
	--g1: #f6f6f3;
	--g2: #ecece7;
	--pale: #fffcec;
	--ink: #1a1a1a;
	--ink2: #4d4d4d;
	--ink3: #8b8b86;
	--line: #e2e2dd;
	--y: #ffd200;
	--y2: #f5c000;
	--y-soft: #fff3bf;
	--dark: #232323;
	--dark2: #2e2e2e;

	--pad: 16px;
	--maxw: 1160px;
	--sec: 56px;

	--jp: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--en: "Barlow", var(--jp);
	--display: "Anton", var(--en);
}

@media (min-width: 768px) { :root { --pad: 28px; --sec: 72px; } }
@media (min-width: 1200px) { :root { --pad: 32px; --sec: 88px; } }

/* -------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--w);
	color: var(--ink);
	font-family: var(--jp);
	font-size: 15px;
	line-height: 1.85;
	font-feature-settings: "palt" 1;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p, figure, ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--y); color: var(--ink); }
:focus-visible { outline: 2px solid #0a6; outline-offset: 2px; }

.cg-skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--y); color: var(--ink); padding: 10px 18px; }
.cg-skip:focus { left: 0; }

/* -------------------------------------------------- layout */
.cg-wrap {
	width: 100%;
	max-width: calc(var(--maxw) + var(--pad) * 2);
	margin-inline: auto;
	padding-inline: var(--pad);
}
.cg-sec { padding-block: var(--sec); }
.cg-sec--tight { padding-block: calc(var(--sec) * .62); }
.cg-sec--gray { background: var(--g1); }
.cg-sec--pale { background: var(--pale); }

/*
 * 無地だったセクションに全幅の背景画像を敷く。
 * 画像は必ず白のベールで抑えて、本文の可読性を落とさない。
 * 使い方: <section class="cg-sec cg-sec--bg" style="--bg:url(...)">
 */
.cg-sec--bg { position: relative; isolation: isolate; }
.cg-sec--bg::before {
	content: "";
	position: absolute; inset: 0; z-index: -2;
	background-image: var(--bg);
	background-size: cover;
	background-position: var(--bgpos, center);
	background-repeat: no-repeat;
	filter: grayscale(.2) contrast(.95);
}
.cg-sec--bg::after {
	content: "";
	position: absolute; inset: 0; z-index: -1;
	background: var(--veil, rgba(255, 255, 255, .80));
}
/* 淡い黄色を残したいセクション用のベール */
.cg-sec--bg.cg-sec--pale { background: none; }
.cg-sec--bg.cg-sec--pale::after { background: rgba(255, 252, 236, .76); }
.cg-sec--bg.cg-sec--gray { background: none; }
.cg-sec--bg.cg-sec--gray::after { background: rgba(246, 246, 243, .80); }

/* -------------------------------------------------- headings */
.cg-h1, .cg-h2, .cg-h3 {
	white-space: nowrap;
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: .01em;
}
.cg-h1 {
	--ch: 10; --max: 46px;
	font-size: min(calc((100vw - var(--pad) * 2 - 10px) / var(--ch)), var(--max));
	font-weight: 900;
	line-height: 1.24;
}
.cg-h2 {
	--ch: 9; --max: 30px;
	font-size: min(calc((100vw - var(--pad) * 2 - 10px) / var(--ch)), var(--max));
	font-weight: 900;
}
.cg-h3 {
	--ch: 10; --max: 18px;
	font-size: min(calc((100vw - var(--pad) * 2 - 48px) / var(--ch)), var(--max));
}

/* セクション見出し（左に黄色の縦バー） */
.cg-shead {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
}
.cg-shead::before {
	content: "";
	width: 5px;
	height: 1.5em;
	background: var(--y);
	border-radius: 1px;
	flex: none;
}
/* nowrap見出しはflexで縮むと文字が切れるので縮めない */
.cg-shead > .cg-h1,
.cg-shead > .cg-h2,
.cg-shead > .cg-h3 { flex: none; min-width: 0; }

.cg-shead__en {
	font-family: var(--en); font-weight: 600; font-size: 11px;
	letter-spacing: .16em; color: var(--ink3); white-space: nowrap;
	margin-left: auto;
}

/* 大見出しのセクション（店舗マップ等） */
.cg-shead--lg { gap: 16px; margin-bottom: 18px; }
.cg-shead--lg::before { width: 7px; }
.cg-h2--lg { --max: 40px; }

.cg-lead { font-size: 14px; line-height: 1.95; color: var(--ink2); }
@media (min-width: 768px) { .cg-lead { font-size: 15px; } }

/* 本文の改行はPC専用（狭い幅で中途半端に切らない） */
.cg-br-pc { display: none; }
@media (min-width: 900px) { .cg-br-pc { display: inline; } }

/* -------------------------------------------------- buttons */
.cg-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	white-space: nowrap;
	padding: 13px 26px;
	border-radius: 999px;
	font-weight: 700; font-size: 14px;
	background: var(--y);
	color: var(--ink);
	border: 1px solid var(--y);
	transition: background .25s, border-color .25s, transform .25s;
}
.cg-btn::after {
	content: ""; width: 15px; height: 6px; flex: none; background: currentColor;
	clip-path: polygon(0 42%, 72% 42%, 72% 0, 100% 50%, 72% 100%, 72% 58%, 0 58%);
	transition: transform .25s;
}
.cg-btn:hover { background: var(--y2); border-color: var(--y2); }
.cg-btn:hover::after { transform: translateX(3px); }

.cg-btn--ghost { background: var(--w); border-color: var(--line); }
.cg-btn--ghost:hover { background: var(--g1); border-color: var(--ink3); }
.cg-btn--dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.cg-btn--dark:hover { background: #000; border-color: #000; }
.cg-btn--sm { padding: 9px 18px; font-size: 12.5px; }
.cg-btn--lg { padding: 16px 34px; font-size: 15px; }
.cg-btn--full { width: 100%; }
.cg-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* -------------------------------------------------- header */
.cg-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--w);
	border-bottom: 1px solid var(--line);
}
.cg-header__inner {
	max-width: calc(var(--maxw) + var(--pad) * 2);
	margin-inline: auto; padding: 0 var(--pad);
	height: 60px; display: flex; align-items: center; gap: 18px;
}
@media (min-width: 1024px) { .cg-header__inner { height: 74px; } }

.cg-logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.cg-logo__mark { width: 34px; height: 34px; flex: none; }
.cg-logo__txt { display: flex; flex-direction: column; line-height: 1.1; }
.cg-logo__en { font-family: var(--en); font-weight: 800; font-size: 16px; letter-spacing: .1em; white-space: nowrap; }
.cg-logo__ja { font-size: 9.5px; letter-spacing: .1em; color: var(--ink3); white-space: nowrap; margin-top: 2px; }

.cg-gnav { display: none; }
@media (min-width: 1024px) {
	.cg-gnav { display: block; }
	.cg-gnav__list { display: flex; gap: 26px; }
	.cg-gnav__list a {
		display: block; position: relative; padding-block: 6px;
		font-weight: 700; font-size: 13.5px; white-space: nowrap;
		transition: color .25s;
	}
	.cg-gnav__list a::after {
		content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
		background: var(--y); transform: scaleX(0); transition: transform .3s;
	}
	.cg-gnav__list a:hover::after,
	.cg-gnav__list .is-current > a::after { transform: scaleX(1); }
}

.cg-header__tel { display: none; }
@media (min-width: 1200px) {
	.cg-header__tel { display: block; text-align: right; line-height: 1.15; }
	.cg-header__tel b { font-family: var(--en); font-size: 20px; font-weight: 800; white-space: nowrap; }
	.cg-header__tel span { display: block; font-size: 9.5px; color: var(--ink3); white-space: nowrap; }
}
.cg-header__cta { display: none; }
@media (min-width: 1024px) { .cg-header__cta { display: inline-flex; padding: 11px 20px; font-size: 13px; } }

.cg-burger { width: 42px; height: 42px; margin-right: -8px; display: grid; place-content: center; gap: 6px; }
@media (min-width: 1024px) { .cg-burger { display: none; } }
.cg-burger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .35s, opacity .25s; }
.cg-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.cg-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.cg-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* サブナビ（2段目） */
.cg-subnav { display: none; background: var(--g1); border-bottom: 1px solid var(--line); }
@media (min-width: 1024px) {
	.cg-subnav { display: block; }
	.cg-subnav__list {
		max-width: calc(var(--maxw) + var(--pad) * 2);
		margin-inline: auto; padding: 0 var(--pad);
		display: flex; gap: 24px; height: 40px; align-items: center;
	}
	.cg-subnav__list a { font-size: 12.5px; color: var(--ink2); white-space: nowrap; }
	.cg-subnav__list a:hover { color: var(--ink); text-decoration: underline; }
}

/* drawer */
.cg-drawer {
	position: fixed; inset: 0; z-index: 99;
	background: var(--w); padding: 76px var(--pad) 40px; overflow-y: auto;
	opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.cg-drawer.is-open { opacity: 1; visibility: visible; }
.cg-drawer__list { border-top: 1px solid var(--line); }
.cg-drawer__list li { border-bottom: 1px solid var(--line); }
.cg-drawer__list a { display: flex; align-items: baseline; gap: 12px; padding: 17px 4px; }
.cg-drawer__ja { font-weight: 700; font-size: 16px; white-space: nowrap; }
.cg-drawer__en { font-family: var(--en); font-size: 10.5px; letter-spacing: .12em; color: var(--ink3); white-space: nowrap; }
.cg-drawer__foot { margin-top: 26px; display: grid; gap: 12px; }
.cg-drawer__tel { font-family: var(--en); font-size: 28px; font-weight: 800; white-space: nowrap; }
body.is-locked { overflow: hidden; }

/* -------------------------------------------------- hero */
.cg-hero { position: relative; background: var(--ink); }
.cg-hero__viewport { position: relative; overflow: hidden; }
.cg-hero__slide {
	position: absolute; inset: 0;
	opacity: 0; visibility: hidden;
	transition: opacity .7s ease;
}
.cg-hero__slide:first-child { position: relative; }
.cg-hero__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.cg-hero__media { position: relative; }
.cg-hero__media img {
	width: 100%;
	aspect-ratio: 16 / 13;
	object-fit: cover;
	object-position: center 55%;
}
@media (min-width: 640px) { .cg-hero__media img { aspect-ratio: 16 / 8.4; } }
@media (min-width: 1200px) { .cg-hero__media img { aspect-ratio: 16 / 6.6; } }
.cg-hero__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.06) 42%, rgba(0,0,0,.30) 100%);
}
@media (min-width: 768px) {
	.cg-hero__media::after {
		background: linear-gradient(96deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.12) 52%, rgba(0,0,0,.02) 100%);
	}
}

.cg-hero__copy {
	position: absolute; z-index: 2; left: 0; right: 0; top: 8%;
	padding-inline: var(--pad);
	max-width: calc(var(--maxw) + var(--pad) * 2);
	margin-inline: auto;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}
@media (min-width: 768px) { .cg-hero__copy { top: 14%; } }
.cg-hero__eyebrow {
	display: inline-block;
	background: var(--y); color: var(--ink);
	font-size: 11px; font-weight: 700; letter-spacing: .1em;
	padding: 4px 12px; margin-bottom: 12px; white-space: nowrap;
	text-shadow: none;
}
.cg-hero__h1 { --ch: 11; --max: 50px; }
.cg-hero__sub { margin-top: 12px; font-size: 13px; font-weight: 500; max-width: 26em; }
@media (min-width: 900px) { .cg-hero__sub { max-width: 38em; } }
@media (min-width: 768px) { .cg-hero__sub { font-size: 15px; } }

/* ヒーロー下部の情報パネル */
.cg-hero__panel {
	position: relative; z-index: 2;
	background: rgba(255, 255, 255, .96);
	border-top: 3px solid var(--y);
	padding: 16px var(--pad) 18px;
}
@media (min-width: 900px) {
	.cg-hero__panel {
		position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
		width: min(var(--maxw), calc(100% - var(--pad) * 2));
		display: flex; align-items: center; gap: 26px;
		padding: 16px 24px;
		border-radius: 3px;
		box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
	}
}
.cg-hero__panel-txt { flex: 1; font-size: 13.5px; line-height: 1.8; font-weight: 500; }
@media (min-width: 900px) { .cg-hero__panel-txt { font-size: 14.5px; } }
.cg-hero__panel-btns { display: flex; gap: 10px; flex: none; }
@media (max-width: 899px) {
	.cg-hero__panel-btns { margin-top: 14px; }
	.cg-hero__panel-btns .cg-btn { flex: 1; padding-inline: 12px; }
}

.cg-hero__arw {
	position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
	width: 40px; height: 40px; border-radius: 50%;
	background: rgba(255, 255, 255, .88);
	display: none; place-content: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
	transition: background .25s;
}
@media (min-width: 768px) { .cg-hero__arw { display: grid; } }
.cg-hero__arw:hover { background: #fff; }
.cg-hero__arw::before {
	content: ""; width: 11px; height: 11px;
	border-top: 2px solid var(--ink); border-right: 2px solid var(--ink);
}
.cg-hero__arw--prev { left: 14px; }
.cg-hero__arw--prev::before { transform: rotate(-135deg); margin-left: 4px; }
.cg-hero__arw--next { right: 14px; }
.cg-hero__arw--next::before { transform: rotate(45deg); margin-right: 4px; }

/* -------------------------------------------------- サムネイル帯 */
.cg-thumbs { border-bottom: 1px solid var(--line); background: var(--w); }
.cg-thumbs__list {
	display: flex; align-items: stretch; gap: 8px;
	overflow-x: auto; padding-block: 12px;
	scrollbar-width: thin;
}
.cg-thumbs__list > li { flex: none; display: flex; }
.cg-thumbs__list::-webkit-scrollbar { height: 5px; }
.cg-thumbs__list::-webkit-scrollbar-thumb { background: var(--g2); border-radius: 3px; }
.cg-thumb {
	display: block; width: 132px;
	border: 1px solid var(--line); border-radius: 3px; overflow: hidden;
	transition: border-color .25s, transform .25s;
	background: var(--w);
}
@media (min-width: 768px) { .cg-thumb { width: 168px; } }
.cg-thumb:hover { border-color: var(--y); transform: translateY(-2px); }
.cg-thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.cg-thumb__body { display: block; padding: 7px 9px 9px; }
.cg-thumb__pref { display: block; font-size: 9.5px; color: var(--ink3); white-space: nowrap; }
.cg-thumb__name { display: block; font-size: 12.5px; font-weight: 700; white-space: nowrap; margin-top: 1px; }

/* -------------------------------------------------- 3カード（ランキング風） */
.cg-cards { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .cg-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
.cg-cards--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .cg-cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.cg-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.cg-card {
	border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
	background: var(--w); display: flex; flex-direction: column;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}
.cg-card:hover { border-color: var(--y); box-shadow: 0 8px 24px rgba(0, 0, 0, .07); transform: translateY(-3px); }
.cg-card__media { position: relative; background: var(--g1); }
.cg-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.cg-card__no {
	position: absolute; left: 0; top: 0;
	background: var(--y); color: var(--ink);
	font-family: var(--en); font-weight: 800; font-size: 12px;
	padding: 3px 10px; white-space: nowrap;
}
.cg-card__body { padding: 12px 13px 14px; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 900px) { .cg-card__body { padding: 16px 18px 18px; } }
.cg-card__en { font-family: var(--en); font-size: 10px; font-weight: 600; letter-spacing: .14em; color: var(--ink3); white-space: nowrap; }
/*
 * カード見出しは「画面幅」ではなく「カード1枚の内寸」から逆算する。
 * カラム数が変わる breakpoint ごとに式を出し直す必要がある。
 *   〜899px : 2カラム / gap 14 / body padding 12+13
 *   900px〜 : 3カラム / gap 20 / body padding 16+18（.cg-cards--2 は2カラム）
 */
.cg-card__ttl {
	--ch: 7; --max: 20px; margin: 3px 0 8px;
	font-size: min(calc(((100vw - var(--pad) * 2 - 14px) / 2 - 32px) / var(--ch)), var(--max));
}
@media (min-width: 900px) {
	.cg-card__ttl {
		font-size: min(
			calc(((min(100vw, calc(var(--maxw) + var(--pad) * 2)) - var(--pad) * 2 - 40px) / 3 - 42px) / var(--ch)),
			var(--max)
		);
	}
	.cg-cards--2 .cg-card__ttl {
		font-size: min(
			calc(((min(100vw, calc(var(--maxw) + var(--pad) * 2)) - var(--pad) * 2 - 20px) / 2 - 42px) / var(--ch)),
			var(--max)
		);
	}
}
.cg-card__txt { font-size: 12.5px; line-height: 1.8; color: var(--ink2); }
.cg-card__meta {
	margin-top: auto; padding-top: 12px;
	font-size: 11.5px; color: var(--ink3);
}
.cg-card__price {
	font-family: var(--en); font-size: 20px; font-weight: 800; color: var(--ink);
	white-space: nowrap;
}
.cg-card .cg-btn { margin-top: 12px; }

/* -------------------------------------------------- ブランドセクション */
.cg-brand { background: var(--pale); text-align: center; position: relative; overflow: hidden; }
/* 背景画像を敷くときは自前の背景色を消す（::before/::after は .cg-sec--bg 側が使う） */
.cg-brand.cg-sec--bg { background: none; }
.cg-brand__inner { position: relative; z-index: 1; }
.cg-brand__mark { width: 62px; height: 62px; margin-inline: auto; }
.cg-brand__ttl { --ch: 13; --max: 34px; margin: 18px 0 16px; }
.cg-brand__body { font-size: 13.5px; line-height: 2.1; color: var(--ink2); max-width: 40em; margin-inline: auto; }
@media (min-width: 768px) { .cg-brand__body { font-size: 14.5px; } }

/* -------------------------------------------------- 大ビジュアル帯 */
.cg-feat { position: relative; }
.cg-feat__media { position: relative; overflow: hidden; }
.cg-feat__media img {
	width: 100%; aspect-ratio: 16 / 11; object-fit: cover;
	transition: transform 1.1s cubic-bezier(.2, .8, .3, 1);
}
@media (min-width: 768px) { .cg-feat__media img { aspect-ratio: 16 / 7; } }
.cg-feat:hover .cg-feat__media img { transform: scale(1.03); }
.cg-feat__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.05) 46%, rgba(0,0,0,.38) 100%);
}
.cg-feat__copy {
	position: absolute; z-index: 2; inset: auto 0 0 0;
	padding: 0 var(--pad) 22px;
	max-width: calc(var(--maxw) + var(--pad) * 2); margin-inline: auto;
	color: #fff; text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}
@media (min-width: 768px) { .cg-feat__copy { padding-bottom: 34px; } }
.cg-feat__ttl { --ch: 12; --max: 38px; }
.cg-feat__sub { margin-top: 8px; font-size: 13px; max-width: 26em; }
@media (min-width: 900px) { .cg-feat__sub { max-width: 40em; } }
@media (min-width: 768px) { .cg-feat__sub { font-size: 14.5px; } }

/* 帯の下のリンク行 */
.cg-feat__link {
	display: flex; align-items: center; gap: 10px;
	padding: 15px var(--pad);
	max-width: calc(var(--maxw) + var(--pad) * 2); margin-inline: auto;
	font-weight: 700; font-size: 14.5px; white-space: nowrap;
	border-bottom: 1px solid var(--line);
	transition: background .25s;
}
.cg-feat__link:hover { background: var(--pale); }
.cg-feat__link::after {
	content: ""; width: 18px; height: 18px; border-radius: 50%;
	background: var(--y); flex: none; margin-left: 2px;
	display: inline-block; position: relative;
}
.cg-feat__arw {
	width: 18px; height: 18px; border-radius: 50%; background: var(--y);
	display: grid; place-content: center; flex: none;
}
.cg-feat__link::after { display: none; }
.cg-feat__link .cg-feat__arw::before {
	content: ""; width: 5px; height: 5px;
	border-top: 2px solid var(--ink); border-right: 2px solid var(--ink);
	transform: rotate(45deg); margin-left: -2px; display: block;
}

/* -------------------------------------------------- アコーディオン */
.cg-acc { border-top: 1px solid var(--line); }
.cg-acc__item { border-bottom: 1px solid var(--line); }
.cg-acc__btn {
	width: 100%; display: flex; align-items: center; gap: 14px;
	padding: 17px 4px; text-align: left;
	font-weight: 700; font-size: 14px;
	transition: color .25s;
}
.cg-acc__btn:hover { color: #a58200; }
.cg-acc__btn::after {
	content: ""; margin-left: auto; flex: none;
	width: 13px; height: 13px; position: relative;
	background:
		linear-gradient(var(--ink3), var(--ink3)) center/13px 1.6px no-repeat,
		linear-gradient(var(--ink3), var(--ink3)) center/1.6px 13px no-repeat;
	transition: transform .3s;
}
.cg-acc__btn[aria-expanded="true"]::after { transform: rotate(45deg); }
.cg-acc__panel { display: none; padding: 0 4px 20px; font-size: 13.5px; line-height: 1.95; color: var(--ink2); }
.cg-acc__panel.is-open { display: block; }

/* -------------------------------------------------- インフォメーション（バナー） */
.cg-banners { position: relative; }
.cg-banners__list { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
.cg-banners__list > li { flex: none; width: min(78%, 300px); scroll-snap-align: start; display: flex; }
@media (min-width: 768px) { .cg-banners__list > li { width: 300px; } }
.cg-banners__list::-webkit-scrollbar { height: 5px; }
.cg-banners__list::-webkit-scrollbar-thumb { background: var(--g2); border-radius: 3px; }
.cg-banner {
	display: block; width: 100%;
	position: relative; border-radius: 4px; overflow: hidden;
	border: 1px solid var(--line);
	transition: border-color .25s, transform .25s;
}
.cg-banner:hover { border-color: var(--y); transform: translateY(-2px); }
.cg-banner img { width: 100%; aspect-ratio: 16 / 7.4; object-fit: cover; }
.cg-banner__ov {
	position: absolute; inset: 0;
	background: linear-gradient(92deg, rgba(0, 0, 0, .68) 30%, rgba(0, 0, 0, .18) 100%);
	display: flex; flex-direction: column; justify-content: center;
	padding: 0 16px; color: #fff;
}
.cg-banner__tag {
	display: inline-block; align-self: flex-start;
	background: var(--y); color: var(--ink);
	font-size: 9.5px; font-weight: 700; letter-spacing: .08em;
	padding: 2px 8px; margin-bottom: 6px; white-space: nowrap;
}
.cg-banner__ttl { font-size: 15px; font-weight: 700; line-height: 1.45; white-space: nowrap; }
.cg-banner__sub { font-size: 11px; opacity: .88; white-space: nowrap; margin-top: 3px; }

/* -------------------------------------------------- 一覧ブロック */
.cg-block + .cg-block { margin-top: 42px; }
.cg-bhead {
	display: flex; align-items: baseline; gap: 12px;
	border-bottom: 2px solid var(--ink); padding-bottom: 9px; margin-bottom: 18px;
}
.cg-bhead__ttl { --ch: 9; --max: 17px; font-weight: 700; }
.cg-bhead__more { margin-left: auto; font-size: 12px; color: var(--ink2); white-space: nowrap; }
.cg-bhead__more:hover { color: var(--ink); text-decoration: underline; }

/* -------------------------------------------------- 店舗を探す */
.cg-finder { display: grid; gap: 14px; }
@media (min-width: 768px) { .cg-finder { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
.cg-finder__box { border: 1px solid var(--line); border-radius: 4px; padding: 20px 18px; background: var(--w); }
.cg-finder__ttl { --ch: 9; --max: 16px; font-weight: 700; margin-bottom: 12px; }
.cg-finder__row { display: flex; gap: 10px; }
.cg-select {
	flex: 1; min-width: 0;
	appearance: none;
	border: 1px solid var(--line); border-radius: 3px; background: var(--w);
	padding: 11px 34px 11px 13px; font-family: inherit; font-size: 14px; color: var(--ink);
	background-image:
		linear-gradient(45deg, transparent 50%, var(--ink2) 50%),
		linear-gradient(135deg, var(--ink2) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% + 1px), calc(100% - 12px) calc(50% + 1px);
	background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.cg-select:focus { outline: none; border-color: var(--y2); }

/* -------------------------------------------------- サポートタイル */
.cg-support { background: var(--y); }
.cg-support__grid {
	display: grid; grid-template-columns: repeat(2, 1fr);
	gap: 1px; background: rgba(0, 0, 0, .12);
	border: 1px solid rgba(0, 0, 0, .12);
}
@media (min-width: 640px) { .cg-support__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cg-support__grid { grid-template-columns: repeat(6, 1fr); } }
.cg-stile {
	background: var(--y); padding: 20px 8px 18px; text-align: center;
	display: flex; flex-direction: column; align-items: center; gap: 9px;
	transition: background .25s;
}
.cg-stile:hover { background: #ffdd3d; }
.cg-stile__ico { width: 30px; height: 30px; flex: none; }
.cg-stile__ico svg { width: 100%; height: 100%; }
.cg-stile__ttl { font-size: 12px; font-weight: 700; line-height: 1.45; white-space: nowrap; }
.cg-stile__sub { font-size: 10px; color: rgba(0, 0, 0, .58); white-space: nowrap; }

/* -------------------------------------------------- 拠点カード（下層） */
.cg-shops { display: grid; gap: 14px; }
@media (min-width: 640px) { .cg-shops { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.cg-shop {
	position: relative; border: 1px solid var(--line); border-radius: 4px;
	padding: 20px 18px; background: var(--w);
	transition: border-color .25s, box-shadow .25s;
}
.cg-shop:hover { border-color: var(--y); box-shadow: 0 6px 20px rgba(0, 0, 0, .06); }
.cg-shop__flag {
	position: absolute; top: 0; right: 0;
	background: var(--y); color: var(--ink);
	font-family: var(--en); font-weight: 800; font-size: 9px; letter-spacing: .12em;
	padding: 4px 9px; white-space: nowrap;
}
.cg-shop__pref { font-size: 11px; color: var(--ink3); white-space: nowrap; }
.cg-shop__name { --ch: 5; --max: 22px; font-weight: 900; margin: 3px 0 12px; }
.cg-shop__dl { display: grid; gap: 6px; font-size: 13px; color: var(--ink2); line-height: 1.65; }
.cg-shop__dl > div { display: grid; grid-template-columns: 4.6em 1fr; gap: 8px; }
.cg-shop__dl dt {
	font-family: var(--en); font-size: 9.5px; font-weight: 600; letter-spacing: .08em;
	color: var(--ink3); padding-top: 4px; white-space: nowrap;
}
.cg-shop__dl dd { margin: 0; }
.cg-shop__tel { font-family: var(--en); font-size: 18px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.cg-shop__map { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12.5px; color: #0a63c9; white-space: nowrap; }
.cg-shop__map:hover { text-decoration: underline; }

/* -------------------------------------------------- 店舗マップ（Googleマップ埋め込み） */
.cg-gmaps { display: grid; gap: 18px; }
@media (min-width: 768px) { .cg-gmaps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; } }

.cg-gmap {
	border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
	background: var(--w);
	transition: border-color .25s, box-shadow .25s;
}
.cg-gmap:hover { border-color: var(--y); box-shadow: 0 6px 20px rgba(0, 0, 0, .06); }

.cg-gmap__frame { position: relative; aspect-ratio: 16 / 10; background: var(--g2); }
.cg-gmap__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

.cg-gmap__body { padding: 16px 18px 20px; }
.cg-gmap__pref { font-size: 11px; color: var(--ink3); white-space: nowrap; }
.cg-gmap__name { --ch: 5; --max: 24px; font-weight: 900; margin: 2px 0 12px; }
.cg-gmap__body .cg-shop__dl { margin-bottom: 14px; }

/* -------------------------------------------------- 日本地図SVG（現在は未使用） */
/* 1カラムでも2カラムでも伸びすぎないよう上限を付けて中央に置く */
.cg-map { position: relative; max-width: 400px; margin-inline: auto; }
@media (min-width: 1024px) { .cg-map { max-width: 430px; } }
.cg-map__svg { width: 100%; height: auto; overflow: visible; }
.cg-map__all { fill: #e7e7e1; stroke: #cfcfc7; stroke-width: 1.4; }
.cg-map__hl { fill: var(--y); }
.cg-map__link { fill: none; stroke: var(--y2); stroke-width: 3.4; stroke-dasharray: 9 9; stroke-linecap: round; animation: cg-dash 3.2s linear infinite; }
@keyframes cg-dash { to { stroke-dashoffset: -36; } }
.cg-map__dot { fill: var(--ink); stroke: #fff; stroke-width: 5; r: 11; }
.cg-map__ping { fill: none; stroke: var(--y2); stroke-width: 3; animation: cg-ping 2.6s cubic-bezier(.2, .8, .3, 1) infinite; animation-delay: var(--d, 0s); }
@keyframes cg-ping { 0% { r: 11; opacity: .9; } 70%, 100% { r: 42; opacity: 0; } }
.cg-map__cap { margin-top: 16px; display: flex; align-items: center; gap: 9px; font-family: var(--en); font-size: 11px; letter-spacing: .12em; color: var(--ink3); white-space: nowrap; }
.cg-map__cap i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); flex: none; }

/* -------------------------------------------------- 2カラム（画像＋テキスト） */
.cg-split { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .cg-split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; } }
@media (min-width: 900px) { .cg-split--rev > :first-child { order: 2; } }
.cg-split__media { border-radius: 4px; overflow: hidden; }
.cg-split__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

/* -------------------------------------------------- 下層ページヘッダー */
.cg-phead { background: var(--g1); border-bottom: 1px solid var(--line); padding: 26px 0 28px; }
@media (min-width: 768px) { .cg-phead { padding: 36px 0 38px; } }
.cg-phead__ja { --ch: 7; --max: 34px; font-weight: 900; }
.cg-phead__en { font-family: var(--en); font-size: 11px; font-weight: 600; letter-spacing: .18em; color: var(--ink3); white-space: nowrap; margin-top: 5px; }
.cg-phead__lead { margin-top: 14px; max-width: 46em; }

.cg-crumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 11px; color: var(--ink3); padding-block: 10px; }
.cg-crumb a:hover { color: var(--ink); text-decoration: underline; }
.cg-crumb span::after { content: "›"; margin-left: 6px; color: #b9b9b2; }

/* -------------------------------------------------- サービス詳細 */
.cg-svcs { display: grid; gap: 44px; }
@media (min-width: 900px) { .cg-svcs { gap: 68px; } }
.cg-svc { display: grid; gap: 20px; align-items: center; }
@media (min-width: 900px) {
	.cg-svc { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
	.cg-svc:nth-child(even) .cg-svc__media { order: 2; }
}
.cg-svc__media { position: relative; border-radius: 4px; overflow: hidden; }
.cg-svc__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.cg-svc__no {
	position: absolute; left: 0; top: 0; background: var(--y); color: var(--ink);
	font-family: var(--en); font-weight: 800; font-size: 13px; padding: 4px 12px; white-space: nowrap;
}
.cg-svc__en { font-family: var(--en); font-size: 10.5px; font-weight: 600; letter-spacing: .18em; color: var(--ink3); white-space: nowrap; }
.cg-svc__ja { --ch: 5; --max: 30px; font-weight: 900; margin: 5px 0 12px; }
.cg-svc__lead { font-weight: 700; font-size: 14.5px; line-height: 1.75; margin-bottom: 10px; }
.cg-svc__body { font-size: 13.5px; line-height: 1.95; color: var(--ink2); }
.cg-svc__points { margin-top: 16px; display: grid; gap: 7px; }
.cg-svc__points li { position: relative; padding-left: 22px; font-size: 13px; line-height: 1.7; color: var(--ink2); }
.cg-svc__points li::before {
	content: ""; position: absolute; left: 0; top: .5em;
	width: 13px; height: 13px; border-radius: 50%; background: var(--y);
}

/* -------------------------------------------------- 理由カード */
.cg-rcards { display: grid; gap: 14px; }
@media (min-width: 768px) { .cg-rcards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }
.cg-rcard {
	border: 1px solid var(--line); border-radius: 4px; padding: 22px 20px;
	background: var(--w); position: relative; overflow: hidden;
	transition: border-color .25s, box-shadow .25s;
}
@media (min-width: 768px) { .cg-rcard { padding: 28px 26px; } }
.cg-rcard:hover { border-color: var(--y); box-shadow: 0 6px 20px rgba(0, 0, 0, .06); }
.cg-rcard__no { font-family: var(--display); font-size: 34px; line-height: 1; color: var(--y); }
.cg-rcard__en { font-family: var(--en); font-size: 10px; font-weight: 600; letter-spacing: .16em; color: var(--ink3); white-space: nowrap; margin: 8px 0 5px; }
.cg-rcard__ja { --ch: 10; --max: 20px; font-weight: 900; margin-bottom: 10px; }
.cg-rcard__body { font-size: 13px; line-height: 1.9; color: var(--ink2); }

/* -------------------------------------------------- お知らせ */
.cg-news { border-top: 1px solid var(--line); }
.cg-news__item { border-bottom: 1px solid var(--line); }
.cg-news__item a { display: grid; gap: 3px 16px; padding: 15px 4px; transition: background .25s; }
@media (min-width: 768px) { .cg-news__item a { grid-template-columns: 96px 88px 1fr; align-items: baseline; padding: 18px 6px; } }
.cg-news__item a:hover { background: var(--pale); }
.cg-news__date { font-family: var(--en); font-weight: 600; font-size: 12.5px; color: var(--ink3); white-space: nowrap; }
.cg-news__cat { justify-self: start; font-size: 10.5px; padding: 1px 9px; background: var(--y-soft); color: #8a6a00; white-space: nowrap; }
.cg-news__title { font-size: 14px; line-height: 1.65; }
.cg-news__empty { padding: 26px 4px; color: var(--ink3); font-size: 13.5px; }

/* -------------------------------------------------- テーブル */
.cg-table { border-top: 1px solid var(--line); font-size: 13.5px; }
.cg-table tr { border-bottom: 1px solid var(--line); }
.cg-table th, .cg-table td { text-align: left; padding: 15px 6px; vertical-align: top; line-height: 1.8; }
.cg-table th { width: 9em; font-weight: 700; background: var(--g1); padding-left: 14px; }
@media (max-width: 599px) {
	.cg-table th, .cg-table td { display: block; }
	.cg-table th { width: auto; padding: 9px 12px; font-size: 12px; }
	.cg-table td { padding: 12px 6px 16px; }
}

/* -------------------------------------------------- フォーム */
.cg-contact { display: grid; gap: 32px; }
@media (min-width: 900px) { .cg-contact { grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; align-items: start; } }
.cg-form { display: grid; gap: 18px; }
.cg-form label { display: block; }
.cg-form__label { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; font-size: 13px; font-weight: 700; }
.cg-form__req { font-size: 9.5px; padding: 2px 7px; background: #d33; color: #fff; white-space: nowrap; }
.cg-form__opt { font-size: 9.5px; padding: 2px 7px; background: var(--g2); color: var(--ink2); white-space: nowrap; }
.cg-form input[type="text"], .cg-form input[type="email"], .cg-form input[type="tel"],
.cg-form select, .cg-form textarea {
	width: 100%; background: var(--w); border: 1px solid var(--line); border-radius: 3px;
	color: var(--ink); font-family: inherit; font-size: 15px; padding: 12px 13px;
	transition: border-color .25s, background .25s;
}
.cg-form textarea { min-height: 170px; resize: vertical; line-height: 1.75; }
.cg-form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--ink2) 50%), linear-gradient(135deg, var(--ink2) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% + 1px), calc(100% - 12px) calc(50% + 1px);
	background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.cg-form :is(input, select, textarea):focus { outline: none; border-color: var(--y2); background: #fffdf5; }
.cg-form ::placeholder { color: #b5b5ae; }
.cg-form .cg-btn { justify-self: start; }

.cg-aside { display: grid; gap: 14px; align-content: start; }
.cg-aside__box { border: 1px solid var(--line); border-radius: 4px; padding: 20px 18px; background: var(--g1); }
.cg-aside__ttl { font-family: var(--en); font-size: 10.5px; font-weight: 700; letter-spacing: .16em; color: var(--ink3); white-space: nowrap; margin-bottom: 10px; }
.cg-aside__tel { font-family: var(--en); font-size: 27px; font-weight: 800; white-space: nowrap; line-height: 1.15; }
.cg-aside__note { font-size: 11.5px; color: var(--ink2); margin-top: 6px; line-height: 1.7; }

.wpcf7-not-valid-tip { color: #d33; font-size: 12px; margin-top: 5px; }
.wpcf7-response-output { border: 1px solid var(--line) !important; padding: 13px 15px !important; margin: 18px 0 0 !important; font-size: 13px; }

/* -------------------------------------------------- 記事 */
.cg-article { max-width: 760px; margin-inline: auto; }
.cg-article__body { font-size: 15px; line-height: 2.05; }
.cg-article__body > * + * { margin-top: 1.5em; }
.cg-article__body h2 { font-size: 20px; font-weight: 900; line-height: 1.5; padding: 8px 0 8px 14px; border-left: 5px solid var(--y); margin-top: 2.2em; }
.cg-article__body h3 { font-size: 17px; font-weight: 700; line-height: 1.6; margin-top: 1.9em; }
.cg-article__body a { color: #0a63c9; text-decoration: underline; }
.cg-article__body ul { list-style: disc; padding-left: 1.4em; }
.cg-article__body ol { list-style: decimal; padding-left: 1.5em; }
.cg-article__body li + li { margin-top: .4em; }
.cg-article__body img { border-radius: 4px; }

/* -------------------------------------------------- 汎用 */
.cg-center { text-align: center; max-width: 620px; margin-inline: auto; }
.cg-center .cg-btns { justify-content: center; }

/* -------------------------------------------------- フッター */
.cg-footer { background: var(--dark); color: #cfcfc9; margin-top: 0; }
.cg-footer__top { padding-block: 40px 34px; display: grid; gap: 28px; }
@media (min-width: 768px) { .cg-footer__top { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; } }
@media (min-width: 1024px) { .cg-footer__top { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.cg-fcol__ttl {
	font-size: 12px; font-weight: 700; color: #fff; white-space: nowrap;
	padding-bottom: 9px; margin-bottom: 11px; border-bottom: 1px solid #3d3d3d;
}
.cg-fcol__list { display: grid; gap: 8px; }
.cg-fcol__list a { font-size: 12.5px; color: #b9b9b3; white-space: nowrap; }
.cg-fcol__list a:hover { color: var(--y); }

.cg-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cg-footer__brand .cg-logo__en { color: #fff; }
.cg-footer__brand .cg-logo__ja { color: #8f8f89; }
.cg-footer__corp { font-size: 12px; line-height: 1.9; color: #9d9d97; }
.cg-credit { font-size: 10.5px; color: #6e6e69; line-height: 1.7; margin-top: 10px; }

.cg-footer__bottom {
	border-top: 1px solid #3d3d3d; padding-block: 16px;
	display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; justify-content: space-between;
}
.cg-footer__copy { font-family: var(--en); font-size: 11px; color: #82827c; white-space: nowrap; }
.cg-footer__sub { display: flex; gap: 18px; }
.cg-footer__sub a { font-size: 11.5px; color: #82827c; white-space: nowrap; }
.cg-footer__sub a:hover { color: var(--y); }

/* =========================================================================
   モーション（参考: v2-s.net の実測値をそのまま採用）
     イージング : cubic-bezier(.515,.005,.505,1)
     標準       : 0.8s ／ clip-path系: 1.6s ／ スタガー: 0.7s 遅延
     下線ドロー : background-size 1.6s cubic-bezier(.2,0,.18,1)
     斜め装飾   : 右上→中央(75%)→左下へ抜ける sweep
   ====================================================================== */
:root { --ez: cubic-bezier(.515, .005, .505, 1); --ez-ul: cubic-bezier(.2, 0, .18, 1); }

[data-reveal] {
	opacity: 0;
	transform: translateY(38px);
	transition: opacity .8s var(--ez), transform .8s var(--ez);
	transition-delay: var(--rd, 0s);
	will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* 左右からスライドイン（既定）。
   どちら側から入るかは JS が画面中央との位置関係で決めて data-dir を付ける。
   名前付きの variant（wipe / fade / zoom）には付けないので、そちらは従来どおり。 */
[data-reveal][data-dir="l"],
[data-stagger] > [data-dir="l"] { transform: translateX(-72px); }
[data-reveal][data-dir="r"],
[data-stagger] > [data-dir="r"] { transform: translateX(72px); }
[data-reveal][data-dir].is-in,
[data-stagger].is-in > [data-dir] { transform: none; }
@media (max-width: 767px) {
	[data-reveal][data-dir="l"],
	[data-stagger] > [data-dir="l"] { transform: translateX(-40px); }
	[data-reveal][data-dir="r"],
	[data-stagger] > [data-dir="r"] { transform: translateX(40px); }
}
/* front-page で使っている値も横スライドに揃える */
[data-reveal="slide-left"] { transform: translateX(-72px); }
[data-reveal="slide-right"] { transform: translateX(72px); }
[data-reveal="slide-left"].is-in,
[data-reveal="slide-right"].is-in { transform: none; }

/* 不透明度だけ */
[data-reveal="fade"] { transform: none; }
/* 横から */
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
/* 拡大しながら */
[data-reveal="zoom"] { transform: scale(.94); }

/* clip-path のワイプ（参考の opacity09〜11 相当・1.6s） */
[data-reveal="wipe"] {
	opacity: 1; transform: none;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 1.6s var(--ez), opacity .8s var(--ez);
}
[data-reveal="wipe"].is-in { clip-path: inset(0 0 0 0); }

[data-reveal="wipe-up"] {
	opacity: 1; transform: none;
	clip-path: inset(100% 0 0 0);
	transition: clip-path 1.6s var(--ez), opacity .8s var(--ez);
}
[data-reveal="wipe-up"].is-in { clip-path: inset(0 0 0 0); }

/* 画像だけゆっくり引く（帯・カードのメディア） */
[data-reveal-img] { overflow: hidden; }
[data-reveal-img] img { transform: scale(1.14); transition: transform 1.6s var(--ez); }
[data-reveal-img].is-in img { transform: none; }

/* 子要素を順に（参考の opacity08 = 0.7s 遅延の入れ子相当） */
[data-stagger] > * {
	opacity: 0; transform: translateY(30px);
	transition: opacity .8s var(--ez), transform .8s var(--ez);
	transition-delay: var(--sd, 0s);
}
[data-stagger].is-in > * { opacity: 1; transform: none; }

/* 下線が引かれる見出し */
.v2-uline {
	display: inline;
	background-image: linear-gradient(var(--y), var(--y));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 8px;
	transition: background-size 1.6s var(--ez-ul);
	transition-delay: var(--rd, .2s);
}
.v2-uline.is-in { background-size: 100% 8px; }

/* 斜めの装飾が流れる（参考の sizeScale をそのまま） */
@keyframes cg-sweep {
	0%   { opacity: 0; transform: translate3d(100%, -100%, 0) rotate(28deg); }
	75%  { opacity: 1; transform: translate3d(0, 0, 0) rotate(28deg); }
	100% { opacity: 0; transform: translate3d(-100%, 100%, 0) rotate(28deg); }
}
.v2-slash::before, .v2-slash::after {
	animation: cg-sweep 9s var(--ez) infinite;
}
.v2-slash::after { animation-duration: 12s; animation-delay: 2.5s; }

/* ボタン・カードのホバー */
.cg-btn, .v2-chip, .v2-card, .cg-card, .cg-thumb, .cg-gmap, .cg-banner {
	transition: background-color .3s var(--ez), border-color .3s var(--ez),
	            color .3s var(--ez), box-shadow .3s var(--ez), transform .3s var(--ez);
}
.v2-card:hover, .cg-card:hover { transform: translateY(-4px); }
.v2-card__media, .cg-card__media { overflow: hidden; }
.v2-card__media img, .cg-card__media img { transition: transform 1.2s var(--ez); }
.v2-card:hover .v2-card__media img, .cg-card:hover .cg-card__media img { transform: scale(1.06); }

html:not(.js) [data-reveal],
html:not(.js) [data-stagger] > * { opacity: 1; transform: none; clip-path: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important; animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	[data-reveal], [data-stagger] > * { opacity: 1; transform: none; clip-path: none; }
	.v2-slash::before, .v2-slash::after { animation: none; opacity: .5; }
	.v2-uline { background-size: 100% 8px; }
}

/* =========================================================================
   V2-Style 準拠レイアウト（白ベース版）
   -------------------------------------------------------------------------
   参考: https://www.v2-s.net/lineup/ の構成を実測して移植。
     - コンテンツ幅 1100px
     - 巨大アウトライン英字タイトル＋右に日本語（アクセント）
     - 角ばったフィルターボタン群（選択時は塗り）
     - 4カラムカード: 見出し → 説明 → 写真 → 2列スペック表
     - 斜めの装飾ライン / 中央寄せフッター
   参考にしたのは数値・構成・配色設計のみ。写真とテキストは自前のものを使う。
   ====================================================================== */

:root { --maxw: 1100px; --v2: #1a1a1a; }

/* --------------------------------------------------- 大タイトルブロック */
.v2-head { position: relative; padding-block: 44px 30px; overflow: hidden; }
@media (min-width: 768px) { .v2-head { padding-block: 60px 38px; } }
.v2-head__inner { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.v2-head__en {
	font-family: var(--en); font-weight: 800; line-height: .92;
	letter-spacing: .01em; white-space: nowrap; text-transform: uppercase;
	--ch: 6; --max: 108px;
	font-size: min(calc((100vw - var(--pad) * 2 - 10px) / var(--ch)), var(--max));
	color: #111;
	background-image: repeating-linear-gradient(-60deg, rgba(0,0,0,.13) 0 3px, transparent 3px 7px);
	-webkit-background-clip: text; background-clip: text;
}
.v2-head__ja {
	font-weight: 700; font-size: 15px; letter-spacing: .1em; white-space: nowrap;
	padding-left: 16px; position: relative;
}
@media (min-width: 768px) { .v2-head__ja { font-size: 17px; } }
.v2-head__ja::before {
	content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 8px; height: 8px; background: var(--y);
}
.v2-head__lead { margin-top: 14px; max-width: 52em; }

/* 斜めの装飾ライン */
.v2-slash { position: relative; overflow: hidden; }
.v2-slash::before, .v2-slash::after {
	content: ""; position: absolute; width: 2px; height: 190px;
	background: linear-gradient(180deg, rgba(0,0,0,.07), transparent);
	transform: rotate(28deg); pointer-events: none;
}
.v2-slash::before { left: 3%; top: -40px; }
.v2-slash::after { right: 5%; bottom: -60px; }

/* --------------------------------------------------- フィルターボタン群 */
.v2-filter { display: grid; gap: 12px; }
.v2-filter__row { display: flex; align-items: flex-start; gap: 14px; flex-wrap: wrap; }
.v2-filter__label {
	display: flex; align-items: center; gap: 8px; flex: none;
	font-size: 12.5px; font-weight: 700; white-space: nowrap;
	padding-top: 11px; min-width: 6.2em;
}
.v2-filter__label::before { content: ""; width: 12px; height: 2px; background: var(--y); flex: none; }
.v2-filter__list { display: flex; flex-wrap: wrap; gap: 8px; }
.v2-chip {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 74px; padding: 10px 16px;
	border: 1px solid var(--line); background: var(--w);
	font-size: 13px; font-weight: 700; white-space: nowrap;
	transition: background .2s, border-color .2s, color .2s;
}
.v2-chip:hover { border-color: var(--v2); }
.v2-chip.is-on { background: var(--y); border-color: var(--y); }

/* --------------------------------------------------- カードグリッド */
.v2-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) { .v2-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }
@media (min-width: 1024px) { .v2-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.v2-grid--3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) { .v2-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.v2-card {
	display: flex; flex-direction: column;
	background: var(--w); border: 1px solid var(--line);
	transition: border-color .22s, box-shadow .22s;
}
.v2-card:hover { border-color: var(--y); box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.v2-card__body { padding: 14px 14px 0; }
.v2-card__ttl { --ch: 5; --max: 18px; font-weight: 700; letter-spacing: .01em; margin-bottom: 8px; }
/* タグは流れから外す（付いているカードだけ高さがズレるのを防ぐ） */
.v2-card { position: relative; }
.v2-card__tag {
	position: absolute; top: 0; right: 0; z-index: 1;
	background: var(--y); color: var(--v2);
	font-size: 10px; font-weight: 700; letter-spacing: .08em;
	padding: 3px 8px; white-space: nowrap;
}
.v2-card__txt { font-size: 12px; line-height: 1.75; color: var(--ink2); }
.v2-card__media { margin: 12px 0 0; }
.v2-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }

/* 2列スペック表（参考サイトの「本体価格／年式」ブロック相当） */
.v2-spec { margin-top: auto; padding: 12px 14px 14px; display: grid; gap: 1px; background: var(--line); }
.v2-spec__row { display: grid; grid-template-columns: 4.6em 1fr; background: var(--w); }
.v2-spec__row + .v2-spec__row { margin-top: 1px; }
.v2-spec dt {
	font-size: 10.5px; color: var(--ink3); padding: 7px 8px;
	background: var(--g1); white-space: nowrap; display: flex; align-items: center;
}
.v2-spec dd { margin: 0; padding: 7px 9px; font-size: 13px; font-weight: 700; line-height: 1.4; }
.v2-spec dd.is-sm { font-size: 12px; font-weight: 500; }
.v2-spec__tel { font-family: var(--en); font-size: 15px; font-weight: 800; letter-spacing: .01em; white-space: nowrap; }

.v2-card__foot { padding: 0 14px 14px; }
.v2-card__foot .cg-btn { width: 100%; border-radius: 2px; }

/* --------------------------------------------------- ページャ風ナビ */
.v2-pager { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.v2-pager a, .v2-pager span {
	min-width: 42px; height: 42px; display: grid; place-content: center;
	border: 1px solid var(--line); font-family: var(--en); font-weight: 700; font-size: 14px;
	background: var(--w);
}
.v2-pager .is-on { background: var(--y); border-color: var(--y); }

/* --------------------------------------------------- 角ばった造形へ */
.cg-btn { border-radius: 2px; }
.cg-card, .cg-shop, .cg-rcard, .cg-gmap, .cg-banner, .cg-thumb,
.cg-finder__box, .cg-aside__box, .cg-svc__media, .cg-split__media { border-radius: 0; }

/* --------------------------------------------------- フッター中央寄せ */
.cg-footer__center { text-align: center; padding-block: 44px 30px; }
.cg-footer__center .cg-footer__brand { justify-content: center; margin-bottom: 18px; }
.cg-footer__cnav {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-top: 18px;
}
.cg-footer__cnav a {
	font-weight: 700; font-size: 13.5px; letter-spacing: .04em;
	color: #cfcfc9; white-space: nowrap;
}
.cg-footer__cnav a:hover { color: var(--y); }

/* =========================================================================
   トップページ 6セクション構成
     1 ファーストビュー / 2 ネットワークの広がり / 3 4店舗
     4 4つのサービス / 5 成長実績・選ばれる理由 / 6 企業理念＋問い合わせ
   ====================================================================== */

/* --- 1. ファーストビュー ------------------------------------------- */
.fv { position: relative; overflow: hidden; background: var(--ink); }
.fv__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
@media (min-width: 900px) { .fv__grid { grid-template-columns: repeat(4, 1fr); } }
.fv__grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 900px) { .fv__grid img { aspect-ratio: 3 / 4; } }
.fv__grid::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.62) 55%, rgba(0,0,0,.78) 100%);
}
@media (min-width: 900px) {
  .fv__grid::after { background: linear-gradient(96deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.6) 55%, rgba(0,0,0,.45) 100%); }
}
.fv__copy {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center;
  padding-block: 118px 90px;
}
.fv__inner { width: 100%; max-width: calc(var(--maxw) + var(--pad) * 2); margin-inline: auto; padding-inline: var(--pad); color: #fff; }
.fv__tag {
  display: inline-block; background: var(--y); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; padding: 5px 12px; margin-bottom: 16px; white-space: nowrap;
}
.fv__h1 { --ch: 10.6; --max: 52px; text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.fv__sub { --ch: 10; --max: 30px; font-weight: 700; margin-top: 10px; color: var(--y); white-space: nowrap;
  font-size: min(calc((100vw - var(--pad) * 2 - 10px) / var(--ch)), var(--max)); }
.fv__txt { margin-top: 20px; max-width: 44em; font-size: 14px; line-height: 2; color: #e9e9e6; }
@media (min-width: 768px) { .fv__txt { font-size: 15px; } }
.fv__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.fv__btns .cg-btn--ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: #fff; }
.fv__btns .cg-btn--ghost:hover { background: rgba(255,255,255,.2); border-color: #fff; }

/* お知らせ1行（FV直下） */
.newsline { background: var(--ink); border-top: 1px solid rgba(255,255,255,.12); }
.newsline a { display: flex; align-items: center; gap: 14px; padding: 13px 0; color: #fff; }
.newsline b { font-family: var(--en); font-size: 10.5px; font-weight: 700; letter-spacing: .16em; color: var(--y); white-space: nowrap; }
.newsline time { font-family: var(--en); font-size: 12px; color: #a9a9a4; white-space: nowrap; }
.newsline span { font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.newsline a:hover span { text-decoration: underline; }

/* --- 2. ネットワークの広がり ---------------------------------------- */
.spread__grid { display: grid; gap: 34px; align-items: center; }
@media (min-width: 900px) { .spread__grid { grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: 56px; } }
.spread__areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.spread__area {
  border: 1px solid var(--line); padding: 9px 16px; font-size: 13px; font-weight: 700;
  white-space: nowrap; background: var(--w);
}
.spread__area b { color: var(--ink); }
.spread__area i { font-style: normal; color: var(--ink3); font-size: 11px; margin-left: 6px; }

/* --- 3. 4店舗 ------------------------------------------------------- */
.shopcard__area { font-size: 11.5px; color: var(--ink3); white-space: nowrap; }
.shopcard__svc { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.shopcard__svc span {
  font-size: 10.5px; padding: 3px 8px; background: var(--y-soft); color: #7a5f00; white-space: nowrap;
}

/* --- 4. サービス4枚 -------------------------------------------------- */
.v2-grid--svc { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .v2-grid--svc { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .v2-grid--svc { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.v2-grid--svc .v2-card__ttl {
  --ch: 9; --max: 18px;
  font-size: min(calc((100vw - var(--pad) * 2 - 34px) / var(--ch)), var(--max));
}
@media (min-width: 640px) {
  .v2-grid--svc .v2-card__ttl {
    font-size: min(calc(((min(100vw, calc(var(--maxw) + var(--pad) * 2)) - var(--pad) * 2 - 18px) / 2 - 36px) / var(--ch)), var(--max));
  }
}
@media (min-width: 1024px) {
  .v2-grid--svc .v2-card__ttl {
    font-size: min(calc(((min(100vw, calc(var(--maxw) + var(--pad) * 2)) - var(--pad) * 2 - 54px) / 4 - 36px) / var(--ch)), var(--max));
  }
}

/* --- 5. 成長実績 ----------------------------------------------------- */
.growth { display: grid; gap: 0; margin-top: 8px; border-top: 1px solid var(--line); }
@media (min-width: 900px) { .growth { grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 0; } }
.growth li { position: relative; padding: 16px 0 16px 22px; border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .growth li { padding: 26px 14px 0 0; border-bottom: 0; border-top: 2px solid var(--line); } }
.growth li:first-child { border-top-color: var(--y); }
.growth li::before {
  content: ""; position: absolute; left: 0; top: 24px; width: 10px; height: 10px; border-radius: 50%;
  background: var(--w); border: 2px solid var(--y);
}
@media (min-width: 900px) { .growth li::before { left: 0; top: -6px; } }
.growth b { display: block; font-family: var(--en); font-size: 15px; font-weight: 800; color: var(--ink3); letter-spacing: .04em; }
.growth span { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.6; margin-top: 4px; }

.strengths { display: grid; gap: 16px; margin-top: 44px; }
@media (min-width: 768px) { .strengths { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
.strength { border: 1px solid var(--line); padding: 24px 22px; background: var(--w); }
.strength__no { font-family: var(--en); font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--y2); }
.strength__ttl { --ch: 9; --max: 19px; font-weight: 900; margin: 8px 0 10px; }
.strength__body { font-size: 13px; line-height: 1.9; color: var(--ink2); }

/* 取扱ブランド帯 */
.brands { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 22px; }
.brands__row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.brands__row + .brands__row { margin-top: 12px; }
.brands__lb { font-size: 11px; color: var(--ink3); white-space: nowrap; min-width: 4.5em; }
.brands__list { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.brands__list span { font-size: 12.5px; color: var(--ink2); white-space: nowrap; }

/* --- 6. 企業理念＋問い合わせ ---------------------------------------- */
.philo { text-align: center; }
.philo__ttl { --ch: 11; --max: 40px; font-weight: 900; }
.philo__body { margin: 22px auto 0; max-width: 44em; font-size: 14.5px; line-height: 2.1; color: var(--ink2); }
.philo__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

.bigcta { background: var(--ink); color: #fff; text-align: center; }
.bigcta__ttl { --ch: 10; --max: 38px; font-weight: 900; }
.bigcta__txt { margin-top: 16px; font-size: 14.5px; color: #cfcfc9; }
.bigcta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.bigcta__btns .cg-btn--ghost { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.bigcta__btns .cg-btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.bigcta__tel { margin-top: 28px; }
.bigcta__tel a { font-family: var(--en); font-size: clamp(28px, 6vw, 44px); font-weight: 800; white-space: nowrap; }
.bigcta__tel span { display: block; font-size: 12px; color: #a9a9a4; margin-top: 4px; }


/* =========================================================================
   セクション見出しは1行で入れる（黄色バー＋余白ぶんを引いて逆算）
   ====================================================================== */
.cg-shead--lg .cg-h2 {
	font-size: min(calc((100vw - var(--pad) * 2 - 34px) / var(--ch)), var(--max));
}
@media (max-width: 767px) { .cg-shead--lg .cg-shead__en { display: none; } }

/* =========================================================================
   モーション：テンポを上げ、セクションは横からスライドイン
   ====================================================================== */
:root { --ez: cubic-bezier(.22, .8, .3, 1); }

[data-reveal] {
	transition: opacity .46s var(--ez), transform .46s var(--ez);
	transform: translateY(24px);
}
[data-reveal="wipe"] { transition: clip-path .8s var(--ez); }
[data-reveal-img] img { transition: transform .9s var(--ez); }
[data-stagger] > * {
	transform: translateY(20px);
	transition: opacity .44s var(--ez), transform .44s var(--ez);
}

/* 横から入る（セクションごとに左右交互に振る） */
[data-reveal="slide-left"]  { transform: translateX(-64px); }
[data-reveal="slide-right"] { transform: translateX(64px); }
[data-reveal="slide-left"].is-in,
[data-reveal="slide-right"].is-in { transform: none; }

/* セクションの中身をまるごと横から入れる箱 */
.slidein { opacity: 0; transition: opacity .5s var(--ez), transform .5s var(--ez); }
.slidein--l { transform: translateX(-70px); }
.slidein--r { transform: translateX(70px); }
.slidein.is-in { opacity: 1; transform: none; }

/* =========================================================================
   店舗カードにGoogleマップを載せる
   ====================================================================== */
.v2-card__map { position: relative; aspect-ratio: 16 / 10; background: var(--g2); }
.v2-card__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

@media (prefers-reduced-motion: reduce) {
	.slidein { opacity: 1; transform: none; }
}


/* -------------------------------------------------- 企業理念（MVV） */
.mvv { margin-top: 40px; display: grid; gap: 30px; }
.mvv__head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.mvv__lb {
	background: var(--ink); color: #fff; font-size: 12px; font-weight: 700;
	letter-spacing: .1em; padding: 6px 16px; white-space: nowrap; flex: none;
}
.mvv__lead { font-size: 15px; font-weight: 700; line-height: 1.7; }
@media (min-width: 768px) { .mvv__lead { font-size: 17px; } }
.mvv__sub {
	font-size: 14px; font-weight: 700; color: var(--ink2);
	border-left: 4px solid var(--y); padding-left: 14px; line-height: 1.8;
}
.mvv__cards { display: grid; gap: 14px; }
@media (min-width: 768px) { .mvv__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; } }
.mvv__card { border: 1px solid var(--line); background: var(--w); padding: 20px 18px; }
.mvv__card--step { position: relative; }
@media (min-width: 768px) {
	.mvv__card--step + .mvv__card--step::before {
		content: ""; position: absolute; left: -13px; top: 50%; transform: translateY(-50%);
		width: 0; height: 0; border-left: 8px solid var(--y);
		border-top: 6px solid transparent; border-bottom: 6px solid transparent;
	}
}
.mvv__ttl {
	font-weight: 900; margin-bottom: 9px; padding-bottom: 9px;
	border-bottom: 2px solid var(--y);
	font-size: min(calc((100vw - var(--pad) * 2 - 40px) / var(--ch)), var(--max));
}
.mvv__body { font-size: 13px; line-height: 1.9; color: var(--ink2); }

/* 横スライドインの初期位置（±70px）が文書幅を広げないようにクリップする。
   overflow:hidden と違い clip はスクロールコンテナを作らないので、
   position:sticky などに影響しない。 */
.cg-sec, .fv, .bigcta { overflow-x: clip; }


/* =========================================================================
   ファーストビュー（動画版）
     - 動画は object-fit: cover。モバイルは縦長にして被写体を中央寄せ
     - 見出しは nowrap。文字数から font-size を逆算して1行に収める
   ====================================================================== */
.fv { position: relative; overflow: hidden; background: #0b0d10; }

.fv__media { position: absolute; inset: 0; z-index: 0; }
.fv__video {
	width: 100%; height: 100%; object-fit: cover;
	object-position: 62% 50%;   /* モバイルは車を残して左に余白を作る */
	display: block;
}
@media (min-width: 900px) { .fv__video { object-position: center 55%; } }

/* 背景を暗く（コピーを最優先で読ませる） */
.fv__media::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(8,10,13,.72) 0%, rgba(8,10,13,.46) 42%, rgba(8,10,13,.82) 100%),
		rgba(8, 10, 13, .28);
}
@media (min-width: 900px) {
	.fv__media::after {
		background:
			linear-gradient(96deg, rgba(8,10,13,.88) 0%, rgba(8,10,13,.6) 52%, rgba(8,10,13,.4) 100%),
			rgba(8, 10, 13, .2);
	}
}

.fv__copy {
	position: relative; z-index: 2;
	min-height: 82svh;                 /* モバイルは縦長に */
	display: flex; align-items: center;
	padding-block: 96px 72px;
}
@media (min-width: 900px) { .fv__copy { min-height: 76svh; padding-block: 120px 90px; } }
.fv__inner {
	width: 100%; max-width: calc(var(--maxw) + var(--pad) * 2);
	margin-inline: auto; padding-inline: var(--pad); color: #fff;
}

.fv__eyebrow {
	font-family: var(--en); font-size: 11px; font-weight: 600;
	letter-spacing: .22em; color: rgba(255, 255, 255, .72);
	white-space: nowrap; margin-bottom: 14px;
	display: flex; align-items: center; gap: 12px;
}
.fv__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--y); flex: none; }

/* AUTO VALUE ─ 大きく、字間を開けて、下に黄色のライン */
.fv__brand {
	--ch: 7; --max: 132px;
	font-family: var(--en); font-weight: 800; line-height: .94;
	font-size: min(calc((100vw - var(--pad) * 2 - 6px) / var(--ch)), var(--max));
	letter-spacing: .06em; white-space: nowrap; text-transform: uppercase;
	margin: 0;
	background: linear-gradient(180deg, #fff 46%, #cfd3d8 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
	filter: drop-shadow(0 4px 26px rgba(0, 0, 0, .55));
}
.fv__brand::after {
	content: ""; display: block; width: 76px; height: 5px;
	background: var(--y); margin-top: 16px;
}

.fv__lead {
	--ch: 20; --max: 26px;
	font-size: min(calc((100vw - var(--pad) * 2 - 6px) / var(--ch)), var(--max));
	font-weight: 700; letter-spacing: .04em; white-space: nowrap;
	margin-top: 18px; color: #fff;
	text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
}

.fv__txt {
	margin-top: 18px; max-width: 42em; font-size: 13.5px; line-height: 2;
	color: rgba(255, 255, 255, .9);
}
@media (min-width: 768px) { .fv__txt { font-size: 15px; } }

.fv__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.fv__btns .cg-btn--ghost {
	background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .5); color: #fff;
}
.fv__btns .cg-btn--ghost:hover { background: rgba(255, 255, 255, .2); border-color: #fff; }

/* 動きを減らす設定では動画を止める */
@media (prefers-reduced-motion: reduce) {
	.fv__video { display: none; }
	.fv__media { background: url("../img/fv-poster.jpg") center/cover no-repeat; }
}

/* =========================================================================
   取扱ブランドの無限スライダー（2段・逆方向）
     中身を2回出しておき、-50% までずらして頭に戻すと継ぎ目なく回る。
   ====================================================================== */
.marquee {
	background: var(--g1);
	border-block: 1px solid var(--line);
	padding-block: 20px 22px;
	overflow: hidden;
}
.marquee__lb {
	font-size: 11.5px; letter-spacing: .08em; color: var(--ink3);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
	margin-bottom: 14px;
}
.marquee__row { display: flex; width: max-content; }
.marquee__row + .marquee__row { margin-top: 10px; }
.marquee__row[data-dir="left"]  { animation: marquee-l 38s linear infinite; }
.marquee__row[data-dir="right"] { animation: marquee-r 46s linear infinite; }
.marquee:hover .marquee__row { animation-play-state: paused; }

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

.marquee__list { display: flex; align-items: center; flex: none; }
.marquee__item {
	flex: none; display: flex; align-items: center; justify-content: center;
	height: 54px; padding-inline: 22px;
	border-right: 1px solid var(--line);
}
@media (min-width: 768px) { .marquee__item { height: 62px; padding-inline: 30px; } }
.marquee__item img {
	max-height: 40px; width: auto; object-fit: contain;
	filter: grayscale(1); opacity: .72;
	transition: filter .3s var(--ez), opacity .3s var(--ez);
}
.marquee__item:hover img { filter: none; opacity: 1; }
.marquee__name {
	font-family: var(--en); font-weight: 700; font-size: 15px;
	letter-spacing: .1em; color: #9a9a95; white-space: nowrap;
	transition: color .3s var(--ez);
}
@media (min-width: 768px) { .marquee__name { font-size: 17px; } }
.marquee__item:hover .marquee__name { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
	.marquee__row { animation: none; }
	.marquee__row > .marquee__list[aria-hidden="true"] { display: none; }
	.marquee { overflow-x: auto; }
}

/* 350x350 の正方ロゴが混ざるので、高さを揃えて中央に置く */
.marquee__item img { max-height: 44px; max-width: 96px; }
@media (min-width: 768px) { .marquee__item img { max-height: 52px; max-width: 110px; } }

/* FVのブランドは公式ロゴ画像を使う */
.fv__brand { background: none; filter: none; }
.fv__brand img {
	width: min(calc(100vw - var(--pad) * 2 - 6px), 560px);
	height: auto;
	filter: drop-shadow(0 4px 26px rgba(0, 0, 0, .6));
}
.fv__brand::after { margin-top: 14px; }


/* =========================================================================
   ブランドスライダー 調整
     - ロゴは色付きのまま大きく
     - 4セット並べて -25%（1セットぶん）だけ動かす＝PCでも右端が空かない
   ====================================================================== */
@keyframes marquee-l { from { transform: translateX(0); }    to { transform: translateX(-25%); } }
@keyframes marquee-r { from { transform: translateX(-25%); } to { transform: translateX(0); } }

.marquee { padding-block: 24px 26px; }
.marquee__row[data-dir="left"]  { animation-duration: 46s; }
.marquee__row[data-dir="right"] { animation-duration: 56s; }
.marquee__row + .marquee__row { margin-top: 14px; }

.marquee__item {
	height: 78px; padding-inline: 20px;
}
@media (min-width: 768px) { .marquee__item { height: 96px; padding-inline: 28px; } }

.marquee__item img {
	max-height: 62px; max-width: 104px;
	filter: none; opacity: 1;                 /* 色を付ける */
	transition: transform .3s var(--ez);
}
@media (min-width: 768px) { .marquee__item img { max-height: 78px; max-width: 132px; } }
.marquee__item:hover img { transform: scale(1.08); }

/* =========================================================================
   FV: 黄色の台形パネル（右端を斜めに切る）
     ロゴ・見出しは台形の上に乗るので文字色を濃色へ。
   ====================================================================== */
.fv__shape {
	position: absolute; inset: 0 auto 0 0; z-index: 0;
	width: 100%;
	background: var(--y);
	clip-path: polygon(0 0, 100% 0, calc(100% - 64px) 100%, 0 100%);
	box-shadow: 0 0 60px rgba(0, 0, 0, .22);
}
@media (min-width: 900px) {
	.fv__shape { width: 58%; clip-path: polygon(0 0, 100% 0, calc(100% - 150px) 100%, 0 100%); }
}
@media (min-width: 1400px) { .fv__shape { width: 52%; } }

.fv__inner { position: relative; z-index: 1; }
/* 台形の上に乗るので、背景の暗幕は右側だけでよい */
.fv__media::after { background: linear-gradient(90deg, rgba(8,10,13,.35) 0%, rgba(8,10,13,.22) 60%, rgba(8,10,13,.4) 100%); }

.fv__eyebrow { color: rgba(0, 0, 0, .62); }
.fv__eyebrow::before { background: var(--ink); }
.fv__brand img { filter: none; }
.fv__brand::after { background: var(--ink); }
.fv__lead { color: var(--ink); text-shadow: none; }
.fv__btns .cg-btn { background: var(--ink); border-color: var(--ink); color: #fff; }
.fv__btns .cg-btn:hover { background: #000; border-color: #000; }

/* 台形の内側に収まるよう、PCは右に余白を取る */
@media (min-width: 900px) {
	.fv__inner > * { max-width: 46%; }
	.fv__brand img { width: min(42vw, 500px); }
}

/* ロゴ帯はホバーで止めない */
.marquee:hover .marquee__row { animation-play-state: running; }

/* =========================================================================
   販売店一覧：スワイプできる横スライダー＋黄色の四角の装飾
   ====================================================================== */
.shops { position: relative; overflow: hidden; }
.shops__in { position: relative; z-index: 2; }

.shops__deco {
	position: absolute; z-index: 0; background: var(--y);
	opacity: .16; pointer-events: none;
}
.shops__deco--a { width: 240px; height: 240px; top: -70px; right: -60px; transform: rotate(18deg); }
.shops__deco--b { width: 150px; height: 150px; bottom: 40px; left: -50px; transform: rotate(-14deg); opacity: .22; }
.shops__deco--c { width: 90px; height: 90px; top: 46%; right: 12%; transform: rotate(28deg); opacity: .26; }
@media (max-width: 767px) { .shops__deco--c { display: none; } }

.shops__bar { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.shops__hint {
	font-size: 12px; color: var(--ink3); white-space: nowrap;
	display: flex; align-items: center; gap: 8px;
}
.shops__hint::before {
	content: ""; width: 22px; height: 2px; background: var(--y);
}
.shops__nav { margin-left: auto; display: flex; gap: 8px; }
.shops__arw {
	width: 42px; height: 42px; border: 1px solid var(--line); background: var(--w);
	display: grid; place-content: center;
	transition: background .25s var(--ez), border-color .25s var(--ez);
}
.shops__arw:hover { background: var(--y); border-color: var(--y); }
.shops__arw::before {
	content: ""; width: 10px; height: 10px;
	border-top: 2px solid var(--ink); border-right: 2px solid var(--ink);
	transform: rotate(-135deg); margin-left: 3px;
}
.shops__arw--next::before { transform: rotate(45deg); margin: 0 3px 0 0; }
.shops__arw[disabled] { opacity: .35; pointer-events: none; }

.shops__track {
	position: relative; z-index: 2;
	display: flex; gap: 16px;
	overflow-x: auto; overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory; scroll-behavior: smooth;
	padding: 4px var(--pad) 8px;
	max-width: calc(var(--maxw) + var(--pad) * 2); margin-inline: auto;
	scrollbar-width: none;
}
.shops__track::-webkit-scrollbar { display: none; }
.shops__card {
	flex: none; scroll-snap-align: start;
	width: min(84%, 340px);
}
@media (min-width: 640px) { .shops__card { width: 300px; } }
@media (min-width: 1024px) { .shops__card { width: calc((100% - 48px) / 3.35); } }


/* =========================================================================
   FV: 黄色を薄い透明にして動画を透かす
   ====================================================================== */
.fv__shape {
	background: linear-gradient(100deg, rgba(255, 210, 0, .80) 0%, rgba(255, 210, 0, .60) 100%);
}
/* 透けるぶん下の動画を暗くして、濃色の文字が沈まないようにする */
.fv__media::after {
	background: linear-gradient(90deg, rgba(8,10,13,.52) 0%, rgba(8,10,13,.3) 55%, rgba(8,10,13,.44) 100%);
}
.fv__eyebrow { color: rgba(0, 0, 0, .74); }

/* =========================================================================
   販売店カード：外装写真＋Googleマップ／背景は黄色
   ====================================================================== */
.shops { background: linear-gradient(180deg, var(--y) 0%, #ffe470 46%, var(--pale) 100%); }
.shops__deco { background: #fff; opacity: .45; }
.shops__deco--a { opacity: .3; }
.shops__hint { color: rgba(0, 0, 0, .62); }
.shops__hint::before { background: var(--ink); }
.shops__arw { border-color: rgba(0, 0, 0, .2); }
.shops__arw:hover { background: var(--ink); border-color: var(--ink); }
.shops__arw:hover::before { border-color: #fff; }

.shopcard {
	flex: none; scroll-snap-align: start;
	width: min(84%, 340px);
	background: var(--w);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
	display: flex; flex-direction: column;
	transition: transform .35s var(--ez), box-shadow .35s var(--ez);
}
@media (min-width: 640px) { .shopcard { width: 320px; } }
@media (min-width: 1024px) { .shopcard { width: calc((100% - 48px) / 3.3); } }
.shopcard:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(0, 0, 0, .22); }

/* 外装写真＋店舗名 */
.shopcard__hero { position: relative; overflow: hidden; }
.shopcard__hero img {
	width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block;
	transition: transform 1.1s var(--ez);
}
.shopcard:hover .shopcard__hero img { transform: scale(1.06); }
.shopcard__hero::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.3) 52%, rgba(0,0,0,.8) 100%);
}
.shopcard__flag {
	position: absolute; top: 0; left: 0; z-index: 2;
	background: var(--y); color: var(--ink);
	font-family: var(--en); font-weight: 800; font-size: 10px; letter-spacing: .14em;
	padding: 5px 11px; white-space: nowrap;
}
.shopcard__over { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 0 18px 16px; color: #fff; }
.shopcard__meta {
	display: flex; align-items: center; gap: 9px;
	font-size: 11px; letter-spacing: .06em; white-space: nowrap;
	color: rgba(255, 255, 255, .9);
}
.shopcard__meta i { width: 12px; height: 1px; background: var(--y); flex: none; }
.shopcard__name {
	--ch: 5; --max: 27px; font-weight: 900; margin-top: 4px;
	text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
	font-size: min(calc((100vw - var(--pad) * 2 - 60px) / var(--ch)), var(--max));
}

/* 地図 */
.shopcard__map { position: relative; aspect-ratio: 16 / 8; border-bottom: 3px solid var(--y); }
.shopcard__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.shopcard__open {
	position: absolute; z-index: 2; right: 10px; bottom: 10px;
	background: rgba(255, 255, 255, .95); color: var(--ink);
	font-size: 11px; font-weight: 700; padding: 7px 12px; white-space: nowrap;
	box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
	transition: background .25s var(--ez), color .25s var(--ez);
}
.shopcard__open:hover { background: var(--ink); color: #fff; }

/* 情報 */
.shopcard__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.shopcard__dl { display: grid; gap: 8px; margin-bottom: 14px; }
.shopcard__dl > div { display: grid; grid-template-columns: 3.4em 1fr; gap: 10px; align-items: start; }
.shopcard__dl dt {
	font-size: 10.5px; color: var(--ink3); white-space: nowrap;
	border-left: 2px solid var(--y); padding-left: 7px; padding-top: 2px;
}
.shopcard__dl dd { margin: 0; font-size: 12.5px; line-height: 1.65; color: var(--ink2); }
.shopcard__tel { font-family: var(--en); font-size: 17px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.shopcard__body .cg-btn { margin-top: auto; }


/* =========================================================================
   FV: 黄色の台形を撤去（動画＋白文字に戻す）
   ====================================================================== */
.fv__media::after {
	background:
		linear-gradient(180deg, rgba(8,10,13,.72) 0%, rgba(8,10,13,.46) 42%, rgba(8,10,13,.82) 100%),
		rgba(8, 10, 13, .28);
}
@media (min-width: 900px) {
	.fv__media::after {
		background:
			linear-gradient(96deg, rgba(8,10,13,.88) 0%, rgba(8,10,13,.6) 52%, rgba(8,10,13,.4) 100%),
			rgba(8, 10, 13, .2);
	}
}
.fv__eyebrow { color: rgba(255, 255, 255, .72); }
.fv__eyebrow::before { background: var(--y); }
.fv__brand::after { background: var(--y); }
.fv__brand img { filter: drop-shadow(0 4px 26px rgba(0, 0, 0, .6)); }
.fv__lead { color: #fff; text-shadow: 0 2px 16px rgba(0, 0, 0, .6); }
.fv__btns .cg-btn { background: var(--y); border-color: var(--y); color: var(--ink); }
.fv__btns .cg-btn:hover { background: var(--y2); border-color: var(--y2); }

/* =========================================================================
   販売店一覧：PC 4カラム／モバイル 1カラムのスワイプ
   背景も出現アニメーションを付ける
   ====================================================================== */
.shops { background: none; }
.shops__bg {
	position: absolute; inset: 0; z-index: 0;
	background: linear-gradient(180deg, var(--y) 0%, #ffe470 46%, var(--pale) 100%);
	transform: scaleY(0); transform-origin: top;
	transition: transform .7s var(--ez);
}
.shops__bg.is-in { transform: scaleY(1); }
.shops__deco { transition: opacity .6s var(--ez) .25s, transform .6s var(--ez) .25s; }

.shops__track {
	display: flex; gap: 16px;
	overflow-x: auto; overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory; scroll-behavior: smooth;
	padding: 4px var(--pad) 8px;
	max-width: calc(var(--maxw) + var(--pad) * 2); margin-inline: auto;
	scrollbar-width: none;
}
.shopcard { width: min(86%, 360px); }
@media (min-width: 640px) { .shopcard { width: 330px; } }

/* PCは4カラムのグリッドにして、スワイプをやめる */
@media (min-width: 1024px) {
	.shops__track {
		display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 20px; overflow: visible; scroll-snap-type: none;
	}
	.shopcard { width: auto; }
	.shops__bar { display: none; }
}

/* 写真のホバー（参考サイトの feat__media 相当） */
.shopcard__hero img { transition: transform 1.2s cubic-bezier(.22, .7, .18, 1); }
.shopcard:hover .shopcard__hero img { transform: scale(1.06); }
.shopcard__wash {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(180deg, rgba(255,210,0,0) 40%, rgba(255,210,0,.34) 100%);
	opacity: 0; transition: opacity .6s cubic-bezier(.22, .7, .18, 1);
}
.shopcard:hover .shopcard__wash { opacity: 1; }

/* =========================================================================
   サービス：全幅の帯を左右交互にスライドイン
   ====================================================================== */
.svc { overflow-x: clip; }
.svcrow { display: grid; align-items: center; }
@media (min-width: 900px) {
	.svcrow { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
	.svcrow--rev .svcrow__media { order: 2; }
}

.svcrow__media {
	position: relative; display: block; overflow: hidden;
	background: var(--ink);
}
.svcrow__media img {
	width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block;
	transition: transform 1.2s cubic-bezier(.22, .7, .18, 1);
}
@media (min-width: 900px) { .svcrow__media img { aspect-ratio: 16 / 10; } }
.svcrow__media:hover img { transform: scale(1.06); }

.svcrow__wash {
	position: absolute; inset: 0;
	background: linear-gradient(96deg, rgba(255, 210, 0, .3), rgba(0, 0, 0, .3));
	opacity: 0; transition: opacity .6s cubic-bezier(.22, .7, .18, 1);
}
.svcrow__media:hover .svcrow__wash { opacity: 1; }

.svcrow__view {
	position: absolute; z-index: 2; right: 18px; bottom: 18px;
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--y); color: var(--ink);
	font-family: var(--en); font-weight: 800; font-size: 12px; letter-spacing: .16em;
	padding: 10px 18px; white-space: nowrap;
	opacity: 0; transform: translateY(10px);
	transition: opacity .4s cubic-bezier(.22, .7, .18, 1), transform .4s cubic-bezier(.22, .7, .18, 1);
}
.svcrow__media:hover .svcrow__view { opacity: 1; transform: none; }
.svcrow__view i {
	width: 16px; height: 6px; background: currentColor;
	clip-path: polygon(0 42%, 72% 42%, 72% 0, 100% 50%, 72% 100%, 72% 58%, 0 58%);
	transition: transform .4s cubic-bezier(.22, .7, .18, 1);
}
.svcrow__media:hover .svcrow__view i { transform: translateX(5px); }

.svcrow__body { padding: 30px var(--pad) 42px; }
@media (min-width: 900px) { .svcrow__body { padding: 40px 6% 40px 5%; } }
.svcrow--rev .svcrow__body { }
.svcrow__no {
	display: flex; align-items: center; gap: 12px;
	font-family: var(--en); font-weight: 800; font-size: 30px; line-height: 1;
	color: var(--y2); white-space: nowrap;
}
.svcrow__no span {
	font-size: 10.5px; font-weight: 600; letter-spacing: .18em; color: var(--ink3);
}
.svcrow__ttl {
	--ch: 9; --max: 30px; font-weight: 900; margin: 12px 0 12px;
	font-size: min(calc((100vw - var(--pad) * 2 - 10px) / var(--ch)), var(--max));
}
.svcrow__txt { font-size: 13.5px; line-height: 1.95; color: var(--ink2); margin-bottom: 20px; }
@media (min-width: 768px) { .svcrow__txt { font-size: 14.5px; } }


/* =========================================================================
   販売店一覧（〜1023px）：中央寄せカルーセル
     ・::before / ::after のスペーサーで先頭・末尾も中央に来られるようにする
     ・中央のカードだけ拡大（.is-active は JS が付ける）
   ====================================================================== */
@media (max-width: 1023px) {
	/* 見出し・リード・操作行を中央に */
	.shops__in { text-align: center; }
	.shops .cg-shead--lg { justify-content: center; }
	.shops .cg-shead--lg .cg-shead__en { display: none; }
	.shops__in .cg-lead { margin-inline: auto; }
	.shops__bar { justify-content: center; }
	.shops__nav { margin-left: 0; }
	.shops__hint { display: none; }

	.shops__track {
		--cardw: min(76vw, 320px);
		gap: 12px;
		padding: 26px 0 34px;
		align-items: center;
		scroll-snap-type: x mandatory;
	}
	/* 先頭と末尾のカードも画面中央に寄せられるようにする余白 */
	.shops__track::before,
	.shops__track::after {
		content: ""; flex: none; width: calc((100vw - var(--cardw)) / 2);
	}

	.shopcard {
		width: var(--cardw);
		scroll-snap-align: center;
		transform: scale(.84);
		opacity: .45;
		box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
		transition:
			transform .45s cubic-bezier(.22, .8, .3, 1),
			opacity .45s cubic-bezier(.22, .8, .3, 1),
			box-shadow .45s cubic-bezier(.22, .8, .3, 1);
	}
	/* 中央に来たカードだけ大きく前に出す */
	.shopcard.is-active {
		transform: scale(1.02);
		opacity: 1;
		box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
		z-index: 2;
	}
	.shopcard:hover { transform: scale(.84); }
	.shopcard.is-active:hover { transform: scale(1.02); }

	/* 矢印はトラックの左右に重ねる */
	.shops__nav {
		position: absolute; z-index: 5; left: 0; right: 0;
		display: flex; justify-content: space-between;
		pointer-events: none;
		padding-inline: 6px;
	}
	.shops__arw {
		pointer-events: auto;
		width: 46px; height: 46px; border-radius: 50%;
		background: rgba(255, 255, 255, .96);
		border-color: transparent;
		box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
	}
	.shops__bar { position: static; }
}

/* スライダーは矢印を重ねるので位置の基準にする */
.shops__slider { position: relative; }
@media (min-width: 1024px) { .shops__slider .shops__nav { display: none; } }

@media (max-width: 1023px) {
	/* 矢印はカードの高さの中央に置く */
	.shops__slider .shops__nav { top: 50%; transform: translateY(-50%); }
}


/* =========================================================================
   ロゴ画像
   ====================================================================== */
.cg-logo__img { width: auto; height: 34px; }
@media (min-width: 1024px) { .cg-logo__img { height: 42px; } }
/* ロゴは白フチ付きの暗色なので、反転せずそのまま置く（反転すると白い塊になる） */
.cg-logo__img--ft { height: 52px; margin-inline: auto; }

/* =========================================================================
   販売店一覧：中央寄せのズレを直す（黄色バーぶん右にずれていた）
   ====================================================================== */
@media (max-width: 1023px) {
	.shops .cg-shead--lg::before { display: none; }
	.shops .cg-shead--lg { gap: 0; }
}

/* =========================================================================
   お問い合わせ／採用の2カラム（背景は全幅の車写真）
   ====================================================================== */
.duo { display: grid; }
@media (min-width: 900px) { .duo { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.duo__col {
	position: relative; display: block; overflow: hidden;
	min-height: 300px; background: var(--ink);
}
@media (min-width: 900px) { .duo__col { min-height: 380px; } }
.duo__col img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
	transition: transform 1.2s cubic-bezier(.22, .7, .18, 1);
}
.duo__col:hover img { transform: scale(1.06); }
.duo__wash {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(8,10,13,.45) 0%, rgba(8,10,13,.72) 100%);
	transition: background .6s cubic-bezier(.22, .7, .18, 1);
}
.duo__col:hover .duo__wash {
	background: linear-gradient(180deg, rgba(8,10,13,.35) 0%, rgba(122,92,0,.7) 100%);
}
.duo__body {
	position: relative; z-index: 2; display: block; color: #fff;
	padding: 44px var(--pad);
	max-width: calc(var(--maxw) / 2 + var(--pad)); margin-inline: auto;
}
@media (min-width: 900px) { .duo__body { padding: 56px 8%; } }
.duo__en {
	display: block; font-family: var(--en); font-weight: 800;
	font-size: clamp(30px, 6vw, 48px); letter-spacing: .06em; line-height: 1; white-space: nowrap;
}
.duo__ja {
	display: flex; align-items: center; gap: 10px; margin-top: 10px;
	font-size: 14px; font-weight: 700; white-space: nowrap; color: var(--y);
}
.duo__ja::before { content: ""; width: 22px; height: 2px; background: var(--y); flex: none; }
.duo__txt { display: block; margin-top: 14px; font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.86); }
.duo__go {
	display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
	font-size: 13px; font-weight: 700; white-space: nowrap;
	border-bottom: 1px solid rgba(255, 255, 255, .5); padding-bottom: 4px;
}
.duo__go i {
	width: 16px; height: 6px; background: currentColor;
	clip-path: polygon(0 42%, 72% 42%, 72% 0, 100% 50%, 72% 100%, 72% 58%, 0 58%);
	transition: transform .4s cubic-bezier(.22, .7, .18, 1);
}
.duo__col:hover .duo__go i { transform: translateX(5px); }


/* -------------------------------------------------- 最安値の車を見つける（在庫検索2カラム） */
.cg-stockgrid {
	display: grid; grid-template-columns: repeat(2, 1fr);
	gap: 1px; background: rgba(0, 0, 0, .12);
	border: 1px solid rgba(0, 0, 0, .12);
}
.cg-stockgrid .cg-stile { padding: 22px 10px 20px; gap: 10px; }
.cg-stockgrid .cg-stile__ico { width: 32px; height: 32px; }
.cg-stockgrid .cg-stile__txt { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cg-stockgrid .cg-stile__ttl { font-size: 14px; }
.cg-stockgrid .cg-stile__sub { font-size: 11px; }
@media (min-width: 640px) {
	.cg-stockgrid .cg-stile { flex-direction: row; justify-content: center; gap: 16px; padding: 32px 16px; }
	.cg-stockgrid .cg-stile__ico { width: 38px; height: 38px; }
	.cg-stockgrid .cg-stile__txt { align-items: flex-start; }
	.cg-stockgrid .cg-stile__ttl { font-size: 18px; }
	.cg-stockgrid .cg-stile__sub { font-size: 12px; }
}


/* =========================================================================
   2026-08-23 追加分
   自社ローン／代表挨拶／採用／店舗ショーケース／CONTACT・RECRUITの枠
   ====================================================================== */

/* -------------------------------------------------- 共通の追加パーツ */
.cg-btn--ghostw {
	background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff;
}
.cg-btn--ghostw:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

/* -------------------------------------------------- 番号つきカード（採用のカルチャー等） */
.loanpt { display: grid; gap: 14px; }
@media (min-width: 700px) { .loanpt { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }
.loanpt__item {
	background: var(--w); border: 1px solid var(--line); border-top: 4px solid var(--y);
	padding: 22px 20px 24px;
}
.loanpt__no {
	margin: 0 0 8px; display: flex; align-items: center; gap: 10px;
	font-family: var(--en); font-weight: 800; font-size: 22px; color: var(--y2); line-height: 1;
}
.loanpt__no span {
	font-size: 10.5px; letter-spacing: .14em; color: var(--ink3); white-space: nowrap;
}
.loanpt__ttl { --ch: 7; --max: 24px; font-weight: 900; margin: 0 0 10px; }
.loanpt__txt { margin: 0; font-size: 13.5px; line-height: 1.95; color: var(--ink2); }

/* -------------------------------------------------- 代表挨拶 */
.msg { display: grid; gap: 26px; }
@media (min-width: 900px) { .msg { grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: 42px; align-items: start; } }
.msg__media { margin: 0; }
.msg__media img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.msg__catch { --ch: 12; --max: 30px; font-weight: 900; margin: 0 0 18px; }
.msg__p { margin: 0 0 1.2em; font-size: 14.5px; line-height: 2.1; color: var(--ink2); }
.msg__sign { margin: 26px 0 0; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.msg__signco { font-size: 12.5px; color: var(--ink3); white-space: nowrap; }
.msg__signname { font-size: 21px; font-weight: 900; white-space: nowrap; }
.msg__catchbig {
	--ch: 11; --max: 40px;
	margin: 0 0 14px; font-weight: 900; line-height: 1.25; white-space: nowrap;
	font-size: min(calc((100vw - var(--pad) * 2 - 10px) / var(--ch)), var(--max));
}
.msg__grid { display: grid; gap: 14px; }
@media (min-width: 800px) { .msg__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.msg__card { background: var(--w); border: 1px solid var(--line); border-left: 4px solid var(--y); padding: 20px 18px; }
.msg__cardto { margin: 0 0 8px; font-weight: 900; font-size: 15px; white-space: nowrap; }
.msg__cardtxt { margin: 0; font-size: 13px; line-height: 1.95; color: var(--ink2); }

/* -------------------------------------------------- 採用 */
.rec-hero { position: relative; overflow: hidden; background: var(--ink); }
.rec-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rec-hero__wash {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(8, 10, 13, .82) 0%, rgba(8, 10, 13, .5) 70%, rgba(8, 10, 13, .35) 100%);
}
.rec-hero__in { position: relative; z-index: 2; padding-block: clamp(48px, 9vw, 96px); color: #fff; }
.rec-hero__en {
	margin: 0 0 10px; font-family: var(--en); font-weight: 800; font-size: 12px;
	letter-spacing: .2em; color: var(--y); white-space: nowrap;
}
.rec-hero__ttl {
	--ch: 11; --max: 38px;
	margin: 0; font-weight: 900; line-height: 1.35; white-space: nowrap;
	font-size: min(calc((100vw - var(--pad) * 2 - 10px) / var(--ch)), var(--max));
}
.rec-hero__txt { margin: 14px 0 0; font-size: 14px; line-height: 1.95; color: rgba(255, 255, 255, .85); }

.recjob { display: grid; gap: 14px; }
@media (min-width: 800px) { .recjob { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.recjob__item { background: var(--w); border: 1px solid var(--line); padding: 22px 20px 24px; }
.recjob__ttl { --ch: 10; --max: 20px; font-weight: 900; margin: 0 0 12px; }
.recjob__tags { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.recjob__tags li {
	background: var(--y-soft); border: 1px solid var(--y2);
	font-size: 11px; font-weight: 700; padding: 3px 10px; white-space: nowrap;
}
.recjob__txt { margin: 0; font-size: 13px; line-height: 1.95; color: var(--ink2); }

/* -------------------------------------------------- 店舗ショーケース（スライダー・白背景） */
.sshow {
	position: relative; overflow: hidden;
	background: var(--w); color: var(--ink);
	padding-block: clamp(22px, 4vw, 40px) var(--sec);
	/* スライドの左右の余白。中央のスライドがサイト幅に揃い、はみ出した隣が余白側に覗く */
	--gut: max(var(--pad), calc((100% - var(--maxw)) / 2));
	--sgap: 16px;
	--slidew: min(var(--maxw), calc(100% - var(--pad) * 2 - 56px));
}
/* スマホ・タブレットは画面が狭いので、カードをできるだけ広げて覗きは細くする */
@media (max-width: 699px) {
	.sshow { --gut: 12px; --sgap: 8px; --slidew: calc(100% - 24px); }
}
@media (min-width: 700px) and (max-width: 899px) {
	.sshow { --sgap: 12px; --slidew: calc(100% - 56px); }
}
.sshow__bg {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, var(--pale) 0%, rgba(255, 252, 236, 0) 45%);
	pointer-events: none;
}
.sshow__head { position: relative; z-index: 2; }

.sshow__tabs {
	display: flex; gap: 8px; margin: 0 0 22px;
	overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.sshow__tabs::-webkit-scrollbar { display: none; }
.sshow__tab {
	flex: none; display: flex; align-items: baseline; gap: 8px;
	padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px;
	background: var(--w); color: var(--ink2); cursor: pointer;
	transition: background .3s, color .3s, border-color .3s;
}
.sshow__tab:hover { border-color: var(--y2); color: var(--ink); }
.sshow__tab.is-on { background: var(--y); border-color: var(--y); color: var(--ink); }
.sshow__tabno { font-family: var(--en); font-weight: 800; font-size: 11px; letter-spacing: .1em; }
.sshow__tabja { font-weight: 700; font-size: 13px; white-space: nowrap; }

.sshow__viewport { position: relative; z-index: 2; overflow: hidden; }
/* 覗いている隣のカードは「気配」だけでいいので、左右を白でフェードさせる */
.sshow__viewport::before,
.sshow__viewport::after {
	content: ""; position: absolute; top: 0; bottom: 0; z-index: 3;
	width: clamp(14px, 9vw, 150px); pointer-events: none;
}
.sshow__viewport::before { left: 0; background: linear-gradient(90deg, var(--w) 14%, rgba(255, 255, 255, 0)); }
.sshow__viewport::after { right: 0; background: linear-gradient(270deg, var(--w) 14%, rgba(255, 255, 255, 0)); }
.sshow__track {
	display: flex; gap: var(--sgap); padding-inline: var(--gut);
	transition: transform .7s var(--ez); will-change: transform;
}
.sshow__slide {
	/* 隣が覗くように、必ずビューポートより狭くする */
	flex: 0 0 var(--slidew);
	min-width: 0;
	display: grid; gap: 0;
	background: var(--w); border: 1px solid var(--line);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
	opacity: .42; transition: opacity .6s var(--ez);
}
.sshow__slide.is-active { opacity: 1; box-shadow: 0 16px 42px rgba(0, 0, 0, .12); }
@media (min-width: 900px) {
	.sshow__slide { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
}

.sshow__media { position: relative; margin: 0; overflow: hidden; }
.sshow__media img { width: 100%; height: 100%; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.sshow__wash {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(8, 10, 13, 0) 42%, rgba(8, 10, 13, .82) 100%);
}
.sshow__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 20px 18px; color: #fff; }
.sshow__flag {
	display: inline-block; margin-bottom: 8px; padding: 4px 12px;
	background: var(--y); color: var(--ink); font-family: var(--en);
	font-weight: 800; font-size: 10.5px; letter-spacing: .12em; white-space: nowrap;
}
.sshow__meta {
	margin: 0 0 4px; display: flex; align-items: center; gap: 8px;
	font-family: var(--en); font-size: 11px; letter-spacing: .1em;
	color: rgba(255, 255, 255, .85); white-space: nowrap;
}
.sshow__meta i { width: 14px; height: 1px; background: var(--y); flex: none; }
.sshow__name {
	--ch: 6; --max: 32px;
	margin: 0; font-weight: 900; line-height: 1.2; white-space: nowrap;
	font-size: min(calc((100vw - var(--pad) * 2 - 90px) / var(--ch)), var(--max));
}

.sshow__panel { background: var(--w); padding: 20px 18px 22px; }
@media (max-width: 699px) {
	.sshow__panel { padding: 18px 14px 20px; }
	.sshow__dl > div { grid-template-columns: 68px minmax(0, 1fr); gap: 8px; }
	.sshow__dl dd { font-size: 13.5px; }
	.sshow__cap { padding: 0 16px 16px; }
}
@media (min-width: 900px) { .sshow__panel { border-left: 1px solid var(--line); } }
.sshow__dl { margin: 0 0 16px; display: grid; gap: 10px; }
.sshow__dl > div { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 10px; align-items: start; }
.sshow__dl dt {
	font-size: 11px; font-weight: 700; letter-spacing: .06em; white-space: nowrap;
	color: var(--ink3); padding-top: 3px; position: relative; padding-left: 9px;
}
.sshow__dl dt::before {
	content: ""; position: absolute; left: 0; top: 7px; width: 3px; height: 11px; background: var(--y);
}
.sshow__dl dd { margin: 0; font-size: 13px; line-height: 1.75; color: var(--ink2); }
.sshow__tel { font-family: var(--en); font-weight: 800; font-size: 19px; color: var(--ink); white-space: nowrap; }
.sshow__map { position: relative; aspect-ratio: 16 / 9; background: var(--g2); margin-bottom: 14px; }
.sshow__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.sshow__btns { display: grid; gap: 8px; }
@media (min-width: 480px) { .sshow__btns { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.sshow__btns .cg-btn { width: 100%; }

.sshow__nav { display: flex; gap: 10px; }
.sshow__arw {
	width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
	background: var(--w); border: 1px solid var(--ink);
	display: grid; place-content: center;
	transition: background .3s, border-color .3s;
}
.sshow__arw:hover { background: var(--y); border-color: var(--y); }
.sshow__arw::before {
	content: ""; display: block; width: 9px; height: 9px; margin: 0 0 0 4px;
	border-top: 2px solid var(--ink); border-right: 2px solid var(--ink);
	transform: rotate(-135deg);
}
.sshow__arw--next::before { transform: rotate(45deg); margin: 0 4px 0 0; }

/* 矢印をぴったり中央に置くため、左右に同じ幅の枠を作る（左=カウンタ／右=説明） */
.sshow__foot {
	position: relative; z-index: 2; margin-top: 20px;
	display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
}
.sshow__count { order: 1; justify-self: end; }
.sshow__nav { order: 2; }
.sshow__hint { order: 3; justify-self: start; }
.sshow__count {
	margin: 0; display: flex; align-items: center; gap: 8px;
	font-family: var(--en); font-size: 13px; color: var(--ink3); white-space: nowrap;
}
.sshow__count b { font-size: 22px; font-weight: 800; color: var(--ink); }
.sshow__count i { width: 22px; height: 1px; background: var(--line); }
.sshow__hint { margin: 0; font-size: 12px; color: var(--ink3); }
/* スマホは矢印とカウンタだけで足りるので説明文は出さない（折り返して窮屈になる） */
@media (max-width: 699px) {
	.sshow__hint { display: none; }
	.sshow__foot { padding-inline: var(--gut); }
	.sshow__arw { width: 42px; height: 42px; }
}

/* -------------------------------------------------- CONTACT / RECRUIT（全幅・隙間なし） */
/* 境界は真ん中の1本線だけで示す */
.duo { gap: 0; padding: 0; background: var(--ink); }
.duo__col + .duo__col { border-top: 2px solid var(--y); }
@media (min-width: 900px) {
	.duo__col + .duo__col { border-top: none; border-left: 2px solid var(--y); }
}

/* =========================================================================
   2026-08-23 追加分 その3
   ヘッダーの「在庫を見る」ドロップダウン／自社ローンの条件表示／注記
   ====================================================================== */

/* -------------------------------------------------- 在庫を見る（ドロップダウン） */
.cg-gnav__has { position: relative; }
.cg-gnav__btn {
	display: none;
	background: none; border: none; cursor: pointer; font-family: inherit; color: inherit;
}
@media (min-width: 1024px) {
	.cg-gnav__btn {
		display: flex; align-items: center; gap: 7px; position: relative;
		padding-block: 6px;
		font-weight: 700; font-size: 13.5px; white-space: nowrap;
		transition: color .25s;
	}
	.cg-gnav__btn i {
		width: 8px; height: 8px; flex: none; margin-top: -3px;
		border-right: 2px solid var(--ink3); border-bottom: 2px solid var(--ink3);
		transform: rotate(45deg); transition: transform .3s, border-color .3s;
	}
	.cg-gnav__btn::after {
		content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
		background: var(--y); transform: scaleX(0); transition: transform .3s;
	}
	.cg-gnav__has:hover .cg-gnav__btn::after,
	.cg-gnav__has.is-open .cg-gnav__btn::after { transform: scaleX(1); }
	.cg-gnav__has.is-open .cg-gnav__btn i { transform: rotate(-135deg); margin-top: 3px; }
}

.cg-smenu {
	position: absolute; z-index: 60; top: calc(100% + 14px); left: 50%;
	width: 300px; transform: translate(-50%, 8px);
	background: var(--w); border: 1px solid var(--line);
	box-shadow: 0 18px 46px rgba(0, 0, 0, .16);
	padding: 16px 16px 14px;
	opacity: 0; visibility: hidden;
	transition: opacity .25s, transform .25s, visibility .25s;
}
.cg-smenu::before {
	content: ""; position: absolute; left: 50%; top: -7px; width: 12px; height: 12px;
	margin-left: -6px; background: var(--w);
	border-left: 1px solid var(--line); border-top: 1px solid var(--line);
	transform: rotate(45deg);
}
/* ボタンとメニューの隙間でホバーが切れないように橋を渡す */
.cg-smenu::after { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.cg-gnav__has:hover .cg-smenu,
.cg-gnav__has.is-open .cg-smenu {
	opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.cg-smenu__lead {
	margin: 0 0 12px; font-size: 12px; line-height: 1.7; color: var(--ink2);
	padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.cg-smenu__item {
	display: block; padding: 11px 12px; border: 1px solid var(--line);
	transition: background .25s, border-color .25s;
}
.cg-smenu__item + .cg-smenu__item { margin-top: 8px; }
.cg-smenu__item:hover { background: var(--pale); border-color: var(--y2); text-decoration: none; }
.cg-smenu__en {
	display: block; font-family: var(--en); font-size: 9.5px; font-weight: 600;
	letter-spacing: .18em; color: var(--ink3); white-space: nowrap;
}
.cg-smenu__ja { display: block; font-weight: 700; font-size: 14px; white-space: nowrap; margin-top: 1px; }
.cg-smenu__note { display: block; font-size: 11px; line-height: 1.6; color: var(--ink2); margin-top: 3px; }

.cg-note { margin: 14px 0 0; font-size: 12px; line-height: 1.8; color: var(--ink3); }


/* -------------------------------------------------- 採用：募集職種カード（給与を大きく） */
.recjob__en {
	margin: 0 0 4px; font-family: var(--en); font-size: 10.5px; font-weight: 600;
	letter-spacing: .18em; color: var(--ink3); white-space: nowrap;
}
.recjob__pay {
	display: flex; align-items: baseline; gap: 6px; margin-top: 6px;
	padding-top: 12px; border-top: 1px solid var(--line);
	white-space: nowrap;
}
.recjob__payja { font-size: 12px; font-weight: 700; color: var(--ink2); }
.recjob__paynum {
	font-family: var(--en); font-weight: 800; line-height: 1; color: var(--ink);
	font-size: min(calc((100vw - var(--pad) * 2 - 80px) / 6), 52px);
}
.recjob__payunit { font-size: 15px; font-weight: 900; }
.recjob__paynote {
	margin: 6px 0 12px; font-size: 12.5px; font-weight: 700; color: #a58200; white-space: nowrap;
}
.recjob__dl { margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.recjob__dl > div { display: grid; grid-template-columns: 66px minmax(0, 1fr); gap: 8px; align-items: start; }
.recjob__dl dt {
	font-size: 11px; font-weight: 700; color: var(--ink3); white-space: nowrap;
	position: relative; padding-left: 9px; padding-top: 2px;
}
.recjob__dl dt::before {
	content: ""; position: absolute; left: 0; top: 6px; width: 3px; height: 11px; background: var(--y);
}
.recjob__dl dd { margin: 0; font-size: 12.5px; line-height: 1.7; color: var(--ink2); }

/* -------------------------------------------------- 採用：締めのCTA */
.rec-cta { background: var(--ink); color: #fff; }
.rec-cta__in { padding-block: var(--sec); }
.rec-cta__lead {
	margin: 0 0 10px; display: inline-block; padding: 5px 14px;
	background: var(--y); color: var(--ink);
	font-weight: 700; font-size: 13px; white-space: nowrap;
}
@media (max-width: 400px) { .rec-cta__lead { font-size: 11.5px; padding: 4px 11px; } }
.rec-cta__ttl {
	--ch: 12; --max: 40px;
	margin: 0; font-weight: 900; line-height: 1.35; white-space: nowrap;
	font-size: min(calc((100vw - var(--pad) * 2 - 10px) / var(--ch)), var(--max));
}
.rec-cta__txt { margin: 16px 0 0; font-size: 14px; line-height: 1.95; color: rgba(255, 255, 255, .85); }
.rec-cta__txt--lead {
	margin: 0; font-size: clamp(15px, 2.4vw, 22px); font-weight: 700; line-height: 1.9; color: #fff;
}
.rec-cta__btns { margin-top: 26px; }


/* -------------------------------------------------- 採用：働く環境の強み */
.recmerit { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
@media (min-width: 700px) { .recmerit { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.recmerit__item {
	position: relative; background: var(--w); border: 1px solid var(--line);
	padding: 15px 16px 15px 46px; font-size: 13.5px; font-weight: 700; line-height: 1.7;
}
.recmerit__item::before {
	content: ""; position: absolute; left: 16px; top: 50%; margin-top: -7px;
	width: 16px; height: 14px; background: var(--y2);
	clip-path: polygon(14% 44%, 0 60%, 38% 100%, 100% 20%, 86% 6%, 37% 70%);
}
