@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}

.section-02{
    width: 500px;
    height: 500px; /* 높이 안줄어듦 */
}
.section-02 .swiper-slide{ /* 이미지 부모영역 */
    height: 500px;
}
.section-02 .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-02 .swiper-button-next,
.swiper-button-prev{
    color: #fff;
}