/* 用語リンク */
a.tl-tooltip-link {
  position: relative;
  text-decoration: underline dotted;
  cursor: help;
}

/* ツールチップ本体（ホバー/フォーカス/タップ時に表示） */
a.tl-tooltip-link[data-tl-tooltip]::after {
  font-weight: normal !important;
  content: attr(data-tl-tooltip);
  position: absolute;
  left: 0;
  top: 1.6em;
  min-width: 220px;
  max-width: 360px;
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
  padding: 10px 12px;
  font-size: 0.9em;
  line-height: 1.5;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  display: none;
  white-space: normal;
}

/* 表示トリガー */
a.tl-tooltip-link:hover::after,
a.tl-tooltip-link:focus::after,
a.tl-tooltip-link.tl-active::after {
  display: block;
}

/* スマホのタップハイライト軽減 */
a.tl-tooltip-link {
  -webkit-tap-highlight-color: rgba(0,0,0,0.05);
}

/* 下3割を黄色マーカー風に塗る */
a.tl-tooltip-link {
  /* 下線を消したい場合は有効化。点線を残したいならこの1行は削除 */
  text-decoration: none;

  background-image: linear-gradient(transparent 70%, #fff176 0);
  background-repeat: no-repeat;
  background-size: 100% 100%;

    font-weight: bold;
    color: #933c;
}

/* ホバー/フォーカス/タップ時は少し濃く＆少し太く */
a.tl-tooltip-link:hover,
a.tl-tooltip-link:focus,
a.tl-tooltip-link.tl-active {
  background-image: linear-gradient(transparent 60%, #ffeb3b 0);
  outline: none;
}
