/* 3) transition 클래스 정의 (fade) */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s;
}
.fade-enter, .fade-leave-to {
    /* 시작·끝 상태 */
    opacity: 0;
}
.text-fade-container {
    min-height: 50px; /* 텍스트 한 줄 분량 */
    /* 또는 height: 50px; 으로 고정 */
}
.section.mouArea .inner .swiper-slide {
    display: inline-block;
    width: 150px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
}
.section.mouArea .inner .swiper-slide img {
    display: inline-block;
    object-fit: contain;
    padding: 5px 5%;
    width: 90%;
    height: 100%;
}
.section.mouArea .inner .swiper-slide span {
    display: none;
}
