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

/* 縦・横・高さの3列。狭い画面でも3列を維持して詰める */
.ds-row3 {
  display: flex;
  gap: var(--sg-space-3, 12px);
}
.ds-row3 .sg-field {
  flex: 1 1 0;
  min-width: 0;
}

/* 区切り線 */
.sg-hr {
  border: none;
  border-top: 1px solid var(--sg-border, #e5e7eb);
  margin: var(--sg-space-4) 0;
}

/* サイズ区分の早見表（静的な参考表） */
.ds-table-wrap {
  overflow-x: auto;
  margin-top: var(--sg-space-3, 12px);
}
.ds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.ds-table th,
.ds-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.ds-table thead th {
  color: var(--sg-muted, #777);
  font-weight: 600;
  font-size: 0.85rem;
}
.ds-table tbody th[scope="row"] {
  font-weight: 700;
  color: var(--sg-text, #222);
}
