@charset "utf-8";

section.page_mv {
  position: relative;
  .mv-img {
    width: 100%;
    min-height: 600px;
    object-fit: cover;
  }
  .page-title-wrapper {
    position: absolute;
    top: 55%;
    left: 50%;
    translate: -50% -50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .logo {
    max-width: 300px;
    margin-bottom: 2rem;
  }
  .page-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 960px) {
  section.page_mv {
    position: relative;
    .mv-img {
      width: 100%;
      min-height: 300px;
      object-fit: cover;
    }
    .page-title-wrapper {
      top: 50%;
      width: 100%;
    }
    .logo {
      width: 55%;
      max-width: 300px;
      margin-bottom: 2rem;
    }
    .page-title {
      font-size: 3rem;
    }
  }
}

main.page-body {
  background: url(../img/subpage-bg.jpg) no-repeat;
  background-size: cover;
}

:root {
  --section-padding: 8rem 0;
}
@media (max-width: 960px) {
  :root {
    --section-padding: 4rem 0;
  }
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 5rem;
  @media (max-width: 960px) {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

/*=========================
  available
=========================*/
section.inside_available {
  padding: var(--section-padding);
  .section-title {
    margin-bottom: 2rem;
    @media (max-width: 960px) {
      font-size: 1.75rem;
    }
  }
  .text {
    text-align: center;
    text-wrap: balance;
    word-break: keep-all;
    font-size: 1.25rem;
    @media (max-width: 960px) {
      font-size: 1rem;
    }
  }
}

/*=========================
  seats
=========================*/
section.inside_seats {
  padding: var(--section-padding);
  padding-top: 0;
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    &:not(:last-of-type) {
      margin-bottom: 5rem;
    }
    .flex-left {
      width: 50%;
    }
    .flex-right {
      width: 50%;
    }
  }
  .seat-img {
    width: 100%;
  }
  .iiner {
    max-width: 600px;
    margin-inline: auto;
    font-size: 1.25rem;
    padding-inline: 2rem;
    .title {
      font-size: 2.75rem;
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      &::before {
        content: '';
        display: block;
        width: 30%;
        height: 1px;
        background-color: #ffffff;
        margin-inline: 1rem;
      }
    }
  }
}
@media (max-width: 960px) {
  section.inside_seats {
    padding-top: 0;
    .flex {
      flex-direction: column-reverse;
      gap: 2rem;
      .flex-left {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
      .flex-right {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
    }
    .seat-img {
      max-width: 500px;
      margin-inline: auto;
    }
    .iiner {
      padding: 0;
      .title {
        font-size: 2rem;
        justify-content: center;
        &::before {
          display: none;
        }
      }
    }
  }
}

/*=========================
  gallery
=========================*/
section.inside_gallery {
  padding: 0 0 8rem 0;
  .splide {
    .splide__list {
      height: auto;
    }
    .splide__slide {
      width: 400px;
      aspect-ratio: 4/3;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}
