@charset "UTF-8";
/* Single HTML: PC CSS (>=768) and SP CSS (<=767) style the same DOM.
   .pc-only / .sp-only is only for chrome that cannot share markup
   (SP tel button, icon nav, PC desktop header). Page content is written once. */

.sp-only {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
  .header_nav.sp-only {
    display: block !important;
  }
  #h_tel_btn.sp-only {
    display: block !important;
  }
}
