@charset "UTF-8";

/*------------------------------------------------
Animation
-------------------------------------------------*/

/*zoomout(ズームアウト)*/
.fadeZoomOut.wow.animated {
    animation-name: fadeZoomOut;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.fadeZoomOut {
    opacity: 0;
}
@keyframes fadeZoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/*zoomin(ズームイン)*/
.fadeZoomIn.wow.animated {
    animation-name: fadeZoomIn;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.fadeZoomIn {
    opacity: 0;
}
@keyframes fadeZoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/*fadeRightLeft(右→左)*/
.fadeRightLeft.wow.animated {
    animation-name: fadeRightLeft;
    animation-duration: 1.8s;
    animation-timing-function: ease;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    will-change: opacity;
}
.fadeRightLeft {
    opacity: 0;
}
@keyframes fadeRightLeft {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

/*fadeLeftRight(左→右)*/
.fadeLeftRight.wow.animated {
    animation-name: fadeLeftRight;
    animation-duration: 1.8s;
    animation-timing-function: ease;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    will-change: opacity;
}
.fadeLeftRight {
    opacity: 0;
}
@keyframes fadeLeftRight {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

/*fadeTopBottom(上→下)*/
.fadeTopBottom.wow.animated {
    animation-name: fadeTopBottom;
    animation-duration: 1.8s;
    animation-timing-function: ease;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    will-change: opacity;
}
.fadeTopBottom {
    opacity: 0;
}
@keyframes fadeTopBottom {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/*fadeBottomTop(下→上)*/
.fadeBottomTop.wow.animated {
    animation-name: fadeBottomTop;
    animation-duration: 1.8s;
    animation-timing-function: ease;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    will-change: opacity;
}
.fadeBottomTop {
    opacity: 0;
}
@keyframes fadeBottomTop {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/*fadeRightLeftScale(右→左 斜め)*/
.fadeRightLeftScale.wow.animated {
    animation-name: fadeRightLeftScale;
    animation-duration: 1.8s;
    animation-timing-function: ease;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    will-change: opacity;
}
.fadeRightLeftScale {
    opacity: 0;
}
@keyframes fadeRightLeftScale {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translate(10%, -8px) scale(1.1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0) scale(1);
  }
}

/*fadeLeftRightScale(左→右 斜め)*/
.fadeLeftRightScale.wow.animated {
    animation-name: fadeLeftRightScale;
    animation-duration: 1.8s;
    animation-timing-function: ease;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    will-change: opacity;
}
.fadeLeftRightScale {
    opacity: 0;
}
@keyframes fadeLeftRightScale {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translate(-10%, -8px) scale(1.1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0) scale(1);
  }
}

/*RotateScaleInLeft(左回転)*/
.RotateScaleInLeft.wow.animated {
    animation-name: RotateScaleInLeft;
    animation-duration: 1.8s;
    animation-timing-function: ease;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    will-change: opacity;
}
.RotateScaleInLeft {
    opacity: 0;
}
@keyframes RotateScaleInLeft {
  0% {
    opacity: 0;
    transform: scale(1.2) rotate(4deg);
    filter: blur(1px);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: blur(0);
  }
}

/*RotateScaleInRight(右回転)*/
.RotateScaleInRight.wow.animated {
    animation-name: RotateScaleInRight;
    animation-duration: 1.8s;
    animation-timing-function: ease;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    will-change: opacity;
}
.RotateScaleInRight {
    opacity: 0;
}
@keyframes RotateScaleInRight {
  0% {
    opacity: 0;
    transform: scale(1.2) rotate(-4deg);
    filter: blur(1px);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: blur(0);
  }
}


/*clippath(左→右)*/
.clippathLeftRight.wow.animated {
    animation-name: clippathLeftRight;
    animation-duration: 1.6s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform;
}
.clippathLeftRight {
    opacity: 0;
}
@keyframes clippathLeftRight {
0% {
    opacity: 0;
    filter: blur(6px);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
30% {
    filter: blur(6px);
}
100% {
    opacity: 1;
    filter: blur(0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}
}

/*clippath(左→右 ※blurなし)*/
.clippathLeftRightNBlur.wow.animated {
    animation-name: clippathLeftRightNBlur;
    animation-duration: 1.6s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform;
}
.clippathLeftRightNBlur {
    opacity: 0;
}
@keyframes clippathLeftRightNBlur {
0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
30% {
}
100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}
}

/*clippath(右→左)*/
.clippathRightLeft.wow.animated {
    animation-name: clippathRightLeft;
    animation-duration: 1.6s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.clippathRightLeft {
    opacity: 0;
}
@keyframes clippathRightLeft {
0% {
    opacity: 0;
    filter: blur(6px);
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}
30% {
    filter: blur(6px);
}
100% {
    opacity: 1;
    filter: blur(0);
    webkit-clip-path: inset(0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}
}

/*clippath(上→下)*/
.clippathTopBottom.wow.animated {
    animation-name: clippathTopBottom;
    animation-duration: 1.6s;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform;
}
.clippathTopBottom {
    opacity: 0;
}
@keyframes clippathTopBottom {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

/*icon*/

.mv-icon.wow.animated {
    opacity: 1;
    animation-name: mv-icon;
    animation-duration: .5s;
    animation-timing-function: ease-in;
    animation-delay: .5s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes mv-icon {
0% {
    opacity: 1;
    transform: rotate(-15deg) scale(1.2);
}
100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}
}

/*underline*/

.underline {
    display: inline;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 10px;
    padding: 0 2px 2px 5px;
    transition: all 1s ease;
}
.underline.wow.animated {
    background-size: 100% 30px;
}

