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

.faq_wrap .faq_subtitle {
	text-align: center;
	font-size: clamp(1.3rem,2vw,1.75rem);
	margin-bottom: clamp(15px, 3vw, 30px);
}
.faq_wrap:not(:nth-of-type(1)) {
	margin-top: clamp(25px, 5vw, 50px);
}

.toggle {
	display: none;
}
.faq_article {
	position: relative;
	background: #fff;
	padding-top: 1.25rem;
	padding-right: 2.5rem;
	padding-left: 5rem;
	padding-bottom: 1.25rem;
	.question {
		display: block;
		width: 100%;
		font-weight: 500;
		padding-right: 3rem;
		padding-bottom: .5rem;
		border-bottom: 2px dashed var(--base-color01);
		margin-bottom: .75rem;
	}
	label:hover {
		cursor: pointer;
	}
	.anser {
		max-height: 0;
		overflow: hidden;
	}
	.question,.anser {
		transform: translateZ(0);
		transition: all 0.3s;
	}
}
.faq_article::before {
	content: "";
	display: block;
	width: 1.5rem;
	height: auto;
	aspect-ratio: 1/1;
	background: url(../img/que.webp) no-repeat center center / contain;
	position: absolute;
	top: 1.25rem;
	left: 2rem;
}
.faq_article:not(:last-of-type) {
	margin-bottom: clamp(10px, 2vw, 20px);
}

.question:after,
.question:before {
	content: "";
	position: absolute;
	right: 1.25rem;
	top: -5px;
	bottom: 0;
	margin: auto;
	width: 2px;
	height: 1.25rem;
	background-color: var(--base-color01);
	transition: all 0.3s;
}
.question:after {
	transform: rotate(90deg);
}
.toggle:checked + .question + .anser {
	max-height: 500px;
	transition: all 1.5s;
}
.toggle:checked + .question:before {
	transform: rotate(90deg) !important;
}








@media (max-width: 767px) {

}













