@charset "utf-8";

/* --------- --------- --------- --------- faq --------- */
section.faq > .faq_list {
	margin-top: 6rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
section.faq > .faq_list dl dt {
	display: flex;
	align-items: center;
	width: 100%;
	background-color: #ddd6ce;
	border-radius: 1.875rem;
	position: relative;
	cursor: pointer;
}
section.faq > .faq_list dl dt .title {
	flex: 1;
	display: flex;
	padding: 1.25rem 1.25rem 1.25rem 2.25rem;
	color: #523418;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
}
section.faq > .faq_list dl dt .title::before {
	content: 'Q';
	width: 16px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	position: relative;
	left: -.5rem;
}
section.faq > .faq_list dl dt .button {
	display: flex;
	width: 2rem;
	height: 2rem;
	background-color: #ffffff;
	border-radius: 1rem;
	position: relative;
	right: 1rem;
}
section.faq > .faq_list dl dt .button::before {
	content: '';
	display: block;
	width: 1rem;
	height: calc(.125rem * 1.5);
	background-color: #523418;
	border-radius: .125rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
section.faq > .faq_list dl dt .button::after {
	content: '';
	display: block;
	width: 1rem;
	height: calc(.125rem * 1.5);
	background-color: #523418;
	border-radius: .125rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-90deg);
	transition: transform .2s;
}
section.faq > .faq_list dl.open dt .button::after {
	transform: translate(-50%, -50%) rotate(0);
}
section.faq > .faq_list dl dd {
	display: none;
}
section.faq > .faq_list dl dd div {
	display: flex;
	padding: 1.25rem 1.25rem 1.25rem 2.25rem;
	color: #523418;
	position: relative;
}
section.faq > .faq_list dl dd div::before {
	content: 'A';
	width: 16px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	position: relative;
	top: .125rem;
	left: -.5rem;
}
section.faq > .faq_list dl dd div p {
	color: #523418;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
}
section.faq > .faq_list dl dd div p a {
	color: #6c8c9d;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: underline;
}
section.faq > .button {
	margin-top: 4rem;
	text-align: center;
}
section.faq > .button a {
	display: inline-flex;
	height: 4rem;
	margin: 0;
	padding: 0 4rem 0 2.5rem;
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 4rem;
	background-color: #e58f16;
	border-radius: 2.125rem;
	transition: opacity .2s;
	position: relative;
}
section.faq > .button a::after {
	content: '▲';
	font-family: 'GenJyuuGothic', sans-serif;
	font-weight: 400;
	color: #ffffff;
	font-size: .875rem;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%) rotate(90deg);
}
section.faq > .button a:hover {
	opacity: .75;
}
