/* =====================================================================
   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);
}

/* 償却スケジュール表 */
.dep-table-wrap {
  overflow-x: auto;
  margin-top: var(--sg-space-4);
}
.dep-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}
.dep-table th,
.dep-table td {
  padding: 8px 10px;
  text-align: right;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
  white-space: nowrap;
}
.dep-table th {
  color: var(--sg-muted, #777);
  font-weight: 600;
  text-align: right;
}
.dep-table th:first-child,
.dep-table td:first-child {
  text-align: center;
}
