@charset "utf-8";

/* 검은 배경일 때 네비 */





/*  */
#wrap{
    background: #000;
    position: relative;
    overflow: hidden;
}
.kp_top{
    margin-top: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*  */
.kp_text, .kp_text_2{
    width: 40%;
    color: #fff;
}
.kp_text_2{
    display: none;
}
.kp_text h2, .kp_text_2 h2{
    font-size: 24px;
    font-weight: 400;
}
.kp_text h3, .kp_text_2 h3{
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
}
.kp_text h3 span, .kp_text_2 h3 span{
    color: #ccc;
    font-size: 14px;
    font-weight: 300;
}
.kp_text p, .kp_text_2 p {
    font-size: 18px;
    font-weight: 300;
}


.kp_text > span, .kp_text_2 > span{
    font-size: 18px;
    font-weight: 200;
}
.kp_text span a, .kp_text_2 span a{
    color: #fff;
    margin-top: 30px;
    display: inline-block
}


#slide_photo{
    position: relative;
    width: 60%;
}
.big_img{
    max-width: 800px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    margin-left: 21%;
}
.big_img ul{
    padding-top: 75%;
}
.big_img ul li{
    position: absolute;
    width: 100%;
    left: 0%;
    top: 100%;
}
.big_img ul li p{
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    font-weight: 300;
}
.big_img ul li:first-child{
    top: 0;
}
.big_img ul li img{
    width: 100%;
}




/* 썸네일 */
.kp_bottom{
    margin-bottom: 50px;
}
.kp_bottom > p{
    color: #fff;
    font-size: 18px;
    margin: 10px 0;
    font-weight: 300;
}

#thumbnail{
    margin-top: 10px;
}
#thumbnail ul{
    display: flex;
}
#thumbnail ul li{
    width: 15%;
    margin: 10px 20px 0 0;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
#thumbnail ul li img{
    width: 100%;
    filter: saturate(0);
    transition: .3s;
}

.on{
    filter: saturate(1);
}

.kp_text{
    animation: kp-text .6s ease-in-out 1 both;
}
#slide_photo{
    animation: slide-photo .8s ease-in-out 1 both;
}
.kp_bottom{
    animation: kp-bottom .8s  ease-in-out 1 both;
}

/* animation */
@keyframes kp-text {
    0%{
        opacity: 0;
        transform: translateX(-20%);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-photo{
    0%{
        opacity: 0;
        transform: translatex(40%);
    }
    100%{
        opacity: 1;
        transform: translatex(0);
    }
}
@keyframes kp-bottom{
    0%{
        opacity: 0;
        transform: translateY(50%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}



/* 반응형 */
@media screen and (min-width:971px) {


}/* PC */





@media screen and (max-width:970px) {


    #kane_photo{
        display: flex;
        flex-direction: column;
    }
    .kp_top{
        flex-direction: column;
        margin-top: 120px;
    }
    .kp_text{
        display: none;
        
    }
    .kp_text_2{
        display: block;
        width: auto;
        text-align: center;
        margin: 70px 0 20px;
        order: 1;
    }
    #slide_photo{
        width: 100%;
    }
    .big_img{
        margin: 0 auto;
        padding-bottom: 35px;
    }
    .big_img ul li p{
        margin-top: 10px;
    }
    .kp_bottom{
        order: 1;
    }
    #thumbnail ul{
        display: flex;
        justify-content: space-between;
    }
    #thumbnail ul li{
        width: 100%;
        margin-right: 20px;
    }
    #thumbnail ul li:last-child{
        margin-right: 0;
    }
    .kp_bottom > p{
        display: none;
    }
    
}