/*
 * 可読性フロア（全ページ共通）
 * tailwind.css より後に読み込むこと（後勝ちで極小フォントクラスを引き上げる）。
 * 方針: 8-10px → 11px / 11px → 12px / text-xs(12px) → 13px。
 * インラインstyleや各ページ固有CSSの px 指定は各ファイル側で是正済み。
 */
.text-\[8px\],
.text-\[9px\],
.text-\[10px\] {
  font-size: 11px;
  line-height: 1.35;
}

.text-\[11px\] {
  font-size: 12px;
  line-height: 1.4;
}

.text-xs {
  font-size: 0.8125rem; /* 13px */
  line-height: 1.25rem;
}
