/* Sass Document */
.gallery .category_list {
  margin-top: 60px;
}
@media screen and (max-width: 767.98px) {
  .gallery .category_list {
    margin-top: 30px;
  }
}

.gallery_ttl {
  font-size: 3.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .gallery_ttl {
    font-size: 2rem;
  }
}

.gallery_list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 15px;
}
@media screen and (max-width: 767.98px) {
  .gallery_list {
    margin-top: 30px;
    justify-content: space-between;
    gap: 15px 0;
  }
}

@media screen and (max-width: 767.98px) {
  .gallery_item {
    width: 48%;
  }
}
.gallery_item figure {
  display: block;
  margin: 0;
  width: 263px;
  height: 201px;
}
@media screen and (max-width: 767.98px) {
  .gallery_item figure {
    width: 100%;
    height: auto;
    aspect-ratio: 263/201;
  }
}
.gallery_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery_item a {
  position: relative;
}
.gallery_item a.is-hover .detail {
  opacity: 1;
}
.gallery_item a .detail {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  color: #032730;
  background-color: rgba(18, 71, 101, 0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: 0.3s opacity;
}
.gallery_item a .detail * {
  font-size: 1.6rem;
  line-height: 1.4;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}
/*# sourceMappingURL=gallery.css.map */