/* =====================================================================
   style.css — 贈与税の計算 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 結果値はタブ幅数字で桁を揃える */
.sg-result__value {
  font-variant-numeric: tabular-nums;
}

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

/* 早見表（目安） */
.sg-table-wrap {
  overflow-x: auto;
  margin-top: 10px;
}
.sg-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}
.sg-guide-table th,
.sg-guide-table td {
  padding: 8px 10px;
  text-align: right;
  border-bottom: 1px solid var(--sg-border, #e3e3e3);
  white-space: nowrap;
}
.sg-guide-table thead th {
  font-weight: 600;
  color: var(--sg-muted, #777);
}
.sg-guide-table th[scope="row"] {
  text-align: left;
  font-weight: 500;
}
