/* テキストリンク用のcss ここを直したらlink.cssも同様に修正が必要 */

.link-blue {
  color: #005ea6 !important;               /* 標準青 */
  /* text-decoration: underline !important;   /* 下線あり */
  /* text-underline-offset: 2px;              /* 下線と文字の隙間 */
  font-size: inherit !important;           /* 親要素のサイズをそのまま使う */
}

.link-blue:visited {
  color: #005ea6 !important;               /* 訪問済みも同じ色 */
}

.link-blue:hover {
  color: #3399ff !important;               /* ホバー時は薄青 */
}

.link-blue:active {
  color: #005ea6;                          /* クリック中は元の青 */
}