@media only screen and (max-width: 768px) {
   .mobile-hidden {
      display: none !important;
   }
}

@media only screen and (min-width: 768px) {
   .pc-hidden {
      display: none !important;
   }
}