#header{
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.m_header01{
    width: 100%;
    height: 70px;
    padding: 0 3%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    background-color: #fff;
}

.m_header01 .center{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m_header01 a{
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m_header01 a img{
    width: 100%;
}

.menu_icon{
    display: flex;
    align-items: center;
}

.ver{
    font-size: 12px;
    border: 1px solid #00529b;
    padding: 2px 10px;
    color: #144f92;
    display: inline-block;
    border-radius: 50px;
    margin-right: 10px
}

.hamburger .line{
    width: 25px;
    height: 3px;
    background-color: #00529b;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-9{
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-9.is-active{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger-9:before{
    content: "";
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-9.is-active .line{
    width: 25px;
}

#hamburger-9.is-active .line:nth-child(2){
    opacity: 0;
}

#hamburger-9.is-active .line:nth-child(1){
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}

#hamburger-9.is-active .line:nth-child(3){
    -webkit-transform: translateY(-8px) rotate(90deg);
    -ms-transform: translateY(-8px) rotate(90deg);
    -o-transform: translateY(-8px) rotate(90deg);
    transform: translateY(-8px) rotate(90deg);
}

.m_menubox{
    width: 100%;
    border-top: 1px solid #d2d2d2;
    z-index: 99999;
    background-color: #fff;
    display: none;
}

ul.m_menu{
    width: 100%;
}

ul.m_menu>li{
    width: 100%;
    padding: 15px 0;
    position: relative;
}

ul.m_menu>li:not(:last-child){
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

ul.m_menu>li>a{
    font-size: 16px;
    display: flex;
    width: 40%;
    height: 100%;
    text-align: center;
    color: #555;
    transform: skew(-0.1deg);
    font-weight: bold;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
}

ul.m_menu>li>a i{
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: right;
}

ul.m_menu>li>a i.xi-angle-up-min{
    display: none;
}

ul.s_menu{
    display: none;
    width: 40%;
    margin: 5px auto 0;
}

ul.s_menu li{
    width: 100%;
    padding-top: 10px;
}

ul.s_menu li a{
    font-size: 14px;
    color: #555;
}
