@charset "UTF-8";

/******************************
common
******************************/
.pagesec-biz1{
  padding-bottom: 0;
}

.gallery{
  gap: 1rem;
  margin-top: 2rem;
}
.gallery li{
  width: calc(100% / 4 - 1rem);
}
.gallery li a{
  display: block;
  position: relative;
}
.gallery li a::before,
.gallery li a::after{
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
}
.gallery li a::before{
  background: #000;
}
.gallery li a::after{
  content: "\f00e";
  font: var(--fa-font-solid);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
.gallery li a img{
  aspect-ratio: 3/2;
  object-fit: cover;
  height: auto;
  width: 100%;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .gallery li{
    width: calc(100% / 3 - 1rem);
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .gallery li{
    width: calc(100% / 2 - 1rem);
  }
}