.p-page__box::after {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 1rem;
    background: #CCC;
    content: '';
}

.message-head {
    margin-bottom: 2rem;
}

.message-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.message-body {
    display: flex;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.message-text {
    width: 70%;
    padding-left: 1rem;
}

.message-img {
    width: 30%;
    padding-top: 1rem;
}

@media screen and (max-width: 768px) {
    .message-body {
        -webkit-flex-direction: column-reverse;
        -moz-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        -o-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .message-text {
        width: 100%;
        padding-left: 0;
    }

    .message-img {
        width: 100%;
        text-align: center;
    }

    .message-img>img {
        width: 30%;
    }

    .message-name {
        font-size: .875rem;
    }

    .message-title {
        font-size: 1rem;
    }
}
