/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 27 2024 | 22:50:20 */
/* 基本的なフェードイン効果 */
.fadeIn {
opacity: 0;
  transition: opacity 1s ease-out;
}

.isVisible.from-left {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease-out;
}

.from-left {
  transform: translateX(-100px);
}

.isVisible.from-right {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease-out;
}

.from-right {
  transform: translateX(100px);
}

.isVisible.from-top {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease-out;
}

.from-top {
  transform: translateY(-100px);
}

.isVisible.from-bottom {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease-out;
}

.from-bottom {
  transform: translateY(100px);
}


