/* フェードイン用アニメーション */
.archive-list {
  min-height: 500px; /* 必要に応じて調整 */
  transition: min-height 0.3s ease;
}
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


