sticky-nav{
    padding-block: 14px;
    width: 100%;
    transition: all 0.3s;
    display: block;
}
sticky-nav .sticky-nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
sticky-nav.is-fixed{
    position: fixed;
    top: var(--top);
    z-index: 10;
    background-color: rgba(var(--color-background));
}

sticky-nav .button-group{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-left: auto;
    align-items: center;
}
sticky-nav .link-group{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
sticky-nav .add-to{
    flex-shrink: 0;
    --color-button-text:51,51,51;
    --color-button-background:233,255,0;
    --button-border-width:0;
    padding-block: 10px;
}

sticky-nav .sticky-nav-logo{
    width: 150px;
}
sticky-nav .sticky-nav-item{
    position: relative;
}

sticky-nav .sticky-nav-item a.active{
    box-shadow: inset 0 0 0 var(--button-border-width, 1px) rgb(var(--color-button-secondary-border),0.3);
    color: rgb(var(--color-button-secondary-text));
    background-color: rgb(var(--color-button-secondary-background));
}
sticky-nav .add-to-wrapper{
    display: flex;
    justify-content: flex-end;
}
sticky-nav .sticky-icon{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
}
sticky-nav .sticky-nav-item a{
    font-size: var(--text-size-pc);
    line-height: var(--text-height-pc);
}
@media(max-width:959px){
    sticky-nav .sticky-nav-container{
        flex-direction: column-reverse;
        gap: 15px;
    }
    sticky-nav .scroll-container{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    sticky-nav .scroll-container:has(.sticky-icon){
        padding-top: 20px;
    }
    sticky-nav .scroll-container::-webkit-scrollbar{
        display: none;
    }
    sticky-nav .link-group{
        flex-wrap: nowrap;
    }
    sticky-nav .sticky-nav-item{
        flex: 0 0 auto;
    }
    sticky-nav .add-to-wrapper{
        width: 100%;
        justify-content: center;
    }
    sticky-nav .sticky-icon{
        width: 24px;
        height: 24px;
    }
    sticky-nav .sticky-nav-item a{
        font-size: var(--text-size-mobile);
        line-height: var(--text-height-mobile);
    }
}