@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background: #cbb994;
}

/* 共通のタイトルスタイル */
.sec-title {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px solid #333; /* 共通で線を引く */
  padding-bottom: 5px;
  width: fit-content; /* 文字の長さで止める */
  margin: 0 auto 8px;
  opacity: 1; /* 中央寄せ + 下マージン */
}

.sub-title {
  text-align: center;
  font-size: 1.4rem;
  color: #555;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

/* =========================
    ボタン
========================= */
.btn {
  margin-top: 40px; /* 前後の余白調整用 */
  text-align: center;
}
.btn a {
  display: inline-block; /* blockだと横幅いっぱいになるため、文字量に合わせるならinline-block */
  background-color: #f4a460;
  /* 文字の下に影をつけてボタンに立体感を出す */
  border-bottom: 6px solid #B36A2E;
  border-radius: 10px;
  color: #333333;
  font-size: 1.5rem;
  padding: 15px 60px 15px 35px; /* 右矢印のスペース分、右のパディングを広めに設定 */
  text-decoration: none; /* リンクの下線を消す */
  transition: 0.3s;
  position: relative;
  /* ボタンの右矢印 */
}
.btn a::after {
  content: "";
  width: 12px; /* 少しサイズを微調整 */
  height: 12px;
  border-top: solid 3px #333333;
  border-right: solid 3px #333333;
  transform: rotate(45deg);
  position: absolute;
  top: 50%; /* 上下中央揃え */
  right: 25px; /* 位置調整 */
  margin-top: -8px; /* 自身の高さの半分戻す */
}
.btn a {
  /* ホバーアクション */
}
.btn a:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.fadeUpTrigger {
  opacity: 0;
}

/* JSでこのクラスが付与されたらアニメーション開始 */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

p {
  font-size: 1.6rem;
  line-height: 160%;
}

/* =========================
    header
========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #c48c64;
  display: flex;
  align-items: center;
  padding: 0 40px;
  z-index: 50;
}
@media (max-width: 768px) {
  header.open .header-nav {
    display: block;
  }
  header.open .ham span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }
  header.open .ham span:nth-child(2) {
    opacity: 0;
  }
  header.open .ham span:nth-child(3) {
    bottom: auto;
    top: 11px;
    transform: rotate(-45deg);
  }
}
header h1 img {
  height: 40px;
}

.header-nav {
  margin-left: auto;
  z-index: 60;
  position: relative;
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #c48c64;
    padding-bottom: 30px;
    height: 100vh;
  }
}
.header-nav .header-nav-list {
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .header-nav .header-nav-list {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-top: 50%;
  }
}
.header-nav .header-nav-list a {
  color: #000;
  font-size: 1.6rem;
  text-decoration: none;
}

/* =========================
    ハンバーガーメニュー
========================= */
.ham {
  display: none;
  width: 30px;
  height: 24px;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 768px) {
  .ham {
    display: block;
  }
}
.ham span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}
.ham span:nth-child(1) {
  top: 0;
}
.ham span:nth-child(2) {
  top: 11px;
}
.ham span:nth-child(3) {
  bottom: 0;
}

/* マスク */
.mask {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 40;
}
@media (max-width: 768px) {
  .mask {
    display: block;
  }
}

footer {
  background-color: #c48c64;
  padding: 60px 5% 20px;
  font-family: "Noto Sans JP", sans-serif;
}
footer .items {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  footer .items {
    flex-direction: column;
    gap: 40px;
  }
}
footer .items .item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  footer .items .item {
    gap: 20px;
  }
}
footer .items .item a {
  display: block;
  font-size: 1.8rem;
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.3s;
}
footer .items .item a i {
  font-size: 2rem;
}
footer .items .item a:hover {
  opacity: 0.7;
}
footer .items .item-box {
  text-align: center;
}
footer .items .item-box p {
  font-size: 1.6rem;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
footer .items .item-box img {
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  footer .items .item-box img {
    max-width: 180px;
  }
}
footer > p {
  text-align: center;
  margin-top: 60px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
@media (max-width: 768px) {
  footer > p {
    margin-top: 40px;
  }
}

/* =========================
   mainvisual
========================= */
.mainvisual {
  min-height: 100svh;
  background: url("../img/headertop.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainvisual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* 縦書きテキスト */
.top-text {
  position: relative;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.6;
  letter-spacing: 0.05em;
  z-index: 1;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
  transform: translateX(1rem);
}
.top-text p {
  margin: 0;
  color: #fff;
  font-size: 3rem;
}
.top-text p:nth-child(2) {
  transform: translate(-0.5rem, 2rem);
}
.top-text p:nth-child(3) {
  transform: translate(-1rem, 4rem);
}
.top-text p:nth-child(4) {
  transform: translate(-1.5rem, 6rem);
}

/* =========================
    concept
========================= */
.concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 120px 10%;
  background: #111;
}
@media (max-width: 768px) {
  .concept {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 6%;
  }
}

.concept-img img {
  width: 100%;
  height: auto;
  display: block;
}

.concept-box {
  color: #fff;
}
.concept-box .concept-lead {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 30px;
}
.concept-box .concept-text {
  font-size: 1.4rem;
  line-height: 2.2;
}

/* =========================
    menu セクション全体
========================= */
.menu {
  text-align: center;
  color: #333;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* =========================
    menu レイアウト
========================= */
.menu-container {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  .menu-container {
    gap: 60px;
  }
}

.menu-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .menu-content {
    gap: 30px;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .reverse {
    flex-direction: column-reverse;
  }
}

/* =========================
    メニュー1品分
========================= */
.menu-text {
  text-align: center;
  flex: 1;
  font-size: 2.6rem;
}
.menu-text .main-title {
  font-size: 2rem;
  margin-bottom: 12px;
}
.menu-text .main-price {
  margin-top: 16px;
  font-size: 2rem;
}

.menu-img {
  margin: 0 auto;
  flex: 1;
}
.menu-img img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0px 0px 12px 12px rgba(17, 17, 26, 0.08);
  border-radius: 8px;
}

/* =========================
    ドリンク画像（横いっぱい）
========================= */
.drink-img {
  grid-column: 1/-1;
  margin-top: 40px;
}
.drink-img img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* =========================
    ボタン
========================= */
.center {
  text-align: center;
  margin-bottom: 30px;
}

.interior::before, .interior::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  margin: 60px auto;
}
.interior .interior-contents {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 768px) {
  .interior .interior-contents {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 6%;
  }
}
.interior .interior-box1 img,
.interior .interior-box2 img {
  width: 100%;
  display: block;
}
.interior .interior-box1 .text-box,
.interior .interior-box2 .text-box {
  padding: 16px 20px;
  margin-top: 16px;
  text-align: center;
}
.interior .interior-box1 .text-box p,
.interior .interior-box2 .text-box p {
  font-size: 14px;
  line-height: 1.8;
}
.interior .interior-box1 .text-box p:first-child,
.interior .interior-box2 .text-box p:first-child {
  margin-bottom: 6px;
}

.information {
  padding: 60px 6%;
  text-align: center;
}
.information .flex {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 768px) {
  .information .flex {
    flex-direction: column;
  }
}
.information .flex .item-info {
  text-align: left;
  line-height: 1.8;
  width: 40%;
}
@media (max-width: 768px) {
  .information .flex .item-info {
    width: 100%;
    text-align: center;
  }
}
.information .flex .item-info h3 {
  font-size: 20px;
  margin-bottom: 30px;
}
.information .flex .item-info p {
  font-size: 15px;
  margin-bottom: 25px;
}
.information .flex .map {
  margin-bottom: 40px;
  width: 60%;
}
@media (max-width: 768px) {
  .information .flex .map {
    width: 100%;
  }
}
.information .flex .map iframe {
  width: 100%;
  max-width: 100%;
}

/* =========================
    Lunch
========================= */
.main-nav {
  margin-bottom: 60px;
  margin-top: 80px;
}
.main-nav-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  background: #d2b48c;
  padding: 20px 0;
}
.main-nav .main-tab {
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.1em;
  position: relative;
}
.main-nav .main-tab.is-active {
  font-weight: bold;
}
.main-nav .main-tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #000;
}

.menu-section {
  display: none;
}
.menu-section.is-show {
  display: block;
}

.lunch-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 768px) {
  .lunch-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-bottom: 50px;
  }
}

.lunch-image img {
  width: 300px;
  display: block;
  padding: 6%;
}
@media (max-width: 768px) {
  .lunch-image img {
    width: 100%;
    max-width: 400px;
  }
}
.lunch-image p {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
}

.lunch-menu ul {
  list-style: none;
  padding: 70px;
  background: #d2b48c;
}
@media (max-width: 768px) {
  .lunch-menu ul {
    padding: 20px;
  }
}
.lunch-menu span {
  font-size: 1.6rem;
}
.lunch-menu li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.lunch-menu .sub {
  margin-bottom: 20px;
}
.lunch-menu .note {
  margin-top: 30px;
}

/* =========================
    Dinner
========================= */
.grid {
  max-width: 1000px;
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
    padding: 0 6%;
  }
}

.card {
  text-align: center;
}
.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.card .card-text {
  margin-top: 12px;
  font-size: 14px;
}

/* =========================
    下：メニュー一覧グリッド
========================= */
.food-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .food-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 6%;
  }
}

.food-category {
  background: #d2b48c;
  padding: 40px;
}
@media (max-width: 768px) {
  .food-category {
    padding: 24px;
  }
}

.food-title {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #000;
}

/* =========================
    dl（料理名＋価格）
========================= */
.food-list {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
  row-gap: 12px;
}

.food-item {
  font-size: 14px;
  line-height: 1.6;
}

.food-price {
  font-size: 14px;
  text-align: right;
  white-space: nowrap;
}

/* =========================
    Drink
========================= */
/* 上の画像 */
.drink-menu {
  max-width: 1100px;
  width: 100%;
  margin-bottom: 80px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .drink-menu {
    padding: 0 6%;
  }
}
.drink-menu img {
  height: auto;
  display: block;
  object-fit: cover;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .drink-menu img {
    width: 100%;
    padding-bottom: 60px;
  }
}

/* 下のメニュー全体 */
.drink-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}
@media (max-width: 768px) {
  .drink-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 6%;
  }
}

/* 各カテゴリ */
.drink-category {
  background: #d9b08c;
  padding: 24px 28px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .drink-category {
    padding: 20px;
  }
}
.drink-category h5 {
  font-size: 16px;
  margin-bottom: 16px;
}
.drink-category dl {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 10px;
  column-gap: 16px;
}
.drink-category dt {
  font-size: 14px;
}
.drink-category dd {
  font-size: 14px;
  text-align: right;
  margin: 0;
  white-space: nowrap;
}/*# sourceMappingURL=style.css.map */