@charset "utf-8";

.link-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.link-gallery img {
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.link-gallery img:hover {
  transform: scale(1.05);
}

.back-button {
  display: block;
  padding: 10px 20px;
  background-color: #000000; /* 青系。好きに変えてOK */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 999px; /* 完全な角丸（pill型） */
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  width: fit-content;
  margin: 50px auto ; /* 上だけ余白、左右自動＝中央 */
}


.back-button:hover {
  background-color: #ffffff; /* ホバー時に少し濃く */
  color: #000000;

}
