/* セクション余白 */
.section.shop {
    padding-block: clamp(6rem, 9vw, 14rem);
}

.shop__container {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: clamp(6rem, 10vw, 16rem);
}

.shop__item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: var(--space-2xl);
}

.shop__item02 {
    grid-template-columns: 1fr auto;
}

.shop__photo {
    width: clamp(280px, 34vw, 337px);
    height: auto;
    display: block;
}

/* テキストボックス */
.shop__text-container {
    text-align: left;
}

/* 見出し */
.shop__title {
    color: #7D413B;
    font-family: var(--font-serif-ja);
    font-size: clamp(2.1rem, 2.2vw, 3.1rem);
    letter-spacing: .1em;
    line-height: 1.54;
}

/* 仕切り線 */
.shop-card__rule {
    width: 100%;
    height: 1px;
    margin: 22px 0;
    border: 0;
    background: #E9DCDC;
}

/* 説明文 */
.shop__text-box {
    margin-top: clamp(1.2rem, 1.6vw, 2.7rem);
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
    line-height: 1.9;
    color: #6e6363;
}

/* ボタンエリア */
.shop__btn-area {
    margin-top: clamp(2.2rem, 3vw, 4.9rem);
    text-align: left;
}

/* ===================== レスポンシブ ===================== */
@media (max-width: 960px) {
    .shop__title {
        font-size: clamp(2rem, 2.6vw, 2.8rem);
    }

    .shop__text-box {
        font-size: clamp(1.4rem, 1.7vw, 1.5rem);
    }
}

@media (max-width: 768px) {
    .section.shop {
        padding-block: 5.5rem 7rem;
    }

    .shop__container {
        row-gap: 11rem;
    }

    /* 1カラム化 */
    .shop__item,
    .shop__item02 {
        grid-template-columns: 1fr;
        row-gap: var(--space-md);
        align-items: start;
    }

    .shop__item .shop__photo,
    .shop__item .shop__text-container,
    .shop__item02 .shop__photo,
    .shop__item02 .shop__text-container {
        grid-column: 1;
    }

    .shop__item02 picture {
        grid-row: 1;
    }

    .shop__item02 .shop__text-container {
        grid-row: 2;
    }

    .shop__title {
        font-size: 2.1rem;
        font-weight: 500;
        line-height: 1.42;
    }

    .shop-card__rule {
        margin: 14px 0;
    }

    .shop__text-box {
        margin-top: 1.6rem;
        font-size: 1.4rem;
        line-height: 1.74;
        color: #645959;
    }

    .shop__btn-area {
        text-align: center;
        margin-top: 2.8rem;
    }

    .shop__photo {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}