@charset "utf-8";

html, body {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.top-image {
  background-image: url("../images/main.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 5px;
  padding: 2rem 1rem;
  min-height: 500px;
  position: relative;
}

@media (max-width: 768px) {
  .top-image {
    background-position: center center;
    min-height: 300px;
    padding: 1.5rem 1rem;
  }
}

.text {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  text-align: center;
  color: rgb(32, 24, 1);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

.gallery-link img:hover {
  opacity: 0.75;
  transition: opacity 0.3s;
}