@charset "UTF-8";

/* -----------------------------------------------------------
	faq_wrap select
----------------------------------------------------------- */
.faq_wrap .cont_inner {
	max-width: 1000px;
}
.faq_wrap .select {
	margin-bottom: 75px;
}
.faq_wrap .select ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 23px 55px;
}
.faq_wrap .select ul li {
	white-space: nowrap;
}
.faq_wrap .select ul li a {
	color: #333;
	border-bottom: 1px solid #333;
	position: relative;
	padding: 0px 7px 6px 40px;
	font-size: 16px;
}
.faq_wrap .select ul li a::after {
	display: block;
    content: '';
    position: absolute;
    width: 14px;
    height: 21px;
    top: 0;
    left: 8px;
	background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
	background-image: url("../img/icon_select.svg");
	transition: all 0.3s ease;
}
.faq_wrap .select ul li a:hover {
	opacity: .7;
}
.faq_wrap .select ul li a:hover::after {
	top: 4px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
.faq_wrap .select ul {
	gap: 23px 30px;
}
}
@media screen and (max-width: 767px) {
.faq_wrap .select {
	margin-bottom: 30px;
}
.faq_wrap .select ul {
	gap: 16px 20px;
	justify-content: flex-start;
}
.faq_wrap .select ul li a {
	font-size: 14px;
	padding: 0px 7px 6px 30px;
}
}


/* -----------------------------------------------------------
	faq_wrap qa_wrap
----------------------------------------------------------- */
.faq_wrap .ttl_general_1 {
	padding-left: 97px;
	margin-bottom: 15px;
}

.faq_wrap .para {
	margin-bottom: 45px;
}
.faq_wrap .qa_wrap .item {
	margin-bottom: 17px;
}
.faq_wrap .qa_wrap .item .item_q {
	padding: 6px 65px;
	background: #e5e5e5;
	position: relative;
	cursor: pointer;
	font-size: 18px;
}
.faq_wrap .qa_wrap .item .item_q:hover {
	opacity: .7;
}
.faq_wrap .qa_wrap .item .item_q::before {
	position: absolute;
	top: 6px;
	left: 20px;
	width: 34px;
	height: 34px;
	content: 'Q.';
	display: flex;
	justify-content: center;
    align-items: center;
}
.faq_wrap .qa_wrap .item .item_q::after {
	position: absolute;
    top: 0;
    right: 15px;
    left: auto;
    display: block;
    content: '';
    width: 22px;
    height: 100%;
	background-image: url("../img/icon_plus.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px;
}
.faq_wrap .qa_wrap .item .item_q.acc_active::after {
	background-image: url("../img/icon_minus.svg");
}
.faq_wrap .qa_wrap .item .item_q .text {
	font-weight: 500;
}
.faq_wrap .qa_wrap .item .item_a {
	padding: 10px 20px 10px 65px;
	position: relative;
	margin-top: 10px;
	font-size: 16px;
	display: none;
}
.faq_wrap .qa_wrap .item .item_a::before {
	position: absolute;
	top: 10px;
	left: 20px;
	width: 34px;
	height: 34px;
	content: 'A.';
	font-size: 18px;
	display: flex;
	justify-content: center;
    align-items: center;
}
.faq_wrap .qa_wrap .item .item_a a {
	color: #333;
	text-decoration: underline;
}
.faq_wrap .qa_wrap .item .item_a a:hover {
	text-decoration: none;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
}
@media screen and (max-width: 767px) {
.faq_wrap .ttl_general_1 {
	padding-left: 30px;
}
.faq_wrap .para {
	margin-bottom: 40px;
	padding-top: 20px;
}
.faq_wrap .qa_wrap .item {
	margin-bottom: 20px;
}
.faq_wrap .qa_wrap .item .item_q {
	padding: 6px 34px 6px 40px;
}
.faq_wrap .qa_wrap .item .item_q::before {
	top: 0;
    left: 6px;
	font-size: 16px;
}
.faq_wrap .qa_wrap .item .item_q::after {
	width: 18px;
	background-size: 18px;
    right: 10px;
}
.faq_wrap .qa_wrap .item .item_q .text {
	font-size: 15px;
}
.faq_wrap .qa_wrap .item .item_a {
	font-size: 14px;
	padding: 10px 0 10px 46px;
	margin-top: 0;
}
.faq_wrap .qa_wrap .item .item_a::before {
	top: 5px;
    left: 6px;
	font-size: 16px;
}
}




