.post-type-archive-notice .wrapper {
	max-width: 1542px;
	width: 100%;
	padding: 100px 20px 200px 20px;
	margin: 0px auto;
	width: 100%;
	height: auto;
}

.post-type-archive-notice .fixed-section {
}

.post-type-archive-notice .top-section {
	margin-bottom: 60px;
}

.post-type-archive-notice .top-section .title {
	font-size: 27px;
	line-height: 42px;
	font-weight: bold;
	color: #111;
}

.post-type-archive-notice .link-area {
	margin-top: 30px;
}

.post-type-archive-notice .link-area a {
	display: inline-block;
	width: 200px;
	height: 50px;
	font-weight: 500;
	font-size: 13px;
	line-height: 50px;
	text-align: center;
	color: #111;
	border-radius: 200px;
}

.post-type-archive-notice .link-area .openchat {
	background-color: #fbe54d;
}

.post-type-archive-notice .link-area .openchat img {
	position: relative;
	top: -3px;
	width: 24px;
	height: auto;
	margin-right: 5px;
}

.post-type-archive-notice .link-area .oneon {
	background-color: #f5f5f5;
	margin-left: 10px;
}

.post-type-archive-notice .link-area .oneon img {
	position: relative;
	top: -3px;
	width: 20px;
	height: auto;
	margin-right: 5px;
}

/* Tab */
.post-type-archive-notice .tab-wrapper ul {
	display: inline-block;
	width: 100%;
	font-weight: bold;
	font-size: 20px;
	line-height: 29px;
	border-bottom: 1px solid #111;
	padding-bottom: 20px;
}

.post-type-archive-notice .tab-wrapper .tab {
	float: left;
	margin-right: 30px;
}

.post-type-archive-notice .tab-wrapper .tab a {
	color: #9a9a9e;
}

.post-type-archive-notice .tab-wrapper .tab img {
	position: relative;
	left: 7px;
	bottom: 3px;
}

.post-type-archive-notice .tab-wrapper .tab.active a {
	color: #111;
}

.post-type-archive-notice .tab-wrapper .tab a:hover {
	color: #333;
}

/* 팝업 스타일 */
.post-type-archive-notice .popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
}

.post-type-archive-notice .popup.active {
	display: flex;
}

/* Wrapper */
.post-type-archive-notice .faq-wrapper {
	width: 100%;
	height: auto;
	padding: 0 20px;
}

/* Notice Table */
.post-type-archive-notice .notice-table {
	margin-bottom: 50px;
}

/* Notice List */
.post-type-archive-notice .notice-list {
	display: flex;
	padding-top: 31px;
	padding-bottom: 32px;
	border-bottom: 1px solid #ebebeb;
}

/* Left Area (if needed for icon or image) */
.post-type-archive-notice .left-area {
	width: 63px;
}

/* Emphasis (Important Notice) */
.post-type-archive-notice .emphasis {
	background-color: #fff;
	border: 1px solid #DA3023;
	border-radius: 2px;
	font-size: 13px;
	height: 25px;
	line-height: 23px;
	color: #DA3023;
	padding: 0px 8px;
	margin-right: 20px;
	text-align: center;
}

/* Title */
.post-type-archive-notice .title {
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	color: #111;
}

/* Date */
.post-type-archive-notice .date {
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
	color: #9a9a9e;
	margin-left: auto;
}

/* More Button Wrapper */
.post-type-archive-notice .more-button-wrapper {
	padding: 0 20px;
	padding-bottom: 79px;
	border-bottom: 1px solid #ebebeb;
}

/* More Button */
.post-type-archive-notice .more-button {
	width: 100%;
	height: 60px;
	font-size: 18px;
	font-weight: 500;
	line-height: 58px;
	border-radius: 500px;
	border: solid 1px #999;
	text-align: center;
}

/* Loading Round Wrapper */
.post-type-archive-notice .loading-round-wrapper {
	padding: 24px 0 0 10px;
}

/* Pagination */
.post-type-archive-notice .pagination {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.post-type-archive-notice .paging-button {
	padding: 10px;
	font-size: 16px;
	background-color: #f1f1f1;
	border: 1px solid #ccc;
	margin: 0 5px;
	cursor: pointer;
}

.post-type-archive-notice .paging-button:hover {
	background-color: #ddd;
}

.post-type-archive-notice .current-page {
	font-size: 16px;
	margin: 0 10px;
	align-self: center;
}

/* Loading Round (You can replace with an actual loader) */
.post-type-archive-notice .loading-round {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 5px solid #ccc;
	border-top: 5px solid #333;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@media screen and (max-width: 768px) {
	.post-type-archive-notice .notice-wrapper {
		/* padding: 0 20px; */
	}
	.post-type-archive-notice .wrapper {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.post-type-archive-notice .date {
		display: none;
	}

	.post-type-archive-notice .top-section .title {
		font-size: 20px;
		font-weight: bold;
		line-height: 1.5;
		margin-bottom: 30px;
	}

	.post-type-archive-notice .link-area {
		display: flex;
		justify-content: space-between;
	}

	.link-area .openchat,
	.post-type-archive-notice .link-area .oneon {
		transform: scale(0.95, 0.95);
	}

	.post-type-archive-notice .tab-wrapper ul {
		font-size: 17px;
		line-height: 20px;
		padding-bottom: 12px;
	}

	.post-type-archive-notice .tab-wrapper .tab {
		margin-right: 16px;
		font-size: 17px;
	}

	.post-type-archive-notice .tab-wrapper ul {
		font-size: 18px;
	}

	.post-type-archive-notice .notice-list {
		padding: 24px 0;
	}
	.post-type-archive-notice .emphasis {
		min-width: 50px;
		font-size: 12px;
		line-height: 22px;
		font-weight: 500;
		color: #DA3023;
	}
	.post-type-archive-notice .title {
		font-size: 16px;
		line-height: 23px;
	}
}
