/* ================================================
   style2026.css - やちミートショップ 2026リデザイン
   温かみのある和風 / 赤・黒テーマ / レスポンシブ
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;600;700&family=Zen+Old+Mincho:wght@400;700;900&display=swap');

/* ── CSS変数 ─────────────────────────── */
:root {
  --red:         #9b2020;
  --red-deep:    #6e1515;
  --red-light:   #c94040;
  --red-pale:    #f5e8e8;
  --black:       #1a1212;
  --charcoal:    #2d2020;
  --brown:       #4a2c2c;
  --cream:       #fdf8f3;
  --warm-white:  #fffaf6;
  --text-main:   #1a1212;
  --text-sub:    #5c4040;
  --border:      rgba(155,32,32,0.2);
  --border-warm: rgba(74,44,44,0.15);
  --shadow:      0 4px 24px rgba(110,21,21,0.12);
  --ff-serif:    'Zen Old Mincho', 'Noto Serif JP', '游明朝', serif;
  --ff-body:     'Noto Serif JP', '游明朝', serif;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── リセット & ベース ─────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-light); }
img { max-width: 100%; height: auto; display: block; }

/* ── ヘッダー ────────────────────────── */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--red);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-brand { display: flex; align-items: center; gap: 14px; }
.header-brand img { width: 48px; border-radius: 50%; border: 2px solid var(--red); }
.brand-text { display: flex; flex-direction: column; }
.brand-sub { font-size: 0.6rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.45); }
.brand-name { font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 700; color: #fff; letter-spacing: 0.08em; }

/* ── ハンバーガー ─────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--transition); }

/* ── ナビゲーション ───────────────────── */
.site-nav { display: flex; }

.site-nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 72px;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
  border-left: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), color var(--transition);
  font-family: var(--ff-serif);
  white-space: nowrap;
}
.site-nav a:hover { background: var(--red-deep); color: #fff; }

/* ── ヒーロー ────────────────────────── */
.hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 65%, rgba(155,32,32,0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 25%, rgba(110,21,21,0.15) 0%, transparent 45%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--red-deep), var(--red-light), var(--red-deep));
}

.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--red); opacity: 0.7; }
.hero-eyebrow span { font-size: 0.62rem; letter-spacing: 0.3em; color: var(--red-light); text-transform: uppercase; }

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.hero-title em { color: var(--red-light); font-style: normal; }

.hero-desc { font-size: 0.87rem; color: rgba(255,255,255,0.58); line-height: 2.1; }

.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 4px; box-shadow: var(--shadow), 0 20px 60px rgba(0,0,0,0.5); }

.hero-image::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 50px; height: 50px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 50px; height: 50px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

/* ── 店舗情報バー ────────────────────── */
.info-bar { background: var(--red-deep); padding: 14px 24px; }
.info-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  align-items: center;
}
.info-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.9); font-weight: 600; }
.info-item svg { flex-shrink: 0; opacity: 0.75; }

/* ── セクション共通 ──────────────────── */
.section { padding: 72px 24px; max-width: 1100px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-label { display: inline-block; font-size: 0.6rem; letter-spacing: 0.4em; color: var(--red); text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: var(--ff-serif); font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 700; color: var(--black); letter-spacing: 0.1em; }

.section-divider { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; }
.section-divider::before,
.section-divider::after { content: ''; width: 44px; height: 1px; background: var(--red); opacity: 0.35; }
.section-divider span { width: 5px; height: 5px; background: var(--red); border-radius: 50%; opacity: 0.6; }

/* ── メニューカードグリッド ──────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.menu-card {
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 2px solid transparent;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(155,32,32,0.1);
  border-bottom-color: var(--red);
}
.menu-card a { display: block; padding: 28px 24px; color: inherit; }
.menu-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.menu-card-icon { font-size: 1.4rem; flex-shrink: 0; }
.menu-card-title { font-family: var(--ff-serif); font-size: 0.97rem; font-weight: 700; color: var(--black); letter-spacing: 0.04em; }
.menu-card-desc { font-size: 0.76rem; color: var(--text-sub); line-height: 1.8; }
.menu-card-arrow { display: flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.7rem; color: var(--red); letter-spacing: 0.1em; }
.menu-card-arrow::after { content: '→'; }

/* ── 近江名産セクション ──────────────── */
.specialty-section { background: var(--red-pale); padding: 72px 24px; }
.specialty-inner { max-width: 1100px; margin: 0 auto; }
.specialty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }

.specialty-card {
  background: var(--warm-white);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 130px 1fr;
  border: 1px solid var(--border-warm);
}
.specialty-card img { width: 130px; height: 130px; object-fit: cover; }
.specialty-card-body { padding: 20px 22px; }
.specialty-card-label { font-size: 0.62rem; letter-spacing: 0.2em; color: var(--red); margin-bottom: 5px; }
.specialty-card-title { font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.specialty-card-desc { font-size: 0.76rem; color: var(--text-sub); line-height: 1.8; }

/* ── お知らせセクション ──────────────── */
.news-section { background: var(--charcoal); padding: 72px 24px; }
.news-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: start; }
.news-aside .section-title { color: #fff; }
.news-aside .section-label { color: var(--red-light); }

.news-body { border-top: 1px solid rgba(155,32,32,0.4); padding-top: 28px; }
.news-date { display: inline-block; background: var(--red-deep); color: rgba(255,255,255,0.9); font-size: 0.72rem; letter-spacing: 0.15em; padding: 4px 14px; margin-bottom: 20px; }
.news-text { font-size: 0.89rem; color: rgba(255,255,255,0.75); line-height: 2.2; margin-bottom: 28px; }

.news-list { list-style: none; }
.news-list li {
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.68);
  position: relative;
  line-height: 1.8;
}
.news-list li::before { content: '◆'; position: absolute; left: 0; top: 18px; color: var(--red-light); font-size: 0.45rem; }

/* ── フッター ────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 3px solid var(--red-deep);
  padding: 48px 24px;
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-name { font-family: var(--ff-serif); font-size: 1.2rem; color: #fff; margin-bottom: 4px; letter-spacing: 0.12em; }
.footer-sub { font-size: 0.63rem; letter-spacing: 0.2em; color: var(--red-light); margin-bottom: 18px; }
.footer-address { font-size: 0.77rem; color: rgba(255,255,255,0.42); line-height: 2; margin-bottom: 24px; }
.footer-copy { font-size: 0.63rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.22); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }

/* ── アニメーション ──────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.38s; }

/* ══════════════════════════════════════
   レスポンシブ
══════════════════════════════════════ */
@media (max-width: 860px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  /* ヘッダー */
  .site-header { position: relative; }
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 200;
  }
  .site-nav.open { display: flex; }
  .site-nav a { height: auto; padding: 15px 24px; border-left: none; border-bottom: 1px solid rgba(255,255,255,0.05); }

  /* ヒーロー */
  .hero-grid { grid-template-columns: 1fr; padding: 44px 20px; gap: 28px; }
  .hero-image { order: -1; }
  .hero-image::before, .hero-image::after { display: none; }

  /* カード */
  .menu-grid { grid-template-columns: 1fr; gap: 10px; }

  /* 近江名産 */
  .specialty-grid { grid-template-columns: 1fr; }
  .specialty-card { grid-template-columns: 100px 1fr; }
  .specialty-card img { width: 100px; height: 100px; }

  /* お知らせ */
  .news-inner { grid-template-columns: 1fr; gap: 24px; }

  /* 共通 */
  .section { padding: 48px 16px; }
  .specialty-section, .news-section { padding: 48px 16px; }
  .site-footer { padding: 40px 16px; }
}
