/* ----------------------------------------------------
   ベース設定
---------------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  background-color: #f7f3e9;
  color: #4a3f35;
  line-height: 1.7;
}

#about p {
  text-align: center;
}

/* ----------------------------------------------------
   ヘッダー
---------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  background-color: rgba(247, 243, 233, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #d8cbb8;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #6b4f3f;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #6b4f3f;
  font-size: 1rem;
}

.nav a:hover {
  color: #b36b3b;
}

/* ----------------------------------------------------
   Hero
---------------------------------------------------- */
.hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 16px;
  background-image: linear-gradient(
      rgba(40, 30, 20, 0.45),
      rgba(40, 30, 20, 0.55)
    ),
    url("image/cafe1.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-inner h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.hero-inner p {
  font-size: 1.2rem;
  margin-bottom: 28px;
}

/* ----------------------------------------------------
   アバウト
---------------------------------------------------- */

.about-with-rabbit {
  position: relative;
}

.teaset-img {
  position: absolute;
  left: 12%;
  bottom: 0;
  width: 160px;
  opacity: 0.9;
}

.rabbit-img {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 120px;
  opacity: 0.9;
}


/* ----------------------------------------------------
   セクション
---------------------------------------------------- */
.section {
  padding: 70px 16px;
  max-width: 960px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: center;
  color: #6b4f3f;
}

.section-alt {
  background-color: #efe7db;
  border-radius: 18px;
  padding: 50px 16px;
  margin: 30px auto;
}

.section-alt2 {
  background-color: #efe7db;
  border-radius: 18px;
  padding: 50px 16px;
  margin: 30px auto;
}

#menu.section-alt {
  margin-bottom: 10px; /* 好きな値に調整可能 */
}

/* ----------------------------------------------------
   タブボタン
---------------------------------------------------- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid #d8cbb8;
  background-color: #f7f3e9;
  color: #6b4f3f;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.tab-btn:hover {
  background-color: #efe7db;
}

.tab-btn.active {
  background-color: #b36b3b;
  color: #fff;
  border-color: #b36b3b;
}

/* ----------------------------------------------------
   タブ内容
---------------------------------------------------- */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ----------------------------------------------------
   メニュー（ヨーロッパ風）
---------------------------------------------------- */
.menu-info {
  text-align: center;
}

.menu-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 10px;
}

.menu-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #3a2e2a;
}

.menu-line {
  width: 120px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}



.menu-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid #d8cbb8;
}

.menu-text h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: #6b4f3f;
}

.menu-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #4a3f35;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #b36b3b;
  margin-left: 20px;
  white-space: nowrap;
}

#lunch .menu-heading {
  margin-top: 60px; /* ← 好きな値に調整可能 */
}

/* ----------------------------------------------------
   アクセス
---------------------------------------------------- */
#access p {
  text-align: center;
}

/* ----------------------------------------------------
   フッター
---------------------------------------------------- */
.site-footer p {
  text-align: center;
  margin: 30px 0;
}

/* ----------------------------------------------------
   スマホ対応
---------------------------------------------------- */
@media (max-width: 640px) {

  body {
    overflow-x: hidden;
  }
  img {
    max-width: 100%;
  }
  
  .teaset-img,
  .rabbit-img {
    position: static;
    display: inline-block;
    margin: 10px auto 0;
    width: 100px;
  }

  .about-with-rabbit {
    text-align: center;
  }

  .menu-list {
    padding: 0 20px;
  }

  .menu-row {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .price {
    margin-top: 10px;
  }

}
