@charset "utf-8";

/* header, footer, subpage 공통 네비게이션 ui */

/* 로딩중 */
#loading {
	width: 100%; height: 100%;
	position: fixed; top: 0; bottom: 0;
	background: rgba(255,255,255,0.6);
	z-index: 1000;
}
#loading #loading_image{
	position: absolute; top: 50%; left: 50%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#loading #loading_image > img {
	width: 150px;
}
#loading #loading_image span {
	display: block;
	padding: 0px 5px;
	font-weight: bold; font-size: 1.2rem;
}

/* 브라우저 버전 알림 */
.lt-ie11 #browseralert {
	display: block;
}
#browseralert {
	display: none;
	position: fixed; z-index: 2000;
	padding: 10px;
	width: 100%; 
	color: #fff; font-size: 14px; line-height: 1.5em; vertical-align: middle; text-align:center; 
	background-color: #db4c3b;
}
#browseralert a {
	color: #f9c461;
}
.browseralert_close {
	display: inline-block; 
	margin-top: -2px; margin-left: 10px; 
	width: 13px; height: 13px; 
	font-family: sans-serif; line-height: 1.5em; vertical-align: middle; text-indent: -9999px; 
	background: url(../../images/client/common/btn_browseralert_close.png) no-repeat center; background-size: contain; 
	outline: none; border: none;
}


/* 에러페이지 */
.error_wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 20px 0;
	width: 100%; min-height: 100%; 
	justify-content: center; align-items: center;
	background-color: #f1f1f1;
}
.error_box {
	padding: 20px 280px 20px 20px;
	width: 720px; min-height: 200px;
	color: #727272; text-align: left; word-break: keep-all;
	background: url(../../images/client/common/bg_err.png) no-repeat right 40%; background-size: auto 200px;
}
.error_box strong {
	display: block;
	margin-bottom: 20px;
	font-size: 2.8rem; color: #464646;
}
.error_box p {
	margin-bottom: 20px;
	font-size: 1.7rem; line-height: 1.8em;
}
.error_box a {
	display: inline-block;
	padding: 10px 20px;
	font-size: 1.6rem; color: #fff;
	background: #727272;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

/* 바디 설정 */
body { overflow: visible; }
body.on { overflow: hidden; }

/* 페이지 전체 */
.page_wrap {
	position: relative;
	min-height: 100vh;
}
.page_wrap.subpage {
	background-color: #f9f9f9;
}

/* skip-nav */
.skip_nav a {
	position: absolute; top: -200px; left: 50%; z-index: 100;
	display: inline-block;
	padding: 1em 2em;
	color: #fff; font-size: 1.7rem; text-align: center;
	background-color: #034283;
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.4);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	outline: none;
}
.skip_nav a:focus {
	top: 0;
}


/* header */
.nav_wrap {
	position: relative;
}
.header_wrap {
	position: fixed; top: 0; z-index: 100;
	width: 100%;
}
.header_top {
	position: relative; z-index: 100;
	display: flex;
	margin-bottom: 10px; padding: 28px 0;
	height: 90px;
	justify-content: right; align-items: center;
}
.header_logo {
	position: absolute; top: 50%; left: 50%;
	width: 232px;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.header_logo a {
	display: block;
}
.header_logo img {
	display: block;
	width: 100%;
}
.function_left {
	position: absolute; top: 50%; left: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.user_info {
	display: inline-block;
	margin-left: 20px;
	padding-left: 30px;
	color: #9d1d40; 
	background: url(../../images/client/common/icon_userinfo.png) no-repeat;
}
.user_info strong {
	font-weight: 600; vertical-align: 0; color: #222;
}

.btn_msg {
	position: relative;
	display: inline-block;
	margin-left: 20px; margin-top: 3px;
	width: 18px; height: 24px;
	font-size: 0; line-height: 0; vertical-align: top;
	background: url(../../images/client/common/icon_message.png) no-repeat center; background-size: contain;
}
.btn_msg span {
	position: absolute; top: -3px; left: 12px;
	display: block;
	padding: 0 5px;
	min-width: 16px; max-width: 40px; height: 16px;
	color: #9d1d40; font-size: 1.1rem; line-height: 13px; font-weight: 500; text-align: center; white-space: nowrap; text-overflow: ellipsis;
	background: #fff;
	border: 1px solid #9d1d40;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	overflow: hidden;
}

.btn_admin {
	position: relative;
	display: inline-block;
	padding: 0 15px;
	color: #9d1d40; font-weight: 500; line-height: 28px;
	background-color: #fff;
	border: 1px solid #9d1d40;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
} 
.btn_log {
	display: inline-block;
	padding: 0 18px; 
	color: #9d1d40; font-size: 1.5rem; line-height: 28px; letter-spacing: -0.03em;
	background: #fff;
	border: 1px solid #9d1d40;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.btn_log::before {
	content: "";
	display: inline-block;
	margin-right: 8px; margin-top: 6px;
	width: 11px; height: 15px;
	vertical-align: top;
	background-repeat: no-repeat; background-position: center; 
}
.btn_login::before {
	background-image: url(../../images/client/common/icon_login.png);
}
.btn_logout::before {
	background-image: url(../../images/client/common/icon_logout.png);
}
.btn_menu {
	display: none;
}

.header_bottom {
	position: relative; z-index: 50;
	/*height: 120px;*/
	text-align: center;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.header_bottom .grid_content {
	position: relative;
	height: 100%;
	overflow: visible;
}
.gnb_wrap {
	height: auto;
}
.gnb_list {
	font-size: 0; line-height: 0; text-align: center;
}
.gnb_1depth {
	position: relative;
	display: inline-block;
	margin-right: 30px;
	padding-bottom: 29px;
	min-width: 110px;
}
.gnb_1depth > a {
	display: block;
}
.gnb_1depth > a > p { 
	position: relative;
	display: inline-block;
	letter-spacing: -0.03em; font-size: 1.6rem; color: #c2758a;
	line-height: 1em;
	font-family: TTTogether, sans-serif;
	-webkit-transform: rotate(-0.03deg);
	-moz-transform: rotate(-0.03deg);
	-o-transform: rotate(-0.03deg);
	transform: rotate(-0.03deg);
}
.gnb_1depth > a::before {
	content: "";
	display: block;
	margin: 0 auto 10px;
	width: 70px; height: 70px;
	background-color: #f0e3e6;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.gnb_1depth > a > p::after {
	position: absolute; left: 50%; right: 0; bottom: -6px; z-index: -1;
	content: "";
	width: 0; height: 14px;
	background-color: #c2758a;
	opacity: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.gnb_1depth.on > a { 
	text-shadow: -1.5px 0px 0px #fff, 1.5px 0px 0px #fff,0px -1.5px 0px #fff, 0px 1.5px 0px #fff
}
.gnb_1depth.on > a::before { 
	background-color: #c2758a;
	box-shadow: 7px 5px 6px 0px rgba(157, 29, 64, 0.2);
}
.gnb_1depth.on > a > p { 
	color: #9d1d40;
}
.gnb_1depth.on > a > p::after {
	width: 120%;
	opacity: 1;
}
.gnb_1depth:last-child {
	margin-right: 0;
}
.gnb01 > a::before {
	background-image: url(../../images/client/common/icon_gnb01.png);
}
.gnb02 > a::before {
	background-image: url(../../images/client/common/icon_gnb02.png);
}
.gnb03 > a::before {
	background-image: url(../../images/client/common/icon_gnb03.png);
}
.gnb04 > a::before {
	background-image: url(../../images/client/common/icon_gnb04.png);
}
.gnb05 > a::before {
	background-image: url(../../images/client/common/icon_gnb05.png);
}
.gnb06 > a::before {
	background-image: url(../../images/client/common/icon_gnb06.png);
}
.gnb07 > a::before {
	background-image: url(../../images/client/common/icon_gnb07.png); 
} 
.gnb_1depth a {
	display: block;
}
.gnb_2depth {
	position: absolute; top: 110px; left: 50%;
	display: none;
	margin-left: -95px;
	padding: 10px 0;
	width: 190px; height: auto;
	background-color: #fff; 
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 20px 8px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
}
.gnb_2depth > li {
	position: relative;
	border-left: 4px solid transparent;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.gnb_2depth a {
	position: relative;
	padding: 0 10px; 
	display: block;
	word-break: keep-all; letter-spacing: -0.05em;
	font-size: 1.6rem; line-height: 50px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.gnb_2depth a::after {
	content: "";
	display: inline-block;
	margin-left: 5px;
	width: 0; height: 11px; 
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.subpage .page_toparea {
	padding: 200px 0 70px;
	background: #fff5e2;
}
.subpage .subcontent_wrap {
	top: -72px;
	padding: 10px 20px;
	background-color: #fff;
	border: 1px solid #eaeaea;
	-webkit-border-radius: 0 0 20px 20px;
	-moz-border-radius: 0 0 20px 20px;
	border-radius: 0 0 20px 20px;
} 
.subpage_visual { 
	height: 175px; 
}
.subpage_visual .grid_content {
	display: flex;
	height: 100%;
	text-align: center; word-break: keep-all;
	align-items: center; justify-content: center;
    flex-direction: column;
	background-repeat: no-repeat;
	background-position: right bottom -60px;
}
.subpage_visual h2 {
	color: #fc8e83; font-size: 3.5rem;  
	font-family: TTTogether, sans-serif;
} 
.subpage_visual.visual1 .grid_content {
	background-image: url(../../images/client/common/bg_visual01.png);
}
.subpage_visual.visual2 .grid_content {
	background-image: url(../../images/client/common/bg_visual02.png);
}
.subpage_visual.visual3 .grid_content {
	background-image: url(../../images/client/common/bg_visual03.png);
}
.subpage_visual.visual4 .grid_content {
	background-image: url(../../images/client/common/bg_visual04.png);
}
.subpage_visual.visual5 .grid_content {
	background-image: url(../../images/client/common/bg_visual05.png);
}
.subpage_visual.visual6 .grid_content {
	background-image: url(../../images/client/common/bg_visual06.png);
}
.subpage_visual.visual7 .grid_content {
	background-image: url(../../images/client/common/bg_visual07.png);
}
.subpage_visual.visual8 .grid_content {
	background-image: url(../../images/client/common/bg_visual08.png);
}
.subpage_visual p {
	margin-top: 10px;
	font-size: 2rem; color: #999999;
}

/* 교수 : header */

.nav_wrap.prof .gnb_1depth > a::before {
	background-color: #ccd6ee;
}
.nav_wrap.prof .gnb_1depth > a > p::after {
	background-color: #5970ab;
}
.nav_wrap.prof .gnb03 > a::before {
	background-image: url(../../images/client/common/icon_prof_gnb03.png);
}
.nav_wrap.prof .gnb04 > a::before {
	background-image: url(../../images/client/common/icon_prof_gnb04.png);
}
.nav_wrap.prof .gnb_1depth.on > a::before {
	background-color: #5970ab;
	box-shadow: 7px 5px 6px 0px rgba(17, 38, 91, 0.2);
}
.nav_wrap.prof .gnb_1depth > a > p {
	color: #576faa;
}
.nav_wrap.prof .gnb_1depth.on > a > p {
	color: #11265b;
}

.nav_wrap.prof .btn_log {
	color: #11265b;
	border-color: #11265b;
}
.nav_wrap.prof .btn_login::before {
	background-image: url(../../images/client/common/icon_prof_login.png);
}
.nav_wrap.prof .btn_logout::before {
	background-image: url(../../images/client/common/icon_prof_logout.png);
}
.nav_wrap.prof .user_info {
	color: #11265b;
	background-image: url(../../images/client/common/icon_prof_userinfo.png);
} 
.nav_wrap.prof .btn_admin {
	color: #11265b;
	border-color: #11265b; 
}
.nav_wrap.prof .btn_sitemapmenu {
	background-image: url(../../images/client/common/btn_prof_sitemap.png);
}



/* lnb */
.lnb_wrap {
	position: relative; z-index: 10;
	width: 100%;
	font-size: 0; line-height: 0; 
}
.lnb_wrap .grid_content {
	position: relative;
	background-color: #fff;
	border: 1px solid #eaeaea;
	-webkit-border-radius: 20px 20px 0 0;
	-moz-border-radius: 20px 20px 0 0;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}
.lnb_wrap .lnb_list ul {
	margin: 10px 20px 0;
}
.lnb_1depth {
	position: relative;
	display: inline-block;
}
.lnb_1depth > a {
	position: relative;
	display: block;
	padding: 0 10px;
	min-width: 100px; height: 49px;
	color: #999999; font-size: 1.7rem; line-height: 49px; text-align: center; letter-spacing: -0.05em; 
	font-family: TTTogether, sans-serif;  
	-webkit-transform: rotate(-0.03deg);
	-moz-transform: rotate(-0.03deg);
	-o-transform: rotate(-0.03deg);
	transform: rotate(-0.03deg);
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
} 
.lnb_1depth > a::after {
	position: absolute; bottom: 0; left: 50%;
	content: "";
	display: block;
	width: 0%; height: 4px;
	background-color: #11265b;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.lnb_1depth.on > a {
	color: #11265b;    
}
.lnb_1depth.on > a::after {
	width: 100%;
}
.lnb_2depth {
	position: absolute; top: 49px; left: 0;
	display: none;
	width: 100%;
	background-color: #fff;
	border: 1px solid #d0d2d4;
}
.lnb_2depth li {
	border-bottom: 1px solid #ddd;
}
.lnb_2depth li:last-child {
	border-bottom: none;
}
.lnb_2depth a {
	display: block;
	padding: 14px 40px 14px 10px;
	font-size: 1.5rem; word-break: keep-all;
	color: #3b3b3b; line-height: 1.3em; 
	font-family: Paybooc, sans-serif; font-weight: 500;
	overflow: hidden;
	-webkit-transform: rotate(-0.03deg);
	-moz-transform: rotate(-0.03deg);
	-o-transform: rotate(-0.03deg);
	transform: rotate(-0.03deg);
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.lnb_more {
	float: right;
	margin-top: 14px; margin-left: 10px;
	width: 21px; height: 21px;
	font-size: 0; line-height: 0;
	background-image: url(../../images/client/common/icon_lnbmore.png);
	background-repeat: no-repeat;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.lnb_1depth.on .lnb_more {
	background-image: url(../../images/client/common/icon_lnbmore_on.png);
}

/* 교수 : lnb */
.prof .lnb_1depth > a::after {
	background-color: #9d1d40;
}
.prof .lnb_1depth.on > a {
	color: #9d1d40; 
}

/* footer */
.footer_wrap {
	background-color: #2b2b2b;
}
.footer_top {
	background-color: #676767; 
}
.footer_top .grid_content {
	padding: 10px 0 7px;
	font-size: 0; line-height: 0; text-align: right;
}
.footer_top li {
	position: relative;
	display: inline-block;
	margin-left: 30px;
	color: #fff; font-size: 1.5rem; line-height: 1.5em;
}
.footer_top li::after {
	position: absolute; right: -17px; top: 3px;
	content: "";
	display: inline-block;
	width: 1px; height: 15px;
	background: #fff; 
}
.footer_top li:last-child::after {
	display: none;
}
.footer_top a {
	display: block;
	font-size: 1.4rem;
} 
.footer_bottom .grid_content {
	position: relative;
	padding: 18px 55px 0 0;
	overflow: hidden;
}
.footer_logo {
	position: absolute; right: 0; top: 50%; 
	width: 204px; height: 210px; 
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.footer_logo img {
	width: 100%;
}
.footer_bottom strong {
	display: block;
	margin-bottom: 10px;
	font-weight: 600; color: #fff;
}
.footer_bottom ul {
	margin-bottom: 3px;
	font-size: 0; line-height: 0;
}
.footer_bottom li { 
	display: inline-block;
	margin-right: 10px;
	color: #fff; font-size: 1.5rem; 
	line-height: 1.4em;
}
.footer_bottom li:last-child {
	display: block;
	margin-right: 0;
} 
.footer_bottom .dot {
	position: relative;
}
.footer_bottom .dot::after {
	position: absolute; left: -5px; top: 10px;
	content: "";
	display: block;
	width: 2px; height: 2px;
	background-color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

/* 사이트맵 */
.btn_sitemapmenu {
	display: inline-block;
	margin-left: 30px;
	width: 20px; height: 13px;
	font-size: 0; line-height: 0; vertical-align: top;
	background: url(../../images/client/common/btn_sitemap.png) no-repeat center;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.sitemap {
	position: fixed; top: 0; left: 0; z-index: 100;
	width: 100%;
}
.sitemap.on::after {
	position: absolute; top: 0; left: 0;  z-index: -1;
	content: "";
	display: block;
	width: 100%; height: 100vh;
	background: rgba(0,0,0,0.5);
}
.sitemap > .inner {
	display: none;
	width: 100%;
	background: #9cb7d5;
}
.sitemap_top {
	height: 90px;  
}
.sitemap_top .grid_content {
	position: relative;
	height: 100%;
}
.sitemap_top strong {
	position: absolute; top: 50%;
	display: block;
	color: #fff; font-family: Paybooc, sans-serif; font-size: 2rem; font-weight: 800; letter-spacing: -0.03em;
	-webkit-transform: rotate(-0.03deg) translateY(-50%);
	-moz-transform: rotate(-0.03deg) translateY(-50%);
	-o-transform: rotate(-0.03deg) translateY(-50%);
	transform: rotate(-0.03deg) translateY(-50%);
}
.btn_sitemap {
	position: absolute; top: 50%; right: 0;
	display: block;
	margin-top: -17px;
	width: 34px; height: 34px;
	font-size: 0; line-height: 0;
	background: url(../../images/client/common/btn_sitemapclose.png) no-repeat center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.sitemap_bottom {
	min-height: 70vh;
	max-height: 90vh; 
	overflow-y: auto;
}
.sitemap_bottom .grid_content {
	display: flex;
	font-size: 0; line-height: 0;
}
.sitemap_bottom .gnb_2depth {
	position: static;
	display: inline-block;
	margin: 0 20px 100px 0;
	padding: 0;
	flex: 1;
	width: auto;
	font-size: 1.5rem; line-height: 1.5em; vertical-align: top;
	background: transparent;
	box-shadow: none;
}
.sitemap_bottom .gnb_2depth:last-child {
	margin-right: 0;
}
.sitemap_bottom .gnb_tit {
	display: block;
	margin-bottom: 25px; padding-top: 28px; padding-bottom: 10px;
	color: #fff; font-family: TTTogether, sans-serif; font-size: 2.6rem; letter-spacing: -0.03em;
	border-bottom: 2px solid #9cb7d5;
	-webkit-transition : 0.2s;
	-moz-transition : 0.2s;
	-o-transition : 0.2s;
	transition : 0.2s;
} 
.sitemap_bottom a {
	color: #fff; font-size: 1.6rem;
	line-height: 30px;
}
.sitemap_bottom .gnb_2depth > ul > li > a {
	padding: 0;
}
.sitemap_bottom .gnb_2depth > ul > li {
	margin-bottom: 10px;
}
.sitemap_bottom .gnb_2depth > ul > li:last-child {
	margin-bottom: 0;
}
.sitemap_bottom .gnb_3depth {
	position: static;
	display: block;
	padding: 0;
	background: transparent;
	box-shadow: none;
}
.sitemap_bottom .gnb_3depth > li {
	margin: 0; margin-bottom: 4px;
}
.sitemap_bottom .gnb_3depth > li:first-child {
	margin-top: 6px;
}
.sitemap_bottom .gnb_3depth > li:last-child {
	margin-bottom: 0;
}
.sitemap_bottom .gnb_3depth a {
	padding: 1px 3px 1px 10px;
}
.sitemap_bottom .gnb_3depth a::before {
	left: 0;
}

/* header 스크롤시 */
body.scrolly .header_wrap {
	position: fixed; top: -100px; left: 0; z-index: 15;
	width: 100%; 
	background: rgba(255,255,255,0.8);
	box-shadow: 0 5px 13px rgba(155, 109, 121, 0.25);
}
body.scrolly .header_logo {
	top: 120px; left: 0; z-index: 60;
	transform: none;
}
body.scrolly .gnb_wrap {
	height: 80px;
}
body.scrolly .gnb_list {
	/*display: inline-block;
	width: 90%;*/
	text-align: right;
}
body.scrolly .gnb_1depth {
	padding-bottom: 0;
	min-width: 100px;
}
body.scrolly .gnb_1depth:last-child {
	margin-right: 0;
}
body.scrolly .gnb_1depth.on::before {
	display: none;
}
body.scrolly .gnb_1depth > a {
	padding-bottom: 0;
	line-height: 80px; text-align: center;
}
body.scrolly .gnb_1depth > a > p {
	color: #000;
}
body.scrolly .gnb_1depth > a::before {
	display: none;
} 
body.scrolly .gnb_1depth > a > p::after {
	display: none;
}
body.scrolly .gnb_2depth {
	top: 80px;
	text-align: center;
}
body.scrolly .gnb_2depth::before {
	display: none;
}
/*body.scrolly .btn_sitemapmenu {
	position: relative; top: 50%;
	margin-top: -17px; margin-left: 0;
}*/

/* 교수 : header 스크롤시 */
body.scrolly .nav_wrap.prof .gnb_1depth > a > p {
	color: #000;
}
body.scrolly .nav_wrap.prof .gnb_1depth.on > a > p {
	color: #11265b;
}


/* 페이지 전체 영역 */
.contents_wrap {
	position: relative;
	overflow: hidden;
}

/* 서브페이지 전체 영역 */
.subcontent_wrap {
	/* overflow: hidden; */
	position: relative;
	padding-bottom: 3em;
}

/* 교외활동 내 그래프 */
.multigraph {
	width: 100%; height: 30px;
	font-size: 0; line-height: 0;
}
.multigraph p {
	display: inline-block;
	position: relative;
}

/* ui guide */
.ui_tit {
	padding: 8px 16px;
	font-size: 1.6rem;
	background: #f5e8ec;
}
.ui_stit {
	margin-bottom: 5px;
	font-size: 2rem;
}
.ui_box {
	padding: 10px;
	background: #fff;
	border: 1px solid #e7eff9;
}
.ui_section {
	margin-bottom: 30px;
}
.ui_colorbox {
	display: inline-block;
	width: 24px; height: 14px;
}

/* 스크롤 탑 */
.move_top {
	position: fixed; bottom: 50px; right: 3%; z-index: 1;
	display: block;
	width: 70px; height: 70px;
	font-size: 0; line-height: 0; 
	background: #fff url(../../images/client/common/btn_top.png) no-repeat center;
	background-size: contain;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	opacity: 0;
}
.move_top.on {
	z-index: 50;
	opacity: 1;
}
body.on .move_top {
	display: none;
}
.move_top svg {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.move_top circle {
	stroke-dasharray: 214;
	stroke-dashoffset: 214;
}
.blind{overflow: hidden !important; position: absolute !important; width: 1px !important; height: 1px !important; margin: 0 !important; padding: 0 !important; border: 0 !important; white-space: nowrap !important; transition: none !important;}



@media screen and (max-width:1279px) {
	
	/* header 1279 */
	.header_top {
		padding: 18px 0;
		height: 80px;
	}
	.header_logo {
		width: 204px;
	}
	.btn_sitemapmenu {
		margin-left: 25px;
	}

	/* header 스크롤시 1279 */
	body.scrolly .header_wrap {
		position: fixed; top: -80px; left: 0; z-index: 15;
		width: 100%; 
		background: rgba(255,255,255,0.8);
	}
	body.scrolly .gnb_wrap {
		height: 60px;
	}
	body.scrolly .header_logo {
		top: 100px;
		width: 180px;
	}
	body.scrolly .gnb_1depth {
		margin-right: 3%;
		min-width: 80px;
	}
	body.scrolly .gnb_1depth > a {
		line-height: 50px;
	}
	body.scrolly .gnb_1depth > a::after {
		bottom: 20px;
		height: 12px;
	}
	body.scrolly .gnb_2depth {
		top: 60px;
	}
	body.scrolly .gnb_1depth:last-child .gnb_2depth {
		margin-left: -100px;
	}
	
	/* subpage visual 1279 */  
	.subpage_visual {
		height: 165px;
	}
	.subpage_visual .grid_content {
		background-size: auto 200px; 
	} 
	.subpage_visual h2 {
		font-size: 3.2rem;
	}
	.subpage_visual p {
		font-size: 1.8rem;
	}

	/* lnb 1279 */  
	.lnb_wrap .lnb_list ul {
		margin: 0 20px;
	}
	.lnb_1depth > a {
		min-width: 70px;
		font-size: 1.6rem;
	}

	/* footer 1279 */
	.footer_bottom .grid_content {
		padding: 18px 0 0 0;
	}

	/* 사이트맵 1279 */
	.sitemap_top {
		height: 70px;
	}
	.sitemap_bottom .gnb_2depth {
		margin-right: 10px;
	}
	.sitemap_bottom .gnb_tit {
		margin-bottom: 15px;
		font-size: 2.1rem;
	}
	.sitemap_bottom a {
		font-size: 1.5rem;
	}

}

/*=================== hover ===================*/
@media screen and (min-width:1025px) {
	
	/* 에러페이지 hover */
	.error_box a:hover {
		background-color: #454545;
	}

	/* header hover */
	.btn_log:hover {
		box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.2);
	}
	.btn_admin:hover{
		box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.2);
	}

	.gnb_1depth:hover a::before {
		background-color: #c2758a;
	}
	.gnb_submenu > ul > li:hover {
		color: #fff;
		background: #cc687c url(../../images/client/common/bg_gnb_submenu.png) no-repeat right 10px bottom 10px;
	}
	.gnb_2depth > li:hover {
		background-color: #ebd2d9;
		border-color: #bb637b;
	}
	.gnb_2depth > li:hover > a {
		color: #9d1d40;
	}
	.gnb_2depth > li:hover .gnb_more {
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.gnb_3depth >li:hover a {
		color: #a72b43;
	}
	.gnb_3depth >li:hover a::before {
		background-color: #a72b43;
	}
	body.scrolly .gnb_1depth:hover > a > p {
		color: #9d1d40;
	}

	/* 교수 : header hover */ 
	.nav_wrap.prof .gnb_2depth > li:hover {
		background-color: #ccd6ee;
		border-color: #11265b; 
	}
	.nav_wrap.prof .gnb_2depth > li:hover > a { 
		color: #11265b;
	}
	
	/* lnb hover */
	.lnb_2depth a:hover {
		background: #faeded;
	}
	.lnb_1depth:hover > a {
		color: #11265b;   
	}
	.lnb_1depth:hover > a::after {
		width: 100%;
	}
	.lnb_1depth:hover .lnb_more {
		background-image: url(../../images/client/common/icon_lnbmore_on.png);
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	/* 교수 :  hover */
	.prof .lnb_1depth:hover > a {
		color: #9d1d40;   
	}

	/* 사이트맵 hover */ 
	.sitemap_bottom .gnb_2depth:hover .gnb_tit {
		color: #11265b;
		border-color: #11265b;
	}
	.sitemap .gnb_2depth a:hover {
		color: #11265b; font-weight: 500;
	}

	
	/* 스크롤 탑 hover */
	.move_top:hover {
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	}
	
}
/*=================== //hover ===================*/
@media screen and (max-width:1024px) {

	/* 페이지 전체 1024 */
	.page_wrap {
		padding-top: 65px;
	}
	
	/* header 1024 */
	.header_wrap {
		position: fixed; top: 0; z-index: 20;
		width: 100%;
		background: #fff;
		box-shadow: 0 5px 13px rgba(155, 109, 121, 0.25);
		
	}
	.user_info {
		display: none;
	}
	.header_top {
		margin-bottom: 0; padding: 0;
		height: 65px;
	}
	.header_logo {
		left: 0;
		width: 180px;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.user_info {
		display: none;
	}
	.btn_msg {
		margin-left: 0;
		margin-right: 20px;
	}
	.btn_admin {
		position: absolute; top: 0; right: 10px;
		padding: 0 0 0 23px;
		color: #fff; font-size: 1.3rem; line-height: 30px;
		background-color: transparent;
		background-image: url(../../images/client/common/icon_admin.png);
		background-repeat: no-repeat;
		background-position: left center;
		border: none;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		-webkit-transform: none;
		-moz-transform: none;
		-o-transform: none;
		transform: none;
	} 
	.btn_menu {
		position: absolute; top: 23px; right: 0; 
		display: block;
		width: 30px; height: 21px;
		font-size: 0; line-height: 0;
		background-color: rgba(0,0,0,0);
	}
	.btn_menu::after {
		content: "";
		display: block;
		clear: both;
	}
	.btn_menu span {
		float: right;
		display: block;
		width: 30px; height: 3px;
		margin-bottom: 6px;
		background-color: #9d1d40;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
	}
	.btn_menu span:nth-child(2)::before, .btn_menu span:nth-child(2)::after {
		content: "";
		position: absolute; top: 50%; left: 50%;
		display: block;
		margin-top: -1px; margin-left: -15px;
		width: 30px; height: 3px;
		background: #9d1d40;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
		-webkit-transition: 0.2s;
		-moz-transition: 0.2s;
		-o-transition: 0.2s;
		transition: 0.2s;
		opacity: 0;
	}
	.btn_menu.on {
		top: 23px;
		height: 24px;
	}
	.btn_menu.on span:first-child, .btn_menu.on span:last-child {
		display: none;
	}
	.btn_menu.on span:nth-child(2){
		width: 20px;
		background: rgba(0,0,0,0);
	}
	.btn_menu.on span:nth-child(2)::before {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 1;
	}
	.btn_menu.on span:nth-child(2)::after {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 1;
	}
	.function_left {
		position: absolute; left: inherit; right: 50px; z-index: 10;
		display: inline-block;
	}
	.btn_log {
		position: absolute; top: 0; left: 15px;
		margin: 0;
		padding: 0 0 0 30px;
		width: auto; height: auto;
		font-size: 1.3rem; color: #fff;
		background-color: transparent; background-repeat: no-repeat; 
		background-position: left center; 
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
	.btn_log::before {
		display: none;
	}
	.btn_log.btn_login {
		background-image: url(../../images/client/common/icon_login_mobile.png);
	}
	.btn_log.btn_logout {
		background-image: url(../../images/client/common/icon_logout_mobile.png);
	}
	.header_bottom {
		width: 100%;
		text-align: left;
		display: none;
	}
	.gnb_wrap {
		overflow-y: auto;
		-ms-overflow-style: none;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
	}
	.gnb_list {
		padding: 25px 15px;
		white-space: nowrap;
		background-color: #ebd2d9;
		border-top: 30px solid #9d1d40;
		overflow-x: auto; 
		box-shadow: inset 0 5px 13px rgba(157,29,64, 0.18);
	}
	.gnb_list::-webkit-scrollbar {
		display: none;
	}
	.gnb_1depth {
		position: static;
		margin-right: 40px;
		padding-bottom: 0;
		vertical-align: top;
		width: auto;
		min-width: auto;
	}
	.gnb_1depth > a {
		z-index: 5;
		font-size: 1.5rem;
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
	}
	.gnb_1depth > a::before {
		margin: 0 auto 15px;
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
	}
	.gnb_1depth > a::after {
		bottom: -4px;
		height: 8px;
	}
	.gnb_1depth.on > a > span { 
		text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	}
	.gnb_2depth {
		top: 180px; left: 0; z-index: -1;
		margin: 0;
		padding: 10px 0;
		width: 100%; height: calc( 100vh - 229px);
		background-image: none;
		text-align: left;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		box-shadow: none;
		overflow-y: auto;
	}
	.gnb_2depth::before {
		display: none;
	}
	.gnb_2depth a {
		padding: 5px 20px;
		line-height: 30px;
	}

	body.on .header_wrap::after {
		content: "";
		position: absolute; top: 70px; left: 0; 
		display: block;
		width: 100vw; height: calc( 100vh - 70px );
		background: rgba(0,0,0,0.3);
	}
	body.on .header_bottom {
		display: block;
	}

	/* 교수 : header 1024 */
	.nav_wrap.prof .gnb_list {
		background-color: #b4c0df;
		border-color: #11265b;
		box-shadow: inset 0 5px 13px rgba(17,38,91, 0.18);
	}
	.nav_wrap.prof .btn_menu span {
		background-color: #11265b;
	}
	.nav_wrap.prof .btn_menu.on span:nth-child(2) {
		background: rgba(0,0,0,0);
	}
	.nav_wrap.prof .btn_menu span:nth-child(2)::before, .nav_wrap.prof .btn_menu span:nth-child(2)::after { 
		background: #11265b;
	}
	.nav_wrap.prof .btn_log {
		color: #fff;
		border: none;
	}
	.nav_wrap.prof .btn_log.btn_login {
		background-image: url(../../images/client/common/icon_prof_login_mobile.png);
	}
	.nav_wrap.prof .btn_log.btn_logout {
		background-image: url(../../images/client/common/icon_prof_logout_mobile.png);
	}
	.nav_wrap.prof .btn_admin {
		color: #fff;
	}



	/* subpage 1024 */
	.subpage .page_toparea {
		padding: 0 0 70px;
	}
	.subpage .subcontent_wrap {
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}

	/* subpage visual 1024 */
	.subpage_visual .grid_content {
		padding: 0 160px;
		background-size: auto 150px;
		background-position: right bottom -20px;
	}
	.subpage_visual h2 {
		font-size: 2.8rem;
	}
	.subpage_visual p {
		margin-top: 5px;
		font-size: 1.6rem;
	}

	/* lnb 1024 */
	.lnb_wrap {
		display: none;
	}

	/*  footer 1024 */
	.footer_top .grid_content {
		padding: 5px 0 3px;
	}
	.footer_bottom strong {
		margin-bottom: 2px;
		font-size: 1.4rem;
	}
	.footer_bottom li {
		font-size: 1.4rem;
	}
	.footer_bottom .dot::after {
		left: -6px; top: 8px;
	}

	/* 사이트맵 1024 */
	.btn_sitemapmenu {
		display: none;
	}
	.sitemap {
		display: none;
	}
	.sitemap > .inner {
		display: none;
	}

}
@media screen and (max-width:768px) {

	/* 에러페이지 768 */
	.error_box {
		padding: 180px 20px 0 20px;
		width: auto;
		text-align: center;
		background-size: auto 160px; background-position: center top;
	}
	.error_box strong {
		margin-bottom: 10px;
		font-size: 2.4rem;
	}

	/* header 768 */ 
	.gnb_submenu > ul > li {
		font-size: 1.5rem;
	}

	/* subpage 768 */
	.subpage .subcontent_wrap {
		padding: 10px 15px;
	}

	/* subpage visual 768 */
	.subpage_visual {
		height: 150px;
	}
	.subpage_visual .grid_content { 
		padding: 0 120px 0 15px;
		align-items: flex-start;
		background-size: auto 110px;
		background-position: right bottom 10px;
	}
	.subpage_visual h2 {
		font-size: 2.6rem;
	} 
	.subpage_visual p {
		text-align: left;
	}

	/* footer 768 */
	.footer_logo {
		display: none;
	}
	.footer_bottom li {
		display: inline;
	}
}

@media screen and (max-width:480px) {
	
	/* header 480 */
	.gnb_wrap {
		width: 100%;
	}
	.header_logo {
		width: 160px;
	}

	/* subpage 480 */
	.subpage .subcontent_wrap {
		padding: 10px;
	}

	/* subpage visual 480 */
	.subpage_visual {
		height: 140px;
	}
	.subpage_visual .grid_content {
		padding: 0 100px 0 10px;
		background-size: auto 90px;
	}
	.subpage_visual h2 {
		font-size: 2.4rem;
	}
	.subpage_visual h2::after {
		font-size: 1.8rem;
	}
	.subpage_visual p {
		font-size: 1.5rem; line-height: 1.35em;
	}

	/* 스크롤 탑 480 */
	.move_top {
		bottom: 20px;
		width: 50px; height: 50px;
	} 
	.move_top circle {
		stroke-dasharray: 145;
		stroke-dashoffset: 145;
	}
	
}