

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; 
max-width: 800px; 
    height:auto;
}
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 800px) {
.pc { display: none !important; }
.sp { display: block !important;
max-width: 600px; 
    height:auto;
}

.center{
  text-align: center;

}
