@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	vertical-align: top;
	font-family: "Pretendard", sans-serif;
}
.top {
	background-color: #000;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 18px; /* 112.5% */
	padding: 9px 0;
}
/* 헤더 */
#header {
	background-color: #f3f0eb;
	border-bottom: 1px solid #111;
}
.header_container {
	max-width: 1320px;
	height: 68px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_container .m_logo {
	display: none;
}
#header .gnb .main_gnb ul {
	display: flex;
	align-items: center;
}
#header .gnb .main_gnb ul li a {
	color: #111;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	padding: calc((68px - 20px) / 2) 0;
}
#header .gnb .main_gnb ul li {
	display: inline-block;
	padding: 0 20px;
}
#header .gnb .main_gnb ul li a {
	position: relative;
}
#header .gnb .main_gnb ul li a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #111;
	left: 0;
	bottom: 16px;
	transition: width 0.3s ease; /* 선 애니메이션 속도와 효과 설정 */
}
#header .gnb .main_gnb ul li:hover a::before {
	width: 100%;
}
#header .gnb .main_gnb ul li a img {
	width: 24px;
	height: 24px;
}

#header .gnb .main_gnb ul li.pc_gnb_btn {
	cursor: pointer;
}
#header .gnb .main_gnb ul li.pc_gnb_btn a::before {
	display: none;
}
#header .gnb .main_gnb ul li.pc_gnb_btn a {
	display: flex;
	flex-direction: column;
	gap: 8px 0;
	padding: calc((68px - 20px) / 2) 2px;
}
#header .gnb .main_gnb ul li.pc_gnb_btn span {
	display: inline-block;
	width: 20px;
	height: 2px;
	background-color: #111;
}

#header .member ul {
	display: flex;
	align-items: center;
	gap: 0 20px;
}
#header .member ul li a {
	padding: calc((68px - 14px) / 2) 0;
	color: #111;
	font-size: 14px;
	letter-spacing: 0;
	font-weight: 400;
	line-height: 100%;
	text-transform: uppercase;
}
.m_gnb,
.m_menu,
.m_search,
.m_search_page {
	display: none;
}

/* pc 검색 */
/* .pc_search_pop {
	display: none;
	position: fixed;
	right: 0;
	top: 0;
	width: 800px;
	padding: 36px 48px;
	height: 100vh;
	background-color: #000;
}
.pc_search_pop .input_area {
	display: flex;
	width: 100%;
	height: 60px;
	padding: 12px 0px;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	align-self: stretch;
	border-bottom: 1px solid #9a9a9a;
}
.pc_search_pop .input_area .icon {
	cursor: pointer;
	padding: 10px 16px 10px 0;
}
.pc_search_pop .input_area .search_close {
	cursor: pointer;
	padding: 10px 0 10px 16px;
}
.pc_search_pop .input_area input {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1 0 0;
	align-self: stretch;
	color: #9a9a9a;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -0.36px;
	background-color: transparent;
	outline: none;
}
.pc_search_pop .recommended {
	width: 100%;
	padding: 32px 0;
	display: flex;
	flex-direction: column;
	gap: 8px 0;
}
.pc_search_pop .recommended p {
	color: #666;
	font-size: 14px;
	font-weight: 600;
	line-height: 130%;
	letter-spacing: -0.28px;
}
.pc_search_pop .recommended ul li a {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.36px;
	display: inline-block;
	width: 100%;
	padding: 12.5px 0;
} */

/* pc gnb 전체보기 */
.pc_gnb_all {
	display: none;
	position: absolute;
	left: 0;
	top: 105px;
	width: 100%;
	height: calc(100vh - 105px);
	padding: 40px 0px 64px 0px;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: #f3f0eb;
	box-sizing: border-box;
	z-index: 10;
}
.pc_gnb_all .gnb_container {
	position: relative;
	transform: translateY(100px);
	opacity: 0;
	display: flex;
	gap: 0 48px;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.3s ease-in-out;
}

.pc_gnb_all.show .gnb_container {
	transform: translateY(0);
	opacity: 1;
}

.pc_gnb_all .gnb_container > div {
	width: 100px;
}
.pc_gnb_all .gnb_container > div h2 {
	color: #9f9f9f;
	font-size: 13px;
	font-weight: 600;
	line-height: 100%;
	margin-bottom: 12px;
}
.pc_gnb_all .gnb_container > div ul {
	display: flex;
	flex-direction: column;
}
.pc_gnb_all .gnb_container > div ul li a {
	display: inline-block;
	color: #111;
	font-size: 15px;
	font-weight: 400;
	line-height: 100%;
	align-self: stretch;
	width: 100%;
	padding: 8px 0;
}
.pc_gnb_all .gnb_container > div ul:last-child {
	margin-bottom: 0;
}
.pc_gnb_all .gnb_container .pc_menu02 {
	display: flex;
	flex-direction: column;
	gap: 32px 0;
}

/* 2차 GNB */
.pc_gnb_part {
	position: absolute;
	width: 100%;
	left: 0;
	top: 105px;
	background-color: #f3f0eb;
	z-index: 5;
}
.pc_gnb_part > div {
	display: none;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #111;
}
.pc_gnb_part > div > ul {
	display: flex;
	gap: 0 40px;
	align-items: start;
}
.pc_gnb_part > div > ul li {
}
.pc_gnb_part > div > ul li a {
	color: #111;
	font-size: 15px;
	font-weight: 400;
	line-height: 100%;
	display: inline-block;
	padding: 20px 0;
}

/* 푸터 */
#footer {
	background-color: #111;
}
#footer .footer_container {
	max-width: 1328px;
	margin: 0 auto;
	padding: 40px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 0;
	text-align: right;
}
.footer_logo {
	width: 10%;
}
.footer_info {
	width: 90%;
}
.footer_info ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 24px;
}
.footer_info ul:last-child {
	margin-top: 8px;
}
.footer_info ul li {
	display: flex;
	align-items: center;
	font-family: "Noto Sans KR", sans-serif;
	gap: 0 8px;
}
.footer_info ul li span {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
}
.footer_info ul li em {
	color: #9a9a9a;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
}
.footer_m_info {
	display: none;
}
.copyright {
	width: 100%;
	color: #676767;
	text-align: right;
	font-family: "Noto Sans KR", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
}
/* 768px ~ 1320px */
@media (max-width: 1320px) {
	.container {
		padding: 80px 24px;
	}
	.top {
		font-size: 13px;
		padding: 7px 0;
	}
	.pc_br {
		display: none;
	}
	/* 헤더 */
	#header {
		position: fixed;
		left: 0;
		top: 32px;
		width: 100%;
		border: 0;
		background-color: transparent;
		z-index: 9999;
	}
	.header_container {
		width: 100%;
		max-width: 100%;
		height: 60px;
		padding: 0 24px;
		align-items: center;
	}
	.header_container .pc_logo {
		display: none;
	}
	.header_container .m_logo {
		display: block;
	}
	#header .gnb .main_gnb ul,
	#header .member {
		display: none;
	}
	/* 햄버거 메뉴 */
	#header .m_gnb {
		display: flex;
		width: 24px;
		height: 24px;
		align-items: center;
	}
	#header .m_gnb .ham_btn {
		width: 100%;
		padding: 0 2px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 8px 0;
		cursor: pointer;
		transition: transform 0.3s ease-in-out;
	}
	#header .m_gnb .ham_btn span {
		display: inline-block;
		width: 100%;
		height: 2px;
		transition: transform 0.3s ease-in-out;
		background-color: #000;
	}
	/* 햄버거 버튼 애니메이션 (X 모양) */
	#header .m_gnb .ham_btn.active span:nth-child(1) {
		transform: translateY(5px) rotate(45deg);
	}
	#header .m_gnb .ham_btn.active span:nth-child(2) {
		transform: translateY(-5px) rotate(-45deg);
	}

	.m_menu {
		display: none;
		position: fixed;
		left: 0;
		top: 32px;
		width: 100%;
		height: 100vh;
		background-color: #000;
		text-align: center;
		padding-top: 60px;
		z-index: 9998;
	}
	.m_menu.show {
		display: block;
	}
	.m_menu .m_member {
		padding: 0 20px;
		border-bottom: 1px solid #464646;
		border-top: 1px solid #464646;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.m_menu .m_member .left a {
		color: #ededed;
		font-size: 14px;
		font-weight: 600;
		line-height: 100%;
		letter-spacing: -2%;
		padding: 13px 0;
		display: inline-block;
	}
	.m_menu .m_member ul {
		display: flex;
		align-items: center;
	}
	.m_menu .m_member ul li a {
		display: inline-block;
		color: #828282;
		text-align: center;
		font-size: 13px;
		font-weight: 400;
		line-height: 100%;
		letter-spacing: -2%;
		display: inline-block;
		padding: 13px 10px;
		text-transform: uppercase;
	}
	.m_menu .m_member ul li a:last-child {
		padding-right: 0;
	}
	.m_menu .m_gnb {
		display: flex;

		border-bottom: 1px solid #464646;
	}
	.m_menu .m_gnb .m_gnb_all {
		border-right: 1px solid #464646;
	}
	.m_menu .m_gnb .m_gnb_all li a {
		display: inline-block;
		padding: 20px 24px;
		color: #828282;
		font-size: 14px;
		font-weight: 400;
		line-height: 100%;
		letter-spacing: -0.28px;
	}
	.m_menu .m_gnb .m_gnb_all li.active a {
		color: #ededed;
		font-weight: 600;
	}
	.m_menu .m_gnb_part {
		padding: 0 20px;
		text-align: left;
		flex: 1 0 0;
		min-height: 430px;
	}
	.m_menu .m_gnb_part h2 {
		margin-top: 12px;
		color: #828282;
		font-size: 12px;
		font-weight: 600;
		line-height: 100%;
		letter-spacing: -0.24px;
		padding: 4px 0 8px;
	}
	.m_menu .m_gnb_part ul li a {
		display: inline-block;
		padding: 11px 0;
		color: #fff;
		font-size: 14px;
		font-weight: 300;
		line-height: 100%;
		letter-spacing: -0.28px;
		width: 100%;
	}
	.m_menu .m_gnb_part h2:first-child {
		padding: 8px 0;
	}
	.m_menu p {
		text-align: center;
		margin-top: 36px;
		color: #5f5f5f;
		text-align: center;
		font-size: 12px;
		font-weight: 400;
		line-height: 100%;
	}
	/* 푸터 */
	#footer {
		background-color: #111;
	}
	#footer .footer_container {
		width: 100%;
		padding: 40px 24px;
	}
	.footer_logo {
		width: 132px;
	}
	.footer_info {
		width: calc(100% - 132px);
	}
}
/* 모바일 ~ 768px */
@media (max-width: 768px) {
	.container {
		padding: 40px 20px;
	}
	.m_br {
		display: block;
	}
	/* 헤더 */
	.header_container {
		padding: 0 20px;
	}
	/* 푸터 */
	#footer {
		background-color: #111;
	}
	#footer .footer_container {
		padding: 32px 20px;
	}
	.footer_logo {
		width: 90px;
	}
	.footer_info {
		display: none;
	}
	.footer_m_info {
		display: flex;
		width: 100%;
		flex-wrap: wrap;
		gap: 8px 0;
	}
	.footer_m_info > ul {
		width: 100%;
		text-align: left;
		display: flex;
	}
	.footer_m_info > ul li {
		display: flex;
		width: auto;
	}
	.footer_m_info > ul li span {
		display: inline-block;
		margin-right: 8px;
		color: #fff;
		font-family: "Noto Sans KR";
		font-size: 12px;
		font-weight: 400;
		line-height: 100%; /* 12px */
	}
	.footer_m_info > ul li em {
		color: #9a9a9a;
		font-family: "Noto Sans KR";
		font-size: 12px;
		font-weight: 400;
		line-height: 100%; /* 12px */
		margin-right: 8px;
	}
	.copyright {
		text-align: left;
	}
}
