.page-title {
  font-size: 26px;
  font-weight: 700;
  margin: 20px 0;
}



.thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  background: #f1f1f1;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.visual-item:hover img {
  transform: scale(1.2);
}

.caption {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}




/* ÆÄÆ®³Ê ·Î°í ±âº» */
.visual-list{
    display:flex;
    flex-wrap:wrap;
}

/* ±âº» (PC) */
.visual-item{
    width:20%;
    padding:20px;
    box-sizing:border-box;
}

/* ÅÂºí¸´ */
@media (max-width:1024px){
    .visual-item{
        width:33.333%;
    }
}

/* ¸ð¹ÙÀÏ */
@media (max-width:768px){
    .visual-item{
        width:50%;
    }
}

