@charset "UTF-8";
.cta {
  width: 100%;
  overflow: hidden;
}

a {
  display: block;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 0;
  margin: 0;
}

.container {
  margin: 0 auto;
  padding: 0px 10px;
  max-width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .container {
    width: 500px;
  }
}

.fv-box {
  position: relative;
}
.fv-box .img-left {
  position: absolute;
  bottom: 5%; /* 任意の位置 */
  left: -300px; /* 初期位置（画面外） */
  animation: slideIn 1s ease-out forwards;
  width: 20%;
}
.fv-box .img-right {
  position: absolute;
  top: 11%; /* 任意の位置 */
  right: -300px; /* 初期位置（画面外） */
  animation: slideIn-right 1s ease-out forwards;
  width: 20%;
}

@keyframes slideIn {
  0% {
    left: -300px; /* スタート位置（画面外） */
    opacity: 0;
  }
  100% {
    left: 5%; /* ゴール位置 */
    opacity: 1;
  }
}
@keyframes slideIn-right {
  0% {
    right: -300px; /* スタート位置（画面外） */
    opacity: 0;
  }
  100% {
    right: 5%; /* ゴール位置 */
    opacity: 1;
  }
}
#fv {
  background: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-image: url("../img/bg-pink.webp");
}

.section.anshin, .section.reason1, .section.reason2, .section.reason3, .section.voice {
  padding: 50px 0;
  background: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.section.check {
  background: #cccccc;
}
.section.reason1 {
  background-image: url("../img/bg-pink.webp");
}
.section.reason2 {
  background-image: url("../img/bg-hougan.webp");
}
.section.anshin, .section.reason3 {
  background-image: url("../img/bg-kami.webp");
}
.section.voice {
  background-image: url("../img/bg-pop.webp");
}

@media screen and (min-width: 768px) {
  .voice-box {
    padding: 20px;
  }
}

.section-check-img {
  bottom: 0;
  right: 4%;
  width: 15%;
  height: auto;
}

.section-anshin-img2 {
  bottom: 0;
  right: 4%;
  width: 25%;
  height: auto;
}

.first-img,
.text {
  margin-bottom: 20px;
}

.fuwafuwa {
  display: inline-block;
  position: absolute; /* 必要に応じて relative に */
  animation: fuwafuwa 3s ease-in-out infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* 上に少し移動 */
  }
  100% {
    transform: translateY(0);
  }
}
.poyopoyo {
  display: inline-block;
  animation: poyopoyo 2s ease-in-out infinite;
}

@keyframes poyopoyo {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* 大きく */
  }
  100% {
    transform: scale(1); /* 元に戻る */
  }
}
#fv .container {
  padding: 0;
}/*# sourceMappingURL=style.css.map */