@charset "utf-8";
/* *******************************************************
 * filename : layout.css
 * description : 전체 레이아웃 CSS
 * date : 2020-11-25
******************************************************** */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* ****************** LAYOUT ********************** */
body,
table,
th,
td,
button,
select,
input,
textarea {
      font-family: 'Pretendard';
    font-size: 13px;
    color: #333;
    -webkit-text-size-adjust: none;
    word-break: keep-all;
}

body {
    background-color: #fff;
}

#wrap {
    overflow: hidden;
    width: 100%;
    min-width: 320px;
    position: relative;
}

/* width 홈페이지 컨텐츠 가로값에 맞게 변경 */



.form_down {
    width: 100%;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    font-family: 'Sbl';
}

.form_down a {
    width: 48%;
    border-radius: 10px;
    height: 50px;
    background: #444;
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_down a img {
    width: 25px;
    margin-left: 10px;
}
.inner{
    padding: 0 9rem;
}
@media (max-width: 1440px){
    .inner{
        padding: 0 5rem;
    }
}
@media (max-width: 1024px){
    .inner{
        padding: 0 3rem;
    }
}
@media (max-width: 810px){
    .inner{
        padding: 0 2rem;
    }
}
@media (max-width: 550px){
    .inner{
        padding: 0 1rem;
    }
}
/* ****************** HEADER ********************** */
#header {
    position: absolute;
    height: 155px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.fullpage-wrapper #header {
    position: fixed;
}

#headerInnerWrap {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border-bottom 0.3s, background-color 0.3s;
    transition: border-bottom 0.3s, background-color 0.3s;
}

#headerInner {
    position: relative;
    height: 100%;
    margin: 0px auto;
    padding: 0 60px;
}

#header .logo {
    position: relative;
    z-index: 100;
    float: left;
    padding: 46px 0;
}

/* padding값 적절히 바꿔주세요 */
#header .logo a {
    position: relative;
    width: 281px;
    height: 62px;
    display: block;
}

#header .logo img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    vertical-align: top;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header-inner .logo img.ori {
    visibility: visible;
    opacity: 1;
}

.header-inner .logo img.black {
    visibility: hidden;
    opacity: 0;
}

#header .logo img.ori {
    visibility: visible;
    opacity: 1;
}

#header .logo img.black {
    visibility: hidden;
    opacity: 0;
}

*/

/* -------- Header :: UTIL BOX -------- */
.header-util-box {
    position: absolute;
    top: 50%;
    right: 60px;
    margin-top: -25px;
    z-index: 100;
}

/* Header :: 검색버튼 */
.header-search-box {
    position: relative;
    height: 50px;
    float: left;
    z-index: 101;
}

.header-search-box:before {
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 65px;
    content: '';
    width: 2px;
    height: 10px;
    background-color: #fff;
}

.header-search-box i,
.header-search-word,
.header-search-inner .header-search-word::placeholder {
    color: #fff;
}

.header-search-inner {
    overflow: hidden;
    position: absolute;
    top: 0px;
    right: 0;
    width: 304px;
    height: 100%;
    border: 2px solid #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header-search-inner .header-search-inner-box {
    overflow: hidden;
    height: 46px;
    padding-left: 25px;
    padding-right: 75px;
}

.header-search-inner .header-search-word {
    height: 100%;
    width: 100%;
    vertical-align: top;
    background-color: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 300;
}

.header-search-inner .header-search-word:focus {
    outline: none;
}

.header-search-inner .header-search-word::placeholder {
    opacity: 0.3;
}

.header-search-inner .header-search-btn {
    position: absolute;
    top: 0px;
    right: 0;
    width: 60px;
    height: 46px;
    font-size: 26px;
    letter-spacing: -0.25px;
}

.header-search-open-btn,
.header-search-close-btn {
    display: none;
}

@media all and (min-width: 1561px) {
    .header-search-box.effect-on .header-search-inner {
        width: 400px;
    }
}

@media all and (min-width: 1751px) {
    .header-search-box.effect-on .header-search-inner {
        width: 350px;
    }
}

@media all and and (max-height: 1560px) and (min-width: 801px) {
    .header-search-inner .header-search-inner-box {
        -webkit-transform: translateX(0);
        transform: translateX(10px);
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .header-search-box.open .header-search-inner .header-search-inner-box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.indicator {
    position: fixed;
    left: 0;
    top: 0;
    height: 5px;
    background-color: #213a8f;
    z-index: 9999;
}

.indicator2 {
    height: 5px;
    width: 100%;
    background-color: #213a8f;
    position: absolute;
    top: 0;
    z-index: 5;
}

.indicator3 {
    position: fixed;
    width: 100%;
    height: 5px;
    z-index: 2;
    background: rgb(255, 255, 255, 0.5);
    top: 0;

}

/* Header :: 로그인,로그아웃,회원가입 */
.header-user-box {
    margin-left: 45px;
    float: left;
    font-size: 0;
}

.header-user-box li {
    margin-left: 36px;
    display: inline-block;
    position: relative;
}

.header-user-box li:first-child {
    margin-left: 0;
}

.header-user-box li:before {
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: -18px;
    display: block;
    content: '';
    width: 1px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
}

.header-user-box li:first-child:before {
    display: none;
}

.header-user-box li a {
    display: block;
    font-size: 12px;
    line-height: 40px;
    color: #fff;
    letter-spacing: -0.5px;
}

/* Header :: 사이트맵버튼 */
.sitemap-line-btn {
    float: left;
    width: 40px;
    height: 40px;
    margin-left: 34px;
    padding-top: 4px;
    box-sizing: border-box;
}

.sitemap-line-btn .line {
    display: block;
    width: 34px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* active */
.sitemap-open-btn.active {
    position: relative;
    z-index: 100000;
}

.sitemap-open-btn.active .line {
    background-color: #333;
}

.sitemap-open-btn.active .line:nth-child(2),
.sitemap-open-btn.active .line:nth-child(4) {
    opacity: 0;
}

.sitemap-open-btn.active .line:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}

.sitemap-open-btn.active .line:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

/* -------- Header :: GNB(PC) -------- */
.gnb-overlay-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
}

/* gnb overlay BG */
#gnb {
    /*position:absolute; top:0; left:0px; width:100%; z-index:99;*/
}

#gnb > ul {
    /*margin-left: 370px; */
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

#gnb > ul > li {
    position: relative;
    float: left;
    word-break: keep-all;
}

#gnb > ul > li > a {
    position: relative;
    z-index: 100;
    display: block;
    height: 154px;
    line-height: 154px;
    padding: 0 30px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    letter-spacing: -0.5px;
    font-weight: 500;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

/* GNB :: 2차 각각메뉴 */
#gnb.each-menu > ul > li .gnb-2dep {
    /* display:none; */
    position: absolute;
    top: 130px;
    left: 50%;
    margin-left: -100px;
    z-index: 99;
    width: 200px;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    filter: Alpha(opacity=0);

}

#gnb.each-menu > ul > li .gnb-2dep:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0px;
    right: 0px;
    height: 0;
    opacity: 0;
    filter: Alpha(opacity=0);
    background-color: #90c740;
    border-radius: 40px 40px 0px 40px;
    box-shadow: 5px 5px 5px #33300010;
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

#gnb.each-menu > ul > li .gnb-2dep ul {
    padding: 0px 0px 15px 0;
}

#gnb.each-menu > ul > li .gnb-2dep ul li {
    position: relative;
    padding: 8px 10px;
    opacity: 0;
    filter: Alpha(opacity=0);
    -webkit-transition: all 0s 0s;
    -moz-transition: all 0s 0s;
    -o-transition: all 0s 0s;
    -ms-transition: all 0s 0s;
    transition: all 0s 0s;
}

#gnb.each-menu > ul > li .gnb-2dep ul li a {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    opacity: 0.9;
    filter: Alpha(opacity=90);
}

#gnb.each-menu > ul > li .gnb-2dep ul li a:hover {
    opacity: 1.0;
    filter: Alpha(opacity=100);
}

/* over했을때 */
#gnb.each-menu > ul > li:hover .gnb-2dep:before {
    height: calc(100% + 20px);
    opacity: 1.0;
    filter: Alpha(opacity=100);
}

#gnb.each-menu > ul > li .gnb-2dep.open {
    visibility: visible;
    opacity: 1.0;
    filter: Alpha(opacity=100);
}

#gnb > ul > li .gnb-2dep.open ul li {
    opacity: 1.0;
    filter: Alpha(opacity=100);
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

#gnb > ul > li .gnb-2dep.open ul li:nth-child(1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

#gnb > ul > li .gnb-2dep.open ul li:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#gnb > ul > li .gnb-2dep.open ul li:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#gnb > ul > li .gnb-2dep.open ul li:nth-child(4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

#gnb > ul > li .gnb-2dep.open ul li:nth-child(5) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

#gnb > ul > li .gnb-2dep.open ul li:nth-child(6) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

#gnb > ul > li .gnb-2dep.open ul li:nth-child(7) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

#gnb > ul > li .gnb-2dep.open ul li:nth-child(8) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

/* -------- Header :: GNB(Mobile) -------- */
.nav-open-btn {
    display: none;
}

#gnbM {
    display: none
}

/* header black ver. */
#header.black .logo img.black {
    visibility: visible;
    opacity: 1;
}

#header.black .logo img.ori {
    visibility: hidden;
    opacity: 0;
}

#header.black #headerInnerWrap {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

#header.black #gnb > ul > li > a {
    color: #333;
}

#header.black .header-search-open-btn {
    color: #333;
}

#header.black .header-search-open-btn i {
    color: #333;
}

#header.black .header-search-inner {
    border-color: #333;
}

#header.black .header-search-box:before {
    background-color: #333;
}

#header.black .header-search-box .header-search-btn i,
#header.black .header-search-word,
#header.black .header-search-inner .header-search-word::placeholder {
    color: #333;
}

#header.black .header-user-box li a {
    color: #333;
}

#header.black .header-user-box li:before {
    background-color: rgba(34, 34, 34, 0.2);
}

#header.black .sitemap-line-btn .line {
    background-color: #333;
}

/* header blue ver. */
#header.blue #headerInnerWrap {
    border-bottom-color: transparent;
}

/* ****************** FOOTER ********************** */
/* -------- FOOTER :: 레이아웃 -------- */
#footerInner {}


/* -------- FOOTER :: 상단 -------- */


#footerTop {
    padding: 30px 0;
}

/* Footer :: TOP버튼 */
.to-top-btn {
    position: fixed;
    bottom: -100px;
    right: 15px;
    display: block;
    width: 46px;
    height: 46px;
    background-color: #fff;
    text-align: center;
    color: #333;
    z-index: 99;
    border: 1px solid #eee;
    box-sizing: border-box;
    opacity: 0;
    filter: Alpha(opacity=0);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.to-top-btn.bottom-fixed {
    bottom: 15px;
    opacity: 1.0;
    filter: Alpha(opacity=100);
}

.fullpage-wrapper .to-top-btn {
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.fullpage-wrapper .to-top-btn.bottom-fixed {
    bottom: 80px;
}

.to-top-btn i {
    display: inline-block;
    font-size: 16px;
    line-height: 46px;
    transition: all 0.3s
}

.to-top-btn:hover i {
    transform: translateY(-3px)
}

/* Footer :: 푸터메뉴 */
#footer {
    background: #213a8f;
    padding: 3% 0;
  
}

#footerInner {
    padding: 0 9rem;
    margin: 0 auto;
}

#footerBottom .area-box {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 15px;
}

.footer-address-txt {
    margin: 20px 0
}

.foot-sns-menu a {
    color: #fff;
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #fff;
    transition: all .3s;
    position: relative;
   
}
.company_hover{
    position: absolute;
    right: 12px;
    opacity: 0;
    transition: all .3s;
}
.foot-sns-menu a:hover {
    background: #fff;
    color: #213a8f;
}
.foot-sns-menu a:hover .company_hover {
  opacity: 1;
}
.foot-sns-menu img {
    margin: 1px 0 1px 10px;
}
/* 탑버튼 */
.up{
     position: fixed;
    bottom: 103px;
    right: 40px;
    font-size: 18px;
    background: #fff;
    border: 1px solid #213a8f;

}
.back{
       position: fixed;
    bottom: 43px;
    right: 40px;
    font-size: 18px;
    background: #fff;
    border: 1px solid #213a8f;

}
.back span{
     padding: 13.5px 8px;
    color: #213a8f;
    transition: all .3s;
    display: inline-block;
    background: #fff;
    border: none;
    font-size: 15px;
    letter-spacing: -0.5px;
    cursor: pointer;
}
.up a{
     padding: 13.5px 10px;
    color: #213a8f; 
     transition: all .3s;
     display: inline-block;
}
.up:hover{
    background: #213a8f; 
    border: 1px solid #fff;
}

.up:hover.up a{
    color: #fff;
}

/* ****************** SUB LAYOUT ********************** */
/*  SUB LAYOUT :: 비주얼 */
#visual {
    padding-top: 150px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 360px;
    background-color: #127fb7;
    color: #fff;
    background: linear-gradient(-45deg, #127fb7, #1a8ac0, #2499cd, #289ed1);
    background-size: 400% 400%;
    -webkit-animation: Gradient 5s ease infinite;
    -moz-animation: Gradient 5s ease infinite;
    animation: Gradient 5s ease infinite;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

#visual .visual-img-con {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    -webkit-transition: transform 5000ms ease-in-out;
    transition: transform 5000ms ease-in-out;
}

#visual .visual-txt-con {
    position: relative;
    z-index: 1;
    text-align: center;
    display: table;
    width: 100%;
    height: 100%;
    letter-spacing: -0.35px;
    color: #fff;
}

#visual .visual-txt-container {
    position: relative;
    width: 100%;
}

#visual .visual-sub-txt {
    opacity: 0;
    filter: Alpha(opacity=0);
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: opacity 1.0s, transform 1.0s;
    transition: opacity 1.0s, transform 1.0s;
}

#visual .visual-tit {
    font-weight: 500;
    font-size: 50px;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#visual .visual-sub-txt {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 5px;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

/* SUB LAYOUT :: 상단효과 active */
#visual.active .visual-img-con {
    -webkit-transform: scale(1.0, 1.0) rotate(0.002deg);
    transform: scale(1.0, 1.0) rotate(0.002deg);
}

/* 공통 :: 타이틀 효과 */
#visual.active .visual-tit {
    -webkit-animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

#visual.active .visual-sub-txt {
    opacity: 1.0;
    filter: Alpha(opacity=100);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

#visual.active .visual-sub-txt {
    transition-delay: 1s;
}

#visual.active .visual-tit.splitting .char {
    -webkit-animation: text-fade-out 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation: text-fade-out 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    -webkit-animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes text-active-animation {
    from {
        opacity: 0;
        filter: Alpha(opacity=0);
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    to {
        opacity: 1.0;
        filter: Alpha(opacity=100);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes text-fade-out {
    from {
        opacity: 1.0;
        filter: Alpha(opacity=100);
    }

    to {
        opacity: 0;
        filter: Alpha(opacity=0);
    }
}

/*  SUB LAYOUT :: 이전페이지,다음페이지 버튼 */
.sub-page-controls-btn {
    position: absolute;
    top: 50%;
    height: 20px;
    margin-top: 55px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
}

/* margin-top:수정*/
.sub-page-controls-btn.sub-prev-page-btn {
    left: 60px;
}

.sub-page-controls-btn.sub-next-page-btn {
    right: 60px;
}

.sub-page-controls-btn .sub-page-name {
    margin: 0 20px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.sub-page-controls-btn span {
    display: inline-block;
    color: #fff;
    vertical-align: middle;
}

.sub-page-controls-btn span i {
    margin-top: -2.5px;
    font-size: 36px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.sub-page-controls-btn i,
.sub-page-controls-btn i {
    opacity: 0.3;
}

.sub-page-controls-btn.sub-prev-page-btn:hover i,
.sub-page-controls-btn.sub-next-page-btn:hover i {
    opacity: 1;
}

@media all and (min-width:801px) {
    .sub-page-controls-btn.sub-prev-page-btn:hover {
        margin-left: -10px;
    }

    .sub-page-controls-btn.sub-next-page-btn:hover {
        margin-right: -10px;
    }
}

/*  SUB LAYOUT :: 서브메뉴(스타일1) */
#topMenu01 {
    position: relative;
    width: 100%;
    height: 70px;
}

#topMenu01 .side-menu-inner {
    text-align: center;
    width: 100%;
    height: 68px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

#topMenu01 .side-menu-inner ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

#topMenu01 .side-menu-inner ul li {
    float: left;
    width: 170px;
}

/* max-width 자유롭게 수정 */
#topMenu01 .side-menu-inner ul li > a {
    display: block;
    display: table;
    position: relative;
    width: 100%;
    height: 68px;
    line-height: 1.2;
    color: #333;
    font-size: 18px;
    letter-spacing: -0.35px;
    font-weight: 500;
    word-break: keep-all;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#topMenu01 .side-menu-inner ul li > a:before {
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #2397cb;
    content: "";
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

#topMenu01 .side-menu-inner ul li > a > span {
    display: table-cell;
    vertical-align: middle;
    padding: 0 15px;
}

#topMenu01 .side-menu-inner ul li > a:hover:before,
#topMenu01 .side-menu-inner ul li.on > a:before {
    width: 100%;
    margin-left: -50%;
}

/* SUB LAYOUT :: 서브메뉴 Fixed (공통) */
@media all and (min-width:801px) {
    .fixed-sub-menu.top-fixed .side-menu-inner {
        position: fixed;
        top: 109px;
        left: 0px;
        z-index: 9999;
    }
}

@media all and (min-width:1221px) {
    .fixed-sub-menu.top-fixed .side-menu-inner {
        top: 0px;
    }
}

/* SUB LAYOUT :: 모바일메뉴(공통)  */
#topMenuM01,
#topMenuM02 {
    display: none;
}

/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
#middleArea {
    background-color: #f2f2f2;
}

#content:not(.wide) {
    padding: 124px 0
}

#content.wide {
    padding: 124px 0 0 0
}

/*  SUB LAYOUT :: 상단정보 (공통) */
#contentInfoCon {
    margin: 0 auto 50px;
    text-align: center;
}

#contentInfoCon .content-tit {
    color: #333;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: -0.35px;
}

/* ****************** MODAL LAYERPOPUP ********************** */
/* modal layer */
.modal-fixed-pop-wrapper {
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #333;
    background: rgba(0, 0, 0, 0.5);
}

.modal-fixed-pop-inner {
    position: absolute;
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
}

.modal-inner-box {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.modal-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    z-index: 10000;
}

.modal-inner-content {
    text-align: left;
}

.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 8px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* modal layer content */
.footer-modal-content {
    position: relative;
    width: 96%;
    max-width: 1000px;
    margin: 20px auto;
}

.footer-modal-content h1 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-align: center;
    padding: 0 50px 20px;
    color: #fff;
}

.modal-close-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    color: #fff;
}

.modal-close-btn i {
    font-size: 38px;
}

.modal-close-btn i:hover {
    color: #fff
}

.footer-inner-box {
    padding: 50px;
    background-color: #fff;
    border-radius: 50px 50px 0 50px;
}

.footer-inner {
    padding: 20px;
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* ****************** 사이트맵 ********************** */
/* -------- 사이트맵 01 -------- */
/* 사이트맵 01 */
.sitemap-wrapper {
    padding: 50px;
    background-color: #fff;
    border-radius: 50px 50px 0 50px;
}

.sitemap-wrapper > ul {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.sitemap-wrapper > ul > li {
    display: table-cell;
    vertical-align: top;
    text-align: center;
}

.sitemap-wrapper > ul > li > h2 {
    color: #191919;
    margin: 0 2% 20px 2%;
    padding: 15px;
    font-size: 18px;
    background-color: #f2f2f2;
    letter-spacing: -1.0px;
    margin-bottom: 20px;
    font-weight: 500;
}

.sitemap-wrapper > ul > li .sitemap-2dep {
    padding: 0 5% 20px;
}

.sitemap-wrapper > ul > li .sitemap-2dep a {
    display: block;
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
}

.sitemap-wrapper > ul > li .sitemap-2dep a:hover {
    color: #333;
}

/* -------- 사이트맵 02 -------- */
/* 사이트맵 02 :: Layout */
#sitemapContent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    filter: Alpha(opacity=0);
    visibility: hidden;
    z-index: -1;
    -webkit-transition: all 0.3s 0.5s;
    transition: all 0.3s 0.5s;
}

#sitemapInnerCon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 100px;
    border-right: 1px solid #ddd;
}

#sitemapContent .sitemap-bg-box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

#sitemapContent .visual-intro-item {
    float: left;
    position: relative;
    height: 100%;
}

#sitemapContent .visual-intro-item:before {
    position: absolute;
    left: 0;
    top: 0px;
    width: 1px;
    height: 0;
    content: "";
    background-color: #ddd;
    z-index: 1;
}

#sitemapContent .visual-intro-item:first-child:before {
    display: none
}

#sitemapContent .visual-intro-item:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #333;
    -webkit-transition: width .6s cubic-bezier(0.47, 0, 0.31, 1.04) 0.2s;
    transition: width .6s cubic-bezier(0.47, 0, 0.31, 1.04) 0.2s;
}

#sitemapContent .sitemap-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
}

#sitemapContent .sitemap-close-btn i {
    font-size: 20px;
    color: #222;
}

/* 사이트맵 02 :: 메뉴리스트 */
.sitemap-wrapper-style02 {
    height: 100%;
}

.sitemap-wrapper-style02 > ul {
    overflow: hidden;
    position: relative;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.sitemap-wrapper-style02 > ul > li {
    overflow: hidden;
    float: left;
    width: 20%;
    height: 100%;
}

.sitemap-wrapper-style02 > ul > li > h2 {
    overflow: hidden;
    color: #191919;
    font-size: 18px;
    letter-spacing: -1.0px;
    margin: 0% 15% 40px;
    font-weight: 600;
}

.sitemap-wrapper-style02 > ul > li:hover > h2 {
    color: #258acb;
}

.sitemap-wrapper-style02 > ul > li .sitemap-2dep a {
    overflow: hidden;
    position: relative;
    display: block;
    padding: 20px 15%;
    color: #777;
    font-size: 15px;
    letter-spacing: -0.15px;
    font-weight: 400;
    line-height: 1.2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s
}

.sitemap-wrapper-style02 > ul > li .sitemap-2dep a:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    content: "";
    height: 100%;
    background: #258acb;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s
}

.sitemap-wrapper-style02 > ul > li .sitemap-2dep a span {
    position: relative;
    z-index: 1;
}

.sitemap-wrapper-style02 > ul > li .sitemap-2dep a .gnb-icon {
    display: none;
}

.sitemap-wrapper-style02 > ul > li .sitemap-2dep a:hover {
    color: #fff;
}

.sitemap-wrapper-style02 > ul > li .sitemap-2dep a:hover:after {
    width: 100%;
}

.sitemap-wrapper-style02 ul li span {
    display: block;
    opacity: 0;
    filter: Alpha(opacity=50);
    -webkit-transform: translateX(-5%);
    transform: translateX(-50%);
    transition: transform .8s cubic-bezier(0.47, 0, 0.31, 1.04) 0s, opacity .8s cubic-bezier(0.47, 0, 0.31, 1.04) 0s;
}

/* 사이트맵 open */
#sitemapContent.open {
    opacity: 1.0;
    filter: Alpha(opacity=100);
    visibility: visible;
    z-index: 99999;
    background-color: #fff;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
}

#sitemapContent.open .visual-intro-item:before {
    height: 100%;
}

#sitemapContent.open .visual-intro-item:after {
    width: 0;
}

#sitemapContent.open .visual-intro-item {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transform-origin: right top;
    transition-property: transform;
}

#sitemapContent.open .sitemap-wrapper-style02 ul li span {
    opacity: 1.0;
    filter: Alpha(opacity=100);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: transform .8s cubic-bezier(0.47, 0, 0.31, 1.04), opacity .8s cubic-bezier(0.47, 0, 0.31, 1.04);
}
@media (max-width: 1440px){
    #footerInner{
        padding: 0 5rem
    }
    .back span{padding: 13.5px 8.3px;}
}
@media (max-width: 1024px) {
    .foot-menu {
        flex-direction: column;
    }
  #footerInner{
        padding: 0 3rem
    }
    #footerBottom .area-box{
        font-size: 14px;
    }
    .foot-menu li:last-child {
        margin-top: 20px;
    }

    .form_down a {
        font-size: 15px;
    }

    #footerBottom .area-box {
        flex-direction: column;
    }

    .foot-sns-menu a {
        margin-top: 20px;
    }
    #footer {
        padding: 5% 0;
    }

}
@media (max-width: 810px){
  #footerInner{
        padding: 0 2rem
    }
    .up {
    bottom: 85px;
    right: 30px;
    font-size: 15px;
}
    .back {
        bottom: 30px;
        right: 30px;
    }
    .back span{font-size: 14px;padding: 13.5px 7.4px;}
}
@media (max-width: 550px) {
    #footer {
        padding: 10% 0;
    }
#footerInner{
        padding: 0 1rem
    }
     #footerBottom .area-box{
        font-size: 13px;
    }
    .school div {
        flex-wrap: wrap;
    }

    .apply-wrt li select {
        width: 35%;

    }

    .school #p_school {
        width: 90%;
        margin-top: 5px;
    }

    .lst_board.type1 ul li p.date {
        display: none;
    }

    .lst_board.type1 ul li {
        justify-content: space-between;
    }

    .lst_board.type1 ul li p.state span.fin {
        width: 55px;
    }

    .lst_board.type1 ul li p.state {
        width: 20%;
    }

    .lst_board.type1 ul li p.subject {
        width: 52%;
    }

    .lst_board.type1 ul li p.name {
        width: 18%;
    }

    .lst_board.type1 ul li p.subject .lock {
        margin-left: 0px
    }

    .form_down {
        flex-direction: column;
    }

    .form_down a {
        font-size: 14px;
        width: 100%;
        margin-bottom: 20px
    }

    .form_down a:last-child {
        margin-bottom: 0;
    }

    .form_down a img {
        width: 20px;
    }

 

    #mainGovernanceCon .m03_con_info {
        font-size: 13.5px !important;
        margin: 20px 0 50px auto !important;
        padding: 20px !important;
    }

    #mainGovernanceCon .m03_con_info li:nth-child(2) {
        margin: 5px 0;
    }

    #mainGovernanceCon .m_03_tb_con th {
        font-size: 13.5px !important;
    }

    #mainGovernanceCon .m_03_tb_con td {
        font-size: 13.5px !important;
    }

    .foot-menu li:last-child img:first-child {
        margin: 5px 0;
    }

    .foot-menu li {
        flex-direction: column;
        align-items: baseline;
    }

    .foot-menu li span:first-child {
        margin-bottom: 10px;
    }

    .foot-menu li img {
        margin: 5px 20px 5px 0;
        width: 75px;
    }

    .foot-sns-menu li a {
        margin-top: 15px;
    }
}

/*메타포 소개*/
.can_txt_wrap
.with_img{
    padding-left: 9rem;
}
.with_img_wrap{
    display: flex;
    overflow: hidden;
    padding-left: 9rem;
}
.with_img_wrap img{
    animation: logo_right 120s linear infinite
}


@keyframes logo_right{
  from   { transform: translate(0%);}
  99%,to { transform: translate(-1100%);}
}
