PCとMobileで表示させるコンテンツを変える方法
/* PC */
.pc { display:inline!important; }
.mb { display:none!important; }
/* タブレット・スマホ */
@media screen and (max-width: 768px) {
.pc { display:none!important; }
.mb { display:inline!important; }
}
詳しくは下記のサイトが便利です!

