/*****************font**********************/
@font-face {
	font-family: 'S-CoreDream-2ExtraLight';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-2ExtraLight.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'S-CoreDream-3Light';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'S-CoreDream-4Regular';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'S-CoreDream-5Medium';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/***************************************/
.html, body {margin: auto; font-family: 'S-CoreDream-4Regular';}
a {text-decoration: none !important;}
.wrapper {max-width: 100%; margin: 0 auto; font-size: 1rem; color: #333; background-color: #ffffff;  min-height: calc(100vh - 194.38px);}
.header {width: 100%; font-size: 1.05rem; font-family: 'S-CoreDream-5Medium'; position: fixed; z-index: 999; background-color: #ffffff; top: 0;}
.logo {cursor: pointer; padding: 1.5rem 0; margin-left: 1rem;}
.mo-logo {display: none;}
.head {max-width: 1200px; margin: auto;}
.navis {display: flex;}
.navis a {text-decoration: none;}
.navi-wrap {position: relative;}
.navi {position: relative; cursor: pointer; text-align: center; color: #333333; text-decoration: none; padding: 1.5rem 0; width: 9rem;}
.navi.active {color: #185ba2; position: relative;}
.navi:after {background: none repeat scroll 0 0 transparent; bottom: 0; content: ""; display: block; height: 3px; left: 50%; position: absolute; background: #185ba2; transition: width 0.3s ease 0s, left 0.3s ease 0s; width: 0;}
.navi:hover:after {width: 100%; left: 0;}
.navi:hover {color: #185ba2 !important;}

/*********************subs******************/
.subs {z-index: 20; width: 100%; height: 15rem; background-color: #ffffff; opacity: 0.95; left: 0; display: none; font-size: 0.95rem;}
.sub {background-color: #ffffff; margin: auto; height: 15rem; display: flex;}
.sub ul:hover {background-color: #ffffff;}
.sub li {margin: 1.2rem 0; width: 9rem; cursor: pointer; text-align: center;}
.subs a.active {color: #185ba2;}
.subs a:hover {color: #185ba2;}
.subs a {text-decoration: none; color: #3f3f3f;}
.sub-hover {color: #185ba2;}
.sub-hover:after {width: 100%; left: 0;}

/********************fix-wrap*******************/
.fix-wrap {width: 100%; height: 100vh; position: absolute; top: 0; left: 0; background-color: rgba(0,0,0,0); display: none; transition: 0.5s; overflow: hidden;}
.fix-wrap.active {background-color: rgba(0,0,0,0.3);}
.fix-wrap > div {width: 250px; height: 100%; position: absolute; right: 0; background-color: #043465; color: fff; transform: translateX(250px); transition: 0.5s; overflow-y: auto;}
.fix-wrap > div.active {transform: translateX(0px);}
.navi-wrap-mo {margin-top: 80px; cursor: pointer; position: relative;}
.navi-wrap-mo > li, .navi-wrap-mo > a {text-decoration: none; color: #fff; font-size: 0.9rem;}
.navi-wrap-mo > li:not(.subs-mo), .navi-wrap-mo > a > li:not(.subs-mo) {padding: 0.9rem 1.5rem; border-bottom: 1px solid #174c81; background-color: #043465;}
.navi-child-mo > i {margin-left: 0.5rem; transition: all 0.5s; transform: rotate(0); position: absolute; right: 1.5rem; margin-top: 0.3rem;}
.navi-child-mo > i.active {transform: rotate(180deg);}
.subs-mo {display: none; background-color: #14416f;}
.subs-mo > ul > a {text-decoration: none; color: #fff; font-size: 0.8rem;}
.navi-wrap-mo > a > li {text-decoration: none;}
.subs-mo li {padding: 0.9rem 1.5rem; border-bottom: 1px solid #1c4e80;}
.subs-mo li::before {display: inline-block; content: "-"; margin-right: 1rem;}
.subs-mo li:hover {background-color: #1c4e80;}

/********************navi-bars *******************/
.navi-bars {width: 27px; height: 27px; position: absolute; top: 0.9rem; right: 0.7rem; cursor: pointer; display: none;}
.bar {width: 20px; height: 2px; background-color: #ffffff; position: absolute; transform-origin: center; animation-fill-mode: forwards; animation-duration: 1s;}
.bar1 {top: 6px; left: 3px;}
.bar2 {top: 12px; left: 3px;}
.bar3 {top: 18px; left: 3px;}
.navi-bars.default > .bar1 {animation-name: bar1-rev;}
.navi-bars.default > .bar2 {animation-name: bar2-rev;}
.navi-bars.default > .bar3 {animation-name: bar3-rev;}
.navi-bars.active > .bar1 {animation-name: bar1;}
.navi-bars.active > .bar2 {animation-name: bar2;}
.navi-bars.active > .bar3 {animation-name: bar3;}

@keyframes bar1 {
	0% {background-color: #ffffff;}
	40% {top: 12px; transform: rotate(0deg)}
	100% {top: 12px; transform: rotate(225deg); background-color: #ffffff;}
}
@keyframes bar2 {
	0% {}
	40% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes bar3 {
	0% {background-color: #ffffff;}
	40% {top: 12px; transform: rotate(0deg);}
	100% {top: 12px; transform: rotate(135deg); background-color: #ffffff;}
}
@keyframes bar1-rev {
	0% {top: 12px; transform: rotate(225deg); background-color: #ffffff;}
	60% {top: 12px; transform: rotate(0deg);}
	100% {top: 6px; transform: rotate(0deg); background-color: #ffffff;}
}
@keyframes bar2-rev {
	0% {opacity: 0;}
	60% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes bar3-rev {
	0% {top: 12px; transform: rotate(135deg); background-color: #ffffff;}
	60% {top: 12px; transform: rotate(0deg);}
	100% {top: 18px; transform: rotate(0deg); background-color: #ffffff;}
}

.pf-banner {background-image: url('../img/bd2.jpg');}
.banner {background-repeat: no-repeat; background-position: center; background-size: cover; background-attachment: fixed;}
.banner > h2 {font-weight: normal; font-size: 2.2rem; color: #fff; text-align: center; padding: 6rem 0; font-family: 'S-CoreDream-5Medium';}
.content-wrap {
    max-width: 1200px; 
    margin: 3rem auto 0; 
    padding: 1rem; 
    color: #474747;
}



/*공지사항 추가*/

.content-wrap.Lise{
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 1rem; 
    color: #474747;
}

.Lise .faq-cont{
    background-color: #fff;
    border: 1px solid #e5e5e5;
}

.Lise{
    font-size: 10px;
}

/********************footer-wrapper*********************/
.footer-wrapper {background-color: #2b2b2b;}
.footer-wrap {border-bottom: 1px solid #616161;}
.foot-list {background-color: #2b2b2b; color: #919191; font-family: 'S-CoreDream-3Light'; max-width: 1200px; margin: auto; padding: 0.2rem 0;}
.foot-list > span {color: #919191; margin: 0.5rem 0.8rem; font-size: 0.8rem; cursor: pointer;}
.foot-list > span > a {text-decoration: none; color: #919191;}
.footer-contact {background-color: #2b2b2b; padding: 1rem 0.8rem; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto;}
.footer-cont {color: #919191; font-size: 0.85rem;}
.footer-cont > li:nth-child(1) {margin-bottom: 0.5rem;}
.footer-cont:nth-child(2) {margin-left: 2rem;}
.faq-date {color: #727272 !important; font-size: 0.75rem !important;}

/***********************faq-wrapper************************/
.faq-wrapper > div {font-size: 1.3rem; font-family: 'S-CoreDream-5Medium';}
.faq-wrapper > p {border-bottom: 2px solid #2b2b2b; padding: 1rem 0; font-size: 0.9rem;}
.faq-wrap {cursor: pointer; border-bottom: 1px solid #dddddd; font-family: 'S-CoreDream-5Medium';}
.faq-wrap > li, .faq-wrap {color: #2b2b2b; font-size: 0.9rem;}
.faq-wrap > li:not(.subs-mo) {padding: 1.2rem;}
.faq {display: flex; justify-content: space-between; align-items: center;}
.faq > i {margin-left: 0.5rem; transition: all 0.5s; transform: rotate(0); font-size: 1.2rem; color: #bbb;}
.faq > i.active {transform: rotate(180deg); color: #555555;}
.faq-cont {display: none; background-color: #eee; font-family: 'S-CoreDream-4Regular';}




/*두번째 공지사항*/
.faq-cont li.none{
    padding: 0;

}

.Lise .faq-wrap > li:not(.subs-mo) {
    padding: 0;
}

#Li.faq{
    padding: 1.2rem;
}

/********************swal-modal*********************/
.swal-modal {max-width: 350px;}
.swal-title {font-size: 1rem;}
.swal-icon {margin: 10px auto;}

/***********************bt-top**********************/
.bt-top {width: 60px; height: 60px; border-radius: 3px; background-color: rgba(0,0,0,0.4); display: table; font-size: 1.25rem; color: #fff; cursor: pointer; transition: all 1s; position: fixed; bottom: 30px; right: 30px; z-index: 999; visibility: hidden;}
.bt-top:hover {background-color: rgba(0,0,0,0.6);}
.bt-top > .fa {display: table-cell; text-align: center; vertical-align: middle;}

/*******************whelper********************/
.whelper {position: relative; position: fixed; z-index: 1001; /* right: 0; top: 270px; */ right: 0; top: 270px; width: 60px; height: 60px; display: table; background-color: #e2422d; border: 3px solid #f87b6a; cursor: pointer; letter-spacing: 2px; transition: all 0.3s; border-radius: 3px;}
.whelper:hover {background-color: #d13925;}
.whelper span {font-size: 0.85rem; color: #ffffff; display: table-cell; vertical-align: middle; text-align: center;}

.whelper2 {position: relative; position: fixed; z-index: 1001; /* right: 0; top: 270px; */ right: 0; top: 340px; width: 60px; height: 60px; display: table; background-color: #e2422d; border: 3px solid #f87b6a; cursor: pointer; letter-spacing: 2px; transition: all 0.3s; border-radius: 3px;}
.whelper2:hover {background-color: #d13925;}
.whelper2 span {font-size: 0.85rem; color: #ffffff; display: table-cell; vertical-align: middle; text-align: center;}

/********************반응형*********************/
	@media screen and (max-width: 1090px) {
		.header {background-color: #043465;}
		.logo {padding: 1rem; margin-left: 0;}
		.navi-wrap {display: none;}
		.navi-bars {display: block;}
		.pc-logo {display: none;}
		.mo-logo {display: block;}
	}

	@media screen and (max-width: 676px) {
		.faq-date {display: none;}
		.footer-logo {display: none;}
	}

	@media screen and (max-width: 575px) {
		.banner > h2 {font-size: 1.8rem; padding: 4rem 0;}
		.content-wrap {margin: 2rem auto; padding: 1rem;}
		.faq-wrapper > div {font-size: 1.2rem;}
		.foot-list > span {font-size: 0.75rem; margin: 0.5rem 0.3rem;}
		.footer-wrap {margin-left: 0.5rem;}
		.footer-contact {padding: 0.5rem 0.3rem;}
		.footer-contact >div {flex-direction: column;}
		.footer-cont:nth-child(2) {margin-left: 0.5rem;}
		.footer-cont {font-size: 0.75rem; margin-left: 0.5rem; margin-top: 0.5rem;}
		.whelper-wrap {display: none;}
	}


    .new{
        display: inline-block;
        vertical-align: middle;
        margin-left: 12px;
        background-color: #dc0000;
        padding: 4px 8px;
        box-sizing: border-box;
        color: #fff;
        border-radius: 6px;
        font-size: 12px;
    }


































































 