@charset "UTF-8";
/* ==============================================================
 # フローティングバナーの設置
 ============================================================== */
.recruit_buttonWrap {
  position: fixed;
  bottom: 20px;
  right: 80px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.recruit_buttonWrap.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.recruit_button a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #006834;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.recruit_button a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .recruit_buttonWrap {
    bottom: 85px;
    right: 16px;
  }
  
  .recruit_button a {
    width: 120px;
    height: 120px;
    font-size: 13px;
    line-height: 1.6;
  }
}