/* --------------- reset & base --------------- */

:root {
  --header-h: 112px;

  /* ===== THEME COLOR (DARUMA / Deep Red) ===== */
  --primary:        #8b1a1a;
  --primary-hover:  #6b1515;
  --primary-soft:   #fdf0f0;
  --primary-ink:    #fff;
  --gold:           #c9962e;
  --gold-soft:      #fdf6e3;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #222;
  background-color: #fafafa;
  line-height: 1.75;
}

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

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

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
}


/* --------------- layout helpers --------------- */

.section {
  padding: 64px 16px;
  scroll-margin-top: var(--header-h);
}

/* scroll reveal */
body.is-home .section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}

body.is-home .section.is-inview {
  opacity: 1;
  transform: translateY(0);
}

body:not(.is-home) .section {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* section title: left-aligned editorial style */
.section-title {
  font-size: 30px;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-lead {
  text-align: center;
  margin-bottom: 44px;
  color: #666;
}


/* --------------- buttons --------------- */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0.08em;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary-soft);
}


/* --------------- page top button --------------- */

.page-top {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: 48px;
  height: 48px;
  border-radius: 4px;

  display: grid;
  place-items: center;

  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 14px rgba(139,26,26,0.3);

  line-height: 0;
  z-index: 900;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.page-top.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.page-top:hover {
  background: var(--primary-hover);
}


/* --------------- header --------------- */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: #fff;
  color: #222;
  box-shadow: 0 1px 0 rgba(0,0,0,0.10);
}

.header-inner {
  width: 100%;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* padding・height はJS駆動のためtransitionなし */
}


.header-brand {
  flex-shrink: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.site-logo-img {
  height: 80px;
  width: auto;
  display: block;
  /* height はJS駆動のためtransitionなし */
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* 予約ボタン＋電話番号（縦並び） */
.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.header-reserve {
  font-size: 14px;
  text-align: center;
  transition: min-width 0.35s ease, padding 0.3s ease;
}

/* ===== スクロール後のコンパクトヘッダー ===== */
/* is-scrolled: 全プロパティをJS駆動のため、CSSには記述なし */

.header-tel-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

/* PC nav — 1段インライン */
.global-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.25s ease, max-width 0.35s ease;
  max-width: 800px;
}

.global-nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100%;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.global-nav li {
  display: flex;
  align-items: stretch;
}

/* カテゴリー間の縦ライン */
.global-nav li {
  position: relative;
}
.global-nav li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #d8d8d8;
}

.global-nav a {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 100%;
  font-size: 14px;
  color: #444;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
  position: relative;
  transition: color 0.2s;
}

/* アンダーライン（左→右アニメーション用） */
.global-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

/* hover: 赤文字 + アンダーライン左→右 */
.global-nav a:hover {
  color: var(--primary);
}
.global-nav a:hover::after {
  transform: scaleX(1);
}

/* 現在ページ: 赤太字 + アンダーライン常時表示 */
.global-nav a[aria-current] {
  color: var(--primary);
  font-weight: 700;
}
.global-nav a[aria-current]::after {
  transform: scaleX(1);
}

.header-only-desktop { display: block; }
.global-nav.header-only-desktop { display: flex; }

/* hamburger */
.nav-toggle {
  display: none !important;
  width: 40px;
  height: 36px;
  padding: 0;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex !important; }
}


/* --------------- drawer --------------- */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 999;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(84vw, 360px);
  background: #fff;
  transform: translateX(100%);
  transition: transform .22s ease;
  z-index: 1001;
  padding: 18px 18px 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -10px 0 30px rgba(0,0,0,0.18);
}

.drawer.is-open { transform: translateX(0); }

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-close {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  margin-left: auto;
  display: block;
  color: #333;
}

.drawer nav ul { padding: 18px 8px 8px; }

.drawer nav a {
  display: block;
  padding: 14px 8px;
  border-bottom: 1px solid #f0f0f0;
  color: #222;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.drawer nav a:hover { color: var(--primary); }


/* --------------- hero --------------- */

/* 全体ラッパー：白背景 */
.hero {
  background: #fff;
}

/* ① 白エリア：ブランドロゴ */
.hero-brand {
  background: transparent;
  text-align: center;
  padding: clamp(24px, 4vh, 48px) 20px 0;
  position: relative;
  z-index: 3;
}

.hero-logo {
  margin: 0;
  line-height: 1;
}

.hero-logo-img {
  width: clamp(240px, 40vw, 520px);
  height: auto;
  display: inline-block;
}

.hero-en {
  font-size: 10px;
  letter-spacing: 0.50em;
  color: #aaa;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  line-height: 1;
}

.hero-title-store {
  display: block;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.10em;
  color: #333;
  margin-bottom: 4px;
}

.hero-title-daruma {
  display: block;
  font-size: clamp(72px, 14vw, 148px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #111;
  line-height: 1;
}

/* ② 画像エリア：ロゴが上部に被さる */
.hero-visual {
  position: relative;
  height: calc(100vh - 60px);
  min-height: 480px;
  margin-top: clamp(-130px, -10vw, -50px);
  margin-left: clamp(16px, 5vw, 60px);
  margin-right: clamp(16px, 5vw, 60px);
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

/* スライドショー */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide-1 { background-image: url("./images/hero-daruma.jpg"); }
.hero-slide-2 { background-image: url("./images/hero-daruma1.jpg"); }
.hero-slide-3 { background-image: url("./images/hero-daruma2.jpg"); }

/* 暗めオーバーレイ */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.12) 40%,
    rgba(0,0,0,0.50) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* 上端ホワイトフェード（ロゴとのブレンド） */
.hero-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(60px, 10vw, 100px);
  background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* 画像上のコンテンツ（キャッチ・CTA） */
.hero-visual-content {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 560px;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  z-index: 3;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.60);
  margin: 0 auto 20px;
}

.hero-catch {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  letter-spacing: 0.20em;
  color: #fff;
  margin: 0 0 16px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-badge {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  display: inline-block;
  border-radius: 2px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 15px 36px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.10em;
  border: 2px solid var(--primary);
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.hero-btn-reserve:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
}

.hero-btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  opacity: 0.90;
  transition: opacity 0.15s;
}

.hero-btn-tel:hover { opacity: 1; }
.hero-btn-tel__icon { font-size: 15px; opacity: 0.8; }

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  z-index: 3;
}

.scroll-indicator__line {
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.55);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

.scroll-indicator__text {
  font-size: 9px;
  letter-spacing: 0.4em;
  opacity: 0.55;
}


/* --------------- topics --------------- */

.topics { background-color: #fff; }

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.topic-card {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.topic-image {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
}

.topic-image-1 { background-image: url("./images/topic-megakarubi.jpg"); }
.topic-image-2 { background-image: url("./images/topic-horumon.jpg"); }
.topic-image-3 { background-image: url("./images/daruma-gaikan.jpg"); }

.topic-card h3 {
  font-size: 15px;
  padding: 14px 18px 6px;
  letter-spacing: 0.03em;
}

.topic-card p {
  font-size: 13px;
  padding: 0 18px 18px;
  color: #666;
  line-height: 1.65;
}


/* --------------- concept --------------- */

.concept { background-color: #fafafa; }

.concept-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.concept-text p {
  margin-bottom: 14px;
  color: #444;
  font-size: 15px;
}

.concept-image {
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.concept-main-image { background-image: url("./images/concept-bunta.jpg"); }


/* --------------- course --------------- */

.course { background-color: #fff; }

.course-hero {
  margin: 18px auto 32px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  max-width: 1080px;
}

.course-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.course-card {
  background-color: #fff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.2s;
}

.course-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.course-card h2,
.course-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.course-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.course-price-note {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
}

.course-lead {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.course-list {
  font-size: 13px;
  color: #555;
  padding-left: 1.2em;
  list-style: disc;
  line-height: 1.8;
}

.course-note {
  font-size: 12px;
  text-align: center;
  margin-top: 28px;
  color: #888;
}

.course-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 11px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  letter-spacing: 0.04em;
}

.badge-red {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.badge-gold {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold);
}

.course-note-small {
  font-size: 12px;
  color: #888;
  margin-top: 14px;
}

.course-extra {
  margin-top: 24px;
  background: var(--primary-soft);
  border: 1px solid rgba(139,26,26,0.2);
  border-radius: 4px;
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.04em;
}


/* --------------- course-row (横並びカード) --------------- */

.course-row {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  border-top: 4px solid var(--primary);
}

.course-row__img {
  flex: 0 0 360px;
  max-width: 360px;
}

.course-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像なしバリアント */
.course-row--no-img {
  display: block;
}

.course-row--no-img .course-row__body {
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.course-row__body {
  flex: 1;
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.course-row__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  margin-bottom: 10px;
}

.course-row__price {
  display: inline-block;
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  margin-left: 4px;
}

.course-row__price small { font-size: 14px; }

.price-tax {
  font-size: 12px;
  font-weight: 400;
  color: #888;
}

.course-row__desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* スペック表 */
.course-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  margin-bottom: 18px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  overflow: hidden;
  font-size: 13px;
}

.course-specs__row {
  display: contents;
}

.course-specs dt,
.course-specs dd {
  padding: 7px 14px;
  border-bottom: 1px solid #ebebeb;
  margin: 0;
  line-height: 1.5;
}

.course-specs__row:last-child dt,
.course-specs__row:last-child dd {
  border-bottom: none;
}

.course-specs dt {
  background: #f7f2f2;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}

.course-specs dd {
  background: #fff;
  color: #333;
}

/* コース内容リスト */
.course-items-label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.course-row__items ul {
  font-size: 13px;
  color: #555;
  padding-left: 1.4em;
  list-style: disc;
  line-height: 1.9;
  margin-bottom: 14px;
}

.course-reserve-note {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.course-row__note {
  font-size: 12px;
  color: #555;
  margin-bottom: 12px;
  font-style: italic;
}

.course-row__btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* モバイル：縦積み */
@media (max-width: 760px) {
  .course-row {
    flex-direction: column;
    gap: 0;
  }

  .course-row__img {
    flex: none;
    max-width: 100%;
    height: 220px;
  }

  .course-row__body {
    padding: 24px 20px;
  }

  .course-row__title {
    font-size: 15px;
  }
}


/* --------------- menu --------------- */

.menu { background-color: #fafafa; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.menu-card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.menu-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.menu-image-1 { background-image: url("./images/menu-megakarubi.jpg"); }
.menu-image-2 { background-image: url("./images/menu-marucho.jpg"); }
.menu-image-3 { background-image: url("./images/menu-wagyu-karubi.jpg"); }

.menu-card h3 {
  font-size: 15px;
  padding: 14px 18px 6px;
  letter-spacing: 0.03em;
}

.menu-card p {
  font-size: 13px;
  padding: 0 18px 18px;
  color: #666;
}


/* --------------- drink --------------- */

.drink { background-color: #fff; }

.drink-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.drink-card {
  background-color: #fafafa;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.drink-card:hover { transform: translateY(-3px); }

.drink-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.drink-image-1 { background-image: url("./images/drink-beer.jpg"); }
.drink-image-2 { background-image: url("./images/drink-sour.jpg"); }
.drink-image-3 { background-image: url("./images/drink-shochu.jpg"); }

.drink-card h3 {
  font-size: 15px;
  padding: 14px 18px 6px;
  margin: 0;
}

.drink-card p {
  font-size: 13px;
  padding: 0 18px 18px;
  color: #666;
  margin: 0;
}


/* --------------- space --------------- */

.space { background-color: #fafafa; }

.space-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.space-text p {
  margin-bottom: 14px;
  color: #444;
  font-size: 15px;
}

.space-image {
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.space-main-image { background-image: url("./images/space-daruma.jpg"); }


/* --------------- blog --------------- */

.blog { background-color: #fff; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.blog-card a { display: block; color: inherit; }

.blog-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-body { padding: 14px 16px 18px; }

.blog-date {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}

.blog-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 6px;
}

.blog-excerpt {
  font-size: 12px;
  color: #777;
  line-height: 1.65;
}

/* blog list page */
#blogList .blog-card a {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: start;
}

#blogList .blog-card .blog-image {
  width: 88px;
  height: 88px;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
}

#blogList .blog-card .blog-body { padding: 0; }

#blogList .blog-title { font-size: 15px; }
#blogList .blog-excerpt { font-size: 13px; }

/* top page latest blog */
#blog-latest-grid .blog-card a {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: start;
}

#blog-latest-grid .blog-card .blog-image {
  width: 88px;
  height: 88px;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#blog-latest-grid .blog-card .blog-body { margin-top: 0; padding: 0; }

#blog-latest-grid .blog-title { font-size: 14px; line-height: 1.45; margin-bottom: 4px; }
#blog-latest-grid .blog-excerpt { font-size: 12px; line-height: 1.6; opacity: 0.85; }

@media (max-width: 600px) {
  #blogList .blog-card a,
  #blog-latest-grid .blog-card a {
    grid-template-columns: 1fr;
  }
  #blogList .blog-card .blog-image,
  #blog-latest-grid .blog-card .blog-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 8px;
  }
}


/* --------------- reserve --------------- */

.reserve { background-color: #fafafa; }

.reserve-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.reserve-block {
  background-color: #fff;
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.reserve-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.reserve-tel-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.reserve-tel-number a {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.reserve-time {
  font-size: 12px;
  color: #777;
  margin-top: 8px;
}


/* --------------- access --------------- */

.access { background-color: #fff; }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.access-map {
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  min-height: 380px;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  flex: 1;
}

.shop-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.shop-data {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  font-size: 14px;
  color: #444;
}

.shop-data dt {
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

.shop-data dd {
  margin: 0;
  line-height: 1.65;
}

.shop-data a { color: var(--primary); }


/* --------------- footer --------------- */

.site-footer {
  background-color: #111;
  color: #eee;
  padding: 40px 20px 20px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-brand p {
  margin-top: 4px;
  font-size: 13px;
  color: #888;
}

.footer-contact { text-align: right; }

.footer-tel-label {
  font-size: 11px;
  color: #888;
  margin-bottom: 2px;
}

.footer-tel-number a {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.footer-reserve {
  margin-top: 10px;
  font-size: 13px;
}

.footer-sns {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}

.footer-sns a {
  font-size: 12px;
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-sns a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  color: #666;
  letter-spacing: 0.04em;
}


/* --------------- page inner styles --------------- */

.page-head { padding-bottom: 0; }

.page-title {
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.page-lead {
  text-align: center;
  color: #666;
  margin: 0 0 40px;
}

/* menu page cards */
.mp-grid {
  display: grid;
  gap: 20px;
}

.mp-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

.mp-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mp-card {
  background: #fff;
  border-radius: 4px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  height: 100%;
}

.mp-card__title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  letter-spacing: 0.04em;
}

.mp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mp-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 8px;
  border-bottom: 1px dashed #eee;
  gap: 12px;
}

.mp-item:last-child { border-bottom: none; }

.mp-item span:last-child {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.mp-note {
  text-align: center;
  margin-top: 24px;
  color: #777;
  font-size: 13px;
}

.mp-hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 14px 0;
}

.mp-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 11px;
  color: var(--primary);
  border: 1px solid rgba(139,26,26,0.3);
  background: var(--primary-soft);
}

/* menu category heading */
.menu-section + .menu-section { margin-top: 0; }

.menu-cat-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary);
}

.menu-cat-ja {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.04em;
}

.menu-cat-en {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-cat-lead {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
  margin-top: -8px;
}

/* feature card (名物など) */
.mp-card--feature {
  border-top: 3px solid var(--gold);
}

.mp-card__note {
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
  line-height: 1.6;
}

.mp-price {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.mp-price small { font-size: 11px; }

/* タグ（もみたれ・塩たれ等） */
.mp-tag {
  display: inline-block;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 2px;
  background: #f0f0f0;
  color: #666;
  margin-left: 4px;
  vertical-align: middle;
}

/* バッジ色違い */
.mp-badge--red {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.mp-badge--gold {
  color: var(--gold);
  background: var(--gold-soft);
  border-color: var(--gold);
}

/* 3列アイテム（特選和牛赤身） */
.mp-item--head {
  font-weight: 700;
  font-size: 12px;
  color: #888;
  border-bottom: 1px solid #ddd !important;
  padding-bottom: 6px;
}

.mp-item--3col {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
}

.mp-item--3col .mp-price { min-width: 72px; text-align: right; }


/* drink page */
.drinkcat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.drinkcat-card {
  background: #fff;
  border-radius: 4px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.drinkcat-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  letter-spacing: 0.04em;
}

.drinkcat-list {
  display: grid;
  gap: 6px;
}

.drinkcat-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 6px;
  border-bottom: 1px dashed #eee;
  font-size: 14px;
  color: #444;
}

.drinkcat-list .price {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.drinkcat-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #888;
}

.drinkcat-sub {
  display: block;
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}


/* more-link */
.more-link {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}


/* --------------- misc --------------- */

.back-to-top-home { text-align: center; }
.is-home .back-to-top-home { display: none; }

/* sticky headerなのでpadding-top不要 */
body:not(.is-home) main { padding-top: 0; }


/* --------------- responsive --------------- */

@media (max-width: 900px) {
  :root { --header-h: 64px; }

  .header-only-desktop,
  .global-nav.header-only-desktop { display: none; }

  .header-inner { padding: 10px 16px; }
  .site-logo { font-size: 15px; }

  .hero-title { font-size: 30px; }

  .topics-grid,
  .menu-grid,
  .drink-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-inner,
  .space-inner,
  .reserve-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .access-map { min-height: 0; }
  .access-map iframe { height: 320px; flex: none; }

  .mp-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mp-grid--3 { grid-template-columns: 1fr; }
  .drinkcat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 48px 16px; }
  .section-title { font-size: 22px; }
  .hero-title { font-size: 24px; }
  .hero-title-sub { font-size: 16px; }

  .topics-grid,
  .course-grid,
  .menu-grid,
  .drink-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions { flex-direction: column; align-items: center; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-contact { text-align: left; }
  .footer-sns { justify-content: flex-start; }

  .mp-grid--2 { grid-template-columns: 1fr; }
}
