@charset "utf-8";

/*-------------------------------------------------------------------
	#gallery
-------------------------------------------------------------------*/
.no_gallery {
  margin-bottom: 30px;
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 5px;
}
#gallery dl {
  width: calc(100% / 3);
  padding: 0 15px 22px;
  box-sizing: border-box;
}
#gallery dl dt {
  margin-top: 5px;
  font-weight: bold;
}
#gallery dl dd.image a {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid #c6d2cc;
}
#gallery dl dd.image a::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 100%;
}
#gallery dl dd.image a img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}
#gallery dl dd.comment {
  font-size: 0.85em;
}

@media screen and (max-width: 480px) {
  #gallery {
    margin: 0 -5px 5px;
  }
  #gallery dl {
    padding: 0 5px 22px;
  }
  #gallery dl dt {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
