.recruit-contact-float {
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.recruit-contact-float.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.recruit-contact-float.is-hidden .recruit-contact-float__link {
  animation-play-state: paused;
}

.recruit-contact-float__link {
  display: block;
  line-height: 0;
  animation: recruit-contact-float-bounce 5s ease-in-out infinite;
}

@keyframes recruit-contact-float-bounce {
  0%,
  8%,
  100% {
    transform: translateY(0);
  }

  2% {
    transform: translateY(-10px);
  }

  4% {
    transform: translateY(0);
  }

  6% {
    transform: translateY(-5px);
  }
}

.recruit-contact-float__link img {
  display: block;
  width: 180px;
  height: auto;
}

@media only screen and (min-width: 992px) {
  .recruit-contact-float {
    right: 24px;
    bottom: 100px;
  }

  .recruit-contact-float__link img {
    width: 220px;
  }
}
