.underMV {
  position: relative;
  background-color: #fff4ee;
}
.underMV .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 448px;
  padding-top: 100px;
}
.underMV .under-title {
  text-align: center;
}
.underMV .under-title h1 {
  font-size: 36px;
  line-height: 1;
}
.underMV .under-title small {
  font-size: 20px;
  font-family: "Indie Flower", cursive;
}
.underMV__text {
  position: absolute;
  bottom: 0;
  max-width: 100%;
  color: #ffe8e8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 126px;
  font-weight: 700;
  line-height: 0.9;
  overflow: hidden;
  z-index: 5;
}
.underMV__text-inner {
  display: flex;
  width: max-content;
  animation: animetxt 20s linear infinite;
}
.underMV__text p {
  display: inline-block;
  padding-right: 50px;
  white-space: nowrap;
}
@keyframes animetxt {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.underMV .object {
  position: absolute;
  width: auto;
}
.underMV .object.bottom-left {
  bottom: -120px;
  left: -10%;
  width: 300px;
}
.underMV .object.bottom-left2 {
  bottom: -80px;
  left: -20%;
  width: 600px;
}
.underMV .object.bottom-right {
  bottom: -50px;
  right: -10%;
  width: 200px;
}
.underMV .object.top-center {
  top: -90px;
  left: 50%;
  width: 270px;
}
.underMV .object.center-right {
  top: 100px;
  right: 5%;
  width: 80px;
}

@media screen and (max-width: 768px) {
  .underMV .inner {
    height: 250px;
    padding-top: unset;
  }
  .underMV .under-title {
    padding-top: 30px;
  }
  .underMV .under-title h1 {
    font-size: 23px;
  }
  .underMV .under-title small {
    font-size: 14px;
  }
  .underMV__text {
    font-size: 78px;
  }
  .underMV .object.bottom-left {
    bottom: -60px;
    left: -5%;
    width: 160px;
  }
  .underMV .object.bottom-left2 {
    bottom: -40px;
    left: -10%;
    width: 300px;
  }
  .underMV .object.bottom-right {
    bottom: -25px;
    right: -5%;
    width: 100px;
  }
  .underMV .object.top-center {
    top: -40px;
    left: 50%;
    width: 150px;
  }
  .underMV .object.center-right {
    top: 90px;
    right: 5%;
    width: 40px;
  }
}