.page-main {
  background-color: #201c19;
  color: #ffffff;
}

.container {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin-inline: auto;
}

.section-title {
  font-family: 'minion', 'Zen Old Mincho', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--main);
}
@media screen and (max-width: 960px) {
  .section-title {
    font-size: 3rem;
  }
}

/*=========================
  page mv
=========================*/
.page-mv {
  position: relative;
  .mv-img {
    width: 100%;
    min-height: 200px;
    object-fit: cover;
  }
}

/*=========================
  food
=========================*/
section.foodMenu {
  padding: 5rem 0;
  .section-title {
    position: relative;
    bottom: -3rem;
    font-size: 6rem;
  }
  .textbox {
    background-color: #707070;
    padding: 2rem;
    padding-top: 4rem;
    .title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }
  }
  .menu-list {
    column-count: 2;
    column-gap: 2rem;
    .menu-list__item {
      font-size: 1.125rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      margin-bottom: 1rem;
      .name {
      }
      .price {
      }
    }
  }
}
@media (max-width: 960px) {
  section.foodMenu {
    padding: 5rem 0;
    .section-title {
      position: initial;
      font-size: 4rem;
      text-align: center;
      margin-bottom: 2rem;
    }
    .textbox {
      padding: 2rem 1rem;
      .title {
        font-size: 2rem;
      }
    }
    .menu-list {
      column-count: 1;
      .menu-list__item {
        gap: 1rem;
        .name {
        }
        .price {
        }
      }
    }
  }
}

/*=========================
  drink
=========================*/
section.drinkMenu {
  padding: 5rem 0;
  .section-title {
    position: relative;
    bottom: -3rem;
    font-size: 6rem;
  }
  .textbox {
    background-color: #707070;
    padding: 2rem;
    padding-top: 4rem;
    .title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }
  }
  .menu-list {
    column-count: 2;
    column-gap: 2rem;
    .menu-list__item {
      font-size: 1.125rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      margin-bottom: 1rem;
      .name {
      }
      .price {
      }
    }
  }
}
@media (max-width: 960px) {
  section.drinkMenu {
    padding: 5rem 0;
    .section-title {
      position: initial;
      font-size: 4rem;
      text-align: center;
      margin-bottom: 2rem;
    }
    .textbox {
      padding: 2rem 1rem;
      .title {
        font-size: 2rem;
      }
    }
    .menu-list {
      column-count: 1;
      .menu-list__item {
        gap: 1rem;
        .name {
        }
        .price {
        }
      }
    }
  }
}

/*=========================
  floor
=========================*/
section.floorAbout {
  padding: 5rem 0;
  .section-title {
    margin-bottom: 2rem;
    text-align: center;
  }
  .description {
    font-size: 1.125rem;
    margin-bottom: 5rem;
  }
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    .flex-left {
      width: 50%;
    }
    .flex-right {
      width: 50%;
    }
    @media (max-width: 960px) {
      flex-direction: column;
      .flex-left {
        width: 100%;
      }
      .flex-right {
        width: 100%;
      }
      .flex-img {
        /*max-width: 500px;*/
        margin-inline: auto;
		width: 95%;
      }
    }
    .title {
      font-family: 'minion', 'Zen Old Mincho', serif;
      font-size: 3.5rem;
      color: var(--main);
      border-top: 2px solid #fff2bc;
      @media (max-width: 960px) {
        font-size: 2.5rem;
      }
    }
  }
  .flex1 {
    .flex-right {
      text-align: right;
    }
    @media (max-width: 960px) {
      flex-direction: column-reverse;
      .flex-right {
        text-align: center;
        margin-bottom: 2rem;
      }
    }
  }
  .flex2 {
    @media (max-width: 960px) {
      .flex-left {
        margin-bottom: 2rem;
        text-align: center;
      }
    }
  }
}

/*=========================
  information
=========================*/
section.informationApp {
  padding: 5rem 0;
  .section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    .flex-left {
      .title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
      }
      .text {
        font-size: 1.125rem;
      }
    }
    .flex-right {
    }
    @media (max-width: 960px) {
      flex-direction: column;
      .flex-left {
        width: 100%;
        .title {
          font-size: 1.5rem;
          text-align: center;
        }
        .text {
          font-size: 1rem;
        }
      }
      .flex-right {
        width: 100%;
        .img {
          width: 60%;
          max-width: 160px;
          margin-inline: auto;
        }
      }
    }
  }
  .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    .button {
      min-width: 200px;
      margin: 0;
      border-radius: 100px;
      &::before {
        border-radius: 100px;
      }
    }
    @media (max-width: 960px) {
      flex-direction: column;
    }
  }
}

section.informationAbout {
  padding: 5rem 0;
  .section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    @media (max-width: 960px) {
      flex-direction: column-reverse;
    }
    .img {
      width: 50%;
      img {
        max-width: min(100%, 500px);
        margin-inline: auto;
      }
      @media (max-width: 960px) {
        width: 100%;
        img {
          max-width: min(80%, 500px);
        }
      }
    }
    .table {
      width: 50%;
      padding: 0 1rem;
      .row {
        display: flex;
        border-bottom: #ffffff 1px solid;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
        .th {
          width: 30%;
          padding-left: 1rem;
          font-weight: bold;
        }
        .td {
          width: 70%;
          padding-left: 1rem;
        }
      }
      @media (max-width: 960px) {
        width: 100%;
        margin-bottom: 2rem;
        padding: 0;
      }
    }
  }
}

.insta_bnr img{
  margin: 0 auto;
}

/*=========================
  gallery
=========================*/
section.galleryImages {
  padding: 5rem 0;
  .section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
  .description {
    text-align: center;
    text-wrap: balance;
    font-size: 1.125rem;
    margin-bottom: 5rem;
    @media (max-width: 960px) {
      font-size: 1rem;
      text-align: justify;
    }
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    .grid-item {
      cursor: pointer;
    }
    @media (max-width: 960px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    &.show {
      opacity: 1;
    }
    &.hide {
      opacity: 0;
    }
    .modal-container {
      position: relative;
      /* width: 80%; */
      max-width: 700px;
      @media (max-width: 960px) {
        width: 80%;
      }
    }
    .modal-image {
      margin: auto;
      display: block;
      width: 100%;
      transition: transform 0.3s ease;
    }
    .modal-close {
      position: absolute;
      top: -45px;
      right: 0;
      color: #fff;
      font-size: 30px;
      font-weight: bold;
      transition: color 0.3s;
    }
    .modal-close:hover,
    .modal-close:focus {
      color: #bbb;
      text-decoration: none;
      cursor: pointer;
    }
  }
}
