/* =============================================
   隠れ家サロン Anima — グローバルスタイル
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'YuMincho', Georgia, serif;
  background-color: #F2F0EE;
  color: #3a3028;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---------- Color Variables ---------- */
:root {
  --color-bg:        #faf8f5;
  --color-bg-light:  #f5f0ea;
  --color-bg-section:#f0ebe3;
  --color-accent:    #9e8067;
  --color-accent-dk: #7a6050;
  --color-text:      #3a3028;
  --color-text-sub:  #6b5c4e;
  --color-border:    #C1BFBF;
  --color-white:     #ffffff;
  --max-width:       1000px;
  --header-height:   72px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 400;
  letter-spacing: 0.05em;
}

.section-label {
  display: block;
  font-family: 'Gill Sans', 'Trebuchet MS', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.6rem;
  color: var(--color-text);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

/* ---------- Layout Helpers ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 72px 0;
}

.text-center {
  text-align: center;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

/* ロゴ */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-logo .logo-sub {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.65rem;
  color: var(--color-accent);
  letter-spacing: 0.15em;
}

.site-logo .logo-main {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 2rem;
  color: var(--color-text);
  letter-spacing: 0.04em;
  font-style: italic;
}

/* グローバルナビ */
.global-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.global-nav a {
  font-family: 'Gill Sans', 'Trebuchet MS', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--color-text);
  transition: color 0.2s;
}

.global-nav a:hover,
.global-nav a.active {
  color: var(--color-accent);
}

/* 電話番号 */
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: var(--color-text);
  white-space: nowrap;
  line-height: 1.4;
}

.header-tel-note {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.header-tel-num {
  font-family: 'Gill Sans', 'Trebuchet MS', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

/* ハンバーガー（スマホ） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-text);
  transition: all 0.3s;
}

/* スマホナビ オーバーレイ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250,248,245,0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Gill Sans', 'Trebuchet MS', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--color-text);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  line-height: 1;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background-color: var(--color-bg-light);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.55;
}

/* 画像がない場合のプレースホルダー背景 */
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #ede8e0 0%, #d9ccbc 60%, #c8b9a5 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0;
  margin-left: 8%;
  padding: 80px 24px;
}

.hero-catch {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
}

.hero-year {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.85rem;
  color: var(--color-text-sub);
  margin-bottom: 0.4rem;
}

.hero-desc {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 2;
}

/* =============================================
   CONCEPT SECTION
   ============================================= */
.concept {
  background: #F2F0EE;
  padding: 80px 0;
  text-align: center;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  background: #F0EBE7;
  padding: 40px;
  border-radius: 2px;
}

.concept-item {
  background: transparent;
}

.concept-item h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.concept-item h3::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2 C12 2 4 6 4 14 C4 18.4 7.6 22 12 22 C16.4 22 20 18.4 20 14 C20 6 12 2 12 2Z' stroke='%239e8067' stroke-width='1' fill='none'/%3E%3Cline x1='12' y1='22' x2='12' y2='10' stroke='%239e8067' stroke-width='1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}

.concept-item p {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.82rem;
  color: var(--color-text-sub);
  line-height: 2;
}

/* =============================================
   MENU SECTION (HOME)
   ============================================= */
.menu-section {
  background: #F2F0EE;
  padding: 24px 0 72px 0;
  text-align: center;
}

.menu-heading {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--color-text);
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}

.menu-heading::after {
  content: '';
  display: block;
  width: 100px;
  height: 1px;
  background: var(--color-accent);
  margin: 10px auto 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.menu-card {
  background: var(--color-white);
  padding-bottom: 24px;
}

.menu-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--color-bg-section);
}

/* 画像プレースホルダー */
.menu-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8e0d4 0%, #d4c9b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.menu-card-body {
  padding: 20px 16px 8px;
}

.menu-card-name-ja {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.menu-card-name-en {
  font-family: 'Gill Sans', 'Trebuchet MS', sans-serif;
  font-size: 0.68rem;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.menu-card-desc {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.78rem;
  color: var(--color-text-sub);
  line-height: 1.8;
  margin-bottom: 16px;
}

.menu-card-price {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 1.15rem;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.menu-more-link {
  display: inline-block;
  margin-top: 40px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.82rem;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.menu-more-link:hover {
  color: var(--color-accent);
}

/* =============================================
   BOTTOM 3-COL: 挨拶 / お客様の声 / アクセス
   ============================================= */
.home-bottom {
  background: #F2F0EE;
  padding: 40px 0 40px 0;
}

.home-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.home-bottom-grid > div {
  background: #F0EDEC;
  border: 1px solid #C1BFBF;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

/* 各列共通 */
.col-title {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: none;
  color: var(--color-text);
}

/* ご挨拶 */
.greeting-text {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.78rem;
  color: var(--color-text-sub);
  line-height: 2;
  margin-bottom: 8px;
}

.greeting-img-wrap {
  margin-top: 8px;
  text-align: center;
}

.greeting-img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  object-fit: contain;
  margin: -20px auto 0;
  background: transparent;
}

.greeting-img-placeholder {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e8e0d4 0%, #d0c5b0 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.7rem;
}

/* お客様の声 */
.review-item {
  margin-bottom: 8px;
  padding: 16px 16px;
  background: #faf9f8;
  border-radius: 4px;
  border-bottom: none;
  position: relative;
}

.review-item:first-child::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #F0EDEC;
  border-radius: 50%;
  top: -7px;
  left: 18px;
  border: 2px solid var(--color-accent);
}

.review-customer {
  font-size: 0.78rem;
  color: var(--color-accent);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.review-text {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.7rem;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* アクセス */
.access-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 16px;
  background: var(--color-bg-light);
  border-radius: 6px;
}

.access-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d8d0c4 0%, #c8bfb0 100%);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.72rem;
}

.access-info {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.78rem;
  color: var(--color-text-sub);
  line-height: 2.2;
}

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: #C1BFBF;
  color: var(--color-white);
  padding: 14px 0 12px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
  row-gap: 4px;
  flex-wrap: wrap;
}

.cta-label {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
}

.cta-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Gill Sans', 'Trebuchet MS', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--color-white);
}

.cta-tel svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cta-note {
  width: 100%;
  text-align: center;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  line-height: 1.5;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text);
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.72rem;
  color: var(--color-text-sub);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-copy {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.68rem;
  color: var(--color-text-sub);
  text-align: center;
  margin-top: 12px;
}

/* =============================================
   PAGE HERO (サブページ共通)
   ============================================= */
.page-hero {
  position: relative;
  background-image: url('images/hero-main.png');
  background-size: cover;
  background-position: center 50%;
  padding: 80px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(242, 240, 238, 0.45);
}

.page-hero-sub {
  position: relative;
  z-index: 1;
  font-family: 'Gill Sans', 'Trebuchet MS', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-hero-title {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

/* =============================================
   MENU PAGE
   ============================================= */
.menu-page-section {
  padding: 72px 0;
}

.menu-page-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}

.menu-page-item:first-child {
  padding-top: 0;
}

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

.menu-page-item.reverse {
  grid-template-columns: 1fr 340px;
}

.menu-page-item.reverse .menu-page-img-wrap {
  order: 2;
}

.menu-page-item.reverse .menu-page-text {
  order: 1;
}

.menu-page-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.menu-page-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8e0d4 0%, #d4c9b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.78rem;
}

.menu-page-en {
  font-family: 'Gill Sans', 'Trebuchet MS', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.menu-page-name {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--color-text);
}

.menu-page-desc {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.85rem;
  color: var(--color-text-sub);
  line-height: 2;
  margin-bottom: 24px;
}

.menu-page-price {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 1.5rem;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-section {
  padding: 72px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-section);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e0d4 0%, #d4c9b8 100%);
  color: var(--color-accent);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* =============================================
   ACCESS PAGE
   ============================================= */
.access-section {
  padding: 72px 0;
}

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

.access-map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #ddd5c8 0%, #ccc0b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.access-map-link {
  display: inline-block;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.78rem;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 2px;
  margin-top: 8px;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table th,
.access-table td {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.82rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.8;
  text-align: left;
}

.access-table th {
  width: 110px;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  font-weight: 600;
}

.access-table td {
  color: var(--color-text-sub);
}

/* =============================================
   PRIVACY & LAW PAGE
   ============================================= */
.text-page {
  padding: 72px 0;
}

.text-page-content {
  max-width: 720px;
  margin: 0 auto;
}

.text-page h2 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin: 40px 0 14px;
  color: var(--color-text);
  padding-left: 12px;
  border-left: 3px solid var(--color-accent);
}

.text-page p,
.text-page li {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.82rem;
  color: var(--color-text-sub);
  line-height: 2;
  margin-bottom: 8px;
}

.text-page ul {
  list-style: disc;
  padding-left: 1.5em;
}

/* =============================================
   RESPONSIVE — Tablet (≤768px)
   ============================================= */
@media (max-width: 768px) {
  /* ヘッダー */
  .global-nav,
  .header-tel {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 380px;
  }

  .hero-catch {
    font-size: 1.5rem;
  }

  /* コンセプト */
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  /* メニューグリッド */
  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* HOME ボトム */
  .home-bottom-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* CTA */
  .cta-inner {
    flex-direction: column;
    gap: 12px;
  }

  /* フッター */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* メニューページ */
  .menu-page-item,
  .menu-page-item.reverse {
    grid-template-columns: 1fr;
  }

  .menu-page-item .menu-page-img-wrap,
  .menu-page-item.reverse .menu-page-img-wrap {
    order: 2;
    width: 70%;
    margin: 0 auto;
  }

  .menu-page-item .menu-page-text,
  .menu-page-item.reverse .menu-page-text {
    order: 1;
  }

  /* アクセス */
  .access-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* ギャラリー */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   RESPONSIVE — Mobile (≤480px)
   ============================================= */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.3rem;
  }

  .hero-catch {
    font-size: 1.3rem;
  }

  .hero-content {
    padding: 40px 20px;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
  }

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

  .access-table th {
    width: 90px;
  }
}

/* =============================================
   PRICE TABLES
   ============================================= */
.price-table-wrap {
  margin-top: 28px;
}

.price-table-block {
  margin-bottom: 24px;
}

.price-table-head {
  font-family: 'Gill Sans', 'Trebuchet MS', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--color-text);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--color-text-sub);
  padding: 6px 10px;
  text-align: right;
  border-bottom: 1px solid var(--color-border);
}

.price-table th:first-child {
  text-align: left;
}

.price-table td {
  padding: 9px 10px;
  text-align: right;
  border-bottom: 1px solid var(--color-bg-light);
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 0.85rem;
  color: var(--color-text);
}

.price-table td:first-child {
  text-align: left;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.78rem;
  color: var(--color-text-sub);
}

.price-table .hatsu {
  color: #b84040;
  font-weight: 500;
}

.price-table .dash {
  color: var(--color-border);
}

.price-note-row {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 0.72rem;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-top: 10px;
}

.price-note-row span.highlight {
  color: #b84040;
}

.menu-sub-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

.menu-sub-photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center center;
}
