.staffComment {
    padding: 20px;
    border: solid 1px #eee;
    display: flex;
    align-items: flex-start;
}
    .staffComment__image {
        background: #f5f5f5;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* スタッフ画像 */
    .staffComment__image img {
        max-width: 300px;
        max-height: 300px;
    }

    /* 担当者コメントとセールスポイント全体を囲う親要素 */
    .staffComment__texts {
        padding-left: 20px;
        line-height: 1.6;
    }

    /* 担当者コメントを囲う親要素 */
    .staffComment__fromStaffWrapper {
        padding-top: 15px;
    }

    /* 「担当者から」「おすすめポイント」 */
    .staffComment__texts h3 {
        padding: 5px;
        color: #fff;
        display: inline-block;
    }
    /* スタッフ名 */
    .staffComment__staffName {
        margin-bottom: 5px;
        font-size: 16px;
        font-weight: bold;
    }
        /* 部署名と資格 */
        .staffComment__attribute span {

        }
    /*担当者コメントとセールスポイント */
    .staffComment__fromStaff,
    .staffComment__salesPoint {
        font-size: 14px;
        line-height: 1.8;
    }