/* ── SALON INFO 店舗情報セクションの高級感あるリデザイン (2026) ── */
.price-table {
  border-collapse: separate;
  border-spacing: 0;
}
.price-table tbody tr {
  position: relative;
}
.price-table th[scope="row"] {
  position: relative;
  width: 260px;
  min-width: 220px;
  background: var(--color-surface) !important;
  color: var(--color-heading-ink) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 1.1rem 1.5rem;
  vertical-align: top;
  border-bottom: 1px solid var(--color-primary-light);
}
.price-table th[scope="row"]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
}
.price-table td {
  padding: 1.1rem 1.75rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-primary-light);
  vertical-align: top;
}
.price-table tbody tr:last-child th[scope="row"],
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-table tbody tr:hover th[scope="row"],
.price-table tbody tr:hover td {
  background-color: color-mix(in srgb, var(--color-primary) 4%, transparent);
}
.table-scroll {
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.table-scroll .price-table {
  min-width: 480px;
}

/* セクション見出し周りの装飾強化 */
.section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.section .eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--color-accent);
}

/* 店舗ごとの視覚的区別: bg-alt(Heath)とデフォルト(olga)で罫線色をわずかに変える */
section.bg-alt .price-table th[scope="row"]::before {
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

@media (max-width: 768px) {
  .price-table th[scope="row"] { width: auto; min-width: 0; }
}

/* ── salon-info-section 専用: 店舗バッジ付き見出し (2026) ── */
.salon-info-section .salon-info-heading {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 0;
}
.salon-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.salon-info-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
}
.salon-info-badge.is-heath {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}
.salon-info-section .eyebrow {
  margin-bottom: 0.5rem;
}
.salon-info-section .section-title {
  margin-bottom: 0;
}
.salon-info-section .section-title::after {
  margin-top: 0.85rem;
}

@media (max-width: 768px) {
  .salon-info-section .salon-info-heading { margin-bottom: 1.5rem; }
}
