@charset "utf-8";

#main_contents {
	background-color: #f5f3ec;
}
.page_description {}
.page_description::after {
	content: "";
	display: block;
	margin: clamp(25px, 5vw, 50px) auto;
	width: auto;
	height: 2rem;
	aspect-ratio: 10/1;
	background: url(../img/greeting_line.webp) no-repeat center center / contain;
	filter: brightness(0) saturate(100%) invert(36%) sepia(12%) saturate(1946%) hue-rotate(351deg) brightness(92%) contrast(89%);
}
.choice_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: clamp(15px, 3vw, 30px);
	gap: clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px);
}
.choice_box {
	width: calc((100% - (clamp(15px, 3vw, 30px) * 2)) / 3);
	background: #fff;
	border-radius: 8px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	.choice_img img { border-radius: 8px 8px 0 0; }
	.choice_txt {
		padding: 1.25rem;
	}
	h4 {
		font-size: clamp(1.2rem,2.5vw,1.5rem);
		line-height: 1.2;
		color: var(--base-color01);
		text-align: center;
	}
	h4::after {
		content: "";
		display: block;
		width: 80px;
		height: 2px;
		background: var(--base-color01);
		margin: 1.25rem auto;
	}
}
@media (max-width: 767px) {
	.choice_box {
		width: calc((100% - clamp(15px, 3vw, 30px)) / 2);
	}
}
@media (max-width: 499px) {
	.choice_box {
		width: 100%;
	}
}


.success {
	position: relative;
	z-index: 0;
	clip-path: polygon(0 0,0 100%,100% 100%,100% 0);
	background-color: transparent;
}
.success::before {
	content: '';
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	background: url(../img/bg_estate.webp) no-repeat center center / cover;
}
.success::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.success_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: clamp(15px, 3vw, 30px);
	gap: clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px);
}
.success_box {
	width: calc((100% - (clamp(15px, 3vw, 30px) * 2)) / 3);
	background: #fff;
	border-radius: 8px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	.success_img img { border-radius: 8px 8px 0 0; }
	.success_txt {
		padding: 1.25rem;
	}
	h4 {
		font-size: clamp(1.2rem,2.5vw,1.5rem);
		line-height: 1.2;
		color: var(--base-color01);
		text-align: center;
	}
	h4::after {
		content: "";
		display: block;
		width: 80px;
		height: 2px;
		background: var(--base-color01);
		margin: 1.25rem auto;
	}
}
@media (max-width: 767px) {
	.success_box {
		width: calc((100% - clamp(15px, 3vw, 30px)) / 2);
	}
}
@media (max-width: 499px) {
	.success_box {
		width: 100%;
	}
}
