

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.P-C {
display: absolute !important;  
left: 0;
  right: 0;
  margin:0 auto;
width:好きな値;
height:好きな値;
display：overflow;
 }
 
.S-P {
display: none !important;

 }


/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

@media only screen and (max-width: 950px) {
.P-C { 
display: none !important; 

}

.S-P {
display: block !important; 

}

}

