@charset "UTF-8";
.movies_container {
  margin: 40px 0 0;
  padding: 40px 0 80px;
  background: #D5DBDB;
}
.sec_inner {
  padding: 80px 0 0;
}
.sec_inner.first_sec {
  padding: 0;
}
.movies_list {
  display: flex;
  flex-flow: row wrap;
  gap: 30px 10px;
}
.movies_item {
  width: calc(50% - 10px / 2);
  cursor: pointer;
}
.movies_thumb_wrap {
  position: relative;
}
.movies_thumb_wrap::before {
  position: absolute;
  display: block;
  background: url(../images/movies/icon_movie.svg) center center / contain no-repeat;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  width: 19%; 
  height: auto;
  border-radius: 34px;
}
.movies_thumb {
  width: 100%;
  border-radius: 10px;
  border: 3px solid #fff;
  aspect-ratio: 359 / 212;
  object-fit: cover;
}
.movies_ttl {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}
.movies_txt {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
}
.sec02_ttl {
  font-size: 32px;
  font-weight: bold;
  padding: 0 0 36px;
}
.sec02_cap {
  font-size: 15px;
  font-weight: bold;
  padding: 0 0 37px;
}
@media only screen and (min-width: 768px) {
  .movies_txt {
    font-size: clamp(13px, 1.7vw, 18px);
  }
  .movies_list {
    gap: 40px 30px;
  }
  .movies_item {
    width: calc(33.333% - 30px * 2 / 3);
  }
  .sec02_ttl {
    font-size: 40px;
    padding: 0 0 50px;
    text-align: center;
  }
  .sec02_cap {
    font-size: 20px;
    text-align: center;
    padding: 0 0 64px;
  }
}
@media only screen and (min-width: 1024px) {
  .movies_list {
    gap: 80px 61px;
  }
  .movies_item {
    width: calc(33.333% - 61px * 2 / 3);
  }
  .movies_thumb {
    border-radius: 20px;
    border: 5px solid #fff;
  }
}
@media only screen and (min-width: 1280px) {
  .movies_container {
    margin: 120px 0 0;
    padding: 120px 0 200px;
  }  
  .sec_inner {
    padding: 160px 0 0;
  }
  .movies_ttl {
    margin: 20px 0 0;
    font-size: 18px;
  }
  .movies_txt {
    margin: 7px 0 0;
    font-size: 18px;
  }
}