@charset "UTF-8";
/*--------------------------
 CSSアニメーション
--------------------------*/
/*fadein*/
#mq_utm2203 .fadein {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 1.5s cubic-bezier(0.165, 0.8, 0.45, 1) 0s;
  -ms-transition: all 1.5s cubic-bezier(0.165, 0.8, 0.45, 1) 0s;
  -moz-transition: all 1.5s cubic-bezier(0.165, 0.8, 0.45, 1) 0s;
  transition: all 1.5s cubic-bezier(0.165, 0.8, 0.45, 1) 0s;
}

#mq_utm2203 .fadein.is-active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=1);
  opacity: 1;
}

/*fadeup*/
#mq_utm2203 .fadeup {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 30px);
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  transform: translate(0, 30px);
  transform-style: preserve-3d;
  -webkit-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

#mq_utm2203 .fadeup.is-active {
  -webkit-transform: translate(0, 0);
  filter: alpha(opacity=100);
  opacity: 1;
  transform: translate(0, 0);
}

/*blur*/
#mq_utm2203 .blur {
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.165, 0.8, 0.45, 1) 0s;
  -ms-transition: all 1s cubic-bezier(0.165, 0.8, 0.45, 1) 0s;
  -moz-transition: all 1s cubic-bezier(0.165, 0.8, 0.45, 1) 0s;
  transition: all 1s cubic-bezier(0.165, 0.8, 0.45, 1) 0s;
  filter: blur(6px);
}

#mq_utm2203 .blur.is-active {
  filter: blur(0);
  opacity: 1;
}

/*fade-skew*/
#mq_utm2203 .fade-skew {
  -webkit-transition: opacity .5s ease-out, -webkit-transform 1s cubic-bezier(0.05, 0.45, 0.6, 1);
  transition: opacity .5s ease-out, -webkit-transform 1s cubic-bezier(0.05, 0.45, 0.6, 1);
  transition: transform 1s cubic-bezier(0.05, 0.45, 0.6, 1), opacity .5s ease-out;
  transition: transform 1s cubic-bezier(0.05, 0.45, 0.6, 1), opacity .5s ease-out, -webkit-transform 1s cubic-bezier(0.05, 0.45, 0.6, 1);
  -webkit-transform: translate3d(-20px, 40px, 0) skew(0deg, 2deg);
  transform: translate3d(-20px, 40px, 0) skew(0deg, 2deg);
  opacity: 0;
}

#mq_utm2203 .fade-skew.is-active {
  -webkit-transform: translate3d(0, 0, 0) skew(0deg, 0deg);
  transform: translate3d(0, 0, 0) skew(0deg, 0deg);
  opacity: 1;
}

/* mv */
#mq_utm2203 .clipimage.is-active {
  -webkit-clip-path: circle(100% at 50% 50%);
  clip-path: circle(100% at 50% 50%);
}

#mq_utm2203 .clipimage {
  -webkit-clip-path: circle(0% at 50% 50%);
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1s 0.4s cubic-bezier(0.65, 0, 0.35, 1), -webkit-clip-path 1s 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* twincle */
@keyframes twincle1 {
  0% {opacity:0; transform: scale(0.5);}
  50% {opacity:0; transform: scale(0.5);}
  75% {opacity:1; transform: scale(1);}
  95% {opacity:0; transform: scale(0.5);}
  100% {opacity:0; transform: scale(0.5);}
}

@keyframes twincle2 {
  0% {opacity:0; transform: scale(0.2);}
  50% {opacity:0; transform: scale(0.2);}
  75% {opacity:1; transform: scale(0.5);}
  95% {opacity:0; transform: scale(0.2);}
  100% {opacity:0; transform: scale(0.2);}
}


@keyframes twincle3 {
  0% {opacity:0; transform: scale(0.5);}
  50% {opacity:0; transform: scale(0.5);}
  75% {opacity:1; transform: scale(1);}
  95% {opacity:0; transform: scale(0.5);}
  100% {opacity:0; transform: scale(0.5);}
}