@charset "UTF-8";


#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 1px 0 0 rgba(0, 0, 0, .1);
	padding-top: 36px;
    z-index: 100;
}
#header .header-wrap {
	position: relative;
}
#header .header-wrap a {
	display: block;
}

#header .header-wrap .main-header {
	justify-content: space-between;
	height: 92px;
}
.header-wrap .main-header .logo {
	width: 120px;
    height: 46px;
	position: relative;
}

.header-wrap .main-header .sc-nav {
	position: relative;
	z-index: 30;
}
.header-wrap .main-header .sc-nav::before {
	content: "";
    position: absolute;
	top: 59px;
    left: -716px;
    opacity: 1;
    visibility: hidden;
    width: 100vw;
    height: 320px;
    background-color: #fff;
	border-top: 1px solid #ccc;
	box-shadow: 0 1px 0 0 rgba(151, 151, 151, 0.1);
	transition: opacity 0.2s ease;
}
.header-wrap .main-header .sc-nav.block::before {
	opacity: 1;
	visibility: visible;
}
.header-wrap .main-header .gnb-list {
	gap: 104px;
	width: 100%;
}
.header-wrap .main-header .gnb-list .gnb-item {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    position: relative;
}
.header-wrap .main-header .gnb-list .gnb-menu {
	width: 70px;
}

/* 서브메뉴 */
.header-wrap .main-header .gnb-list .sub-box {
	width: 100%;
    height: 100%;
}
.header-wrap .main-header .gnb-list .sub-list {
	position: absolute;
    top: 210%;
	width: 140px;
	padding-top: 18px;
    z-index: 10;
}
.header-wrap .main-header .gnb-list .sub-item {
	color: #636363;
	font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    display: none;
	padding: 0 0 24px 0;
}
.header-wrap .main-header .gnb-list .sub-box.block .sub-item {
	display: block;
}
.header-wrap .main-header .gnb-list .sub-item:hover {
	color: #0072a8;
	font-weight: 600;
}

.header-wrap .main-header .btn-link::after {
	content: none;
}
.header-wrap .main-header .btn-link.btn-siteMap.mobile {
	display: none;
}

/* 상단 메뉴 */
#header .header-wrap .top-header {
	width: 100%;
    position: absolute;
    bottom: 100%;
    left: 0;
    box-shadow: 0 1px 0 0 rgb(0 114 166);
}
/* 상단 왼쪽 탭 */
.header-wrap .top-header .tap-box .tab {
    font-size: 14px;
	line-height: 18px;
	border: 1px solid #0072a6;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
    border-bottom: 0;
	padding: 8px 16px 9px;
}
.header-wrap .top-header .tap-box .tab.now {
	color: #fff;
	background-color: #0072a6;
}
/* 상단 오른쪽 홈, 로그인, 회원가입 */
.header-wrap .top-header .top-list {
    justify-content: flex-end;
    gap: 24px;
	padding: 10px 0;
}
.header-wrap .top-header .top-list .top-item {
	font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.06px;
    color: rgba(34, 34, 34, .8);
}
.header-wrap .top-header .top-list .top-item.edu {
	color: #1974a2;
	font-weight: 600;
}





