@charset "UTF-8";
/* CSS Document */
.balloon {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 8px;
  text-align: left;
  color: #002f5f;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  background: #FFF;
  border: solid 2px #002f5f;
  border-radius: 16px;
  box-sizing: border-box;
}
.balloon:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 54px;
  border-top: 8px solid #ffffff;
  border-right: 8px solid #ffffff;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  z-index: 2;
}
.balloon:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 54px;
  border-top: 9px solid #002f5f;
  border-right: 9px solid #002f5f;
  border-bottom: 9px solid transparent;
  border-left: 9px solid transparent;
  z-index: 1;
}
.balloon p {
  margin: 0;
  padding: 0;
}