/* デバイスごとに要素を表示・非常時 */
.pc { display: block !important; }
.sp { display: none !important; }

@media only screen and (max-width: 768px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}