<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*********************************************************************
*
*  For feature 記事詳細
*
*********************************************************************/

/*吹き出し*/
.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: 60px;
  /*任意のサイズ*/
  height: auto;
  flex-shrink: 0;
}

.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: #f0f0f0;
  /*色は任意*/
  box-sizing: border-box;
  margin: 0 !important;
  line-height: 1.5;
  /*   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 #f0f0f0;
}

.balloon_r .says:after {
  right: -26px;
  border-left: 22px solid #f0f0f0;
}</pre></body></html>