@charset "UTF-8";
/*--------------------------
 CSSアニメーション
--------------------------*/
#mq_nivea2309 .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 0.9s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  -ms-transition:  all 0.9s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  -moz-transition:  all 0.9s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition:  all 0.9s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

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


/*fadein*/
#mq_nivea2309 .fadein {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  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;
}

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

/*clipimage*/
#mq_nivea2309 .clipimage {
  -webkit-clip-path: circle(0% at 50% 50%);
  clip-path: circle(0% at 50% 50%);
  display: inline-block;
  transition: clip-path 2s .5s cubic-bezier(.65,0,.35,1),-webkit-clip-path 2s .5s cubic-bezier(.65,0,.35,1);
}

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

/* btn arrow */
#mq_nivea2309 .btn::before,
#mq_nivea2309 .btn2::before {
  animation: arrow 2.5s infinite;
  -webkit-animation: arrow 2.5s infinite;
}

#mq_nivea2309 .btn::after,
#mq_nivea2309 .btn2::after {
  animation: arrow2 2.5s infinite;
  -webkit-animation: arrow2 2.5s infinite;
}


@keyframes arrow {
  0% {opacity:0}
  10% {opacity:1}
  60% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
}

@keyframes arrow2 {
  0% {opacity:0}
  60% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
}

