.movie-card {
  /*min-width: 190px;
  max-width: 320px;*/
  min-height: 300px;
  margin: auto;
  border-radius: 1.5rem !important;
  padding: 2rem 1.25rem;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  text-decoration: none;
  background: #fff;
  /* スクロールカード対策 */
  overflow: hidden;
}
.movie-card:hover,
.movie-card:focus {
  box-shadow: 0 0 0 4px #00b7e644, 0 6px 24px rgba(0,183,230,0.09);
  text-decoration: none;
}
.movie-card-img {
 width: 20vw;
    height: auto;
  object-fit: cover;
  border-radius: 6%;
  background: #f4f4f4;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 2.3rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.2em;
  margin-bottom: 1.5em;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00b7e6 60%, #45a6d7 100%);
  border-radius: 2px;
  margin-top: 0.4em;
}
.container{
  width: 75vw;
}


@media (max-width: 767px) {
      .movie-card {
    max-width: 98vw;
    min-height: 210px;
    padding: 1.5rem 0.7rem;
  }
  .movie-card-img {
 width: 40vw;
  }

}