@font-face {
    font-family: 'ONE-Mobile-POP';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/ONE-Mobile-POP.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);

.notosanskr * { 
 font-family: 'Noto Sans KR', sans-serif;
}
.special_wrap {
    height: 100%;
}
.special_wrap .content {
    position: relative;
}
.special_wrap .content .sub_info {
    position: absolute;
    bottom: 8%;
    right: 2%;
    height: 100%;
    width: 590px;
    transform: skewX(7deg) translate(60px, 0);
    background-color: #fff;
    overflow: hidden;
    z-index: 30;
}
.special_wrap .content .sub_info::after {
    content: "";
    display: block;
    position: absolute;
    left: 44%;
    bottom: 0;
    transform: skewX(-7deg) translate(-50%, 0);
    width: 615px;
    height: 300px;
    max-height: 20%;
}
.special_wrap .content .sub_info.special01::after {
    background: url("/images/special/sp_bg01_01.png") no-repeat center;
}
.special_wrap .content .sub_info.special02::after {
    background: url("/images/special/sp_bg02_01.png") no-repeat center;
}
.special_wrap .content .sub_info.special03::after {
    background: url("/images/special/sp_bg03_01.png") no-repeat center;
}
.special_wrap .content .sub_info.special04::after {
    background: url("/images/special/sp_bg04_01.png") no-repeat center;
}
.special_wrap .content .sub_info.special05::after {
    background: url("/images/special/sp_bg05_01.png") no-repeat center;
}
.special_wrap .content .sub_info.special06::after {
    background: url("/images/special/sp_bg06_01.png") no-repeat center;
}
.special_wrap .content .sub_info .text {
    transform: skewX(-7deg);
    margin-top: 343px
}


/* 메인 정보 */
.special_wrap .content .main_info {
    width: 80%;
    padding: 0;
    overflow: unset;
}

.special_wrap .content .main_info img {
    height: 100%;
    object-fit: cover;
}

/* swiper 버튼 */
.special_wrap .content .main_info .special_swiper {
    height: 100%;
}
.special_wrap .content .special_prev,
.special_wrap .content .special_next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 10;
    cursor: pointer;
}
.special_wrap .content .special_prev {
    left: 30px;
}
.special_wrap .content .special_next {
    right: 560px;
}
.special_wrap .content .special_prev i:nth-child(2),
.special_wrap .content .special_next i:nth-child(2) {
    display: none;
}
.special_wrap .content .special_pagination {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 0);
    width: max-content;
    z-index: 50;
}
.special_wrap .content .special_pagination .swiper-pagination-bullet {
    background: transparent;
    border: 2px solid #fff;
    opacity: 1;
}
.special_wrap .content .special_pagination .swiper-pagination-bullet-active {
    background: #fff;
}
/* 모바일 텍스트 */
.special_wrap .mo_content {
    position: relative;
    display: none;
    width: 100%;
    height: 210px;
    overflow-y: scroll;
    padding: 20px 20px 40px 20px;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
}
.special_wrap .mo_content > span {
    position: relative;
    display: block;
    width: 100%;
    font-family: 'GowunDodum-Regular';
    font-size: 1.2em;
}
.special_wrap .mo_content > span::before,
.special_wrap .mo_content > span::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 90px;
    height: 10px;
}
.special_wrap .mo_content > span::before {
    left: 0;
    background: url("/images/common/bg_left01.png") no-repeat center;
    background-size: cover;
}
.special_wrap .mo_content > span::after {
    right: 0;
    background: url("/images/common/bg_right01.png") no-repeat center;
    background-size: cover;
}

.special_wrap .mo_content .title {
    margin-top: 23px;
    font-size: 1.5em;
}
.special_wrap .mo_content > p {
    margin-top: 15px;
    font-size: 1.3em;
    line-height: 24px;
}

/* text scroll 애니메이션 */
.mo_content > .scroll {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    z-index: 10;
    width: max-content;
    text-align: center;
}
.scroll > i {
    display: block;
    line-height: 0.9em;
}
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 500;
}
.scroll p {
    font-size: 0.8em;
    padding-top: 12%;
    font-weight: 500;
}
.unu, .doi, .trei
{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
  
}
.unu {
    color: #a5a5a5;
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    -webkit-animation-direction: alternate;
    
    animation-direction: alternate;
    animation-delay: alternate;
}

.doi {
    color: #5f5f5f;
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;
  
    animation-delay: .2s;
    animation-direction: alternate;
}

.trei {
    color: #000;
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -webkit-animation-direction: alternate;
  
    animation-delay: .3s;
    animation-direction: alternate;
}
@-webkit-keyframes mouse-scroll {

    0%   { opacity: 0;}
    100% { opacity: 1;}
  }
  @-moz-keyframes mouse-scroll {
    0%   { opacity: 0; }
    100% { opacity: 1; }
  }
  @-o-keyframes mouse-scroll {
    0%   { opacity: 0; }
    100% { opacity: 1; }
  }
  @keyframes mouse-scroll {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

/* 모바일 */
@media (max-width: 768px) {
    .special_wrap  {
        display: flex;
        flex-flow: column;
    }
    .special_wrap .content {
        position: relative;
        display: block;
        flex: 1;
    }
    .special_wrap .content .sub_info {
        display: block;
        position: absolute;
        top: auto;
        bottom: 17px;
        left: 22px;
        right: auto;
        width: max-content;
        height: max-content;
        transform: translate(0, 0);
        background-color: transparent;
        
    }
    .special_wrap .content .sub_info::after {
        display: none;
    }
    .special_wrap .content .sub_info .text {
        transform: none;
        width: max-content;
        margin-top: 0;
        padding: 0;
        color: #fff;
        box-sizing: border-box;
    }
    .special_wrap .content .sub_info .text .sub_title {
        display: none;
    }
    .special_wrap .content .sub_info .text .title {
        margin: 0;
        writing-mode: unset;
        font-size: 2em;
        font-weight: 400;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    }
    .special_wrap .content .sub_info .text > p {
        display: none;
        margin-top: 10px;
    }

    /* 메인 정보 */
    .special_wrap .content .main_info {
        width: 100%;
    }
    .special_wrap .content .main_info .special_swiper {
        height: 100%;
    }
    /* swiper 버튼 */
    .special_wrap .content .special_prev,
    .special_wrap .content .special_next {
        width: 15px;
        top: auto;
        padding: 10px;
        transform: translate(0, 0);
        background-color: #74685c;
    }
    .special_wrap .content .special_prev {
        left: auto;
        right: 37px;
        bottom: 0;
    }
    .special_wrap .content .special_next {
        right: 0;
        bottom: 0;
    }
    .special_wrap .content .special_prev i:nth-child(1),
    .special_wrap .content .special_next i:nth-child(1) {
        display: none;
    }
    .special_wrap .content .special_prev i:nth-child(2),
    .special_wrap .content .special_next i:nth-child(2) {
        display: block;
    }


    .special_wrap .content .special_pagination {
        position: absolute;
        left: auto;
        right: 82px;
        bottom: 10px;
        transform: none;
        width: max-content;
        font-family: 'GowunDodum-Regular';
        font-size: 1.3em;
        color: #fff;
        z-index: 50;
        text-shadow: 1px 1px 2px rgb(0,0,0,0.5);
    }
    .special_wrap .content .special_pagination .swiper-pagination-bullet {
        background: transparent;
        border: 2px solid #fff;
        opacity: 1;
    }
    .special_wrap .content .special_pagination .swiper-pagination-bullet-active {
        background: #fff;
    }

    /* 모바일상태 swiper */
    .special_wrap .content .special_pagination .swiper-pagination-current {
        font-size: 1.4em;
    }




    /* 모바일 텍스트 */
    .special_wrap .mo_content {
        display: block;
    }
}