@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: 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;
    will-change: transform, opacity;
}
.fadeZoomOut {
    opacity: 0;
}
@keyframes fadeZoomOut {
  0% {
    opacity: 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;
    will-change: transform, opacity;
}
.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, opacity;
}
.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;
    will-change: transform, opacity;
}
.fadeZoomIn {
    opacity: 0;
}
@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(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;
    will-change: transform, opacity;
}
.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: 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, opacity;
}
.fadeRightLeft {
    opacity: 0;
}
@keyframes fadeRightLeft {
  0% {
    opacity: 0;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*fadeLeftRight(左→右)*/
.fadeLeftRight.wow.animated {
    animation-name: fadeLeftRight;
    animation-duration: 1.8s;
    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, opacity;
}
.fadeLeftRight {
    opacity: 0;
}
@keyframes fadeLeftRight {
  0% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*fadeTopBottom(上→下)*/
.fadeTopBottom.wow.animated {
    animation-name: fadeTopBottom;
    animation-duration: 1.8s;
    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, opacity;
}
.fadeTopBottom {
    opacity: 0;
}
@keyframes fadeTopBottom {
  0% {
    opacity: 0;
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*fadeBottomTop(下→上)*/
.fadeBottomTop.wow.animated {
    animation-name: fadeBottomTop;
    animation-duration: 1.8s;
    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, opacity;
}
.fadeBottomTop {
    opacity: 0;
}
@keyframes fadeBottomTop {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*fadeBottomTop(下→上 ※blurなし)*/
.fadeBottomTopNBlur.wow.animated {
    animation-name: fadeBottomTopNBlur;
    animation-duration: 1.8s;
    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, 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: 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, opacity;
}
.fadeRightLeftScale {
    opacity: 0;
}
@keyframes fadeRightLeftScale {
  0% {
    opacity: 0;
    transform: translate(10%, -8px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/*fadeLeftRightScale(左→右 斜め)*/
.fadeLeftRightScale.wow.animated {
    animation-name: fadeLeftRightScale;
    animation-duration: 1.8s;
    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, opacity;
}
.fadeLeftRightScale {
    opacity: 0;
}
@keyframes fadeLeftRightScale {
  0% {
    opacity: 0;
    transform: translate(-10%, -8px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/*RotateScaleInLeft(左回転)*/
.RotateScaleInLeft.wow.animated {
    animation-name: RotateScaleInLeft;
    animation-duration: 1.8s;
    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, opacity;
}
.RotateScaleInLeft {
    opacity: 0;
}
@keyframes RotateScaleInLeft {
  0% {
    opacity: 0;
    transform: scale(1.2) rotate(4deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/*RotateScaleInRight(右回転)*/
.RotateScaleInRight.wow.animated {
    animation-name: RotateScaleInRight;
    animation-duration: 1.8s;
    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, opacity;
}
.RotateScaleInRight {
    opacity: 0;
}
@keyframes RotateScaleInRight {
  0% {
    opacity: 0;
    transform: scale(1.2) rotate(-4deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}


/*------------------------------------------------
  clippath系
  修正方針：
  ・opacity と clip-path を同時にアニメーションさせない
    → 0% で即 opacity:1 にし clip-path だけでリビール
  ・filter:blur を clip-path と同時に使わない（GPU競合）
-------------------------------------------------*/

/*clippath(左→右)*/
.clippathLeftRight.wow.animated {
    animation-name: clippathLeftRight;
    animation-duration: 1.6s;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    will-change: clip-path;
}
.clippathLeftRight {
    opacity: 0;
}
@keyframes clippathLeftRight {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

/*clippath(左→右 ※blurなし)*/
.clippathLeftRightNBlur.wow.animated {
    animation-name: clippathLeftRightNBlur;
    animation-duration: 1.6s;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    will-change: clip-path;
}
.clippathLeftRightNBlur {
    opacity: 0;
}
@keyframes clippathLeftRightNBlur {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  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: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    will-change: clip-path;
}
.clippathRightLeft {
    opacity: 0;
}
@keyframes clippathRightLeft {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

/*clippath(右→左 ※blurなし)*/
.clippathRightLeftNBlur.wow.animated {
    animation-name: clippathRightLeftNBlur;
    animation-duration: 1.6s;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    will-change: clip-path;
}
.clippathRightLeftNBlur {
    opacity: 0;
}
@keyframes clippathRightLeftNBlur {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -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.25, 0.46, 0.45, 0.94);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    will-change: clip-path;
}
.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);
  }
}

/*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: both;
    will-change: clip-path;
}
.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: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    will-change: clip-path;
}
.clippathBottomTop {
    opacity: 0;
}
@keyframes clippathBottomTop {
  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(下→上 ※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: both;
    will-change: clip-path;
}
.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: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    will-change: clip-path;
}
.clippathTopLBottomR {
    opacity: 0;
}
@keyframes clippathTopLBottomR {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 100% 0);
    clip-path: inset(0 100% 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

/* clippath(右上→左下) */
.clippathTopRBottomL.wow.animated {
    animation-name: clippathTopRBottomL;
    animation-duration: 1.6s;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    will-change: clip-path;
}
.clippathTopRBottomL {
    opacity: 0;
}
@keyframes clippathTopRBottomL {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 100% 100%);
    clip-path: inset(0 0 100% 100%);
  }
  100% {
    opacity: 1;
    -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;
    will-change: transform, opacity;
}
.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, opacity;
}
.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, opacity;
}
.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, opacity;
}
.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, opacity;
}
.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, opacity;
}
.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, opacity;
}
.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: both;
    will-change: clip-path;
}
@keyframes open-side {
    0% {
        opacity: 1;
        clip-path: inset(0 50% 0 50%);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0% 0 0%);
    }
}


/* フローティングフェード（ゆらゆら浮遊効果） */
.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);
    }
    30% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg) translateY(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);
    }
    40% {
        opacity: 0.8;
        transform: translateX(5px) skewX(-2deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewX(0deg) scale(1);
    }
}

/* ライトレイ（光の筋が通る効果） */
.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);
    }
    25% {
        opacity: 0.5;
        transform: translateY(20px) rotate(1deg) scale(0.95);
    }
    75% {
        opacity: 0.9;
        transform: translateY(-5px) rotate(-0.5deg) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* プリズムシフト（プリズムのような光の屈折効果） */
.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;
}
.prismShift {
    opacity: 0;
}
@keyframes prismShift {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(15deg) translateX(-20px);
    }
    40% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg) translateX(0);
    }
}

/* ソフトパルス（心拍のような優しい脈動） */
.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);
    }
    30% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.9;
        transform: translateY(-3px) scaleY(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleY(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;
}
.auroraFade {
    opacity: 0;
    position: relative;
}
@keyframes auroraFade {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    25% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
        transform: scale(1.01) translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* クリスタルエマージ（水晶のような透明感のある登場） */
.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;
}
.crystalEmerge {
    opacity: 0;
}
@keyframes crystalEmerge {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateX(30deg) scale(0.85);
    }
    30% {
        opacity: 0.5;
        transform: perspective(1000px) rotateX(15deg) scale(0.95);
    }
    70% {
        opacity: 0.9;
        transform: perspective(1000px) rotateX(-2deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateX(0deg) scale(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;
  opacity: 0;
}
.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;
  will-change: transform, opacity;
}
.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;
}
@keyframes subtleParallax {
  0% {
    opacity: 0;
    transform: scale(1.02) translateY(30px);
  }
  30% {
    opacity: 0.6;
    transform: scale(1.01) translateY(15px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
  }
}


/*----------------------------------------
elegantFlip3D（エレガント 3D フリップ）
----------------------------------------*/
.elegantFlip3D {
  perspective: 1000px;
}
.elegantFlip3D .flipInner {
  transform-style: preserve-3d;
}
.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);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


/*----------------------------------------
shineCrossReveal（クロスシャイン／斜めリビール）
----------------------------------------*/
.shineCrossReveal {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.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: both;
  will-change: clip-path, opacity;
}
@keyframes crossRevealFade {
  0% {
    opacity: 1;
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  }
  30% {
    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);
  }
  40% {
    opacity: 0.5;
    transform: translate(20%, 20%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}


/*----------------------------------------
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;
}
.softPulseGlow {
  opacity: 0;
}
@keyframes softPulseGlow {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  30% {
    opacity: 0.6;
    transform: scale(1.02);
  }
  60% {
    opacity: 0.9;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(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;
}
.velvetSlideUp {
  opacity: 0;
  transform: translateY(60px) scaleY(0.85);
}
@keyframes velvetSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scaleY(0.85);
  }
  40% {
    opacity: 0.6;
    transform: translateY(20px) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(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;
}
@keyframes auroraFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  25% {
    opacity: 0.4;
    transform: translateY(15px) scale(0.95);
  }
  50% {
    opacity: 0.7;
    transform: translateY(5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(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%;
    transition: background-size 1s ease-in-out;
    background-image: linear-gradient(90deg, rgba(0, 79, 86, 0.2) 0%, rgba(0, 79, 86, 0.2) 100%);
}
.marker.active {
    background-size: 100% 35%;
}

/* ================================================
   付箋を貼るアニメーション
   ================================================ */
.sticky3DParent {
  display: inline-block;
  perspective: 500px;
}

.stickyFall3D {
  display: inline-block;
  transform: translateZ(-60px) rotateX(-25deg);
  clip-path: inset(0 100% 0 0);
  transform-style: preserve-3d;
  transform-origin: left center;
}

.stickyFall3D.wow.animated {
  animation-name: stick3DEnhanced;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  will-change: transform, clip-path;
}

@keyframes stick3DEnhanced {
  0% {
    transform: translateZ(-60px) rotateX(-25deg);
    clip-path: inset(0 100% 0 0);
  }
  10% {
    transform: translateZ(-30px) rotateX(-15deg);
    clip-path: inset(0 98% 0 0);
  }
  20% {
    transform: translateZ(-30px) rotateX(-15deg);
    clip-path: inset(0 98% 0 0);
  }
  80% {
    transform: translateZ(-5px) rotateX(-5deg);
    clip-path: inset(0 10% 0 0);
  }
  100% {
    transform: translateZ(0) rotateX(0deg);
    clip-path: inset(0 0% 0 0);
  }
}
