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

/* チェックボックス行（共通CSSに専用クラスが無いため最小限をここで） */
.sg-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
  cursor: pointer;
}
.sg-check input {
  margin-top: 3px;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--sg-primary, #3b5bdb);
}

/* 早見表（横スクロール可・左寄せの参考表） */
.sg-table-wrap {
  overflow-x: auto;
  margin-top: 10px;
}
.sg-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}
.sg-guide-table th,
.sg-guide-table td {
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--sg-border, #e3e3e3);
}
.sg-guide-table thead th {
  font-weight: 600;
  color: var(--sg-muted, #777);
}
.sg-guide-table th[scope="row"] {
  font-weight: 500;
  white-space: nowrap;
}
