@charset "UTF-8";

/*------------------------------------------------
Animation
-------------------------------------------------*/

/*fadein(フェードイン)*/
.fadeIN.wow.animated {
    animation-name: fadeIN;
    animation-duration: 1.8s;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 0.2s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: opacity;
}

.fadeIN {
    opacity: 0;
}

@keyframes fadeIN {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*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);
  }
}

/*zoomout(ズームアウト 枠固定)*/
.fadeZoomOutFix.wow.animated {
    animation-name: fadeZoomOutFix;
    animation-duration: 4s;
    animation-timing-function: ease-out;
    animation-delay: .5s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.fadeZoomOutFix {
    opacity: 0;
}
@keyframes fadeZoomOutFix {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*zoomout(ズームアウト 枠固定+上起点)*/
.fadeZoomOutTFix.wow.animated {
    animation-name: fadeZoomOutTFix;
    animation-duration: 4s;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 0.2s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform;
}
.fadeZoomOutTFix {
    opacity: 0;
    transform-origin: top;
    transform: scale(1.1);
}
@keyframes fadeZoomOutTFix {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  20% {
    opacity: 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);
  }
}

/* zoomin(ズームイン 枠固定) */
.fadeZoomInFix.wow.animated {
    animation-name: fadeZoomInFix;
    animation-duration: 4s;
    animation-timing-function: ease-out;
    animation-delay: .5s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.fadeZoomInFix {
    opacity: 0;
    transform-origin: center; /* ズームインの基準を画像の中心に */
}
@keyframes fadeZoomInFix {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/*fadeRightLeft(右→左)*/
.fadeRightLeft.wow.animated {
    animation-name: fadeRightLeft;
    animation-duration: 1s;
    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: 1s;
    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: 1s;
    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: 1s;
    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);
  }
}

/*fadeBottomTop(下→上 ※blurなし)*/
.fadeBottomTopNBlur.wow.animated {
    animation-name: fadeBottomTopNBlur;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    will-change: opacity;
}
.fadeBottomTopNBlur {
    opacity: 0;
}
@keyframes fadeBottomTopNBlur {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*fadeRightLeftScale(右→左 斜め)*/
.fadeRightLeftScale.wow.animated {
    animation-name: fadeRightLeftScale;
    animation-duration: 1s;
    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: 1s;
    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: 1s;
    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: 1s;
    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: 1s;
    animation-timing-function: linear;
    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: 1s;
    animation-timing-function: linear;
    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: 1s;
    animation-timing-function: linear;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.clippathRightLeft {
    opacity: 0;
}
@keyframes clippathRightLeft {
0% {
    opacity: 0;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
    filter: blur(6px);
}
30% {
    filter: blur(6px);
}
100% {
    opacity: 1;
    filter: blur(0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}
}

/*clippath(右→左 ※blurなし)*/
.clippathRightLeftNBlur.wow.animated {
    animation-name: clippathRightLeftNBlur;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.clippathRightLeftNBlur {
    opacity: 0;
}
@keyframes clippathRightLeftNBlur {
0% {
    opacity: 0;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}
30% {
}
100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}
}

/*clippath(上→下)*/
.clippathTopBottom.wow.animated {
    animation-name: clippathTopBottom;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.clippathTopBottom {
    opacity: 0;
}
@keyframes clippathTopBottom {
  0% {
    opacity: 0;
    filter: blur(6px);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  30% {
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}


/*clippath(上→下 ※blurなし)*/
.clippathTopBottomNBlur.wow.animated {
    animation-name: clippathTopBottomNBlur;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform;
}
.clippathTopBottomNBlur {
    opacity: 0;
}
@keyframes clippathTopBottomNBlur {
  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);
  }
}

/*clippath(下→上)*/
.clippathBottomTop.wow.animated {
    animation-name: clippathBottomTop;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.clippathBottomTop {
    opacity: 0;
}
@keyframes clippathBottomTop {
  0% {
    opacity: 0;
    filter: blur(6px);
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  30% {
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}



/*clippath(下→上 ※blurなし)*/
.clippathBottomTopNBlur.wow.animated {
    animation-name: clippathBottomTopNBlur;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform;
}
.clippathBottomTopNBlur {
    opacity: 0;
}
@keyframes clippathBottomTopNBlur {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

/* clippath(左上→右下) */
.clippathTopLBottomR.wow.animated {
    animation-name: clippathTopLBottomR;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform;
}
.clippathTopLBottomR {
    opacity: 0;
}
@keyframes clippathTopLBottomR {
  0% {
    opacity: 0;
    filter: blur(6px);
    /* top:0, right:100%, bottom:100%, left:0 → 左上にゼロサイズのクリップ */
    -webkit-clip-path: inset(0 100% 100% 0);
    clip-path: inset(0 100% 100% 0);
  }
  30% {
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

/* clippath(右上→左下) */
.clippathTopRBottomL.wow.animated {
    animation-name: clippathTopRBottomL;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform;
}
.clippathTopRBottomL {
    opacity: 0;
}
@keyframes clippathTopRBottomL {
  0% {
    opacity: 0;
    filter: blur(6px);
    /* top:0, right:0, bottom:100%, left:100% → 右上にゼロサイズのクリップ */
    -webkit-clip-path: inset(0 0 100% 100%);
    clip-path: inset(0 0 100% 100%);
  }
  30% {
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}


/*FadeInUpZoom*/
.FadeInUpZoom.wow.animated {
    animation-name: FadeInUpZoom;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-delay: .1s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.FadeInUpZoom {
    opacity: 0;
}
@keyframes FadeInUpZoom {
	0% {
		opacity: 0;
		transform: scale(1.1) translateY(10%);
	}
	40% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0px);
	}
}

/*slide-down*/
.slide-down.wow.animated {
  animation-name: slide-down;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
.slide-down {
    opacity: 0;
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* slide-up */
.slide-up.wow.animated {
  animation-name: slide-up;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
.slide-up {
    opacity: 0;
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* slide-up(下辺固定のまま) */
.slide-up-fix.wow.animated {
  animation-name: slide-up-fix;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}

.slide-up-fix {
    opacity: 0;
}
@keyframes slide-up-fix {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* slide-down(上辺固定のまま) */
.slide-down-fix.wow.animated {
  animation-name: slide-down-fix;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}

.slide-down-fix {
  opacity: 0;
}

@keyframes slide-down-fix {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* slide-right(左辺固定のまま) */
.slide-right-fix.wow.animated {
  animation-name: slide-right-fix;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}

.slide-right-fix {
  opacity: 0;
}

@keyframes slide-right-fix {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/* slide-left(右辺固定のまま) */
.slide-left-fix.wow.animated {
  animation-name: slide-left-fix;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}

.slide-left-fix {
  opacity: 0;
}

@keyframes slide-left-fix {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* open-side(カーテンのように左右に開く) */

.open-side {
	opacity: 0;
	clip-path: inset(0 50% 0 50%);
}

.open-side.wow.animated {
	animation-name: open-side;
	animation-duration: 1s;
	animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
	animation-delay: 0.6s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
	will-change: clip-path, opacity;
}

@keyframes open-side {
	0% {
		clip-path: inset(0 50% 0 50%);
		opacity: 0;
	}
	100% {
		clip-path: inset(0 0% 0 0%);
		opacity: 1;
	}
}
