@charset "UTF-8";

/* ---------------------------------------------
 アニメーション： ループ
--------------------------------------------- */
.wrapper .an_huwa {
  animation: hwuahuwa 1.8s ease-in-out infinite alternate-reverse;
}
@-webkit-keyframes hwuahuwa {
  0% {
    -webkit-transform: translateY(-2%);
    transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(2%);
    transform: translateY(2%);
  }
}
@keyframes hwuahuwa {
  0% {
    -webkit-transform: translateY(-2%);
    transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(2%);
    transform: translateY(2%);
  }
}

.wrapper .an_huwa__big {
  animation: hwuahuwaBig 1.8s ease-in-out infinite alternate-reverse;
}
@-webkit-keyframes hwuahuwaBig {
  0% {
    -webkit-transform: translateY(-4%);
    transform: translateY(-4%);
  }
  100% {
    -webkit-transform: translateY(4%);
    transform: translateY(4%);
  }
}
@keyframes hwuahuwaBig {
  0% {
    -webkit-transform: translateY(-4%);
    transform: translateY(-4%);
  }
  100% {
    -webkit-transform: translateY(4%);
    transform: translateY(4%);
  }
}

/* ---------------------------------------------
 アニメーション
--------------------------------------------- */
/* アニメーション共通 */
.wrapper .io {
  transition: all 1s ease;
}

.wrapper .io_slideShow {
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
.wrapper .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);
  }
}
.wrapper .io_slideShow_hor {
  overflow: hidden;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.wrapper .io_slideShow_hor.is_active {
  -webkit-animation: slideShow_hor .8s ease-in-out forwards;
  animation: slideShow_hor .8s ease-in-out forwards;
}

@-webkit-keyframes slideShow_hor {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

@keyframes slideShow_hor {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

/* 円グラフ
-------------------- */
.wrapper .io_pieGraph.is_active circle {
  -webkit-animation: circleAnim 2s forwards;
  animation: circleAnim 2s forwards;
}

@-webkit-keyframes circleAnim {
  to {
    stroke-dashoffset: 30px;
  }
}

@keyframes circleAnim {
  to {
    stroke-dashoffset: 30px;
  }
}

/* fade-in
-------------------- */
.wrapper .io_fadeIn {
  opacity: 0;
  transition-delay: .5s !important;
}

.wrapper .io_fadeIn.is_active {
  opacity: 1;
}


/* fade-up
-------------------- */
.wrapper .io_fadeUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.wrapper .io_fadeUp.is_active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* fade-left
-------------------- */
.wrapper .io_fadeLeft {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

.wrapper .io_fadeLeft.is_active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}


/* fade-right
-------------------- */
.wrapper .io_fadeRight {
  opacity: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}

.wrapper .io_fadeRight.is_active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* fade-out
-------------------- */
.wrapper .io_fadeOut {
  opacity: 1;
  transition-delay: 2s !important;
  visibility: visible;
}

.wrapper .io_fadeOut.is_active {
  opacity: 0;
  visibility: hidden;
}


/* marker in left
-------------------- */
.wrapper .io_markerInLeft {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.wrapper .io_markerInLeft.is_active {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}


/* marker diagonal in right
-------------------- */
.wrapper .io_markerDiagonalInRight {
  width: 0;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.wrapper .io_markerDiagonalInRight.is_active {
  width: 100%;
}


/* pulse
-------------------- */
.wrapper .io_pulse.is_active {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}


/* zoom In
-------------------- */
.wrapper .io_zoomIn {
  opacity: 1;
}
.wrapper .io_io_zoomInBlur.is_active {
  -webkit-animation-name: io_zoomInBlur;
  animation-name: io_zoomInBlur;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes io_zoomInBlur {
  0% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
  }



 100% {
  opacity: 1;
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  }
}

@keyframes io_zoomInBlur {
  0% {
    opacity: 1;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0)
  }


 100% {
  opacity: 1;
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  }
}

.wrapper .io_zoomInBlur {
  opacity: 1;
}
.wrapper .io_zoomInBlur.is_active {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 1;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0)
  }


 100% {
    opacity: 1;
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    filter: blur(30px);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);

  }


 100% {
    opacity: 1;
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    filter: blur(min(calc(20/750*100vw),20px));
  }
}

/* -----------------------------------------
  ブラー
----------------------------------------- */


/* -----------------------------------------
  ディレイ
----------------------------------------- */
.wrapper .anime-delay-100 {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}

.wrapper .anime-delay-200 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.wrapper .anime-delay-300 {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.wrapper .anime-delay-400 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}

.wrapper .anime-delay-500 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}

.wrapper .anime-delay-600 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.wrapper .anime-delay-700 {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}

.wrapper .anime-delay-800 {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
  transition-delay: 0.8s !important;
}

.wrapper .anime-delay-900 {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

.wrapper .anime-delay-1000 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
  transition-delay: 1s !important;
}


.wrapper .anime-delay-1100 {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
  transition-delay: 1.1s !important;
}

.wrapper .anime-delay-1200 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.wrapper .anime-delay-1300 {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
  transition-delay: 1.3s !important;
}

.wrapper .anime-delay-1400 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
  transition-delay: 1.4s !important;
}

.wrapper .anime-delay-1500 {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.wrapper .anime-delay-1600 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
  transition-delay: 1.6s !important;
}

.wrapper .anime-delay-1700 {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
  transition-delay: 1.7s !important;
}

.wrapper .anime-delay-1800 {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
  transition-delay: 1.8s !important;
}

.wrapper .anime-delay-1900 {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important;
  transition-delay: 1.9s !important;
}

.wrapper .anime-delay-2000 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
  transition-delay: 2s !important;
}
.wrapper .anime-delay-2100 {
  -webkit-animation-delay: 2.1s !important;
          animation-delay: 2.1s !important;
  transition-delay: 2.1s !important;
}
.wrapper .anime-delay-2200 {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
  transition-delay: 2.2s !important;
}
