@charset "UTF-8";
/**** 共通カラー ****/
/******************
アニメーションcss

******************/
/* ===== 基本 ===== */
.scrollFade,
.loadFade {
  opacity: 0;
  filter: blur(10px);
  will-change: opacity, transform, filter;
}

/* scrollで入ったらフワッと＆少し下から */
.scrollFade {
  transform: translateY(20px);
}

.scrollFade.show {
  animation: fadeBlurIn 0.6s ease-out forwards;
}

/* loadで出す要素は位置を動かさない（レイアウトのガタつき対策） */
.loadFade.show {
  animation: fadeBlurLoad 0.8s ease-out forwards;
}

/* ===== キーフレーム ===== */
@keyframes fadeBlurIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
@keyframes fadeBlurLoad {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
/* ===== スマホは短め ===== */
@media (max-width: 768px) {
  .scrollFade.show,
  .loadFade.show {
    animation-duration: 0.3s;
  }
}
/* ===== prefers-reduced-motion 配慮 ===== */
@media (prefers-reduced-motion: reduce) {
  .scrollFade,
  .loadFade {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
.scrollFade.show:nth-child(1) {
  animation-delay: 0s;
}

.scrollFade.show:nth-child(2) {
  animation-delay: 0.2s;
}

.scrollFade.show:nth-child(3) {
  animation-delay: 0.4s;
}

.scrollFade.show:nth-child(4) {
  animation-delay: 0.6s;
}/*# sourceMappingURL=animation.css.map */