/* headerStyle_6 */
 #cms-pc-header {
    background-color: rgba(var(--color_bg));
    border-bottom-color: rgba(var(--color_primary)) !important;
    border-bottom-width: 1px;
}

#cms-sp-header {
    background-color: rgba(var(--color_bg));
    border-bottom-color: rgba(var(--color_primary));
    border-bottom-width: 1px;
}

#cms-pc-header .menu_list_wrap {
    height: 100%;
    margin: 0;
    display: flex;
}

.menu_list_wrap li {
    height: 100%;
    margin: 0;
}

.menu_list_wrap li a{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    color: rgba(var(--color_main_text));
    background-color: rgba(var(--color_primary));
}

.menu_list_wrap li:last-child a {
    color: rgba(var(--color_text));
    background-color: rgba(var(--color_accent));
    position: relative;
    padding-top: 35px;
}

.menu_list_wrap li:last-child a::before{
    content: "";
    position: absolute;
    -webkit-mask: url('/img/admin/cms-dropdown-conf-menu/last_item_icon.svg');
    mask: url('/img/admin/cms-dropdown-conf-menu/last_item_icon.svg') no-repeat center center / contain;
    background-color: rgba(var(--color_text));
    width: 28px;
    height: 28px;
    top: 24px;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    overflow: hidden;
    left: 50%;
    transform: translate(-50%, 0);
}

.menu_list_wrap li a:hover{
    color: rgba(var(--color_main_text), .6);
}
.menu_list_wrap li a.active {
    color: rgba(var(--color_main_text));
}

.menu_list_wrap li:last-child a:hover{
    color: rgba(var(--color_text), .6);
}

.menu_list_wrap li:last-child a:hover::before{
    background-color: rgba(var(--color_text), .6);
}

.menu_list_wrap li:last-child a.active {
    color: rgba(var(--color_text));
}

@media screen and (max-width: 1400px) {
    .menu_list_wrap li a {
        padding: 0 1em;
    }
}

@media screen and (max-width: 1023px) {
    #cms-sp-header-btn {
        position: absolute;
        right: 0;
        height: 100%;
        width: 60px;
        background-color: rgba(var(--color_accent));
        justify-content: space-evenly;
        padding: 8px 0;
        transition: .3s;
    }

    #cms-sp-header-btn span {
        height: 2px;
        min-height: 2px;
        background-color: rgba(var(--color_text));
    }

    #cms-sp-header-btn.open{
        right: 80%;
        transition: .3s;
    }

    #cms-sp-menu {
        background-color: rgba(var(--color_primary));
        top: 0px;
        width: 80%;
        right: -80%;
        left: auto;
        height: 100vh;
        padding: 60px 0 0 0;
        margin: 0;
    }

    #cms-sp-header-btn.open .menu_top,
    #cms-sp-header-btn.open .menu_bottom {
        transform: rotate(0deg);
        position: relative;
    }

    #cms-sp-header-btn span.menu_middle {
        visibility: visible;
        display: block;
    }

    #cms-sp-header-btn.open span.menu_middle{
        position: relative;
        display: block;
    }

    #cms-sp-menu-wrap,
    .menu_list_wrap {
        width: 100%;
        margin: auto;
    }

    .menu_list_wrap li {
        height: 50px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border: none;
        margin-left: 30px;
    }

    .menu_list_wrap li a{
        flex-direction:inherit;
        justify-content: flex-start;
        width: 80%;
        padding: 0 1em;
    }

    .menu_list_wrap li:last-child a{
        padding-top:0;
    }

    .menu_list_wrap li:last-child a::before{
        top: 50%;
        left: auto;
        right: 10px;
        transform: translate(0, -50%);
    }

    .menu_list_wrap li a::after {
        content: none;
        background-image: none;
        background-size: auto;
    }

    #cms-sp-menu #cms-sp-menu-close-btn{
        display: block;
        position: absolute;
        color: rgba(var(--color_main_text));
        font-size: 27px;
        right: 20px;
        top: 7px;
    }
}

@media screen and (max-width: 599px) {
}
