@charset "UTF-8";

/* ---------------------------------------------
 アニメーション
--------------------------------------------- */
/* アニメーション共通 */
.io {
  transition: all 1s ease;
}

.io_slideShow {
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
.io_slideShow.is_active {
  -webkit-animation: slideShow .8s ease-in-out forwards;
  animation: slideShow .8s ease-in-out forwards;
}

@-webkit-keyframes slideShow {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

@keyframes slideShow {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.io_slideShow_ver {
  overflow: hidden;
  -webkit-clip-path:  inset(0 0 100% 0);
  clip-path:  inset(0 0 100% 0);
}
.io_slideShow_ver.is_active {
  -webkit-animation: slideShow_ver .8s ease-in-out forwards;
  animation: slideShow_ver .8s ease-in-out forwards;
}

@-webkit-keyframes slideShow_ver {
  0% {
    /* 上端を100%クリップして画面外（非表示）にする */
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    /* 全方向のクリップを解除して完全表示 */
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

.io_slideShow_ver_down {
  overflow: hidden;
  -webkit-clip-path:  inset(0 0 100% 0);
  clip-path:  inset(0 0 100% 0);
}
.io_slideShow_ver_down.is_active {
  -webkit-animation: slideShow_ver_down .8s ease-in-out forwards;
  animation: slideShow_ver_down .8s ease-in-out forwards;
}

@-webkit-keyframes slideShow_ver_down {
  0% {
    /* 上端を100%クリップして画面外（非表示）にする */
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    /* 全方向のクリップを解除して完全表示 */
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}



/* fade-in
-------------------- */
.io_fadeIn {
  opacity: 0;
  transition-delay: .5s !important;
}

.io_fadeIn.is_active {
  opacity: 1;
}


/* fade-up
-------------------- */
.io_fadeUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.io_fadeUp.is_active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* fade-down
-------------------- */
.io_fadeDown {
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.io_fadeDown.is_active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}




/* -----------------------------------------
  ディレイ
----------------------------------------- */
.anime-delay-100 {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}

.anime-delay-200 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.anime-delay-300 {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.anime-delay-400 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}

.anime-delay-500 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}

.anime-delay-600 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.anime-delay-700 {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}

.anime-delay-800 {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
  transition-delay: 0.8s !important;
}

.anime-delay-900 {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

.anime-delay-1000 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
  transition-delay: 1s !important;
}


.anime-delay-1100 {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
  transition-delay: 1.1s !important;
}

.anime-delay-1200 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.anime-delay-1300 {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
  transition-delay: 1.3s !important;
}

.anime-delay-1400 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
  transition-delay: 1.4s !important;
}

.anime-delay-1500 {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.anime-delay-1600 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
  transition-delay: 1.6s !important;
}

.anime-delay-1700 {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
  transition-delay: 1.7s !important;
}

.anime-delay-1800 {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
  transition-delay: 1.8s !important;
}

.anime-delay-1900 {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important;
  transition-delay: 1.9s !important;
}

.anime-delay-2000 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
  transition-delay: 2s !important;
}
.anime-delay-2100 {
  -webkit-animation-delay: 2.1s !important;
          animation-delay: 2.1s !important;
  transition-delay: 2.1s !important;
}
.anime-delay-2200 {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
  transition-delay: 2.2s !important;
}
