@charset "UTF-8";

.nav_wrap{
    top: 0;
    width: 100%;
    z-index: 100;
}
.nav_common{
    background: #000;
    border-top: 1px solid #7d7d7d;
    border-bottom: 1px solid #7d7d7d;
}
.nav_list{
    display: -ms-flexbox;
  display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    border-left: 1px solid #7d7d7d;
}
.nav_list li{
    -ms-flex-basis: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    text-align: center;
    border-right: 1px solid #7d7d7d;
}
.nav_list li a{
    display: inline-block;
    width: 100%;
    padding: 16px 0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: .2s;
}
.nav_list li a:hover{
    text-decoration: none;
    background: #434343;
}
.nav_list .active{
    background: #c00;
}
.nav_list .active a:hover{
    background: #c00;
}
.nav_list .current{
    background: #434343;
}
