.guide-title {
  font-size: 1.15em;       /* 通常より少し大きめ */
  font-weight: 700;        /* 太字 */
  margin-top: 1.4em;       /* 上余白 */
  margin-bottom: 0.4em;    /* 下余白 */
  line-height: 1.5;        /* 行間をやや広めに */
}

/* ツールチップ表示用 */
.tooltip {
  position: relative;
  cursor: help; /* ポインタ形状 */
  display: inline-block;
}

/* コメント部分（通常は非表示） */
.tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px 8px;
  position: absolute;
  bottom: 120%; /* 上に表示 */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 0.2s ease;
  font-size: 0.9em;
  z-index: 10;
}

/* カーソルを合わせたときに表示 */
.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

