@charset "UTF-8";

.toggle_contents {
}
.toggle_title {
	background: #fff;
	position: relative;
	cursor: pointer;
	padding: 1.4em 9% 1.4em 8.7%;
	font-weight: 700;
	margin-top: 1.1em;
	line-height: 1.5;
	color: var(--brown);
}
.toggle_title::before {
	position: absolute;
	top: 50%;
	left: 2%;
	content: "Q";
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
	color: var(--brown);
	display: inline-block;
	font-size: 2em;
	transform: translateY(-50%);
}
.toggle_btn {
	position: absolute;
	top: 50%;
	right: 2.2%;
	background: var(--brown);
	content: "";
	display: block;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	transform: translateY(-50%);
	width: 1.35em;
	height: 0.15em;
}
.toggle_btn::after {
	position: absolute;
	top: 50%;
	background: var(--brown);
	content: "";
	display: block;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	transform: translateY(-50%);
	right: .6em;
	width: 0.15em;
	height: 1.35em;
}
.toggle_title.selected .toggle_btn::after {
	display: none;
}
.toggle_contents dd {
	display: none;
	background: #fff;
	padding: 1.5em 7% 1.5em 8.7%;
	position: relative;
	border-top: 1px solid #dcdcdc;
}
.toggle_contents dd::before {
	position: absolute;
	top: .3em;
	left: 2%;
	content: "A";
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
	color: var(--brown);
	display: inline-block;
	font-size: 2.22em;
}
@media screen and (max-width: 540px) {
	.toggle_title {
		padding: 1.1em 9% 1.1em 12%;
	}
	.toggle_contents dd {
		padding: 1.2em 7% 1.2em 12%;
	}
	.toggle_btn {
		width: 1em;
		height: 0.12em;
	}
	.toggle_btn::after {
		right: .44em;
		width: 0.12em;
		height: 1em;
	}
}