body {
  font-family: "Kiwi Maru", sans-serif;
  margin: 0;
  background-color: #eaf9ff;
  text-align: center;
}

.gallery {
  padding: 10px;
  margin-top: 20px;
}
.back {
  text-align: right;
  margin-bottom: 30px;
  position: fixed;
  right: 0;
  top: 0;
  mix-blend-mode: multiply;
}
.back img{
  width: 100px;
  margin: 0 10px 0;

}
.gallery h2 {
  font-size: 1.5em;
  color: #0077aa;
  margin-bottom: 25px;
  margin-top: 50px;
}

/* グリッド配置 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

/* 画像の縦横比を統一（正方形） */
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1; /* ←これで縦横比を固定 */
  object-fit: cover;   /* ←中央でトリミング */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* タブレット以上では4列 */
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

