/* 共通CSS */
@media screen and (min-width: 981px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 980px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
