@charset "UTF-8";


#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.header-wrap .inner {
	margin-bottom: 16px;	
}
.header-wrap .group-flex {
	justify-content: space-between;
	height: 100%;	
}

/* 로고 */
.header-wrap .logo {
	width: 64px;
	height: 60px;
}
.header-wrap .logo a {
	width: 100%;
	height: 100%; 
}

.header-wrap .flex-right {
	display: flex;
	gap: calc(100vw*(32 / 767));
	justify-content: center;
	align-items: center;
}
/* 유튜브 */
.header-wrap .flex-right .youtube-box {
	width: 30px;
	height: 26px;
}
.header-wrap .flex-right .youtube-box a {
	position: relative;
}
.header-wrap .flex-right .youtube-box a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 26px; 
	background: url(/images/antiviral/sns-youtube.png) no-repeat center/100%;
}
/* 언어 선택 */
.header-wrap .flex-right .lang-box {
	gap: 20px;
}
.header-wrap .flex-right .lang-box a {
	text-transform: uppercase;
}
.header-wrap .flex-right .lang-box a.now {
	font-weight: bold;	
}
.header-wrap .flex-right .lang-box a.en {
	font-weight: normal;
	color: #a7a4a4;
}
/* 메뉴 버튼 */
.header-wrap .flex-right .btn-menu {
	width: 20px;
	height: 20px;
}
.header-wrap .flex-right .btn-menu.close {
	width: 26px;
}
.header-wrap .flex-right .btn-menu .menu-close {
	display: none;
}
.header-wrap .flex-right .btn-menu .menu-close.on {
	display: block;
}
.header-wrap .flex-right .btn-menu .menu-open.none{
	display: none;
}

/* 메뉴 */
.gnb-area {
	display: none; 
	position: fixed;
 	right: -100%;
	width: 100%;
	height: 100%;
	background-color: #fff;
    transition: 0.5s;
	overflow-y: scroll;
	padding: 24px 20px 136px;
	margin-top: 16px;
	z-index: 50;
}
.gnb-area.on {
	right: 0;
	border-top: 1px solid #ccc;
    visibility: visible;
    transition: all 0.5s ease;
}
nav .gnb-list .gnb-item {
	line-height: 20px;
	border-bottom: 1px solid #ccc;
	padding: 26px 5px;
}
nav .gnb-list .gnb-item:last-child {
	border-bottom: 0;
}
nav .gnb-list .gnb-menu {
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* 서브메뉴 */
nav .gnb-list .menu-list {
	display: none;
	font-size: 14px;
	padding: 24px 20px 0px;
    transition: 0.5s;
}
nav .gnb-list .menu-item {
	margin-bottom: 24px;
}
nav .gnb-list .menu-item:last-child {
	margin-bottom: 0;
}
nav .gnb-list .menu-item a {
	height: inherit;
}




