@charset "utf-8";
/* CSS Document */
/*========= レイアウトのためのCSS ===============*/

#wrapper{
  width: 100%;
  height: 100vh;
	
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/*========= waveを描画するエリア設定 ===============*/

canvas{
    position: fixed;
    bottom: 0;
  left:0;
    width: 100%;
	z-index: -5;
	 
}


