/* カートカウントバッジを右上に配置 */

header .inner{
    position: relative;
}


span.fs-client-cart-count{
    position: absolute;
        top: 18px;
    right: 130px;
    z-index: 99;
    background-color: #42524F;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: normal;
}

@media (max-width: 1420px){
span.fs-client-cart-count{
    top: 18px;
    right: 122px;
}


@media (max-width: 767px){
span.fs-client-cart-count{
    top: 12px;
    right: 7px;
}
}



