@charset "utf-8";

:root {
	/* main */
	--point-color-01: 255, 131, 48;	/* #FF8330 */
	--point-color-02: 246, 111, 8;	/* #F66F08 */
	--point-color-03: 255, 82, 4;	/* #FF5204 */

	/* point */
	--point-color-04: 180, 89, 14;	/* #B45918 */
	--point-color-05: 255, 180, 0;	/* #FFB400 */

	/* gray */
	--point-color-06: 239, 239, 239;	/* #EFEFEF */
	--point-color-07: 207, 209, 211;	/* #CFD1D3 */
}

/*****************************************************
	Common
*****************************************************/

@media (min-width: 576px) {}
@media (min-width: 768px) {}
@media (min-width: 992px) {}
@media (min-width: 1200px) {}
@media (min-width: 1400px) {}

body {
	color: #222;
}

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-carousel .owl-item img {
	max-width: 100%;
	width: auto;
}
.mv-dots-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
}
.mv-carousel .owl-dots-wrapper {
	position: absolute;
	bottom: 30px;
	left: calc(50% - 18px);
	transform: translateX(-50%);
	width: 120px;
    height: 30px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50px;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
	user-select: none;
	transition: all 0.3s ease-out;
}
.mv-carousel .owl-dots-wrapper.on {
	background-color: rgba(0,0,0,0.5);
}

.mv-carousel .owl-dots-wrapper .owl-dots {
	display: flex;
	counter-reset: slides-num;
	align-items: center;
}
.mv-carousel .owl-dots-wrapper .owl-dots::after {
	content: counter(slides-num);
	display: inline-block;
	font-size: 13px;
	vertical-align: middle;
	padding-left: 25px;
}
.mv-carousel .owl-dots-wrapper .owl-dots::before {
	content: '/';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 13px;
}
.mv-carousel .owl-dots .owl-dot {
	display: inline-block;
	counter-increment: slides-num;
	width: auto;
	height: auto;
	margin: 0;
	background-color: transparent;
}
.mv-carousel .owl-dots .owl-dot.active::before {
	content:  counter(slides-num);
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 3px;
}
.mv-carousel-box .carousel-btns {
	position: absolute;
	display: flex;
    justify-content: center;
    align-items: center;
    bottom: 30px;
    left: calc(50% - 18px);
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    z-index: 1;
	user-select: none;
}
.mv-carousel-box .prev-btn, 
.mv-carousel-box .next-btn {
	position: absolute;
	display: flex;
    justify-content: center;
    align-items: center;
	width: 13px;
	height: 13px;
	top: 50%;
	transform: translateY(-50%);
}
.mv-carousel-box .prev-btn::before,
.mv-carousel-box .next-btn::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
}
.mv-carousel-box .prev-btn::before {
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
}
.mv-carousel-box .next-btn::before {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.mv-carousel-box .prev-btn {
    left: 10px;
	padding-right: 0;
}
.mv-carousel-box .next-btn {
    right: 10px;
	padding-left: 0;
}
.mv-carousel-box .carousel-btns button {
	display: flex;
}
.mv-carousel .play-pause-btn {
	position: absolute;
	width: 30px;
	height: 30px;
	right: -36px;
	color: #FFF;
	background-color: rgba(0,0,0,0.3);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-out;
}
.mv-carousel .play-pause-btn:hover, .mv-carousel .play-pause-btn:focus {
	background-color: rgba(0,0,0,0.5);
}
.mv-carousel .play-pause-btn .material-icons {
	font-size: 0.875rem;
    line-height: 1;
    margin-left: 2px;
}

@keyframes quick-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);
    }
}

.dot-carousel .owl-dots-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px 1px 1px;
}
.dot-carousel.story-carousel .owl-dots-wrapper {
	margin-top: 5px;
}
.dot-carousel .owl-dots-wrapper .owl-dots {
	display: flex;
	align-items: center;
}
.dot-carousel .owl-dots .owl-dot {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-right: 8px;
	border: none;
	border-radius: 50%;
	background-color: #D1D1D1;
}
.dot-carousel .owl-dots .owl-dot.active {
	background-color: rgb(var(--point-color-01));
}
.dot-carousel .owl-dots .owl-dot:last-child {
	margin-right: 0;
}
/* .dot-carousel .play-pause-btn {
	display: none;
	color: hsl(0, 0%, 100%);
} */
.dot-carousel .play-pause-btn .material-icons {
	font-size: 0.875rem;
    line-height: 0.5;
    margin-left: 1px;
}

.dot-carousel.video-carousel .owl-dots-wrapper {
	justify-content: flex-start;
}
.dot-carousel .play-pause-btn {
	width: 25px;
    height: 25px;
    border-radius: 50%;
	color: #FFF;
    background-color: rgb(var(--point-color-01));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
}
.carousel-container {
	margin: 0 auto;
}
@media(min-width: 576px) {
	.carousel-container {
		max-width: 540px;
	}
}
@media(min-width: 768px) {
	.carousel-container {
		max-width: 720px;
	}
	.mv-carousel .owl-dots-wrapper {
		left: calc(50% - 25px);
		width: 160px;
		height: 40px;
	}
	.mv-carousel-box .carousel-btns {
		left: calc(50% - 25px);
		width: 160px;
		height: 40px;
	}
	.mv-carousel .owl-dots-wrapper .owl-dots::after {
		font-size: 16px;
	}
	.mv-carousel .owl-dots-wrapper .owl-dots::before {
		font-size: 16px;
	}
	.mv-carousel .owl-dots .owl-dot.active::before {
		font-size: 16px;
		margin-bottom: 1px;
	}
	.mv-carousel-box .prev-btn {
		left: 20px;
	}
	.mv-carousel-box .next-btn {
		right: 20px;
	}
	.mv-carousel .play-pause-btn {
		width: 40px;
		height: 40px;
		right: -50px;
	}
	.mv-carousel .play-pause-btn .material-icons {
		font-size: 1.125rem;
	}
}
@media(min-width: 992px) {
	.carousel-container {
		max-width: 960px;
	}
}
@media(min-width: 1200px) {
	.carousel-container {
		max-width: 1140px;
	}
}
@media(min-width: 1300px) {
	.carousel-container {
		max-width: 1230px;
	}
}

/* 기타 */
.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;
}

/*****************************************************
	Include
*****************************************************/

/* 헤더 */
/* logo */
#header .top-sub .top-sub-layout .ly-item:first-child {
	display: none;
}
#header .top-sub .top-sub-layout .ly-item:last-child > ul li:first-child {
	display: none;
}
#header .top-sub .site-title .site-logo {
	width: 150px;
	padding-right: 20px;
}
#header .top-sub .site-title .sub-site-title {
	padding-left: 20px;
}
#header .top-main .top-main-layout .ly-item:first-child {
	display: flex;
}
#header .top-main .site-title .site-logo {
	width: 38px;
	padding-right: 12px;
}
#header .top-main .site-title .sub-site-title {
	padding-left: 12px;
}
/* top sub */
#header .top-sub {
	background-color: hsl(0, 0%, 95%);
}
#header .top-sub-layout {
	justify-content: flex-end;
	padding: 0;
}
#header .top-sub a {
	display: block;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	white-space: nowrap;
	color: #333;
}
#header .top-sub-layout ul {
	display: flex;
	margin: 0;
}
#header .top-sub-layout ul > li {
	position: relative;
	padding: 0 12px;
}
#header .top-sub-layout ul > li:not(:last-child)::after {
	content: '';
	position: absolute;
	width: 1px;
	height: 15px;
	background-color: #555;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
#header .top-sub-layout ul > li:last-child {
	padding-right: 0;
}
#header .top-sub-link-main,
#header .top-sub-link-login {
	padding-left: 20px;
	background-repeat: no-repeat;
	background-position: center left;
}
#header .top-sub .top-sub-link-popup {
	position: relative;
	padding-right: 25px;
	font-size: 13px;
	transition: 0.3s;
	color: rgb(var(--point-color-03));
}
#header .top-sub .top-sub-link-popup::after {
	content: "\e5cf";
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-47%);
	font-family: "material-icons";
	font-size: 18px;	
}
#header .top-sub .top-sub-link-popup.on::after {
	content: "\e5ce";
}

/* top main */
#header {
	position: relative;
	z-index: 10;
	margin: 0 auto;
}
#header .top-main-layout > .ly-item {
	display: flex;
	height: 60px;
	align-items: center;
}
#header .site-title .site-link {
	display: flex;
	align-items: center;
	margin: 0;
}
#header .sub-site-title {
	font-size: 20px;
	font-weight: 700;
	color: #555;
	position: relative;
}
#header .sub-site-title::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 35px;
	background-color: #DCDCDC;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
#header .top-menu {
	position: relative;
}
#header .nav-bg-fostrap {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	display: inline-block;
	width: 36px;
	height: 36px;
	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: hsl(0, 0%, 100%);
}
#header .nav-bg-fostrap .navbar-fostrap span:last-child {
	margin-bottom: 0;
}
@media (min-width: 992px) {
	#header .top-sub .top-sub-layout .ly-item:first-child {
		display: flex;
	}
	#header .top-sub .top-sub-layout .ly-item:last-child > ul li:first-child {
		display: flex;
	}
	#header .top-main .top-main-layout .ly-item:first-child {
		display: none;
	}
	#header .top-sub {
		background-color: transparent;
	}
	#header .top-sub-layout {
		justify-content: space-between;
		padding: 15px 0;
	}
	#header .top-main {
		position: relative;
	}
	#header .top-main .header-bg {
		position: absolute;
		top: 60px;
		left: 0;
		z-index: 1;
		display: none;
		width: 100%;
		height: 60px;
		background-color: rgb(var(--point-color-06));
		box-shadow: 0 5px 7px -2px rgba(59, 56, 56, 0.35);
	}
	#header .top-main .header-bg.on {
		display: block;
	}
	#header .top-main-layout > .ly-item:last-child {
		display: none;
	}
	#header .nav-bg-fostrap {
		display: none;
	}
}

#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: -350px;
	z-index: 110;
	width: 300px;
	height: 100vh;
	max-width: 70vw;
	background-color: hsl(0, 0%, 100%);
	transition: right 0.3s;
}
.menubar-box.on {
	right: 0;
}
.menubar-box .ly-item-m {
	display: flex;
    flex-wrap: wrap;
    padding: 15px;
	margin: 0;
	background-color: #E6E6E6;
}
.menubar-box .ly-item-m li {
	position: relative;
	padding: 3px 15px;
}
.menubar-box .ly-item-m li:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background-color: #555;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.menubar-box .ly-item-m li:first-child {
	padding-left: 0;
}
.menubar-box .ly-item-m li:last-child {
	padding-right: 0;
}
.menubar-box .ly-item-m li a {
	font-size: 15px;
	color: #333;
}
.menubar-title-box {
	position: relative;
	height: 50px;
	line-height: 50px;
}
.menubar-title {
	padding-left: 20px;
	margin: 0;
	font-size: 18px;
	line-height: inherit;
	color: #FFF;
	background-color: rgb(var(--point-color-05));
}
.menubar-close {
	position: absolute;
	top: 0;
	left: -50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: hsl(0, 0%, 100%);
	width: 50px;
	height: 50px;
	text-align: center;
	background-color: rgb(var(--point-color-01));	
	transition: 0.3s;
}
.menubar-close:hover,
.menubar-close:focus {
	color: hsl(0, 0%, 100%);
	background-color: rgb(var(--point-color-02));	
}
.menubar {
	list-style: none;
	display: block;
	height: calc(100% - 50px);
	margin: 0;
	overflow-y: auto;
}
.menubar [role="menuitem"] {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 15px;
}
.menubar > li > [role="menuitem"] {
	height: 50px;
	background-color: hsl(0, 0%, 100%);
	border-bottom: 1px solid #ddd;
	font-size: 16px;
	font-weight: 600;
	color: #222;
}
.menubar > li > [role="menuitem"].active,
.menubar > li > [role="menuitem"]:hover {
	color: rgb(var(--point-color-02));
}
.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;
	line-height: 36px;
	font-size: 14px;	
	color: hsl(0, 0%, 40%);
}
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"]:hover,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"]:focus {
	text-decoration: underline;
}
.menubar > li > [role="menuitem"][aria-haspopup="true"][aria-expanded="true"] + .menubox > .menubox-inner > [role="menu"] {
	display: block;
	background-color: #F5F5F5;
	padding: 10px 0;
}

.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: hsl(0, 0%, 40%);
}
.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: hsl(0, 0%, 56%);
}
.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: rgb(var(--point-color-03));
}
.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: rgb(var(--point-color-06));
}
.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-box {
		position: static;
		top: auto;        
		right: auto;
		left: auto;
		z-index: 20;
		width: 100%;
		height: 100%;
		max-width: none;
		background-color: hsl(0, 0%, 100%);
		transition: right 0.3s;
	}
	.menubar-box .ly-item-m {
		display: none;
	}
	.menubar .menubox {
		display: none;
	}
	.menubar > li > [role="menuitem"][aria-expanded="true"] + .menubox {
		display: none;
	}
	.menubar-title-box {
		display: none;
	}
	.menubar {
		display: flex;
		height: 100%;
		overflow: visible;
	}  
	.menubar > li {
		position: relative;
		list-style: none;
		height: 60px;
		padding: 2px;
	}	
	.menubar > li .menubox.on {
		display: block;
	}
	.menubar .menubox-inner [role="menuitem"] {
		padding-right: 0;
	}
	.menubar > li > [role="menuitem"] {
		height: 100%;
		min-width: 115px;
		justify-content: center;
		background-color: hsl(0, 0%, 100%);
		border-bottom: none;
		font-size: 18px;
	}
	.menubar > li > [role="menuitem"].active {
		background-color: hsl(0, 0%, 100%);
	}
	.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 > 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: rgb(var(--point-color-04));
		transition: all .3s ease;
	}
	.menubar > li:hover > [role="menuitem"] > .menuitem-text::after {
		left: 0;
		width: 100%;        
	}	
	.menubar .menubox {
		position: absolute;
		top: 60px;
		z-index: 1;
		width: auto;
		min-width: calc(100% - 4px);
		/*
		padding: 10px 0 15px;
		*/
	}
	.menubar .menubox.on {
		z-index: 101;
		background-color: rgb(var(--point-color-01));
	}
	.menubar .menubox-inner {
		background-color: rgb(var(--point-color-01));
		padding: 10px 0 15px;
		box-shadow: 0 3px 6px rgba(0,0,0,0.3);
	}
	.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: rgb(var(--point-color-04));
	}
	.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: hsl(0, 0%, 100%);
	}
	.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: rgb(var(--point-color-06));
	}  
	.menubar .menubox-dummy-1 {
		position: relative;
		z-index: 1;
		background-color: rgb(var(--point-color-06));
	}
	.menubar .menubox-inner > .menu-deco {
		position: relative;
		padding: 40px 15px 15px;        
		background-color: rgb(var(--point-color-04));
	}
	.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: hsl(0, 0%, 100%);
	}
	.menubar .menu-deco-title {
		margin-bottom: 10px;
		font-size: 27px;
		font-weight: 500;
		color: hsl(0, 0%, 100%);
	}
	.menubar .menu-deco-text {
		font-size: 16px;
		font-weight: 300;
		color: hsl(0, 0%, 100%);
		opacity: 0.5;
		line-height: 1.6;
	}  
	.menubar .menubox-dummy-2,
	.menubar .menubox-inner > [role="menu"] {
		list-style: none;
		display: flex;
		flex-direction: column;
		width: 100%;
		background-color: hsl(0, 0%, 100%);
	}
	.menubar .menubox-inner > [role="menu"] {
		background-color: transparent;
	}
	.menubar .menubox-inner > [role="menu"] > li {    
		list-style: none;
	}
	.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"] {
		display: flex;
		align-items: center;
		justify-content: center;
		height: auto;
		line-height: normal;
		min-height: 45px;
		padding: 0 5px;
		font-size: 16px;
		color: #FFF;
		text-align: center;
		word-break: keep-all;
	}
	.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: rgb(var(--point-color-04));
		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 25px;
	}
	.menubar .menubox-dummy,
	.menubar .menubox-inner {
		max-width: 1140px;
	}
	.menubar > li > [role="menuitem"] {
		min-width: 140px;
		font-size: 20px;
	}
}
@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 {
	min-height: 160px;
	padding: 25px 0px;
	background-color: rgb(var(--point-color-06));
}
#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: 15px;
}
#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: #333;
	padding: 0 12px;
}
#footer .footer-menu ul > li:first-child > a {
	color: rgb(var(--point-color-03));
	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;
    width: 1px;
    height: 15px;
    background-color: #555;
    top: 50%;
    right: 0;
    transform: translateY(-40%);
}
#footer address {
	margin-bottom: 8px;
}
#footer .address {
	font-size: 14px;
	margin-bottom: 2px;
	color: hsl(0, 0%, 52%);
}
#footer .tel-fax,
#footer .tel-fax a {
	font-size: 14px;
	color: hsl(0, 0%, 52%);
}
#footer .tel-fax span {
	position: relative;
	padding: 0 8px;
}
#footer .tel-fax span.tel {
	padding-left: 0;
}
#footer .tel-fax span.fax {
	padding-right: 0;
}
#footer .tel-fax span:not(:last-child)::after {
	content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background-color: #8F8F8F;
    top: 50%;
    right: 0;
    transform: translateY(-40%);
}
#footer .copyright {
	display: block;
	font-size: 14px;
	color: hsl(0, 0%, 62%);
	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 .sns-list > li:last-child {
	margin-right: 0;
}
#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-radius: 2px;
	background-color: rgb(var(--point-color-07));
	font-size: 16px;
	color: hsl(0, 0%, 20%);
	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: 768px) {
	#footer .address,
	#footer .tel-fax {
		display: inline-block;
	}
	#footer .address {
		margin-right: 10px;
	}
}
@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: 0;
	}
}

/* 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-color: #999;
    border-radius: 300px;
}
#footer .sns-list a:hover, #footer .sns-list a:focus {
    background: hsl(0, 0%, 52%);
}

@media (min-width: 992px) {
    #footer .col-lg-3 {
        padding-top: 0;
    }
    
    #footer .footer-layout-right {
        justify-content: flex-end;
	}
}

/*****************************************************
	Main
*****************************************************/

/* 섹션 공통 */
.sec-title-0 {
	font-size: 22px;
	font-weight: 700;
}
.tit-info {
	display: block;
	font-size: 14px;
	font-weight: 400;
	margin: 6px 0 15px;
}
.sec-title-1 {
	font-size: 22px;
	font-weight: 700;
}
.sec-header .link-more {
	position: relative;
	display: inline-block;
	width: 22px;
	height: 22px;
	background-color: rgb(var(--point-color-01));
	text-indent: -5000px;
}
.sec-header .link-more span {
	position: absolute;
	top: 0;
    left: 0;
	width: 22px;
	height: 22px;
	transition: all 0.3s ease-out;
}
.sec-header .link-more span::before,
.sec-header .link-more span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #FFF;
}
.sec-header .link-more span::before {
	width: 12px;
	height: 2px;
}
.sec-header .link-more span::after {
	width: 2px;
	height: 12px;
}
.sec-header .link-more:hover span, .sec-header .link-more:focus span {
	transform: rotate(90deg);
}
.sec-header .link-more:focus {
	outline: 2px solid #333;
    border-radius: 2px;
}

@media(min-width: 992px) {
	.sec-title-0 {
		font-size: 40px;
		text-align: center;
	}
	.tit-info {
		text-align: center;
		font-size: 16px;
	}
	.sec-title-1 {
		font-size: 24px;
	}
}

/* 메인비주얼 */
#main-visual {
	margin: 0 auto;
	max-height: 640px;
}
.mv-box,
.mv-carousel-box .item {
	height: 180px;
}
.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-box-inner {
	position: absolute;
	top: 16%;
	left: 0;
	z-index: 1;
	width: 100%;
}
.mv-title-box {
	text-align: center;
}
.mv-title-box .mv-shadow {
	text-shadow: 3px 3px 6px rgb(0,0,0,0.3);
}
.mv-title-box .mv-title {
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -1px;
	color: #FFF;
}
.mv-title-box .mv-tagline {
	display: none;
}
.sec-sub-mv-quick {
	margin-bottom: 10px;
}
.sec-sub-mv-quick .mv-quick-link {
	display: block;
	height: 100%;
	padding: 10px 15px;
	background-color: rgb(var(--point-color-01));
	transition: 0.3s;
}
.sec-sub-mv-quick .mv-quick-link:hover {
	background-color: rgb(var(--point-color-01));
	color: hsl(0, 0%, 33%);
}
.sec-sub-mv-quick .sec-header {
	display: flex;	
	align-items: center;
}
.sec-sub-mv-quick .sec-title-2 {
	font-size: 16px;
	font-weight: 500;
	color: hsl(0, 0%, 20%);
}
.sec-sub-mv-quick .sec-header .mv-quick-icon-box {
	display: flex;
	align-items: center;
	height: 45px;
}
.sec-sub-mv-quick .sec-header img {
	width: 45px;
	margin-right: 10px;
}
.sec-sub-mv-quick .sec-body {
	display: none;
}

.sec-box-mv-quick {
	position: absolute;
	bottom: 50px;
	left: 0;
	z-index: 1;
	width: 100%;
}
@media (min-width: 480px) {
	.mv-quick-container > .row {
		margin-left: -7.5px;
		margin-right: -7.5px;
	}
	.mv-quick-container > .row > [class|="col"] {
		padding-left: 7.5px;
		padding-right: 7.5px;
	}
	.sec-sub-mv-quick .mv-quick-link {
		padding: 25px 10px;
	}
	.sec-sub-mv-quick .sec-header {
		flex-direction: column;
		height: auto;
	}
	.sec-sub-mv-quick .sec-header .mv-quick-icon-box {
		height: 68px;
		margin-bottom: 15px;
	}
	.sec-sub-mv-quick .sec-header img {
		width: auto;
		max-width: 100%;
		margin-right: 0;
	}
	.sec-sub-mv-quick .sec-title-2 {
		font-size: 18px;
	}
}
@media (min-width: 576px) {
	.mv-box,
	.mv-carousel-box .item {
		height: 240px;
	}
	.mv-title-box .mv-tagline {
		display: block;
		font-size: 16px;
		color: #FFF;
	}
	.sec-sub-mv-quick .mv-quick-link {
		padding: 30px 10px;
	}
	.sec-sub-mv-quick .sec-header .mv-quick-icon-box {
		margin-bottom: 15px;
	}	
	.sec-sub-mv-quick .sec-title-2 {
		font-size: 18px;
	}	
}
@media (min-width: 768px) {
	.mv-box,
	.mv-carousel-box .item {
		height: 300px;
	}
	.sec-sub-mv-quick .mv-quick-link {
		padding: 35px 15px;
	}
	.sec-sub-mv-quick .sec-header {
		margin-bottom: 15px;
	}
	.sec-sub-mv-quick .sec-title-2 {
		font-size: 19px;
	}
	.sec-sub-mv-quick .sec-body {
		display: block;
		text-align: center;
	}
	.sec-sub-mv-quick .mv-quick-link-deco {		
		display: inline-block;
		padding: 5px 40px;
		border: 1px solid rgba(0,0,0,0.2);
		font-size: 15px;
	}
}
@media (min-width: 992px) {
	.mv-box,
	.mv-carousel-box .item {
		height: 360px;
	}
	.sec-sub-mv-quick .mv-quick-link {
		padding: 40px 30px;
	}
	.sec-sub-mv-quick .sec-header {
		margin-bottom: 20px;
	}
	.sec-sub-mv-quick .sec-header .mv-quick-icon-box {
		margin-bottom: 20px;
	}
	.sec-sub-mv-quick .sec-title-2 {
		font-size: 21px;
	}
}
@media (min-width: 1200px) {
	.mv-box,
	.mv-carousel-box .item {
		height: 500px
	}
	.mv-title-box .mv-title {
		font-size: 55px;		
	}	
	.mv-title-box .mv-tagline {
		font-size: 18px;
		line-height: 28px;
	}
	.sec-sub-mv-quick .sec-header .mv-quick-icon-box {
		margin-bottom: 15px;
	}	
	.sec-sub-mv-quick .sec-title-2 {
		font-size: 23px;
	}
}
@media (min-width: 1300px) {
	.mv-box,
	.mv-carousel-box .item {
		height: 640px
	}
}

/* 퀵메뉴 */
.quick-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}
.quick-carousel .item a {
    position: relative;
    display: inline-block;
    width: 130px;
    height: 100px;
    padding-top: 75px;
    background-repeat: no-repeat;
    background-position: top 15px center;    
    text-align: center;
	color: #222;
	font-weight: 600;
}
.quick-carousel .item a:hover, .quick-carousel .item a:focus {
	text-decoration: underline;
}
.quick-carousel .item a:hover img,
.quick-carousel .item a:focus img {
    animation: quick-buzz .75s linear 1;
}
.quick-carousel.owl-drag .item img {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    max-width: 100%;
    width: auto;
}
.quick-carousel .owl-dots {
    display: none;
}
.quick-carousel-box {
	position: relative;
	margin: 0 50px;
}
.quick-carousel-box .carousel-btns {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 1;
}
.quick-carousel-box .prev-btn, 
.quick-carousel-box .next-btn {
	position: absolute;
	display: flex;
    justify-content: center;
    align-items: center;
	width: 30px;
	height: 30px;
	top: 50%;
	transform: translateY(-50%);
}
.quick-carousel-box .prev-btn::before,
.quick-carousel-box .next-btn::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	transform: rotate(45deg);
}
.quick-carousel-box .prev-btn::before {
	border-bottom: 2px solid #666;
	border-left: 2px solid #666;
}
.quick-carousel-box .next-btn::before {
	border-top: 2px solid #666;
	border-right: 2px solid #666;
}

.quick-carousel-box .prev-btn {
    left: -50px;
	padding-right: 0;
}
.quick-carousel-box .next-btn {
    right: -50px;
	padding-left: 0;
}
.quick-carousel-box .carousel-btns button {
	display: flex;
}
@media(min-width: 992px) {
	.sec-box-quick {
		padding: 15px 0;
		background-color: #F9F9F9;
	}
}

/* 공지 */
.sec-box-board {
	padding: 10px 0 0;
}
.sec-box-board [class*="board-"] {
	margin-bottom: 35px;
}
.sec-box-board .sec-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.sec-box-board .board-list {
	margin-bottom: 0;
}
.sec-box-board .board-list > li {
	position: relative;
	margin-bottom: 9px;
}
.sec-box-board .board-list > li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 3px;
	transform: translateY(-50%);
	display: inline-block;
	width: 3px;
	height: 3px;
	border-radius: 50px;
	background-color: rgb(var(--point-color-01));
}
.sec-box-board .item-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 17px;
}
.sec-box-board .item-link:hover,
.sec-box-board .item-link:focus {
	color: hsl(0, 0%, 20%);
	text-decoration: underline;
}
.sec-box-board .item-title {
	font-size: 16px;
	font-weight: 300;
	color: #222;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.sec-box-board .item-date {
	flex: 0 0 auto;
	margin-left: 10px;
	font-size: 16px;
	font-weight: 300;
	color: #AAA;
}
@media(min-width: 992px) {
	.sec-box-board {
		padding: 45px 0 70px;
	}
	.sec-box-board .board-01 {
		padding: 0 25px 0 0;
	}
	.sec-box-board .board-02 {
		padding: 0 0 0 25px;
	}
}

/* 학과소식 */
.sec-box-banner {
	padding: 40px 0 70px;
}
.banner-carousel .owl-stage-outer .owl-item a {
	display: flex;
    max-height: 500px;
    justify-content: center;
    align-items: center;
}
.banner-carousel .owl-stage-outer .owl-item a img {
	transition: all 0.3s ease-out;
}
.banner-carousel .owl-stage-outer .owl-item a:focus img {
	transform: scale(1.1);
}
@media(min-width: 576px) {
	.sec-box-banner {
		padding: 20px 0 150px;
	}
}

/* 이모저모 */
.sec-box-story {
	padding: 0 0 40px;
	overflow: hidden;
}
.story-carousel .owl-stage-outer .owl-item {
	margin-bottom: 10px;
}
.story-carousel .owl-stage-outer .owl-item a {
	display: flex;
	height: 250px;
	justify-content: center;
	align-items: center;
}
.story-carousel .owl-stage-outer .owl-item .story-info {
	width: 100%;
	padding: 20px;
    position: absolute;
    bottom: 0;
    background-color: #FFF;
}
.story-carousel .owl-stage-outer .owl-item.active .story-info {
	box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}
.story-carousel .owl-stage-outer .owl-item .story-info .tit {
	height: 40px;
    line-height: 20px;
	font-size: 16px;
	letter-spacing: -1px;
	color: #222;
	overflow: hidden;
    text-overflow: ellipsis;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.story-carousel .owl-stage-outer .owl-item .story-info .date {
	display: none;
}
@media(min-width: 576px) {
	.sec-box-story .story-carousel {
		max-width: 576px;
		margin: 0 auto;
	}
	.story-carousel .owl-stage-outer {
		overflow: visible;
	}
	.story-carousel .owl-stage-outer .owl-item {
		transform: scale(0.75);
		opacity: 0.4;
		transition: all 0.3s ease-out;
	}
	.story-carousel .owl-stage-outer .owl-item.active {
		transform: scale(1);
		opacity: 1;
	}
	.story-carousel .owl-stage-outer .owl-item a {
		height: 350px;
		border-radius: 15px;
		box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
	}
	.story-carousel .owl-stage-outer .owl-item .story-info {
		padding: 30px;
		border-radius: 0 0 15px 15px;
	}
	.story-carousel .owl-stage-outer .owl-item.active .story-info {
		box-shadow: none;
	}
	.story-carousel .owl-stage-outer .owl-item .story-info .tit {
		height: auto;
    	line-height: inherit;
		font-size: 18px;
	}
	.story-carousel .owl-stage-outer .owl-item .story-info .date {
		display: block;
		font-size: 15px;
		margin: 8px 0 0;
		color: #888;
	}
}
@media(min-width: 992px) {
	.sec-box-story {
		padding: 20px 0 70px;
	}
	.sec-box-story .story-carousel {
		max-width: 960px;
	}
	.story-carousel .owl-stage-outer .owl-item a {
		height: 500px;
	}
	.story-carousel .owl-stage-outer .owl-item .story-info .tit {
		font-size: 24px;
	}
	.story-carousel .owl-stage-outer .owl-item .story-info .date {
		font-size: 18px;
	}
}

/* 활동영상 */
.sec-box-video {
	padding: 20px 0 0;
	overflow: hidden;
}
.sec-box-video .video-carousel {
	max-width: 285px;
}
.video-container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
    align-items: center;
	padding: 20px 0;
}
.video-container::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #F8F8F8;
	top: 0;
	left: 0;
}
.video-container .tit {
	font-size: 20px;
	margin: 10px 0;
}
.video-container .classify {
	display: inline-block;
	padding: 2px 8px;
	font-size: 13px;
	border: 1px solid #222;
}
.video-container .txt {
	display: none;
}
.video-container .btn {
	color: #222;
	margin: 8px 0 36px;
	padding: 6px 18px;
	border: 1px solid #222;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
}
.video-container .btn:hover, .video-container .btn:focus {
	color: #fff;
	border-color: transparent;
	background-color: rgb(var(--point-color-04));
}
.video-container .video-carousel-wrapper {
    width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}
.video-carousel .owl-stage-outer {
	overflow: visible;
}
.video-carousel .owl-stage-outer .owl-item {
	opacity: 0.4;
	transition: all 0.3s ease-out;
}
.video-carousel .owl-stage-outer .owl-item.active {
	opacity: 1;
}
.video-carousel .owl-stage-outer .owl-item a {
	display: flex;
	height: 160px;
	border-radius: 5px;
	justify-content: center;
	align-items: center;
}
@media(min-width: 576px) {
	.sec-box-video .video-carousel {
		max-width: 520px;
	}
	.video-container .video-carousel-wrapper {
		max-width: 540px;
	}
	.video-carousel .owl-stage-outer .owl-item a {
		height: 300px;
		border-radius: 15px;
	}
}
@media(min-width: 768px) {
	.video-container .video-carousel-wrapper {
		max-width: 720px;
	}
}
@media(min-width: 992px) {
	.sec-box-video {
		padding:20px 0 70px
	}
	.video-container {
		height: 450px;
	}
	.video-container::before {
		width: 50%;
	}
	.video-container .tit {
		font-size: 32px;
	}
	.video-container .txt {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		height: 45px;
		margin-bottom: 60px;
	}
	.video-container .classify {
		padding: 5px 10px;
		font-size: 14px;
	}
	.video-container .btn {
		margin: 0;
		padding: 12px 50px;
		font-size: 16px;
	}
	.video-container .video-carousel-wrapper {
		position: absolute;
		top: 50%;
		left: 0;
		margin-left: 40%;
		padding: 0;
		overflow: hidden;
		transform: translateY(-50%);
		max-width: none;
	}
}
@media(min-width: 1200px) {
	.video-container .video-carousel-wrapper {
		margin-left: 35%;
	}
}
@media(min-width: 1800px) {
	.video-container .video-carousel-wrapper {
		margin-left: 40%;
	}
}
@media(min-width: 2800px) {
	.video-container .video-carousel-wrapper {
		margin-left: 45%;
	}
}

/* 교육안내 */
.sec-box-edu {
	padding: 40px 0;
}
.sec-box-edu .edu-link-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.sec-box-edu .edu-link-wrapper .edu-link-box {
	flex: 1 1 calc(50% - 10px);
}
.sec-box-edu .edu-link-wrapper .edu-link-box:first-child {
	flex: 1 1 100%;
}
.sec-box-edu .edu-link {
	position: relative;
	display: block;
	height: 100px;
	border-radius: 5px;
	background-color: #DDD;
	flex: 1 1 calc(50% - 20px);
	top: 0;
	transition: all 0.5s ease-out;
}
.sec-box-edu .edu-link:hover, .sec-box-edu .edu-link:focus {
	border-radius: 0;
}
.sec-box-edu .edu-link::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0);
	border-radius: 5px;
	transition: all 0.5s ease-out;
}
.sec-box-edu .edu-link:hover::before, .sec-box-edu .edu-link:focus::before {
	background-color: rgba(0,0,0,0.3);
	border-radius: 0;
}
.sec-box-edu .edu-link .edu-tit {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: #FFF;
	font-size: 16px;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
	letter-spacing: -1px;
}
@media(min-width: 768px) {
	.sec-box-edu .edu-link .edu-tit {
		font-size: 20px;
	}
}
@media(min-width: 992px) {
	.sec-box-edu {
		padding: 20px 0 70px;
	}
	.sec-box-edu .edu-link-wrapper {
		gap: 20px;
	}
	.sec-box-edu .edu-link-wrapper .edu-link-box, .sec-box-edu .edu-link-wrapper .edu-link-box:first-child {
		flex: 1 1 calc(50% - 20px);
	}
	.sec-box-edu .edu-link-wrapper .edu-link-box:nth-child(3), .sec-box-edu .edu-link-wrapper .edu-link-box:nth-child(4) {
		flex: 1 1 calc(25% - 25px);
	}
	.sec-box-edu .edu-link {
		height: 200px;
		border-radius: 15px;
	}
	.sec-box-edu .edu-link::before {
		border-radius: 5px;
	}
	.sec-box-edu .edu-link .edu-tit {
		bottom: 25px;
		left: 25px;
		font-size: 24px;
	}
}

/*****************************************************
	Sub
*****************************************************/

.sub-container {margin-bottom:2rem;margin-top:1.5rem}
.sub-container #content {padding: 0;margin-bottom: 0;}
.sub-top {
	display: none;
	position: relative;
	height: 110px;
}
.sub-top .img {display:block;background-position:top center;background-size:cover;width:100%;height:100%}
.sub-top .sub-top-txt {
	display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.sub-top .sub-top-txt h2 {
	color: #FFF;
	display: inline-block;
	margin: 0;
	font-size: 1.250em;
	font-weight: 700;
	padding: 30px 0 0;
	text-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}
.sub-top .sub-top-txt .sub-top-title {
	color: #FFF;
	display: inline-block;
	margin-bottom: 2px;
	font-size: 35px;
	font-weight: 700;
}
.sub-top .sub-top-txt .sub-top-sub-title {
	color: #FFF;
	font-size: 20px;
}
.cont-title {
	padding: 10px 0 20px;
	margin: 0;
}
.cont-title h2 {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	margin: 0;
}
.cont-title-desc {font-size: 14px; display: none; color: hsl(0, 0%, 52%); margin-left: 10px;}

@media (min-width: 768px) {
	.sub-top .sub-top-txt h2 {font-size:1.563em;padding:50px 0 0}
	.cont-title h2 {
		font-size: 28px;
	}
}
@media (min-width: 992px) {
	.sub-container {margin-bottom:4.5rem;margin-top:2rem}
	.sub-container #content {padding: 0;margin-bottom: 1.875rem;}
	.sub-top {
		display: block;
		height:230px;
	}
	.sub-top .sub-top-txt h2 {font-size:1.875em;padding:70px 0 0}

	/* snb */
	.cont-title {
		padding: 50px 0 40px;
	}
	.cont-title h2 {
		font-size: 34px;
	}
	.cont-title-desc {display: inline-block;}
}
@media (min-width: 1200px) {
	.cont-title h2 {
		font-size: 40px;
	}
}
/*yk 20201028*/
.nav-tabs-style01 .nav-item .nav-link.active {
	background-color: rgb(var(--point-color-04));
}
.list-style01 > li {
	background: none;
	position: relative;
}
.list-style01 > li::before {
	content: "";
	position: absolute;
	top: 0.35rem;
	left: 0;
	transform: translateY(100%);
	display: inline-block;
	width: 4px;
	height: 4px;
	background-color: rgb(var(--point-color-04));
}

/* page-navi */
.page-navi {
	background-color: rgb(var(--point-color-01));
	z-index: 1;
}
.page-navi > .container {
	padding: 0 50px 0 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:hover, .page-navi .navbar .navbar-nav > .nav-item:focus {
	background-color: rgb(var(--point-color-02));
}
.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: #FFF;
}
.page-navi .navbar .navbar-nav>.nav-item.print {
	display: none;
}
.page-navi .navbar .navbar-nav > .nav-item .nav-link {
	color: #FFF;
	padding: 0.8rem 2rem 0.8rem 0.9rem;
}
.page-navi .navbar .navbar-nav > .nav-item .nav-link:before {
	content: "\e5c5";
	color: #FFF;
}
.page-navi .navbar .navbar-nav > .nav-item .nav-link:hover, .page-navi .navbar .navbar-nav > .nav-item .nav-link:focus {
	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));
}
.page-navi .navbar .navbar-nav>.nav-item .nav-link:before {
	top: 50%;
	transform: translateY(-50%);
}
@media(min-width: 576px) {
	.page-navi > .container {
		padding: 0 65px 0 15px;
	}
}
@media(min-width: 992px) {
	.page-navi > .container {
		padding: 0 15px;
	}
	.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: 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;
	}
}

/* page-item */
.page-link {
	color: rgba(var(--point-color-01));
}
.page-link:hover {
	color: rgba(var(--point-color-01));
	background-color: #FFF;
}
.page-item.active .page-link {
	background-color: rgba(var(--point-color-01));
	border-color: rgba(var(--point-color-01));
}

/* popup-zone */
.top-banner .top-banner-inner #carousel-popup:after {
	display: none;
}
.top-banner .top-banner-inner .owl-dots .owl-dot {
	background-color: transparent;
}
.top-banner .top-banner-inner .owl-dots .owl-dot>span {
	background-color: transparent;
}
.top-banner .top-banner-inner .owl-carousel .owl-dots .owl-dot.active {
	background-color: transparent;
}
.top-banner .close-btns label {
	color: #FFF;
}

/* video */
.mv-carousel .item .item-video {
	overflow:hidden;
}
.mv-carousel .item .item-video video,
.owl-carousel .owl-item .item .item-img img {
    position: absolute;
    top: 50%;
    left: 50%;
	width: 100%;
    transform: translate(-50%,-50%)
}
.mv-carousel.owl-carousel .owl-item {
    overflow: hidden;
}
.mv-carousel .item .item-video .title_visual {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0;
  z-index: 20;
}
.mv-carousel .item .item-video .poster_video {	
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
    background: url(/site/resource/ansan/www/images/main-visual01.jpg) no-repeat top center;
    background-size: cover;
}
.mv-carousel .video-wrapper {
    width: 100%;
    height: 100%;
}
.mv-carousel .yt-player {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
}
.mv-carousel .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 2px solid white;
    border-radius: 50%;
    margin: 0;    
    cursor: pointer;    
    transition: 0.3s;
}
.mv-carousel .video-btn span {
    display: block;
    font-size: 35px;
    color: white;
    transition: 0.3s;
}
.mv-carousel .video-btn:hover,
.mv-carousel .video-btn:focus {
    border-color: hsl(0, 0%, 85%);
}
.mv-carousel .video-btn:hover span,
.mv-carousel .video-btn:focus span {
    color: hsl(0, 0%, 90%);
}

@media(min-width: 1200px) {
	.mv-carousel .video-btn {
		width: 75px;
		height: 75px;
	}
	.mv-carousel .video-btn span {
		display: block;
		font-size: 50px;
	}
}
/* 접근성 코드 추가 250408 */
.modal .close {
  position: absolute;
  top: 16px;
  right: 15px;
  color: #FFF;
  opacity: 1;
}