@charset "UTF-8";

/*------------------------------------------------
Animation
-------------------------------------------------*/

/*zoomout(ズームアウト)*/
.fadeZoomOut.wow.animated {
    animation-name: fadeZoomOut;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.fadeZoomOut {
    opacity: 0;
}
@keyframes fadeZoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*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.3);
}
@keyframes fadeZoomOutTFix {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  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);
  }
}

/*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);
  }
}

/*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);
  }
}

/*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%に設定 */
}
