@charset "utf-8";
/* 기본설정 */
/* @import "default.css"; */
html, body { overflow-x: hidden;}
.special_slide{
    position: relative;
}
.special_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media(max-width:500px){
    .special_slide img{
        height: auto;
    }
}


/* spe-sec01 시작 */

.spe-sec01 {
    display: flex;
    padding-top: 0;
    gap: 7.8vw;
}

.spe-sec01 .image {
    width: 46%;
}

.spe-sec01 .text {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spe-sec01 .text .icon {
    display: block;
    width: 35px;
    margin: 20px 0 0 0;
}
.spe-sec01 .text .title {
    font-size: 32px;
    margin-bottom: 25px;
}
.spe-sec01 .text p {
    font-size: 15px;
}
.spe-sec01 .text .sub_title {
    display: inline-block;
    font-weight: 600;
}
.spe-sec01 .text .info01 {
    margin-top: 5px;
    line-height: 1.4;
    white-space: pre-line;
}

.spe-sec01 .text .info02 {
    margin: 30px 0 15px;
    padding: 0;
    border-top: 2px solid var(--main-gold);
    border-bottom: 2px solid var(--main-gold);
}
.spe-sec01 .text .info02 li {
    padding: 10px;
    border-bottom: 1px dashed var(--main-gold);
}
.spe-sec01 .text .info02 li:last-child {
    border-bottom: none;
}
.spe-sec01 .text .info02 li span {
    color: var(--main-gold);
    display: inline-block;
}
.spe-sec01 .text .info02 li .warning {
    position: relative;
    display: inline;
}
.spe-sec01 .text .info02 li .warning span {
    color: #181818;
}
.spe-sec01 .text .info02 li .warning span:first-child {
    position: relative;
    z-index: 2;
}
.spe-sec01 .text .info02 li .warning .track {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 5px;
    background-color: #cde6ff;
    z-index: 1;
}

.spe-sec01 .text .info03 {
    line-height: 1.7;
    white-space: pre-line;
}

.spe-sec01 .text .info03 span {
    color: var(--main-gold);
}

@media(max-width:1200px) {
    .spe-sec01 {
        flex-direction: column-reverse;
        gap: 70px;
    }
    .spe-sec01 .image, .spe-sec01 .text {
        width: 100%;
    }
    .spe-sec01 .text {
        padding: 100px 5vw 0;
    }
    
}

@media (max-width:768px) {
    .spe-sec01 .text .title {
        font-size: 22px;
    }
    .spe-sec01 .text p {
        font-size: 13px;
    }
}


/* spe-sec02 */
.spe-sec02 {
    background-color: #EBEAE7;
    padding: 80px 0;
}

.sec02-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec02-image-top {
    margin-bottom: 100px;
}

.sec02-image-top img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.4);
    transition: all 3s ease;
}
.sec02-image-top img.on {
    filter: brightness(1);
}
.sec02-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.sec02-text {
    width: 22vw;
    text-align: right;
}

.sec02-title {
    font-size: 4vw;
    margin: 0 0 20px 0;
}

.sec02-desc {
    font-size: 14px;
    color: #BCBCBC;
    line-height: 1.3;
    
}

.sec02-image-bottom {
    
}

.sec02-image-bottom img {
    width: 48.3333vw;
    max-width: 928px;
    height: auto;
    display: block;
}

.spelist-wrap {
    margin-top: 0 !important;
}
    
@media (max-width:1400px) {
    .sec02-text {
        width: 33vw;
    }
}

/* 768px 이하  */
@media (max-width: 768px) {
    .spelist-wrap {
        margin-top: 0 !important;
    }
    .spe-sec02 {
        padding: 60px 0;
    }
    
    .sec02-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .sec02-text {
        padding-left: 0;
        text-align: center;
        width: 100%;
    }
    
    .sec02-title {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .sec02-desc {
        font-size: 9px;
    }
    
    .sec02-image-top {
        margin-bottom: 40px;
    }
    .sec02-image-bottom img {
        width: 100%;
    }
}


@media (max-width:360px) {
    .sec02-title {
        font-size: 32px;
    }
}








/*메인 이외 탑슬라이드 */
/* 초기 상태 */
.topslide .swiper-slide:first-child .slide-caption h2,
.topslide .swiper-slide:first-child .slide-caption p,
.topslide .swiper-slide:first-child .slide-caption .view-more-button {
  opacity: 0;
  transform: translateY(45px);
}

/* 애니메이션 클래스 적용 시 */
.topslide .swiper-slide:first-child .slide-caption.animate h2 {
  transition: all 1s ease;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.topslide .swiper-slide:first-child .slide-caption.animate p {
  transition: all 1s ease;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
