/*
 balloon left
 */
.balloon1-left {
    position: relative;
    display: inline-block;
    /*margin: 1.5em 0 1.5em 15px;*/
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #e0edff;
    line-height: 1.8em;
}

.balloon1-left:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #e0edff;
}

div.contents div.balloon1-left p {
    margin: 0;
    padding: 0;
    font-size: 1em;
}

/*
 balloon right
 */
.balloon1-right {
    position: relative;
    display: inline-block;
    /*margin: 1.5em 15px 1.5em 0;*/
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #e0edff;
    line-height: 1.8em;
}

.balloon1-right:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #e0edff;
}

div.contents div.balloon1-right p {
    margin: 0;
    padding: 0;
    font-size: 1em;
}

