/* =====================================================================
   style.css — 住宅購入の諸費用概算 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 金額はタブ幅数字で桁を揃える */
.sg-result__value,
.sg-result-row__value {
  font-variant-numeric: tabular-nums;
}

/* 補助ラベルを入力直下に詰める */
.sg-field .sg-help {
  margin-top: var(--sg-space-1);
}

/* 諸費用の目安 早見表 */
.hpc-guide .sg-help {
  margin-top: var(--sg-space-2);
}
.hpc-table-wrap {
  margin-top: var(--sg-space-3);
  overflow-x: auto;
}
.hpc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}
.hpc-table th,
.hpc-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--sg-border, #e2e5ec);
  text-align: right;
  white-space: nowrap;
}
.hpc-table thead th {
  text-align: right;
  font-weight: 600;
  color: var(--sg-muted, #777);
  border-bottom-width: 2px;
}
.hpc-table thead th:first-child,
.hpc-table tbody th {
  text-align: left;
}
.hpc-table tbody th {
  font-weight: 600;
}
