@charset "utf-8";
/* index.html--------------------------------------------*/
#front-page {
  color: #333;
  padding-bottom: 5rem;
  & h1 {
    font-family: "Mystery Quest", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(3rem, 2.385rem + 3.08vw, 5rem);
    color: #fff;
    text-shadow: 3px 3px 1px #333;
    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);
      color: #fff;
      text-shadow: 3px 3px 2px #333;
    }
  }
}
.story {
  margin-top: 1rem;
  padding: 1rem;
  & p {
    margin-bottom: 0.5rem;
  }
  & a {
    display: block;
    color: var(--accent-color);
    text-align: right;
    transition: 0.5s ease;
  }
  & :hover {
    margin-right: 0.5rem;
  }
}
/* section about ------------------*/
#about {
  .title::after {
    content: "～ adoraについて ～";
    right: 0;
  }
  & h3 {
    margin-bottom: 1rem;
  }
  .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }
  .reverse {
    flex-direction: row-reverse;
  }
  .text {
    width: 65%;
  }

  .image {
    width: 30%;
    border: 10px solid #fff;
    box-shadow: 3px 3px 3px lightgray;
    & img {
      width: 100%;
      vertical-align: bottom;
    }
  }
}

/* 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;
    margin-bottom: 1rem;
  }
  .item {
    width: 40%;
  }

  .map {
    width: 50%;
  }
  & dt {
    width: 30%;
  }
  & dd {
    width: 70%;
  }
  & dl {
    line-height: 2rem;
  }
  .neighborhood {
    border: 3px dotted var(--pseudo-color);
    padding: 1rem;
  }
}
/* 下層ページ　------------------------------------------- */
.low-page-main {
  /* padding-top: clamp(10rem, 8.462rem + 7.69vw, 15rem); */
  padding-top: clamp(12rem, 11.077rem + 4.62vw, 15rem);
  .title {
    text-align: center;
  }
}
/* menu.html ---------------------*/
.section-title {
  margin-bottom: 1rem;
}
.section-title::before {
  content: "■";
  color: var(--accent-color);
}
#menu-page {
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  & img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .text p:first-of-type {
    margin-bottom: 1rem;
  }
  .text p:last-of-type {
    text-align: right;
    border-bottom: 2px dotted var(--pseudo-color);
  }
  .drink .container .item {
    width: 40%;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px dotted var(--pseudo-color);
    margin-bottom: 1rem;
  }
  .drink span {
    font-size: 0.9rem;
    font-weight: normal;
  }
  .story {
    background-color: #fff;
  }
}
/* poundcake-story.html------------------------- */
#poundcake-story {
  & p {
    margin-bottom: 1rem;
  }
  .item {
    background-color: #fff;
    padding: 2rem 1rem;
    margin-bottom: 1rem;
  }
  .conclusion {
    padding: 2rem 1rem;
    border: 3px dotted var(--pseudo-color);
  }
  & h3 {
    border-bottom: 1px dotted var(--accent-color);
    margin-bottom: 1rem;
  }
  & h4 + p {
    margin-left: 1rem;
  }
  & span {
    background-color: #8ac0fe;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 10px;
    padding: 0 0.5rem;
    margin-left: 0.5rem;
  }
}
/* dish-story.html------------------------------ */
#dish-story {
  & h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 1.108rem + 0.46vw, 1.5rem);
  }
  .container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  & img {
    filter: brightness(1.5);
  }
  .image {
    width: 40%;
  }
  .text {
    width: 50%;
  }
  .item-title {
    border-bottom: 3px solid #f8b68d;
  }
}
