/* =========================================================
   components.css
   汎用パーツ用：ボタン、カード、CTA、装飾ボックスなど
   案件ごとに増やしてOK
========================================================= */

/* 例：
.starter-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
}
*/



/* 吹き出し */
.bubble {
  position: relative;
  display: inline-block;
  background: #fff;
  color: #5B4B45;
  padding: 18px 20px;
  border-radius: 20px;
  line-height: 1.8;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  margin: 0;
  font-size: 13px !important;
}

/* 余計なしっぽを消す */
.bubble::before {
  content: none !important;
  display: none !important;
}

/* 右側のしっぽ */
.bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  border-width: 10px 0 10px 14px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(2px 0 2px rgba(0,0,0,.03));
}