.pac_faq_page {
	position: relative;
	/* overflow: hidden; */
	overflow: visible;
	padding: 90px 20px 120px;
	background: #f5f9fe;
}

.pac_faq_page::before {
	content: "";
	position: absolute;
	top: 100px;
	right: -230px;
	width: 520px;
	height: 520px;
	border: 55px solid rgba(37, 142, 235, 0.035);
	border-radius: 50%;
	pointer-events: none;
}

.pac_faq_inner {
	position: relative;
	overflow: visible;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}

.pac_faq_category_wrap {
	position: sticky;
	top: 0;
	z-index: 50;
	margin-bottom: 50px;
	background: #f5f9fe;
}

.pac_faq_category {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin: 0;
	padding: 0;
	border-top: 1px solid #d8e5f1;
	border-bottom: 1px solid #d8e5f1;
}

.pac_faq_head {
	margin-bottom: 48px;
	text-align: center;
}

.pac_faq_head_label {
	display: block;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 600;
	color: #1787e8;
}

.pac_faq_head h2 {
	margin: 0;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.3;
	color: #101b2e;
}

.pac_faq_head h2 strong {
	font-weight: 700;
	color: #1688eb;
}

.pac_faq_head p {
	margin: 14px 0 0;
	font-size: 15px;
	line-height: 1.7;
	color: #7b8798;
}

.pac_faq_category {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 50px;
	padding: 0;
	border-top: 1px solid #d8e5f1;
	border-bottom: 1px solid #d8e5f1;
	background: rgba(247, 251, 255, 0.96);
	backdrop-filter: blur(8px);
}

.pac_faq_category_item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-height: 58px;
	padding: 0 18px;
	font-size: 17px;
	font-weight: 600;
	color: #66768a;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease, background 0.2s ease;
}

.pac_faq_category_item::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -1px;
	width: 0;
	height: 2px;
	background: #1688eb;
	transform: translateX(-50%);
	transition: width 0.2s ease;
}

.pac_faq_category_item:hover {
	color: #1688eb;
	background: #f2f8fe;
}

.pac_faq_category_item:hover::after,
.pac_faq_category_item.is_active::after {
	width: 42px;
}

.pac_faq_category_item.is_active {
	color: #1688eb;
}

.pac_faq_content {
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.pac_faq_group {
	scroll-margin-top: 100px;
}

.pac_faq_group_head {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	padding: 0 0 16px;
	border-bottom: 1px solid #dce7f2;
}

.pac_faq_group_head::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 72px;
	height: 2px;
	background: #1688eb;
}

.pac_faq_group_num {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 7px;
	background: #1688eb;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
}

.pac_faq_group_head > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3px;
}

.pac_faq_group_en {
	display: block;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.2;
	color: #1688eb;
	text-transform: uppercase;
}

.pac_faq_group_head h3 {
	margin: 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.3;
	color: #17233a;
}

.pac_faq_list {
	overflow: hidden;
	border: 1px solid #dfe7f0;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 10px 35px rgba(24, 63, 101, 0.06);
}

.pac_faq_item {
	border-bottom: 1px solid #e9eef4;
}

.pac_faq_item:last-child {
	border-bottom: 0;
}

.pac_faq_item summary {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 78px;
	padding: 18px 68px 18px 28px;
	cursor: pointer;
	list-style: none;
}

.pac_faq_item summary::-webkit-details-marker {
	display: none;
}

.pac_faq_item summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid #dbe7f2;
	border-radius: 50%;
	background: #f6faff;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	color: #1688eb;
	transform: translateY(-50%);
	transition: 0.2s ease;
}

.pac_faq_item[open] summary::after {
	content: "−";
	background: #1688eb;
	border-color: #1688eb;
	color: #ffffff;
}

.pac_faq_item[open] summary {
	background: #fbfdff;
}

.pac_faq_q {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #e9f5ff;
	font-size: 15px;
	font-weight: 700;
	color: #1688eb;
}

.pac_faq_question {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.6;
	color: #1b293d;
}

.pac_faq_answer {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 24px 68px 28px 28px;
	border-top: 1px solid #edf2f6;
	background: #f7fbff;
}

.pac_faq_a {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #1688eb;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
}

.pac_faq_answer p {
	margin: 5px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: #59687b;
	word-break: keep-all;
}

.pac_faq_answer > div {
	flex: 1;
}

.pac_faq_answer_list {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.pac_faq_answer_list li {
	position: relative;
	padding-left: 14px;
	font-size: 15px;
	line-height: 1.9;
	color: #59687b;
}

.pac_faq_answer_list li::before {
	content: "";
	position: absolute;
	top: 13px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #1688eb;
}

.pac_faq_notice {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 34px;
	padding: 16px 18px;
	border: 1px solid #dfe7f0;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(24, 63, 101, 0.05);
}
.pac_faq_notice_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #e9f5ff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: #1688eb;
}

.pac_faq_notice p {
	flex: 1;
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: #657388;
}
.pac_faq_notice_contact {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: auto;
}
.pac_faq_notice_contact a {
	position: relative;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	color: #1688eb;
	text-decoration: none;
	white-space: nowrap;
}
.pac_faq_notice span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #e9f5ff;
	font-size: 12px;
	font-weight: 700;
	color: #1688eb;
}
.pac_faq_notice_contact a + a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -8px;
	width: 1px;
	height: 12px;
	background: #d8e2ec;
	transform: translateY(-50%);
}

.pac_faq_notice_contact a:hover {
	text-decoration: underline;
}


/* 반응형 */



@media (max-width: 767px) {
	.pac_faq_page {
		padding: 60px 16px 80px;
	}

	.pac_faq_page::before {
		top: 70px;
		right: -220px;
		width: 400px;
		height: 400px;
		border-width: 42px;
	}

	.pac_faq_head {
		margin-bottom: 32px;
	}

	.pac_faq_head_label {
		margin-bottom: 8px;
		font-size: 11px;
	}

	.pac_faq_head h2 {
		font-size: 27px;
	}

	.pac_faq_head p {
		margin-top: 10px;
		font-size: 14px;
	}
	
	.pac_faq_category_wrap {
		margin-bottom: 36px;
	}

	.pac_faq_category {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.pac_faq_category::-webkit-scrollbar {
		display: none;
	}

	.pac_faq_category_item {
		min-height: 48px;
		padding: 0 10px;
		font-size: 15px;
		text-align: center;
		white-space: normal;
		word-break: keep-all;
	}

	.pac_faq_category_item:nth-child(2n+1) {
		border-right: 1px solid #eee;
	}
	.pac_faq_category_item:nth-child(-n+4) {
		border-bottom: 1px solid #eee;
	}

	.pac_faq_category_item:last-child {
		grid-column: 1 / -1;
		border-right: 0;
	}

	.pac_faq_content {
		gap: 42px;
	}

	.pac_faq_group_head {
		gap: 11px;
		margin-bottom: 14px;
		padding-bottom: 13px;
	}
	.pac_faq_group_head::after {
		width: 56px;
	}

	.pac_faq_group_num {
		width: 38px;
		height: 38px;
		border-radius: 6px;
		font-size: 12px;
	}

	.pac_faq_group_en {
		font-size: 9px;
	}

	.pac_faq_group_head h3 {
		font-size: 18px;
	}

	.pac_faq_list {
		border-radius: 8px;
	}

	.pac_faq_item summary {
		align-items: flex-start;
		gap: 11px;
		min-height: auto;
		padding: 13px 52px 13px 18px;
	}

	.pac_faq_item summary::after {
		right: 16px;
		width: 27px;
		height: 27px;
		font-size: 18px;
	}

	.pac_faq_q,
	.pac_faq_a {
		width: 29px;
		height: 29px;
		font-size: 13px;
	}

	.pac_faq_question {
		padding-top: 2px;
		font-size: 15px;
		line-height: 1.6;
		word-break: keep-all;
	}

	.pac_faq_answer {
		gap: 11px;
		padding: 20px 18px;
	}

	.pac_faq_answer p {
		font-size: 15px;
	}
	.pac_faq_answer_list li {
		font-size: 15px;
	}

	.pac_faq_answer p {
		margin-top: 2px;
		line-height: 1.45;
	}

	.pac_faq_answer_list {
		margin-top: 8px;
	}

	.pac_faq_notice {
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 8px 10px;
		margin-top: 24px;
		padding: 14px;
	}

	.pac_faq_notice p {
		flex: 1 1 calc(100% - 32px);
		font-size: 12px;
	}
	.pac_faq_notice_contact {
		width: 100%;
		margin: 4px 0 0 32px;
		gap: 14px;
		flex-wrap: wrap;
	}

	.pac_faq_notice_contact a {
		font-size: 12px;
	}
}

@media all and (max-width: 400px) {
	.pac_faq_notice_contact { gap: 5px; flex-direction: column; align-items: flex-start; }
}

@media all and (max-width: 650px) {

}