/* =====================================================================
   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-result-row__value {
  text-align: right;
  line-height: 1.5;
}

/* 早見表（全食材の目安一覧） */
.sg-cheat__summary {
  cursor: pointer;
  font-weight: 600;
}
.sg-cheat__scroll {
  overflow-x: auto;
  margin-top: var(--sg-space-3);
}
.sg-cheat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}
.sg-cheat-table th,
.sg-cheat-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--sg-border, #e3e3e3);
  vertical-align: top;
  line-height: 1.5;
}
.sg-cheat-table th {
  font-weight: 600;
  white-space: nowrap;
}
.sg-cheat-table tbody tr:last-child td {
  border-bottom: none;
}
