/*--menu--*/
body {
    padding-top: 45px;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 45px;
    overflow: hidden;
    background-color: #000000;
    z-index: 1000;
}
.hwrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1%;
    position: relative;
    height: 100%;
}
header .logo, header .cart {
    position: absolute;
    height: 100%;
}
header .logo {
    width: 150px;
}
header .cart {
    width: 40px;
    right: 1%;
}
.logo {
    background: url(../menu_img/eyemirrorlogo_s.svg) no-repeat left center ;
    background-size: 100%;
}
.cart {
    background: url(../menu_img/cart_w.png) no-repeat right center;
    background-size: 100%;
}
.hwrap .link {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

@media screen and (max-width: 1023px) {
    body {
        padding-top: 15vw;
    }
    header {
        height: 15vw;
    }
    header .logo {
        width: 30vw;
    }
    header .cart {
        width: 10vw;
    }
}