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

*{ 
		cursor: url("pikku.png") , auto;
			}

body {
	background-image: url("yatai2.png");
    background-repeat: no-repeat;
	background-size: cover;
    

}


img {
			width: 120px;
			height: 120px;/*画像一つ一つの大きさを決める*/
			object-fit: cover; /*画像の枠の大きさに比率同じでめいいっぱい入れるコード*/
					         		}/**/

	
.gazou {
			display: grid;
			grid-template-columns: repeat(6, 1fr); /* 3列にする */
			justify-items: center;
			justify-content: space-evenly;
			grid-row-gap: 20px;/*上下の空白*/
			column-gap: 20px;/*左右の空白*/
}

.bokkusu{
	width: 50px;
  height: 50px;
  /* 水平・垂直方向の中央揃え */
  position: absolute;
  top: 19%;
  left: 31.5%;
  margin: -25px 0 0 -25px; /* 完全に中央に配置するため、上・左の margin を負の数に設定 */	
}

	

	

	
	