/* =====================================================================
   style.css — 数秘術（ライフパスナンバー）ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 結果の番号を大きく見せる */
.sg-result__value {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}

/* マスターナンバーのバッジ */
.sg-badge {
  display: inline-block;
  margin-top: var(--sg-space-1, 4px);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: var(--sg-accent, #8a63d2);
  border-radius: 999px;
  padding: 2px 12px;
}

/* 意味の解説ブロック */
.sg-meaning {
  margin-top: var(--sg-space-3, 12px);
  padding-top: var(--sg-space-3, 12px);
  border-top: 1px solid var(--sg-border, #e5e7eb);
  text-align: left;
}
.sg-meaning__title {
  font-weight: 700;
  margin: 0 0 4px;
}
.sg-meaning__keywords {
  color: var(--sg-accent, #8a63d2);
  font-weight: 600;
  margin: 0 0 8px;
}
.sg-meaning__text {
  line-height: 1.85;
  margin: 0;
}

/* 免責の注記 */
.sg-disclaimer {
  margin-top: var(--sg-space-3, 12px);
}

/* 早見表 */
.sg-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px 16px;
}
.sg-num-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
}
.sg-num-row__key {
  flex: 0 0 1.8em;
  font-weight: 700;
  text-align: center;
}
.sg-num-row__key.is-master {
  color: var(--sg-accent, #8a63d2);
}
.sg-num-row__val {
  flex: 1 1 auto;
  color: var(--sg-muted, #555);
  font-size: 0.92rem;
}
