html,body{
	height: 100%;/*高さを100%にして描画エリアをとる*/
}

#particles-js{ 
    position: relative;
	z-index:-1;;/*描画を一番下に*/
	width: 100%;
	height: 100%;
	background-image: url(../img/top.jpg);
	background-color:#e9c6c8;/*背景色*/
}

#wrapper{
	position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
	z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
	width:100%;
	height: 100%;
}

@media (max-width:750px){

#particles-js{
	display: none;
} 

}