/* ============================================
   料金表ページ専用スタイル（/price/）
   ============================================ */

.price-page {
  background: var(--bg-2, #f8f5f0);
  color: var(--ink, #2c2824);
  padding-top: 100px;
}

/* ===== ページヒーロー ===== */
.price-hero {
  position: relative;
  display: grid;
  align-items: center;
  background: var(--bg-2, #f8f5f0);
  overflow: hidden;
}
.price-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  text-align: center;
}
.price-hero__eyebrow {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold, #b89a6a);
  margin-bottom: 24px;
}
.price-hero__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
  color: var(--ink, #2c2824);
}
.price-hero__title em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold, #b89a6a);
  margin: 0 8px;
}
.price-hero__lead {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--ink-2, #6b6560);
  letter-spacing: 0.05em;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== 注意書き ===== */
.price-note-section {
  padding: 48px 0 0;
}
.price-note-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.price-note {
  background: #fff;
  border: 1px solid rgba(44, 40, 36, .12);
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(31, 27, 23, 0.06);
}
.price-note strong {
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink, #2c2824);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.price-note p {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.85rem;
  line-height: 1.95;
  color: var(--ink-2, #6b6560);
  margin: 0;
  letter-spacing: 0.04em;
}
.price-note a {
  color: var(--gold, #b89a6a);
  text-decoration: underline;
}

/* ===== 料金表本体 ===== */
.price-list {
  padding: 80px 0;
}
.price-list__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* カテゴリヘッダー（黒帯） */
.price-section-header {
  background: var(--ink, #2c2824);
  color: #f8f5f0;
  padding: 18px 24px;
  margin: 56px 0 24px;
  border-top: 1px solid var(--gold, #b89a6a);
  border-bottom: 1px solid var(--gold, #b89a6a);
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.price-section-header:first-of-type {
  margin-top: 0;
}
.price-section-header__number {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold, #b89a6a);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}
.price-section-header__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1.4;
  color: #f8f5f0;
}

/* メニューカードグリッド */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.menu-card {
  background: #fff;
  border: 1px solid rgba(44, 40, 36, .12);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(31, 27, 23, 0.08);
}
.menu-card__type {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold, #b89a6a);
  font-weight: 500;
  border-bottom: 1px solid rgba(44, 40, 36, .12);
  padding-bottom: 8px;
}
.menu-card__name {
  flex: 1;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--ink, #2c2824);
  margin: 0;
}
.menu-card__price {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold, #b89a6a);
  text-align: right;
  margin: 0;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(44, 40, 36, .12);
}
.menu-subgroup {
  grid-column: 1 / -1;
  padding: 20px 0 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-2, #6b6560);
}

/* 価格の¥記号 */
.price-yen {
  color: var(--gold, #b89a6a);
  font-weight: 400;
  margin-right: 2px;
}

/* 補足 */
.price-list__small {
  margin-top: 56px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.85rem;
  color: var(--ink-2, #6b6560);
  text-align: center;
  letter-spacing: 0.04em;
}
.price-list__small a {
  color: var(--gold, #b89a6a);
  text-decoration: underline;
}

/* ===== 予約CTA ===== */
.price-cta {
  padding: 100px 24px;
  background: var(--ink, #2c2824);
  color: #f8f5f0;
  text-align: center;
}
.price-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}
.price-cta__eyebrow {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold, #b89a6a);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.price-cta__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 40px;
  color: #f8f5f0;
  line-height: 1.5;
}
.price-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.price-cta .btn-elegant {
  color: #f8f5f0;
  border-color: #f8f5f0;
}
.price-cta .btn-elegant:hover {
  background: #f8f5f0;
  color: var(--ink, #2c2824);
}

/* ===== レスポンシブ：タブレット ===== */
@media (max-width: 900px) {
  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== レスポンシブ：SP ===== */
@media (max-width: 768px) {
  .price-page { padding-top: 80px; }

  .price-hero__inner { padding: 56px 20px 48px; }
  .price-hero__title { font-size: 1.5rem; letter-spacing: 0.04em; }
  .price-hero__lead { font-size: 0.85rem; }

  .price-note-section { padding: 32px 0 0; }
  .price-note-inner { padding: 0 16px; }
  .price-note { padding: 24px 20px; }

  .price-list { padding: 56px 0; }
  .price-list__inner { padding: 0 16px; }

  .price-section-header {
    padding: 14px 16px;
    gap: 12px;
  }
  .price-section-header__number {
    font-size: 1.8rem;
    min-width: 36px;
  }
  .price-section-header__title {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .price-cta {
    padding: 64px 20px;
  }
  .price-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .price-cta__buttons .btn-elegant {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .menu-cards {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   /price/ カテゴリフィルター
   ============================================ */

.price-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 56px;
  justify-content: center;
}

.price-filter__btn {
  background: transparent;
  border: 1px solid rgba(44, 40, 36, .3);
  padding: 12px 28px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #2c2824;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  border-radius: 0;
}

.price-filter__btn:hover {
  border-color: #b89a6a;
  color: #b89a6a;
}

.price-filter__btn.is-active {
  background: #2c2824;
  color: #f8f5f0;
  border-color: #2c2824;
}

.price-category.is-hidden {
  display: none;
}

@media (max-width: 768px) {
  .price-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    margin: 0 -16px 36px;
    padding: 0 16px 8px;
    gap: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .price-filter::-webkit-scrollbar {
    display: none;
  }

  .price-filter__btn {
    padding: 10px 20px;
    font-size: 0.78rem;
    flex-shrink: 0;
    white-space: nowrap;
  }
}
