
.notice-container {
	margin-bottom: 60px;
	padding: 40px 15px;
	text-align: center;
	background: #eee;
}
.notice-ttl {
	margin-bottom: 10px;
	font-size: clamp(18px, 1.4vw, 24px);
	font-weight: bold;
	line-height: 1.4;
}
.notice-txt {
	margin-bottom: 15px;
	font-size: clamp(14px, 1vw, 16px);
}
.notice-btn {
	display: inline-block;
	padding: 4px 50px;
	color: #fff;
	font-weight: bold;
	background: #408aa2;
	border: 1px solid #408aa2;
	border-radius: 20px;
}
.notice-btn:hover {
	color: #408aa2;
	background: #fff;
	opacity: 1;
}
@media screen and (max-width: 767px) {
	.notice-txt {
		text-align: left;
	}
}

/* ショールーム一覧（リニューアル部分） */
.showroom-list {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px 100px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* 拠点カード */
.location-card {
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
}
.location-card-header {
	display: flex;
}
.location-card-photo {
	width: 45%;
	min-height: 280px;
	position: relative;
	overflow: hidden;
}
.location-card-photo-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8a9aa4;
	font-size: 13px;
	background: linear-gradient(135deg, #c8d6dc 0%, #a8bcc6 100%);
}
.location-card-info {
	width: 55%;
	padding: 36px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.location-card-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 4px;
}
.location-card-name-en {
	font-family: 'Cormorant Garamond', serif;
	font-size: 32px;
	font-weight: 500;
	background: linear-gradient(135deg, #2c4a5a 0%, #3bbcb5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 0.04em;
	line-height: 1.2;
}
.location-card-badge-new {
	display: inline-block;
	background: #3bbcb5;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 3px 12px;
	border-radius: 2px;
}
.location-card-name-jp {
	font-size: 13px;
	color: #6a8a9a;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
.location-card-address {
	font-size: 14px;
	color: #555;
	line-height: 1.9;
}
.location-card-hours {
	font-size: 13px;
	color: #888;
	margin-top: 8px;
}
.location-card-body {
	padding: 32px 40px 40px;
	border-top: 1px solid #e8e8e8;
}

/* マップ＋アクセス */
.location-card-access-area {
	display: flex;
	gap: 30px;
	margin-bottom: 36px;
}
.location-card-map {
	display: inherit;
	width: 50%;
	aspect-ratio: 5 / 3;
	border-radius: 4px;
	border: 1px solid #dde4e8;
}
.location-card-map iframe {
	width: 100%;
	height: 100%;
}
.location-card-access {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.location-card-access-title {
	font-size: 14px;
	font-weight: 700;
	color: #2c4a5a;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid #3bbcb5;
	display: inline-block;
}
.location-card-access-route {
	font-size: 13px;
	color: #555;
	line-height: 2;
}
.location-card-access-route + .location-card-access-route {
	margin-top: 4px;
}
.location-card-parking-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #3bbcb5;
	text-decoration: none;
	margin-top: 12px;
	transition: opacity 0.2s;
}
.location-card-parking-link:hover {
	opacity: 0.7;
}
.location-card-parking-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: #3bbcb5;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	border-radius: 3px;
}

/* 展示機種 */
.location-card-exhibit-title {
	font-size: 15px;
	font-weight: 700;
	color: #2c4a5a;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e0e0e0;
}
.location-card-exhibit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px 24px;
}
.location-card-exhibit-brand {
	padding: 14px 16px;
	background: #f6f9fa;
	border-radius: 4px;
	border-left: 3px solid #3bbcb5;
}
.location-card-exhibit-brand-name {
	font-size: 13px;
	font-weight: 700;
	color: #2c4a5a;
	margin-bottom: 4px;
}
.location-card-exhibit-brand-models {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
}

/* 道順ボタン */
.directions-btn {
	display: inline-block;
	font-size: 12px;
	color: #3bbcb5;
	text-decoration: none;
	padding: 2px 10px;
	border: 1px solid #3bbcb5;
	border-radius: 3px;
	background: #fff;
	margin-left: 6px;
	vertical-align: middle;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s, color 0.2s;
}
.directions-btn:hover {
	background: #3bbcb5;
	color: #fff;
}

/* モーダル */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
}
.modal-overlay.is-open {
	display: flex;
}
.modal-content {
	background: #fff;
	border-radius: 8px;
	max-width: 1020px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
}
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid #e8e8e8;
}
.modal-title {
	font-size: 15px;
	font-weight: 700;
	color: #2c4a5a;
}
.modal-close {
	width: 32px;
	height: 32px;
	border: none;
	background: none;
	font-size: 20px;
	color: #888;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition: background 0.2s;
}
.modal-close:hover {
	background: #f0f0f0;
}
.modal-body {
	padding: 24px;
}
.directions-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.directions-grid-item {
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8a9aa4;
	font-size: 12px;
}
.directions-grid-item--wide {
	grid-column: 1 / -1;
	aspect-ratio: 8 / 3;
}

/* レスポンシブ */
@media (max-width: 1199px) {
	.showroom-list {
		padding: 60px 20px 80px;
	}
	.location-card-info {
		padding: 28px 30px;
	}
	.location-card-body {
		padding: 28px 30px 32px;
	}
	.location-card-name-en {
		font-size: 28px;
	}
}
@media (max-width: 767px) {
	.showroom-list {
		padding: 40px 16px 60px;
		gap: 40px;
	}
	.showroom-form {
		padding: 0 16px 60px;
	}
	.hero-en {
		font-size: 32px;
	}
	.showroom-intro {
		padding: 40px 16px;
		font-size: 14px;
	}
	.location-card-header {
		flex-direction: column;
	}
	.location-card-photo {
		width: 100%;
		min-height: 200px;
		aspect-ratio: 16 / 9;
	}
	.location-card-info {
		width: 100%;
		padding: 24px 20px;
	}
	.location-card-name-en {
		font-size: 26px;
	}
	.location-card-body {
		padding: 24px 20px 28px;
	}
	.location-card-access-area {
		flex-direction: column;
		gap: 20px;
	}
	.location-card-map {
		width: 100%;
	}
	.location-card-access {
		width: 100%;
	}
	.location-card-exhibit-grid {
		grid-template-columns: 1fr;
	}
	.directions-grid {
		grid-template-columns: 1fr;
	}
	.directions-grid-item--wide {
		aspect-ratio: 4 / 3;
	}
}


/* ショールーム フォーム切替タブ */
.rsv-wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 20px;
}
/* タブ */
.rsv-tab-row {
	max-width: 800px;
	display: flex;
	justify-content: center;
	border: 1px solid #25bac0;
	border-radius: 4px;
	overflow: hidden;
	margin: 0 auto 28px;
}
.rsv-tab-btn {
	flex: 1;
	padding: 12px 8px;
	font-size: 14px;
	font-family: inherit;
	cursor: pointer;
	border: none;
	border-right: 1px solid #25bac0;
	background: #fff;
	color: #25bac0;
	transition: background .15s, color .15s;
}
.rsv-tab-btn:last-child {
	border-right: none;
}
.rsv-tab-btn.active {
	background: #25bac0;
	color: #fff;
	font-weight: 500;
}
.rsv-tab-btn:hover:not(.active) {
	background: #e8f8f9;
}
/* パネル */
.rsv-panel {
	display: none;
}
.rsv-panel.active {
	display: block;
	animation: rsvFadeIn .2s ease;
}
@keyframes rsvFadeIn {
	from { opacity: 0; transform: translateY(4px); }
	to   { opacity: 1; transform: translateY(0); }
}
/* ショールーム情報 */
.rsv-location {
	max-width: 800px;
	background: #f4fbfb;
	border-left: 3px solid #25bac0;
	padding: 14px 16px;
	margin: 0 auto 24px;
	border-radius: 4px;
}
.rsv-location-name {
	font-size: 13px;
	font-weight: 700;
	color: #25bac0;
	margin-bottom: 4px;
}
.rsv-location-addr-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 4px;
}
.rsv-location-addr {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
}
.rsv-map-btn {
	display: inline-block;
	font-size: 11px;
	color: #25bac0;
	border: 1px solid #25bac0;
	border-radius: 3px;
	padding: 2px 8px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background .15s, color .15s;
}
.rsv-map-btn:hover {
	background: #25bac0;
	color: #fff;
}
@media screen and (max-width: 1024px) {
	.rsv-wrap {
		padding: 32px 20px;
	}
	.rsv-tab-btn {
		font-size: 13px;
	}
}
@media screen and (max-width: 768px) {
	.rsv-wrap {
		padding: 24px 16px;
	}
	.rsv-tab-btn {
		font-size: 12px;
		padding: 10px 4px;
	}
	.rsv-location-addr-row {
		flex-direction: column;
		gap: 6px;
	}
	.rsv-map-btn {
		align-self: flex-start;
	}
}
