.shop-card { 
    border: 1px solid #ccc;
    border-radius: 4px;
    padding:20px;
    width: 100%;
    display:flex;
    gap:20px;
}
.shop-card__image {
    flex: 0 0 150px;
    width: 100%;
    height: 150px;
    margin: 0;
}
.shop-card__image a {
    display: block;
    text-align: center;
    align-content: center;
    width: 100%;
    height: 100%;
}
.shop-card__image img {
    vertical-align:middle;
    border-radius: 5px;
    width: auto;
    max-height: 150px;
}
.shop-card__content {
    flex: 1;
}
.shop-card__title {
    font-weight: bold;
    font-size: 18px;
    padding: 15px 0;
}
.shop-card__buttons {
    display: flex;
    gap: 10px;
}
.shop-card__buttons a {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    white-space: nowrap;
}
.shop-card__buttons a:hover {
    color: #fff;
}
.shop-card__button-amazon {
    background: #111111cc;
}
.shop-card__button-rakuten {
    background: #aa4444cc;
}
.shop-card__add-button {
    background: #114499cc;
}
.shop-card__button1 {
    background: #008888cc;
}
@media screen and (max-width: 480px){
    .shop-card {
        padding: 10px;
        gap: 10px;
    }
    .shop-card__image {
        flex: 0 0 120px;
        height: 120px;
    }
    .shop-card__image img {
        max-height: 120px;
    }
    .shop-card__title {
        padding: 0 0 10px 0;
    }
    .shop-card__buttons, .shop-card__buttons a {
        display: block;
    }
    .shop-card__buttons a {
        margin-bottom: 5px;
        font-size: 11px;
    }
}