@charset "UTF-8";

.message__content__inner {
    display: flex;
    justify-content: center;
    max-width: 85vw;
    width: 100%;
    margin: 0 auto;
    padding: 4.29vw 0;
    gap: 3vw;
}

.message__profile {
    width: 18.57vw;
}

.message__profile__img {
    margin-bottom: 2vw;
}

.message__profile__name {
}


.message__profile__name span {
    font-size: 1vw;
    font-weight: 300;
    margin-bottom: 1vw;
    display: inline-block;
    font-family: "Zen Old Mincho", serif;
}
.message__profile__name p {
    font-family: "Zen Old Mincho", serif;
    font-size: 1.43vw;
    font-weight: 500;
    margin-bottom: 2vw;
}

.message__text p {
    font-size: 1.15vw;
    line-height: 1.5;
    margin-bottom: 1vw;
}


@media screen and (max-width:760px) {
    .message__content__inner {
        flex-direction: column;
        align-items: flex-end;
    }

    .message__text p {
        font-size: 4vw;
        margin-bottom: 8vw;
        text-align: justify;
    }



    .message__profile {
        width: 100%;
    }

    .message__profile__name {
        /* text-align: right; */
    }

    .message__profile__name span {
        font-size: 3vw;
        margin-bottom: 5vw;
    }

    .message__profile__name p {
        font-size: 7vw;
        margin-bottom: 2vw;
    }
}