/* =====================================================================
   style.css — ランニングのペース・タイム計算 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる。
   ===================================================================== */

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

/* 各入力の補助ラベルを入力直下に詰める */
.sg-field .sg-help {
  margin-top: var(--sg-space-1);
}

/* モード切替タブを横いっぱいに */
.sg-segment {
  display: flex;
  width: 100%;
}
.sg-segment__btn {
  flex: 1;
}
