@charset "UTF-8";
.p-bubble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-bubble .p-bubble__img {
    -ms-flex-preferred-size: 70px;
    flex-basis: 70px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.p-bubble .p-bubble__img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.p-bubble .p-bubble__img figcaption {
    font-size: 11px;
    text-align: center;
}
.p-bubble .p-bubble__txt {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 25px;
  border-radius: 10px;
  background-color: #f6f5ef;
  position: relative;
}
.p-bubble .p-bubble__txt mark {
  background: linear-gradient(transparent 50%, #ff0 50%);
  padding-bottom: 0.3em;
}
.p-bubble .p-bubble__txt:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left-color: #f6f5ef;
}
.p-bubble.left {
  padding-right: 90px;
}
.p-bubble.left .p-bubble__txt {
    margin-left: 20px;
}
.p-bubble.left .p-bubble__txt:before {
  right: 100%;
  border-right: 15px solid #eee;
  border-top: 0px solid transparent;
  border-bottom: 15px solid transparent;
}
.p-bubble.right .p-bubble__txt {
  margin-right: 20px;
}
.p-bubble.right .p-bubble__txt:before {
  left: 100%;
  border-left: 15px solid #eee;
  border-top: 0px solid transparent;
  border-bottom: 15px solid transparent;  
}
.p-bubble.right {
  padding-left: 90px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.p-bubble.right .p-bubble__img {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width:640px) {
  .p-bubble,
  .p-bubble.right {
    flex-direction: column;
  }
  .p-bubble .p-bubble__img {
    -ms-flex-preferred-size: 40px;
    flex-basis: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .p-bubble .p-bubble__img img {
      width: 40px;
      height: 40px;
  }
  .p-bubble .p-bubble__txt:before {
    bottom: 100%;
  }
  .p-bubble.right {
    padding-left: 0;
  }
  .p-bubble.right .p-bubble__img figcaption {
    margin-right: 1em;
  }
  .p-bubble.right .p-bubble__txt {
    margin-right: 0;
    padding: 15px;
  }
  .p-bubble.right .p-bubble__txt:before {
    right: 20px;
    left: inherit;
    border-bottom: 10px solid rgb(238, 238, 238);
    border-right: 0px solid transparent;
    border-left: 10px solid transparent;
  }
  .p-bubble.left {
    padding-right: 0;
  }
  .p-bubble.left .p-bubble__img figcaption {
    margin-left: 1em;
  }
  .p-bubble.left .p-bubble__txt {
    margin-left: 0;
  }
  .p-bubble.left .p-bubble__txt:before {
    left: 20px;
    border-bottom: 10px solid rgb(238, 238, 238);
    border-left: 0px solid transparent;
    border-right: 10px solid transparent;
  }
}