@charset "UTF-8";
/*-------------------------------------よくあるご質問*/
.section_kv #faq.kv_inner {
	background-image: url("../img/faq/img_kv.jpg");
	background-position: left center;
}
.faq {
	overflow: hidden;
}
/*アコーディオン*/
.faq .ac_wrap {
	max-width: 900px;
	margin: 0 auto 20px;
}
.faq .ac-check {
	display: none;
}
.faq .ac-label {
	background: #f9efef;
	font-size: 1.6rem;
	font-weight: 400;
	display: block;
	padding: 1em 2.2em 1em 1em;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
}
.faq .ac-label::before,
.faq .ac-label::after {
	content: "";
	display: block;
	width: 1px;
	height: 0.75em;
	background-color: #b41e00;
	position: absolute;
	top: 1.65em;
	bottom: 0;
	right: 1.5em;
	transition: .3s;
}
.faq .ac-label.line2::before,
.faq .ac-label.line2::after {
	top: 2.5em;
}
.faq .ac-label::after {
	transform: rotate(90deg);
}
.faq .ac-check[type=checkbox]:checked + .ac-label::before {
	transform: rotate(90deg) !important;
}
.faq .ac-content {
	height: 0;
	opacity: 0;
	transition: all .3s;
	visibility: hidden;
}
.faq .ac-check:checked + .ac-label + .ac-content {
	height: auto;
	opacity: 1;
	visibility: visible;
}
.faq .ac-content .ac-content_inner {
	padding: 1em 2em;
}
.faq .ac-content p.answer {
	margin-bottom: 5px;
	color: #b41e00;
}
.faq .ac-content ul li {
	padding: 0 0 0 1.5em;
	margin-bottom: 7px;
	line-height: 1.6;
	position: relative;
}
.faq .ac-content ul li::before {
	content: "";
	display: block;
	background-color: #141410;
	width: 5px;
	height: 5px;
	transform: rotate(45deg);
	position: absolute;
	left: 5px;
	top: 8px;
}
.faq .ac-content .tbl_cancel {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
.faq .ac-content .tbl_cancel tr th {
	padding: 10px;
	background-color: #f9f9f9;
	text-align: center;
	border: 1px solid #cccccc;
}
.faq .ac-content .tbl_cancel tr td {
	padding: 10px;
	background-color: #ffffff;
	text-align: center;
	border: 1px solid #cccccc;
}
.faq .ac-content a {
	text-decoration: underline;
}
.faq .ac-content a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.faq .ac-label {
		font-size: 1.4rem;
	}
	.faq .ac-content p.answer {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 480px) {
	.faq .ac-label {
		font-size: 1.3rem;
		padding: 1em 2.2em 1em 1em;
	}
	.faq .ac-content p.answer {
		font-size: 1.3rem;
	}
}


