@charset "UTF-8";
/* CSS Document */
.gallery_container {}
.gallery_container .gallery_wrapper {
  margin-bottom: 60px;
}
.gallery_container .gallery_wrapper:last-child {
  margin-bottom: 0 !important;
}
.gallery_container .gallery_wrapper .photo_flex {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.gallery_container .gallery_wrapper .photo_flex .item {
  width: calc(100% / 3 - 8px);
  margin: 4px;
  margin-bottom: 20px;
}
.gallery_container .gallery_wrapper .photo_flex .item a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 0%;
  margin-bottom: 5px;
  background-color: #f4f4f4;
}
.gallery_container .gallery_wrapper .photo_flex .item a::before {
  content: '';
  display: block;
  padding-top: 70%;
}
.gallery_container .gallery_wrapper .photo_flex .item a img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.8s ease;
}
.gallery_container .gallery_wrapper .photo_flex .item a:hover img {
  transform: scale(1.1);
}
.gallery_container .gallery_wrapper .photo_flex .item p {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.gallery_container .gallery_wrapper .photo_flex .item p:last-child {
  margin-bottom: 0 !important;
}
.gallery_container .gallery_wrapper .photo_flex .item p span.sub {
  display: inline-block;
  background-color: #000;
  color: #fff;
  width: 90px;
  text-align: center;
  margin-right: 10px;
}
.item_title {
  font-size: clamp(0.85rem, 0.76rem + 0.32vw, 1rem);
  line-height: 1.3;
}
@media (max-width: 960px) {
  .gallery_container .gallery_wrapper .photo_flex .item {
    width: calc(100% / 2 - 8px);
    margin-bottom: 10px;
  }
}
@media (max-width: 750px) {
  .gallery_container .gallery_wrapper .photo_flex .item p {
    font-size: 0.8rem;
  }
  .gallery_container .gallery_wrapper .photo_flex .item p span.sub {
    display: block;
    margin-bottom: 3px;
  }
}