

html {
    font-family: "PT Serif", "Noto Serif JP", serif;
    text-align: center;
    background-color: #000;
    scroll-behavior: smooth;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.prime {
    width: 300px;
    height: auto;
    padding: 20px 20px 50px 20px;
    margin: 0 auto;
}

h2 {
    display: inline-block;
    background: linear-gradient(90deg, #a38131 0%, #e7c76d 33%, #ffe6c5 62%, #e3c05d 83%, #9d874e 100%);
    background: -webkit-linear-gradient(0deg, #a38131 0%, #e7c76d 33%, #ffe6c5 62%, #e3c05d 83%, #9d874e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
    line-height: 50px;
    margin: 60px 0;
    font-weight: bold;
}

p {
    color: #fff;
    line-height: 25px;
    font-size: 14px;
    margin-bottom: 30px;
}


.bg {
    width: 100%;
    background-image: radial-gradient(rgba(114, 114, 114, 0.18), rgba(233, 233, 233, 0.18));
    padding-bottom: 30px;
}

.scroll-space{
    box-sizing: border-box;
    .blue{
      margin: 0 auto;
    }
  }
  .blur{
      transition: all 0.5s;
      filter: blur(10px);
      &.scrollin{
        filter: blur(0);
      }
  }

.about {
    padding-bottom: 30px;
}

.about-img {
    margin-bottom: 60px;
}

.about-images {
    border: 1px solid #FFF;
}

/*========= GreetingのためのCSS ===============*/

.greeting-img {
    display: block;
    margin: 0 auto 30px auto;
    border: 1px solid #FFF;
}

.exaggeration {
    font-size: 20px;
    font-weight: bold;
}


/*========= MenuのためのCSS ===============*/

.menu {
    width: 75%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.menu-img {
    width: 370px;
    border: 1px solid #FFF;
}

.drink {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
  padding: 0 15px;
}

.food {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
  padding: 0 15px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  flex-wrap: wrap;
}

.menu-name {
  flex: 1 1 auto;
  text-align: left;
  color:#fff;
}

.menu-price {
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
  color:#fff;
}


.note {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}

.menu-box1 .menu-set {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.menu-box2 .menu-set {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.menu-text {
  flex: 1;
  min-width: 250px;
}

.menu-img {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.menu-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #fff;
}



/*========= InformationのためのCSS ===============*/

.info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.maps {
    width: 1080px;
    height: 370px;
}

.info_txt {
    margin-top: 30px;
}

/*========= footerのためのCSS ===============*/

footer {
    background-color: #000;
    color: #FFF;
    height: 50px;
    line-height: 50px;
    text-align: left;
    padding-left: 20px;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    left: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #000;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    left: 0;
}


/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    background: linear-gradient(90deg, #8c7537 0%, #dbb00b 45%, #fde79d 70%, #dbb10c 85%, #bc7f04 90% 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 20px;
    right: 2%;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 14px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #8c7537 0%, #dbb00b 45%, #fde79d 70%, #dbb10c 85%, #bc7f04 90% 100%);
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top: 15px;
}

.openbtn1 span:nth-of-type(2) {
    top: 23px;
}

.openbtn1 span:nth-of-type(3) {
    top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*========= SliderのためのCSS ===============*/

.slider {
    margin: 0 auto;
    width: 100%;
}

.slider-img img {
    width: 100%;
    object-fit: cover;
}

.one_title {
    margin-bottom: 0;
}

.section .oneArea {
    margin-bottom: 40px;
  }
  .section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style-type: none;
    margin: 0 0 100px;
    padding: 0;
    box-sizing: border-box;
  }
  .section ul li {
    width: calc(100% / 6);
    border-right: 1px solid #fff;
    text-align: center;
    box-sizing: border-box;
  }
  .section ul li:last-child {
    border-right: none;
  }
  .section ul li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    background: #333;
    transition-duration: 0.3s;
  }
  .section ul li a:hover {
    opacity: 0.7;
  }
  .section .oneArea .one_title {
    color: #fff;
    text-align: center;
    background: #333;
  }
  .section .oneArea a.button {
    display: block;
    font-size: 12px;
    color: #333333;
    text-align: center;
    background: #f2f2f2;
    padding: 10px;
    text-decoration: none;
    transition-duration: 0.3s;
    margin-top: 40px;
  }
  .section .oneArea a.button:hover {
    opacity: 0.7;
  }
  @media screen and (max-width: 1024px) {
    .section .oneArea .one_title {
      font-size: 18px;
    }
  }

  @media screen and (max-width: 768px) {
    .prime {
        width: 150px;
        height: auto;
    }
    
    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
        text-align: center;
        padding: 20px;
        text-align: left;
    }

    .about-img {
        display: flex;
        justify-content: center;
    }

    .about-images {
         width: 130px;
    }

    .slick {
        margin: 0 auto;
        width: 100%;
    }
    
    .slick-img img {
        width: 100%;
        object-fit: cover;
    }

    .exaggeration {
        font-size: 16px;
    }

    .menu-box1 .menu-box2 {
        display: block;
        align-items: center;
        justify-content: center;
    }
    
    .menu-img {
        width: 270px;
        height: auto;
        margin: 30px auto;
        border: 1px solid #FFF;
    }

    .price {
        padding-left: 40px;
    }
    
    .price p {
        text-align: left;
        font-size: 14px;
    }

    .info {
        margin: auto 15px;
    }

    .maps {
        width: 1080px;
        height: 500px;
    }

    footer {
        font-size: 14px;
    }

}