@charset "UTF-8";
@import url(reset.css);

html,body{
    transition: 0.5s;
}
/* ############### header영역 ############### */
#header{
    position: fixed;
    width: 100vw;
    z-index: 9999999;
}
#header .header_logo{
    position: absolute;
    left: 55px;
    top: 55px;
}
#header .header_logo img{}
#header .header_menu{
    position: absolute;
    right: 95px;
}
#header .header_menu .header_menu_btn{
    position: absolute;
    top: 78px;
    z-index: 99999;
}
#header .header_menu .header_menu_btn span{
    display: block;
    width: 25px;
    height: 4px;
    background: #333;
    margin-bottom: 5px;
    transition: 0.3s;
}
#header .header_menu .header_menu_btn:hover span{
    margin-bottom: 4px;
}
#header .header_menu .header_menu_btn span:last-child{
    margin-bottom: 0;
}
#header .header_menu.navOn .header_menu_btn span:nth-child(1){
    transform: rotate(45deg) translateY(11px);
}
#header .header_menu.navOn .header_menu_btn span:nth-child(2){
    opacity: 0;
    margin-left: 5px;
}
#header .header_menu.navOn .header_menu_btn span:nth-child(3){
    transform: rotate(-45deg) translate(2px,-13px);
}
#header .header_menu.navOn .header_menu_btn:hover span{
    margin-bottom: 5px;
}
#header .header_menu .header_menu_list{
    position: absolute;
    top: 0;
    left: -95.6vw;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    box-sizing: border-box;
}
#header .header_menu .header_menu_list .menu_wrap{
    position: absolute;
    top: 50%;
    left: 7vw;
    transform: translateY(-50%);
}
#header .header_menu .header_menu_list .menu_list{}
#header .header_menu .header_menu_list .menu_list li{
    margin-bottom: 50px;
    position: relative;
}
#header .header_menu .header_menu_list .menu_list li:nth-child(3) .counting1{
    width: 78px;
    height: 78px;
    background: #ff0b34;
    border-radius: 50%;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    text-align: center;
    line-height: 78px;
    position: absolute;
    top: -30px;
    right: -25px;
    z-index: -1;
    animation: floating 4s linear infinite;
}

@keyframes floating{
    25%{
        top: -24px;
    }
    50%{
        top: -30px;
    }
    75%{
        top: -24px;
    }
    100%{
        top: -30px;
    }
}

#header .header_menu .header_menu_list .menu_list li a{
    font-weight: 800;
    font-size: 80px;
    color: #333;
    transition: 0.3s;
}
#header .header_menu .header_menu_list .menu_list li:hover a{
    color: #ff0b34;
}
#header .header_menu .header_menu_list .menu_sns{
    display: inline-block;
}
#header .header_menu .header_menu_list .menu_sns li{
    margin-bottom: 20px;
}
#header .header_menu .header_menu_list .menu_sns li a{
    font-size: 20px;
    transition: 0.3s;
}
#header .header_menu .header_menu_list .menu_sns li:hover a{
    color: #ff0b34;
}
#header .header_menu.navOn .header_menu_list{
    opacity: 1;
    pointer-events: all;
}


#header.motion .header_menu .header_menu_list{
    background: #222;
}
#header.motion .header_menu .header_menu_list .menu_list li a{
    color: #fff;
}
#header.motion .header_menu .header_menu_list .menu_list li:hover a{
    color: #ff0b34;
}
#header.motion .header_menu .header_menu_list .menu_sns li a{
    color: #a7a7a7;
}
#header.motion .header_menu .header_menu_list .menu_sns li:hover a{
    color: #ff0b34;
}

/* ############### 첫번째 영역 ############### */
#main_sec1{
    
}
#main_sec1 .login_wrap{
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 200px;
    padding-bottom: 110px;
}
#main_sec1 .login_wrap .login_left{
    float: left;
    width: 46.5%;
    height: 415px;
    border-right: 3px solid #c1c1c1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#main_sec1 .login_wrap .login_left .main_title{
    font-size: 130px;
    font-weight: bold;
    color: #333;
    letter-spacing: -5px;
}
#main_sec1 .login_wrap .login_left .main_title .accent{
    font-size: 130px;
    color: #ff0b34;
    font-weight: bold;
}
#main_sec1 .login_wrap .login_left p{
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

#main_sec1 .login_wrap .login_right{
    float: left;
    width: 52.5%;
    height: 415px;
    display: flex;
}
#main_sec1 .login_wrap .login_right .login_form{
    width: 65%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#main_sec1 .login_wrap .login_right .login_form .input_id{
    color: #333;
    display: block;
    letter-spacing: -1px;
}
#main_sec1 .login_wrap .login_right .login_form .input_id input{
    display: block;
    padding: 10px 20px;
    width: 100%;
    margin-top: 10px;
    box-sizing: border-box;
    border: 2px solid #ddd;
    outline: none;
    letter-spacing: -1px;
}
#main_sec1 .login_wrap .login_right .login_form .input_id input:focus{
    border: 2px solid #ff0b34;
}
#main_sec1 .login_wrap .login_right .login_form .input_id input::placeholder{
    color: #ccc;
    letter-spacing: -1px;
}

#main_sec1 .login_wrap .login_right .login_form .input_pw{
    color: #333;
    margin-top: 20px;
    display: block;
    letter-spacing: -1px;
}
#main_sec1 .login_wrap .login_right .login_form .input_pw input{
    display: block;
    padding: 10px 20px;
    width: 100%;
    margin-top: 10px;
    box-sizing: border-box;
    border: 2px solid #ddd;
    outline: none;
    letter-spacing: -1px;
}
#main_sec1 .login_wrap .login_right .login_form .input_pw input:focus{
    border: 2px solid #ff0c34;
}
#main_sec1 .login_wrap .login_right .login_form .input_pw input::placeholder{
    color: #ccc;
    letter-spacing: -1px;
}

#main_sec1 .login_wrap .login_right .login_form .login_btn{
    display: block;
    width: 100%;
    padding: 10px 20px;
    margin-top: 30px;
    color: #fff;
    background: #ff0c34;
    border: 2px solid #ff0c34;
    outline: none;
    cursor: pointer;
    letter-spacing: -1px;
}

#main_sec1 .login_wrap .login_form .auto_login{
    text-align: center;
    margin-top: 15px;
}
#main_sec1 .login_wrap .login_form .auto_login input{
    cursor: pointer;
}
#main_sec1 .login_wrap .login_form .auto_login label{
    color: #989898;
    letter-spacing: -1px;
}












/* ############### quick menu ############### */
.quick_btn{
    position: absolute;
    top: 40vh;
    right: 0;
    writing-mode: vertical-rl;
    width: 50px;
    height: 180px;
    background: #333;
    color: #fff;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    letter-spacing: -0.5px;
    cursor: pointer;
}
.quick_btn .accent{
    color: #ff0b34;
    font-weight: 700;
}
.quick_btn img{
    padding-top: 20px;
    padding-right: 20px;
}


/* ############################################
############## 반응형 - mobile #################
############################################### */

@media screen and (max-width: 600px){
    #header .header_logo {
        left: 20px;
        top: 35px;
        width: 40px;
    }
    #header .header_logo img {
        width: 100%;
    }
    #header .header_menu{
        right: 60px;
    }
    #header .header_menu .header_menu_btn{
        top: 44px;
    }
    #header .header_menu .header_menu_list{
        left: -84vw;
        width: 101vw;
    }
    #header .header_menu .header_menu_list .menu_list li a{
        font-size: 50px;
        display: block;
    }
    #header .header_menu .header_menu_list .menu_list li:nth-of-type(3) .counting1{
        width: 65px;
        height: 65px;
        font-size: 22px;
        line-height: 65px;
    }
    #header .header_menu .header_menu_list .menu_sns li a{
        font-size: 17px;
    }

    #main_sec1 .login_wrap{
        width: 90%;
        padding-top: 130px;
        padding-bottom: 80px;
    }
    #main_sec1 .login_wrap .login_left{
        float: none;
        width: 100%;
        border-right: none;
        text-align: center;
        height: auto;
    }
    #main_sec1 .login_wrap .login_left .main_title{
        font-size: 75px;
    }
    #main_sec1 .login_wrap .login_left .main_title .accent{
        font-size: 75px;
    }
    #main_sec1 .login_wrap .login_left p{
        font-size: 16px;
    }

    #main_sec1 .login_wrap .login_right{
        float: none;
        width: 100%;
        height: auto;
        margin-top: 40px;
    }
    #main_sec1 .login_wrap .login_right .login_form{
        width: 85%;
    }
    

    
    
    
    


    .quick_btn{
        width: 35px;
        height: 135px;
        line-height: 35px;
        font-size: 13px;
        z-index: 10;
    }
    .quick_btn img {
        padding-top: 10px;
        padding-right: 13px;
    }
}
