@charset "UTF-8";

.info-text {
	text-align: center;
}
@media screen and (max-width: 767.98px) {
	.info-text {
		text-align: left;
	}
}

#agreement .privacy {
	overflow-y: auto;
	height: 25rem;
	margin: 4rem 0;
	padding: 3rem;
	border: 1px solid #cccccc;
	font-size: 1.5rem;
}
@media screen and (max-width: 767.98px) {
	#agreement .privacy {
		height: 20rem;
		margin: 2rem 0;
		padding: 2rem 1.5rem;
		font-size: 1.3rem;
	}
}

#agreement .privacy h3 {
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-weight: 700;
}
@media screen and (max-width: 767.98px) {
	#agreement .privacy h3 {
		margin-bottom: 1rem;
		font-size: 1.6rem;
	}
}

#agreement .privacy h4 {
	margin: 2rem 0 0.5rem;
	font-size: 1.6rem;
	font-weight: 700;
}

@media screen and (max-width: 767.98px) {
	#agreement .privacy h4 {
		margin: 1.5rem 0 .5rem;
		font-size: 1.4rem;
	}
}

/* ------------------------------------
	thanks
------------------------------------ */

.thanks {
	min-height: calc(100vh - 28rem);
	text-align: center;
}

.thanks__box {
	max-width: 86rem;
	margin: 0 auto;
	padding: 5rem 6rem;
	background: #F2FFF3;
	border-radius: 2rem;
}

.thanks__box h2 {
	margin-bottom: 2.5rem;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.5;
}

.thanks__lead {
	font-size: 1.8rem;
	line-height: 2;
}

.thanks__note {
	margin-top: 2.5rem;
	padding: 2rem;
	background: #fff;
	border-radius: 1.2rem;
	font-size: 1.5rem;
	line-height: 1.8;
}

.thanks__info {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(0,0,0,.18);
}

.thanks__info dl div {
	margin-bottom: 2.4rem;
}

.thanks__info dl div:last-child {
	margin-bottom: 0;
}

.thanks__info dt {
	margin-bottom: .6rem;
	font-size: 1.8rem;
	font-weight: 700;
}

.thanks__info dd {
	font-size: 1.8rem;
	line-height: 1.8;
}

.thanks__info a {
	color: #000;
	text-decoration: none;
}

.thanks__btn {
	margin-top: 4rem;
}

.thanks__btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32rem;
	max-width: 100%;
	height: 6rem;
	background: #F18C2E;
	border-radius: 999px;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	text-decoration: none;
	transition: .3s;
}

.thanks__btn a:hover {
	background: #FD881B;
	transform: translateY(-2px);
}

@media screen and (max-width: 767.98px) {
	.thanks__box {
		padding: 3rem 2rem;
		border-radius: 1.5rem;
	}

	.thanks__box h2 {
		font-size: 2.2rem;
	}

	.thanks__lead {
		font-size: 1.5rem;
		line-height: 1.8;
	}

	.thanks__note {
		font-size: 1.3rem;
		text-align: left;
	}

	.thanks__info dt,
	.thanks__info dd {
		font-size: 1.5rem;
	}

	.thanks__btn a {
		width: 100%;
		height: 5.4rem;
		font-size: 1.7rem;
	}
}