/* =====================================================================
   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-hr {
  border: none;
  border-top: 1px solid var(--sg-border, #e5e7eb);
  margin: var(--sg-space-4) 0;
}

/* 条件プリセット */
.ric-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ric-presets__note {
  width: 100%;
  margin: 0 0 2px;
}
.ric-preset {
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--sg-border, #e5e7eb);
  background: var(--sg-surface, #fff);
  color: var(--sg-text, #1f2937);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  transition: border-color 0.12s, background 0.12s;
}
.ric-preset:hover {
  border-color: var(--sg-primary, #3b5bdb);
}
.ric-preset:active {
  background: var(--sg-primary-weak, #eef2ff);
}

/* 前家賃チェックボックス */
.ric-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.ric-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
