.rt01-video-modal__frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.rt01-video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rt01-video-mfp .mfp-content {
  width: min(90vw, 960px);
  margin: 0 auto;
}

main.next #story .item-list.column-02 {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

main.next #story .item-link--movie,
main.next #story .item-link--placeholder {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  color: #000;
}

main.next #story .item-link--movie .item-img--movie {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000 url("https://i.ytimg.com/vi/LQquntZ8-Rw/maxresdefault.jpg") center / cover no-repeat;
  overflow: hidden;
}
main.next #story .item-link--movie .item-img--movie::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity .3s;
}
main.next #story .item-link--movie:hover .item-img--movie::after,
main.next #story .item-link--movie:focus .item-img--movie::after {
  opacity: 1;
}
main.next #story .item-link--movie .item-tag,
main.next #story .item-link--movie .item-play {
  position: absolute;
  z-index: 1;
}
main.next #story .item-link--movie .item-tag {
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  letter-spacing: .2em;
  color: #fff;
}
main.next #story .item-link--movie .item-play {
  right: 16px;
  bottom: 16px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

main.next #story .item-link--movie .item-text--movie,
main.next #story .item-link--placeholder .item-text--placeholder {
  padding: 16px 20px 20px;
  background: none;
  color: inherit;
}
main.next #story .item-link--movie .item-text--movie h3,
main.next #story .item-link--placeholder .item-text--placeholder h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .02em;
}

main.next #story .item-link--placeholder .item-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  font-size: 22px;
  font-weight: 700;
  background: #d9d9d9;
  color: #333;
  letter-spacing: .08em;
  text-transform: uppercase;
}
main.next #story .item-link--placeholder .item-text--placeholder {
  text-align: center;
}

main.next #story .item-link--placeholder .item-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background: #d9d9d9;
  border: 2px solid #c7c7c7;
  /* border-radius: 18px; */
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .08em;
}
main.next #story .item-list.column-02 {
  justify-items: center;
  padding-top: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

main.next #story .item-link--movie,
main.next #story .item-link--placeholder {
  width: 100%;
  max-width: 490px;
}
main.next #story .item-link--movie .item-img,
main.next #story .item-link--placeholder .item-img--placeholder {
  aspect-ratio: 3 / 2;
  /* border-radius: 12px; */
  overflow: hidden;
}

main.next #story .item-link--movie .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.next #story .item-link--placeholder .item-text--placeholder {
  padding: 16px 20px 20px;
  background: none;
  text-align: left;
}
/* ズームを抑止 */
main.next #story .item-link--movie:hover .item-img img {
  transform: none;
}

/* オーバーレイと再生アイコン */
main.next #story .item-link--movie .item-img {
  position: relative;
  overflow: hidden;
}

main.next #story .item-link--movie .item-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

main.next #story .item-link--movie:hover .item-img::before,
main.next #story .item-link--movie:focus .item-img::before {
  opacity: 1;
}

main.next #story .item-link--movie .item-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px;
  background: url("/images/special/grandtrek/rt01/movie/icon_mov.svg") center center no-repeat;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
main.next #story .item-link--placeholder:hover .item-img--placeholder img,
main.next #story .item-link--placeholder:focus .item-img--placeholder img {
  transform: none;
}

@media screen and (max-width: 700px) {
  main.next #story .item-list.column-02 {
    grid-template-columns: 1fr;
    max-width: none;
  }

  main.next #story .item-link--movie,
  main.next #story .item-link--placeholder {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
}

