.c-checkbox__label--exclamation {
  position: relative; /* 吹き出しの基準にする */
  cursor: help;
}

/* 吹き出し本体 */
.c-checkbox__tooltip {
  position: absolute;
  left: 0;          /* ラベル左を基準に表示 */
  top: 100%;        /* ラベルの下に出す */
  margin-top: 8px;

  padding: 8px 10px;
  background: #0a9b74;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 4px;

  white-space: normal;   /* 複数行OK */
  width: max-content;    /* 中身に合わせる */
  max-width: 280px;      /* 長すぎないように制限 */

  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  z-index: 10;

  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

/* 吹き出しの三角形 */
.c-checkbox__tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 16px; /* 好きな位置に調整 */
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent #0a9b74 transparent;
}

/* ホバー時に表示 */
.c-checkbox__label--exclamation:hover .c-checkbox__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}