@charset "utf-8";
/* CSS Document */

html {
 height: 100%;
}
body {
 height:          100%;
 margin:          0;
	padding:         0;
 background-color:#000;
}





@media screen and (min-width: 350px) { /*　画面サイズ 350pxから適用　*/
.contents_body {
 max-width:       767px; /* 最大幅 */
 min-width:       350px; /* 最小幅 */
 margin-left:     auto;
 margin-right:    auto;
 background-color:#000;
 overflow:        hidden;
}
}
@media screen and (min-width: 768px) {/*　画面サイズ 500pxから適用　*/
.contents_body {
 max-width:       1080px; /* 最大幅 */
 min-width:       768px; /* 最小幅 */
 margin-left:     auto;
 margin-right:    auto;
 background-color:#000;
 overflow:        hidden;
}
}
