/* =====================================================================
   style.css — 揚げ物の適温・目安時間 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 結果値・内訳はタブ幅数字で桁を揃える */
.sg-result__value,
.sg-result-row__value {
  font-variant-numeric: tabular-nums;
}

/* 食材選択ボタン群 */
.df-foods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: var(--sg-space-2, 8px);
}
@media (min-width: 560px) {
  .df-foods {
    grid-template-columns: repeat(3, 1fr);
  }
}
.df-food {
  padding: 10px 8px;
  border: 1px solid var(--sg-border, #e5e7eb);
  border-radius: var(--sg-radius, 8px);
  background: transparent;
  color: inherit;
  font-size: 0.88rem;
  line-height: 1.35;
  cursor: pointer;
  text-align: center;
}
.df-food:hover {
  border-color: var(--sg-primary, #3b5bdb);
}
.df-food.is-selected {
  border-color: var(--sg-primary, #3b5bdb);
  background: rgba(59, 91, 219, 0.08);
  font-weight: 600;
  color: var(--sg-primary, #3b5bdb);
}

/* 油の温度の見分け方 */
.df-guide {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--sg-space-2, 8px);
}
.df-guide-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: baseline;
}
.df-guide-temp {
  flex: 0 0 auto;
  min-width: 8.5em;
  font-weight: 600;
  color: var(--sg-primary, #3b5bdb);
  font-variant-numeric: tabular-nums;
}
.df-guide-desc {
  flex: 1 1 12em;
  font-size: 0.9rem;
  line-height: 1.5;
}
