@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&family=Noto+Serif+JP:wght@400;500;600;700;900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");

html {
  font-size: 62.5%;
  --top-spacing: 100px;
  scroll-padding-top: var(--top-spacing);
}


@media screen and (max-width: 1023px) and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  color: #454545;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: none;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

* {
  line-height: 1.5;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #876b4a;
  text-decoration: none;
}

a:hover {
  filter: brightness(110%);
}

li {
  list-style: none;
}

/* フォント */
.serif {
  font-family: "Noto Serif JP", serif;
}
.shippori {
  font-family: "Shippori Mincho", serif;
}

/* SPのみ改行 */
@media (min-width: 768px) {
  .br-sp-only {
    display: none;
  }
}

/* PCのコンテンツ幅 */
.pc-content-width {
  max-width: 108rem;
  margin-inline: auto;
}

/* SPのコンテンツ幅 */
@media (max-width: 767px) {
  .sp-content-width {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/*header */
.header {
  background-image: url(../images/FV/FV_pc.jpg);
  background-size: cover;
  padding: 5rem;
  position: relative;
 }
 @media (max-width: 767px) {
  .header {
    background-image: url(../images/FV/FV_sp.jpg);
    padding: 2rem 1.5rem;
  }
 }
 
 .logo {
  width: 13.8rem;
 }
 @media (max-width: 767px) {
  .logo {
    width: 9.6rem;
  }
 }
 
 .header-wrapper {
  display: flex;
  justify-content: flex-start;
 }
 @media (max-width: 767px) {
  .header-wrapper {
    display: flex;
    justify-content: space-around;
  }
 }
 
 
 @media (max-width: 767px) {
   .header-nav {
    display: none;
   }
   }
   
   @media (min-width: 768px) {
     .hamburger-menu {
       display: none;
     }
   }
   
 
 /* ヘッダー ご予約ボタン ----*/
 .reserve-btn {
  height: 4rem;
  background-color: #fff;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border: #876b4a solid 0.6px;
 }
 @media (max-width: 767px) {
  .reserve-btn {
    width: 15rem;
    height: 3.5rem;
    background-color: #fff;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
  }
 }
 
 .reserve-btn img {
  width: 8.8rem;
  height: 2.7rem;
  margin-left: 0.5rem;
 }
 @media (max-width: 767px) {
  .reserve-btn img {
    width: 7rem;
    height: auto;
    margin-left: 0.1rem;
  }
 }
 
 /* インスタアイコン*/
 .insta-btn img {
  width: 4rem;
  margin-left: 1.6rem;
 }
 @media (max-width: 767px) {
  .insta-btn {
    display: none;
  }
 }
 
 /* ヘッダーナビゲーション */
 .header-nav a {
  text-decoration: none;
 }
 @media (min-width: 768px) {
  .header-nav a {
    color: #876b4a;
  }
 }
 .header-list {
  display: flex;
  font-size: 1.4rem;
  color: #876b4a;
  padding: 2rem 0 0 2rem;
 }
 
 .header-list li {
  padding: 0 1rem;
 }
 
 .header-btn-group {
  display: flex;
  padding-top: 1rem;
  padding-left: 5rem;
 }
 @media (max-width: 767px) {
  .header-btn-group {
    padding-left: 5rem;
  }
 }
 
 /* ハンバーガーボタン */
 @media (min-width: 768px) {
   .hamburger-btn {
     display: none;
   }
 }
 
 @media (max-width: 767px) {
   .hamburger-btn {
    display: block;
    font-size: 3rem;
    color: #876b4a;
    margin-top: 0.3rem;
   }
 }
 
 /* ハンバーガーメニュー */
 @media (max-width: 767px) {
   .hamburger-menu {
     position: fixed;
     top: 8rem;
     left: 0;
     width: 100%;
     height: calc(100vh - 5rem);
     background-color: #fff;
     transition: all 0.6s;
     transform: translateX(100%);
   }
 }
 /* アクティブ状態 */
 .hamburger-menu-active {
   transform: translateX(0);
 }
 
 @media (max-width: 767px) {
   .hamburger-list {
     display: flex;
     flex-direction: column;
     font-size: 1.4rem;
     color: #fef3f3;
     padding: 2rem 3rem 0 3rem;
   }
 }
 
 @media (max-width: 767px) {
   .hamburger-list a {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-between;
     padding: 1.72rem 2rem;
     line-height: 1;
     border-bottom: 0.0625rem solid #000;
     text-decoration: none;
   }
   .hamburger-list li {
     width: 100%;
   }
   .hamburger-list li:nth-child(4) a,
   .hamburger-list li:nth-child(5) a {
     padding: 1.5rem 2rem 1.95rem;
   }
   .hamburger-list li:nth-child(4) a::after,
   .hamburger-list li:nth-child(5) a::after {
     padding-top: 0.25rem;
   }
 }
 
 .hamburger-insta-btn {
   width: 4rem;
   margin-inline: auto;
   padding-top: 1.5rem;
 }

/* about */
.hr-sp-only {
  display: none;
}
@media (max-width: 767px) {
  .hr-sp-only {
    display: block;
    border: #876b4a solid 0.7px;
    margin-bottom: 2rem;
  } 
}

.menu-head {
 text-align: center;
 margin-bottom: 5rem;
}

/* マーカー風スタイル */
.maker {
  background-color: #FED8C3;
}

.menu-head p:nth-child(3) {
 max-width: 80rem;
 margin-inline: auto;
 text-align: justify;
 line-height: 1.75;
}
@media (max-width: 767px) {
  .menu-head p:nth-child(3) {
    max-width: 100%;
   }
}

.menu-head h3 {
 font-size: 3.2rem;
 color: #876b4a;
 font-weight: 500;
 margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .menu-head h3 {
    font-size: 2rem;
    margin-top: 2rem;
   }
}

.menu-head img {
  width: 80vw;
  height: 30vw;
  object-fit: cover;
  object-position: 0 20%;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .menu-head img {
    width: 100vw;
    height: 30vw;
    margin-bottom: 2rem;
   }
}

/* 戻るボタン */
.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
}
.pagetop a {
  display: block;
  background-color: #ccc;
  text-align: center;
  color: #222;
  font-size: 20px;
  text-decoration: none;
  padding: 5px 10px;
filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.pagetop a:hover {
  display: block;
  background-color: #b2d1fb;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  padding:5px 10px;
filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}