/* =====================================================================
   style.css — 漢数字・アラビア数字変換 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる。
   ===================================================================== */

.kn-controls {
  display: flex;
  flex-direction: column;
  gap: var(--sg-space-4);
  margin-bottom: var(--sg-space-4);
}

.kn-input {
  font-size: 1.15rem;
}

/* 結果は折り返し可・大きめ表示（長い漢数字に対応） */
.sg-result__value {
  font-variant-numeric: tabular-nums;
  word-break: break-all;
  line-height: 1.4;
}

.sg-error {
  margin-top: var(--sg-space-3);
  padding: var(--sg-space-3);
  font-size: 0.9rem;
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.25);
  border-radius: var(--sg-radius);
}
.sg-dark .sg-error,
:root.sg-dark .sg-error {
  color: #ff9c8f;
}

/* 金額の早見表 */
.kn-table-wrap {
  overflow-x: auto;
  margin-top: var(--sg-space-3);
}
.kn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.kn-table th,
.kn-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--sg-border, rgba(0, 0, 0, 0.1));
  white-space: nowrap;
}
.kn-table th {
  font-weight: 600;
  color: var(--sg-muted, #555);
}
.kn-table td:first-child {
  font-variant-numeric: tabular-nums;
}
