/* ============================================================
   Qbar — hero title line-break fix (PC only)
   トップ .hero__title のみに効く上書き。共通の .h1 は変更しない。
   1024px 以下は既存表示のまま。
   ============================================================ */
@media (min-width: 1025px) {
  .hero__title {
    font-size: clamp(2rem, 3.2vw, 2.9rem);
  }
  .hero__title span {
    white-space: nowrap;
  }
}