/* ==========================================================
   Thanks Page
========================================================== */

.p-thanks-page {
	background: #eef7fa;
	padding: 100px 0 120px;
}

.p-thanks-page__inner {
	width: 100%;
	max-width: 1100px;
	margin-inline: auto;
	padding-inline: 24px;
}

.p-thanks-page__box {
	background: #fff;
	padding: 90px 60px 100px;
	text-align: center;
}


/* --------------------------
   Complete Icon
-------------------------- */

.p-thanks-page__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 35px;
	border: 1px solid var(--color-navy);
	border-radius: 50%;
}

.p-thanks-page__icon span {
	position: relative;
	display: block;
	width: 28px;
	height: 16px;
	border-left: 2px solid var(--color-navy);
	border-bottom: 2px solid var(--color-navy);
	transform: translateY(-4px) rotate(-45deg);
}


/* --------------------------
   Heading
-------------------------- */

.p-thanks-page__title {
	margin: 0;
	color: var(--color-navy);
	font-family: var(--font-serif);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.p-thanks-page__en {
	margin-top: 12px;
	color: var(--color-gold-deep);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.2em;
}


/* --------------------------
   Text
-------------------------- */

.p-thanks-page__text {
	margin-top: 45px;
	color: var(--color-text);
	font-size: 16px;
	line-height: 2;
}

.p-thanks-page__text p + p {
	margin-top: 24px;
}


/* --------------------------
   Button
-------------------------- */

.p-thanks-page__button {
	width: 100%;
	max-width: 360px;
	margin: 55px auto 0;
}

.p-thanks-page__button a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	padding: 15px 55px;
	border: 1px solid var(--color-navy);
	background: var(--color-navy);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition:
		background-color 0.3s ease,
		color 0.3s ease;
}

.p-thanks-page__button a:hover {
	background: #fff;
	color: var(--color-navy);
}

.p-thanks-page__arrow {
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translateY(-50%);
	font-size: 18px;
}


/* ==========================================================
   Tablet
========================================================== */

@media screen and (max-width: 1024px) {

	.p-thanks-page {
		padding: 80px 0 100px;
	}

	.p-thanks-page__box {
		padding: 70px 50px 80px;
	}

}


/* ==========================================================
   Smartphone
========================================================== */

@media screen and (max-width: 767px) {

	.p-thanks-page {
		padding: 50px 0 70px;
	}

	.p-thanks-page__inner {
		padding-inline: 15px;
	}

	.p-thanks-page__box {
		padding: 50px 20px 55px;
	}

	.p-thanks-page__icon {
		width: 60px;
		height: 60px;
		margin-bottom: 28px;
	}

	.p-thanks-page__icon span {
		width: 23px;
		height: 13px;
	}

	.p-thanks-page__title {
		font-size: 25px;
		line-height: 1.55;
	}

	.p-thanks-page__text {
		margin-top: 35px;
		font-size: 15px;
		line-height: 1.9;
	}

	.p-thanks-page__text br {
		display: none;
	}

	.p-thanks-page__button {
		max-width: none;
		margin-top: 40px;
	}

	.p-thanks-page__button a {
		min-height: 58px;
	}

}