@charset "UTF-8";
@keyframes stretch {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
  33% {
    -webkit-transform: scaleX(0.9) scaleY(1);
            transform: scaleX(0.9) scaleY(1);
  }
  66% {
    -webkit-transform: scaleX(1) scaleY(0.9);
            transform: scaleX(1) scaleY(0.9);
  }
  100% {
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
}

@-webkit-keyframes stretch {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
  }
  33% {
    -webkit-transform: scaleX(0.9) scaleY(1);
  }
  66% {
    -webkit-transform: scaleX(1) scaleY(0.9);
  }
  100% {
    -webkit-transform: scaleX(1) scaleY(1);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(10px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-3500px);
            transform: translateY(-3500px);
    opacity: .5;
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-3500px);
    opacity: .5;
  }
}

.field {
  background: #CEF3FF;
  overflow: hidden;
  position: relative;
  height: 300px;
}

.bubble {
  position: absolute;
  bottom: -20%;
  left: 50%;
}

.bubble .item {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.8) inset;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.8) inset;
  position: relative;
}

.bubble .item:after {
  content: "";
  display: block;
  width: 20%;
  height: 20%;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  right: 15%;
  top: 15%;
  transform: rotateZ(45deg) scaleY(0.8);
  -webkit-transform: rotateZ(45deg) scaleY(0.8);
}

.item {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.6) inset;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.6) inset;
  position: relative;
}

.item::after {
  content: "";
  display: block;
  width: 20%;
  height: 20%;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  right: 15%;
  top: 15%;
  filter: blur(2px);
  -webkit-filter: blur(2px);
  transform: rotateZ(45deg) scaleY(0.8);
  -webkit-transform: rotateZ(45deg) scaleY(0.8);
}

.stretch0 {
  animation: stretch 2s ease 0s infinite normal;
  -webkit-animation: stretch 2s ease 0s infinite normal;
}

.shake0 {
  animation: shake 2s ease 0s infinite normal;
  -webkit-animation: shake 2s ease 0s infinite normal;
}

.move0 {
  animation: move 25s cubic-bezier(0.47, 0, 0.745, 0.715) 0s infinite normal;
  -webkit-animation: move 25s cubic-bezier(0.47, 0, 0.745, 0.715) 0s infinite normal;
}

.pos0 {
  left: 0%;
}

.scale0 {
  transform: scale(0);
  -webkit-transform: scale(0);
}

.stretch1 {
  animation: stretch 2.2s ease 0s infinite normal;
  -webkit-animation: stretch 2.2s ease 0s infinite normal;
}

.shake1 {
  animation: shake 2.2s ease 0s infinite normal;
  -webkit-animation: shake 2.2s ease 0s infinite normal;
}

.move1 {
  animation: move 25.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s infinite normal;
  -webkit-animation: move 25.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s infinite normal;
}

.pos1 {
  left: 2%;
}

.scale1 {
  transform: scale(0.1);
  -webkit-transform: scale(0.1);
}

.stretch2 {
  animation: stretch 2.4s ease 0s infinite normal;
  -webkit-animation: stretch 2.4s ease 0s infinite normal;
}

.shake2 {
  animation: shake 2.4s ease 0s infinite normal;
  -webkit-animation: shake 2.4s ease 0s infinite normal;
}

.move2 {
  animation: move 25.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s infinite normal;
  -webkit-animation: move 25.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s infinite normal;
}

.pos2 {
  left: 4%;
}

.scale2 {
  transform: scale(0.2);
  -webkit-transform: scale(0.2);
}

.stretch3 {
  animation: stretch 2.6s ease 0s infinite normal;
  -webkit-animation: stretch 2.6s ease 0s infinite normal;
}

.shake3 {
  animation: shake 2.6s ease 0s infinite normal;
  -webkit-animation: shake 2.6s ease 0s infinite normal;
}

.move3 {
  animation: move 25.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s infinite normal;
  -webkit-animation: move 25.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s infinite normal;
}

.pos3 {
  left: 6%;
}

.scale3 {
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
}

.stretch4 {
  animation: stretch 2.8s ease 0s infinite normal;
  -webkit-animation: stretch 2.8s ease 0s infinite normal;
}

.shake4 {
  animation: shake 2.8s ease 0s infinite normal;
  -webkit-animation: shake 2.8s ease 0s infinite normal;
}

.move4 {
  animation: move 25.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s infinite normal;
  -webkit-animation: move 25.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s infinite normal;
}

.pos4 {
  left: 8%;
}

.scale4 {
  transform: scale(0.4);
  -webkit-transform: scale(0.4);
}

.stretch5 {
  animation: stretch 3s ease 0s infinite normal;
  -webkit-animation: stretch 3s ease 0s infinite normal;
}

.shake5 {
  animation: shake 3s ease 0s infinite normal;
  -webkit-animation: shake 3s ease 0s infinite normal;
}

.move5 {
  animation: move 26s cubic-bezier(0.47, 0, 0.745, 0.715) 1s infinite normal;
  -webkit-animation: move 26s cubic-bezier(0.47, 0, 0.745, 0.715) 1s infinite normal;
}

.pos5 {
  left: 10%;
}

.scale5 {
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
}

.stretch6 {
  animation: stretch 3.2s ease 0s infinite normal;
  -webkit-animation: stretch 3.2s ease 0s infinite normal;
}

.shake6 {
  animation: shake 3.2s ease 0s infinite normal;
  -webkit-animation: shake 3.2s ease 0s infinite normal;
}

.move6 {
  animation: move 26.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s infinite normal;
  -webkit-animation: move 26.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s infinite normal;
}

.pos6 {
  left: 12%;
}

.scale6 {
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
}

.stretch7 {
  animation: stretch 3.4s ease 0s infinite normal;
  -webkit-animation: stretch 3.4s ease 0s infinite normal;
}

.shake7 {
  animation: shake 3.4s ease 0s infinite normal;
  -webkit-animation: shake 3.4s ease 0s infinite normal;
}

.move7 {
  animation: move 26.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s infinite normal;
  -webkit-animation: move 26.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s infinite normal;
}

.pos7 {
  left: 14%;
}

.scale7 {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
}

.stretch8 {
  animation: stretch 3.6s ease 0s infinite normal;
  -webkit-animation: stretch 3.6s ease 0s infinite normal;
}

.shake8 {
  animation: shake 3.6s ease 0s infinite normal;
  -webkit-animation: shake 3.6s ease 0s infinite normal;
}

.move8 {
  animation: move 26.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s infinite normal;
  -webkit-animation: move 26.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s infinite normal;
}

.pos8 {
  left: 16%;
}

.scale8 {
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}

.stretch9 {
  animation: stretch 3.8s ease 0s infinite normal;
  -webkit-animation: stretch 3.8s ease 0s infinite normal;
}

.shake9 {
  animation: shake 3.8s ease 0s infinite normal;
  -webkit-animation: shake 3.8s ease 0s infinite normal;
}

.move9 {
  animation: move 26.8s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s infinite normal;
  -webkit-animation: move 26.8s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s infinite normal;
}

.pos9 {
  left: 18%;
}

.scale9 {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
}

.stretch10 {
  animation: stretch 4s ease 0s infinite normal;
  -webkit-animation: stretch 4s ease 0s infinite normal;
}

.shake10 {
  animation: shake 4s ease 0s infinite normal;
  -webkit-animation: shake 4s ease 0s infinite normal;
}

.move10 {
  animation: move 27s cubic-bezier(0.47, 0, 0.745, 0.715) 2s infinite normal;
  -webkit-animation: move 27s cubic-bezier(0.47, 0, 0.745, 0.715) 2s infinite normal;
}

.pos10 {
  left: 20%;
}

.scale10 {
  transform: scale(1);
  -webkit-transform: scale(1);
}

.stretch11 {
  animation: stretch 4.2s ease 0s infinite normal;
  -webkit-animation: stretch 4.2s ease 0s infinite normal;
}

.shake11 {
  animation: shake 4.2s ease 0s infinite normal;
  -webkit-animation: shake 4.2s ease 0s infinite normal;
}

.move11 {
  animation: move 27.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s infinite normal;
  -webkit-animation: move 27.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s infinite normal;
}

.pos11 {
  left: 22%;
}

.scale11 {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.stretch12 {
  animation: stretch 4.4s ease 0s infinite normal;
  -webkit-animation: stretch 4.4s ease 0s infinite normal;
}

.shake12 {
  animation: shake 4.4s ease 0s infinite normal;
  -webkit-animation: shake 4.4s ease 0s infinite normal;
}

.move12 {
  animation: move 27.4s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s infinite normal;
  -webkit-animation: move 27.4s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s infinite normal;
}

.pos12 {
  left: 24%;
}

.scale12 {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

.stretch13 {
  animation: stretch 4.6s ease 0s infinite normal;
  -webkit-animation: stretch 4.6s ease 0s infinite normal;
}

.shake13 {
  animation: shake 4.6s ease 0s infinite normal;
  -webkit-animation: shake 4.6s ease 0s infinite normal;
}

.move13 {
  animation: move 27.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s infinite normal;
  -webkit-animation: move 27.6s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s infinite normal;
}

.pos13 {
  left: 26%;
}

.scale13 {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
}

.stretch14 {
  animation: stretch 4.8s ease 0s infinite normal;
  -webkit-animation: stretch 4.8s ease 0s infinite normal;
}

.shake14 {
  animation: shake 4.8s ease 0s infinite normal;
  -webkit-animation: shake 4.8s ease 0s infinite normal;
}

.move14 {
  animation: move 27.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s infinite normal;
  -webkit-animation: move 27.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s infinite normal;
}

.pos14 {
  left: 28%;
}

.scale14 {
  transform: scale(1.4);
  -webkit-transform: scale(1.4);
}

.stretch15 {
  animation: stretch 5s ease 0s infinite normal;
  -webkit-animation: stretch 5s ease 0s infinite normal;
}

.shake15 {
  animation: shake 5s ease 0s infinite normal;
  -webkit-animation: shake 5s ease 0s infinite normal;
}

.move15 {
  animation: move 28s cubic-bezier(0.47, 0, 0.745, 0.715) 3s infinite normal;
  -webkit-animation: move 28s cubic-bezier(0.47, 0, 0.745, 0.715) 3s infinite normal;
}

.pos15 {
  left: 30%;
}

.scale15 {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
}

.stretch16 {
  animation: stretch 5.2s ease 0s infinite normal;
  -webkit-animation: stretch 5.2s ease 0s infinite normal;
}

.shake16 {
  animation: shake 5.2s ease 0s infinite normal;
  -webkit-animation: shake 5.2s ease 0s infinite normal;
}

.move16 {
  animation: move 28.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s infinite normal;
  -webkit-animation: move 28.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s infinite normal;
}

.pos16 {
  left: 32%;
}

.scale16 {
  transform: scale(1.6);
  -webkit-transform: scale(1.6);
}

.stretch17 {
  animation: stretch 5.4s ease 0s infinite normal;
  -webkit-animation: stretch 5.4s ease 0s infinite normal;
}

.shake17 {
  animation: shake 5.4s ease 0s infinite normal;
  -webkit-animation: shake 5.4s ease 0s infinite normal;
}

.move17 {
  animation: move 28.4s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s infinite normal;
  -webkit-animation: move 28.4s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s infinite normal;
}

.pos17 {
  left: 34%;
}

.scale17 {
  transform: scale(1.7);
  -webkit-transform: scale(1.7);
}

.stretch18 {
  animation: stretch 5.6s ease 0s infinite normal;
  -webkit-animation: stretch 5.6s ease 0s infinite normal;
}

.shake18 {
  animation: shake 5.6s ease 0s infinite normal;
  -webkit-animation: shake 5.6s ease 0s infinite normal;
}

.move18 {
  animation: move 28.6s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s infinite normal;
  -webkit-animation: move 28.6s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s infinite normal;
}

.pos18 {
  left: 36%;
}

.scale18 {
  transform: scale(1.8);
  -webkit-transform: scale(1.8);
}

.stretch19 {
  animation: stretch 5.8s ease 0s infinite normal;
  -webkit-animation: stretch 5.8s ease 0s infinite normal;
}

.shake19 {
  animation: shake 5.8s ease 0s infinite normal;
  -webkit-animation: shake 5.8s ease 0s infinite normal;
}

.move19 {
  animation: move 28.8s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s infinite normal;
  -webkit-animation: move 28.8s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s infinite normal;
}

.pos19 {
  left: 38%;
}

.scale19 {
  transform: scale(1.9);
  -webkit-transform: scale(1.9);
}

.stretch20 {
  animation: stretch 6s ease 0s infinite normal;
  -webkit-animation: stretch 6s ease 0s infinite normal;
}

.shake20 {
  animation: shake 6s ease 0s infinite normal;
  -webkit-animation: shake 6s ease 0s infinite normal;
}

.move20 {
  animation: move 29s cubic-bezier(0.47, 0, 0.745, 0.715) 4s infinite normal;
  -webkit-animation: move 29s cubic-bezier(0.47, 0, 0.745, 0.715) 4s infinite normal;
}

.pos20 {
  left: 40%;
}

.scale20 {
  transform: scale(2);
  -webkit-transform: scale(2);
}

.stretch21 {
  animation: stretch 6.2s ease 0s infinite normal;
  -webkit-animation: stretch 6.2s ease 0s infinite normal;
}

.shake21 {
  animation: shake 6.2s ease 0s infinite normal;
  -webkit-animation: shake 6.2s ease 0s infinite normal;
}

.move21 {
  animation: move 29.2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s infinite normal;
  -webkit-animation: move 29.2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s infinite normal;
}

.pos21 {
  left: 42%;
}

.scale21 {
  transform: scale(2.1);
  -webkit-transform: scale(2.1);
}

.stretch22 {
  animation: stretch 6.4s ease 0s infinite normal;
  -webkit-animation: stretch 6.4s ease 0s infinite normal;
}

.shake22 {
  animation: shake 6.4s ease 0s infinite normal;
  -webkit-animation: shake 6.4s ease 0s infinite normal;
}

.move22 {
  animation: move 29.4s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s infinite normal;
  -webkit-animation: move 29.4s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s infinite normal;
}

.pos22 {
  left: 44%;
}

.scale22 {
  transform: scale(2.2);
  -webkit-transform: scale(2.2);
}

.stretch23 {
  animation: stretch 6.6s ease 0s infinite normal;
  -webkit-animation: stretch 6.6s ease 0s infinite normal;
}

.shake23 {
  animation: shake 6.6s ease 0s infinite normal;
  -webkit-animation: shake 6.6s ease 0s infinite normal;
}

.move23 {
  animation: move 29.6s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s infinite normal;
  -webkit-animation: move 29.6s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s infinite normal;
}

.pos23 {
  left: 46%;
}

.scale23 {
  transform: scale(2.3);
  -webkit-transform: scale(2.3);
}

.stretch24 {
  animation: stretch 6.8s ease 0s infinite normal;
  -webkit-animation: stretch 6.8s ease 0s infinite normal;
}

.shake24 {
  animation: shake 6.8s ease 0s infinite normal;
  -webkit-animation: shake 6.8s ease 0s infinite normal;
}

.move24 {
  animation: move 29.8s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s infinite normal;
  -webkit-animation: move 29.8s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s infinite normal;
}

.pos24 {
  left: 48%;
}

.scale24 {
  transform: scale(2.4);
  -webkit-transform: scale(2.4);
}

.stretch25 {
  animation: stretch 7s ease 0s infinite normal;
  -webkit-animation: stretch 7s ease 0s infinite normal;
}

.shake25 {
  animation: shake 7s ease 0s infinite normal;
  -webkit-animation: shake 7s ease 0s infinite normal;
}

.move25 {
  animation: move 30s cubic-bezier(0.47, 0, 0.745, 0.715) 5s infinite normal;
  -webkit-animation: move 30s cubic-bezier(0.47, 0, 0.745, 0.715) 5s infinite normal;
}

.pos25 {
  left: 50%;
}

.scale25 {
  transform: scale(2.5);
  -webkit-transform: scale(2.5);
}

.stretch26 {
  animation: stretch 7.2s ease 0s infinite normal;
  -webkit-animation: stretch 7.2s ease 0s infinite normal;
}

.shake26 {
  animation: shake 7.2s ease 0s infinite normal;
  -webkit-animation: shake 7.2s ease 0s infinite normal;
}

.move26 {
  animation: move 30.2s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s infinite normal;
  -webkit-animation: move 30.2s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s infinite normal;
}

.pos26 {
  left: 52%;
}

.scale26 {
  transform: scale(2.6);
  -webkit-transform: scale(2.6);
}

.stretch27 {
  animation: stretch 7.4s ease 0s infinite normal;
  -webkit-animation: stretch 7.4s ease 0s infinite normal;
}

.shake27 {
  animation: shake 7.4s ease 0s infinite normal;
  -webkit-animation: shake 7.4s ease 0s infinite normal;
}

.move27 {
  animation: move 30.4s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s infinite normal;
  -webkit-animation: move 30.4s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s infinite normal;
}

.pos27 {
  left: 54%;
}

.scale27 {
  transform: scale(2.7);
  -webkit-transform: scale(2.7);
}

.stretch28 {
  animation: stretch 7.6s ease 0s infinite normal;
  -webkit-animation: stretch 7.6s ease 0s infinite normal;
}

.shake28 {
  animation: shake 7.6s ease 0s infinite normal;
  -webkit-animation: shake 7.6s ease 0s infinite normal;
}

.move28 {
  animation: move 30.6s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s infinite normal;
  -webkit-animation: move 30.6s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s infinite normal;
}

.pos28 {
  left: 56%;
}

.scale28 {
  transform: scale(2.8);
  -webkit-transform: scale(2.8);
}

.stretch29 {
  animation: stretch 7.8s ease 0s infinite normal;
  -webkit-animation: stretch 7.8s ease 0s infinite normal;
}

.shake29 {
  animation: shake 7.8s ease 0s infinite normal;
  -webkit-animation: shake 7.8s ease 0s infinite normal;
}

.move29 {
  animation: move 30.8s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s infinite normal;
  -webkit-animation: move 30.8s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s infinite normal;
}

.pos29 {
  left: 58%;
}

.scale29 {
  transform: scale(2.9);
  -webkit-transform: scale(2.9);
}

.stretch30 {
  animation: stretch 8s ease 0s infinite normal;
  -webkit-animation: stretch 8s ease 0s infinite normal;
}

.shake30 {
  animation: shake 8s ease 0s infinite normal;
  -webkit-animation: shake 8s ease 0s infinite normal;
}

.move30 {
  animation: move 31s cubic-bezier(0.47, 0, 0.745, 0.715) 6s infinite normal;
  -webkit-animation: move 31s cubic-bezier(0.47, 0, 0.745, 0.715) 6s infinite normal;
}

.pos30 {
  left: 60%;
}

.scale30 {
  transform: scale(3);
  -webkit-transform: scale(3);
}

.stretch31 {
  animation: stretch 8.2s ease 0s infinite normal;
  -webkit-animation: stretch 8.2s ease 0s infinite normal;
}

.shake31 {
  animation: shake 8.2s ease 0s infinite normal;
  -webkit-animation: shake 8.2s ease 0s infinite normal;
}

.move31 {
  animation: move 31.2s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s infinite normal;
  -webkit-animation: move 31.2s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s infinite normal;
}

.pos31 {
  left: 62%;
}

.scale31 {
  transform: scale(3.1);
  -webkit-transform: scale(3.1);
}

.stretch32 {
  animation: stretch 8.4s ease 0s infinite normal;
  -webkit-animation: stretch 8.4s ease 0s infinite normal;
}

.shake32 {
  animation: shake 8.4s ease 0s infinite normal;
  -webkit-animation: shake 8.4s ease 0s infinite normal;
}

.move32 {
  animation: move 31.4s cubic-bezier(0.47, 0, 0.745, 0.715) 6.4s infinite normal;
  -webkit-animation: move 31.4s cubic-bezier(0.47, 0, 0.745, 0.715) 6.4s infinite normal;
}

.pos32 {
  left: 64%;
}

.scale32 {
  transform: scale(3.2);
  -webkit-transform: scale(3.2);
}

.stretch33 {
  animation: stretch 8.6s ease 0s infinite normal;
  -webkit-animation: stretch 8.6s ease 0s infinite normal;
}

.shake33 {
  animation: shake 8.6s ease 0s infinite normal;
  -webkit-animation: shake 8.6s ease 0s infinite normal;
}

.move33 {
  animation: move 31.6s cubic-bezier(0.47, 0, 0.745, 0.715) 6.6s infinite normal;
  -webkit-animation: move 31.6s cubic-bezier(0.47, 0, 0.745, 0.715) 6.6s infinite normal;
}

.pos33 {
  left: 66%;
}

.scale33 {
  transform: scale(3.3);
  -webkit-transform: scale(3.3);
}

.stretch34 {
  animation: stretch 8.8s ease 0s infinite normal;
  -webkit-animation: stretch 8.8s ease 0s infinite normal;
}

.shake34 {
  animation: shake 8.8s ease 0s infinite normal;
  -webkit-animation: shake 8.8s ease 0s infinite normal;
}

.move34 {
  animation: move 31.8s cubic-bezier(0.47, 0, 0.745, 0.715) 6.8s infinite normal;
  -webkit-animation: move 31.8s cubic-bezier(0.47, 0, 0.745, 0.715) 6.8s infinite normal;
}

.pos34 {
  left: 68%;
}

.scale34 {
  transform: scale(3.4);
  -webkit-transform: scale(3.4);
}

.stretch35 {
  animation: stretch 9s ease 0s infinite normal;
  -webkit-animation: stretch 9s ease 0s infinite normal;
}

.shake35 {
  animation: shake 9s ease 0s infinite normal;
  -webkit-animation: shake 9s ease 0s infinite normal;
}

.move35 {
  animation: move 32s cubic-bezier(0.47, 0, 0.745, 0.715) 7s infinite normal;
  -webkit-animation: move 32s cubic-bezier(0.47, 0, 0.745, 0.715) 7s infinite normal;
}

.pos35 {
  left: 70%;
}

.scale35 {
  transform: scale(3.5);
  -webkit-transform: scale(3.5);
}

.stretch36 {
  animation: stretch 9.2s ease 0s infinite normal;
  -webkit-animation: stretch 9.2s ease 0s infinite normal;
}

.shake36 {
  animation: shake 9.2s ease 0s infinite normal;
  -webkit-animation: shake 9.2s ease 0s infinite normal;
}

.move36 {
  animation: move 32.2s cubic-bezier(0.47, 0, 0.745, 0.715) 7.2s infinite normal;
  -webkit-animation: move 32.2s cubic-bezier(0.47, 0, 0.745, 0.715) 7.2s infinite normal;
}

.pos36 {
  left: 72%;
}

.scale36 {
  transform: scale(3.6);
  -webkit-transform: scale(3.6);
}

.stretch37 {
  animation: stretch 9.4s ease 0s infinite normal;
  -webkit-animation: stretch 9.4s ease 0s infinite normal;
}

.shake37 {
  animation: shake 9.4s ease 0s infinite normal;
  -webkit-animation: shake 9.4s ease 0s infinite normal;
}

.move37 {
  animation: move 32.4s cubic-bezier(0.47, 0, 0.745, 0.715) 7.4s infinite normal;
  -webkit-animation: move 32.4s cubic-bezier(0.47, 0, 0.745, 0.715) 7.4s infinite normal;
}

.pos37 {
  left: 74%;
}

.scale37 {
  transform: scale(3.7);
  -webkit-transform: scale(3.7);
}

.stretch38 {
  animation: stretch 9.6s ease 0s infinite normal;
  -webkit-animation: stretch 9.6s ease 0s infinite normal;
}

.shake38 {
  animation: shake 9.6s ease 0s infinite normal;
  -webkit-animation: shake 9.6s ease 0s infinite normal;
}

.move38 {
  animation: move 32.6s cubic-bezier(0.47, 0, 0.745, 0.715) 7.6s infinite normal;
  -webkit-animation: move 32.6s cubic-bezier(0.47, 0, 0.745, 0.715) 7.6s infinite normal;
}

.pos38 {
  left: 76%;
}

.scale38 {
  transform: scale(3.8);
  -webkit-transform: scale(3.8);
}

.stretch39 {
  animation: stretch 9.8s ease 0s infinite normal;
  -webkit-animation: stretch 9.8s ease 0s infinite normal;
}

.shake39 {
  animation: shake 9.8s ease 0s infinite normal;
  -webkit-animation: shake 9.8s ease 0s infinite normal;
}

.move39 {
  animation: move 32.8s cubic-bezier(0.47, 0, 0.745, 0.715) 7.8s infinite normal;
  -webkit-animation: move 32.8s cubic-bezier(0.47, 0, 0.745, 0.715) 7.8s infinite normal;
}

.pos39 {
  left: 78%;
}

.scale39 {
  transform: scale(3.9);
  -webkit-transform: scale(3.9);
}

.stretch40 {
  animation: stretch 10s ease 0s infinite normal;
  -webkit-animation: stretch 10s ease 0s infinite normal;
}

.shake40 {
  animation: shake 10s ease 0s infinite normal;
  -webkit-animation: shake 10s ease 0s infinite normal;
}

.move40 {
  animation: move 33s cubic-bezier(0.47, 0, 0.745, 0.715) 8s infinite normal;
  -webkit-animation: move 33s cubic-bezier(0.47, 0, 0.745, 0.715) 8s infinite normal;
}

.pos40 {
  left: 80%;
}

.scale40 {
  transform: scale(4);
  -webkit-transform: scale(4);
}

.stretch41 {
  animation: stretch 10.2s ease 0s infinite normal;
  -webkit-animation: stretch 10.2s ease 0s infinite normal;
}

.shake41 {
  animation: shake 10.2s ease 0s infinite normal;
  -webkit-animation: shake 10.2s ease 0s infinite normal;
}

.move41 {
  animation: move 33.2s cubic-bezier(0.47, 0, 0.745, 0.715) 8.2s infinite normal;
  -webkit-animation: move 33.2s cubic-bezier(0.47, 0, 0.745, 0.715) 8.2s infinite normal;
}

.pos41 {
  left: 82%;
}

.scale41 {
  transform: scale(4.1);
  -webkit-transform: scale(4.1);
}

.stretch42 {
  animation: stretch 10.4s ease 0s infinite normal;
  -webkit-animation: stretch 10.4s ease 0s infinite normal;
}

.shake42 {
  animation: shake 10.4s ease 0s infinite normal;
  -webkit-animation: shake 10.4s ease 0s infinite normal;
}

.move42 {
  animation: move 33.4s cubic-bezier(0.47, 0, 0.745, 0.715) 8.4s infinite normal;
  -webkit-animation: move 33.4s cubic-bezier(0.47, 0, 0.745, 0.715) 8.4s infinite normal;
}

.pos42 {
  left: 84%;
}

.scale42 {
  transform: scale(4.2);
  -webkit-transform: scale(4.2);
}

.stretch43 {
  animation: stretch 10.6s ease 0s infinite normal;
  -webkit-animation: stretch 10.6s ease 0s infinite normal;
}

.shake43 {
  animation: shake 10.6s ease 0s infinite normal;
  -webkit-animation: shake 10.6s ease 0s infinite normal;
}

.move43 {
  animation: move 33.6s cubic-bezier(0.47, 0, 0.745, 0.715) 8.6s infinite normal;
  -webkit-animation: move 33.6s cubic-bezier(0.47, 0, 0.745, 0.715) 8.6s infinite normal;
}

.pos43 {
  left: 86%;
}

.scale43 {
  transform: scale(4.3);
  -webkit-transform: scale(4.3);
}

.stretch44 {
  animation: stretch 10.8s ease 0s infinite normal;
  -webkit-animation: stretch 10.8s ease 0s infinite normal;
}

.shake44 {
  animation: shake 10.8s ease 0s infinite normal;
  -webkit-animation: shake 10.8s ease 0s infinite normal;
}

.move44 {
  animation: move 33.8s cubic-bezier(0.47, 0, 0.745, 0.715) 8.8s infinite normal;
  -webkit-animation: move 33.8s cubic-bezier(0.47, 0, 0.745, 0.715) 8.8s infinite normal;
}

.pos44 {
  left: 88%;
}

.scale44 {
  transform: scale(4.4);
  -webkit-transform: scale(4.4);
}

.stretch45 {
  animation: stretch 11s ease 0s infinite normal;
  -webkit-animation: stretch 11s ease 0s infinite normal;
}

.shake45 {
  animation: shake 11s ease 0s infinite normal;
  -webkit-animation: shake 11s ease 0s infinite normal;
}

.move45 {
  animation: move 34s cubic-bezier(0.47, 0, 0.745, 0.715) 9s infinite normal;
  -webkit-animation: move 34s cubic-bezier(0.47, 0, 0.745, 0.715) 9s infinite normal;
}

.pos45 {
  left: 90%;
}

.scale45 {
  transform: scale(4.5);
  -webkit-transform: scale(4.5);
}

.stretch46 {
  animation: stretch 11.2s ease 0s infinite normal;
  -webkit-animation: stretch 11.2s ease 0s infinite normal;
}

.shake46 {
  animation: shake 11.2s ease 0s infinite normal;
  -webkit-animation: shake 11.2s ease 0s infinite normal;
}

.move46 {
  animation: move 34.2s cubic-bezier(0.47, 0, 0.745, 0.715) 9.2s infinite normal;
  -webkit-animation: move 34.2s cubic-bezier(0.47, 0, 0.745, 0.715) 9.2s infinite normal;
}

.pos46 {
  left: 92%;
}

.scale46 {
  transform: scale(4.6);
  -webkit-transform: scale(4.6);
}

.stretch47 {
  animation: stretch 11.4s ease 0s infinite normal;
  -webkit-animation: stretch 11.4s ease 0s infinite normal;
}

.shake47 {
  animation: shake 11.4s ease 0s infinite normal;
  -webkit-animation: shake 11.4s ease 0s infinite normal;
}

.move47 {
  animation: move 34.4s cubic-bezier(0.47, 0, 0.745, 0.715) 9.4s infinite normal;
  -webkit-animation: move 34.4s cubic-bezier(0.47, 0, 0.745, 0.715) 9.4s infinite normal;
}

.pos47 {
  left: 94%;
}

.scale47 {
  transform: scale(4.7);
  -webkit-transform: scale(4.7);
}

.stretch48 {
  animation: stretch 11.6s ease 0s infinite normal;
  -webkit-animation: stretch 11.6s ease 0s infinite normal;
}

.shake48 {
  animation: shake 11.6s ease 0s infinite normal;
  -webkit-animation: shake 11.6s ease 0s infinite normal;
}

.move48 {
  animation: move 34.6s cubic-bezier(0.47, 0, 0.745, 0.715) 9.6s infinite normal;
  -webkit-animation: move 34.6s cubic-bezier(0.47, 0, 0.745, 0.715) 9.6s infinite normal;
}

.pos48 {
  left: 96%;
}

.scale48 {
  transform: scale(4.8);
  -webkit-transform: scale(4.8);
}

.stretch49 {
  animation: stretch 11.8s ease 0s infinite normal;
  -webkit-animation: stretch 11.8s ease 0s infinite normal;
}

.shake49 {
  animation: shake 11.8s ease 0s infinite normal;
  -webkit-animation: shake 11.8s ease 0s infinite normal;
}

.move49 {
  animation: move 34.8s cubic-bezier(0.47, 0, 0.745, 0.715) 9.8s infinite normal;
  -webkit-animation: move 34.8s cubic-bezier(0.47, 0, 0.745, 0.715) 9.8s infinite normal;
}

.pos49 {
  left: 98%;
}

.scale49 {
  transform: scale(4.9);
  -webkit-transform: scale(4.9);
}

.stretch50 {
  animation: stretch 12s ease 0s infinite normal;
  -webkit-animation: stretch 12s ease 0s infinite normal;
}

.shake50 {
  animation: shake 12s ease 0s infinite normal;
  -webkit-animation: shake 12s ease 0s infinite normal;
}

.move50 {
  animation: move 35s cubic-bezier(0.47, 0, 0.745, 0.715) 10s infinite normal;
  -webkit-animation: move 35s cubic-bezier(0.47, 0, 0.745, 0.715) 10s infinite normal;
}

.pos50 {
  left: 100%;
}

.scale50 {
  transform: scale(5);
  -webkit-transform: scale(5);
}

/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeUpTrigger {
  opacity: 0;
}

/* fadeIn */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeInTrigger {
  opacity: 0;
}

#cooluvpopping_main {
  font-size: 62.5%;
  font-size: 10px;
  color: #707070;
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

#cooluvpopping_main a {
  display: block;
}

#cooluvpopping_main img {
  width: 100%;
  height: auto;
}

#cooluvpopping_main ul {
  padding-left: 0;
}

#cooluvpopping_main ul li {
  list-style-type: none;
}

#cooluvpopping_main p {
  font-size: 1em;
  line-height: 1.8;
}

#cooluvpopping_main p.subtitle {
  font-size: calc(1.3em + (1vw - 0.32em) * 2.9870);
  /* 13-36 */
}

@media screen and (min-width: 1090px) {
  #cooluvpopping_main p.subtitle {
    font-size: 36px;
  }
}

#cooluvpopping_main p.subtitle + p {
  font-size: calc(1.3em + (1vw - 0.32em) * 0.9091);
  /* 13-20 */
}

@media screen and (min-width: 1090px) {
  #cooluvpopping_main p.subtitle + p {
    font-size: 20px;
  }
}

#cooluvpopping_main li {
  font-size: calc(1.3em + (1vw - 0.32em) * 0.9091);
  /* 13-20 */
}

@media screen and (min-width: 1090px) {
  #cooluvpopping_main li {
    font-size: 20px;
  }
}

#cooluvpopping_main h2 {
  font-size: calc(2em + (1vw - 0.32em) * 1.2987);
  /*20-30*/
}

@media screen and (min-width: 1090px) {
  #cooluvpopping_main h2 {
    font-size: 30px;
  }
}

#cooluvpopping_main figcaption {
  font-size: calc(1.2em + (1vw - 0.32em) * 1.0390);
  /* 12-20 */
}

@media screen and (min-width: 1090px) {
  #cooluvpopping_main figcaption {
    font-size: 20px;
  }
}

.sp_none {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp_none {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* 全体調整 */
.ec-productRole {
  padding-left: 0;
  padding-right: 0;
}

.ec-productRole .ec-grid2 {
  padding-right: 20px;
  padding-left: 20px;
}

.cooluvpopping_top {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 62.5vw;
  max-height: 713px;
  max-width: 1090px;
  margin: auto;
}

.cooluvpopping_product h2 {
  width: 80%;
  margin: calc(3rem + (1vw - 0.32rem) * 9.0909) auto;
  /* 30-100 */
  max-width: 360px;
}

.cooluvpopping_product .title {
  margin-right: 20px;
  margin-left: 20px;
  width: 88%;
}

.cooluvpopping_product .title .titlewrapper.upper {
  width: 90%;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.cooluvpopping_product .title .titlewrapper.lower {
  width: 80%;
  margin-left: auto;
  margin-top: 1em;
}

.cooluvpopping_product .title .titlewrapper .eachTextAnime {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cooluvpopping_product .title .titlewrapper .eachTextAnime span {
  opacity: 0;
  display: block;
}

.cooluvpopping_product .title .titlewrapper .eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 250ms ease-out forwards;
          animation: text_anime_on 250ms ease-out forwards;
  width: 25%;
}

.cooluvpopping_product .title .titlewrapper .eachTextAnime.appeartext span:nth-child(2) {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}

.cooluvpopping_product .title .titlewrapper .eachTextAnime.appeartext span:nth-child(3) {
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}

.cooluvpopping_product .title .titlewrapper .eachTextAnime.appeartext span:nth-child(4) {
  -webkit-animation-delay: 1500ms;
          animation-delay: 1500ms;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cooluvpopping_product_detail {
  margin-bottom: calc(4em + (1vw - 0.32em) * 12.98701);
  /* 40-140px*/
}

.cooluvpopping_product_imgwrapper {
  position: relative;
}

.cooluvpopping_product_spf {
  position: absolute;
  width: 32%;
  right: 0;
  top: 0;
  max-width: 210px;
}

@media (min-width: 800px) {
  .cooluvpopping_product_spf {
    right: auto;
    left: calc(50% + 190px);
  }
}

.cooluvpopping_product_howto {
  position: absolute;
  width: 32%;
  min-width: 125px;
  right: 0;
  bottom: 0;
  max-width: 230px;
}

@media (min-width: 800px) {
  .cooluvpopping_product_howto {
    right: auto;
    left: calc(50% + 170px);
  }
}

.cooluvpopping_product_img {
  width: 100%;
  height: 0;
  padding-top: 114.5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 800px) {
  .cooluvpopping_product_img {
    padding-top: 916px;
  }
}

.cooluvpopping_product_text {
  text-align: center;
}

.cooluvpopping_product_text p:first-child {
  color: #3EB6D5;
  letter-spacing: .2em;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: calc(2em + (1vw - 0.32em) * 2.5974);
  /* 20-40 */
}

@media screen and (min-width: 768px) {
  .cooluvpopping_product h2 {
    width: calc(36em + (1vw - 0.77em) * 46.5839);
    /* 360-510 */
    max-width: 510px;
  }
  .cooluvpopping_product .title {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
  }
  .cooluvpopping_product .cooluvpopping_product_detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .cooluvpopping_product .cooluvpopping_product_text p:first-child {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1090px) {
  .cooluvpopping_product h2 {
    margin: 100px auto;
  }
  .cooluvpopping_product_detail {
    margin-bottom: 140px;
  }
  .cooluvpopping_product_text p:first-child {
    margin-bottom: 40px;
  }
}

.link_howto {
  -webkit-filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.16));
}

.patipati {
  position: relative;
  z-index: 2;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: calc(10em + (1vw - 0.32em) * 6.4935);
  /*100-150*/
}

.patipati_henka {
  margin-bottom: calc(2em + (1vw - 0.32em) * 1.5584);
  /*20-32*/
  margin-left: auto;
  margin-right: auto;
  max-width: 475px;
}

.patipati .gifwrapper {
  background-position: center;
  background-size: 130%;
  width: calc(15em + (1vw - 0.32em) * 15.5844);
  height: calc(15em + (1vw - 0.32em) * 15.5844);
  /*150-270*/
  max-width: 270px;
  max-height: 270px;
  border-radius: 50%;
  margin: auto;
}

.patipati h2 {
  text-align: center;
  margin-top: 30px;
}

.patipati .link_howto {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(3em + (1vw - 0.32em) * 1.2987);
  /* 30-40 */
}

@media screen and (min-width: 768px) {
  .patipati {
    max-width: 748px;
    margin-right: auto;
    margin-left: auto;
  }
  .patipati .link_howto {
    max-width: 230px;
    margin-right: 0;
  }
}

@media screen and (min-width: 1090px) {
  .patipati {
    padding-top: 150px;
  }
  .patipati_henka {
    margin-bottom: 32px;
  }
  .patipati .link_howto {
    margin-top: 40px;
  }
}

.points {
  position: relative;
  z-index: 2;
}

.points .point_title_wrapper {
  text-align: center;
  padding-top: calc(10em + (1vw - 0.32em) * 6.4935);
  /*100-150*/
}

.points .point_title_wrapper .point_img {
  margin-top: 0;
  margin-bottom: calc(4em + (1vw - 0.32em) * 1.9481);
  /* 40-55 */
  width: auto;
  height: calc(6em + (1vw - 0.32em) * 2.5974);
  /*60-80px*/
}

.points .point_title_wrapper .point_img img {
  width: auto !important;
  height: 100% !important;
}

.points .point1_imgwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.points .point1_imgwrapper figure {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  position: relative;
}

.points .point1_imgwrapper figcaption {
  position: absolute;
  bottom: -1.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.points span.attn {
  font-size: 10px;
}

.points .anshin_items {
  background-color: #00bcd440;
  text-align: left;
  margin: 0;
  padding: 3em 0;
}

.points .anshin_items p, .points .anshin_items .notinc li {
  font-size: calc(1.5em + (1vw - 0.32em) * 0.6494) !important;
}

@media screen and (min-width: 1090px) {
  .points .anshin_items p, .points .anshin_items .notinc li {
    font-size: 20px !important;
  }
}

.points .anshin_items > p {
  text-align: center;
  margin: 0;
}

.points .anshin_items ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  max-width: 450px;
  margin: auto;
}

.points .anshin_items ul li {
  height: 8em;
  width: 28%;
  max-width: 260px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.points .anshin_items ul li span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.points .point3 figure {
  width: calc(100% - 40px);
  margin: auto;
  max-width: 350px;
}

.points .point3 figcaption {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .points .anshin_attn_wrapper {
    text-align: right;
  }
}

@media screen and (min-width: 1090px) {
  .points .point_title_wrapper {
    padding-top: 150px;
  }
  .points .point_title_wrapper .point_img {
    margin-bottom: 55px;
  }
  .points .point_title_wrapper h2 {
    height: 80px;
  }
}

.howto {
  padding-bottom: calc(10em + (1vw - 0.32em) * 6.4935);
  /*100-150*/
}

.howto h2 {
  width: calc(11em + (1vw - 0.32em) * 15.5844);
  /* 110-230 */
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(4em + (1vw - 0.32em) * 5.1948);
  /*40-80*/
  padding-top: calc(10em + (1vw - 0.32em) * 6.4935);
  /*100-150*/
}

.howto_videowrapper {
  width: calc(100% - 40px);
  margin: auto;
  max-width: 600px;
}

.howto_video {
  position: relative;
  width: 100%;
  padding-top: 55%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.howto_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.howto_text {
  width: calc(100% - 40px);
  margin: auto;
  padding-left: 0;
  max-width: calc(61em + (1vw - 0.77em) * 31.0559);
  /* 610-710 */
  margin-top: calc(2em + (1vw - 0.32em) * 3.8961);
  /* 20-50 */
}

.howto_text li {
  margin-left: 1.5em;
}

@media screen and (min-width: 1090px) {
  .howto {
    padding-bottom: 150px;
  }
  .howto h2 {
    padding-top: 150px;
    margin-bottom: 80px;
  }
  .howto_text {
    max-width: 710px;
    margin-top: 50px;
  }
}
/*# sourceMappingURL=cooluvpopping.css.map */