/* リンク系 Links */
.inherit-link {
  color: inherit;
  text-decoration: none;

  &:active {
    color: inherit;
    text-decoration: underline;
  }

  &:visited {
    color: inherit;
  }

  &:hover {
    text-decoration: underline;
  }
}