* {
    padding:0;
    margin:0;
    list-style:none;
    text-decoration:none;
}
@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@font-face {
    font-family: 'GowunDodum-Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/GowunDodum-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SpoqaHanSansNeo-Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SpoqaHanSansNeo-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SpoqaHanSansNeo-Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SpoqaHanSansNeo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'S-CoreDream-6Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'S-CoreDream-8Heavy';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-8Heavy.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
#main_wrapper{
    position: relative;
}

#main_wrapper.on::after{
    content:"";
    width:100%;height: 100%;
    position: absolute;
    top: 0;left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2;
}
.pg_wrap {
    padding-top:20px; 
    position:relative;
    left: 50%;
    transform: translateX(-50%);
}

.blind {
    display:none;
}
.main {
    overflow: hidden;
}

#header {
    width:100%;
    z-index:999;
    margin: 0 auto;
    position: fixed;
    top: 0;
}

#header > .inner {
    width:90%;
    position:relative;
    margin:0 auto;
    padding:15px 0px;
    display: flex;
    align-items: center;
    height: auto;
    justify-content:flex-start;
}
#header .mo_logo{
    display: none;
}
#header .logo{
    
}

#header .logo img {
    width:100%;
}

#header .inner .menu_ul{
    display: flex;
    margin-left: 90px;
}
#header .inner  .menu_ul li{
    font-size: 14px;
    padding:0px 20px;
}
#header .inner .menu_ul li a{
    color: #fff;
    font-weight: 500;
}



#info{
    display: none;
}

#header .inner .menu_ul .menu_li{
    position: relative;
}

#header .inner .menu_ul .main_ul{
    position: absolute;
    top:140%;
    left: 0;
    width:160%;
    white-space: nowrap;
    border-radius: 1px;
    box-shadow: 0px 0px 2px #8b8b8b;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.85);
    display: none;
}
#header .inner .menu_ul .main_li{
    line-height: 1.7;
    padding:6px 15px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.312);
}
#header .inner .menu_ul .main_li:hover{

}
#header .inner .menu_ul .main_li:hover a{
    color: #999;
}
#header .inner .menu_ul .main_li a{
    color: #333;
    font-size: 14px;
}


/* 멤버 : s*/

/* .member{
    display: flex;
    position: absolute;
    top: 50%;transform: translateY(-50%);
    right: 50px;
}
.member a{
    font-size: 14px;
    color: #fff;
    margin-right:15px;
    padding:7px 15px;
    border: 1px solid #fff;
    border-radius: 20px;
}
 */

/* 멤버 : e*/

/* s:햄버거버튼 */

/* hambergur button */
.hamburger {
    cursor: pointer;
    display:block;
    overflow: hidden;
    background-color: transparent;
    z-index:99999;
    position: absolute;
    right: 0;
    top: auto;
}

.hamburger__container {
    width:30px;
    height:25px;
    position: relative;
}
.hamburger.is-active .hamburger__inner {
    transform: translate(-51px,50%);
}
.hamburger.is-active .hamburger__inner::before,
.hamburger.is-active .hamburger__inner::after {
    transform: translate(102px, 0);
    opacity: 0;
}

.hamburger__inner {
    width: 100%;
    height: 2px;
    /* border-color */
    background-color: #fff; 
    border-radius: 4px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    top: 50%;
    transform: translate(5px, -50%);
    opacity: 1;
}

.hamburger__inner::before, .hamburger__inner::after {
    width: 100%;
    height: 2px;
    /* border-color */
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    content: "";
    opacity: 1;
    transform: translate(-5px, 0);
}

.hamburger__inner::before {
    top: -8px;
}

.hamburger__inner::after {
    top: 8px;
}


.hamburger:hover .hamburger__hidden {
    transform: translate(0, -50%);
    background-color:#fff;
}

.hamburger:hover .hamburger__hidden::before,
.hamburger:hover .hamburger__hidden::after {
    opacity: 1;
    transform: translate(0, 0);
    background-color:#000;
}
.hamburger__hidden{
    opacity: 0;
}
.hamburger.is-active .hamburger__hidden {
    opacity: 1;
    transform: rotate(45deg);
    background-color:#000;
}

.hamburger.is-active .hamburger__hidden::before {
    transform: translate(0, 13px) rotate(90deg);
    transform-origin: center;
    background-color: #000;
}

.hamburger.is-active .hamburger__hidden::after {
    transform-origin: center;
    transform: translate(0, -13px) rotate(0);
}

.hamburger__hidden {
    opacity: 0;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    top: 50%;
    transform: translate(51px, -50%);
}

.hamburger__hidden::before, .hamburger__hidden::after {
    width: 100%;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    content: "";
    transform: translate(102px, 0);
}

.hamburger__hidden::before {
    top: -13px;
}

.hamburger__hidden::after {
    top: 13px;
}


/* e:햄버거버튼 */

/* s:all_menu */
#all_menu {
    width:50%;
    height:100vh;
    position:fixed;
    top:0;
    right:0;
    background-color:#fff;
    z-index:999;
    transform: translateX(110%);
    padding: 120px 0px 0px 60px;
}
 #all_menu.on {
    transform: translate(0);
    transition: .5s linear;
}
#all_menu ul{

}

 #all_menu .menu_li {
    width:100%;
    font-size: 15px;
}
#all_menu .menu_li>a{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 60px;
    cursor: pointer;
    font-family: 'SpoqaHanSansNeo-Bold';
    position: relative;
    word-break: keep-all;
}
#all_menu .menu_li>a::after{
    content:"";
    width: 0%;height: 6px;
    position: absolute;
    bottom: 3px;left: 0;
    background-color: #000;
    transition: .5s ease;
}
#all_menu .menu_li>a:hover::after{
    width:100%;
}

.all_menu_logo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.all_menu_logo img{
    width:100px;
}
.all_ul{
    padding-left: 10px;
}

.all_li>a{
    display: inline-block;
    padding-top: 10px;;
    font-size: 20px;
    color: #666;
    position: relative;
}
.all_li>a::after{
    content:"";
    width: 0%;height: 3px;
    background-color: #666;
    position: absolute;
    bottom: 0;left: 0;
    transition: .5s ease;
}
.all_li>a:hover::after{
    width: 100%;
}


#all_menu .all_box {
    display:none;
}
#all_menu .all_box.on {
    display:block;
    transition-duration:0.6s;
}

#all_menu>dl dt{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 60px;
}
#all_menu>dl dd{
    font-size: 16px;
    font-weight: 400;
    color: #585858;
    margin-top: 40px;
}

@media screen and (max-width:1440px) {
    #all_menu{
        padding: 60px 0px 0px 50px;
    }
    #all_menu .menu_li>a{
        font-size: 40px;
    }
    .all_li>a{
        font-size: 16px;
    }
}
@media screen and (max-width:1000px) {
    #all_menu{
        width: 100%;
    }
    #all_menu .menu_li>a::after{
        height: 3px;
    }
}
@media screen and (max-width:600px) {
    #all_menu{
        padding:60px 0px 0px 20px
    }
    #all_menu .menu_li>a{
        font-size: 35px;
    }
    #all_menu>dl dt{
        font-size: 18px;
    }
    #all_menu>dl dd{
        font-size: 14px;
    }
}
/* e:all_menu */



/*sidebar :s */

.sidebar{
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99999999;
}

.sidebar li{
    width:60px;height: 60px;
    border-radius: 100%;
    background-color: #e60049;
    font-size: 25px;
    display: flex;align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 15px;
    box-sizing: 0px 3px 3px #c1c1c1;
}
.sidebar li a{
    color: #fff;
}
.sidebar li:last-child{
    background-color: #fff;
    box-shadow: 0px 3px 3px #c6c6c6;
}
@media screen and (max-width:1440px) {
    .sidebar li{
        width:55px;height: 55px;
    }
}
/*sidebar :e */

@media screen and (max-width:1240px) {
    #header > .inner{
        width:100%;
    }
}
@media screen and (max-width:1500px) {
    #header .logo{
        left: 43px;
    }

}
@media screen and (max-width:1240px) {
    #header .logo{
        position: sticky;
        top: inherit;
        left: inherit;
    }
    #header.on .logo{
        margin-left: 0;
    }
    #header{
        background-color: #000;
        position: fixed;
        padding: 8px 0px;
    }
    #header .mo_logo{
        display: block;
    }
    #header .pc_logo{
        display: none;
    }


    #header .inner .menu_ul{
        margin-left: 45px;
    }
    #header .inner .menu_ul li{
        font-size: 16px;
    }
    #header > .inner{
        justify-content: space-between;
        padding:0px 30px;
    }
    .member{
        display: none;
    }
    .hamburger{
        display: block;
        position: inherit;
        top: inherit;
        right: inherit;
    }
    
    #all_menu{
        display: block;
    }

}
@media screen and (max-width:1000px) {
    #header .inner .menu_ul{
        display: none;
    }

}
@media screen and (max-width:600px) {
    #header .logo{
        width:140px
    }
    #header .inner{
        padding:10px 15px
    }
    #header.on .logo{
        margin-left: 10px;
    }
    #header .inner{
        padding:0px 15px;
    }
    #all_menu{
        width:100%;
    }
    .hamburger__container{
        width:25px
    }


    
}

/* 팝업 */
#hd_pops_1 {
    position: fixed;
    z-index: 999999;
}

@media (max-width: 700px) {
    #hd_pops_1 .hd_pops_con {
        width: 380px !important;
        height: 538px !important;
    }
}

@media (max-width: 400px) {
    #hd_pops_1 .hd_pops_con {
        width: 282px !important;
        height: 400px !important;
    }
}