@charset "UTF-8";
/*--------------------------
 CSSアニメーション
--------------------------*/
#mq_lancome2107 .fadeup {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 40px);
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  transform: translate(0, 40px);
  transform-style: preserve-3d;
  -webkit-transition: all .8s ease 0s;
  -ms-transition: all .8s ease 0s;
  -moz-transition: all .8s ease 0s;
  transition: all .8s ease 0s;
}

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


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

/*line*/
#mq_lancome2107 .line {
  background-image: -webkit-linear-gradient(left, transparent 50%, #fff 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, #fff 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, #fff 50%);
  background-image: -o-linear-gradient(left, transparent 50%, #fff 50%);
  background-image: linear-gradient(left, transparent 50%, #fff 50%);
  background-repeat: repeat-x;
  background-size: 200% 60%;
  background-position: 0 bottom;
  transition: all 1.5s ease .5s;
}

#mq_lancome2107 .is-active .line {
    background-position: -100% bottom;
}


/* question */
@keyframes question-pc {
  0% {
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
/*    background-size: 50px 50px;
    -ms-background-size: 50px 50px;*/
  }
  50% {
    top: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
/*    background-size: 70px 70px;
    -ms-background-size: 70px 70px;*/
  }
  100% {
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
/*    background-size: 50px 50px;
    -ms-background-size: 50px 50px;*/
  }
}


@keyframes question-sp {
  0% {
    top: 0;
    left: 0;
    width: 7.333333vw;
    height: 7.333333vw;
    background-size: 7.333333vw 7.333333vw;
  }
  50% {
    top: -1vw;
    left: -1vw;
    width: 9.33333333vw;
    height: 9.33333333vw;
    background-size: 9.33333333vw 9.33333333vw;
  }
  100% {
    top: 0;
    left: 0;
    width: 7.333333vw;
    height: 7.333333vw;
    background-size: 7.333333vw 7.333333vw;
  }
}


/* blink */
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;

  }
  100% {
    opacity: 1;
}
