/* =====================================================================
   style.css — 電球の口金・W相当早見 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 早見表（キー：説明の2列） */
.lg-chart {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--sg-border, #e5e7eb);
}
.lg-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
}
.lg-row__key {
  flex: 0 0 8.5em;
  font-weight: 600;
}
.lg-row__val {
  flex: 1 1 auto;
  color: var(--sg-muted, #555);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .lg-row {
    flex-direction: column;
    gap: 2px;
  }
  .lg-row__key {
    flex: none;
  }
}
