/* =========================================================
   Recommend
   ========================================================= */
.sg-recommend {
    width: 100%;
    padding: 0 0 70px;
}

/* -------------------------
   inner
------------------------- */
.sg-recommend .sgrec-inner {
    width: min(100%, 1140px);
    margin: 0 auto;
}

/* -------------------------
   pickup
------------------------- */
.sg-recommend .sgrec-pickup {
    padding: 10px 0 50px;
}

.sg-recommend .sgrec-pickup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

/* -------------------------
   list
------------------------- */
.sg-recommend .sgrec-list {
    padding-top: 10px;
}

.sg-recommend .sgrec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

/* -------------------------
   card
------------------------- */
.sg-recommend .sgrec-card {
    min-width: 0;
}

.sg-recommend .sgrec-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.sg-recommend .sgrec-card-fig {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin: 0;
}

.sg-recommend .sgrec-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sg-recommend .sgrec-card-img--ph {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .08));
}

.sg-recommend .sgrec-card-body {
    padding: 14px 2px 0;
}

.sg-recommend .sgrec-card-title {
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 1.6;
    letter-spacing: .08em;
    margin: 0 0 10px;
}

.sg-recommend .sgrec-card-excerpt {
    line-height: 1.9;
    margin: 0;
}

/* pickupは少し大きく */
.sg-recommend .sgrec-card--pickup .sgrec-card-title {
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.55;
}

/* -------------------------
   hover
------------------------- */
.sg-recommend .sgrec-card-link:hover .sgrec-card-img,
.sg-recommend .sgrec-card-link:focus .sgrec-card-img {
    transform: scale(1.04);
    transition: transform .35s ease;
}

.sg-recommend .sgrec-card-img {
    transform: scale(1);
    transition: transform .35s ease;
}

/* -------------------------
   pagination
------------------------- */
.sg-recommend .sgrec-pagination {
    margin-top: 42px;
}

.sg-recommend .sgrec-pagination .page-numbers {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.sg-recommend .sgrec-pagination .page-numbers li {
    margin: 0;
}

.sg-recommend .sgrec-pagination .page-numbers a,
.sg-recommend .sgrec-pagination .page-numbers span {
    min-width: 42px;
    min-height: 42px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .25);
    text-decoration: none;
    color: #111;
    background: #fff;
    line-height: 1;
}

.sg-recommend .sgrec-pagination .page-numbers .current {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* -------------------------
   empty
------------------------- */
.sg-recommend .sgrec-empty {
    margin: 0;
    padding: 20px 0;
    line-height: 1.9;
}

/* -------------------------
   responsive
------------------------- */
@media (max-width: 1024px) {
    .sg-recommend .sgrec-pickup-grid {
        gap: 24px;
    }

    .sg-recommend .sgrec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }

    .sg-recommend .sgrec-card-title {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .sg-recommend {
        padding-bottom: 56px;
    }

    .sg-recommend .sgrec-pickup {
        padding-bottom: 34px;
    }

    .sg-recommend .sgrec-pickup-grid,
    .sg-recommend .sgrec-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sg-recommend .sgrec-card-body {
        padding-top: 12px;
    }

    .sg-recommend .sgrec-card-title,
    .sg-recommend .sgrec-card--pickup .sgrec-card-title {
        font-size: 20px;
        line-height: 1.55;
    }

    .sg-recommend .sgrec-card-excerpt {
        font-size: 14px;
        line-height: 1.85;
    }

    .sg-recommend .sgrec-pagination {
        margin-top: 34px;
    }
}