/*
 * base css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
}

@media (min-width: 600px) and (max-width:959px) {
}

@media (min-width: 960px) {
}

@media (max-width: 480px) {
}

@media (min-width: 481px) and (max-width:767px) {
}

@media (min-width: 768px) and (max-width:959px) {
}

@media (min-width: 960px) {
}

@media (max-width: 767px) {
}

@media (min-width: 768px) {
}

/* ---------------------------------------- common */

section h2 {
	margin: 0 0 2.5em;
	position: relative;
}

section h2 span {
	display: inline-block;
	color: var( --orange-color );
	background: #fff;
	position: relative;
}

section h2::after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background: var( --orange-color );
	position: absolute;
	top: 50%;
	left: 0;
	z-index: -1;
}

@media (max-width: 767px) {
	main > section { margin: 0 0 3.75em; }
	main > section:last-child { margin: 0; }
	section h2 span {
		font-size: clamp(1.8rem, -0.155rem + 3.45vw, 2.2rem);
		padding: 0 1em 0 2.25em;
	}
}

@media (min-width: 768px) {
	main > section { margin: 0 0 5.5555em; }
	main > section:last-child { margin: 0; }
	section h2 span {
		font-size: clamp(2.4rem, -0.155rem + 3.45vw, 3.2rem);
		padding: 0 1em 0 2.25em;
	}
}

section h2 span::before {
	content: "";
	display: block;
	width: 2em;
	aspect-ratio: 1;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
section#faq1 h2 span::before {
	background: url( ../images/faq/icon01_FAQ.svg ) no-repeat center center;
	background-size: contain;
}
section#faq2 h2 span::before {
	background: url( ../images/faq/icon02_FAQ.svg ) no-repeat center center;
	background-size: contain;
}
section#faq3 h2 span::before {
	background: url( ../images/faq/icon03_FAQ.svg ) no-repeat center center;
	background-size: contain;
}

/* ---------------------------------------- faq */

section dl dt,
section dl dd {
	display: table;
	width: 100%;
	padding: .5em 0;
}
section dl dd + dt {
	padding: 1em 0 .5em;
}
section dl dt + dd {
	border-bottom: 1px #ccc solid;
	padding: .5em 0 1em;
}

section dl dt > *,
section dl dd > * {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}
section dl em {
	width: 1.6em;
	position: relative;
}
section dl em::before {
	content: "";
	width: 1.6em;
	aspect-ratio: 1;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
section dl dt em::before {
	background: url( ../images/faq/question.svg ) no-repeat center center;
	background-size: contain;
}
section dl dd em::before {
	background: url( ../images/faq/answer.svg ) no-repeat center center;
	background-size: contain;
}
section dl span {
	line-height: 2;
	padding: 0 0 0 1em;
}