@charset "UTF-8";

/*------------------------------------------------
Animation
-------------------------------------------------*/

/* text-slide */
.text-slide{
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  -webkit-transition: clip-path 1050ms cubic-bezier(0.53, 0.28, 0.42, 0.92), opacity 1000ms cubic-bezier(0.53, 0.28, 0.42, 0.92);
  -moz-transition: clip-path 1050ms cubic-bezier(0.53, 0.28, 0.42, 0.92), opacity 1000ms cubic-bezier(0.53, 0.28, 0.42, 0.92);
  -o-transition: clip-path 1050ms cubic-bezier(0.53, 0.28, 0.42, 0.92), opacity 1000ms cubic-bezier(0.53, 0.28, 0.42, 0.92);
  -ms-transition: clip-path 1050ms cubic-bezier(0.53, 0.28, 0.42, 0.92), opacity 1000ms cubic-bezier(0.53, 0.28, 0.42, 0.92);
  transition: clip-path 1050ms cubic-bezier(0.53, 0.28, 0.42, 0.92), opacity 1000ms cubic-bezier(0.53, 0.28, 0.42, 0.92);
}


/* テキスト要素にアニメーションを適用するクラス */
.text-slide.animate {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0)
}

@media only screen and (min-width: 769px) {
.text-slide{
  -webkit-transition: clip-path 3100ms cubic-bezier(0.53, 0.28, 0.42, 0.92), opacity 3000ms cubic-bezier(0.53, 0.28, 0.42, 0.92);
  -moz-transition: clip-path 3100ms cubic-bezier(0.53, 0.28, 0.42, 0.92), opacity 3000ms cubic-bezier(0.53, 0.28, 0.42, 0.92);
  -o-transition: clip-path 3100ms cubic-bezier(0.53, 0.28, 0.42, 0.92), opacity 3000ms cubic-bezier(0.53, 0.28, 0.42, 0.92);
  -ms-transition: clip-path 3100ms cubic-bezier(0.53, 0.28, 0.42, 0.92), opacity 3000ms cubic-bezier(0.53, 0.28, 0.42, 0.92);
  transition: clip-path 3100ms cubic-bezier(0.53, 0.28, 0.42, 0.92), opacity 3000ms cubic-bezier(0.53, 0.28, 0.42, 0.92);
}
}

/*zoomout*/
.fadeZoomOut.wow.animated {
    animation-name: fadeZoomOut;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.fadeZoomOut {
    opacity: 0;
}
@keyframes fadeZoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/*zoomin*/
.fadeZoomIn.wow.animated {
    animation-name: fadeZoomIn;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.fadeZoomIn {
    opacity: 0;
}
@keyframes fadeZoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/*fade(右→左)*/
.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: translate(10%, -8px) scale(1.1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0) scale(1);
  }
}

/*fade(左→右)*/
.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: translate(-10%, -8px) scale(1.1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0) scale(1);
  }
}

/*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(右→左)*/
.clippathRightLeft.wow.animated {
    animation-name: clippathRightLeft;
    animation-duration: 1.6s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.clippathRightLeft {
    opacity: 0;
}
@keyframes clippathRightLeft {
0% {
    opacity: 0;
    filter: blur(6px);
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}
30% {
    filter: blur(6px);
}
100% {
    opacity: 1;
    filter: blur(0);
    webkit-clip-path: inset(0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}
}

/*icon*/

.mv-icon.wow.animated {
    opacity: 1;
    animation-name: mv-icon;
    animation-duration: .5s;
    animation-timing-function: ease-in;
    animation-delay: .5s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes mv-icon {
0% {
    opacity: 1;
    transform: rotate(-15deg) scale(1.2);
}
100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}
}

/*underline*/

.underline {
    display: inline;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 10px;
    padding: 0 2px 2px 5px;
    transition: all 1s ease;
}
.underline.wow.animated {
    background-size: 100% 30px;
}
