@charset 'utf-8';

/* gallery */
.page__section__Gallery {
  margin-top: 3rem;
}

.page__section__galleryCaution {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

#lightgallery-default {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.5rem;
}

#lightgallery-default a {
  display: inline-flex;
  width: 24%;
	margin: 0;
	padding: 0;
  background: #000;
  overflow: hidden;
}

#lightgallery-default a:nth-of-type(n + 5) {
  margin-top: 1rem;
}

#lightgallery-default img {
  width: 100%;
  transition: all .2s ease-in;
}

#lightgallery-default a img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}


.lb-outerContainer { position: relative; }

.lb-outerContainer::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:9999;
  background:transparent;
}

@media screen and (max-width: 900px) {
  #lightgallery-default {
    justify-content: left;
    gap: 2.75%;
  }

  #lightgallery-default a {
    width: calc((100% - 5.5%) / 3);
  }

  #lightgallery-default a:nth-of-type(n + 4) {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 580px) {
  #lightgallery-default {
    gap: 2%;
  }

  .page__section__galleryCaution {
    font-size: 3.5cqw;
    font-weight: 700;
    line-height: 1.5;
  }

  #lightgallery-default a {
    width: 48%;
  }

  #lightgallery-default a:nth-of-type(n + 3) {
    margin-top: 0.5rem;
  }
}