@charset "utf-8";
/* CSS Document */
/* 画面幅が769px以上（PC）の場合 */
@media screen and (min-width: 769px) {
	.smsdm_content {
		width:1000px;
		margin: 0 auto;
		margin-bottom:20px;
	}
	.pc-img {
		width:1000px;		  
		display: block; /* PC用を表示 */
	}
	.sp-img {
		width:1000px;		  
		display: none; /* スマホ用を隠す */
	}
}
/* 画面幅が768px以下（スマホ）の場合 */
@media screen and (max-width: 768px) {
	.smsdm_content {
		width:100%;
		margin: 0 auto;
		margin-bottom:20px;
	.pc-img {
		width:100%;		  
	    display: none; /* PC用を隠す */
	}
	.sp-img {
		width:100%;		  
	    display: block; /* スマホ用を表示 */
	}
}




