/* =====================================================================
   style.css — 力の単位変換 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

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

/* プリセット・チップは詰めすぎない */
.fc-presets {
  margin-top: 6px;
}

/* ---------- 換算早見表 ---------- */
.fc-lookup__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.fc-lookup__lead {
  font-size: 0.9rem;
  color: var(--sg-muted, #777);
  margin: 0 0 12px;
}
.fc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  white-space: nowrap;
}
.fc-table th,
.fc-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.fc-table thead th {
  color: var(--sg-muted, #777);
  font-weight: 600;
  border-bottom-width: 2px;
}
.fc-table th[scope="row"] {
  text-align: left;
  font-weight: 700;
  color: var(--sg-text, inherit);
}
.fc-table tbody tr:last-child th,
.fc-table tbody tr:last-child td {
  border-bottom: 0;
}
.fc-examples {
  margin: 14px 0 0;
  padding-left: 1.2em;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--sg-muted, #777);
}
.fc-examples li {
  margin: 4px 0;
}
.fc-examples strong {
  color: var(--sg-text, inherit);
  font-weight: 600;
}
