.movie-section {
  margin-top: 1rem;
}
.movie-section .section-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .movie-section .section-wrapper {
    padding: 0 15px;
  }
}
.movie-section h1 {
  margin: 0 auto 60px;
  max-width: 1000px;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .movie-section h1 {
    margin-bottom: 20px;
    font-size: 1.75rem;
  }
}

.sec-2column {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .sec-2column {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sec-2column {
    flex-direction: column;
    gap: 50px;
  }
}
.sec-2column__postList {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .sec-2column__postList {
    width: 100%;
  }
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .movie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }
}
@media screen and (max-width: 768px) {
  .movie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media screen and (max-width: 480px) {
  .movie-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.movie-item {
  display: flex;
  flex-direction: column;
}

.movie-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.movie-link:hover .movie-thumbnail img {
  transform: scale(1.05);
}
.movie-link:hover .movie-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.movie-link:hover .movie-title {
  color: #2E3192;
}

.movie-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f0f0f0;
  margin-bottom: 12px;
}
.movie-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .movie-thumbnail {
    border-radius: 6px;
    margin-bottom: 10px;
  }
}

.movie-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.3s ease;
  pointer-events: none;
}
.movie-play-icon svg {
  width: 28px;
  height: 28px;
  color: white;
  margin-left: 3px;
}
@media screen and (max-width: 768px) {
  .movie-play-icon {
    width: 50px;
    height: 50px;
  }
  .movie-play-icon svg {
    width: 24px;
    height: 24px;
  }
}

.movie-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.movie-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 8px;
  color: #333;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .movie-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

.movie-date {
  font-size: 13px;
  color: #666;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .movie-date {
    font-size: 12px;
  }
}

.movie-empty {
  text-align: center;
  padding: 80px 20px;
  color: #999;
}
.movie-empty p {
  font-size: 18px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .movie-empty {
    padding: 60px 20px;
  }
  .movie-empty p {
    font-size: 16px;
  }
}
