
	.gallery {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 5px;
	  justify-content: center; /* 中央揃え（お好みで） */
	}

	.thumb {
	  height: 300px; /* 高さ固定 */
	  overflow: hidden;
	  border-radius: 6px;
	}

	.thumb img {
	  height: 100%;
	  width: auto; /* 横幅は画像に合わせる */
	  object-fit: cover;
	  display: block;
	}

	@media (max-width: 768px) {
	  .thumb {
	    width: 48%;
	    height: 160px;
	  }
	}

