div.nothover a {
  color: inherit; /* 親要素の色を引き継ぐ */
  text-decoration: none; /* 下線を消す */
  cursor: default; /* カーソルを矢印にする */
}

div.nothover a:hover {
  text-decoration: none; /* ホバーしても変化なし */
  color: inherit; /* 色も変えない */
}