@charset "UTF-8";
/* CSS Document */
@media screen and (max-width: 762px) {
  /* スマホでモーダルを画面いっぱいに広げる */
  .iziModal {
    width: 800px !important;
    max-width: 100% !important;
    top: 0;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    margin: auto !important; }

  /* モーダルのヘッダー（タイトル）をスマホ向けに調整 */
  .iziModal-header {
    padding: 10px !important;
    font-size: 4vw !important;
    text-align: center;
    line-height: 1.4;
    word-break: break-word; } }
/* 固定バナーより前面に出す（あなたのサイトは z-index が強い） */
/* スマホで iframe を縦横比維持しつつフィットさせる */
.iziModal iframe {
  width: 100% !important;
  height: 56.25vw !important;
  /* YouTube 16:9 */
  max-height: 60vh !important;
  display: block;
  height: 100% !important;
  aspect-ratio: 16 / 9; }

.section-movie {
  margin-top: 50px; }
  .section-movie ul.movie-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw; }
    @media screen and (min-width: 762px) {
      .section-movie ul.movie-list {
        grid-template-columns: repeat(3, 1fr); } }
    .section-movie ul.movie-list li a {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      position: relative; }
      .section-movie ul.movie-list li a .play_overlay {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 3vw;
        min-width: 40px;
        /* height: 20px; */
        top: 0;
        bottom: 0;
        aspect-ratio: 1 / 1; }
        .section-movie ul.movie-list li a .play_overlay img {
          width: 100%;
          height: 100%;
          display: block; }
      .section-movie ul.movie-list li a .thumbnail-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* ★最重要：4:3画像を16:9に引き伸ばし、上下の黒帯をトリミング */
        object-position: center; }
