@charset "UTF-8";
/* ↓ amethyst Color設定 */
/* ↑ amethyst Color設定 */
/* ↓ amethyst フォントサイズ設定 */
/*↑基本的なフォントサイズ*/
/*↑h4タグのフォントサイズ ($basic-font-sizeの1.5倍の大きさ)*/
/*↑h3タグのフォントサイズ ($h4-font-sizeの1.5倍の大きさ)*/
/*↑h2タグのフォントサイズ ($h3-font-sizeの1.5倍の大きさ)*/
/*↑h1タグのフォントサイズ ($h2-font-sizeの1.5倍の大きさ)*/
/*↑サブタイトル(h2直下の読み)のフォントサイズ*/
/* ↑ amethyst フォントサイズ設定 */
#gallery-page .gallery-contents {
  max-width: unset;
  padding: 0;
}
#gallery-page iframe {
  padding: 50px 0;
  height: 70vh;
}

.gallery {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5490196078) !important;
}
.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.gallery .gallery-contents {
  display: grid;
  gap: 10px;
  padding: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .gallery .gallery-contents {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery .gallery-contents {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery .gallery-contents {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery .gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}
.gallery .gallery-item:hover {
  transform: scale(1.05);
}
.gallery .gallery-item a {
  display: block;
}
.gallery .gallery-item img {
  width: 100%;
  height: 200px;
  display: block;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.lightboxOverlay {
  background: rgba(0, 0, 0, 0.8) !important;
}

.lightbox {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}/*# sourceMappingURL=gallery.css.map */