@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%);
}

.point_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	h3 {
		width: 100%;
		font-size: clamp(1.3rem,2vw,1.75rem);
		padding-bottom: .5rem;
		color: var(--base-color01);
		border-bottom: 2px solid var(--base-color01);
		margin-bottom: 1rem;
		text-align: center;
	}
	p { width:100%; }
}
.table_wrap {
	width: calc((100% - clamp(25px, 5vw, 50px)) / 2);
	background-color: #fff;
	margin-top: clamp(15px, 3vw, 30px);
	padding: clamp(15px, 3vw, 30px);
	border-radius: 8px;
	word-break: break-all;
	h4 {
		font-size: clamp(1.15rem, 2vw, 1.25rem);
		font-weight:bold;
		text-align: center;
		margin: auto;
	}
	h4::after {
		content: "";
		display: block;
		width: clamp(60px, 10vw, 80px);
		height: 2px;
		background-color: var(--base-color01);
		margin: clamp(10px, 2vw, 20px) auto;
	}
	dl {
		display: flex;
		gap: 0 clamp(10px, 2vw, 20px);
	}
	dt {
		width: clamp(120px, 30%, 160px);
		flex-shrink: 0;
		background: var(--base-color01);
		padding: .5em 1em;
		color: #fff;
		text-align: center;
	}
	dd {
		padding: .5em 0;
		flex-grow: 1;
	}
}
.table_wrap dl:not(:last-of-type) {
	dt { border-bottom: 1px dashed #fff;}
	dd { border-bottom: 1px dashed #ddd;}
}

@media (max-width: 767px) {
	.table_wrap {
		width: 100%;
		dl { flex-wrap: wrap; }
		dt,dd { width: 100%; }
	}
	.table_wrap dl:not(:last-of-type) {
		dt { border-bottom: none;}
		dd { border-bottom: none;}
	}
}

.cost_of_sale {
	width: 100%;
	position: relative;
	z-index: 1;
	clip-path: polygon(0 0,0 100%,100% 100%,100% 0);
	background-color: transparent;
}
.cost_of_sale::before {
	content: '';
	z-index: -1;
	inset: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	background: url(../img/bg_onayami.webp) no-repeat center center / cover;
}
.cost_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: clamp(15px, 3vw, 30px);
	gap: clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px);
}
.cost_box {
	position: relative;
	width: calc((100% - (clamp(15px, 3vw, 30px) * 3)) / 4);
	background: #fff;
	border-radius: 6px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	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;
	}
	.cost_box_img img {
		aspect-ratio: 5/3;
		border-radius: 8px 8px 0 0;
	}
	.cost_txt {
		padding: 1.25rem;
	}
}

@media (max-width: 767px) {
	.cost_box {
		width: calc((100% - clamp(15px, 3vw, 30px)) / 2);
	}
}