/* =====================================================================
   style.css — タクシー運賃の概算 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 料金設定（詳細） */
.tx-adv > summary {
  cursor: pointer;
  font-weight: 600;
  line-height: 1.6;
  padding: 4px 0;
}
.tx-adv__note {
  margin-top: 4px;
}

/* 設定入力を2カラムに（狭い画面では1カラム） */
.tx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sg-space-3, 12px) var(--sg-space-4, 16px);
  margin-top: var(--sg-space-3, 12px);
}

.tx-reset {
  margin-top: var(--sg-space-3, 12px);
}

/* 距離別の早見表 */
.sg-chart {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px 16px;
}
.sg-chart-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
}
.sg-chart-row__key {
  font-weight: 600;
}
.sg-chart-row__val {
  color: var(--sg-muted, #555);
}
