﻿@charset "utf-8";

/*****************************************************
	Common
*****************************************************/

@media (min-width: 576px) {}
@media (min-width: 768px) {}
@media (min-width: 992px) {}
@media (min-width: 1200px) {}
@media (min-width: 1400px) {}

:root {
  --point-color-01: 0, 47, 146; /* #002f92; */
  --point-color-02: 81, 180, 255; /* #51b4ff; */
  --point-color-03: 255, 88, 34; /* #ff5822; */
}

html {
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

p {
	word-break: keep-all;
}

/* 레이아웃 */
.row {
	margin-right: -15px;
	margin-left: -15px;
}
.row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {    
	padding-right: 15px;
	padding-left: 15px;
}
.layout {
	display: flex;
	align-items: center;
}
.layout.between {
		justify-content: space-between;
}
.layout.half .ly-item {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.top-sub .container .row .col-12 {
	padding-left: 0;
	padding-right: 0;
}
@media (min-width: 576px){
	.top-sub .container .row .col-12 {
    padding-left: 15px;
    padding-right: 15px;
	}
}
@media (min-width: 1300px) {
	.container {
			max-width: 1230px;
	}
}

/* Carousel */
.carousel-box .prev-btn span,
.carousel-box .next-btn span {
	display: inline-block;
	text-indent: -5000em;
}
.owl-dots-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
}
.owl-carousel .owl-dots-wrapper .owl-dots {
	display: flex;
	align-items: center;
}
.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-right: 8px;
	border: none;
	border-radius: 50%;
	background-color: #9ca4af;
}
.owl-carousel .owl-dots .owl-dot.active {
	background-color: #354254;
}
.owl-carousel .play-pause-btn {
	color: white;
}

/* 기타 */
.multi-row-ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.mark {
	padding: 0;
	background-color: transparent;
}
.sec-header {
	position: relative;
}
.sec-header .more-link {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(0);
	display: inline-block;
	width: 50px;
	height: 50px;
	transition: 0.3s;
}
.sec-header .more-link::before,
.sec-header .more-link::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	background-color: rgb(var(--point-color-02));
}
.sec-header .more-link::before {
	width: 28px;
	height: 4px;
}
.sec-header .more-link::after {
	width: 4px;
	height: 28px;
}
.sec-header .more-link:hover,
.sec-header .more-link:focus {
	transform: translateY(-50%) rotate(90deg);
}

/*****************************************************
	Include
*****************************************************/

/***** Header *****/
/* top sub */
.top-sub {
	background-color: #f1f1f1;
}
.top-sub a {
	display: block;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	font-weight: 200;
	white-space: nowrap;
	color: #333;
}
.top-sub-layout {
	justify-content: space-between;
}
.top-sub-layout .ly-item:first-child a {	
	padding: 0 10px;
	/* border-right: 1px solid #d8d8d8; */
	text-align: center;
	transition: 0.3s;
}
.top-sub-layout .ly-item:first-child a:hover,
.top-sub-layout .ly-item:first-child a:focus {
	background-color: hsl(0, 0%, 90%);
}
/* .top-sub-layout .ly-item:first-child ul > li:first-child a {
	border-left: 1px solid #d8d8d8;
} */
.top-sub-layout ul {
	display: flex;
	margin: 0;
}
.top-sub-layout ul > li {
	position: relative;
	margin-right: 20px;
}
.top-sub-layout ul > li:last-child {
	margin-right: 0;
}
.top-sub-layout .ly-item:first-child ul > li {
	margin-right: 0;
}
.top-sub-layout .ly-item:last-child ul > li {
	position: relative;
}
/* .top-sub-layout .ly-item:last-child ul > li:not(:first-child):not(:last-child)::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -10.5px;
	transform: translateY(-50%);
	display: inline-block;
	width: 1px;
	height: 8px;
	background-color: #c1c1c1;
} */
.top-sub-layout .ly-item:last-child a:hover,
.top-sub-layout .ly-item:last-child a:focus {
	text-decoration: underline;
}
.top-sub-link-main,
.top-sub-link-login {
	/* padding-left: 20px; */
	background-repeat: no-repeat;
	background-position: center left;
}
/* .top-sub-link-main {
	background-image: url(/template/t001002/images/top-sub-icon01.png);
}
.top-sub-link-login {
	background-image: url(/template/t001002/images/top-sub-icon02.png);
} */
.top-sub-link-popup {
	padding-left: 10px;
	padding-right: 25px;
	background-color: #122d53;
	font-size: 13px;
	transition: 0.3s;
}
.top-sub-link-popup:hover,
.top-sub-link-popup:focus {
	background-color:	hsl(215, 64%, 10%);
}
.top-sub-link-popup::after {
	content: "\e5cf";
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-47%);
	font-family: "material-icons";
	font-size: 18px;	
}
.top-sub-link-popup.on::after {
	content: "\e5ce";
}
a.top-sub-link-popup {
	color: white;
}
@media (min-width: 480px) {
	.top-sub-layout .ly-item:first-child a {
		min-width: 90px;
	}
}

/* top main */
#header .top-main-layout > .ly-item {
	display: flex;
	height: 65px;
	align-items: center;
}
#header .site-logo {
	display: block;
	margin-right: 10px;
}
#header .site-logo {
	width: 128px;
	height: auto;
}
#header .site-title {
	display: flex;
	align-items: center;
	margin: 0;
}
#header .site-title .site-link {
	display: flex;
	align-items: center;
	margin: 0;
}

/* KYJ 20200917 */
#header .sub-site-title {
	font-size: 16px;
	font-weight: 500;
	color: #4c4c4c;
}

@media (min-width: 992px) {
	#header .sub-site-title {
		font-size: 20px;
	}
}
/* KYJ 20200917 end */

#header .top-main .header-bg,
#header .top-main .header-bg.on {
	display: none;
}
#header .nav-bg-fostrap {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	display: inline-block;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background-color: rgb(var(--point-color-01));
	vertical-align: baseline;
	cursor: pointer;
	transition: 0.3s;
}
#header .nav-bg-fostrap .navbar-fostrap {
	position: absolute;
	top: 50%;
	left: 50%;
	right: auto;
	bottom: auto;
	transform: translate(-50%, -50%);
	display: block;
	width: auto;
	height: auto;
	padding: 0;
	transition: 0.3s;
}
#header .nav-bg-fostrap .navbar-fostrap span {
	display: block;
	width: 18px;
	height: 2px;
	margin-bottom: 4px;
	background-color: #ffffff;
}
#header .nav-bg-fostrap .navbar-fostrap span:last-child {
	margin-bottom: 0;
}
@media (min-width: 1200px) {
	#header .top-main-layout > .ly-item {
		height: 80px;
	}
}
@media (min-width: 1200px) {
	#header .top-main {
		position: relative;
	}
	#header .top-main .header-bg {
		position: absolute;
		top: 80px;
		left: 50%;
		right: 50%;
		z-index: 10;
		display: none;
		width: 100vw;
		border-top: 1px solid #ccc;
		/* border-bottom: 3px solid #00b5ae; */
    margin-left: -50vw;
    margin-right: -50vw;
		background-color: #f9f9fa;
		box-shadow: 0 5px 7px -2px rgba(59, 56, 56, 0.35);
		overflow: hidden;
	}
	#header .top-main .header-bg.on {
		display: block;
	}
	#header .top-main .header-bg > .container,
	#header .top-main .header-bg > .container > .row,
	#header .top-main .header-bg > .container > .row > [class|="col"] {
		height: 100%;
	}
	#header .top-main .header-bg > .container > .row > [class|="col"] {
		-ms-flex: 0 0 325px;
		flex: 0 0 325px;
		max-width: 325px;
	}
	#header .top-main .header-bg .header-bg-deco {
		position: absolute;
		bottom: -80px;
		right: -15px;
		display: block;
		width: 231px;
		height: 243px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 200px auto;

	}
	#header .top-main .header-bg .header-bg-title {
		margin-top: 30px;		
		font-size: 32px;
		font-weight: 500;
		color: #1b2e49;
	}
	#header .top-main .header-bg .header-bg-tagline {
		font-size: 14px;
		color: #444;
		opacity: 0.65;
	}
	#header .top-main-layout > .ly-item:nth-child(3) {
		display: none;
	}
	#header .nav-bg-fostrap {
		display: none;
	}
}
@media (min-width: 1300px) {
	#header .top-main .header-bg > .container > .row > [class|="col"] {
		-ms-flex: 0 0 415px;
		flex: 0 0 415px;
		max-width: 415px;
	}
	#header .top-main .header-bg > .container > .row > [class|="col"]::after {
		background-size: 220px auto;
	}
}

#mask {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: none;
	background: rgba(0, 0, 0, 0.5);
}
.menubar-box {
	position: fixed;
	top: 0;
	right: -354px;
	z-index: 110;
	width: 300px;
	height: 100vh;
	max-width: 70vw;
	background-color: white;
	transition: right 0.3s;
}
.menubar-box.on {
	right: 0;
}
.menubar-title-box {
	position: relative;
	height: 54px;
	line-height: 54px;
}
.menubar-title {	
	padding-left: 20px;
	margin: 0;
	background-color: rgb(var(--point-color-01));	
	font-size: 24px;
	line-height: inherit;
	color: white;
}
.menubar-close {
	position: absolute;
	top: 0;
	left: -54px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 54px;
	height: 54px;
	text-align: center;
	background-color: #005087;	
	transition: 0.3s;
}
.menubar-close:hover,
.menubar-close:focus {
	background-color: hsl(204, 100%, 16%);
}
.menubar-close:hover,
.menubar-close:focus {
	color: white;
}
.menubar {
	list-style: none;
	display: block;
	height: 100%;
	margin: 0;
	overflow-y: auto;
}
.menubar [role="menuitem"] {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 30px;
}
.menubar > li > [role="menuitem"] {
	height: 60px;
	background-color: white;
	border-bottom: 1px solid #ddd;
	font-size: 20px;
	color: #666;
}
.menubar > li > [role="menuitem"].active {
	color: #04439b;
}
.menubar > li > [role="menuitem"]:hover {	
}
.menubar > li > [role="menuitem"][aria-expanded="true"] + .menubox {
	display: block;
	position: static;
	top: auto;
	left: auto;
	z-index: auto;
	width: 100%;
	height: auto;
}
.menubar > li > [role="menuitem"][aria-expanded="true"] + .menubox > .menubox-inner {
	opacity: 1;
}
.menubar .menubox-inner [role="menuitem"] {
	padding-right: 10px;
}

/* 2 depth menuitem */
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"] {
	display: block;
	height: 2.500rem;
	line-height: 2.500rem;
	font-size: 1rem;	
	color: #666;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"]:hover,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"]:focus {
	text-decoration: underline;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"].active {
	color: #0e3f71;
	text-decoration: none;
}
.menubar > li > [role="menuitem"][aria-haspopup="true"][aria-expanded="true"] + .menubox > .menubox-inner > [role="menu"] {
	display: block;
	background-color: #f3f3f5;
}

.menubar > li > [role="menuitem"][aria-haspopup="true"]::before,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::before,
.menubar > li > [role="menuitem"][aria-haspopup="true"]::after,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: inline-block;
	width: 16px;
	height: 2px;
	background-color: #666;
}
.menubar > li > [role="menuitem"][aria-haspopup="true"]::before,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::before {
	right: 20px;
	width: 16px;
	height: 2px;
}
.menubar > li > [role="menuitem"][aria-haspopup="true"]::after,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::after {
	right: 27px;
	width: 2px;
	height: 16px;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::before,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::after {
	background-color: #929292;
}
.menubar > li > [role="menuitem"][aria-haspopup="true"][aria-expanded="true"]::after,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"][aria-expanded="true"]::after {
	display: none;
}
/* 3 depth menu */
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] {
	list-style: none;
	display: none;
	padding: 10px 0;
	margin: 0;
	background-color: hsl(240, 9%, 90%);;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menu"]::after {
	content: "";
	clear: both;
	display: block;
}
/* 3 depth menu li */
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li {
	position: relative;
	padding: 0 0 0 10px;
	margin-bottom: 5px;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 18px;
	z-index: 1;
	display: inline-block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: #0e70b4;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li:last-child {
	margin-bottom: 0;
}
/* 2 depth menuitem 하위 메뉴 열림 */
.menubar .menubox-inner > [role="menu"] > li [role="menuitem"][aria-expanded="true"] + [role="menu"] {
	display: block;
	border-bottom: 1px solid #ddd;
}
/* 2 depth menuitem 하위 메뉴 닫힘 */
.menubar .menubox-inner > [role="menu"] > li [role="menuitem"][aria-expanded="false"] + [role="menu"] {
	display: none;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li > [role="menuitem"] {
	display: block;
	font-size: 15px;
	padding-top: 2px;
	padding-bottom: 2px;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li > [role="menuitem"]:hover,
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li > [role="menuitem"]:focus {
	background-color: #eaebef;
}

.menubar .menubox-inner > .menu-deco {  
	display: none;
}
.menubar .menubox-inner > [role="menu"] {
	display: none;
}
.menubar .menubox-inner > [role="menu"] > li [role="menuitem"][aria-expanded="false"] + [role="menu"] {
	display: none;
}
@media (min-width: 576px) {
	.menubar .menubox-dummy,
	.menubar .menubox-inner {
			max-width: 540px;
	}
}
@media (min-width: 768px) {
	.menubar .menubox-dummy,
	.menubar .menubox-inner {
			max-width: 720px
	}
}
@media (min-width: 992px) {
	.menubar .menubox-dummy,
	.menubar .menubox-inner {
			max-width: 960px
	}
}
@media (min-width: 1200px) {
	.menubar-box {
			position: static;
			top: auto;        
			right: auto;
			left: auto;
			z-index: 20;
			width: 100%;
			height: 100%;
			max-width: none;
			background-color: white;
			overflow: hidden;
			transition: right 0.3s;
	}
	.menubar .menubox {
			display: none;
	}
	.menubar > li > [role="menuitem"][aria-expanded="true"] + .menubox {
			display: none;
	}
	.menubar-title-box {
			display: none;
	}
	.menubar {
			display: flex;
			height: 100%;
	}
	.top-menu:hover .menubox {
		display: block;
		padding-top: 10px;
	}
	/* .menubar:hover .menubox {
		display: block;
	} */
	/* .menubar .menubox {
		display: block;
	} */
	.menubar > li {
			list-style: none;
			height: 80px;
	}
	.menubar > li:hover .menubox {
			display: block;
			background-color: transparent;
	}
	.menubar .menubox-inner [role="menuitem"] {
			padding-right: 0;
	}
	.menubar > li > [role="menuitem"] {
		justify-content: flex-start;
		height: 100%;
		padding-left: 20px;
		background-color: white;
		border-bottom: none;
		font-size: 18px;
		font-weight: 500;
		color: #111111;
	}
	.menubar > li > [role="menuitem"] .menuitem-title {
		position: relative;
		display: inline-block;
		padding: 5px;
	}
	.menubar > li > [role="menuitem"] .menuitem-title:hover,
	.menubar > li > [role="menuitem"] .menuitem-title:focus {
		color: #04439b;
	}
	.menubar > li > [role="menuitem"].active {
		background-color: white;
		color: #04439b;
	}
	.menubar > li > [role="menuitem"].active .menuitem-title::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -5px;
		display: inline-block;
		width: 100%;
		height: 4px;
		background-color: #003c8f;
	}
	.menubar > li > [role="menuitem"][aria-haspopup="false"]::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		transform: translateY(-50%);
		display: block;
		width: 12px;
		height: 12px;
		background: url(/common/images/external-link.png) no-repeat center;
	}	
	.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"] {
		font-size: 16px;
		color: #555;
		height: 40px;
		line-height: 40px;
	}
	.menubar > li > [role="menuitem"][aria-haspopup="true"]::before,
	.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::before,
	.menubar > li > [role="menuitem"][aria-haspopup="true"]::after,
	.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::after {
			display: none;
	}
	.menubar > li > [role="menuitem"] > .menuitem-text {
			position: relative;
			display: flex;
			align-items: center;
			justify-content: center;
			height: 100%;
	}
	.menubar > li > [role="menuitem"] > .menuitem-text::after {
			content: "";
			position: absolute;    
			left: 50%;
			bottom: 1.25rem;
			display: block;
			width: 0;
			height: 3px;
			background: #285fba;
			transition: all .3s ease;
	}
	.menubar > li:hover > [role="menuitem"] > .menuitem-text::after {
			left: 0;
			width: 100%;        
	}	
	.menubar .menubox {
			position: absolute;
			top: 80px;
			z-index: 10;
			width: auto;
			padding-left: 20px;
			padding-right: 20px;
			border-left: 1px solid #dcdcdc;
	}	
	.menubar .menubox.on {
			z-index: 101;
	}
	.menubar > li:last-child .menubox {
		border-right: 1px solid #dcdcdc;
	}
	.menubar .menubox-dummy,
	.menubar .menubox-inner {
			display: flex;
			/* max-width: 960px; */
			margin: 0 auto;
			position: relative;
			z-index: -1;
	}
	.menubar .menubox-dummy {
			position: absolute;
			top: 0;
			left: 50%;
			transform: translateX(-50%);
			width: 100%;
			height: 100%;
	}
	.menubar .menubox-dummy::before {
			content: "";
			position: absolute;
			top: 0;
			left: calc((100vw - 100%) / 2 * -1);
			display: block;
			width: calc((100vw - 100%) / 2);
			height: 100%;        
			background-color: #084879;
	}
	.menubar .menubox-dummy::after {
			content: "";
			position: absolute;
			top: 0;
			right: calc((100vw - 100%) / 2 * -1 + 9px);
			display: block;
			width: calc((100vw - 100%) / 2);
			height: 100%;        
			background-color: white;
	}
	.menubar .menubox.on .menubox-dummy,
	.menubar .menubox.on .menubox-inner {
			z-index: 1;
	}
	.menubar .menubox.on .menubox-inner {
			z-index: 2;
	}
	.menubar .menubox-dummy-1,
	.menubar .menubox-inner > .menu-deco {  
			flex: 0 0 25%;
			max-width: 25%;
			display: block;    
			background-color: #eaebef ;
	}  
	.menubar .menubox-dummy-1 {
			position: relative;
			z-index: 1;
			background-color: #eaebef;
	}
	.menubar .menubox-inner > .menu-deco {
			position: relative;
			padding: 40px 15px 15px;        
			background-color: #084879;
	}
	.menubar .menubox-inner > .menu-deco::before {
			content: "";
			position: absolute;
			bottom: 0;
			right: 0;
			z-index: 2;
			display: block;
			width: 421px;
			height: 322px;
			background: url(/site/resource/ansan/www/images/menu-bg.png) no-repeat center;
	}
	.menubar .menubox-inner .menu-deco-inner {
			position: relative;
			z-index: 3;
			margin-top: 30px;
	}
	.menubar .menubox-inner .menu-deco-inner::before {
			content: "";
			position: absolute;
			top: -15px;
			left: 0;
			display: block;
			width: 25px;
			height: 2px;
			background-color: white;
	}
	.menubar .menu-deco-title {
			margin-bottom: 10px;
			font-size: 27px;
			font-weight: 500;
			color: white;
	}
	.menubar .menu-deco-text {
			font-size: 16px;
			font-weight: 300;
			color: white;
			opacity: 0.5;
			line-height: 1.6;
	}  
	.menubar .menubox-dummy-2,
	.menubar .menubox-inner > [role="menu"] {
			list-style: none;
			display: flex;
			width: 100%;
			background-color: white;

			flex-direction: column;
	}
	.menubar .menubox-inner > [role="menu"] {
			background-color: transparent;
	}
	.menubar .menubox-inner > [role="menu"] > li {    
			list-style: none;
			margin-bottom: 10px;
	}
	.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"] {
		min-width: 160px;
		padding: 0;
		border: 1px solid #8a97aa;
		background-color: #edf1f7;
		color: #074375;
		white-space: nowrap;
		text-align: center;
	}
	.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"].active {
		background-color: #122d53;
		color: white;
	}
	.menubar .menubox-inner > [role="menu"] > li > [role="menu"] {
			display: block !important;
			padding: 10px 0;
			background-color: transparent;
	}
	.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li {
			width: 100%;    
			float: none;
			margin-bottom: 4px;
			padding: 0;
	}
	.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li::before {
			left: 8px;
	}
	.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li > [role="menuitem"].active {
			color: #285fba;
			text-decoration: underline;
	}
	.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li:nth-child(-n + 2) {
			margin-top: 0;
	}
	.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li:last-child {
			margin-bottom: 0;
	}
}
@media (min-width: 1200px) {
	.menubar .menubox::before {
			right: calc((100vw - 1140px) / 2 + 1140px + 20px - (1140px * 0.25));
	}
	.menubar [role="menuitem"] {        
			/* padding: 0 35px; */
			padding: 0;
			/* min-width: 160px; */
			min-width: 200px;
			justify-content: center;
	}
	.menubar .menubox-dummy,
	.menubar .menubox-inner {
			max-width: 1140px;
	}    
}
@media (min-width: 1300px) {
	.menubar .menubox::before {
			right: calc((100vw - 1200px) / 2 + 1200px + 20px - (1200px * 0.25));
	}	
	.menubar .menubox-dummy,
	.menubar .menubox-inner {
			max-width: 1200px;
	}
	.menubar .menubox-dummy-2,
	.menubar .menubox-inner > [role="menu"] {
			padding-right: 0;
	}
	.menubar .menubox-inner > .menu-deco {
			padding-left: 0;
	}
}

/***** Footer *****/
#footer {
	padding: 30px 0px;
	background-color: #f7f8f8;
}
#footer > .container > .row {
	flex-direction: column-reverse;
}
#footer .footer-layout-left {
	align-items: flex-start;
	justify-content: center;
	text-align: center;
}
#footer .footer-menu {
	display: block;
	margin-bottom: 20px;
}
#footer .footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
}
#footer .footer-menu ul > li {
	position: relative;
	list-style: none;
}
#footer .footer-menu ul > li > a {
	display: inline-block;
	font-size: 0.875rem;	
	color: #414145;
	padding-right: 12px;
}
#footer .footer-menu ul > li:first-child > a {
	color: rgb(var(--point-color-01));
	padding-left: 0;
}
#footer .footer-menu ul > li:last-child > a {
	padding-right: 0;
}
#footer .footer-menu ul > li > a:hover,
#footer .footer-menu ul > li > a:focus {
	text-decoration: underline;
}
#footer .footer-menu ul > li:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 5px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 10px;
	background-color: #a9adb9;
}
#footer address {
	margin-bottom: 8px;
}
#footer .address {
	font-size: 14px;
	margin-right: 10px;
	margin-bottom: 2px;
	color: #848484;
}
#footer .tel-fax,
#footer .tel-fax a {
	font-size: 14px;
	color: #848484;
}
#footer .copyright {
	display: block;
	font-size: 14px;
	color: #9d9d9d;
	text-transform: uppercase;
}
#footer .footer-layout-right {
	flex-wrap: wrap;
	justify-content: flex-end;
}
#footer .footer-layout-right > .ly-item {
	margin-bottom: 10px;
}
#footer .sns-list {
	display: flex;
	list-style: none;
	margin: 0;
}
#footer .sns-list > li {	
	margin-right: 8px;
}
#footer .footer-family-site {
	text-align: right;
}
#footer .footer-family-site button {	
	position: relative;
	display: block;
	min-width: 180px;
	padding: 0.5rem 0.75rem;
	border: 1px solid #e4e4e4;
	border-radius: 2px;
	background-color: white;
	font-size: 16px;
	color: #555;
	text-align: left;
}
.dropup .dropdown-toggle {
	position: relative;
}
.dropup .dropdown-toggle::after {	
	content: "\e316";
	font-family: "Material-Icons";
	position: absolute;
	top: 45%;
	right: 8px;
	transform: translateY(-50%);
	display: inline-block;
	width: 18px;
	height: 18px;	
	border: none;
	margin: 0;
	vertical-align: baseline;
	font-size: 18px;
}
@media (min-width: 380px) {
	#footer .footer-menu ul > li > a {		
		padding-right: 20px;
	}
	#footer .footer-menu ul > li:not(:last-child)::after {
    right: 9.5px;
	}
}
@media (min-width: 768px) {
	#footer .address,
	#footer .tel-fax {
		display: inline-block;
	}
}
@media (min-width: 992px) {
	#footer > .container > .row {
		flex-direction: row;
	}
	#footer .footer-layout-left {
		justify-content: flex-start;
		text-align: left;
	}
	#footer .footer-menu ul {
		justify-content: flex-start;
	}
	#footer address {
		margin-bottom: 5px;
	}
}

/* KYJ 20200917 : SNS show on mobile */
a[href^=tel] {
    text-decoration:inherit;
    color: inherit;
 }
#footer .footer-layout-right {
		justify-content: center;
		margin-bottom: 10px;
}
#footer .sns-list a {
    width: 32px;
    height: 32px;
    padding: 2px 0;
    text-align: center;
    display: block;
    transition: 0.2s;
    background: #555;
    border-radius: 300px;
}
#footer .sns-list a:hover, #footer .sns-list a:focus {
    background: #909090;
}

@media (min-width: 992px) {
    #footer .col-lg-3 {
        padding-top: 0;
    }
    
    #footer .footer-layout-right {
        justify-content: flex-end;
	}
}

/*****************************************************
	Main
*****************************************************/

/***** 섹션 공통 *****/

.sec-title-1 {
	margin-bottom: 20px;
	font-size: 21px;
	font-weight: 500;
	color: #122d53;
	text-align: center;
}
.sec-header .link-more {
	position: relative;
	display: inline-block;
	width: 25px;
	height: 25px;
	border: 1px solid #555;
	text-indent: -5000px;
}
.sec-header .link-more::before,
.sec-header .link-more::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #555;
}
.sec-header .link-more::before {
	width: 12px;
	height: 2px;
}
.sec-header .link-more::after {
	width: 2px;
	height: 12px;
}

/***** Main Visual *****/

#main-visual {
	position: relative;
	max-width: 2000px;
	margin: 0 auto;
}
.mv-box,
.mv-carousel-box .item {
	height: 280px;
}
.mv-box {
	position: relative;
}
.mv-carousel-box .item .item-img {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.mv-carousel-box .owl-dots-wrapper {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 0;
}
.mv-carousel-box .owl-carousel .owl-dots .owl-dot {
	width: 7px;
	height: 7px;
	background-color: #eef1f2;
}
.mv-carousel-box .owl-carousel .owl-dots .owl-dot.active {
	width: 10px;
	height: 10px;
	background-color: white;
}
.mv-text-box {
	position: absolute;
	top: 10%;
	left: 0;
	z-index: 1;
	width: 100%;
	text-align: center;
	padding: 15px;
}
.mv-title {
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: normal;
	color: #04439b
}
.mv-tagline {
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: #00285f;
}
.mv-txt-tit{
	color: #196fb2;
	background: rgba(255,255,255,0.7);
	border-radius: 10px;
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	margin-top: 20px;
	font-weight: bold;
}
.mv-quick-container {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.mv-quick-list {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	visibility: hidden;
}
.mv-quick-list.show {
	visibility: visible;
}
.mv-quick-list:not(.ordered) {
	display: none;
}
.mv-quick-list .item-text-box {
	font-size: 14px;
	color: #ebebeb;

	cursor: default;
}
.mv-quick-list > li {
	padding: 15px 10px;
	border-radius: 32px;
	text-align: center;
	background-color: rgba(18, 45, 83, 0.9);
}
.mv-quick-list > li:hover {
	background-color: rgba(18, 45, 83, 1);
}
.mv-quick-list > li:not(:last-child) {
	margin-right: 15px;
}
.mv-quick-list .sub-list > li {
	margin-bottom: 5px;
}
@media (min-width: 380px) {
	.mv-quick-list .item-text-box {
		font-size: 15px;
	}
	.mv-quick-list > li {
		padding: 15px 17px;
	}	
}
@media (min-width: 480px) {
	.mv-title {
		font-size: 22px;
	}
	.mv-quick-list .item-text-box {
		font-size: 16px;
	}
	.mv-quick-list > li {
		padding: 15px 25px;
	}
}
@media (min-width: 576px) {
	.mv-box,
	.mv-carousel-box .item {
		height: 300px;
	}
	.mv-title {
		font-size: 24px;
	}
	.mv-quick-list > li:not(:last-child) {
		margin-right: 20px;
	}
}
@media (min-width: 768px) {
	#main-visual {
		margin-bottom: 30px;
	}
	.mv-box,
	.mv-carousel-box .item {
		height: 320px;
	}
	.mv-title {
		font-size: 30px;
	}
	.mv-txt-tit{
		margin-top:40px;
		font-size:22px;
	}
	.mv-tagline {
		margin-bottom: 2px;
		font-size: 17px;
	}
	.mv-quick-container {
		top: 62%;
	}
	.mv-quick-list.ordered {
		display: none;
	}
	.mv-quick-list:not(.ordered) {
		display: flex;
	}
	.mv-quick-list > li {
		padding: 0;
    border-radius: 0;
    text-align: center;
    background-color: transparent;
	}	
	.mv-quick-list > li:hover {
		background-color: transparent;
	}
	.mv-quick-list > li:not(:last-child) {
		margin-right: 0;
	}
	.mv-quick-list .item-text-box {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}
	.mv-quick-list .sub-list {
		display: flex;
	}
	.mv-quick-list .sub-list > li {
		width: 110px;
		height: 130px;
		margin-right: 15px;
		border-radius: 40px;
		text-align: center;
		background-color: rgba(18, 45, 83, 0.9);
	}
	/*
	.mv-quick-list .sub-list > li:hover {
		background-color: rgba(18, 45, 83, 1);
	}
	*/
	.mv-quick-list .item-group:last-child .sub-list > li:last-child {
		margin-right: 0;
	}
	.mv-quick-list .sub-list > li .item-text {
		display: block;
	}
}
@media (min-width: 992px) {
	.mv-box,
	.mv-carousel-box .item {
		height: 360px;
	}
	.mv-title {
		font-size: 35px;
	}
	.mv-tagline {
		margin-bottom: 2px;
		font-size: 18px;
	}
	.mv-quick-list .sub-list > li {
		width: 120px;
		height: 140px;
		margin-right: 18px;
	}
}
@media (min-width: 1200px) {
	.mv-box,
	.mv-carousel-box .item {
		height: 400px;
	}
	.mv-title {
		font-size: 40px;
	}
	.mv-tagline {
		margin-bottom: 2px;
		font-size: 20px;
	}
	.mv-quick-list .sub-list > li {
		width: 130px;
		height: 150px;
	}
	.mv-carousel-box .owl-dots-wrapper {
		bottom: 20px;
	}
}
@media (min-width: 1300px) {
	.mv-quick-list .sub-list > li {
		width: 140px;
		height: 160px;
	}
}

/***** 배너, 게시판 *****/

@media (min-width: 768px) {
	.sec-box-banner-board {
		margin-bottom: 30px;
	}
}

/* 배너 */
.banner-board-container {
	max-width: none;	
}
.banner-board-container,
.banner-board-container > .row > [class|="col"] {
	padding: 0;
}
.banner-board-container > .row > [class|="col"].board-col {
	padding: 30px;
	background-color: #ebebeb;
}
.banner-board-container > .row {
	margin: 0;
	flex-flow: column-reverse;
}
.banner-carousel .owl-item img {
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}
.banner-carousel-box .owl-dots-wrapper {
	position: absolute;
	top: 30px;
	right: 20px;
	margin: 0;
}
.banner-carousel-box .owl-dots-wrapper .owl-dots {
	margin-bottom: -2.5px;
}
.banner-carousel .play-pause-btn {
	color: #354254;
}
.sec-board {
	background-color: white;
}
.sec-board .board-list {
	margin-bottom: 0;
}
@media (min-width: 512px) {
	.banner-carousel-box {
		width: 100%;
		margin: 0 auto;
	}
	.banner-carousel-box .owl-dots-wrapper {
		right: calc((100vw - 512px) / 2 + 20px);
	}	
}
@media (min-width: 576px) {
	.sec-board {
		max-width: 510px;
		margin: 0 auto;
	}
}
@media (min-width: 768px) {	
	.sec-board {
		max-width: none;
		margin: 0;
	}
	.banner-board-container {
		max-width: 720px;
	}
	.banner-board-container > .row {
		margin: 0 -15px;
		flex-wrap: nowrap;
		flex-flow: row;
	}
	.banner-board-container,
	.banner-board-container > .row > [class|="col"] {
		padding: 0 15px;
	}	
	.banner-board-container > .row > [class|="col"].board-col {
		padding: 0 15px;
		background-color: white;
	}
	.banner-carousel-box {
		width: 100%;
	}
	.banner-carousel-box .owl-dots-wrapper {
		right: 20px;
	}
}
@media (min-width: 992px) {
	.banner-board-container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.banner-board-container {
		max-width: 1140px;
	}
	.banner-board-container .banner-col {
		-ms-flex: 0 0 512px;
		flex: 0 0 512px;
		max-width: 512px;
	}
	.banner-board-container .board-col {
		-ms-flex: 1;
		flex: 1;
		max-width: none;
	}
}
@media (min-width: 1300px) {
	.banner-board-container {
		max-width: 1230px;
	}
}

/* 게시판 */
.board-tab-box {
	position: relative;
}
.board-tab-box .nav-tabs {
	align-items: flex-end;
	border: none;
	background-color: #ebebeb;
}
.board-tab-box .nav-tabs .nav-link {	
	padding: 20px 10px;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	margin-top: 0;
	background-color: rgb(var(--point-color-02));
	border-bottom-color: none;
	font-size: 15px;
	font-weight: 300;
	color: white;
	text-align: center;
}
.board-tab-box .nav-tabs .nav-link:hover,
.board-tab-box .nav-tabs .nav-link:focus {
	text-decoration: none;
	background-color: rgba(var(--point-color-02), 0.85);
}
.board-tab-box .nav-tabs .nav-link.active,
.board-tab-box .nav-tabs .nav-item.show .nav-link {
	padding-top: 25px;
	padding-bottom: 25px;
	border-color: transparent;
	background-color: rgb(var(--point-color-01));
	font-size: 18px;
	font-weight: 500;
	color: white;	
}
.board-tab-box .nav-tabs .nav-link.active:hover,
.board-tab-box .nav-tabs .nav-link.active:focus,
.board-tab-box .nav-tabs .nav-item.show .nav-link:hover,
.board-tab-box .nav-tabs .nav-item.show .nav-link:focus {
	background-color: rgba(var(--point-color-01), 0.85);
}
.board-tab-box .nav-tabs .nav-item {
	margin: 0 1px 0 0;
}
.board-tab-box .tab-pane {
	min-height: 292px;
	padding: 20px;
}
.board-tab-box .more-link {
	position: absolute;
	top: 19px;
	right: 0;
	display: inline-block;
	width: 50px;
	height: 50px;
	transform: rotate(0);
	transition: 0.3s;
}
.board-tab-box .more-link::before,
.board-tab-box .more-link::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	background-color: rgb(var(--point-color-02))
}
.board-tab-box .more-link::before {
	width: 28px;
	height: 4px;
}
.board-tab-box .more-link::after {
	width: 4px;
	height: 28px;
}
.board-tab-box .more-link:hover,
.board-tab-box .more-link:focus {
	transform: rotate(90deg);
}
.sec-board .board-list {
	list-style: none;
}
.sec-board .board-list li {
	position: relative;
	margin-bottom: 2px;
}
.sec-board .board-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;  
	padding: 6px 0;
	color: #555;
}
.sec-board .board-list a:hover,
.sec-board .board-list a:focus {
	text-decoration: underline;
}
.sec-board .board-list .board-title {
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 24px;
}
/* .sec-board .board-list > li.new .board-title::after {
	content: "N";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: inline-block;
	width: 20px;
	height: 20px;
	padding-right: 1px;
	line-height: 20px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 600;
	background-color: #00b1c3;
	color: white;
	text-align: center;
} */
.sec-board .board-list > li.mark .board-title {
	color: #2652ae;
}
.sec-board .board-list > li.file .board-title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: inline-block;
	width: 16px;
	height: 9px;
	background: url(/template/t001007/images/file.png) no-repeat center;
}
.sec-board .board-list .board-date {
	flex: 0 0 90px;
	max-width: 90px;
	margin-left: 20px;
	font-size: 15px;
	color: #777;
	text-align: right;
}
.board-no-data {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	font-size: 16px;
}
@media (min-width: 380px) {
	.board-tab-box .nav-tabs .nav-link {
		font-size: 16px;
	}
	.board-tab-box .nav-tabs .nav-link.active,
	.board-tab-box .nav-tabs .nav-item.show .nav-link {
		font-size: 19px;
	}
}
@media (min-width: 768px) {
	.board-tab-box .nav-tabs {
		background-color: transparent;
	}
	.board-tab-box .more-link {
		top: 13px;
	}
	.board-tab-box .nav-tabs .nav-link {	
		padding: 15px 10px;
		font-size: 15px;
	}
	.board-tab-box .nav-tabs .nav-link.active,
	.board-tab-box .nav-tabs .nav-item.show .nav-link {
		padding-top: 20px;
		padding-bottom: 20px;		
		font-size: 17px;
	}
	.board-tab-box .tab-pane {
		min-height: 190px;
		padding: 10px;
		box-shadow: 0 0 29px rgba(0, 0, 0, 0.06);
	}
	.sec-board .board-list > li:nth-last-child(-n + 2) {
		display: none;
	}
	.sec-board .board-list a {
		padding: 5px 0;
	}
}
@media (min-width: 992px) {
	.board-tab-box .nav-tabs .nav-link {	
		padding: 15px 10px;
	}
	.board-tab-box .nav-tabs .nav-link.active,
	.board-tab-box .nav-tabs .nav-item.show .nav-link {
		padding-top: 21px;
		padding-bottom: 21px;
		font-size: 18px;
	}
	.board-tab-box .tab-pane {
		min-height: 278px;
		padding: 20px;
	}
	.sec-board .board-list > li:nth-last-child(-n + 2) {
		display: block;
	}
}
@media (min-width: 1200px) {
	.board-tab-box .nav-tabs .nav-link {
		padding: 20px 10px;
		font-size: 16px;
	}
	.board-tab-box .nav-tabs .nav-link.active,
	.board-tab-box .nav-tabs .nav-item.show .nav-link {
		padding-top: 26px;
		padding-bottom: 26px;
		font-size: 19px;
	}
	.board-tab-box .tab-pane {
		min-height: 292px;
	}
	.sec-board .board-list a {
		padding: 6px 0;
	}
}

/***** 국제화 프로그램, 포토갤러리, AU 바로가기, 학과 홍보 *****/

.sec-box-etc {
	padding: 30px 15px;
}
.sec-box-etc > .container > .row > [class|="col"] {
	margin-bottom: 30px;
}
.sec-box-etc > .container > .row:last-child > [class|="col"]:last-child {
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.sec-box-etc {
		margin-bottom: 30px;
	}
}
@media (min-width: 992px) {
	.sec-box-etc > .container > .row:last-child {
		margin-top: -20px;
	}
}
@media (min-width: 1200px) {
	.sec-box-etc > .container > .row:last-child {
		margin-top: -10px;
	}
}
@media (min-width: 1300px) {
	.sec-box-etc > .container > .row:last-child {
		margin-top: -20px;
	}
}

/* 국제화 프로그램 */
.sec-global {
	position: relative;
	padding: 20px 30px;
	background: url(/template/t001007/images/main-global-bg01.png) no-repeat center / cover;
	box-shadow: 0 3px 5px rgba(56, 41, 41, 0.1);
}
.sec-global::before {
	content: "";
	position: absolute;
	bottom: -1px;
	right: -20px;
	display: block;
	width: 223px;
	height: 278px;
	background: url(/template/t001007/images/main-global-bg02.png) no-repeat right bottom;
	background-size: 180px auto; 
}
.sec-global .sec-header {
	position: relative;
	z-index: 1;
}
.sec-global .sec-body {
	position: relative;
}
.sec-global .global-list .sub-list > li {
	padding-left: 10px;
	margin-bottom: 10px;
	background: url(/template/t001007/images/bullet-triangle.png) no-repeat center left;color: #2f2e2e;
	white-space: nowrap;
}
@media (min-width: 480px) {
	.sec-global::before {
		background-size: 210px auto; 
	}
}
@media (min-width: 576px) {
	.sec-global::before {
		background-size: 223px auto; 
	}
}
@media (min-width: 768px) {
	.sec-box-etc {
		padding: 0;
	}
	.sec-global {
		position: relative;
		height: 100%;
		padding: 0;
		background: none;
		box-shadow: none;
	}
	.sec-global::before {
		z-index: 1;
		background-size: 180px auto;
	}	
	.sec-global .sec-body {
		padding: 20px 30px;
		background: url(/template/t001007/images/main-global-bg01.png) no-repeat center / cover;
		box-shadow: 0 3px 5px rgba(56, 41, 41, 0.1);
	}
	.sec-global .global-list > li {
		z-index: 1;
	}
}
@media (min-width: 992px) {
	.sec-global::before {
		right: 15px;
		bottom: 30px;
		background-size: 180px auto;
	}
	.sec-title-1 {
		text-align: left;
	}
	.sec-global .sec-body {
    padding: 0;
    background: none;
    box-shadow: none;
	}	
	.sec-global .global-list {
		padding-top: 30px;
		padding-bottom: 30px;
		margin: 0;
		background: url(/template/t001007/images/main-global-bg01.png) no-repeat center / cover;
	}
	.sec-global .global-list > li {
		position: relative;
		padding-top: 10px;
		padding-bottom: 40px;
		box-shadow: 0 5px 3px -2px rgba(56, 41, 41, 0.1);
	}
	.sec-global .global-list > li::before {
		content: "";
		position: absolute;
		bottom: -33px;
		left: 0;
		display: block;
		width: 101%;
		height: 27px;
		background-color: white;
	}
	.sec-global .global-list > li:nth-child(2)::after {
		content: "";
		position: absolute;
		top: -60px;
		left: 0;
		display: block;
		width: 100%;
		height: 30px;
		background-color: white;
	}	
	.sec-global .global-list > li:nth-child(2) {
		top: 30px;
	}
	.sec-global .global-list .sub-list {
		padding-left: 10px;
	}
	.sec-global .global-list .sub-list > li {
		font-size: 15px;
	}
}
@media (min-width: 1200px) {
	.sec-global::before {
		right: 30px;
		background-size: 190px auto;
	}
	.sec-global .global-list > li {
		padding-top: 10px;
		padding-bottom: 50px;
	}
	.sec-global .global-list .sub-list {
		padding-left: 15px;
	}
	.sec-global .global-list .sub-list > li {
		font-size: 16px;
	}
}
@media (min-width: 1300px) {
	.sec-global::before {
		right: 40px;
		background-size: 210px auto;
	}
	.sec-global .global-list > li {
		padding-top: 20px;
		padding-bottom: 60px;
	}
	.sec-global .global-list .sub-list {
		padding-left: 20px;
	}
}

/* 포토 갤러리 */
.photo-carousel .item {
	height: 180px;
}
.photo-carousel .owl-item .item-img {
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.photo-carousel-box .owl-dots-wrapper {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
}
.photo-carousel .owl-dots .owl-dot {
	background-color: white;
}
.photo-carousel .owl-dots .owl-dot.active {
	background-color: black;
}
@media (min-width: 380px) {
	.photo-carousel .item {
		height: 220px;
	}
}
@media (min-width: 480px) {
	.photo-carousel .item {
		height: 250px;
	}
}
@media (min-width: 576px) {
	.photo-carousel .item {
		height: 280px;
	}
}
@media (min-width: 768px) {
	.sec-photo {
		height: 100%;
	}	
}
@media (min-width: 992px) {
	.photo-carousel .item {
		height: 208px;
	}
}
@media (min-width: 1200px) {
	.photo-carousel .item {
		height: 218px;
	}
}
@media (min-width: 1200px) {
	.photo-carousel .item {
		height: 238px;
	}
}

/* AU 바로가기 */
.sec-quick .quick-link {
	position: relative;
	display: block;
	padding: 100px 10px 40px;
	color: white;
	text-align: center;
}
.sec-quick .quick-link img {
	position: absolute;
	top: 45px;
	left: 50%;
	transform: translateX(-50%);
}
.sec-quick .quick-link:hover img,
.sec-quick .quick-link:focus img {
	animation: buzz .75s linear 1;
}
@keyframes buzz {
  10%, 30% {
      left: calc(50% + 3px);
      -webkit-transform: translateX(-50%) rotate(2deg);
          -ms-transform: translateX(-50%) rotate(2deg);
              transform: translateX(-50%) rotate(2deg);
  }
  20%, 40% {
      left: calc(50% - 3px);
      -webkit-transform: translateX(-50%) rotate(-2deg);
          -ms-transform: translateX(-50%) rotate(-2deg);
              transform: translateX(-50%) rotate(-2deg);
  }
  50%, 70% {
      left: calc(50% + 2px);
      -webkit-transform: translateX(-50%) rotate(1deg);
          -ms-transform: translateX(-50%) rotate(1deg);
              transform: translateX(-50%) rotate(1deg);
  }
  60%, 80% {
      left: calc(50% - 2px);
      -webkit-transform: translateX(-50%) rotate(-1deg);
          -ms-transform: translateX(-50%) rotate(-1deg);
              transform: translateX(-50%) rotate(-1deg);
  }
  90% {
      left: calc(50% + 1px);
      -webkit-transform: translateX(-50%) rotate(0);
          -ms-transform: translateX(-50%) rotate(0);
              transform: translateX(-50%) rotate(0);
  }
  100% {
      left: calc(50% - 1px);
      -webkit-transform: translateX(-50%) rotate(0);
          -ms-transform: translateX(-50%) rotate(0);
              transform: translateX(-50%) rotate(0);
  }
}
.sec-quick .quick-row > [class|="col"]:nth-child(1) {
	background-color: rgb(var(--point-color-01));
}
.sec-quick .quick-row > [class|="col"]:nth-child(2) {
	background-color: rgb(var(--point-color-02));
}
.sec-quick .quick-row > [class|="col"]:nth-child(3) {
	background-color: rgb(var(--point-color-03));
}
.sec-quick .quick-row > [class|="col"]:nth-child(4) {
	background-color: rgb(var(--point-color-01));
}
@media (min-width: 768px) {
	.sec-quick .quick-link {
		display: block;
		padding: 90px 10px 30px;
		color: white;
		text-align: center;
	}
	.sec-quick .quick-link img {
		top: 37px;
	}
}
@media (min-width: 992px) {
	.sec-quick .quick-link {
		padding: 100px 10px 40px;
	}
	.sec-quick .quick-link img {
		top: 45px;
	}
	.sec-quick .quick-row > [class|="col"]:nth-child(2) {
		position: relative;
		top: 20px;
	}
	.sec-quick .quick-row > [class|="col"]:nth-child(4) {
		position: relative;
		top: 30px;
	}
}
@media (min-width: 1200px) {
	.sec-quick .quick-link {
		padding: 110px 10px 50px;
	}
	.sec-quick .quick-link img {
		top: 55px;
	}
}
@media (min-width: 1300px) {
	.sec-quick .quick-link {
		padding: 120px 10px 60px;
	}
	.sec-quick .quick-link img {
		top: 65px;
	}
}

/* 학과 홍보 */
.sec-pr .pr-box {
	position: relative;
	height: 250px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.sec-pr .pr-video-link {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 72px;
	height: 72px;
	background: url(/template/t001007/images/play-white.png) no-repeat center;
	border: 2px solid white;
	border-radius: 50%;
	text-indent: -5000px;
}
.sec-pr .pr-video-link:hover {
	animation: video-play-link-pulse 1.3s infinite;
}
@keyframes video-play-link-pulse {
  from {
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale3d(1.05, 1.05, 1.05);
    transform: translate(-50%, -50%) scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
  }
}
@media (min-width: 768px) {
	.sec-pr .pr-box {
		height: 284px;
	}
}
@media (min-width: 992px) {
	.sec-pr .pr-box {
		height: 192px;
	}
}
@media (min-width: 1200px) {
	.sec-pr .pr-box {
		height: 212px;
	}
}
@media (min-width: 1200px) {
	.sec-pr .pr-box {
		height: 232px;
	}
}

/*****************************************************
	Sub
*****************************************************/
.sub-container {
	margin-bottom: 2rem;
  margin-top: 1.5rem;
}

.sub-container #content {
	padding: 0;
	margin-bottom: 1.875rem;
}

.sub-top {
	display: none;
	height: 16rem;
	background-size: cover;
	background-position: center;
}

.cont-title {
	text-align: center;
	margin-bottom: 2.5rem;
}

.cont-title::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	width: 45px;
	height: 2px;
	background-color: rgb(var(--point-color-01));
}

.cont-title h2 {
	margin-right: 0;
	font-size: 1.750rem;
}

/* page-navi */
.page-navi {
	background-color: rgb(var(--point-color-01));
	z-index: 1;
}
.page-navi > .container {
	padding-right: 50px;
	padding-left:0;
}
.page-navi .navbar {
	padding: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.page-navi .navbar .navbar-nav {
	position: relative;
	display: inline-block;
	width: 100%;
}

.page-navi .navbar .navbar-nav > .nav-item {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-navi .navbar .navbar-nav>.nav-item.share {
	position: absolute;
	top: 50%;
	right: -40px;
	transform: translateY(-50%);
	flex: 0 1 auto;
	width: auto;
	border: none;
}
.page-navi .navbar .navbar-nav>.nav-item.share button {
	color: white;
}
.page-navi .navbar .navbar-nav>.nav-item.print {
	display: none;
}

.page-navi .navbar .navbar-nav > .nav-item .nav-link {
	color: #fdfdfd;
	padding: 0.8rem 2rem 0.8rem 0.9rem;
}

.page-navi .navbar .navbar-nav > .nav-item .nav-link:before {
	content: "\e5c5";
	color: white;
}

.page-navi .navbar .navbar-nav > .nav-item .nav-link:hover, .page-navi .navbar .navbar-nav > .nav-item .nav-link:focus {
	color: hsl(0, 0%, 85%);
	text-decoration: underline;
}

.page-navi .navbar .navbar-nav > .nav-item .dropdown-toggle::after {
	display: none;
}

.page-navi .navbar .navbar-nav > .nav-item .dropdown-menu {
	position: absolute;	
	width: 100%;
	min-width: auto;
	border-radius: 0;
	margin-top: 0;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}
.page-navi .navbar .navbar-nav > .nav-item.share .dropdown-menu {
	top: 36px;
	min-width: 10rem;
}
.page-navi .navbar .navbar-nav > .nav-item .dropdown-menu .dropdown-item.active {
	background-color: rgb(var(--point-color-01));
}

.page-navi .navbar .navbar-nav > .nav-item .dropdown-menu .dropdown-item:hover, .page-navi .navbar .navbar-nav > .nav-item .dropdown-menu .dropdown-item:focus {
	color: #1b2e49;
	background: #f3f3f3;
}

.page-navi .navbar .navbar-nav > .nav-item .dropdown-menu .dropdown-item.active:hover, .page-navi .navbar .navbar-nav > .nav-item .dropdown-menu .dropdown-item.active:focus {
	background-color: rgba(var(--point-color-01), 0.85);
}

.page-navi .navbar .navbar-nav>.nav-item .nav-link:before {
	top: 50%;
	transform: translateY(-50%);
}

.sub-top .sub-top-txt h2 {
	position: absolute;
	top: 10rem;
	color: #fff;
	letter-spacing: -0.05em;
	font-size: 1.5rem;
}
@media (min-width: 576px) {
	.page-navi > .container {
		padding-left:15px;
	}
}
@media (min-width: 992px) {
	.sub-container {
		margin-bottom: 4.5rem;
		margin-top: 3rem;
	}
	.cont-title {
		margin-bottom: 8.125rem;
	}
	.cont-title::after {
		bottom: -80px;
		width: 2px;
		height: 45px;
	}
	.sub-top {
			display: block;
			background-color: #ccc;
			padding-top: 35px;
			background-position: top center;
			background-repeat: no-repeat;
			position: relative;
			height: 13.75rem;
	}

	.sub-top .sub-top-txt {
			text-align: left;
			position: relative;
	}

	.sub-top .sub-top-txt h2 {
			display: inline-block;
			margin: 0;
			right: 0;
			padding: 0 15px;
			top: 4rem;
			color: #fff;
			text-align: left;
			transform: translate(0, -50%);
			position: absolute;
			width: 100%;
			font-size: 1.625rem;
			font-weight: 200;
	}
	.sub-top .sub-top-txt h2 b {
		font-size: 1.875rem;
		font-weight: 500;
	}

	.cont-title h2 {
		font-size: 2.5rem;
	}

	/* page-navi */
	.page-navi .navbar {
			border: none;
	}
	.page-navi .navbar .navbar-nav > .nav-item:nth-child(2n+1) {
			border-right: 1px solid rgba(255, 255, 255, 0.33);
	}
	.page-navi .navbar .navbar-nav > .nav-item {
			border-right: 1px solid rgba(255, 255, 255, 0.33);
	}
	.page-navi .navbar .navbar-nav > .nav-item:first-child {
			border-left: 1px solid rgba(255, 255, 255, 0.33);
	}
	.page-navi .navbar .navbar-nav>.nav-item.share {
		position: absolute;
		top: 0;
		right: 50px;
		transform: none;
		width: 50px;
		min-width: auto;
		border-left: 1px solid rgba(255, 255, 255, 0.2);
		border-right: 1px solid rgba(255, 255, 255, 0.2);
	}
	.page-navi .navbar .navbar-nav>.nav-item.print {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		min-width: auto;
		width: 50px;
		/* border-left: 1px solid rgba(255, 255, 255, 0.2); */
		border-left: none;
	}
	.page-navi .navbar .navbar-nav>.nav-item.share button,
	.page-navi .navbar .navbar-nav>.nav-item.print button {
		width: 50px;
		height: 50px;
		color: white;
	}
	.page-navi .navbar .navbar-nav > .nav-item.share .dropdown-menu {
		top: 100%;
	}
	.page-navi .navbar .navbar-nav > .nav-item.print .nav-link {
		overflow: hidden;
		text-overflow: clip;
	}
	.page-navi .navbar .navbar-nav > .nav-item.print .nav-link:before {
		display: none;
	}
}
@media (min-width: 1200px) {
	.cont-title h2 {
		font-size: 3.125rem;
	}
}

/***** Sub Left *****/
.sub-left .page-navi {
	background-color: #f4f4f4;
}
.sub-left .breadcrumb-list {
	list-style: none;
	display: flex;
	margin: 0;
	height: 65px;
}
.sub-left .breadcrumb-list > li {
	position: relative;
	display: flex;
	align-items: center;
	margin-right: 30px;
}
.sub-left .breadcrumb-list > li:not(:last-child)::after {
	content: "\e5cc";
	position: absolute;
	top: 50%;
	right: -25px;
	transform: translateY(-50%);
	display: inline-block;
	width: 20px;
	height: 20px;
	font-family: "Material-Icons";
	font-size: 18px;
	color: #878787;
}
.sub-left .breadcrumb-list a {
	font-weight: 200;
	color: #515151;
}
.sub-left .breadcrumb-list a:hover,
.sub-left .breadcrumb-list a:focus {
	text-decoration: underline;
}
.sub-left .breadcrumb-list .home {
	display: flex;
	align-items: center;
	justify-content: center;
}
.sub-left .breadcrumb-list .home::before {
	content: "\e88a";
	display: inline-block;
	margin-bottom: -2px;
	font-family: "Material-Icons";
	font-size: 20px;
	color: #c1c1c1;
}
.sub-left .breadcrumb-list .home:hover,
.sub-left .breadcrumb-list .home:focus {
	text-decoration: none;
}
.sub-left .breadcrumb-list .home:hover::before,
.sub-left .breadcrumb-list .home:focus::before {
	color: #797979;
	text-decoration: none;
}
.sub-left .page-navi-layout .print-btn {
	display: none;
}
.sub-left .page-navi-layout .print-btn::before {
	content: "\e8ad";
	display: inline-block;
	margin-bottom: -2px;
	font-family: "Material-Icons";
	font-size: 24px;
	color: #797979;
}
.sub-left .page-navi-layout .print-btn:hover::before {
	color: #575757;
}
.sub-left .cont-title {
	padding-top: 10px;
	margin-bottom: 30px;
}
.sub-left .cont-title::after {
	display: none;
}
.sub-left .cont-title h2 {
	font-size: 1.875rem;
	text-align: left;
}
@media (min-width: 576px) {
	.sub-left .cont-title h2 {
		font-size: 2.188rem;
	}
}
@media (min-width: 768px) {
	.sub-left .cont-title h2 {
		font-size: 2.5rem;
	}
}
@media (min-width: 992px) {	
	.sub-left .cont-title h2 {
		font-size: 2.813rem;
	}
	.sub-left .page-navi-layout .print-btn {
		display: block;
		width: 38px;
		height: 38px;
		border: 1px solid #d2d2d2;
		border-radius: 50%;
		text-align: center;
	}
}

/* snb */
.sub-container .snb {
	max-width: 280px;
	margin-bottom: 3.5rem;
	border-bottom: none;
}

.sub-container .snb-title {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 2.188rem 0;
	min-height: 9rem;
	text-align: center;
	background: #4e2b8b;
	color: #fff;
	font-size: 1.8rem;
}

.sub-container .snb-title > span {
	font-weight: 100;
}

.sub-container .snb .snb-list {
	margin: 0;
	/* border: 1px solid #f26506; */
	border: none;
}

.sub-container .snb .snb-list > li:first-child {
	border-top: 0;
}

.sub-container .snb .snb-list > li {
	background: none;
	border-top: 1px solid #4e2b8b;
	padding: 0;
	margin: 0;
}

.sub-container .snb .snb-list > li > a {
	position: relative;
	display: block;
	font-size: 1.125rem;
	padding: 1.063rem 1.75rem 1.063rem 1.25rem;
}

.sub-container .snb .snb-list > li.active > a {
	border-bottom: 2px solid #4e2b8b;
	background-color: #f9f9f9;
	color: #434343;
	font-size: 1.125rem;
	font-weight: 500;
}

.sub-container .snb .snb-list > li > a:hover, .sub-container .snb .snb-list > li > a:focus {
	color: #4e2b8b;
}

.sub-container .snb .snb-list > li.depth-block > a:after {
	content: '\e5cc';
	position: absolute;
	font-family: 'material-Icons';
	top: 0.9rem;
	right: 0.5rem;
	font-size: 1.3rem;
	color: #c2c2c3;
	font-weight: 600;
}

.sub-container .snb .snb-list > li.active.depth-block > a:after {
	content: '\e313';
	color: #4e2b8b;
	right: 0.8rem;
}

.sub-container .snb .snb-list > li > a:hover:after, .sub-container .snb .snb-list > li > ul > li > a:focus:after {
	color: #4e2b8b;
	font-weight: 600;
}

.sub-container .snb .snb-list > li.active > a:hover, .sub-container .snb .snb-list > li > ul > li.active > a:focus {
	color: #4e2b8b;
	text-decoration: underline;
}

.sub-container .snb .snb-list > li > ul {
	display: none;
	margin: 0;
	padding: 0;
}

.sub-container .snb .snb-list > li.active > ul {
	display: block;
	background: #fff;
}

.sub-container .snb .snb-list > li > ul > li {
	margin: 0.4rem 0;
	padding-left: 0;
	background: none;
}

.sub-container .snb .snb-list > li.active > ul > li {
	border-bottom: 1px solid #dedede;
}
.sub-container .snb .snb-list > li.active > ul > li:last-child {
	border-bottom: none;
}

.sub-container .snb .snb-list > li > ul > li > a {
	display: block;
	padding: 10px 5px 15px 20px;
	font-size: 1.125rem;
	font-weight: 500;
	color: #434343;
}

.sub-container .snb .snb-list > li > ul > li.active > a {
	color: #4e2b8b;
	font-weight: 600;
}

.sub-container .snb .snb-list > li > ul > li > a:hover, .sub-container .snb .snb-list > li > ul > li > a:focus {
	color: #4e2b8b;
	font-weight: 600;
}

.sub-container .snb .snb-list > li > ul > li.active > a:hover, .sub-container .snb .snb-list > li > ul > li.active > a:focus {
}

.sub-container .snb .snb-list > li > ul > li ul {
	display: none;
}
/* 접근성 코드 추가 250408 */
.modal .close {
  position: absolute;
  top: 16px;
  right: 15px;
  color: #FFF;
  opacity: 1;
}
