@media (hover: hover) {
  .header__nav-menu-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--base-text-color);
    transition: width 0.25s;
  }
  .header__nav-menu-link:hover:after {
    width: 100%;
  }
  .header__nav-action-button {
    transition: color 0.3s, opacity 0.3s;
  }
  .header__nav-action-button:hover {
    opacity: 0.6;
  }
  .request__submit {
    transition: 0.3s;
  }
  .request__submit:hover {
    background: #fda05b;
  }
  .cv__button {
    transition: 0.3s;
  }
  .cv__button:hover {
    background: #fda05b;
  }
  .case__pickup-headline:hover {
    color: var(--primary-blue-color);
    text-decoration: underline;
  }
  .case__pickup-button {
    transition: 0.3s;
  }
  .case__pickup-button:hover {
    transform: scale(1.1);
  }
  .case__record-list-link {
    transition: 0.3s;
  }
  .case__record-list-link:hover {
    opacity: 0.6;
  }
  .contact__cta-button {
    transition: 0.3s;
  }
  .contact__cta-button:hover {
    background: #49ce2a;
  }
  .footer-nav a:hover:before {
    width: 100%;
  }
}