/* ==========================================================================
   Shop Area (おすすめのSALE実施店舗)
   参考: https://car.rakuten.co.jp/carwash/campaign/summersale/2607/
   ========================================================================== */
.shopArea__inner {
    padding: 0;
}

.shopArea .shopArea_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    width: fit-content;
    margin: auto;
}

.shopArea_inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
    padding-top: 24px;
}

/* ===== shopCard ===== */
.shopCard {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: var(--button-border);
    border-radius: 7.87px;
    overflow: hidden;
    box-shadow: var(--button-shadow);
}

.shopCard_inner {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shopCard_badges {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.shopCard_badge {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    background-color: var(--color-crimson);
    border-radius: 3px;
    padding: 2px 6px;
}

.shopCard_name {
    font-size: var(--font-text-l);
    font-weight: bold;
    color: var(--color-dark-blue);
    line-height: 1.4;
}

.shopCard_body {
    display: flex;
    gap: 10px;
    padding: 12px 0px;
    align-items: stretch;
}

.shopCard_img_wrap {
    flex-shrink: 0;
    width: 110px;
    height: 82px;
    overflow: hidden;
    background: #eee;
}

.shopCard_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shopCard_info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    font-size: var(--font-text-m);
}

.shopCard_info_bottom {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shopCard_area {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.shopCard_rating {
    font-size: 12px;
    color: var(--color-text-primary);
    font-weight: bold;
}

.shopCard_price {
    text-align: right;
    color: var(--color-crimson);
    font-size: 24px;
    font-weight: bold;
}

.shopCard_comment {
    flex-grow: 1;
    padding-bottom: 12px;
    min-height: 44px;
}

.shopCard_comment--empty {
    padding-bottom: 0;
    min-height: 0;
}

.shopCard_comment_ttl {
    font-weight: bold;
}

.shopCard_comment p {
    font-size: 12px;
    line-height: 1.6;
    overflow: hidden;
}

.shopCard_btn {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: var(--font-text-ll);
    font-weight: bold;
    color: var(--color-crimson);
    background: #fff;
    border: 1.5px solid var(--color-crimson);
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.shopCard_btn:hover {
    background: var(--color-crimson);
    color: #fff;
}

@media (min-width: 768px) {
    .shopArea_inner {
        display: flex;
        justify-content: space-around;
        gap: 16px;
        max-width: 680px;
        padding-top: 24px;
        flex-wrap: wrap;
        flex-direction: row;
        align-content: flex-start;
        align-items: stretch;
    }
    .shopCard {
     display: block;
     max-width: 48%;
     width: 48%;
     max-height: 100%;
     margin: 0 auto;
    }
}
