.shop-card { 
    border: 1px solid #ccc;
    border-radius: 4px;
    padding:20px;
    width: 100%;
    display:flex;
    gap:20px;
}
.sc__image img {
    vertical-align:middle;
    border-radius: 10px;
}
.sc__content {
    width: 100%;
}
.sc__title {
    font-weight: bold;
    font-size: 18px;
    padding: 15px 0;
}
.sc__buttons {
    display: flex;
    gap: 10px;
}
.sc__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;
}
.sc__buttons a:hover {
    color: #fff;
}
.sc__button-amazon {
    background: #000000cc;
}
.sc__button-rakuten {
    background: #c95656cc;
}
.sc__button1, .sc__button2 {
    background: #00aabbcc;
}
@media screen and (max-width: 480px){
    .shop-card {
        padding: 10px;
        gap: 10px;
    }
    .sc__image img {
        max-width: 80px;
    }
    .sc__title {
        padding: 0 0 10px 0;
    }
    .sc__buttons, .sc__buttons a {
        display: block;
    }
    .sc__buttons a {
      margin-bottom: 5px;
      font-size: 11px;
    }
}