@charset "utf-8";

/* ==========================================================================
   BIKE PARK+ LP (/plus)
   ========================================================================== */

/* ロゴ「BIKE PARK+」専用フォント */
@font-face {
	font-family: 'Fugaz One';
	src: url('/fonts/FugazOne-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--plus-white: #ffffff;
	--plus-black: #16181a;
	--plus-gray: #eef1f3;
	--plus-text-sub: #a7adb3;
	--plus-text-sub2: #d9dde0;
	--plus-text-sub3: #8b9299;
	--plus-accent: #6bbde0;
	--plus-accent-hover: #8fd0ec;
	--plus-link: #4fa3d1;
	--plus-link-hover: #3d84ac;
	--plus-glow: rgba(212, 255, 61, 0.45);
	--plus-border-dark: #2a2d30;
	--plus-border-light: #c7ced3;
	--plus-search-border: #3a3f45;
	--plus-icon-bg: #3a3f45;
	--plus-font: 'Zen Kaku Gothic New', sans-serif;
	--plus-font-en: 'Inter', sans-serif;
	--plus-font-logo: 'Fugaz One', 'Inter', sans-serif;
	--plus-max: 1100px;
	--plus-nav-h: 44px;
}

.plus-lp * { box-sizing: border-box; }

.plus-lp {
	margin: 0;
	padding-bottom: var(--plus-nav-h);
	background: var(--plus-white);
	font-family: var(--plus-font);
	color: var(--plus-black);
	overflow-x: hidden;
}

.plus-lp a { color: var(--plus-link); text-decoration: none; }
.plus-lp a:hover { color: var(--plus-link-hover); }
.plus-lp ::selection { background: var(--plus-link); color: var(--plus-white); }
.plus-lp img { max-width: 100%; }

.plus-container {
	max-width: var(--plus-max);
	margin: 0 auto;
}

/* ヘキサゴン柄背景 --------------------------------------------------------- */
.plus-hex-bg {
	background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22112%22 height=%22200%22 viewBox=%220 0 56 100%22%3E%3Cg fill=%22none%22 stroke=%22%231c2024%22 stroke-width=%220.75%22%3E%3Cpath d=%22M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100%22/%3E%3Cpath d=%22M28 0L28 34M0 50L28 34L56 50M0 16L28 34L28 66M56 16L28 34%22/%3E%3C/g%3E%3C/svg%3E');
	background-size: 56px 100px;
	background-color: var(--plus-black);
}

/* ヘッダー / ヒーローロゴ --------------------------------------------------- */
.plus-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: 96px;
	pointer-events: none;
	opacity: 0;
	background: linear-gradient(180deg, rgba(22, 24, 26, 0.95) 0%, rgba(22, 24, 26, 0.55) 70%, rgba(22, 24, 26, 0) 100%);
}

.plus-hero-logo {
	position: fixed;
	z-index: 101;
	top: 50vh;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--plus-font-logo);
	/* Fugaz One は Regular のみ。700 指定は合成ボールドで潰れるため 400 で使う */
	font-weight: 400;
	font-size: 44px;
	letter-spacing: 2px;
	color: var(--plus-white);
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
	white-space: nowrap;
	pointer-events: none;
	will-change: top, font-size;
}

.plus-hero-logo .plus-mark,
.plus-footer-logo .plus-mark { color: var(--plus-accent); }

/* 検索バー ----------------------------------------------------------------- */
.plus-search {
	position: fixed;
	z-index: 201;
	top: calc(50vh + 72px);
	left: 50%;
	transform: translateX(-50%);
	width: 520px;
	max-width: 86vw;
}

.plus-search-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 10px;
	background: rgba(22, 24, 26, 0.97);
	backdrop-filter: blur(10px);
	border: 1px solid var(--plus-search-border);
	border-radius: 4px;
	transition: border-color 0.3s, box-shadow 0.3s;
}

/* スクロール進行度 p > 0.5 で背景コンテンツから浮き上がらせる */
.plus-search.is-elevated .plus-search-bar {
	border-color: var(--plus-accent);
	box-shadow: 0 0 0 1px rgba(107, 189, 224, 0.35), 0 6px 28px rgba(0, 0, 0, 0.5);
}

.plus-search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	border-radius: 3px;
	background: none;
	color: var(--plus-text-sub);
	cursor: pointer;
	flex-shrink: 0;
	transition: color 0.2s;
}

.plus-search-submit:hover { color: var(--plus-white); }

.plus-search-submit svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
}

/* 絞り込みパネルを開くボタン（テキストラベル） */
.plus-search-filter {
	padding: 7px 14px;
	border: 1px solid var(--plus-search-border);
	border-radius: 3px;
	background: none;
	color: var(--plus-text-sub2);
	font-family: var(--plus-font);
	font-size: 12.5px;
	line-height: 1.2;
	white-space: nowrap;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.plus-search-filter:hover {
	border-color: var(--plus-accent);
	color: var(--plus-white);
}

.plus-search.is-filter-open .plus-search-filter {
	background: var(--plus-accent);
	border-color: var(--plus-accent);
	color: var(--plus-black);
}

.plus-search-input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: none;
	color: var(--plus-white);
	font-family: var(--plus-font);
	font-size: 14px;
	line-height: 1.6;
	padding: 4px 0;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.plus-search-input::placeholder { color: #7c848c; }
.plus-search-input::-webkit-search-cancel-button { -webkit-appearance: none; }

/* 絞り込みパネル ----------------------------------------------------------- */
.plus-filter-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.plus-search.is-filter-open .plus-filter-panel { grid-template-rows: 1fr; }

.plus-filter-panel-inner { overflow: hidden; }

.plus-filter-content {
	margin-top: 8px;
	padding: 22px 20px 18px;
	background: rgba(22, 24, 26, 0.97);
	backdrop-filter: blur(10px);
	border: 1px solid var(--plus-search-border);
	border-radius: 4px;
	overflow-y: auto;
	overscroll-behavior: contain; /* パネル内の慣性スクロールを背面へ伝播させない */
	opacity: 0;
	transform: translateY(-12px);
	transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.plus-search.is-filter-open .plus-filter-content {
	opacity: 1;
	transform: translateY(0);
}

.plus-filter-group + .plus-filter-group { margin-top: 20px; }

.plus-filter-group-label {
	font-size: 11.5px;
	letter-spacing: 1.5px;
	color: var(--plus-text-sub3);
	margin-bottom: 10px;
}

.plus-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.plus-chip { display: inline-flex; }

.plus-chip input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.plus-chip-label {
	display: inline-block;
	padding: 7px 15px;
	border: 1px solid var(--plus-search-border);
	border-radius: 999px;
	font-size: 13px;
	color: var(--plus-text-sub2);
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.plus-chip-label:hover { border-color: var(--plus-accent); }

.plus-chip input:checked + .plus-chip-label {
	background: var(--plus-accent);
	border-color: var(--plus-accent);
	color: var(--plus-black);
}

.plus-chip input:focus-visible + .plus-chip-label {
	outline: 2px solid var(--plus-accent);
	outline-offset: 2px;
}

.plus-filter-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid var(--plus-border-dark);
}

.plus-filter-clear,
.plus-filter-search {
	font-family: var(--plus-font);
	font-size: 13px;
	border-radius: 3px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.plus-filter-clear {
	padding: 9px 18px;
	border: 1px solid var(--plus-search-border);
	background: none;
	color: var(--plus-text-sub);
}

.plus-filter-clear:hover {
	border-color: var(--plus-text-sub);
	color: var(--plus-white);
}

.plus-filter-search {
	padding: 10px 24px;
	border: 0;
	background: var(--plus-accent);
	color: var(--plus-black);
	font-weight: 700;
}

.plus-filter-search:hover { background: var(--plus-accent-hover); }

/* パネル展開中のグレーオーバーレイ（検索バーより下のレイヤー） */
.plus-filter-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(120, 126, 133, 0.45);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
}

.plus-filter-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

/* 下部固定ナビ ------------------------------------------------------------- */
.plus-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px;
	padding: 9px 5vw;
	background: rgba(22, 24, 26, 0.92);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--plus-border-dark);
}

.plus-bottom-nav a {
	padding: 4px 8px;
	border-radius: 3px;
	font-size: 11px;
	letter-spacing: 1px;
	color: var(--plus-text-sub);
	transition: box-shadow 0.3s, color 0.3s;
}

.plus-bottom-nav a:hover {
	box-shadow: 0 0 18px 6px var(--plus-glow);
	color: var(--plus-white);
}

.plus-nav-cta {
	padding: 5px 18px;
	border: 1px solid var(--plus-white);
	color: var(--plus-white);
}

.plus-lp .plus-nav-cta:hover {
	background: var(--plus-white);
	color: var(--plus-black);
	box-shadow: none;
}

/* ヒーロー ----------------------------------------------------------------- */
.plus-hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.plus-hero-media { position: absolute; inset: 0; }

/* スライドは全枚重ねて置き、is-active の1枚だけを表示する */
.plus-hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s ease;
}

.plus-hero-slide.is-active { opacity: 1; }

.plus-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 18, 15, 0.22);
	pointer-events: none;
}

/* セクション共通 ----------------------------------------------------------- */
.plus-section {
	padding: 120px 5vw;
	color: var(--plus-white);
}

.plus-section--about { padding: 160px 5vw 120px; }
.plus-section--news { border-top: 1px solid var(--plus-border-dark); }

.plus-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 28px;
}

.plus-label span {
	font-family: var(--plus-font-en);
	font-size: 12px;
	letter-spacing: 3px;
	color: var(--plus-accent);
}

.plus-label::before,
.plus-label::after {
	content: '';
	width: 28px;
	height: 1px;
	background: var(--plus-accent);
}

.plus-label--about span { color: var(--plus-link); }

.plus-label--about::before,
.plus-label--about::after { background: var(--plus-link); }

.plus-section-title {
	font-size: clamp(24px, 2.8vw, 34px);
	font-weight: 700;
	margin: 0 0 56px;
	color: var(--plus-white);
	text-align: center;
}

.plus-more {
	font-family: var(--plus-font-en);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--plus-white);
}

.plus-lp .plus-more:hover { color: var(--plus-accent); }

/* ABOUT -------------------------------------------------------------------- */
.plus-about-inner { text-align: center; }

.plus-about-title {
	font-size: clamp(26px, 3.6vw, 46px);
	font-weight: 700;
	line-height: 1.6;
	margin: 0 auto 56px;
	max-width: 820px;
}

.plus-about-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	margin-bottom: 100px;
	text-align: left;
}

.plus-about-row--concept {
	grid-template-columns: 1.2fr 1fr;
	margin-bottom: 0;
}

.plus-about-text {
	font-size: 15.5px;
	line-height: 2.1;
	color: var(--plus-text-sub2);
	margin: 0;
}

.plus-about-figure { position: relative; height: 340px; }
.plus-about-row--concept .plus-about-figure { height: 300px; }

.plus-about-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.plus-sublabel {
	font-family: var(--plus-font-en);
	font-size: 12px;
	letter-spacing: 2px;
	color: var(--plus-text-sub);
	margin-bottom: 16px;
}

.plus-about-lead {
	font-size: 15px;
	line-height: 2;
	color: var(--plus-text-sub2);
	margin: 0;
}

/* 設備 & 特徴 -------------------------------------------------------------- */
.plus-features {
	position: relative;
	padding: 100px 5vw;
	background: var(--plus-gray);
}

.plus-features-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 60px;
}

.plus-pickup {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	border: 1px solid var(--plus-black);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--plus-font-en);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--plus-black);
	line-height: 1.5;
	flex-shrink: 0;
}

.plus-features-title {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 700;
	margin: 0;
	color: var(--plus-black);
}

.plus-features-title::before {
	content: '';
	width: 10px;
	height: 10px;
	background: var(--plus-black);
}

/* 左カラムに1〜4番目、右カラムに5〜8番目を並べるため列方向に流す */
.plus-features-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(4, auto);
	grid-auto-flow: column;
	gap: 0 64px;
	border: 1px solid var(--plus-border-light);
	padding: 40px 48px;
}

.plus-feature {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 24px;
	align-items: center;
	padding: 34px 0;
}

/* 右カラム（5番目以降）の左ボーダー */
.plus-feature:nth-child(n + 5) {
	border-left: 1px solid var(--plus-border-light);
	padding-left: 64px;
}

.plus-feature-icon {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: var(--plus-icon-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.plus-feature-text div {
	font-size: 15.5px;
	font-weight: 700;
	color: var(--plus-black);
	line-height: 1.9;
}

/* アイコン図形（CSSのみで描画） */
.plus-ficon { display: block; }

.plus-ficon--shutter {
	width: 28px;
	height: 34px;
	border: 2px solid var(--plus-gray);
	border-radius: 4px 4px 14px 14px;
	border-top: none;
}

.plus-ficon--container {
	width: 30px;
	height: 24px;
	border: 2px solid var(--plus-gray);
	border-radius: 3px;
}

.plus-ficon--camera {
	width: 28px;
	height: 28px;
	border: 2px solid var(--plus-gray);
	border-radius: 50%;
}

.plus-ficon--tool {
	width: 26px;
	height: 26px;
	border: 2px solid var(--plus-gray);
	transform: rotate(45deg);
}

.plus-ficon--shield {
	width: 26px;
	height: 30px;
	border: 2px solid var(--plus-gray);
	border-radius: 40% 40% 50% 50%;
}

.plus-ficon--community {
	display: flex;
	gap: 4px;
}

.plus-ficon--community::before,
.plus-ficon--community::after {
	content: '';
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid var(--plus-gray);
}

.plus-ficon--subscription {
	width: 28px;
	height: 28px;
	border: 2px solid var(--plus-gray);
	border-radius: 50%;
	border-top-color: transparent;
}

.plus-ficon--buyback {
	width: 26px;
	height: 26px;
	border: 2px solid var(--plus-gray);
}

.plus-features-foot {
	max-width: var(--plus-max);
	margin: 90px auto 0;
	text-align: center;
	padding-top: 32px;
	border-top: 1px solid var(--plus-border-light);
}

.plus-more--dark { color: var(--plus-black); }

/* ACCESS ------------------------------------------------------------------- */
.plus-access-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.plus-access-title {
	font-size: clamp(24px, 2.8vw, 34px);
	font-weight: 700;
	margin: 0 0 32px;
	color: var(--plus-white);
}

.plus-access-text {
	font-size: 15px;
	line-height: 2.1;
	color: var(--plus-text-sub);
	margin: 0;
}

.plus-access-figure { position: relative; height: 320px; }

.plus-access-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* NEWS --------------------------------------------------------------------- */
.plus-news-inner { text-align: center; }

.plus-news-item {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 24px;
	padding: 24px 0;
	border-top: 1px solid var(--plus-border-dark);
	align-items: baseline;
	text-align: left;
}

.plus-news-date {
	font-family: var(--plus-font-en);
	font-size: 13px;
	color: var(--plus-text-sub3);
	letter-spacing: 1px;
}

.plus-news-title {
	font-size: 15px;
	color: var(--plus-white);
}

.plus-news-item:hover .plus-news-title { color: var(--plus-accent); }

.plus-rule {
	border-top: 1px solid var(--plus-border-dark);
}

.plus-rule--news { margin-bottom: 40px; }

/* SPEC --------------------------------------------------------------------- */
.plus-spec-inner { text-align: center; }

.plus-spec-row {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 24px;
	padding: 22px 0;
	border-top: 1px solid var(--plus-border-dark);
	text-align: left;
}

.plus-spec-label {
	font-size: 13.5px;
	color: var(--plus-text-sub3);
	letter-spacing: 1px;
}

.plus-spec-value {
	font-size: 15px;
	color: var(--plus-white);
}

/* FAQ ---------------------------------------------------------------------- */
.plus-faq-item { border-top: 1px solid var(--plus-border-dark); }

.plus-faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 26px 0;
	cursor: pointer;
}

.plus-faq-q-text {
	font-size: 15.5px;
	font-weight: 700;
	color: var(--plus-white);
}

.plus-faq-symbol {
	font-family: var(--plus-font-en);
	font-size: 20px;
	color: var(--plus-accent);
	flex-shrink: 0;
}

.plus-faq-answer {
	display: none;
	padding: 0 0 30px;
	font-size: 14.5px;
	line-height: 1.9;
	color: var(--plus-text-sub);
	max-width: 640px;
}

.plus-faq-item.open .plus-faq-answer { display: block; }

/* CTA ---------------------------------------------------------------------- */
.plus-cta {
	position: relative;
	padding: 150px 5vw;
	text-align: center;
	overflow: hidden;
}

.plus-cta-inner {
	position: relative;
	z-index: 2;
	max-width: 600px;
	margin: 0 auto;
}

.plus-cta-label {
	font-family: var(--plus-font-en);
	font-size: 12px;
	letter-spacing: 3px;
	color: var(--plus-accent);
	margin-bottom: 20px;
}

.plus-cta-title {
	font-size: clamp(26px, 3.6vw, 40px);
	font-weight: 700;
	line-height: 1.6;
	margin: 0 0 28px;
	color: var(--plus-white);
}

.plus-cta-text {
	font-size: 15px;
	line-height: 1.9;
	color: var(--plus-text-sub);
	margin: 0 0 44px;
}

.plus-lp .plus-cta-btn {
	display: inline-block;
	padding: 17px 44px;
	background: var(--plus-accent);
	color: var(--plus-black);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	transition: background 0.3s;
}

.plus-lp .plus-cta-btn:hover {
	background: var(--plus-accent-hover);
	color: var(--plus-black);
}

/* フッター ----------------------------------------------------------------- */
.plus-footer {
	padding: 40px 5vw;
	background: var(--plus-black);
	border-top: 1px solid var(--plus-border-dark);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.plus-footer-logo {
	font-family: var(--plus-font-logo);
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 2px;
	color: var(--plus-white);
}

.plus-copyright {
	font-size: 12.5px;
	color: #666d75;
}

/* 検索結果ページ（雛形） --------------------------------------------------- */
.plus-search-result { padding-top: 90px; }

.plus-search-note {
	margin: 40px 0 0;
	font-size: 14px;
	line-height: 1.9;
	color: var(--plus-text-sub);
}

.plus-search-back { margin-top: 48px; }

/* スクロール連動のふわっと表示 --------------------------------------------- */
/* JS が動いている時だけ初期状態を隠す（JS 無効時は普通に表示される） */
.plus-js .plus-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.plus-js .plus-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* 絞り込みパネル展開中のスクロールロック。
   スクロールを担う要素は標準モードでは html、互換モードでは body になるため両方に当てる */
html.is-scroll-locked,
.plus-lp.is-scroll-locked { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
	.plus-js .plus-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.plus-filter-panel,
	.plus-filter-content,
	.plus-filter-overlay,
	.plus-hero-slide { transition: none; }
}

/* レスポンシブ ------------------------------------------------------------- */
@media (max-width: 900px) {
	.plus-section { padding: 90px 5vw; }
	.plus-section--about { padding: 120px 5vw 90px; }

	.plus-about-row,
	.plus-about-row--concept {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 64px;
	}

	.plus-about-row--concept { margin-bottom: 0; }

	.plus-about-figure,
	.plus-about-row--concept .plus-about-figure { height: 240px; }

	.plus-features { padding: 80px 5vw; }

	.plus-features-list {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		grid-auto-flow: row;
		padding: 24px;
	}

	.plus-feature {
		grid-template-columns: 64px 1fr;
		gap: 18px;
		padding: 26px 0;
	}

	.plus-feature:nth-child(n + 5) {
		border-left: none;
		padding-left: 0;
	}

	.plus-feature + .plus-feature { border-top: 1px solid var(--plus-border-light); }

	.plus-feature-icon { width: 64px; height: 64px; }
	.plus-feature-text div { font-size: 14.5px; }

	.plus-features-foot { margin-top: 60px; }

	.plus-access-row {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.plus-access-figure { height: 240px; }

	.plus-news-item,
	.plus-spec-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.plus-cta { padding: 100px 5vw; }

	.plus-footer {
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 600px) {
	.plus-lp { padding-bottom: 76px; }

	.plus-search-input { font-size: 16px; } /* iOS の自動ズーム回避 */

	/* 幅が 86vw で頭打ちになるので、ボタンと入力欄を詰める */
	.plus-search-bar { gap: 6px; padding: 6px 8px; }
	.plus-search-filter { padding: 6px 9px; font-size: 11.5px; }
	.plus-filter-content { padding: 18px 14px 14px; }
	.plus-chip-label { padding: 6px 13px; font-size: 12.5px; }

	.plus-filter-actions {
		justify-content: stretch;
		gap: 8px;
	}

	.plus-filter-clear,
	.plus-filter-search { flex: 1; }

	.plus-bottom-nav {
		gap: 8px 14px;
		padding: 8px 4vw;
	}

	.plus-bottom-nav a { font-size: 10px; padding: 4px 6px; }
	.plus-nav-cta { padding: 5px 14px; }

	.plus-features-head {
		gap: 14px;
		margin-bottom: 40px;
	}

	.plus-pickup { width: 60px; height: 60px; font-size: 10px; }

	.plus-lp .plus-cta-btn {
		padding: 15px 24px;
		font-size: 13px;
	}
}

/* ===== ローディング演出（BIKE PARK+ が1文字ずつ完成する） ===== */
/* JS無効時はオーバーレイを出さない（plus-js が付かない限り display:none のまま） */
.plus-loader { display: none; }

.plus-js .plus-loader {
	display: grid;
	place-items: center;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: var(--plus-black);
	transition: opacity .55s ease, visibility .55s ease;
}
.plus-js .plus-loader.is-done {
	opacity: 0;
	visibility: hidden;
}

.plus-loader-logo { width: min(78vw, 560px); }

.plus-loader-logo text {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 64px;
	letter-spacing: .06em;
}

/* 各文字: まず輪郭線を描き(plus-draw)、描き終わりに塗りを入れる(plus-fill) */
.plus-loader-logo tspan {
	fill: var(--plus-white);
	fill-opacity: 0;
	stroke: var(--plus-white);
	stroke-width: 1.4;
	stroke-dasharray: 280;
	stroke-dashoffset: 280;
	animation:
		plus-draw .7s ease-out forwards,
		plus-fill .45s ease forwards;
}
.plus-loader-logo .plus-loader-mark {
	fill: var(--plus-accent);
	stroke: var(--plus-accent);
}

/* 1文字ずつ 0.1s ずらして「完成していく」。2つ目の delay は塗りの開始 */
.plus-loader-logo tspan:nth-child(1)  { animation-delay: .00s, .55s; }
.plus-loader-logo tspan:nth-child(2)  { animation-delay: .10s, .65s; }
.plus-loader-logo tspan:nth-child(3)  { animation-delay: .20s, .75s; }
.plus-loader-logo tspan:nth-child(4)  { animation-delay: .30s, .85s; }
.plus-loader-logo tspan:nth-child(5)  { animation-delay: .40s, .95s; }
.plus-loader-logo tspan:nth-child(6)  { animation-delay: .50s, 1.05s; }
.plus-loader-logo tspan:nth-child(7)  { animation-delay: .60s, 1.15s; }
.plus-loader-logo tspan:nth-child(8)  { animation-delay: .70s, 1.25s; }
.plus-loader-logo tspan:nth-child(9)  { animation-delay: .80s, 1.35s; }
.plus-loader-logo tspan:nth-child(10) { animation-delay: .95s, 1.50s; }

@keyframes plus-draw { to { stroke-dashoffset: 0; } }
@keyframes plus-fill { to { fill-opacity: 1; } }

/* 動きを減らす設定のユーザーにはアニメ無しで即完成表示 */
@media (prefers-reduced-motion: reduce) {
	.plus-loader-logo tspan {
		animation: none;
		stroke-dashoffset: 0;
		fill-opacity: 1;
	}
}

/* PARKING（駐車場リスト）---------------------------------------------------
   黒セクションに挟まれた白背景セクション。カードは plus-lp.js が描画する */

.plus-parking {
	background: var(--plus-white);
	padding: 120px 5vw;
}

.plus-parking .plus-section-title {
	color: var(--plus-black);
	margin-bottom: 12px;
}

.plus-parking-lead {
	margin: 0 0 48px;
	font-size: 14.5px;
	color: #666d75;
	text-align: center;
}

/* カード（検索結果ページの横型カードの縦型バージョン） */

.plus-parking-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.plus-lp .plus-parking-card {
	display: flex;
	flex-direction: column;
	background: var(--plus-white);
	border: 1px solid #dde1e5;
	box-shadow: 0 2px 10px rgba(22, 24, 26, 0.05);
	color: var(--plus-black);
	transition: border-color 0.25s, box-shadow 0.25s;
}

.plus-lp .plus-parking-card:hover {
	border-color: var(--plus-link);
	box-shadow: 0 8px 28px rgba(79, 163, 209, 0.18);
	color: var(--plus-black);
}

.plus-parking-photo {
	position: relative;
	height: 170px;
	background: var(--plus-gray);
}

.plus-parking-new {
	position: absolute;
	top: 0;
	left: 0;
	padding: 3px 9px;
	background: var(--plus-link);
	color: var(--plus-white);
	font-family: var(--plus-font-en);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.plus-parking-avail {
	position: absolute;
	top: 8px;
	right: 8px;
	padding: 2px 8px;
	border: 1px solid;
	font-size: 10.5px;
	font-weight: 700;
}

.plus-parking-avail--available { color: #1f7a4d; border-color: #7fc9a4; background: #eaf7f0; }
.plus-parking-avail--few       { color: #9a7415; border-color: #dcc27a; background: #faf4e2; }
.plus-parking-avail--full      { color: #8b9299; border-color: #c7ced3; background: #f2f4f6; }

.plus-parking-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px 20px 20px;
}

.plus-parking-name {
	font-size: 15.5px;
	font-weight: 700;
	color: var(--plus-black);
	line-height: 1.4;
}

.plus-parking-access {
	margin-top: 3px;
	font-size: 11.5px;
	color: #666d75;
}

.plus-parking-price { margin: 10px 0 14px; }

.plus-parking-price-num {
	font-family: var(--plus-font-en);
	font-size: 20px;
	font-weight: 700;
	color: var(--plus-link);
}

.plus-parking-price-unit {
	margin-left: 3px;
	font-size: 11px;
	color: #8b9299;
}

/* タグ行（カード下端に揃える） */

.plus-parking-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: auto;
}

.plus-ptag {
	padding: 2px 7px;
	font-size: 10.5px;
	line-height: 1.6;
}

.plus-ptag--type { background: var(--plus-black); color: var(--plus-white); }
.plus-ptag--size { background: var(--plus-gray); color: #4a5058; }
.plus-ptag--feature { background: var(--plus-white); border: 1px solid var(--plus-border-light); color: #4a5058; }

/* CTA */

.plus-parking-cta {
	margin-top: 48px;
	text-align: center;
}

.plus-lp .plus-parking-btn {
	display: inline-block;
	padding: 15px 48px;
	background: var(--plus-black);
	color: var(--plus-white);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	transition: background 0.25s;
}

.plus-lp .plus-parking-btn:hover {
	background: var(--plus-link);
	color: var(--plus-white);
}

@media (max-width: 960px) {
	.plus-parking-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.plus-parking { padding: 80px 5vw; }
	.plus-parking-grid { grid-template-columns: 1fr; }
}
