header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
header .header_inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    padding: 0 78px;
    background: #fff;
}
header .header_logo {
    display: flex;
    align-items: center;
    width: 200px;
    height: auto;
}
header .header_logo img {
    width: 100%;
    height: auto;
}
header .log_txt {
    margin-right: 15px;
    transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
    header .log_txt:hover {
        color: var(--accent-color);
    }
}
header .menu_box {
    display: flex;
    align-items: center;
    gap: 5px;
}
header .menu_box svg {
    width: 46px;
    height: 46px;
}
header .menu_box a:hover svg path,
header .menu_box button:hover svg path {
    transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
    header .menu_box a:hover svg path,
    header .menu_box button:hover svg path {
        stroke: var(--accent-color);
    }
}
.ic_cart {
    position: relative;
}
.ic_cart .cart_badge {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #F1462F;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-sub);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0;
}
header nav.menu_content {
    position: fixed;
    top: -150vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100vh;
    transition: .5s;
}
header .menu_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: calc(100vh - 100px);
    pointer-events: none;
}
header .menu_close {
    position: absolute;
    top: 30px;
    right: calc(5% + 30px);
    z-index: 50;
    cursor: pointer;
    transition: .3s;
}
header .menu_close:hover svg path {
    transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
    header .menu_close:hover svg path {
        stroke: var(--accent-color);
    }
}
header .menu_inner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: auto;
    z-index: 20;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: max-content;
    width: 90%;
    max-height: 80svh;
    padding: 30px 5%;
    background: #fff;
    border: 1px solid var(--sub-color);
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}
header .menu_inner .menu_list_box {
    max-height: 100%;
    padding: 90px 3%;
    border-left: 1px solid var(--sub-color);
}
header .menu_inner .menu_list_box.sp {
    display: none;
}
header .menu_inner .menu_list_box:first-of-type {
    border-left: none;
}
header .menu_inner .menu_list_box .menu_heading {
    font-size: clamp(24px,2.5vw,35px);
    color: var(--main-color);
    white-space: nowrap;
}
header .menu_inner .menu_list_box ul {
    margin-top: 32px;
}
header .menu_inner .menu_list_box ul li {
    font-size: 16px;
}
header .menu_inner .menu_list_box ul li + li {
    margin-top: 10px;
}
header .menu_inner .menu_list_box a {
    color: var(--main-color);
}
@media (hover: hover) and (pointer: fine) {
    header .menu_inner .menu_list_box a:hover {
        opacity: .6;
    }
}
header nav.menu_content.open {
    top: 100px;
}
header .menu_toggle.open + nav {
    right: 0;
}
header .menu_bg.open {
    pointer-events: all;
}
header.header_small {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    background: #fff;
}
header.header_small a {
    width: 292px;
    height: auto;
}
header.header_small img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:990px) {
    header .menu_inner {
        overflow-y: scroll;
        flex-direction: column;
        width: 80%;
    }
    header .menu_close {
        right: calc(10% + 30px);
    }
    header .menu_inner .menu_list_box.sp {
        display: block;
    }    
    header .menu_inner .menu_list_box {
        padding: 32px 0;
        border-left: none;
        border-bottom: 1px solid var(--sub-color);
    }
    header .menu_inner .menu_list_box ul {
        margin-top: 8px;
    }
    header .menu_inner .menu_list_box:last-of-type {
        border: none;
    }
}
@media screen and (max-width:768px) {
    header .log_txt {
        display: none;
    }
    header .header_logo {
        width: 40%;
        min-width: 180px;
    }
    header .header_inner {
        padding: 0 40px;
        height: 80px;
    }
    header nav.menu_content.open {
        top: 80px;
    }
    header.header_small {
        height: 80px;
    }
    header.header_small a {
        width: 40%;
        min-width: 200px;
    }
}
@media screen and (max-width:500px) {
    header .header_inner {
        padding: 0 10px 0 20px;
    }
    header .menu_inner {
        width: 96%;
    }
    header .menu_close {
        right: calc(2% + 30px);
    }
    header .menu_box img {
        width: 42px;
        height: 42px;
    }
}