
/* PCのときのみ表示 */
@media screen and (max-width:768px) {
  .pc-only {
    display: none !important;
  }
}

/* SPのときのみ表示 */
@media screen and (min-width:769px) {
  .sp-only {
    display: none !important;
  }
}