@charset "utf-8";
/* ===================================================
	faq CSS
====================================================== */

/* ---------------------------------------------------
#c_nav
------------------------------------------------------ */
#c_nav { display: flex; justify-content: space-between; margin: 0 auto 200px; padding: 100px 0 0;}
#c_nav li { position: relative; width: 24%; text-align: center;}
#c_nav li a.link_line { padding: 10px 0 30px; width: 100%; justify-content: center;}
#c_nav li a.link_line::after { width: 0;}

@media screen and (hover: hover) and (min-width: 601px) {
	#c_nav li a.link_line:hover::after {
		width: 100%;
	}

}

@media screen and (max-width: 600px) {
	#c_nav { display: block; margin: 0 auto 80px; font-size: 14px; padding: 30px 0 0;}
	#c_nav li { width: 100%;}
	#c_nav li a { justify-content: left;}
	#c_nav li a.link_line { padding: 12px 0; justify-content: left;}
	#c_nav li:after { content: ''; width: 6px; height: 6px; margin: auto 0; position: absolute; top: 0; bottom: 0; right: 15px; border-bottom: 1px solid rgba(65, 65, 65, .6); border-right: 1px solid rgba(65, 65, 65, .6); transform: rotate(45deg); transition: transform 0.3s ease;}
}

/* ---------------------------------------------------
section
------------------------------------------------------ */

section { padding-bottom: 180px;}
section h2 { margin: 0 0 30px; font-style: italic; font-size: 30px; color: rgba(65, 65, 65, .6);}

section .faq_acc_tit,
section .faq_acc_contents {
	display: flex;
	align-items: flex-start;
}
section .faq_acc_tit::before,
section .faq_acc_contents::before {
	box-sizing: border-box;
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin: 0 20px 0 0;
	line-height: 1;
	letter-spacing: 0;
	border-radius: 50%;
	font-size: 16px;
}
section .faq_acc_tit > span,
section .faq_acc_contents > div {
	align-self: center;
	min-width: 0;
}
section .faq_acc_tit {
	position: relative;
	z-index: 0;
	padding: 15px 30px 15px 0;
	border-bottom: 1px solid #cfcfcf;
}
section .faq_acc_tit::before {
	color: #fff;
	content: "Q";
	background: #966a76;
}
section .faq_acc_tit::after {
	position: absolute;
	top: 50%;
	right: 10px;
	width: 12px;
	height: 12px;
	content: "";
	background: url(../../faq/img/arrow.svg) no-repeat center center;
	background-size: 100% auto;
	transition: transform 0.5s;
	transform: translateY(-50%);
}
section .faq_acc_tit.active::after {
	transform: rotate(180deg) translateY(50%);
}
section .faq_acc_contents {
	padding: 25px 0 20px;
}
section .faq_acc_contents::before {
	content: "A";
	background: #fff;
	border: 1px solid #cfcfcf;
	color: rgba(65, 65, 65, .6);
}
section .faq_acc_contents p + p,
section .faq_acc_contents p + ul,
section .faq_acc_contents p + dl,
section .faq_acc_contents dl + p,
section .faq_acc_contents dl + ul {
	margin: 15px 0 0;
}
section .faq_acc_contents th {
	font-weight: normal;
	text-align: left;
}

section .faq_acc_contents a { border-bottom: 1px solid #414141;}


@media screen and (hover: hover) and (min-width: 601px) {


}

@media screen and (max-width: 600px) {
	section { padding-bottom: 80px;}
	section h2 { margin-bottom: 0; font-size: 26px;}

}

