@charset "UTF-8";

/* ========== お客様の声 ページ専用スタイル ========== */

.reviews_section {
    padding: 80px 0 120px;
}
.reviews_section .inner {
    max-width: 1100px;
    width: 92%;
    margin: 0 auto;
}

/* ===== レビューカード ===== */
.review_card {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 1fr 220px;
    grid-template-areas: "body photo";
    gap: 24px 40px;
}
.review_card:last-child {
    margin-bottom: 0;
}

.review_card__body {
    grid-area: body;
}
.review_card__photo {
    grid-area: photo;
    align-self: start;
}

/* ===== レビュー：アイコン+名前（フッター口コミと同パターン） ===== */
.review_meta {
    display: flex;
    align-items: center;
    column-gap: 14px;
    margin-bottom: 20px;
}
.review_meta__icon {
    flex: 0 0 56px;
    width: 56px;
}
.review_meta__icon img {
    display: block;
    width: 100%;
    height: auto;
}
.review_meta__name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-top: 4px;
}

/* ===== タグ（ピル型ボーダー） ===== */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 16px;
}
.tags .tag {
    display: inline-block;
    font-size: 13px;
    color: #4E9E9C;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid #4E9E9C;
    padding: 4px 14px;
    border-radius: 999px;
    line-height: 1.4;
}

/* ===== レビュー本文 ===== */
.review_text {
    color: #555555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}
.review_text p {
    margin-bottom: 1em;
}
.review_text p:last-child {
    margin-bottom: 0;
}

/* ===== 写真プレースホルダー（実装初期用） ===== */
.photo_placeholder {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 3 / 4;
    background: #e0e0e0;
    border: 1px dashed #aaaaaa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

/* ===== 実アンケート写真 ===== */
.review_photo {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    border: 1px solid #d8d8d8;
    background: #fafafa;
}

/* ===== タグ：本文下のキーワードリスト ===== */
.tags--related {
    margin-bottom: 0;
}

/* ========== SP（モバイル）対応 ========== */
@media (max-width: 768px) {
    .reviews_section {
        padding: 50px 0 80px;
    }
    .review_card {
        padding: 30px 20px;
        margin-bottom: 30px;
        border-radius: 4px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "body"
            "photo";
        gap: 20px;
    }
    .review_card__photo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .photo_placeholder {
        max-width: 160px;
        aspect-ratio: 3 / 4;
    }
    .review_photo {
        max-width: 180px;
    }
    .tags .tag {
        font-size: 12px;
        padding: 3px 12px;
    }
    .review_text {
        font-size: 15px;
        line-height: 1.85;
    }
    .review_meta__icon {
        flex: 0 0 48px;
        width: 48px;
    }
    .review_meta__name {
        font-size: 15px;
    }
}
