/* pc */
@media screen and (min-width: 1280px){
  .tablet-only {
    display: none;
  }
}

/* ipad */
@media screen and (max-width: 1279.98px) {
  .desktop-show {
    display: none;
  }
}

/* mobile */
@media screen and (max-width: 767.98px) {
  .tablet-only {
    display: none;
  }
}