﻿/*吹き出し*/
.balloon_left,
.balloon_right {
    margin: 30px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; /*縦位置を上揃え*/
    /*   align-items: center; */ /*縦位置を真ん中揃え*/
}

.balloon_right {
    justify-content: flex-end;
}

.faceicon img {
    width: 50px; /*任意のサイズ*/
    height: auto;
    border-radius: 50%;
    padding:4px;
    border:solid 2px #0f7bc3;
}

.balloon_right .faceicon {
    margin-left: 25px;
}

.balloon_left .faceicon {
    margin-right: 25px;
}

.balloon_right .faceicon {
    order: 2 !important;
}

.says_left {
    background: #99dddd; /*色は任意*/
}

.says_right {
    background: #99dddd; /*色は任意*/
}

.says {
    max-width: 100%; /*最大幅は任意*/
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 17px 13px 15px 18px;
    border-radius: 12px;
    box-sizing: border-box;
    margin: 0 !important;
    line-height: 1.5;
    /*   align-items: center; */
    z-index:10;
}

    .says p {
        margin: 8px 0 0 !important;
    }

        .says p:first-child {
            margin-top: 0 !important;
        }

    .says:after {
        content: "";
        position: absolute;
        border: 10px solid transparent;
        /*   margin-top:-3px;  */
    }

.balloon_left .says:after {
    left: -26px;
    border-right: 22px solid #99dddd;
}

.balloon_right .says:after {
    right: -26px;
    border-left: 22px solid #99dddd;
}
