/***********************************
チャット風レイアウト
************************************/

/*吹き出し*/
.balloon_l,
.balloon_r{
  margin: 30px 0;
  display:flex;
  justify-content: flex-start;
  align-items: flex-start; /*縦位置を上揃え*/
   align-items: center;  /*縦位置を真ん中揃え*/
}
.balloon_r{
  justify-content:flex-end;
}
.faceicon img{
  width: 80px; /*任意のサイズ*/
  height: auto;
}
.balloon_r .faceicon{
  margin-left:25px;
}
.balloon_l .faceicon{
  margin-right:25px;
}
.balloon_r .faceicon{
  order:2 !important;
}
.says {
  max-width:600px; /*最大幅は任意*/
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 17px 13px 15px 18px;
  border-radius: 12px;
  background: white;/*色は任意*/
  box-sizing:border-box;
  margin:0 !important;
  line-height:1.5;
  font-size:12pt;
/*   align-items: center; */
}
.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_l .says:after {
  left: -26px;
  border-right: 22px solid white;
}
.balloon_r .says:after {
  right: -26px;
  border-left: 22px solid white;
}

 
 /*スマホの時は画像を小さく*/
@media screen and (max-width: 440px){

.faceicon img{
  width: 60px; /*任意のサイズ*/
  height: auto;
}

.says {
  line-height:1.2;
  font-size:10pt;
/*   align-items: center; */
}

}
}







