/* ------------------------- */
/* -------- 吹き出し -------- */
/* ------------------------- */
.balloon{
  display: flex;
  margin: 0 0 1.5em 0;
}
.balloonR{
  flex-direction: row-reverse;
}
.balloon-img{
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
.balloon-text{
  padding: 1em;
  border-radius: 6px;
  position: relative;
  display: flex;
}
.balloon-text-inner{
  margin: auto;
}
.balloon-text::before,.balloon-text::after{
  content: '';
  position: absolute;
  top: 19px;
  font-size: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.balloonL .balloon-text{
  margin: 0 0 0 15px;
  background: #fff0f5;
}
.balloonR .balloon-text{
  margin: 0 15px 0;
  background: #e0ffff;
}
.balloonL .balloon-text::before{
  left: -16px;
  border-right: 16px solid #fff0f5;
}
.balloonR .balloon-text::before{
  right: -16px;
  border-left: 16px solid #e0ffff;
}