/* Pricing tables */
.bf-price-table {
  background: #fff;
  border: 1px solid var(--bf-border);
  border-radius: var(--bf-radius-2xl);
  overflow: hidden;
  box-shadow: var(--bf-shadow-sm);
}
.bf-price-table table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.bf-price-table thead tr { background: rgba(250,245,246,0.7); }
.bf-price-table th { font-weight: 500; font-size: 0.875rem; color: var(--bf-muted-fg); text-align: left; padding: 1rem 1.25rem; }
/* 全カテゴリのテーブルで列位置を揃える（内容に応じた自動幅にしない） */
.bf-price-table th:nth-child(1) { width: 55%; }
.bf-price-table th:nth-child(2) { width: 20%; }
.bf-price-table th:nth-child(3) { width: 25%; }
.bf-price-table th.is-center { text-align: center; }
.bf-price-table th.is-right  { text-align: right; }
.bf-price-table td { padding: 1rem 1.25rem; border-top: 1px solid var(--bf-border); font-size: 0.95rem; overflow-wrap: break-word; }
.bf-price-table tr.is-popular td { background: rgba(244, 212, 220, 0.08); }
.bf-price-table td.is-center { text-align: center; color: var(--bf-muted-fg); font-size: 0.875rem; }
.bf-price-table td.is-right  { text-align: right; font-size: 1.05rem; color: var(--bf-accent-fg); }

/* Package plans */
.bf-pkg {
  position: relative;
  border-radius: var(--bf-radius-2xl);
  padding: 2.25rem;
  box-shadow: var(--bf-shadow-sm);
  color: var(--bf-primary-fg);
}
.bf-pkg__tag {
  position: absolute; right: 1rem; top: 1rem;
  background: rgba(255,255,255,0.7);
  padding: 0.25rem 0.7rem;
  border-radius: var(--bf-radius-full);
  font-size: 0.75rem;
  color: var(--bf-accent-fg);
}
.bf-pkg__price { font-size: 1.875rem; color: var(--bf-accent-fg); margin-bottom: 1.25rem; }
.bf-pkg__features { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.bf-pkg__features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: var(--bf-muted-fg); margin-bottom: 0.75rem; }
.bf-pkg__check { width: 1rem; height: 1rem; color: var(--bf-accent); flex-shrink: 0; margin-top: 0.25rem; }
.bf-pkg__note { font-size: 0.75rem; color: var(--bf-muted-fg); margin-bottom: 1.25rem; }

/* Company info table */
.bf-info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--bf-border);
  border-radius: var(--bf-radius-2xl);
  overflow: hidden;
  box-shadow: var(--bf-shadow-sm);
}
.bf-info-table tr + tr th, .bf-info-table tr + tr td { border-top: 1px solid var(--bf-border); }
.bf-info-table th {
  background: rgba(250,245,246,0.5);
  text-align: left;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--bf-muted-fg);
  width: 11rem;
  padding: 1rem 1.25rem;
  vertical-align: top;
}
.bf-info-table td { padding: 1rem 1.25rem; font-size: 0.9rem; line-height: 1.7; white-space: pre-line; }

/* Two-column with sidebar */
.bf-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .bf-two-col { grid-template-columns: 2fr 3fr; gap: 4rem; align-items: start; } }

/* Quick info card */
.bf-qcard {
  background: rgba(250,245,246,0.5);
  border-radius: var(--bf-radius-xl);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.bf-qcard__row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.bf-qcard__row svg { width: 1.25rem; height: 1.25rem; color: var(--bf-accent); flex-shrink: 0; margin-top: 0.15rem; }
.bf-qcard__row p { margin: 0; font-size: 0.875rem; }
.bf-qcard__row span { display: block; color: var(--bf-muted-fg); font-size: 0.8rem; }
