.taishoku {
  color: #0066cc;              /* 通常リンク色 */
  text-decoration: underline;  /* 下線あり */
  cursor: pointer;             /* クリック可能 */
  transition: color 0.2s ease; /* ホバー時の色変化 */
}

.taishoku:hover {
  color: #004b99;              /* ホバー時は濃い青 */
}