.ho {
  text-align: center;
}
.width800 {
  width: 800px;
  margin: 0 auto;
}
.width800 p img {
  width: 800px;
}
.width700 {
  width: 700px;
  margin: 0 auto;
}
.width700 p img {
  width: 700px;
}
.position_relative {
  position: relative;
}
.position_absolute {
  position: absolute;
  top: 0;
}

.flash {
  animation: flash 1s linear infinite;
}
@keyframes flash {
  0%,
  11% {
    opacity: 0;
  }
  10%,
  14%,
  100% {
    opacity: 1;
  }
}

.ho_gif_front {
  position: absolute;
  top: 0;
  z-index: 1;
}

.ho_gif {
  position: absolute;
  top: 165px;
  left: 50%;
  width: 500px;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
}
.ho_video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 600px;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
}
.ho_video video {
  width: 600px;
}
.position_sticky {
  position: -webkit-sticky;
  position: sticky;
}
.block_one {
  z-index: 100;
}
.block_two {
  z-index: 200;
}
.block_three {
  z-index: 300;
}
.bottle01 {
  position: absolute;
  width: 150px !important;
  top: 74px;
  left: 120px;
  animation-delay: 0s;
}
.bottle02 {
  position: absolute;
  width: 120px !important;
  top: 245px;
  left: 59px;
  animation-delay: 0.3s;
}
.bottle03 {
  position: absolute;
  width: 120px !important;
  top: 422px;
  left: 99px;
  animation-delay: 1s;
}
.bottle04 {
  position: absolute;
  width: 120px !important;
  top: 37px;
  right: 95px;
  animation-delay: 0.6s;
}
.bottle05 {
  position: absolute;
  width: 110px !important;
  top: 285px;
  right: 51px;
  animation-delay: 1.2s;
}
.bottle06 {
  position: absolute;
  width: 120px !important;
  top: 520px;
  right: 117px;
  animation-delay: 0.1s;
}
.updown {
  animation-name: updown1; /* アニメーション名の指定 */
  /* animation-delay:0s;   アニメーションの開始時間指定 */
  animation-duration: 3s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.worries01 {
  position: absolute;
  width: 250px !important;
  top: 247px;
  left: 44px;
  animation-delay: 0s;
}
.worries02 {
  position: absolute;
  width: 200px !important;
  top: 240px;
  right: 70px;
  animation-delay: 0.3s;
}
.worries03 {
  position: absolute;
  width: 240px !important;
  top: 600px;
  left: 99px;
  animation-delay: 1s;
}
.worries04 {
  position: absolute;
  width: 240px !important;
  top: 600px;
  right: 17px;
  animation-delay: 0.7s;
}
.worries {
  animation-name: worries_animation; /* アニメーション名の指定 */
  /* animation-delay:0s;   アニメーションの開始時間指定 */
  animation-duration: 3s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}
@keyframes worries_animation {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  50% {
    transform: scale(0.95, 1.05) translate(0px, -16px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
}

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-800vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(800vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-200px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeLeftTrigger,
.fadeRightTrigger,
.fadeDownTrigger,
.blurTrigger {
  opacity: 0;
}
div{
  /*overflow: hidden !important;左右アニメーションで画面からはみ出る際に出る横スクロールバーを隠す*/
}

.img-wrap {
  opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  /* position: relative; */
}

.img-animation:before {
  animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
  /* background: #fff; */
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}

@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}

.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

.voice_box {
  position: absolute;
  z-index: 1;
  top: -35px;
  left: 50%;
  width: 700px;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
}

.voice_slider img {
  width: 370px !important;
  margin: 35px auto;
  box-shadow: 0 5px 25px 0 rgb(0 0 0 / 30%);
}

@media only screen and (max-width: 767px) {
  .width800 {
    width: auto;
    margin: 0;
  }
  .ho_gif {
    top: 72px;
    width: 65%;
  }
  .worries01 {
    width: 29vw !important;
    top: 31vw;
    left: 4vw;
  }
  .worries02 {
    width: 28vw !important;
    top: 34vw;
    right: 4vw;
  }
  .worries03 {
    width: 30vw !important;
    top: 79vw;
    left: 7vw;
  }
  .worries04 {
    width: 32vw !important;
    top: 76vw;
    right: 1vw;
  }
  .bottle01 {
    width: 20vw !important;
    top: 5vw;
    left: 12vw;
  }
  .bottle02 {
    width: 15vw !important;
    top: 32vw;
    left: 7vw;
  }
  .bottle03 {
    width: 14vw !important;
    top: 55vw;
    left: 15vw;
  }
  .bottle04 {
    width: 14vw !important;
    top: 8vw;
    right: 13vw;
  }
  .bottle05 {
    width: 13vw !important;
    top: 37vw;
    right: 8vw;
  }
  .bottle06 {
    width: 18vw !important;
    top: 65vw;
    right: 12vw;
  }
  @keyframes updown1 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .ho_video,
  .ho_video video {
    width: 90vw;
  }
  .voice_box {
    width: 100%;
  }
  .voice_slider img {
    width: 47vw !important;
  }
}
