@charset "UTF-8";

@import url(../css/reset.css);


/* side menu bar */
#wrap{
    max-width: 100%;
    overflow-y: hidden;
}

#header{
    height:100vh;
    position:relative;
}
.open_btn{
    position:absolute;
    top:60px; right:3%;
    width:45px; height:34px;
    transition:all 0.3s;
}
.open_btn span{
    width:100%; height:4px;
    border-radius:8px;
    background-color:#034EA2;
    transition:all 0.2s;
    position:absolute;
    left:0;
    z-index:30;
}
.open_btn span:nth-child(1){top:0;}
.open_btn span:nth-child(2), .open_btn span:nth-child(3){top:13px;}
.open_btn span:nth-child(4){top:26px;}
.open_btn.active span:nth-child(1), .open_btn.active span:nth-child(4){opacity:0;}
.open_btn.active span:nth-child(2){transform:rotate(45deg); background-color: #fff; z-index: 100;}
.open_btn.active span:nth-child(3){transform:rotate(-45deg); background-color: #fff; z-index: 100;}

.over{
    position:fixed;
    background-color:#034EA2;
    top:0; right:0;
    width:480px; height:860px;
    text-align:center;
    transition:all 0.5s;
    opacity:0;

}
.menu{
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%, -50%);
}
.menu li{
    margin:25px 0;
}
.menu li a{
    color:#fff;
    font-size:23px;
    font-weight:bold;
}
.menu li:hover a{
    opacity: 0.6;
}
.over.block{
    opacity:1;
}

.over.ready{
    z-index: 50;
}
/* side menu bar */

#Main{
    background-repeat: no-repeat;
    position: relative;
    height: 860px;
    background-size: cover;
}
#Main .title{
    width: 250px;
    height: 50px;
    background-color: #034EA2;
    border-radius: 0 100px 100px 0;
    padding: 20px 0 20px 100px;
    margin-top: 50px;
    position: absolute;
}
#Main .title h1{
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}
#Main .title h3{
    color: #e3e3e3;
    font-weight:300;
}




button {
    background:none;
    border:0;
    outline:0;
    cursor:pointer;
}
#Main .tab_wrap{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}
  .tab_menu_container {
    display: inline-flex;
  }
  .tab_menu_btn {
    width:156px;
    height:60px;
    transition: ease 0.2s;
    font-size: 18px;
    border-bottom:3px solid #eee;
    color: #bbb;
  }
  .tab_menu_btn.on {
    border-bottom:3px solid #034EA2;
    font-weight:700;
    color:#034EA2;
  }
  .tab_menu_btn:hover {
    color:#034EA2;
    border-bottom:3px solid #034EA2;
    transition: ease-in 0.4s;
  }
  .tab_box {
    padding:30px;
    line-height: 23px;
    display: none;
  }
  .tab_box.on {
    display:block;
  }
  .tab_box p{
      margin: 30px 0;
  }
  .tab_box_container .tab_box .contents .map{
      width: 1200px;
      height: 350px;
  }
.tab_box_container .tab_box .contents .box{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.tab_box_container .tab_box .contents .box li{
    width: 20%;
    height: 130px;
    border: 1px solid #eee;
    padding: 20px;
    background-color: #fff;
}
.tab_box_container .tab_box .contents .box li .name{
    margin-bottom: 20px;
}
.tab_box_container .tab_box .contents .box li i{
    color: #034EA2;
    margin-bottom: 10px;
}
.tab_box_container .tab_box .contents .box li h3{
    font-weight: bold;
}


.tab_box_container .tab_box .contents .box li:hover{
    background-color: #f3f3f3;
    transition: ease 0.4s;
}




/* footer section */
#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;
}
#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{
        overflow-y: unset;
    }
    #header{
        height: unset;
    }
    .open_btn{
        right:8%;
    }
    .over{
        width: 100%;
        height: 700px;
    }
    #Main{
        background-image: unset;
        position: relative;
        height: 1200px;
    }
    #Main .title{
        width: 180px;
        padding: 20px 0 20px 50px;
    }
    #Main .BOX{
        display: block;
    }
    #Main .BOX .box .text{
        top: 15%;
    }
    #Main .BOX .box .text h2{
        width: 180px;
    }
    #Main .BOX .box .cont{
        width: 85%;
        top: 22%;
    }
    #Main .BOX .box .cont h1{
        width: 350px;
        font-size: 24px;
    }

    #Main .BOX .box .text_2{
        width: 180px;
        top: 43%;
    }
    #Main .BOX .box .cont_1{
        top: 50%;
        left: 2%;
    }
    #Main .BOX .box .cont_1 img{
        width: 95%;
    }
    #Main .BOX .box .text_3{
        left: unset;
        width: 180px;
        top: 63%;
    }
    #Main .BOX .box .cont_2{
        top: 68%;
        width: 80%;
    }
    #Main .BOX .box .cont_2 img{
        width: 100%;
    }
    #Main .tab_wrap{
        width: 100%;
        top: 15%;
    }
    .tab_menu_container{
        width: 80%;
    }

    .tab_menu_btn{
        width: 100%;
        font-size: 16px;
    }
    .tab_box_container .tab_box .contents .map{
        width: 100%;
    }
    .tab_box_container .tab_box .contents .box{
        display: block;
    }
    .tab_box_container .tab_box .contents .box li{
        width: unset;
        height: unset;
        display: flex;
        padding: 20px 50px;
        margin-bottom: 20px;
    }
    .tab_box_container .tab_box .contents .box li .name{
        margin-bottom: unset;
        width: 100px;
        padding-right: 10px;
    }
    .tab_box_container .tab_box .contents .box li h5{
        text-align: left;
    }

    #footer{
        height: unset;
        width: 100%;
    }
    #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;
    }
    #footer .footer_section .right .button:nth-child(1) a .tit{
        margin-left: 30px;
    }


}