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

/* ラジオ・セレクトの選択肢群 */
.sg-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.sg-choice label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  cursor: pointer;
}
