/***************

▼gallery

***************/
section.gallery{
    z-index: 0;
    background-color: #edf4fe;
}
section.gallery .padding-inner{
  padding-top: 0;
}
section.gallery .wrap_gallery{
  display: flex;
  gap:40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
section.gallery .wrap_gallery .box{
  display: block;
  width: calc(50% - 40px);
  position: relative;
background-color: rgba(255, 255, 255, 0.6);
padding: 20px;
}
/*
section.gallery .wrap_gallery .box a{
    width: 100%;
    height: 100%;
    position: absolute;
}
*/
section.gallery .wrap_gallery .box .wrap_img {
    width: 100%;
    height: 100%; 
    overflow: hidden; 
    min-height: 100px;
  aspect-ratio: 3 / 2;
    margin-bottom: 15px;
}

section.gallery .wrap_gallery .box .wrap_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}
section.gallery .wrap_gallery .discription{
    text-align: right;
    font-size: 1.3rem;
}
section.gallery .wrap_gallery .discription span{
    color: #6c76b8;
    margin-right: 5px;
    font-weight: bold;
}
section.gallery .wrap_gallery .discription a{
	display:inline-block;
	color: #7493E8;
	border-bottom: dotted 1px #7493E8
}
@media screen and (max-width: 768px){
    
section.gallery .wrap_gallery .box{
  width: 100%;
}

}

.box {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease-out; /* ←ここ重要 */
}

.box.show {
  opacity: 1;
  transform: translateY(0);
}