/* ============================================================
   base.css — 共通スタイル
   ============================================================ */

/* ── フォント定義 ─────────────────────────────────────── */
body {
  font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', sans-serif;
  background-color: #FAF6F0;
  color: #2C2016;
  line-height: 1.8;
}

/* ── 共通コンテナ ─────────────────────────────────────── */
.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ── ラベル共通 ───────────────────────────────────────── */
.label,
.chefLabel,
.sectionLabel,
.courseLabel,
.menuCatLabel,
.shopLabel {
  display: block;
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9A96E;
}

/* ── ゴールドライン ───────────────────────────────────── */
.goldLine {
  display: block;
  width: 280px;
  height: 1.5px;
  background: #C9A96E;
  margin: 20px 0;
}

/* ── フェードインアニメーション ─────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ボタン共通 ───────────────────────────────────────── */
.btnGold {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #C9A96E;
  background: #C9A96E;
  color: #fff;
  font-family: 'Yu Gothic', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  transition: background 0.2s, color 0.2s;
}

.btnGold:hover {
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.5);
}

.btnOutline {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.15em;
  transition: background 0.2s, color 0.2s;
  
}

.btnOutline:hover {
  background: #C9A96E;
  border: 1px solid #C9A96E;
}

/* ── テキストリンク共通 ───────────────────────────────── */
.viewMore {
  display: inline-block;
  font-size: 12px;
  color: #C9A96E;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #C9A96E;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.viewMore:hover {
  opacity: 0.7;
}

/* ── セクション見出し共通 ────────────────────────────── */
.sectionTitle {
  text-align: center;
  margin-bottom: 48px;
}

.sectionTitle .label {
  display: block;
  margin-bottom: 12px;
  text-align: center;
}

.sectionTitle h3 {
  font-family: 'Yu Mincho', '游明朝', 'YuMincho', serif;
  font-size: 36px;
  color: #1C2B4A;
  letter-spacing: 0.05em;
}

/* ── ヘッダー ─────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  background: #1C2B4A;
  z-index: 1000;
  display: flex;
  align-items: center;
}

#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ロゴ */
#header h1 a,
#header h1,
#footerTop h2 a,
#footerTop h2{
  display: block;
}

#header h1 a,
#footerTop h2 a{
  display: block;
  width: 150px;
  line-height: 0;
  padding-top: 35px;
  background: url("../images/logo.png") no-repeat center;
  background-size:contain; 
  overflow: hidden;
  transition: opacity 0.2s;
}
#header h1 a:hover,
#footerTop h2 a:hover{
  background: url("../images/logo_hover.png") no-repeat center;
  background-size:contain; 
  overflow: hidden;
}
#footerTop h3 a{
  display: block;
  width: 300px;
  height: 100px;
  padding-top: 35px;
  background: url("../images/banner.png") no-repeat center;
  background-size:contain; 
  overflow: hidden;
}
#footerTop h3 a:hover{
  background: url("../images/banner_hover2.gif") no-repeat center;
  background-size:contain; 
}



/* PC ナビ */
#navPc {
  display: flex;
  align-items: center;
  gap: 40px;
}

#navPc ul {
  display: flex;
  gap: 36px;
}

#navPc ul li a {
  position: relative;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 4px;
  text-transform: uppercase;
}

/* ホバー下線アニメーション */
#navPc ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A96E;
  transition: width 0.3s ease;
}

#navPc ul li a:hover::after {
  width: 100%;
}

/* 予約ボタン */
.headerReserve {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #C9A96E;
  color: #C9A96E;
  font-size: 11px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.headerReserve:hover {
  background: #C9A96E;
  color: #fff;
}

/* ハンバーガー */
#hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

#hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* ハンバーガー active（×に変換） */
#hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── SPオーバーレイメニュー ──────────────────────────── */
#spMenu {
  position: fixed;
  inset: 0;
  background: #1C2B4A;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#spMenu.open {
  opacity: 1;
  pointer-events: auto;
}

#spMenu .spNavLink {
  font-family: Georgia, serif;
  font-size: 22px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  transition: color 0.2s;
}

#spMenu .spNavLink:hover {
  color: #C9A96E;
}

#spMenu .headerReserve{
  font-size: 22px;
}

/* ── フッター ─────────────────────────────────────────── */
footer {
  background: #152236;
}

#footerTop {
  padding: 48px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

#footerTop .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footerLogo {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: #fff;
  line-height: 1.3;
}


.snsLinks {
  display: flex;
  gap: 20px;
}

.snsLinks li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}

.snsLinks li a:hover {
  border-color: #C9A96E;
  color: #C9A96E;
}

#footerBottom {
  padding: 24px 0;
}

#footerBottom .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#footerBottom ul {
  display: flex;
  gap: 32px;
}

#footerBottom ul li a {
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  transition: color 0.2s;
}

#footerBottom ul li a:hover {
  color: #C9A96E;
}
#footerBottom .icon{
font-size: 20px;
}

#footerBottom small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

/* ── レスポンシブ（768px以下）────────────────────────── */
@media (max-width: 768px) {
  .inner {
    padding: 0 24px;
  }

  /* ヘッダー */
  #header {
    height: 64px;
  }
  #header h1 a,
#footerTop h2 a{
  width: 110px;
}

  /* PCナビ非表示 */
  #navPc, #headerReservePC{
    display: none;
  }

  /* ハンバーガー表示 */
  #hamburger {
    display: flex;
  }

  /* フッター */
  #footerTop .inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  #footerBottom .inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  #footerBottom ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sectionTitle h3 {
    font-size: 28px;
  }
}
