/*
(주)파이브센스_FIVESENSES.Corp.
파이브프로_FIVEPro_웹솔루션.
본 라이브러리(소스코드 및 디자인 포함)는 (주)파이브센스의 자산이며, 저작권법 및 부정경쟁방지법에 의해 보호됩니다.
무단 사용, 외부 유출, 복제, 배포, 변형을 금지합니다.
위반 시 민·형사상 법적 책임 및 손해배상 청구 대상이 됩니다.
작성일: 2025-03-18 | 저작권자: (주)파이브센스(520-86-01244) | All Rights Reserved.
*/

/* 스와이프 이미지 */
.sec01 .img_container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.sec01 .img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec01 .swiper-slide .img_container img {
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: opacity 1s ease;
    transition-delay: 0s;
}
.sec01 .swiper-slide.swiper-slide-active .img_container.has-video img {
    opacity: 0;
    transition: opacity 1s ease;
    transition-delay: 2s; /* 오직 on일 때만 delay */
}

/* 스와이프 동영상 */
.sec01 .iframe_container {
    height: 100%;
    overflow: hidden;
}

.sec01 .iframe_container .iframe_container_inner {
    width: calc(100% + 1px);
    height: 100%;
    padding-bottom: 56.25%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec01 .iframe_container iframe {
    position: absolute;
    left: 0;
    top: -60px;
    width: 100%;
    height: calc(100% + 120px);
    object-fit: cover;
}

/* 스와이프 정보 */
.sec01 .swiper_info_container {
    width: 100%;
    max-width: 1510px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0 15px;
}

/* 스와이프 타이틀 */
.sec01 .swiper_title {
    margin-bottom: 35px;
}

.sec01 .swiper_title h2 {
    font-size: 75px;
    font-weight: bold;
    font-family: 'Pretendard';
    line-height: 1.2;
    color: #fff;
    display: inline-block;
    width: auto;
}

/* 스와이프 서브타이틀 */
.sec01 .swiper_subtitle {
    margin-bottom: 55px;
}

.sec01 .swiper_subtitle h3 {
    font-size: 25px;
    font-weight: 600;
    font-family: 'Pretendard';
    line-height: 1.2;
    color: #fff;
    display: inline-block;
    width: auto;
}

/* 스와이프 더보기 */
.sec01 .swiper_more {
    display: inline-block;
    margin-bottom: 0px;
}

.sec01 .swiper_more a {
    font-size: 19px;
    font-weight: 500;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px 40px;
    border-radius: 28px;
    background: #fff;
}

.sec01 .swiper_more a:hover {
    background: #fccf00;
}

.sec01 .swiper_more span {
    margin-left: 10px;
    transform: translateY(-2px);
}

.sec01 .swiper_more span img {
    width: 9px;
}

@media (max-width:991px) {
    /* 스와이프 정보 */
    .sec01 .swiper_info_container {
        top: 100px;
        left: 0;
        transform: translate(0, 0);
        padding: 0 30px;
    }

    /* 스와이프 동영상 */
    .sec01 .iframe_container .iframe_container_inner {
        width: 320%;
    }

    /* 스와이프 타이틀 */
    .sec01 .swiper_title {
        margin-bottom: 30px;
    }

    .sec01 .swiper_title h2 {
        font-size: 35px;
    }

    /* 스와이프 서브타이틀 */
    .sec01 .swiper_subtitle {
        margin-bottom: 31px;
    }

    .sec01 .swiper_subtitle h3 {
        font-size: 17px;
    }

    /* 스와이프 더보기 */
    .sec01 .swiper_more a {
        font-size: 14px;
        padding: 15px 30px 13px 30px;
    }

    .sec01 .swiper_more span {
        margin-left: 15px;
    }

    .sec01 .swiper_more span img {
        width: 6px;
    }
}