@charset "utf-8";
/* CSS Document */

.header.change-color {
	background-color: rgba(0,0,0,0.9);
}
#mainvisual {
	width: 100%;
	height: 30vh;
	position: relative;
	background: url(../img/faq_header.jpg) no-repeat center;
}
#mainvisual::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000;
	opacity: 0.4;
	z-index: 0;
}
#mainvisual p {
	height: fit-content;
	font-family: U-OTF-GothicMB101Upr-Heavy;
	font-size: 1.3rem;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 30px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 10;
}
.intro {
	width: 94%;
	margin: 30px auto 30px;
}
.intro h1 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	font-family: U-OTF-GothicMB101Upr-Heavy;
}
.in_text {
	margin: 0 0 15px;
	font-size: 0.9rem;
	line-height: 2.0;
}
.qa-section {
	width: 94%;
	margin: 0 auto;
}
.qa-section h2 {
	font-size: 1.1rem;
	border-left: 4px solid var(--main);
	padding: 10px 10px;
	background: var(--grey);
	margin-bottom: 25px;
	letter-spacing: 3px;
	font-family: U-OTF-GothicMB101Upr-Heavy;
	line-height: 1.6;
}
.qa-section h2 span {
	width: 15px;
	aspect-ratio: 1;
	margin: 0 3% 0 auto;
	position: relative;
}
.qa-section h2 span::before {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: var(--main);
	transform: rotate(0deg);
	transition: 0.3s all;
}
.qa-section h2.active span::before {
	transform: rotate(180deg);
}
.qa-section h2 span::after {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: var(--main);
	transform: rotate(90deg);
	transition: 0.3s all;
}
.qa-section h2.active span::after {
	transform: rotate(180deg);
}
.qa-section .qa-list {
	width: 96%;
	margin: 0 auto;
	transition: 0.3s all;
}
.qa-section .qa-list.active {
	margin: 0 auto 30px;
}
.qa-section .qa-list .qa-item {
	margin-bottom: 20px;
}
.qa-item h3 {
	display: flex;
	font-size: 0.9rem;
	color: var(--main);
	padding-bottom: 5px;
}
.qa-item h3 span {
	margin-right: 5px;
}
.qa-item p {
	display: flex;
	font-size: 0.9rem;
}
.qa-item p span:first-of-type {
	margin-right: 5px;
	font-size: 0.9rem;
	font-weight: bold;
}
.qa-item a {
	color: var(--main);
	text-decoration: underline;
}
.common-cta {
	max-width: 1100px;
	margin: 30px auto;
}
.common-cta h3 {
	font-size: 1.1rem;
	border-left: 4px solid var(--main);
	padding: 10px 10px;
	background: var(--grey);
	margin-bottom: 25px;
	letter-spacing: 3px;
	font-family: U-OTF-GothicMB101Upr-Heavy;
	line-height: 1.6;
}
.cta-text {
	margin-bottom: 10px;
	font-size: 0.9rem;
}
.common-cta .cta-btns {
	width: 80%;
	display: flex;
	flex-direction: column;
	margin: 30px auto;
}
.common-cta .cta-btns a {
	display: block;
	background: var(--main);
	color: #fff;
	font-size: 1.1rem;
	text-align: center;
	padding: 15px 0;
	margin-bottom: 25px;
}
