.shop-banners{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.shop-banners a{
    padding:0 20px;
    display:block;
}

.shop-banners a:not(:last-child){
    border-right:1px solid rgba(0,0,0,0.15);
}

.shop-banners img{
    width:160px;
    height:auto;
    display:block;
}

/* 1003px以下 */
@media screen and (max-width:1003px){
    .shop-banners a{
        border-right:1px solid rgba(0,0,0,0.15);
    }
}

/* 390px以下はボーダーをすべて消す */
@media screen and (max-width:390px){
    .shop-banners a{
        border-right:none !important;
    }
}