@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;
  }
}

/*=========================
  food menu
=========================*/
section.drink_menu {
  padding: var(--section-padding);
  .content {
    background-color: #343434;
    width: calc(100% - 2rem);
    max-width: 1200px;
    margin-inline: auto;
    padding: 5rem 5%;
  }
  .menu-groupe {
    margin-bottom: 8rem;
    &:last-of-type {
      margin-bottom: 0;
    }
    .title {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }
    .item-list {
      column-count: 2;
      column-gap: 10%;
      .item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
      }
    }
  }
}
@media (max-width: 960px) {
  section.drink_menu {
    .content {
      padding: 2rem 5%;
    }
    .menu-groupe {
      margin-bottom: 4rem;
      .title {
        font-size: 1.5rem;
      }
      .item-list {
        column-count: 1;
        .item {
        }
      }
    }
  }
}

/*=========================
  food gallery
=========================*/
section.drink_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;
      }
    }
  }
}
