/* ===================================
   car10 Custom Styles - Gaming Style
   ゲーミング風 黒背景デザイン
=================================== */

/* 横スクロール防止 */
html, body {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

.layout-container {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

/* ===================================
   ヒーローセクション
=================================== */
.hero-content-8472 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10;
	width: 90%;
	max-width: 1200px;
}

.hero-text-8472 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.hero-sub-8472 {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.4em;
	margin: 0;
	opacity: 0;
	animation: fadeInUp-8472 0.8s ease forwards;
	text-shadow: 
		0 0 10px rgba(0, 0, 0, 0.8),
		0 0 20px rgba(0, 0, 0, 0.6),
		0 0 40px rgba(0, 0, 0, 0.4),
		2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-main-8472 {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.15em;
	margin: 0;
	opacity: 0;
	animation: fadeInUp-8472 0.8s ease forwards;
	animation-delay: 0.5s;
	text-shadow: 
		0 0 10px rgba(0, 0, 0, 0.8),
		0 0 20px rgba(0, 0, 0, 0.6),
		0 0 40px rgba(0, 0, 0, 0.4),
		2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* タイプライターエフェクト */
.typewriter-8472 {
	overflow: hidden;
	border-right: 3px solid rgba(255, 255, 255, 0.8);
	white-space: nowrap;
	animation: 
		typing-8472 2s steps(30, end) forwards,
		blink-8472 0.7s step-end infinite,
		fadeIn-8472 0.1s ease forwards;
}

.hero-main-8472.typewriter-8472 {
	animation: 
		typing-8472 2.5s steps(30, end) forwards,
		blink-8472 0.7s step-end infinite,
		fadeIn-8472 0.1s ease forwards;
	animation-delay: 2s, 2s, 2s;
}

.hero-sub-8472.typewriter-8472 {
	animation-delay: 0s, 0s, 0s;
}

@keyframes typing-8472 {
	from {
		width: 0;
		opacity: 1;
	}
	to {
		width: 100%;
		opacity: 1;
	}
}

@keyframes blink-8472 {
	from, to {
		border-color: transparent;
	}
	50% {
		border-color: rgba(255, 255, 255, 0.8);
	}
}

@keyframes fadeIn-8472 {
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp-8472 {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* レスポンシブ */
@media (max-width: 768px) {
	.hero-sub-8472 {
		font-size: 1.1rem;
		letter-spacing: 0.2em;
	}

	.hero-main-8472 {
		font-size: clamp(1.8rem, 7vw, 3rem);
		letter-spacing: 0.1em;
	}

	.typewriter-8472 {
		white-space: normal;
		border-right: none;
		animation: fadeInUp-8472 0.8s ease forwards;
	}

	.hero-main-8472.typewriter-8472 {
		animation: fadeInUp-8472 0.8s ease forwards;
		animation-delay: 0.5s;
	}

	.hero-sub-8472.typewriter-8472 {
		animation: fadeInUp-8472 0.8s ease forwards;
		animation-delay: 0s;
	}
}

/* 共通セクションスタイル */
.section-inner-8472 {
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 40px;
}

.section-header-8472 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 50px;
}

.section-title-8472 {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.title-en-8472 {
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #fff;
	line-height: 1;
	background: linear-gradient(135deg, #fff 0%, #888 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.title-ja-8472 {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.3em;
}

.view-all-8472 {
	display: inline-block;
	color: #fff;
	font-size: 0.85rem;
	text-decoration: none;
	padding: 12px 30px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: transparent;
	transition: all 0.3s ease;
	letter-spacing: 0.1em;
	position: relative;
	overflow: hidden;
}

.view-all-8472::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
	transition: left 0.5s ease;
}

.view-all-8472:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.05);
}

.view-all-8472:hover::before {
	left: 100%;
}

/* ===================================
   お知らせセクション
=================================== */
.news-section-8472 {
	background: #000;
	position: relative;
	z-index: 10;
}

.news-section-8472::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

.news-list-8472 {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-item-8472 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-item-8472:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-item-8472 a {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 0;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.news-item-8472 a::before {
	content: '';
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: linear-gradient(180deg, #00d4ff 0%, #0099cc 100%);
	transition: height 0.3s ease;
}

.news-item-8472 a:hover::before {
	height: 60%;
}

.news-item-8472 a:hover {
	padding-left: 20px;
	background: linear-gradient(90deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
}

.news-date-8472 {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	font-family: 'GeomGraphic', sans-serif;
	min-width: 100px;
}

.news-category-8472 {
	display: inline-block;
	padding: 4px 12px;
	font-size: 0.75rem;
	color: #00d4ff;
	border: 1px solid rgba(0, 212, 255, 0.4);
	border-radius: 2px;
	min-width: 80px;
	text-align: center;
	background: rgba(0, 212, 255, 0.05);
}

.news-title-8472 {
	color: #fff;
	font-size: 1rem;
	flex: 1;
	transition: color 0.3s ease;
}

.news-item-8472 a:hover .news-title-8472 {
	color: #00d4ff;
}

/* ===================================
   在庫車両セクション
=================================== */
.stock-section-8472 {
	background: #000;
	position: relative;
	overflow: hidden;
}

.stock-section-8472::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

.stock-swiper-8472 {
	overflow: visible;
	padding-bottom: 20px;
}

.stock-card-8472 {
	display: block;
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
}

.stock-card-8472::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #00d4ff 0%, #ff0066 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.stock-card-8472:hover::before {
	transform: scaleX(1);
}

.stock-card-8472:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 212, 255, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.1);
}

.stock-image-8472 {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.stock-image-8472 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.stock-card-8472:hover .stock-image-8472 img {
	transform: scale(1.08);
}

.stock-badge-8472,
.stock-badge-new-8472 {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 14px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #fff;
	border-radius: 2px;
	z-index: 2;
}

.stock-badge-8472 {
	background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
}

.stock-badge-new-8472 {
	background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

.stock-info-8472 {
	padding: 20px;
}

.stock-maker-8472 {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 4px;
	letter-spacing: 0.1em;
}

.stock-name-8472 {
	font-size: 1.1rem;
	color: #fff;
	font-weight: 600;
	margin-bottom: 10px;
}

.stock-detail-8472 {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 15px;
}

.stock-price-8472 {
	color: #00d4ff;
	font-size: 0.9rem;
	font-weight: 500;
}

.stock-price-8472 span {
	font-size: 1.8rem;
	font-weight: 700;
	font-family: 'GeomGraphic', sans-serif;
}

/* Swiper Navigation */
.stock-prev-8472,
.stock-next-8472 {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.stock-prev-8472:hover,
.stock-next-8472:hover {
	background: rgba(0, 212, 255, 0.2);
	border-color: rgba(0, 212, 255, 0.5);
}

.stock-prev-8472::after,
.stock-next-8472::after {
	font-size: 18px;
	color: #fff;
}

/* ===================================
   お客様の声セクション
=================================== */
.voice-section-8472 {
	background: #000;
	position: relative;
}

.voice-section-8472::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

.voice-swiper-8472 {
	padding-bottom: 60px;
}

.voice-card-8472 {
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	padding: 30px;
	position: relative;
	transition: all 0.4s ease;
}

.voice-card-8472::before {
	content: '"';
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 5rem;
	color: rgba(0, 212, 255, 0.1);
	font-family: Georgia, serif;
	line-height: 1;
}

.voice-card-8472:hover {
	border-color: rgba(0, 212, 255, 0.2);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.voice-rating-8472 {
	color: #ffd700;
	font-size: 1rem;
	margin-bottom: 15px;
	letter-spacing: 2px;
}

.voice-text-8472 {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	line-height: 1.9;
	margin-bottom: 20px;
}

.voice-author-8472 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.voice-name-8472 {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
}

.voice-service-8472 {
	display: inline-block;
	padding: 4px 12px;
	font-size: 0.75rem;
	color: #00d4ff;
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 2px;
	background: rgba(0, 212, 255, 0.05);
}

/* Swiper Pagination */
.voice-pagination-8472 {
	bottom: 0;
}

.voice-pagination-8472 .swiper-pagination-bullet {
	width: 30px;
	height: 3px;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.2);
	opacity: 1;
	transition: all 0.3s ease;
}

.voice-pagination-8472 .swiper-pagination-bullet-active {
	background: linear-gradient(90deg, #00d4ff 0%, #0099cc 100%);
	width: 50px;
}

/* ===================================
   レスポンシブデザイン
=================================== */
@media (max-width: 1024px) {
	.section-inner-8472 {
		padding: 60px 30px;
	}

	.title-en-8472 {
		font-size: 3rem;
	}

	.stock-prev-8472,
	.stock-next-8472 {
		display: none;
	}
}

@media (max-width: 768px) {
	.section-inner-8472 {
		padding: 50px 20px;
	}

	.news-section-8472 {
		position: relative;
		z-index: 100;
		overflow: visible;
		height: auto;
		min-height: auto;
	}

	.news-section-8472 .section-inner-8472 {
		overflow: visible;
		height: auto;
	}

	.news-list-8472 {
		overflow: visible;
		height: auto;
	}

	.section-header-8472 {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		margin-bottom: 35px;
	}

	.title-en-8472 {
		font-size: 2.5rem;
	}

	.news-item-8472 {
		overflow: visible;
	}

	.news-item-8472 a {
		flex-wrap: wrap;
		gap: 10px;
		padding: 18px 0;
	}

	.news-date-8472 {
		min-width: auto;
	}

	.news-title-8472 {
		width: 100%;
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.stock-section-8472 {
		overflow: visible;
		height: auto;
	}

	.stock-swiper-8472 {
		overflow: hidden;
		height: auto;
		width: 100%;
	}

	.stock-swiper-8472 .swiper-wrapper {
		height: auto;
	}

	.stock-card-8472 {
		height: auto;
	}

	.stock-image-8472 {
		aspect-ratio: 4 / 3;
		height: auto;
		min-height: 180px;
	}

	.stock-info-8472 {
		padding: 15px;
	}

	.stock-name-8472 {
		font-size: 1rem;
	}

	.stock-price-8472 span {
		font-size: 1.5rem;
	}

	.voice-section-8472 {
		overflow: visible;
		height: auto;
	}

	.voice-swiper-8472 {
		overflow: hidden;
		height: auto;
		padding-bottom: 50px;
		width: 100%;
	}

	.voice-swiper-8472 .swiper-wrapper {
		height: auto;
	}

	.voice-card-8472 {
		padding: 25px 20px;
		height: auto;
	}

	.voice-text-8472 {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.title-en-8472 {
		font-size: 2rem;
	}

	.title-ja-8472 {
		font-size: 0.85rem;
	}

	.news-category-8472 {
		min-width: 70px;
		padding: 3px 8px;
		font-size: 0.7rem;
	}
}

/* ===================================
   テキスト光彩スタイル
=================================== */
.text-shadow-5291 {
	text-shadow: 
		0 0 10px rgba(0, 0, 0, 0.8),
		0 0 20px rgba(0, 0, 0, 0.6),
		0 0 40px rgba(0, 0, 0, 0.4),
		2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* ===================================
   フッターソーシャルアイコン
=================================== */
.footer-social-1038 img {
	width: 1.8rem;
	height: 1.8rem;
	max-width: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: opacity 0.3s ease;
}

.footer-social-1038 li a:hover img {
	opacity: 0.7;
}
