@charset "UTF-8";
/*----------------------------------------

	- result
		- result_content

-----------------------------------------*/

/*----------------------------------------
result
-----------------------------------------*/
.result {
	margin-top: 48px;
	padding-block: 48px;
	width: 100%;
	background-color: var(--color_sand);
}

.result_content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.item_header {
	background-color: var(--color_aquamarine-500);
	padding: 32px 80px 24px;
	border-radius: 8px 8px 0 0;
}
.item_body {
	background-color: var(--color_white);
	padding: 32px 80px 48px;
}
.item_body > .font24 {
	text-align: center;
}
.btn_box {
	margin-top: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap-reverse;
	gap: 16px 8px;
}
/* sp */
@media screen and (max-width: 800px) {
	.result {
		margin-top: 32px;
	}
	.item_header {
		padding: 32px 24px 24px;
	}
	.item_header .heading_l1w {
		font-size: var(--font-size24);
	}
	.item_body {
		padding: 32px 16px 48px;
	}
	.item_body > .font24 {
		font-size: var(--font-size18);
	}
	.btn_box {
		margin-top: 32px;
	}
	.btn_box .btn_m3 {
		font-size: var(--font-size21);
	}
	.btn_box p:nth-of-type(1) {
		max-width: 280px;
		width: 100%;
	}
	.btn_box p:nth-of-type(2) {
		max-width: 304px;
		width: 100%;
	}
}
