/* ==============================================================
    p-mv
   ============================================================== */
.p-mv {
  padding-top: 151px;
  background-color: var(--background-color);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding-top: 200px;
    padding-bottom: 56px;
  }
}

.p-mv__inner {
  margin-inline: auto;
  max-width: 1800px;
  position: relative;
}

.p-mv__bg-list {
  width: 90.3472222222%;
  position: absolute;
  bottom: -13px;
  left: 8.5416666667%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__bg-list {
    padding-block: 20px;
    width: 160%;
    left: 27px;
    bottom: 230px;
    overflow: hidden;
  }
}

.p-mv__bg-item {
  position: relative;
}

.p-mv__bg-item + .p-mv__bg-item {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-mv__bg-item + .p-mv__bg-item {
    margin-top: 20px;
  }
}

.p-mv__bg-item:nth-child(1) {
  width: 55.8800922367%;
  transform: translateX(-200%);
  animation: mv__bg-anime01 0.6s ease-out forwards;
}

.p-mv__bg-item:nth-child(2) {
  width: 100%;
  transform: translateX(-200%);
  animation: mv__bg-anime01 0.6s 0.3s ease-out forwards;
}

.p-mv__bg-item:nth-child(3) {
  width: 88.5472713297%;
  transform: translateX(-200%);
  animation: mv__bg-anime01 0.6s 0.6s ease-out forwards;
}

.p-mv__bg-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: mv__bg-anime02 0.4s 1.2s ease-out forwards;
}

.p-mv__bg-item:nth-child(1)::before {
  background: url(../../assets/img/mv/mv-bg-text_GENKI-anime.png) center/contain no-repeat;
}

.p-mv__bg-item:nth-child(2)::before {
  background: url(../../assets/img/mv/mv-bg-text_INOVATION-anime.png) center/contain no-repeat;
}

.p-mv__bg-item:nth-child(3)::before {
  background: url(../../assets/img/mv/mv-bg-text_COMPANY-anime.png) center/contain no-repeat;
}

@keyframes mv__bg-anime01 {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes mv__bg-anime02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.p-mv__bg-item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

.p-mv__content {
  width: 100%;
  height: 80.3385416667%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    margin-left: auto;
    padding-bottom: 174px;
    width: 90%;
    height: auto;
  }
}

.p-mv__title {
  margin-top: 265px;
  margin-left: 5.5555555556%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 20;
  opacity: 0;
  animation: mv__title-anime 1s 2.3s ease-out forwards;
}
@media screen and (min-width: 1441px) {
  .p-mv__title {
    margin-top: clamp(265px, 5px + 18.0556vw, 330px);
    margin-left: clamp(80px, -640px + 50vw, 260px);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    margin-top: initial;
    margin-left: initial;
    bottom: 30px;
    left: -20px;
  }
}

.p-mv__title span {
  padding: 8px 16px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: var(--font-size-lg);
  line-height: 1.25;
  font-weight: var(--font-weight-bold);
  color: #fff;
  background-color: var(--orange-base);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-mv__title span {
    font-size: 32px;
  }
}

.p-mv__title span + span {
  margin-top: 16px;
}

@keyframes mv__title-anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-mv__img-list {
  margin-left: 37.9166666667%;
  padding-right: 27px;
  width: 62.0833333333%;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-mv__img-list {
    margin-left: 0;
    padding-right: 20px;
    width: 100%;
    gap: 10px;
  }
}

.p-mv__img-item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 278.4/568.7;
  border-radius: 10px;
}

.p-mv__img-item:nth-child(1) img {
  margin-top: 24px;
  transform: translateY(50%);
  opacity: 0;
  animation: mv__img-anime01 0.7s 1.2s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .p-mv__img-item:nth-child(1) img {
    margin-top: 16px;
  }
}

.p-mv__img-item:nth-child(2) img {
  margin-top: 48px;
  transform: translateY(50%);
  opacity: 0;
  animation: mv__img-anime02 0.7s 1.4s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .p-mv__img-item:nth-child(2) img {
    margin-top: 32px;
  }
}

.p-mv__img-item:nth-child(3) img {
  transform: translateY(50%);
  opacity: 0;
  animation: mv__img-anime01 0.7s 1.6s ease-out forwards;
}

@keyframes mv__img-anime01 {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mv__img-anime02 {
  0% {
    transform: translateY(-50%);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
