.lawyerCommentWrap {
    /* width: 100%; */
    max-width: 810px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.lawyer-comment__photo {
    clip-path: circle(50%);
    object-fit: cover;
    width: 200px !important;
    height: 200px !important;
}

.lawyer-comment__icon {
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
}

.lawyer-comment {
    /* font-family: "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Yu Gothic", sans-serif; */
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    border: 1px solid #b8c6d6;
}

.lawyer-comment__header {
    background: #408fb6;
    display: flex;
    align-items: center;
    padding: 18px 20px;
    gap: 12px;
}

.lawyer-comment__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.lawyer-comment__title {
    color: #fff;
    font-weight: 900;
    font-size: 20px;
}

.lawyer-comment__body {
    background: #ebf3f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 24px 32px;
}

.lawyer-comment__photo {
    flex-shrink: 0 !important;
    margin: 0 0 24px !important;
}

.lawyer-comment__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    gap: 0;
}

.lawyer-comment__org {
    font-size: 14px;
    /* font-weight: bold; */
}

.lawyer-comment__name {
    font-weight: 700;
    color: #333;
    font-size: 20px;
}

.lawyer-comment__name span {
    font-size: 16px;
}


.lawyer-comment__role {
    font-weight: 500;
    font-size: 15px;
    margin-left: 6px;
}

.lawyer-comment__quote {
    color: #333;
    line-height: 1.8;
    font-size: 14px;
    margin-top: 1rem;
}

/* --- PC layout (viewport 767px以上) --- */
@media (min-width: 767px) {
    .lawyer-comment__header {
        padding: 12px 20px;
        gap: 14px;
    }

    .lawyer-comment__icon {
        width: 26px;
        height: 26px;
    }

    .lawyer-comment__title {
        font-size: 20px;
    }

    .lawyer-comment__body {
        flex-direction: row;
        align-items: flex-start;
        /* padding: 32px 40px; */
        padding: 16px;
    }

    .lawyer-comment__photo {
        margin: 0 32px 0 0 !important;
        width: 150px !important;
        height: 150px !important;
    }

    .lawyer-comment__icon {
        width: 24px !important;
        height: 24px !important;
        margin: 0 !important;
    }

    .lawyer-comment__text {
        width: auto;
        gap: 0;
    }

    .lawyer-comment__org {
        font-size: 14px;
        /* font-weight: bold; */
    }

    .lawyer-comment__name {
        font-size: 20px;
    }

    .lawyer-comment__name span {
        font-size: 14px;
    }

    .lawyer-comment__role {
        font-size: 16px;
    }

    .lawyer-comment__quote {
        font-size: 1em;
        margin-top: 8px;
    }
}