/* ===== リセット・基本 ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  color: #2c2c2c;
  background: #fff;
  line-height: 1.8;
}

/* 英字はCormorant Garamondを適用するクラス */
.en {
  font-family: "Cormorant Garamond", "Georgia", serif;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== レイアウト ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ヘッダー ===== */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e8e0d8;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #4a3220;
  font-style: italic;
}

.nav__list {
  display: flex;
  gap: 36px;
}

.nav__list a {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #666;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.nav__list a:hover {
  color: #4a3220;
}

/* ===== ヒーロー ===== */
.hero {
  background: #f5ede4 center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(25, 12, 4, 0.48);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #d4b896;
  margin-bottom: 16px;
}

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero__desc {
  font-size: 0.95rem;
  color: #ddd0c0;
  margin-bottom: 40px;
  line-height: 2;
}

.btn {
  display: inline-block;
  padding: 13px 44px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  transition: background 0.25s, border-color 0.25s;
}

.btn:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== セクション共通 ===== */
.section {
  padding: 88px 0;
}

.section__ornament {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  color: #b08060;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 16px;
}

.section__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #3b2516;
  letter-spacing: 0.18em;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 20px;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: #b08060;
}

.section__sub {
  font-size: 0.82rem;
  color: #aaa;
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: 0.1em;
}

/* ===== メニュー（白背景 + 上部アクセントライン） ===== */
.section--menu {
  border-top: 3px solid #c8a882;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.menu-card {
  border: 1px solid #e8e0d8;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
}

.menu-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.menu-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.menu-card__body {
  padding: 20px;
}

.menu-card__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3b2516;
  letter-spacing: 0.05em;
}

.menu-card__body p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 12px;
}

.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #7a5230;
  letter-spacing: 0.05em;
}

/* ===== 営業時間（ベージュ + オーナメント） ===== */
.section--hours {
  background: #faf6f1;
  border-top: 1px solid #e5ddd5;
  border-bottom: 1px solid #e5ddd5;
}

.hours-table {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #e5ddd5;
  font-size: 0.92rem;
}

.hours-table th {
  text-align: left;
  color: #7a5230;
  font-weight: 700;
  width: 42%;
  letter-spacing: 0.04em;
}

.hours-table td {
  color: #555;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

/* ===== アクセス（左サイドアクセント） ===== */
.section--access {
  background: #fff;
}

.access-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.access-info {
  padding-left: 20px;
  border-left: 2px solid #c8a882;
}

.access-info p {
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.9;
}

.access-info strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #a08060;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.map-embed {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

/* ===== フッター ===== */
.footer {
  background: #2a1a0e;
  color: #a08060;
  text-align: center;
  padding: 32px 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.12em;
}

/* ===== スクロールアニメーション ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== レスポンシブ ===== */
@media (max-width: 640px) {
  .nav__list {
    gap: 20px;
  }

  .access-wrap {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
