

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
img{border:none;max-width:100%;height:auto;}
.pc { display: block !important; }
.smph { display: none !important; }

body.resp    {  
    background-image: url(../images/woodpanel-bg1200.jpg);  
    background-repeat: repeat ;   
}

 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
img{border:none;max-width:100%;height:auto;}
    .pc { display: none !important; }
    .smph { display: block !important; }
	
	body.resp    {  
    background-image: url(../images/woodpanel-bg768.jpg);  
    background-repeat: repeat ;   
}

}