@charset "utf-8";
/* index.html--------------------------------------------*/
#front-page {
  color: #333;
  padding-bottom: 5rem;
  & h1 {
    font-family: "Dela Gothic One", sans-serif;
    font-size: clamp(3rem, 2.385rem + 3.08vw, 5rem);
    letter-spacing: clamp(0.375rem, 0.298rem + 0.38vw, 0.625rem);
  }
}
.caution {
  color: red;
}
.mainvisual {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 7rem;
  & img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  .site-title {
    position: absolute;
    width: 100%;
    height: 100%;
    place-items: center;
    align-content: center;

    & p {
      text-align: center;
      font-size: clamp(1rem, 0.846rem + 0.77vw, 1.5rem);
    }
  }
}
/* section about ------------------*/
#about {
  .title::after {
    content: "< TRIGOについて >";
    right: 0;
  }
  .item {
    width: 50%;
  }
  & p {
    margin-bottom: 2rem;
  }
  .image {
    width: 40%;
    & img {
      width: 100%;
    }
  }
}

/* section menu ------------------*/
#menu {
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .item {
    padding: 1rem;
    & img {
      height: 200px;
      object-fit: cover;
    }
  }
  .read-more {
    text-align: right;
    margin: 1rem 2rem 0 0;
    transition: 0.5s;
  }
  .title::after {
    content: "< メニュー >";
  }
  .item:hover .read-more {
    font-weight: bold;
    color: var(--accent-color);
    margin-right: 1rem;
  }
}

/* div gallery-----------------*/
#gallery {
  margin-bottom: clamp(3rem, 0.846rem + 10.77vw, 10rem);
  .grid {
    display: grid;
    grid-template-columns: repeat(5, calc(100% / 5));
    grid-template-rows: repeat(4, 200px);
  }
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
  }
  .title::after {
    content: "";
  }
  .item1 {
    grid-row: 1/3;
    grid-column: 1/3;
  }
  .item2 {
    grid-row: 1/2;
    grid-column: 3/5;
    & img {
      filter: brightness(1.3);
    }
  }
  .item3 {
    grid-row: 1/2;
    grid-column: 5/6;
  }
  .item4 {
    grid-row: 2/3;
    grid-column: 3/4;
  }
  .item5 {
    grid-row: 2/4;
    grid-column: 4/6;
    & img {
      filter: brightness(1.4);
    }
  }
  .item6 {
    grid-row: 3/5;
    grid-column: 1/2;
  }
  .item7 {
    grid-row: 3/5;
    grid-column: 2/4;
  }
  .item8 {
    grid-row: 4/5;
    grid-column: 4/6;
  }
}
/* section information------------------*/
#information {
  .title {
    text-align: center;
  }
  .title::after {
    content: "< 店舗情報 >";
    right: 0;
  }
  .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .access {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .item {
    width: 40%;
  }

  .map {
    width: 50%;
  }
  & dt {
    width: 30%;
  }
  & dd {
    width: 70%;
  }
  & dl {
    line-height: 2.5rem;
  }
}

/* menu.html -------------------------------------------*/
#menu-page {
  padding-top: clamp(10rem, 8.462rem + 7.69vw, 15rem);
  .title {
    text-align: center;
  }
  .menu-title {
    margin-bottom: 1rem;
  }
  .menu-title::before {
    content: "■";
    color: var(--accent-color);
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .text p:first-of-type {
    margin-bottom: 1rem;
  }
  .text p:last-of-type {
    text-align: right;
    border-bottom: 2px dotted var(--accent-color);
  }
  .drink .container .item {
    width: 40%;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px dotted var(--accent-color);
    margin-bottom: 1rem;
  }
  .drink span {
    font-size: 0.9rem;
    font-weight: normal;
  }
}
