@charset "utf-8";
/* CSS Document */
/*--------------------
 吹き出しを作る
--------------------*/
.balloon {
 margin: 30px 0;
 padding : 0 40px;
 position: relative;
}
.balloon:after,.balloon:before {
 clear: both;
 content: "";
 display: block;
}
.balloon-image-left {
 position: absolute;
 left: 0;
 margin: 0;
 width: 70px;
 height: 82px;
}
.balloon-image-right {
 position: absolute;
 right: 0;
 margin: 0;
 width: 70px;
 height: 82px;
}
.balloon figure img {
 width: 100%;
 height: 100%;
 border: 0px solid #aaa;
 border-radius: 50%;
 margin: 0;
}
.balloon-image-description {
 padding: 5px 0 0;
 font-size: 14px;
 text-align: center;
	margin-top : -15px;

}
.balloon-text-right {
 position: relative;
 margin-left: 40px;
 padding: 5px;
 border: 1px solid #aaa;
 border-radius: 10px;
 float: left;
 max-width: 80%;
}
.balloon-text-left {
 position: relative;
 margin-right: 40px;
 padding: 10px;
 border: 1px solid #aaa;
 border-radius: 10px;
 float: right;
 max-width: 80%;
}
.balloon p {
 margin: 0 0 20px;
}
.balloon p:last-child {
 margin-bottom: 0;
}
/* 会話 */
.balloon-text-right:before {
 position: absolute;
 content: '';
 border: 10px solid transparent;
 border-right: 10px solid #aaa;
 top: 15px;
 left: -20px;
}
.balloon-text-right:after {
 position: absolute;
 content: '';
 border: 10px solid transparent;
 border-right: 10px solid #fff;
 top: 15px;
 left: -19px;
}
.balloon-text-left:before {
 position: absolute;
 content: '';
 border: 10px solid transparent;
 border-left: 10px solid #aaa;
 top: 15px;
 right: -20px;
}
.balloon-text-left:after {
 position: absolute;
 content: '';
 border: 10px solid transparent;
 border-left: 10px solid #fff;
 top: 15px;
 right: -19px;
}

