/* Material Symbols - フォント読み込み前のテキストフラッシュ防止 */
.recruit-material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  opacity: 0;
  transition: opacity 0.15s ease-in;
}

.recruit-fonts-loaded .recruit-material-symbols-outlined {
  opacity: 1;
}

/* Hero Slideshow Animation */
.recruit-hero-slide {
  background-size: cover;
  background-position: center;
  transform: scale(1);
  opacity: 0;
}

.recruit-hero-slide.recruit-active {
  opacity: 1;
  z-index: 1;
  animation: recruit-zoomIn 8s ease-in-out forwards;
}

.recruit-hero-slide:not(.recruit-active) {
  opacity: 0;
  z-index: 0;
  animation: none;
  transform: scale(1);
}

@keyframes recruit-zoomIn {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Swipe Hint Animation */
.recruit-swipe-hint-icon {
  animation: recruit-swipeHintBounce 1.5s ease-in-out infinite;
}

@keyframes recruit-swipeHintBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}

/* prefers-reduced-motion対応 */
@media (prefers-reduced-motion: reduce) {
  .recruit-swipe-hint-icon {
    animation: none;
  }
  .recruit-animate-pulse {
    animation: none;
  }
}

