@charset "utf-8";
/* 투어머치 전현진 */


/* 콘텐츠 공통 */
#container {
    padding-top: var(--height-header);
}

.sub-top-img {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 920px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 200% auto;
    background-image: url("../img/sub_topbg01.jpg");
}

.sub-top-img.sub-top-img1 {
    background-image: url("../img/sub_topbg01.jpg");
}

.sub-top-img.sub-top-img2 {
    background-image: url("../img/sub_topbg02.jpg");
}

.sub-top-img.sub-top-img3 {
    background-image: url("../img/sub_topbg03.jpg");
}

.sub-top-img.sub-top-img4 {
    background-image: url("../img/sub_topbg04.jpg");
}

.sub-top-img.sub-top-img5 {
    background-image: url("../img/sub_topbg05.jpg");
}

.sub-top-img.sub-top-img6 {
    background-image: url("../img/sub_topbg06.jpg");
}

.sub-video-img video {
    width: auto;
    height: 100%;
}

.sub-video-img:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom,  rgba(18,18,18,0) 0%,rgba(18,18,18,1) 100%);
    content: '';
}

.sub-top {
    padding: calc(var(--page-padding) * 3) var(--page-padding) var(--page-padding);
}

.sub-top h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 3vw, 6rem);
    font-family: var(--font-point);
}

.sub-top ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 5px 30px;
}

.sub-top ul li a {
    position: relative;
    display: block;
    padding: 5px 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: var(--font-weight-light);
}

.sub-top ul li a em {
    position: relative;
}

.sub-top ul li a:hover {
    color: #FFF;
}

.sub-top ul li a:before {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 49.9%;
    right: 49.9%;
    background-color: rgba(var(--color-violet-rgb),0);
    transition: .3s;
    content: '';
}

.sub-top ul li.active a {
    font-weight: var(--font-weight-semibold);
    text-shadow: 0 1px 2px rgba(var(--color-black-rgb),0.15);
}

.sub-top ul li.active a:before {
    background-color: rgba(var(--color-violet-rgb),0.8);
    backdrop-filter: blur(5px);
    animation: sub-gnb-active .5s ease-in-out 1s;
    animation-fill-mode: forwards;
}

.sub-top ul li a:hover::after {
    width: 100%;
    opacity: 0.5;
}

.page-content {
    position: relative;
    padding: var(--page-padding) var(--page-padding) calc(var(--page-padding) * 3);
    margin: 0 auto;
}

.page-content h1.page-h1 {
    margin-bottom: 30px;
}

.page-content h1.page-h1 em {
    font-size: clamp(2.6rem, 3vw, 4rem);
    font-family: var(--font-point);
}

@keyframes sub-gnb-active {
    0% { 
        left: 49.9%;
        right: 49.9%;
    }
    100% {
        left: -10px;
        right: -10px;
    }
}

@media screen and (min-width: 767px) {
    .sub-top-img {
        background-size: 100% auto;
    }

    .sub-video-img video {
        width: 100%;
        height: auto;
    }

    .sub-top ul li a:before {
        top: 0px;
        bottom: 0px;
    }

    .page-content {
        padding: 50px 30px;
    }
}

@media screen and (min-width: 979px) {
    .page-content {
        padding: 20px var(--page-padding) 0;
    }

    .page-content .respon {
        padding: calc(var(--page-padding) * 2) var(--page-padding);
        padding-bottom: 120px;
        background-color: var(--color-background);
        border-radius: 20px 20px 0 0;
    }
}

@media screen and (min-width: 1239px) {
    #container {
        padding-top: 250px;
    }

    .sub-top .respon {
        padding: 0 var(--page-padding);
    }

    .sub-top ul {
        gap: 5px 50px;
    }

    @keyframes sub-gnb-active {
        0% { 
            left: 49.9%;
            right: 49.9%;
        }
        100% {
            left: -20px;
            right: -20px;
        }
    }

    .page-content .respon {
        padding: calc(var(--page-padding) * 2) calc(var(--page-padding) * 1.5);
        padding-bottom: 150px;
    }
}

@media screen and (min-width: 1439px) {
    .sub-top ul {
        gap: 5px 70px;
    }
}


/* 콘텐츠 */
.jum-ul li {
    position: relative;
    padding-left: 15px;
    font-size: clamp(1.6rem, 2vw, 2rem);
}

.jum-ul li:not(:first-child) {
    margin-top: 10px;
}

.jum-ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-gray);
    border-radius: 50%;
    content: '';
}


/* 준비중 페이지 */
.waiting-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20vh 0;
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.waiting-page .logomark {
    width: 60%;
    max-width: 300px;
    font-size: 0;
}







@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width: 1239px) {
}

@media screen and (min-width: 1340px) {
}

@media screen and (min-width: 1439px) {
}

@media screen and (min-width: 1640px) {
}

@media screen and (min-width: 1840px) {
}