@charset "UTF-8";
/* CSS Document */
* {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.sp-only {
	display: none;
}
.fv {
	background: url("images/fv-bg.jpg") no-repeat center bottom;
	display: flex;
	justify-content: center;
	padding: 0 0 100px;
}
.fv img {
	width: 1300px;
}
.rav4-pc,
.alphard-pc,
.yaris-pc {
	display: flex;
	justify-content: center;
	position: relative;
}
img.rav4-img,
img.alphard-img,
img.yaris-img {
	width: 1300px;
}
a.cta-pc {
	position: absolute;
	width: 400px;
	bottom: 50px;
	left: calc(50% - 200px);
}
a.cta-pc img {
    width: 400px;
}
.rav4-pc,
.yaris-pc {
	background: #c8ccc8;
}

.faq {
	display: flex;
	justify-content: center;
	padding: 100px 50px;
}
.faq-pc {
	max-width: 820px;
	width: 100%;
}
#form {
	padding: 0 50px;
}
p.test-drive {
	display: flex;
	justify-content: center;
	padding: 20px 0;
	background: #ff6200;
	color: #fff;
	font-size: 30px;
}
.choose-car,
.choose-store {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
p.step {
	display: flex;
	justify-content: center;
	font-size: 25px;
	margin: 100px 0 0;
}
p.step span {
	background: #ff6200;
	display: flex;
	align-items: center;
	padding: 0 5px;
	margin: 0 0 0 5px;
	border-radius: 2px;
	font-size: 14px;
	color: #fff;
}
ul.car-category {
	margin: 30px 0 0;
    display: grid;
	grid-template-columns: calc((100% - 20px) / 3) calc((100% - 20px) / 3) calc((100% - 20px) / 3);
	grid-template-rows: 70px 70px;
	gap: 10px;
}
ul.car-category li {
	display: flex;
	align-items: center;
	background: #666666;
	color: #fff;
	font-size: 25px;
	padding: 0 0 0 20px;
	cursor: pointer;
	border-radius: 5px;
}
ul.car-model,
ul.store-list {
	margin: 30px 0 0;
    display: grid;
	grid-template-columns: calc((100% - 60px) / 4) calc((100% - 60px) / 4) calc((100% - 60px) / 4) calc((100% - 60px) / 4);
	gap: 20px;
}
ul.car-model li,
ul.store-list li {
	display: flex;
	flex-wrap: wrap;
    position: relative;
    justify-content: center;
    align-items: end;
    padding: 0 0 5px;
}
ul.car-model p,
ul.store-list p {
	position: absolute;
    bottom: 10%;
    font-size: 20px;
	text-align: center;
}
label {
	position: relative;
	cursor: pointer;
}
.car + label::before,
.store + label::before {
	content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
	display: none;
}
.car:checked + label::after,
.store:checked + label::after {
	content: "";
    display: block;
    position: absolute;
    top: 12.5px;
    left: 12.5px;
    width: 15px;
    height: 15px;
    background: #ff6374;
    border-radius: 50%;
	display: none;
}
.cta {
	max-width: 640px;
	margin: 70px auto 0;
}
footer {
	margin: 50px 0 0;
}
.footer-bar {
	width: 100%;
	background: #f18900;
	display: flex;
	justify-content: center;
}
.footer-bar img {
	width: 100%;
	max-width: 1300px;
}
.footer-logo {
	width: 100%;
	max-width: 1300px;
	margin: 30px auto;
}
.footer-logo img {
	width: 660px;
}
.footer-copyright {
	background: #f2f2f2;
}
.footer-copyright > div {
	margin: 0 auto;
	padding: 5px 0;
	width: 100%;
	max-width: 1300px;
}
.footer-copyright p {
}
#floationg {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 120px;
	cursor: pointer;
	display: none; /* 最初は非表示 */
	opacity: 0; /* 初期状態で透明 */
	transition: opacity 0.5s ease-in-out; /* フェードインのアニメーション */
}
.reserved {
	background: url("images/reserved-bg.jpg") repeat;
	padding: 100px 0;
	display: flex;
	justify-content: center;
}
.reserved-img {
	width: 100%;
	max-width: 1200px;
}
@media (min-width: 769px) and (max-width: 1300px) {
	.fv {
		padding: 0;
	}
	.fv img,
	img.rav4-img,
	img.alphard-img,
	img.yaris-img,
	.faq-pc {
		width: 100%;
	}
	a.cta-pc {
		position: absolute;
		width: 300px;
		bottom: 5%;
		left: calc(50% - 150px);
	}
	a.cta-pc img {
		width: 300px;
	}
	ul.car-model p,
	ul.store-list p {
		font-size: 1.8vw;
	}
	.footer-logo,
	.footer-copyright {
		padding: 0 20px;
	}
}
@media (max-width: 767px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
	.fv,
	.faq {
		padding: 0;
	}
	#form {
		padding: 0 10px;
		margin: 50px 0 0;
	}
	p.test-drive {
		padding: 10px 0;
		font-size: 20px;
	}
	p.step {
		margin: 30px 0 0;
		font-size: 4vw;
	}
	ul.car-category {
		grid-template-rows: 50px 50px;
	}
	ul.car-category li {
		font-size: 4vw;
		padding: 0;
		justify-content: center;
	}
	ul.car-model,
	ul.store-list {
		grid-template-columns: calc((100% - 20px) / 3) calc((100% - 20px) / 3) calc((100% - 20px) / 3);
		gap: 10px;
	}
	ul.car-model p,
	ul.store-list p {
		font-size: 3vw;
	}
	.footer-logo {
		margin: 10px 0;
	}
	.footer-logo img {
		width: 90%;
	}
	.footer-logo,
	.footer-copyright {
		padding: 0 10px;
	}
	.footer-copyright p {
		font-size: 2vw;
	}
	#floationg {
		width: 90px;
	}
	.reserved {
		background: none;
		padding: 0;
	}
}