#cta {
	background-image: url(../images/cta_bg.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}
.cta_wrap {
	padding: 10rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 86.2rem;
	margin: auto;
}
.cta_header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4rem;
}
.cta_title.en {
	font-size: 6.4rem;
	line-height: 1.2;
	font-weight: 400;
	color: var(--text-color-light);
	text-align: center;
}
.cta_title.ja {
	font-size: 2.8rem;
	line-height: 1.7;
	letter-spacing: 0.04rem;
	font-weight: 400;
	color: var(--text-color-light);
	text-align: center;
}
.cta_desc {
	font-size: 1.6rem;
	line-height: 1.8;
	font-weight: 500;
	color: var(--text-color-light);
	text-align: center;
	margin-top: 5rem;
}
.cta_btn_wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.6rem;
	margin-top: 5rem;
	width: 100%;
}
.cta_btn {
	display: block;
	border: 1px solid var(--text-color-light);
	padding: 2rem 0;
	transition: background-color 0.3s ease;
}
.cta_btn:hover {
	background-color: rgba(255, 255, 255, 0.12);
}
.cta_btn_tel {
	font-size: 4.4rem;
	line-height: 1.2;
	letter-spacing: 0.04rem;
	font-weight: 400;
	color: var(--text-color-light);
	text-align: center;
}
.cta_btn_info {
	font-size: 1.2rem;
	line-height: 1.7;
	letter-spacing: 0.04rem;
	font-weight: 500;
	color: var(--text-color-light);
	text-align: center;
}
.mail_btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.cta_btn_mail {
	font-size: 2.4rem;
	line-height: 1.7;
	letter-spacing: 0.04rem;
	font-weight: 500;
	color: var(--text-color-light);
	text-align: center;
}

@media screen and (max-width: 767px) {
	#cta {
		background-image: url(../images/cta_bg-sp.webp);
	}
	.cta_wrap {
		width: 90%;
	}
	.cta_btn_wrap {
		grid-template-columns: 1fr;
		gap: 3.6rem;
		margin-top: 5rem;
		width: 100%;
	}
	.mail_btn {
		height: 11.5rem;
	}
}
