:root {
  /* 色：白黒赤のみ */
  --white: #ffffff;
  --black: #000000;

  /* 赤のバリエーション */
  --red-primary: #8b0015;
  --red-dark: #5a0000;
  --red-light: #b8001f;
  --red-subtle: #fef5f6;

  /* 白黒のバリエーション */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #7a7a7a;

  --bg-main: #ffffff;
  --bg-subtle: #fafafa;
  --border: #e0e0e0;

  /* タイポグラフィスケール */
  --font-xs: 0.75rem;    /* 12px */
  --font-sm: 0.875rem;   /* 14px */
  --font-base: 1rem;     /* 16px */
  --font-lg: 1.25rem;    /* 20px */
  --font-xl: 1.75rem;    /* 28px */
  --font-2xl: 2.5rem;    /* 40px */
  --font-3xl: 3.5rem;    /* 56px */

  /* スペーシングスケール */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-xs-plus: 0.75rem; /* 12px */
  --space-sm-plus: 1.5rem;  /* 24px */
  --space-sm-plus-2: 2rem; /* 32px */
  --space-md: 2rem;     /* 32px */
  --space-md-plus: 3rem;    /* 48px */
  --space-lg: 4rem;     /* 64px */
  --space-xl: 6rem;     /* 96px */
  --space-2xl: 10rem;   /* 160px */

  /* シャドウ */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 4px 20px rgba(139, 0, 21, 0.2);

  /* その他 */
  --radius-cta: 12px;
  --radius-card: 8px;
  --radius-sm: 4px;
  --radius-xs: 2px;
  --maxw: 1100px;
  --container-narrow: 700px;
  --container-medium: 900px;
  --container-wide: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--font-base);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 見出し用フォント */
h1, h2, h3, h4, h5, h6 {
  font-family: "Shippori Mincho B1", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-top: 0;
}

h1 {
  font-size: var(--font-3xl);
  line-height: 1.2;
  letter-spacing: 0.05em;
}

h2 {
  font-size: var(--font-2xl);
}

h3 {
  font-size: var(--font-xl);
  line-height: 1.3;
}

/* ボタン・アクセント用フォント */
.btn {
  font-family: "Zen Maru Gothic", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.container {
  width: min(100% - var(--space-sm-plus-2), var(--maxw));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: var(--space-sm);
  top: var(--space-sm);
  width: auto;
  height: auto;
  padding: 10px var(--space-xs-plus);
  background: var(--red-primary);
  color: var(--white);
  z-index: 1000;
  border-radius: var(--radius-card);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
}

.logo img {
  max-height: 44px;
  width: auto;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs-plus) var(--space-sm);
  font-size: var(--font-sm);
}
.site-nav a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  font-weight: 500;
  font-size: var(--font-sm);
}
.site-nav a:hover {
  border-bottom-color: var(--red-primary);
  color: var(--red-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: var(--space-xs);
  cursor: pointer;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: var(--radius-xs);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   ファーストビュー（背景画像）
======================================== */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: "Shippori Mincho B1", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: var(--red-primary);
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 var(--space-sm);
  letter-spacing: 0.06em;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, var(--font-3xl));
  line-height: 1.2;
  margin: 0;
}
.news-links,
.wholesale-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.news-links {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}
.wholesale-cta {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.centered-actions {
  text-align: center;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-cta);
  font-weight: 700;
  font-size: var(--font-sm);
  text-decoration: none;
  border: 2px solid var(--red-primary);
  transition: all 0.3s ease;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--red-primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(139, 0, 21, 0.18);
}
.btn-outline {
  background: transparent;
  color: var(--red-primary);
}
.btn-outline:hover {
  background: var(--red-subtle);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(139, 0, 21, 0.08);
}

.section {
  padding: var(--space-md) 0;
}

.section-alt {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.text-link {
  color: var(--red-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.text-link:hover {
  color: var(--red-dark);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, var(--font-2xl));
  margin: 0 0 var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--red-primary), var(--red-light));
  border-radius: var(--radius-xs);
}

.section-header p {
  margin: var(--space-xs) 0 0;
  color: var(--text-secondary);
  font-size: var(--font-sm);
  line-height: 1.7;
}

.instagram-profile-embed {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* ========================================
   メディア掲載お知らせセクション
======================================== */

.media-notice {
  background: var(--red-subtle);
  border-top: 3px solid var(--red-primary);
  border-bottom: 1px solid var(--border);
}

.media-notice-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 700px;
  margin: 0 auto;
}

.media-notice-product {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: var(--space-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-notice-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.media-notice-product img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.media-notice-product h3 {
  font-size: var(--font-base);
  margin: 0 0 var(--space-xs);
  color: var(--red-primary);
}

.media-notice-product p {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.media-notice-product .btn {
  margin-top: var(--space-sm);
}

@media (max-width: 600px) {
  .media-notice-products {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .media-notice-product {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 var(--space-sm);
    text-align: left;
    padding: var(--space-xs-plus);
  }

  .media-notice-product img {
    grid-column: 1;
    grid-row: 1 / 4;
    max-width: 100px;
    margin-bottom: 0;
  }

  .media-notice-product h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .media-notice-product p {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .media-notice-product .btn {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    margin-top: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-xs);
  }
}

/* ========================================
   商品・こだわりセクション
======================================== */

.feature-text {
  margin: 0 auto var(--space-lg);
  text-align: center;
  max-width: var(--container-medium);
  padding: 0;
}

.feature-text h3 {
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.product-list-text {
  max-width: 900px;
  margin: var(--space-md) auto;
}

.product-list-text p {
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.product-category-title {
  font-size: var(--font-xl);
  color: var(--red-primary);
  margin: var(--space-lg) 0 var(--space-sm);
  font-weight: 700;
}

.product-note {
  margin-top: var(--space-lg) !important;
  color: var(--text-muted) !important;
  font-size: var(--font-sm);
  line-height: 1.6;
}

/* ========================================
   レシピグリッド（Instagram風）
======================================== */

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  max-width: 600px;
  margin: 0 auto;
}

.recipe-item {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-item:hover {
  transform: scale(1.02);
  z-index: 1;
}

.recipe-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ========================================
   テレビ・取材セクション（コンパクト版）
======================================== */

.media-compact {
  max-width: 700px;
  margin: 0 auto;
}

/* YouTube埋め込み（小さめ） */
.media-video-compact {
  margin-bottom: var(--space-md);
}

.media-video-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-base);
  font-weight: 500;
  color: var(--red-primary);
  margin: 0 0 var(--space-sm);
  padding-left: 20px;
  position: relative;
}

.media-video-title::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--red-primary);
  font-size: 0.6em;
  top: 0.4em;
}

.video-wrapper-compact {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

.video-wrapper-compact iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-sm);
}

/* シンプルなメディアリンクリスト */
.media-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs-plus);
}

.media-link-list li {
  padding: 0;
}

.media-link-list a {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--red-primary);
  text-decoration: none;
  font-size: var(--font-base);
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.media-link-list a::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--red-primary);
  font-size: 0.6em;
  top: 0.4em;
}

.media-link-list a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

/* ========================================
   チェックリスト
======================================== */

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 auto var(--space-sm);
  display: grid;
  gap: var(--space-xs);
  max-width: 700px;
}
.check-list li {
  padding-left: 26px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-primary);
  font-weight: 700;
}

/* 電話番号ボタン（大） */
.tel-button-wrapper {
  text-align: center;
  margin-bottom: var(--space-md);
}

.tel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 20px 60px;
  background: var(--red-primary);
  border: none;
  border-radius: var(--radius-cta);
  text-decoration: none;
  color: var(--white);
  font-size: var(--font-2xl);
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  min-width: 320px;
}

.tel-button .tel-number {
  font-size: var(--font-lg);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.tel-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tel-button:active {
  transform: translateY(0) scale(1);
}

.tel-button svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
  fill: white;
  stroke: white;
}

.tel-button:hover svg {
  transform: rotate(15deg);
}

.tel-note {
  margin: var(--space-xs-plus) 0 0;
  font-size: var(--font-xs);
  line-height: 1.6;
  color: var(--text-muted);
}

/* 基本情報セクション */
.info-section {
  margin-bottom: var(--space-md);
}

.info-list-simple {
  max-width: 700px;
  margin: 0 auto;
}

.info-list-simple dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-xs-plus);
  margin: 0;
  padding: var(--space-xs-plus);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.info-list-simple dt {
  color: var(--text-muted);
  font-weight: 600;
}

.info-list-simple dd {
  margin: 0;
}

.access-map-section {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md-plus);
}

.access-map-section iframe {
  width: 100%;
  max-width: 900px;
  height: 450px;
  border: 0;
  border-radius: var(--radius-xs);
  display: block;
  margin: 0 auto;
}


/* ========================================
   営業時間セクション
======================================== */

.business-hours {
  padding: var(--space-md) 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.schedule-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto var(--space-xs-plus);
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.schedule-table th,
.schedule-table td {
  padding: var(--space-sm) 10px;
  text-align: center;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: all 0.2s ease;
}

.schedule-table tbody tr {
  transition: all 0.2s ease;
}

.schedule-table tbody tr:hover {
  background: var(--red-subtle);
}

.schedule-table thead th {
  background: transparent;
  font-weight: 600;
  font-size: var(--font-sm);
}

.schedule-table .time-label {
  background: transparent;
  font-weight: 600;
  font-size: var(--font-sm);
}

.schedule-table .open {
  color: var(--red-light);
  font-weight: 700;
  font-size: var(--font-lg);
}

.schedule-table .closed {
  color: var(--text-muted);
  background: var(--bg-subtle);
}

.schedule-table .special {
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--red-primary);
}

.schedule-table .sale-on {
  color: var(--red-primary);
  font-weight: 700;
  font-size: var(--font-lg);
}

.schedule-table .sale-off {
  color: var(--text-muted);
  opacity: 0.3;
}

.schedule-note {
  font-size: var(--font-sm);
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
  margin: var(--space-sm) 0 0;
}

.schedule-note-emphasis {
  color: var(--red-primary);
  font-weight: 700;
}

small {
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
  font-size: var(--font-xs);
  line-height: 1.6;
}

/* ========================================
   FAQ
======================================== */

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-sm-plus);
  margin-bottom: var(--space-sm);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--red-primary);
  margin: 0 0 var(--space-xs);
  padding-left: 28px;
  position: relative;
}

.faq-question::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  color: var(--red-primary);
}

.faq-answer {
  font-size: var(--font-sm);
  color: var(--text-primary);
  margin: 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.faq-answer::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  color: var(--text-muted);
}

/* ========================================
   フッター
======================================== */

/* ========================================
   フッター（白背景・シンプル）
======================================== */

.site-footer {
  background: var(--white);
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: 0;
}

.footer-logo {
  text-align: center;
  margin-bottom: var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer-schedule h3 {
  margin-top: 0;
  margin-bottom: var(--space-sm);
  font-size: var(--font-lg);
  text-align: center;
}

.footer-map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-map iframe {
  width: 100%;
  max-width: 600px;
  height: 300px;
  border: 0;
  border-radius: var(--radius-xs);
}

.footer-info {
  text-align: center;
  margin: var(--space-md) 0;
}

.footer-info h3 {
  margin-top: 0;
  margin-bottom: var(--space-sm);
  font-size: var(--font-lg);
}

.footer-info p {
  margin: 0.5rem 0;
  font-size: var(--font-sm);
  line-height: 1.7;
}

.footer-info a {
  color: var(--red-primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  font-size: var(--font-sm);
  color: var(--text-secondary);
}

.footer-bottom p {
  margin: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: var(--space-md);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.sns-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links a:hover .sns-icon {
  color: var(--red-primary);
}

/* ========================================
   アニメーション
======================================== */

/* ページロード時のフェードインアップ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* セクションのフェードイン（スクロール時） */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 901px) {
  .container {
    width: min(100% - var(--space-md), var(--maxw));
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .business-hours {
    padding: var(--space-lg) 0;
  }

  .video-wrapper-compact {
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    padding: 6px 0;
  }

  .logo img {
    max-height: 35px;
  }

  .hamburger {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(to bottom, var(--white) 0%, var(--red-subtle) 100%);
    flex-direction: column;
    padding: 80px 0 var(--space-sm-plus);
    gap: 0;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border-top-left-radius: var(--radius-card);
    border-bottom-left-radius: var(--radius-card);
  }

  .site-nav.open {
    right: 0;
  }

  .site-nav a {
    display: block;
    padding: 20px var(--space-sm-plus);
    border-bottom: 1px solid var(--border);
    font-size: var(--font-base);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
  }

  .site-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--red-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  .site-nav a:hover {
    background: var(--red-subtle);
    padding-left: 32px;
  }

  .site-nav a:hover::before {
    transform: scaleY(1);
  }

  .recipe-grid {
    gap: var(--space-xs);
  }

  .recipe-item {
    border-radius: var(--radius-sm);
  }

  .video-wrapper-compact {
    max-width: 100%;
  }

  .media-link-list a {
    font-size: var(--font-sm);
  }

  .schedule-table {
    font-size: var(--font-sm);
  }

  .schedule-table th,
  .schedule-table td {
    padding: var(--space-xs) 4px;
  }

  .schedule-table .time-label {
    font-size: var(--font-xs);
  }

  .schedule-table .special {
    font-size: var(--font-xs);
  }

  .hero {
    min-height: 60vh;
    padding: 3rem 0 2rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 5vw, var(--font-2xl));
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-xs-plus) 20px;
  }

  .tel-button {
    font-size: var(--font-lg);
    padding: var(--space-sm) var(--space-sm-plus);
    gap: 10px;
  }

  .tel-button svg {
    width: 24px;
    height: 24px;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2::after {
    width: 40px;
    height: 2px;
  }


  .access-map-section iframe {
    height: 300px;
  }

  /* フッターのレスポンシブ */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}
