/* 자주 묻는 질문 */
h1 {
	padding-top: 100px;
	padding-bottom: 64px;
	color: #373C59;
	text-align: center;
	font-size: 62px;
	font-weight: 700;
	line-height: 70px;
}

.faq-wrap {
	margin: 0 auto 240px;
	width: 100%;
	max-width: 1086px;
}

/* 탭 메뉴 */
.faq-tabs {
	display: flex;
	border-bottom: 1px solid #ddd;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.faq-tabs::-webkit-scrollbar {
	display: none;
}

.faq-tab {
	position: relative;
	flex: 1;
	text-align: center;
	padding: 12px 0;
	min-width: 120px;
	color: #939393;
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
	cursor: pointer;
}

.faq-tab.active {
	font-weight: 600;
	color: #000;
}

.faq-tab.active::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	border-bottom: 3px solid #296BEF;
	background: rgba(255, 255, 255, 0.10);
}

/* FAQ 리스트 */
.faq-item {
	border-bottom: 1px solid #eee;
}

.faq-item:hover {
	background: #F4F6F8;
}

.faq-item.active {
	background: #F4F6F8;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	color: #101010;
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	border-bottom: 1px solid #EBEBEB;
	cursor: pointer;
}

.faq-left {
	display: flex;
	align-items: center;
	flex: 1;
}

.faq-left .q-img {
	margin-right: 16px;
	width: 18px;
	height: 28px;
}

.a-img {
	margin-right: 16px;
	display: flex;
	width: 17px;
	height: 28px;
}

.faq-left .category {
	margin-right: 16px;
	white-space: nowrap;
	font-size: 18px;
	color: #7B7B7B;
	line-height: 28px;
}

.category::before {
	content: "[";
}

.category::after {
	content: "]";
}

.faq-answer-box {
	max-height: 0;
	font-size: 18px;
	color: #101010;
	line-height: 28px;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-answer {
	padding: 18px 20px;
	display: flex;
}

.faq-desc {
	color: #101010;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}

.arrow {
	transition: transform 0.3s ease;
}

.arrow.rotate {
	transform: rotate(180deg);
}

@media ( max-width : 1079px) {
	.faq-wrap {
		margin: 0 auto 150px;
	}
	h1 {
		margin-left: 15px;
		padding-top: 12px;
		padding-bottom: 20px;
		text-align: start;
		font-size: 24px;
		line-height: 32px;
	}
	.faq-tab {
		flex: 0 0 auto;
		min-width: 65px;
		font-size: 14px;
		padding: 8px 20px;
	}
	.faq-question {
		padding: 11px 15px 11px 15px;
		font-size: 14px;
		line-height: 20px;
	}
	.faq-left .category {
		display: block;
		margin-right: 0;
		margin-bottom: 2px;
		font-size: 12px;
		line-height: 20px;
	}
	.category::before, .category::after {
		content: "";
	}
	.faq-answer {
		padding: 18px 15px 18px 15px;
	}
	.faq-left {
		display: flex;
		align-items: start;
	}
	.faq-desc {
		font-size: 14px;
		text-overflow: ellipsis;
		line-height: 20px;
		overflow: hidden;
	}
	.q-img, .a-img {
		display: none;
	}
}