@charset "utf-8";
.container {}
.window-mask {
    opacity: 0  ;
}
/* cursor */
.cursor {
    width: 10vh;
    height: 3vh;
    font-size: 2vh;
    font-weight: 600;
    color: #2B3036;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    transform: translate(-50%,-50%);
    /* mix-blend-mode: difference; */
    pointer-events: none;
    transition: all 0.3s cubic-bezier(.215,.61,.355,1);
}
.cursor-txt {
    transition: opacity .3s;
    animation: cursor 2000ms linear infinite;
    opacity: 1;
    letter-spacing: -1px;
}
.cursor::before {
    content: "";
    width: 6vh;
    height: 6vh;
    background: url('../img/cursorimg.png') no-repeat;
    background-size: cover;
    position: absolute;
    opacity: 0.2;
}
@keyframes cursor {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
.slides {
    width: 1040px;
    height: 800px;
    margin: 100px auto 40px;
    display: flex;
    justify-content: space-between;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
}
.left-slide {
    flex-basis: 60%;
}
.swiper-slide {
    position: relative;
}
.left-slide .swiper-slide .img-wrap {
    margin: 15px 2.5%;
    width: 95%;
    height: 770px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-slide .swiper-slide .img-wrap video {
    width: 100%;
    object-fit: cover;
}

.right-slide {
    flex-basis: 40%;
}
.right-slide .comment-wrap {}
.right-slide .comment-wrap .comment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px;
}
.right-slide .comment-wrap .comment > img {
    width: 37px;
}
.right-slide .comment-wrap .comment p {}
.right-slide .comment-wrap .comment > a span {
    width: 24px;
}
.right-slide .comment-wrap .comment > a span img {
    width: 100%;
}
.right-slide .comment-wrap .comment > a.off {

}
.right-slide .comment-wrap .comment > a.active {
    opacity: 0;
    position: absolute;
    right: 4.6%;
}
.right-slide .comment-wrap .comment > a.active:hover {
    animation: favorite 1s ease-in-out;
}
@keyframes favorite {
    0% {
        transform: scale(0) translateY(0);
        opacity: 1;
    }
    10% {
        transform: scale(1.1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(1.3) translateY(-50px);
        opacity: 0;
    }
}
.right-slide .comment-wrap .comment p {
    font-size: 16px;
}
.right-slide .comment-wrap .comment p.comment-txt {
    font-size: 13px;
    font-weight: 500;
    width: 180px;
    white-space: wrap;
}
.right-slide .comment-wrap .comment.profile {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
}
.right-slide .comment-wrap .comment.profile p {
    flex-basis: 75%;
    font-weight: 600;
}
.right-slide .comment-wrap .comment .comment-txt a {
    color: #626FF8;
    font-weight: 600;
    transition: .3s;
    padding: 10px;
}
.right-slide .comment-wrap .comment .comment-txt a:hover {
    /* opacity: 0.5; */
}

.right-slide .comment-wrap .comment.emoji {
    width: 100%;
    margin: 240px 0 10px;
    border-bottom: 1px solid #eaeaea;
}
.right-slide .comment-wrap .comment.emoji span {
    font-size: 30px;
}
.right-slide .comment-wrap .comment.comment-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 10px;
}
.comment.comment-bottom .like-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.comment.comment-bottom .like-btn span {
    width: 20px;
}
.comment.comment-bottom .like-btn span.bubble {
    width: 16px;
}
.comment.comment-bottom .like-btn span img {
    width: 100%;
}
.comment.comment-bottom .bookmark {
    width: 15px;
}
.comment.comment-bottom .bookmark img {
    width: 100%;
}


.comment-wrap > p {
    /* padding: 20px 40px 0 120px; */
    padding: 10px 20px;
}
/* .swiper-pagination {
    position: absolute;
    right: -25px !important;
}
.swiper-pagination .swiper-pagination-bullet {
    margin: 15px 0 !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #626FF8;
} */
.swiper-pagination-progressbar {
    left: auto !important;
    top: 50% !important;
    right: 0;
    transform: translateY(-50%);
    border-radius: 999px;
    width: 5px !important;
    background-color: #eee;
}
.swiper-pagination-progressbar-fill {
    background-color: #ddd !important;
    border-radius: 800px;
}


/* modal */
.web-contents {
    position: fixed;
    /* top: 50%; */
    top: 100%;
    left: 50%;
    /* transform: translate(-50%,-50%); */
    transform: translateX(-50%);
    z-index: 200;
    width: 1200px;
    height: 850px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(233,233,233,0.7);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid #8C8C8C;
    overflow: hidden;
    /* display: none; */
    transition: all .5s linear;
}
.web-contents.active {
    top: 50%;
    transform: translate(-50%,-50%);
}
.web-contents.down {
    top: 95%;
}

.web-contents .web-index {
    position: fixed;
    top: 0;
    left: 0;
    margin: 20px;
}
.web-contents .web-index .index-btn {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding-left: 10px;
}
.web-contents .web-index .index-btn span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
    position: relative;
}

.web-contents .web-index .index-btn span img {
    width: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: all .2s linear;
}
.web-contents .web-index .index-btn span:hover img {
    opacity: 0.8;
}
.web-contents .web-index .index-btn span:nth-child(1) {
    background-color: #FF5F57;
}
.web-contents .web-index .index-btn span:nth-child(2) {
    background-color: #FEBC2E;
}
.web-contents .web-index .index-btn span:nth-child(3) {
    background-color: #28C840;
}
.web-contents .web-index .index-list {}
.web-contents .web-index .index-list .index-title {
    color: #A1A1A1;
}
.web-contents .web-index .index-list p {
    padding: 10px 50px 10px 15px;
    border-radius: 10px;
}
.web-contents .web-index .index-list p.view {
    background-color: rgba(205,205,205,0.3);
}
.web-contents .renewal-process {
    position: fixed;
    top: 0;
    right: 0;
}
.web-contents .renewal-process .process-title {
    display: flex;
    background-color: rgba(249,249,249,0.8);
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}
.web-contents .renewal-process .process-title h3 {
    font-size: 18px;
    color: #585858;
}
.web-contents .renewal-process .process-title a {
    transition: .3s;
}
.web-contents .renewal-process .process-title a:hover {
    opacity: 0.5;
}
.web-contents .renewal-process .process-title a img {
    width: 20px;
}
.web-contents .renewal-process .process-wrap {
    width: 1000px;
    height: 790px;
    overflow-y: auto;
}
.web-contents .renewal-process .process-wrap img {
    width: 100%;
}

/* footer */
footer {
    position: relative;
}

/* 반응형 */
@media screen and (max-width: 1280px) {
    .slides {
        width: 840px;
        height: 600px;
    }
    .left-slide {
        flex-basis: 50%;
    }
    .left-slide .swiper-slide .img-wrap {
        margin: 15px 2.5%;
        width: 95%;
        height: 95%;
    }
    .right-slide {
        flex-basis: 50%;
    }
    .right-slide .comment-wrap .comment {
        gap: 15px;
    }
    .right-slide .comment-wrap .comment p {
        font-size: 14px;
    }
    .right-slide .comment-wrap .comment p.comment-txt {
        font-size: 11px;
        width: 150px;
    }
    .right-slide .comment-wrap .comment.emoji {
        margin: 10px;
    }
    .right-slide .comment-wrap .comment.emoji span {
        font-size: 18px;
    }
    .right-slide .comment-wrap p {
        font-size: 14px;
    }
    /* modal */
    .web-contents {
        width: 950px;
        border-radius: 20px;
    }
    .web-contents .web-index {
        margin: 20px 10px;
    }
    .web-contents .renewal-process .process-wrap {
        width: 770px;
    }
}
@media screen and (max-width: 980px) {
    .cursor {
        display: none;
    }
    body {
        cursor: auto;
    }
    .slides {
        flex-direction: column;
        width: 80%;
        height: 1000px;
    }
    .left-slide {
        flex-basis: 40%;
    }
    .left-slide .swiper-slide .img-wrap {
        border-radius: 10px;
        height: 480px;
    }
    .left-slide .swiper-slide .img-wrap video {
        width: 100%;
        object-fit: cover;
    }
    .right-slide {
        margin: 0px 30px 0;
        flex-basis: 60%;
    }
    .right-slide p {
        font-size: 14px !important;
    }
    .right-slide .comment-wrap .comment.profile {
        padding: 10px 0;
    }
    .right-slide .comment-wrap .comment.profile p {
        flex-basis: 84%;
    }
    .right-slide .comment-wrap .comment {
        padding: 10px 0;
    }
    .right-slide .comment-wrap .comment p.comment-txt {
        flex-basis: 70%;
    }
    .right-slide .comment-wrap .comment.comment-bottom {
        padding: 0px 0px 10px;
    }
    .right-slide .comment-wrap .comment.comment-bottom span {
        width: 18px;
        height: 18px;
    }
    .right-slide .comment-wrap .comment.comment-bottom span.bubble {
        width: 15px;
    }
    .comment-wrap > p {
        padding: 10px 0;
    }
    .right-slide .comment-wrap .comment.emoji {
        margin: 50px 0 10px;
    }
    .comment.comment-bottom .bookmark img {
        width: 80%;
    }
    


    /* modal */
    .web-contents {
        width: 650px;
        border-radius: 10px;
    }
    .web-contents .web-index {
        margin: 20px 10px;
    }
    .web-contents .web-index .index-list p {
        padding: 10px 25px 10px 15px;
        font-size: 13px;
    }
    .web-contents .renewal-process .process-title {
        padding: 15px 20px;
    }
    .web-contents .renewal-process .process-title h3 {
        font-size: 15px;
    }
    .web-contents .renewal-process .process-wrap {
        width: 520px;
    }
}
@media screen and (max-width: 680px) {
    .slides {
        height: 790px;
    }
    .left-slide .swiper-slide .img-wrap {
        height: 90%;
    }
    .left-slide {
        flex-basis: 40%;
    }
    .right-slide {
        flex-basis: 60%;
    }
    .right-slide p {
        font-size: 11px !important;
    }
    .right-slide .comment-wrap .comment.emoji {
        margin: 0px 0 10px;
    }
    .comment.comment-bottom .bookmark img {
        width: 70%;
    }
    /* modal */
    .web-contents {
        width: 450px;
        height: 600px;
        border-radius: 10px;
    }
    .web-contents .web-index {
        /* margin: 15px 5px; */
        display: none;
    }
    .web-contents .web-index .index-list p {
        padding: 10px 25px 10px 15px;
        font-size: 11px;
        border-radius: 5px;
    }
    .web-contents .renewal-process .process-title {
        padding: 15px 20px;
    }
    .web-contents .renewal-process .process-title h3 {
        font-size: 13px;
    }
    .web-contents .renewal-process .process-wrap {
        width: 450px;
    }
}
@media screen and (max-width: 480px) {
    .slides {
        height: 790px;
    }
    .left-slide .swiper-slide .img-wrap {
        height: 300px;
    }
    .right-slide {
        margin: 0 10px 0;
    }
    .right-slide p {
        font-size: 10px !important;
    }
    .right-slide .comment-wrap .comment.emoji span {
        font-size: 10px;
    }
    .swiper-pagination-progressbar {
        width: 3px !important;
    }
    /* modal */
    .web-contents {
        width: 370px;
        height: 700px;
        border-radius: 10px;
    }
    .web-contents .renewal-process .process-title {
        padding: 10px 20px;
    }
    .web-contents .renewal-process .process-wrap {
        width: 100%;
        height: 660px;
    }
    .web-contents .renewal-process .process-wrap img {
        width: 100%;
    }
}
@media screen and (max-width: 380px) {
    .web-contents {
        width: 300px;
        height: 600px;
        border-radius: 10px;
    }
}