@charset "UTF-8";
/* ===== view animation base ===== */
/******************
アニメーションcss（.js-view版）
******************/
/* ===== 基本 ===== */
.js-view,
.loadFade {
  /* ← loadFade使わないなら消してOK */
  opacity: 0;
  filter: blur(10px);
  will-change: opacity, transform, filter;
}

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

.js-view.action {
  animation: fadeBlurIn 0.6s ease-out forwards;
}

/* load用（必要なら使う） */
.loadFade.action {
  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) {
  .js-view.action,
  .loadFade.action {
    animation-duration: 0.3s;
  }
}
/* ===== prefers-reduced-motion 配慮 ===== */
@media (prefers-reduced-motion: reduce) {
  .js-view,
  .loadFade {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
/* ===== 時差 ===== */
.js-view.action:nth-child(1) {
  animation-delay: 0s;
}

.js-view.action:nth-child(2) {
  animation-delay: 0.2s;
}

.js-view.action:nth-child(3) {
  animation-delay: 0.4s;
}

.js-view.action:nth-child(4) {
  animation-delay: 0.6s;
}

.js-view.action:nth-child(5) {
  animation-delay: 0.8s;
}/*# sourceMappingURL=animation.css.map */