/* Responsive display utilities extracted from style.css */

/* PC表示のみ（768px以上） */
@media (width <= 767.98px) {
  .display-pc-only {
    display: none !important;
  }
}

/* モバイル表示のみ（768px未満） */
.display-mobile-only {
  display: none !important;
}

@media (width <= 767.98px) {
  .display-mobile-only {
    /* flex / grid / block など元のレイアウト指定を復元 */
    display: revert !important;
  }
}
