.topResult .flex {
  gap: 14px;
}


.topResult ul li {
  width: calc(100% / 3 - 11px);
}

.top-movie__inner {
  width: 1200px;
  margin: auto;
}

.top-movie-title {
  font-size: 2.3rem;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
}

.top-movie-text {
  font-size: 1.8rem;
  margin-top: 30px;
  line-height: 1.3;
  letter-spacing: 0;

  span {
    color: #ff645d;
    font-weight: bold;
    text-decoration: underline;
  }

}

.top-movie-wrap {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 0 130px;
  margin-top: 90px;
}

.top-movie.--movie01 {
  width: 34%;
}

.top-movie.--movie02 {
  width: 49%;
  
}

.top-movie video {
  width: 100%;
  height: 100%;
}


@media screen and (max-width: 760px) {
  .topResult .flex {
    gap: 8px;
}

  .topResult ul li {
    /* width: 47%; */
    width: 100%;
  }

  .top-movie__inner {
    width: 100%;
    padding-inline: 20px;
  }

  .top-movie-title {
    font-size: 1.5rem;
  }

  .top-movie-text {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.6;
  }

  .top-movie-wrap {
    display: block;
  }

  .top-movie.--movie01 {
    width: 100%;
    height: 300px;
    margin-top: 30px;
  }
  
  .top-movie.--movie02 {
    width: 100%;
    margin-top: 30px;
  }

}