/* ==============================
   みつピタ｜利用者の声
============================== */

.mpt-testimonials-section {
    padding: 72px 20px;
    background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.mpt-testimonials-inner {
    max-width: 960px;
    margin: 0 auto;
}

.mpt-testimonials-heading {
    text-align: center;
    margin-bottom: 38px;
}

.mpt-testimonials-label {
    display: inline-block;
    margin: 0 0 12px;
    padding: 7px 16px;
    border-radius: 999px;
    background: #e6f5ee;
    color: #0f5a43;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.mpt-testimonials-heading h2 {
    margin: 0;
    color: #123f32;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.mpt-testimonials-lead {
    margin: 16px auto 0;
    max-width: 680px;
    color: #50645d;
    font-size: 15px;
    line-height: 1.9;
}

/* 口コミカード全体 */
.mpt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 520px));
    justify-content: center;
    gap: 24px;
}

/* カード */
.mpt-testimonial-card {
    position: relative;
    width: 100%;
    padding: 34px 32px 30px;
    background: #ffffff;
    border: 1px solid #dfeee7;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(18, 63, 50, 0.10);
    overflow: hidden;
}

.mpt-testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0f5a43 0%, #8fcfba 65%, #c7a75b 100%);
}

.mpt-testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.mpt-testimonial-profile {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f0f8f4;
    color: #0f5a43;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.mpt-testimonial-mark {
    color: #d4b76a;
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 0.8;
    opacity: 0.75;
}

.mpt-testimonial-title {
    margin: 0 0 16px;
    color: #123f32;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.6;
}

.mpt-testimonial-content {
    color: #33433e;
    font-size: 15.5px;
    line-height: 2;
}

.mpt-testimonial-content p {
    margin: 0 0 14px;
}

.mpt-testimonial-content p:last-child {
    margin-bottom: 0;
}

.mpt-testimonial-advisor {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #e7f0ec;
}

.mpt-testimonial-advisor span {
    display: block;
    margin-bottom: 6px;
    color: #6b7c75;
    font-size: 12px;
    font-weight: 700;
}

.mpt-testimonial-advisor strong {
    color: #123f32;
    font-size: 16px;
    font-weight: 800;
}

/* 管理画面用 */
.mpt-admin-box {
    padding: 4px 0;
}

.mpt-admin-note {
    margin: 0 0 12px;
    color: #50645d;
}

/* 複数件ある場合 */
@media (min-width: 980px) {
    .mpt-testimonials-inner {
        max-width: 1120px;
    }

    .mpt-testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .mpt-testimonial-card {
        max-width: 520px;
    }
}

/* スマホ */
@media (max-width: 640px) {
    .mpt-testimonials-section {
        padding: 54px 16px;
    }

    .mpt-testimonials-heading {
        text-align: left;
        margin-bottom: 28px;
    }

    .mpt-testimonials-heading h2 {
        font-size: 26px;
    }

    .mpt-testimonials-lead {
        font-size: 14px;
    }

    .mpt-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mpt-testimonial-card {
        padding: 26px 22px 24px;
        border-radius: 20px;
    }

    .mpt-testimonial-title {
        font-size: 18px;
    }

    .mpt-testimonial-content {
        font-size: 14.5px;
        line-height: 1.9;
    }
}