@charset "UTF-8";
/* =========================
   Gallery
========================= */

.gallery_box1{
  width:100%;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:1px;
  background:#BDAC81;
	border-top: 1px #BDAC81 solid;
}

.g_item{
  width:calc(50% - 0.5px);
}

.g_item2{
  display:block;
  overflow:hidden;
}

.g_item2 img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  transition:transform .4s ease;
}

.g_item2:hover img{
  transform:scale(1.12);
}

/* commonのhoverを無効化 */
.gallery_box1 a img:hover{
  opacity:1 !important;
}

/* =========================
   PC（960px以上）
========================= */

@media screen and (min-width:960px){

  .g_item{
    width:calc(33.333% - 0.7px);
  }

}