@charset "UTF-8";

@import url(reset.css);

#wrap{
    max-width: 100%;
    overflow-y: hidden;
}


#Main{
    background-image: url(../img/main_bg.png);
    background-repeat: no-repeat;
    position: relative;
    height: 860px;
    background-size: cover;
}
#Main .Mmenu{
    position: absolute;
    top: 35%;
    right: 16%;
    text-align: center;
    width: 25%;
}
#Main .Mmenu .logo{
    margin-bottom: 10%;
    width: 450px;
}
#Main .Mmenu .logo a img{
    width: 350px;
    height: auto;
}
#Main .Mmenu .gnb_cover{
    display: flex;
    justify-content:space-evenly;
    width: 480px;
}
#Main .Mmenu .gnb_cover .gnb{
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 45%;
}
#Main .Mmenu .gnb_cover .gnb .drop{
    position: relative;
}
#Main .Mmenu .gnb_cover .gnb .drop a img{
    margin-bottom: 10px;
}
#Main .Mmenu .gnb_cover .gnb .drop .tit h3{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
#Main .Mmenu .gnb_cover .gnb .drop .tit{
    display: flex;
    justify-content: center;
}
#Main .Mmenu .gnb_cover .gnb .drop .tit h3{
    margin-right: 20px;
}
#Main .Mmenu .gnb_cover .gnb .drop .tit img{
    height: 12px;
    margin-top: 5px;
}
#Main .Mmenu .gnb_cover .gnb .drop ul{
    position: absolute;
    width: 80%;
    display: none;
}
#Main .Mmenu .gnb_cover .gnb .drop ul li{
    padding: 10px 20px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 100px;
    transition: ease 3s;
}
#Main .Mmenu .gnb_cover .gnb .drop:hover ul{
    display: block;
}
#Main .Mmenu .gnb_cover .gnb .drop ul li:hover{
    background-color: #034EA2;
    transition: ease 0.8s;
}
#Main .Mmenu .gnb_cover .gnb .drop ul li:hover a{
    color: #fff;
}



#footer{
    height: 70px;
    border-top: 1px solid #eee;
}
#footer .footer_section{
    display: flex;
    justify-content: center;
}
#footer .footer_section .left{
    width: 50%;
    border-right: 1px solid #eee;
    display: flex;
    justify-content: center;
    padding: 15px;
}
#footer .footer_section .left a .logo img{
    width: 160px;
    margin-right: 30px;
}
#footer .footer_section .left .tit h6{
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}
#footer .footer_section .right{
    width: 50%;
    display: flex;
    justify-content: end;
}
#footer .footer_section .right .button{
    width: 50%;
}
#footer .footer_section .right .button:nth-child(1){
    border-right: 1px solid #eee;
}
#footer .footer_section .right .button a{
    display: flex;
    justify-content: center;
    padding: 20px 50px;
}
#footer .footer_section .right .button a .arrow img{
    width: 20px;
    margin-right: 30px;
}
#footer .footer_section .right .button:nth-child(2) a .tit{
    margin-right: 30px;
    text-align: right;
}
#footer .footer_section .right .button a h3{
    margin-bottom: 5px;
}
#footer .footer_section .right .button a h5{
    font-size: 14px;
    color: #999;
}
#footer .footer_section .right .button:hover{
    background-color: #f3f3f3;
    transition: ease 0.8s;
}



@media all and (max-width:500px){
    #wrap{
        max-width: 100%;
        overflow-x: hidden;
    }
    #Main{
        background-image: url(../img/mobile_bg_4.jpg);
        background-repeat: no-repeat;
        position: relative;
        height: 860px;
        background-size: cover;
    }
    #Main .Mmenu{
        top: 5%;
        width: 100%;
        right: 0;
    }
    #Main .Mmenu .logo{
        width: unset;
        margin-bottom: 15%;
    }
    #Main .Mmenu .gnb_cover{
        flex: unset;
        width: unset;
    }
    #footer{
        height: unset;
    }
    #footer .footer_section{
        flex-direction:column-reverse;
    }
    #footer .footer_section .left{
        width: unset;
        display: unset;
        padding: 15px 20px;
    }
    #footer .footer_section .left .tit h6{
        width: 420px;
    }
    #footer .footer_section .right{
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    #footer .footer_section .right .button a{
        padding: 20px 10px;
    }
    #footer .footer_section .right .button a .arrow img{
        margin-right: unset;
    }

}