/**
 * サイト全体の最小共通レイヤー。
 * ページ固有の見た目は assets/css/pages/*.css に残す（静的HTMLとの差分抑制）。
 */

/* tel: は 1024px 未満のみタップ可能（Tailwind lg と一致） */
@media (min-width: 1024px) {
    a.tel-mobile-only {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
        color: inherit;
    }
}
