header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: var(--primary);
	z-index: 999;
}
.header-wrap {
	width: calc(100% - 46px);
	margin: 0 23px;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	width: 190px;
	height: 32px;
	background-image: url(/images/common/logo_kukbo.png);
	background-size: 100%;
}
.header-hamberger {
	display: block;
	height: 16px;
	width: 20px;
	background-repeat: no-repeat;
	background-image: url(/images/common/icon_hamberger.svg);
	background-size: cover;
	margin-top: 2px;
}
.gnb-close {
	background-image: url(/images/common/icon_mobile_close.svg);
	background-size: 200% 200%;
	background-position: center;
}
.gnb-modal {
	position: fixed;
	top: 60px;
	right: 0;
	width: 100%;
	height: 0;
	z-index: 9999;
	overflow-x: hidden;
	overflow-y: scroll;
	transition: 0.5s;
}
.gnb-modal.gnb-opened {
	height: calc(100vh - 60px);
}
/* .gnb-modal.gnb-opened::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	pointer-events: none;
} */
.mobile-gnb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	height: auto;
	background: var(--primary);
	padding: 60px 30px;
	border-top: 1px solid var(--pri-white);
}
/* .mobile-gnb {
	position: absolute;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	background: var(--primary);
	padding: 40px 30px;
	transition: 0.5s;
} */
/* .gnb-opened .mobile-gnb {
	animation: ani-gnb-open 0.7s 0.1s;
}
@keyframes ani-gnb-open {
	0% {
		right: -300px;
	}
	100% {
		right: 0;
	}
} */
/* .gnb-close {
	position: absolute;
	top: 50px;
	left: 247px;
	width: 22px;
	height: 22px;
	background-image: url(/images/common/icon_mobile_close.svg);
	background-size: cover;
} */

.lang {
	width: 100%;
	height: auto;
}
.lang input {
	display: none;
}
.lang__item--now {
	position: relative;
	display: inline-block;
	height: 45px;
	padding-top: 10px;
	padding-left: 30px;
	padding-right: 30px;

	color: var(--pri-white);
	font-size: var(--font-size-body1);
	font-weight: 400;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
.lang__item--now::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	left: 0;
	width: 13px;
	height: 10px;
	background-image: url(/images/common/icon_arrow.svg);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	transition: 0.3s;
}
.lang__item--now::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	background-image: url(/images/common/icon_globe.svg);
	background-size: cover;
}
#langToggle:checked + .lang__item--now::before {
	transform: translateY(-50%);
}
.lang__list {
	/* height: 130px; */
	height: 0;
	/* border-bottom: 1px solid var(--pri-white); */
	margin-bottom: 20px;
	overflow: hidden;
	transition: 0.3s;

	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.lang__item {
	height: 33%;
}
.lang__item a {
	padding-left: 30px;
	padding-right: 30px;
	width: auto;
	color: rgba(255, 255, 255, 0.7);
}

.mobile-nav {
	position: relative;
	height: auto;
}
.nav__item {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}

.nav__item a {
	color: var(--pri-white);
	font-size: var(--font-size-h5);
	font-weight: 500;
	line-height: var(--font-lh-h5);
	letter-spacing: var(--font-ls-h5);
}

/* .biz a {
	display: block;
	width: 71px;
} */
.nav__item:nth-last-child(1) > a {
	position: relative;
	display: block;
	width: 71px;
}
.nav__item:nth-last-child(1) > a::after {
	content: '';
	position: absolute;
	top: 52%;
	right: 0px;
	transform: translateY(-50%) rotate(180deg);
	height: 6px;
	width: 13px;
	background-image: url(/images/common/icon_arrow.svg);
	background-size: cover;
	transition: 0.3s;
}
.nav__item:nth-last-child(1) > a.arrow--active::after {
	transform: translateY(-50%) rotate(0);
}

.biz__nav {
	padding-top: 5px;
	overflow: hidden;
	height: 0;
	transition: 0.3s;
}
.biz__nav--active {
	height: 107px;
}
.biz__nav li {
	margin-top: 10px;
}
.biz__nav li a {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: -0.3px;
}
