
/* 電話リンク専用CSS */

/* PCでは電話リンクを無効にして、見た目は普通の文字 */
a[href^="tel:"] {
  color: #333333 !important;
  text-decoration: none !important;
  pointer-events: none;
}

/* スマホ・タブレットでは有効化してリンクっぽい見た目に */
@media (hover: none) and (pointer: coarse) and (max-device-width: 844px) {
  a[href^="tel:"] {
    color: #0000ff !important;
    text-decoration: underline !important;
    pointer-events: auto;
  }
}
