@charset "UTF-8";
body {
  background-image: none;
  background-color: #fff;
  color: var(--main02);
}

h3 {
  text-align: center;
  font-size: 35px;
  display: flex;
  flex-direction: column;
  padding: 5px 0px 15px;
}
h3 span {
  font-size: 14px;
  position: relative;
  top: -5px;
}

/*------------------------------------------------------------------------------*/
/* ↓ gallery
/*------------------------------------------------------------------------------*/
#gallery {
  padding: 30px 0;
}
#gallery iframe {
  width: 100%;
  padding: 5px;
}

.gallery-contents > p {
  text-align: center;
  font-size: 20px;
  padding-bottom: 10px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  padding: 0px 5px;
}

.gallery-container img {
  width: 100%;
  height: 165px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .gallery-container {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 768px) {
  #gallery iframe {
    height: 350px;
  }
  .gallery-contents > p {
    font-size: 3vw;
  }
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  #gallery iframe {
    height: 85vw;
  }
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*------------------------------------------------------------------------------*/
/* ↑ gallery
/*------------------------------------------------------------------------------*//*# sourceMappingURL=gallery.css.map */