@charset "UTF-8";

/*------------------------------------------------
Animation
-------------------------------------------------*/

/*fadein(フェードイン)*/
.fadeIN.wow.animated {
    animation-name: fadeIN;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform;
}
.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: 6s;
    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);
  }
}

/* ========== zoomout(枠固定＋右起点) ========== */
.fadeZoomOutRFix.wow.animated{
  animation-name: fadeZoomOutRFix;
  animation-duration: 6s;
  animation-timing-function: cubic-bezier(0.165,0.84,0.44,1);
  animation-delay: .2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
.fadeZoomOutRFix{
  opacity: 0;
  transform-origin: 100% 50%; /* 右・中央 */
  transform: scale(1.1);
}
@keyframes fadeZoomOutRFix{
  0%{ opacity:0; transform:scale(1.1); }
  20%{ opacity:1; }
  100%{ opacity:1; transform:scale(1); }
}

/* ========== zoomout(枠固定＋左起点) ========== */
.fadeZoomOutLFix.wow.animated{
  animation-name: fadeZoomOutLFix;
  animation-duration: 6s;
  animation-timing-function: cubic-bezier(0.165,0.84,0.44,1);
  animation-delay: .2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
.fadeZoomOutLFix{
  opacity: 0;
  transform-origin: 0% 50%; /* 左・中央 */
  transform: scale(1.1);
}
@keyframes fadeZoomOutLFix{
  0%{ opacity:0; transform:scale(1.1); }
  20%{ opacity:1; }
  100%{ opacity:1; transform:scale(1); }
}

/* ========== zoomout(枠固定＋下起点) ========== */
.fadeZoomOutBFix.wow.animated{
  animation-name: fadeZoomOutBFix;
  animation-duration: 6s;
  animation-timing-function: cubic-bezier(0.165,0.84,0.44,1);
  animation-delay: .2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
.fadeZoomOutBFix{
  opacity: 0;
  transform-origin: 50% 100%; /* 中央・下 */
  transform: scale(1.1);
}
@keyframes fadeZoomOutBFix{
  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: 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);
  }
}

/*fadeBottomTop(下→上 ※blurなし)*/
.fadeBottomTopNBlur.wow.animated {
    animation-name: fadeBottomTopNBlur;
    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;
}
.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: 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;
    -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);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}
}

/*clippath(右→左 ※blurなし)*/
.clippathRightLeftNBlur.wow.animated {
    animation-name: clippathRightLeftNBlur;
    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;
}
.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);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}
}

/*clippath(上→下)*/
.clippathTopBottom.wow.animated {
    animation-name: clippathTopBottom;
    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;
}
.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: 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;
}
.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: 1.6s;
    animation-timing-function: ease-in-out;
    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: 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;
}
.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: 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;
}
.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: 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;
}
.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: 1.5s;
    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: 1.4s;
  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: 1.4s;
  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: 1.4s;
  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: 1.4s;
  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: 1.4s;
  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: 1.4s;
  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: 1.4s;
	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;
	}
}

/* ===== 左右ゆれ（枠固定＋下起点）===== */
.fadeSwayLRBFixOnce.wow.animated{
  animation-name: fadeSwayLRBFixOnce;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: .2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.fadeSwayLRBFixOnce{ opacity:0; transform-origin:50% 100%; transform:rotate(-4deg); }

@keyframes fadeSwayLRBFixOnce{
  0%   { opacity:0; transform:rotate(-4deg); }
  30%  { opacity:1; transform:rotate(4deg); }
  100% { opacity:1; transform:rotate(0deg); }
}

/* フローティングフェード（ゆらゆら浮遊効果） */
.floatingFade.wow.animated {
    animation-name: floatingFade;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
}
.floatingFade {
    opacity: 0;
}
@keyframes floatingFade {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    50% {
        transform: translateY(-5px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* エレガントブルーム（花が咲くような効果） */
.elegantBloom.wow.animated {
    animation-name: elegantBloom;
    animation-duration: 2.5s;
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
}
.elegantBloom {
    opacity: 0;
    transform-origin: center bottom;
}
@keyframes elegantBloom {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateX(15deg) translateY(20px);
        filter: blur(2px);
    }
    30% {
        opacity: 0.7;
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg) translateY(0);
        filter: blur(0);
    }
}

/* シルクウェーブ（絹のような滑らかな波動） */
.silkWave.wow.animated {
    animation-name: silkWave;
    animation-duration: 2.2s;
    animation-timing-function: ease-out;
    animation-delay: 0.5s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
}
.silkWave {
    opacity: 0;
}
@keyframes silkWave {
    0% {
        opacity: 0;
        transform: translateX(-20px) skewX(5deg) scale(0.9);
        filter: blur(3px);
    }
    40% {
        opacity: 0.8;
        transform: translateX(5px) skewX(-2deg) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewX(0deg) scale(1);
        filter: blur(0);
    }
}

/* ライトレイ（光の筋が通る効果） */
.lightRay.wow.animated {
    animation-name: lightRay;
    animation-duration: 2.8s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
    position: relative;
    overflow: hidden;
}
.lightRay {
    opacity: 0;
}
.lightRay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    z-index: 1;
    pointer-events: none;
}
@keyframes lightRay {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    30% {
        opacity: 1;
    }
    50% {
        transform: scale(1.02) translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.lightRay.wow.animated::before {
    animation: lightRaySlide 2.8s ease-in-out 0.8s 1 normal forwards;
}
@keyframes lightRaySlide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* エアリーフロート（空気のような軽やかさ） */
.airyFloat.wow.animated {
    animation-name: airyFloat;
    animation-duration: 3.2s;
    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: transform, opacity;
}
.airyFloat {
    opacity: 0;
}
@keyframes airyFloat {
    0% {
        opacity: 0;
        transform: translateY(40px) rotate(2deg) scale(0.9);
        filter: blur(4px);
    }
    25% {
        opacity: 0.5;
        transform: translateY(20px) rotate(1deg) scale(0.95);
        filter: blur(2px);
    }
    75% {
        opacity: 0.9;
        transform: translateY(-5px) rotate(-0.5deg) scale(1.01);
        filter: blur(0.5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
        filter: blur(0);
    }
}

/* プリズムシフト（プリズムのような光の屈折効果） */
.prismShift.wow.animated {
    animation-name: prismShift;
    animation-duration: 2.6s;
    animation-timing-function: ease-out;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform, opacity, filter;
}
.prismShift {
    opacity: 0;
}
@keyframes prismShift {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(15deg) translateX(-20px);
        filter: hue-rotate(10deg) saturate(1.2) brightness(1.1);
    }
    40% {
        opacity: 0.8;
        filter: hue-rotate(5deg) saturate(1.1) brightness(1.05);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg) translateX(0);
        filter: hue-rotate(0deg) saturate(1) brightness(1);
    }
}

/* ソフトパルス（心拍のような優しい脈動） */
.softPulse.wow.animated {
    animation-name: softPulse;
    animation-duration: 3.5s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
}
.softPulse {
    opacity: 0;
}
@keyframes softPulse {
    0% {
        opacity: 0;
        transform: scale(0.88);
    }
    20% {
        opacity: 0.3;
        transform: scale(0.92);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.03);
    }
    70% {
        opacity: 0.9;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ヴェルベットスライド（ベルベットのような滑らかな登場） */
.velvetSlide.wow.animated {
    animation-name: velvetSlide;
    animation-duration: 2.4s;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 0.5s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
}
.velvetSlide {
    opacity: 0;
}
@keyframes velvetSlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scaleY(0.8);
        filter: blur(6px) contrast(1.2);
    }
    30% {
        opacity: 0.6;
        filter: blur(3px) contrast(1.1);
    }
    70% {
        opacity: 0.9;
        transform: translateY(-3px) scaleY(1.02);
        filter: blur(1px) contrast(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
        filter: blur(0) contrast(1);
    }
}

/* オーロラフェード（オーロラのような幻想的な登場） */
.auroraFade.wow.animated {
    animation-name: auroraFade;
    animation-duration: 4s;
    animation-timing-function: ease-out;
    animation-delay: 0.2s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform, opacity, filter;
}
.auroraFade {
    opacity: 0;
    position: relative;
}
@keyframes auroraFade {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
        filter: blur(8px) saturate(1.5) brightness(1.2);
    }
    25% {
        opacity: 0.4;
        filter: blur(4px) saturate(1.3) brightness(1.1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.01) translateY(-2px);
        filter: blur(2px) saturate(1.1) brightness(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0) saturate(1) brightness(1);
    }
}

/* クリスタルエマージ（水晶のような透明感のある登場） */
.crystalEmerge.wow.animated {
    animation-name: crystalEmerge;
    animation-duration: 2.8s;
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    will-change: transform, opacity, filter;
}
.crystalEmerge {
    opacity: 0;
}
@keyframes crystalEmerge {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateX(30deg) scale(0.85);
        filter: blur(5px) brightness(1.3) contrast(1.2);
    }
    30% {
        opacity: 0.5;
        transform: perspective(1000px) rotateX(15deg) scale(0.95);
        filter: blur(3px) brightness(1.15) contrast(1.1);
    }
    70% {
        opacity: 0.9;
        transform: perspective(1000px) rotateX(-2deg) scale(1.02);
        filter: blur(1px) brightness(1.05) contrast(1.02);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateX(0deg) scale(1);
        filter: blur(0) brightness(1) contrast(1);
    }
}

/*----------------------------------------
gentleSwing（やさしい揺れ戻し）
----------------------------------------*/
.gentleSwing.wow.animated {
  animation-name: gentleSwing;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform, opacity;
}
.gentleSwing {
  opacity: 0;
  transform-origin: center bottom;
}
@keyframes gentleSwing {
  0% {
    opacity: 0;
    transform: rotate(0deg);
  }
  20% {
    opacity: 1;
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(3deg);
  }
  60% {
    transform: rotate(-2deg);
  }
  80% {
    transform: rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}


/*----------------------------------------
luminousSheen（光沢シーン）
----------------------------------------*/
.luminousSheen {
  position: relative;
  overflow: hidden;
}
.luminousSheen.wow.animated {
  animation-name: luminousFadeIn;
  animation-duration: 1.8s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.luminousSheen {
  opacity: 0;
}
.luminousSheen::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(30deg);
  pointer-events: none;
  z-index: 2;
}
@keyframes luminousFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.luminousSheen.wow.animated::before {
  animation: sheenSlide 2s ease-in-out 1s 1 normal forwards;
}
@keyframes sheenSlide {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(30deg);
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(30deg);
    opacity: 0;
  }
}


/*----------------------------------------
subtleParallax（微細パララックス）
----------------------------------------*/
.subtleParallax.wow.animated {
  animation-name: subtleParallax;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform, opacity;
}
.subtleParallax {
  opacity: 0;
  transform: scale(1) translateY(0px);
}
@keyframes subtleParallax {
  0% {
    opacity: 0;
    transform: scale(1.02) translateY(30px);
    filter: blur(2px);
  }
  30% {
    opacity: 0.6;
    transform: scale(1.01) translateY(15px);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: blur(0);
  }
}


/*----------------------------------------
elegantFlip3D（エレガント 3D フリップ）
----------------------------------------*/
.elegantFlip3D {
  perspective: 1000px; /* 3D 投影の基準 */
}
.elegantFlip3D .flipInner {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.elegantFlip3D.wow.animated .flipInner {
  animation-name: elegantFlip3D;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform, opacity;
}
.elegantFlip3D .flipInner {
  opacity: 0;
  transform: rotateY(90deg);
}
@keyframes elegantFlip3D {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  40% {
    opacity: 1;
    transform: rotateY(30deg);
  }
  80% {
    transform: rotateY(-10deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}


/*----------------------------------------
bloomFadeUp（下からのブームフェード）
----------------------------------------*/
.bloomFadeUp.wow.animated {
  animation-name: bloomFadeUp;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-delay: 0.3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform, opacity;
  transform-origin: center bottom;
  opacity: 0;
}
@keyframes bloomFadeUp {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
    filter: blur(3px);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05) translateY(20px);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}


/*----------------------------------------
shineCrossReveal（クロスシャイン／斜めリビール）
----------------------------------------*/
.shineCrossReveal {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.shineCrossReveal .inner {
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  /* 中央に四角形ゼロサイズを作る */
}
.shineCrossReveal.wow.animated {
  animation-name: crossRevealFade;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clip-path, opacity;
}
@keyframes crossRevealFade {
  0% {
    opacity: 0;
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  }
  30% {
    opacity: 0.6;
    clip-path: polygon(0 50%, 100% 50%, 50% 0, 50% 100%);
  }
  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
/* シャイン効果 */
.shineCrossReveal::after {
  content: '';
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(45deg);
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}
.shineCrossReveal.wow.animated::after {
  animation: shineCrossSlide 1.8s ease-in-out 0.6s 1 forwards;
}
@keyframes shineCrossSlide {
  0% {
    transform: translate(-100%, -100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translate(100%, 100%) rotate(45deg);
    opacity: 0;
  }
}


/*----------------------------------------
driftFadeCorner（コーナーからのドリフトフェード）
----------------------------------------*/
.driftFadeCorner.wow.animated {
  animation-name: driftFadeCorner;
  animation-duration: 2.3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform, opacity;
}
.driftFadeCorner {
  opacity: 0;
  transform: translate(50%, 50%) scale(0.95);
}
@keyframes driftFadeCorner {
  0% {
    opacity: 0;
    transform: translate(50%, 50%) scale(0.95);
    filter: blur(2px);
  }
  40% {
    opacity: 0.5;
    transform: translate(20%, 20%) scale(1);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
  }
}


/*----------------------------------------
softPulseGlow（ソフトパルスグロー）
----------------------------------------*/
.softPulseGlow.wow.animated {
  animation-name: softPulseGlow;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform, opacity, filter;
}
.softPulseGlow {
  opacity: 0;
  transform: scale(1);
  filter: brightness(1);
}
@keyframes softPulseGlow {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: brightness(0.9);
  }
  30% {
    opacity: 0.6;
    transform: scale(1.02);
    filter: brightness(1.2);
  }
  60% {
    opacity: 0.9;
    transform: scale(0.98);
    filter: brightness(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
}


/*----------------------------------------
velvetSlideUp（ベルベットスライドアップ）
----------------------------------------*/
.velvetSlideUp.wow.animated {
  animation-name: velvetSlideUp;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform, opacity, filter;
}
.velvetSlideUp {
  opacity: 0;
  transform: translateY(60px) scaleY(0.85);
  filter: blur(4px) contrast(1.1);
}
@keyframes velvetSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scaleY(0.85);
    filter: blur(4px) contrast(1.1);
  }
  40% {
    opacity: 0.6;
    transform: translateY(20px) scaleY(0.95);
    filter: blur(2px) contrast(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    filter: blur(0) contrast(1);
  }
}


/*----------------------------------------
auroraFlowFade（オーロラフローフェード）
----------------------------------------*/
.auroraFlowFade {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.auroraFlowFade.wow.animated {
  animation-name: auroraFadeIn;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-delay: 0.3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform, opacity, filter;
}
@keyframes auroraFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(6px) saturate(1.3) brightness(1.2);
  }
  25% {
    opacity: 0.4;
    transform: translateY(15px) scale(0.95);
    filter: blur(4px) saturate(1.2) brightness(1.1);
  }
  50% {
    opacity: 0.7;
    transform: translateY(5px) scale(1.02);
    filter: blur(2px) saturate(1.1) brightness(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1) brightness(1);
  }
}
/* 流動するオーロラ光のエフェクト */
.auroraFlowFade::before {
  content: '';
  position: absolute;
  top: -120%;
  left: -120%;
  width: 240%;
  height: 240%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 60%);
  animation: auroraGlow 4s ease-in-out 0.8s infinite alternate;
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
}
@keyframes auroraGlow {
  0% {
    transform: scale(0.8) translate(0%, 0%);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1) translate(10%, 10%);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.9) translate(-10%, -10%);
    opacity: 0.2;
  }
}


/*Marker*/
.marker {
    display: inline;
    position: relative;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0% 35%; /* 初期状態を0%の幅、35%の高さに設定 */
    transition: background-size 1s ease-in-out; /* 背景サイズのトランジション設定 */
    /*padding-bottom: 1%;*/
    background-image: linear-gradient(90deg, rgba(0, 79, 86, 0.2) 0%, rgba(0, 79, 86, 0.2) 100%);
    /* 90degで左から右へのグラデーション */
}

.marker.active {
    background-size: 100% 35%; /* マーカーが左から右に46%の幅で引かれ、高さは35%に設定 */
}

/* ================================================
   付箋を貼るアニメーション
   ================================================ */
.sticky3DParent {
  display: inline-block;
  perspective: 500px;  /* 数値を小さくすると奥行き感がより強まる */
}

.stickyFall3D {
  display: inline-block;
  /* 奥に浮かせつつ少し仰ぎ気味に（紙が回転したまま浮いているイメージ） */
  transform: translateZ(-60px) rotateX(-25deg);
  /* 右側を隠して、左端だけ“くっつき待機” */
  clip-path: inset(0 100% 0 0);
  /* 浮遊感を強調するシャドウ */
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transform-origin: left center;
}

.stickyFall3D.wow.animated {
  animation-name: stick3DEnhanced;
  animation-duration: 1.2s;              /* 総再生時間。好みで 1.0～1.5 秒に調整可 */
  animation-timing-function: ease-out;   /* 最後にゆっくり落ち着く感 */
  animation-delay: 0s;                   /* WOW.js 発火後すぐ実行 */
  animation-iteration-count: 1;
  animation-fill-mode: forwards;         /* 最終フレームを保持 */
  will-change: transform, clip-path, box-shadow;
}

@keyframes stick3DEnhanced {
  0% {
    transform: translateZ(-60px) rotateX(-25deg);
    clip-path: inset(0 100% 0 0);
    box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.3);
  }
  10% {
    transform: translateZ(-30px) rotateX(-15deg);
    clip-path: inset(0 98% 0 0);     /* 左端2% だけ貼りつく */
    box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.22);
  }
  20% {
    transform: translateZ(-30px) rotateX(-15deg);
    clip-path: inset(0 98% 0 0);     /* ここで一息。左端がペタッと貼りついた状態を保持 */
    box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.22);
  }
  80% {
    transform: translateZ(-5px) rotateX(-5deg);
    clip-path: inset(0 10% 0 0);     /* 右側10%だけ隠す */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
  }
  100% {
    transform: translateZ(0) rotateX(0deg);
    clip-path: inset(0 0% 0 0);       /* 全体を表示 */
    box-shadow: none;
  }
}

