/*footer*/
footer {
    position: relative;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #fff;
    padding: 0;
    font-size: 0;
    line-height: 0;

    &>div{
        max-width: 1920px;        
        margin: 0 auto;
        font-size: 0;
        line-height: 0;
        padding: 35px 80px 50px;
        display: flex;

        .logo{
            margin-top: 18px;
            margin-right: 80px;
            width: 111px;
            height: 88px;
    
            img{
                width: 100%;
            }
        }
        dl{
            margin-right: 40px;
    
            dt {
                display: block;
                font-size: 14px;
                font-weight: 600;
                line-height: 24px;
                text-align: left;
                margin-bottom: 10px;
                color: #fff;
            }    
            dd {
                display: block;
                font-size: 14px;
                font-weight: 400;
                line-height: 23px;
                text-align: left;
                color: #fff;
                word-break: keep-all;
            }
        }
        dl:nth-child(2){
            margin-right: 50px;
    
            dd:last-child {
                margin-top: 15px;
                color: #ADADAD;
            }
        }  
        .sns-wrap {
            display: none;
            position: fixed;
            bottom: 125px;
            right: 16px;
            transition: .3s;
            -webkit-transition: .3s;
            z-index: 99;

            .btn-sns {
                display: block;
                width: 65px;
                height: 65px;
                border-radius: 50%;
                background: #fff url(../images/icon/sns_instagram.svg) no-repeat center;
                background-size: 28px 29px;
                margin-bottom: 14px;                
            }

            .btn-sns.x {
                background-image: url(../images/icon/sns_x.svg);            
            }

            .btn-sns.facebook {
                background-image: url(../images/icon/sns_facebook.png);
                margin-bottom: 0;             
            }
        }
    }
    address{       
        margin-left: auto;
        font-size: 13px;
        font-weight: 400;
        line-height: 18.82px;
        text-align: left;
        color: #fff;
    }  
    .only--mobile{
        display: none;
    }    
}

@media (max-width: 1565px) {
    footer {
        &>div {
            padding: 35px 40px 50px;
            flex-wrap: wrap;
            

            .logo {              
                margin-right: 40px;
            }            
               
            address {
                width: 100%;
                margin-left: 151px;
                margin-top: 20px;
            }
        }
    }
}

@media (max-width: 1200px) {
    footer {
        &>div {            
            padding: 35px 40px 50px 191px;
            flex-direction: column;

            .logo {
                position: absolute;
                left: 40px;
                top: 40px;
            }
            dl{
                dt{
                    margin-bottom: 0;
                }
            }
            dl:nth-child(3) {
                width: 100%;                
                margin-top: 20px;
                display: flex;         
                max-width: 250px;      

                dd{
                    margin-left: auto;
                    text-align: right;
                }
            }
            dl:nth-child(4),
            dl:nth-child(5) {
                width: 100%;              
                margin-top: 0px;
                display: flex;  
                max-width: 250px;

                dd{
                    margin-left: auto;
                    text-align: right;
                }
            }
            address {
                margin-left: 0;         
                margin-top: 20px;       
            }            
        }
    }
}    
@media (max-width: 1023px) {
    footer {
        &>div {            
            .sns-wrap.show {
                display: flex;
                align-items: center;
                flex-direction: column;
            }
        }
    }
}
@media (max-width: 720px) {
    footer {

        &>div {         
            padding: 35px 20px 65px;
            
            dl{
                margin-right: 0;
            }
            .logo {
                position: relative;
                left: auto;
                top: auto;
                margin-top: 0;
                margin-right: 0;
                width: 64px;
                height: 50px;
            }
            
            dl:nth-child(2){
                margin-top: 30px;
                margin-right: 0;
            }   
            .only--mobile {
                display: block;
            }
        }
    }
}    
@media (max-width: 320px) {

}    

/*header*/
header {
    padding: 0 80px;
    line-height: 0;
    margin: 0;
    border-bottom: 1px solid var(--line-clr);
    background: var(--base-clr);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    min-height: 80px;

    &>div{
        max-width: 1920px;
        margin: 0 auto;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .logo {
            padding-left: 0px;
            text-align: center;
            margin: 0;
            width: 248px;
            height: 29px;
            display: inline-block;

            a{
                display: block;

                img{
                    width: 100%;
                }
            }
        }
        nav{
            margin: 0 auto;
            box-sizing: border-box;
            z-index: 100;
            height: 80px;

            .gnb {
                margin: 0 auto;
                line-height: 0;
                font-size: 0;
                text-align: center;
                list-style: none;
                display: flex;
                align-items: center;
                height: 100%;
                
                &>li {
                    vertical-align: top;
                    display: inline-block;

                    &>a{
                        padding: 0 10px;
                        position: relative;
                        display: block;
                        text-align: left;
                        font-size: 20px;
                        font-weight: 500;
                        height: 80px;
                        line-height: 80px;                        
                        transition: .3s;
                        -webkit-transition: .3s;
                    }
                    &>a::before{
                        content: " ";
                        position: absolute;
                        bottom: 0;
                        left: 51%;
                        right: 51%;
                        border-top: 4px solid var(--accent-clr);
                        transition: .3s;
                        -webkit-transition: .3s;
                    }
                    &>a:hover::before,
                    &>a.on::before {
                        left: 0;
                        right: 0;
                    }
                    &>a:hover,
                    &>a.on {
                        color: var(--accent-clr);
                    }
                }
                &>li+li {margin-left: 60px;}
            }
        }
        .sns-wrap{           
            display: flex;
            align-items: center;
            
            .btn-sns{
                display: block;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                background: rgba(240, 236, 226, 0.32) url(../images/icon/sns_instagram_w.svg) no-repeat center;
                background-size: 24px 24px;
                margin-right: 16px;
            }
            .btn-sns.x{
                background-image: url(../images/icon/sns_x_w.svg);
            }
            .btn-sns.facebook{
                background-image: url(../images/icon/sns_facebook.svg);
                margin-right: 20px;
            }
            select{
                width: 105px;
            }

        }
    }
}
 
header .only--pc {display: flex;}
header .only--mobile {display: none;}

/* body.fixed {overflow:hidden}
body.fixed #nav_bg{visibility:visible;opacity:1}
body.fixed nav {display:block;padding:0px}	
body.fixed header {width:100%;z-index: 551;position: fixed;}
body.fixed .btn-m-close {content: '';position: absolute;top:0;cursor:pointer;width:55px;height:75px;font-size: 0;} */

@media only screen and (max-width: 1565px) {
    header{
        padding: 0 20px;

        &>div {
            .logo{
                width: 200px;
                height: 23px;
            }
            nav {
                .gnb {
                    &>li{
                        a{
                            font-size: 16px;
                        }
                    }
                    &>li+li {
                        margin-left: 20px;
                    }                    
                }
            }
            .sns-wrap {
                .btn-sns {                    
                    width: 35px;
                    height: 35px;                   
                    background-size: 20px 20px;
                    margin-right: 10px;
                }
                select{
                    font-size: 16px;

                    option{
                        color: #000;
                    }
                }
            }
        }
    }
}

@media only screen and (max-width: 1023px) {
	header .only--pc {display: none;}
	header .only--mobile {
        display: flex;
        align-items: center;
        height: 80px;
    }
   
	.btn-m,.btn-m span {display: inline-block;transition: all .2s;box-sizing: border-box;}
	.btn-m {position: absolute;right: 8px;top: 23px;width: 40px;height: 40px;z-index: 101;display: block;}
	.btn-m span {position: absolute;left: 8px;width: 22px;height: 2px;background-color: var(--text-clr);display: block;}
	.btn-m span:nth-of-type(1) {top: 10px;}
	.btn-m span:nth-of-type(2) {top: 17px;width:22px;}
	.btn-m span:nth-of-type(3) {bottom: 14px;}
    .btn-m.active {top: 22px;}
    .btn-m.active span{background-color: var(--base-clr) !important;}
	.btn-m.active span:nth-of-type(1) {-webkit-transform: translateY (7px) rotate (-45deg);transform: translateY(7px) rotate(-45deg);}
	.btn-m.active span:nth-of-type(2) {opacity: 0;}
	.btn-m.active span:nth-of-type(3) {-webkit-transform: translateY(-7px) rotate(45deg);transform: translateY(-7px) rotate(45deg);}
	header{
        position: fixed;top: 0;left: 0;padding: 0;max-width: 100%;

        &>div{

            nav{
                position: fixed;
                left: 0;
                top: 0;
                width: 100%;
                height: 100vh;
                transform: translateX(100%);
                transition: .3s;
                -webkit-transition: .3s;

                .logo {
                    top: auto;
                    height: 80px;
                    display: flex;
                    align-items: center;
                }            
                .gnb {
                    flex-direction: column;
                    border-top: 1px solid #DADADA;
            
                    &>li {
                        width: 100%;
                        text-align: center;
                        margin-top: 40px;
            
                        a {
                            font-size: 30px;
                            color: var(--base-clr);
                            text-align: center;
                            display: inline-block;
                            height: 43px;
                            line-height: 43.44px;
                        }
            
                        a:hover {
                            color: var(--accent-clr);
                        }
                    }
                }

            }
            .logo{
                margin: 0 16px;              
                width: 164px;
                height: 19px;               
                position: relative;
            }
            nav.open{                
                transform: translateX(0);                
            }
            #nav_bg {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: var(--text-clr);
                z-index: 99;
                transition: .3s;          
                -webkit-transition: .3s;
                transform: translateX(100%);
            }
            #nav_bg.open {                
                transform: translateX(0);
            }
            .sns-wrap{
                margin-right: 61px;
            }
        }
    }
 
	/* header nav .gnb {height: auto;padding: 0;list-style: none;margin: 0;line-height: 0;font-size: 0;}
	header nav .gnb>li {width: 100%;vertical-align: top;padding: 0;margin-top: 40px;margin-right: 0;}
    header nav .gnb>li+li {margin-left: 0;} */


  
}
@media only screen and (max-width: 699px) {
    header.stick-header .btn-m span {background-color: #fff;}
    header.stick-header {background: rgba(0, 0, 0, 0.9);}
    /* header.hover .btn-m span {background-color: #111;} */

}


/* back-to-top */
.btn-back-to-top {display: block;border-radius: 8px;background: var(--accent-clr) url(../images/btn/top.svg) no-repeat center 10px;background-size: 16px 16px;color: var(--Neutral-neutral-900, #111);font-size: 17px;font-weight: 400;line-height: 160%;text-align: center;width: 60px;height: 60px;position: fixed;bottom: 40px;right: 20px;transition-duration: 0.3s, 0.5s, 0.5s;opacity: 0;visibility: hidden;z-index: 99;padding-top: 28px;}
.btn-back-to-top.show {opacity: 1;visibility: visible;}
.btn-back-to-top.show:hover {cursor: pointer;}
@media only screen and (max-width: 1023px) {
    .btn-back-to-top {background: var(--accent-clr) url(../images/btn/top.svg) no-repeat center;font-size: 0;width: 44px;height: 44px;right: 27px;;bottom: 65px;padding-top: 0;}
}   

/*common*/
#contents{
    padding-top: 80px;
    min-width: 320px;

    article{
        max-width: 1400px;
        margin: 0 auto;
        padding-bottom: 120px;
    }
}
@media only screen and (max-width: 1520px) {
    article{
        padding: 0 40px 120px;
    }
}
@media only screen and (max-width: 720px) {
    article{
        padding: 0 16px 65px;
    }

}
.delay-1 {
    transition-delay: 0.5s;
}

.delay-2 {
    transition-delay: 2s;
}

.delay-3 {
    transition-delay: 4s;
}
/*main*/
.main-banner{
    height: 750px;

    .swiper-wrapper{
        height: 100%;

        .swiper-slide{
            width: 100%;            
            text-align: center;
            background-color: var(--base-clr);       

            figure{
                /* width: 100%; */
                max-width: 100%;
                max-height: 750px;
                height: 100%;
                line-height: 0;
                position: relative;
            }
            .text{
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                padding: 0 16px 80px;
                display: flex;
                justify-content: flex-end;
                flex-direction: column;
                z-index: 1;

                h3{
                    font-size: 40px;
                    font-weight: 900;
                    line-height: 36px;
                    letter-spacing: -0.04em;
                    text-align: center;
                    text-shadow: 2px 2px 0px #00000040;
                    margin-bottom: 15px;
                    word-break: keep-all;
                    overflow:hidden;text-overflow:ellipsis;max-height:72px !important;word-wrap:break-word;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;                 

                    .tooltip{
                        width: 430px;
                        bottom: 92px;
                        left: auto;
                        left: calc(100% - 50px);
                    }
                }
                p{                   
                    font-size: 26px;
                    font-weight: 300;
                    line-height: 36px;
                    letter-spacing: -0.04em;
                    text-align: center;
                    text-shadow: 2px 2px 0px #00000040;
                    word-break: keep-all;
                    overflow:hidden;text-overflow:ellipsis;max-height:72px !important;word-wrap:break-word;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;     
                    
                    .tooltip {
                        width: 430px;
                        bottom: 0px;
                        left: calc(100% - 50px);
                    }
                }
            }
            .text::after{
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(205.69deg, rgba(0, 0, 0, 0) 11.56%, rgba(0, 0, 0, 0.81) 83.76%);
                z-index: -1;
            }
            img{                
                height: 100%;     
                width: auto; 
                max-width: 100%;          
                object-fit: cover;
            }
        }
    }
}
@media (max-width: 1023px) {
    .main-banner {
        height: 570px;

        .swiper-wrapper {    
            .swiper-slide {        
                figure {                   
                    max-height: 570px;
                }    
                .text {                    
                    h3 {
                        font-size: 26px;
                        line-height: 1.5em;                       
                        margin-bottom: 10px;
                    }
    
                    p {
                        font-size: 20px;
                        line-height: 1.5em;
                    }
                }    
            }   
        }
    }
}

@media (max-width: 720px) {}
.btn-more{
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.08em;
    text-align: left;     
    padding-right: 30px;  
    background: url(../images/btn/arrow_right_w.svg) no-repeat right center;
    background-size: 24px 24px;
    transition: .3s;
    -webkit-transition: .3s;
}
.btn-more:hover{
    opacity: 0.8;
}
@media (max-width: 720px) {
    .btn-more{
        font-size: 14px;
        background-size: 18px 18px;
        padding-right: 18px;
    }
}

main{
    h2{
        text-align: center;
        position: relative;
        margin-top: 80px;
        margin-bottom: 60px;   
    }
    h2.with-more{
        margin-bottom: 30px;

        span.btn-wrap{
            display: block;
            text-align: right;
            margin-top: 30px;
        }       
    }
}
@media (max-width: 720px) {
    main{
        h2{
            font-size: 20px;
            margin-top: 60px;
            margin-bottom: 25px;
        }
        h2.with-more {
            margin-bottom: 15px;

            span.btn-wrap {
                margin-top: 15px;
            }
        }
    }
}
.card-list{  
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;

    .item{
        /* flex: 1 1 20%; */
        align-self: auto;
        width: calc((100% - 120px)/4);

        a{
            position: relative;
            display: block;
            width: 100%;
            height: 100%;        
            transition: .3s;    
            -webkit-transition: .3s;
            
            figure{
                width: 100%;
                height: 100%;
                line-height: 0;

                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
            .text {
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                padding: 0 20px 30px;
                display: flex;
                justify-content: flex-end;
                flex-direction: column;
                z-index: 1;

                h3 {
                    font-size: 26px;
                    font-weight: 800;
                    line-height: 38px;
                    letter-spacing: -0.02em;
                    text-align: left;     
                    word-break: keep-all;
                    overflow: hidden;
                    text-overflow: ellipsis;                   
                    height: 74px !important;
                    word-wrap: break-word;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                }

                p {
                    font-size: 18px;
                    font-weight: 300;
                    line-height: 26.06px;
                    letter-spacing: -0.04em;
                    text-align: left;
                    margin-bottom: 6px;
                    overflow: hidden;
                    white-space: nowrap;
                    text-overflow: ellipsis
                }
            }
            .text::after {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(205.69deg, rgba(0, 0, 0, 0) 11.56%, rgba(0, 0, 0, 0.81) 83.76%);
                z-index: -1;
            }
        }
        a:hover{
            transform: scale(1.08);
            border: 1px solid var(--accent-clr);
            z-index: 1;
            align-self: auto;

        }
        a.no-link{
            cursor: default;
        }
    }
}

.observer-wrap{
    .card-list{
        opacity: 0;
        transition: all 0.5s;
        transform: translateY(-100px);
    }    
    .card-list+.card-list{
        margin-top: 40px;
    }
    .card-list.show{
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1440px) {    
    .card-list {
        gap: 30px;

        .item {
            width: calc((100% - 90px)/4);

            a{
                .text {
                    padding: 0 16px 20px;        
    
                    h3 {
                        font-size: 20px;
                        line-height: 1.5em;
                        max-height: 3.0em !important;                   
                    }            
                    p {
                        font-size: 16px;
                    }
                }
            }

        }
    }
    .observer-wrap {    
        .card-list+.card-list {
            margin-top: 30px;
        }  
    }
}
@media (max-width: 1023px) {
    .card-list {       
    
        .item {
            width: calc((100% - 30px)/2);
        }
    }    
}
@media (max-width: 720px) {
    .card-list {
        gap: 0px;

        .item {            
            width: calc(100%/2);

            a{
                figure{
                    aspect-ratio: 3 / 3.3;
                }
                .text {                    
                    padding: 0 10px 15px;                    
                    h3 {
                        font-size: 15px;     
                        line-height: 20px !important;         
                        max-height: 40px !important;
                    }            
                    p {
                        font-size: 12px;
                        line-height: 17.38px;
                    }
                }
            }
            a:hover {
                transform: scale(1);
                border: 0;
            }
        }
    }
    .observer-wrap {
        .card-list+.card-list {
            margin-top: 0px;
        }
    }
}

.brand-list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;

    .item{
        line-height: 0;

        img{
            width: 100%;
        }
    }
}
@media (max-width: 720px) {
    .brand-list{           
        flex-direction: column;
        gap: 40px;

        .item:nth-child(1) {
            max-width: 137px;
        }
    
        .item:nth-child(2) {
            max-width: 108px;
        }
    
        .item:nth-child(3) {
            max-width: 141px;
        }
    }
}

/*about us*/
.about-us{
    padding-top: 100px;
    background: url(../images/bg/bg_about.jpg) no-repeat center 559px;
    background-size: 100%;

    .only--pc{display: block;}
    .only--mobile{display: none;}
    .slogan{
        text-align: center;

        .logo{
            width: 349px;
            height: 271px;
            margin: 0 auto 45px;

            img{
                width: 100%;
            }
        }
        h1{            
            font-size: 20px;
            font-weight: 300;
            line-height: 24px;
            letter-spacing: 0.05em;
            text-align: center;            
            color: #E5E5E5;
            margin-bottom: 25px;
            word-break: keep-all;

            b{
                color: #C5941C;                
                font-size: 40px;
                font-weight: 500;
                line-height: 64px;
                letter-spacing: -0.03em;
            }
            span{
                line-height: inherit;
                color: inherit;
                font-size: inherit;
                font-weight: inherit;
                margin-left: 15px;
                vertical-align: 8px;
                letter-spacing: -0.02em;
            }
        }
        h6{        
            font-size: 22px;
            font-weight: 400;
            line-height: 40px;
            letter-spacing: -0.03em;
            text-align: center;
        }
    }
    .introduction{
        padding-top: 80px;
        padding-bottom: 80px;

        .track{
            position: relative;
            max-width: 1405px;
            margin: 0 auto 100px;
            line-height: 0;
        
            img {
                width: 100%;
            }
            h4{        
                position: absolute;    
                top: 75px;    
                left: 0; 
                right: 0;
                margin: 0 auto;
                font-size: 36px;
                font-weight: 900;
                line-height: 43.2px;
                letter-spacing: -0.02em;
                text-align: center;            

                span{          
                    display: block;       
                    margin-top: 20px;   
                    font-size: 26px;
                    font-weight: 400;
                    line-height: 44px;
                    text-align: center;
                }
            }
            /* li{
                position: absolute;
                width: 400px;

                h5{                    
                    font-size: 32px;
                    font-weight: 900;
                    line-height: 38.4px;                      
                }
                p{                  
                    font-size: 24px;
                    font-weight: 500;
                    line-height: 28.8px;
                }
                .ico{
                    width: 103px;
                    height: 103px;
                    border-radius: 50%;
                    position: absolute;
                    top: -16px;
                    background: #635c4b url(../images/icon/ic_mike.svg) no-repeat center;
                    background-size: 45px 43px;
                }
                .ico.movie{
                    background-color: #43340f;
                    background-image: url(../images/icon/ic_movie.svg);
                }
                .ico.tv{
                    background-color: #43340f;
                    background-image: url(../images/icon/ic_tv.svg);
                }
                .ico.vod{                    
                    background-image: url(../images/icon/ic_vod.svg);
                }
                .ico.global{     
                    background-color: #765915;               
                    background-image: url(../images/icon/ic_global.svg);
                }
                .ico.pr{     
                    background-color: #765915;               
                    background-image: url(../images/icon/ic_news_paper.svg);
                }
            }
            li.right{
                padding-right: 126px;
                text-align: right;

                .ico{
                    right: 0;
                }
                h5,
                p{
                    text-align: right;
                }
            }
            li.left{
                padding-left: 126px;
                text-align: left;

                .ico{
                    left: 0;
                }
                h5,
                p {
                    text-align: left;
                }
            }
            li:nth-child(1){
                text-align: center;
                top: 110px;
                left: 0;
                width: 100%;
            }
            li:nth-child(2){
                top: 277px;
                left: -266px;                
            }
            li:nth-child(3){
                top: 520px;
                left: -258px;                
            }
            li:nth-child(4){
                top: 724px;
                left: -60px;                
            }
            li:nth-child(5){
                top: 724px;
                left: 639px;                
            }
            li:nth-child(6){
                top: 520px;
                left: 811px;                
            }
            li:nth-child(7){
                top: 271px;
                left: 838px;       
                
                .ico{
                    top: 0;
                }
            } */
        }
    }
    dl{
        text-align: center;
        margin-top: 40px;

        dt{          
            font-size: 30px;
            font-weight: 300;
            line-height: 36px;
            text-align: left;
            display: inline-block;
            vertical-align: 8px;
            margin: 0 20px;
        }
        dd{    
            display: inline-block;
            font-size: 65px;
            font-weight: 700;
            line-height: 78px;
            text-align: left;
            color: #C5941C;
        }
    }
}

@media (max-width: 1525px) {
    .about-us{
        .slogan{
            h6{
                word-break: keep-all;
                
                br{
                    display: none;
                }
            }
        }
    }
}
@media (max-width: 1200px) {
    .about-us{
        .introduction {   
            .track {              
                                
                h4 {
                    position: relative;
                    left: auto;
                    right: auto;
                    top: auto;
                    margin-bottom: 30px;
                }
            }
        }
    }
}
@media (max-width: 1023px) {
    .about-us{
        .introduction {   
            .track {              
                                
                h4 {
                    span{
                        word-break: keep-all;

                        br{
                            display: none;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 720px) {
    .about-us{
        background-image: none;
        padding-top: 30px;

        .only--mobile{display: block;}
        .only--pc{display: none;}

        .slogan {
            .logo {
                width: 148px;
                height: 114px;
                margin-bottom: 30px;
            }
            h1 {
                font-size: 18px;               
                line-height: 21.6px;
                margin-bottom: 30px;

                b {                    
                    font-size: 32px;
                    line-height: 38.4px;                    
                }
                
                span {                    
                    display: block;                    
                    margin-left: 0;
                   
                }
            }
            h6 {
                font-size: 16px;
                font-weight: 400;
                line-height: 33px;
                letter-spacing: -0.02em;
                text-align: center;
                word-break: keep-all;
            }
        }
        .introduction {
            padding-top: 0px;
            padding-bottom: 0px;

            .track {
                margin: 0 auto 50px;

                h4 {
                    position: relative;
                    top: auto;
                    left: auto;
                    right: auto;
                    word-break: keep-all;
                    font-size: 18px;
                    line-height: 21.6px;
                    margin-bottom: 36px;
                    letter-spacing: -0.03em;

                    span {
                        margin-top: 10px;
                        font-size: 16px;
                        line-height: 26px;
                        letter-spacing: -0.05em;
                    }
                }
                figure{
                    max-width: 500px;
                    margin: 0 auto;
                }
            }
        }

        dl {
            margin-top: 20px;

            dt {
                font-size: 18px;
                line-height: 21.6px;
                vertical-align: 8px;
                margin: 0 15px;
            }

            dd {
                font-size: 40px;
                line-height: 48px;
            }
        }
    }

}
/* @media (max-width: 350px) {
    .about-us{  
        .introduction {    
            .track {      
                h4 {    
                    span{
                        br{
                            display: none;
                        }
                    }
                }
            }
        }        
    }
} */

.card-list2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;

    .item {
        position: relative;
        flex: 1 1 30%;
        align-self: auto;     
        border-radius: 6px;
        overflow: hidden;
        transition: .3s;
        -webkit-transition: .3s;

        figure {
            width: 100%;
            aspect-ratio: 4 / 2.7;            
            line-height: 0;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .text {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            padding: 0 20px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            z-index: 1;

            h3 {
                font-size: 60px;
                font-weight: 400;
                line-height: 40px;
                letter-spacing: -0.03em;
                text-align: center;               
            }

            p {
                font-size: 30px;
                font-weight: 300;
                line-height: 40px;
                letter-spacing: -0.03em;
                text-align: center;
                margin-top: 13px;
            }
        }

        .text::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(205.69deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 0%);
            z-index: -1;           
        }
    }

    .item:hover {              
        z-index: 1;
        align-self: auto;

        .text::after {          
            background: linear-gradient(205.69deg, rgba(0, 0, 0, 0) 11.56%, rgba(0, 0, 0, 0.81) 83.76%);           
        }

    }
    
}

@media (max-width: 1440px) {
    .card-list2 {
        gap: 30px;

        .item{        
            .text {
                padding: 0 16px 20px;

                h3 {
                    font-size: 20px;
                    line-height: 1.5em;
                    max-height: 3.0em !important;
                }

                p {
                    font-size: 16px;
                }
            }       
        }
    }
}

@media (max-width: 1023px) {
    .card-list2 {
        gap: 15px;

        .item {
            flex: 1 1 40%;      
            .text{
                padding: 0 10px 10px;

                h3{
                    font-size: 50px;
                    line-height: 40px;
                }

                p{
                    font-size: 20px;
                    line-height: 40px;
                    margin-top: 0;
                }
            }                       
        }
    }
}

@media (max-width: 500px) {
    .card-list2 {

        .item {
            flex: 1 1 100%;                  
        }
    }
}

.sort-wrap{
    padding-top: 100px;
    margin-bottom: 40px;    
}
@media (max-width: 720px) {
    .sort-wrap{
        padding-top: 30px;
        margin-bottom: 30px;    
    }
}

/*custom selectbox*/
.custom-selectbox {
    display: flex;
    width: 185px;
}
.custom-selectbox .dropdown {
    min-width: 185px;
    height: 50px;
    position: relative;
    border: 1px solid var(--line-clr);
    color: var(--text-clr);
}
.custom-selectbox .dropdown::before {
    content: "";
    position: absolute;
    right: 12px;
    top: 13px;
    z-index: 10;
    width: 24px;
    height: 24px;
    background: url(../images/btn/selectbox2.svg) no-repeat center;
    background-size: 100%;
    pointer-events: none;
    transition: all 0.3s linear;
}
.custom-selectbox .dropdown input {
    height: 100%;
    padding: 0 48px 0 12px;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 400;
    user-select: none;
    background-color: transparent;
    color: var(--text-clr);
}
.custom-selectbox .dropdown .options {
    width: 100%;
    border-radius: 9px;
    padding: 0;
    cursor: pointer;
    background: var(--base-clr);
    border: none;
    outline: none;
    box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
    font-size: 14px;
    overflow: hidden;
    position: absolute;
    top: 52px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-50px);
    visibility: hidden;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border: 0;
    z-index: 11;
    max-height: 330px;
    overflow-y: auto;
}
.custom-selectbox .dropdown .options::-webkit-scrollbar {
    width: 10px;
}
.custom-selectbox .dropdown .options::-webkit-scrollbar-thumb {
    min-height: 30px;
    background: var(--secondary-text-clr);
    border-radius: 10px;
}
.custom-selectbox .dropdown .options::-webkit-scrollbar-track {
    background: var(--text-clr);
}
.custom-selectbox .dropdown .options .option {
    padding: 5px 12px;
    border-radius: 0;
    transition: .3s ease;
    color: var(--secondary-text-clr);
}
.custom-selectbox .dropdown.opened .options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-selectbox .dropdown.opened::before {
    transform: rotate(180deg);
}
.custom-selectbox .dropdown .options .option:hover {
    color: var(--base-clr);
    background: #f2f3f7;
}
.custom-selectbox .dropdown .options .option a:hover {
    color: inherit;
    opacity: 1;
    width: 100%;
    display: block;
}

/*map*/
.map{
    width: 100%;margin: 0 auto 85px;

    .root_daum_roughmap{
        width: 100%;
        /* padding-bottom: 56.25%; */
        height: 550px;
        
        .wrap_map{
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
    }
}
.root_daum_roughmap .wrap_controllers {
    display: none !important;
}
@media (max-width: 720px) {
    .map{
        margin: 0 auto 35px;
    
        .root_daum_roughmap{
            width: 100%;
            /* padding-bottom: 56.25%; */
            height: 400px;
        }
    }
}
.contact-us{
    article{
        &>div{
            display: flex;
            align-items: center;
            gap: 120px;
        }
        .logo{
            width: 301px;
            height: 235px;

            img{
                width: 100%;
            }
        }
        .info{
            display: flex;
            flex-wrap: wrap;          
            width: calc(100% - 421px);          
           
            h1 {
                width: 100%;                
                text-align: left;          
                font-size: 18px;
                font-weight: 400;
                line-height: 21.6px;
                letter-spacing: -0.02em;
                margin-bottom: 20px;

                b {
                    color: #C5941C;
                    font-size: 32px;
                    font-weight: 600;
                    line-height: 46.34px;
                    letter-spacing: -0.03em;
                }
                span {
                    line-height: inherit;
                    color: inherit;
                    font-size: inherit;
                    font-weight: inherit;
                    margin-left: 15px;
                    vertical-align: 7px;                    
                }
            }
        }
        dl {
            margin-right: 110px;

            dt {
                display: block;
                font-size: 20px;
                font-weight: 700;
                line-height: 40px;
                text-align: left;
                color: var(--text-clr);
            }
            dd {
                display: block;
                font-size: 20px;
                font-weight: 400;
                line-height: 40px;
                text-align: left;
                color: var(--secondary-text-clr);
                word-break: keep-all;
            }
        }

        dl:nth-child(2) {
            margin-right: 0;                 
            width: 100%;
            margin-bottom: 30px;
        }
        dl:last-child{
            margin-right: 0;
        }
        
        .only--mobile {
            display: none;
        }
    }
}
@media (max-width: 1250px) {
    .contact-us {
        article {
            &>div {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .info {
                width: 100%;                
            }
        }
    }
}
@media (max-width: 1023px) {
    .contact-us {
        article {            

            .info {     
                width: 100%;          
                flex-direction: column;

                h1 {
                    margin-bottom: 0;             
                }
            }

            dl {
                margin-right: 0px;
                margin-top: 30px;
            }

            dl:nth-child(2) {
                margin-right: 0;
                width: 100%;
                margin-bottom: 0px;
            }
            dl:nth-child(3) {
                margin-top: 20px;
            }

            dl:last-child {
                margin-right: 0;
                margin-top: 20px;
            }            
        }
    }
}
@media (max-width: 720px) {
    .contact-us{
        article{
            &>div{
                align-items: center;   
            }
            .logo{
                width: 148px;
                height: 114px;
            }
            .info{                                    
               
                h1 {                             
                    text-align: center;                                                                    
                    line-height: 29.4px;
    
                    b {                        
                        font-weight: 500;                        
                    }
                    span {
                        display: block;                       
                        margin-left: 0px;              
                    }
                }
            }
            dl {
    
                dt {                    
                    text-align: center;
                }
                dd {
                    display: block;                   
                    text-align: center;                    
                }
            }               
            .only--mobile {
                display: block;
            }
        }
    }

}

.tooltip {
    display: none;
    position: absolute;
    left: 20px;   
    top: calc(100% - 10px);
    text-align: left;
    width: calc(100% + 40px);
    min-width: 168px;
    padding: 0;
    border-radius: 0;
    transition: .3s;
    -webkit-transition: .3s;
    box-shadow: 0px 2px 3px 0px #00000040;
    /* overflow: hidden; */
    z-index: 2;
}
.ShowEllipsisTooltip.on:hover .tooltip{
    display: block;
}
@media (max-width: 720px) {
    .ShowEllipsisTooltip.on:hover .tooltip{
        display: none;
    }
}
.tooltip .arrow{
    position: absolute;
    display: block;
    top: -13px;
    left: 16px;
    width: 0;
    height: 0;
    border-bottom: 15px solid transparent;
    border-top: 15px solid transparent;
    border-left: 30px solid var(--line-clr);
    border-right: 30px solid transparent;
    z-index: -1;
}

.tooltip .con {
    display: block;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 16.8px;
    color: var(--text-clr);
    border: 1px solid var(--line-clr);
    background-color: var(--base-clr);
}



/*[s] Cursor Style */
/* html,
* {
    cursor: none;
} */

.prix-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden;
}

.prix-cursor-in {
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    background-color: #C5941C;
    transition: all 0.08s ease-out;
    z-index: 100
}

.prix-cursor-in.prix-cursor-hover {
    background-color: #C5941C;
}

.prix-cursor-in.prix-cursor-hover2 {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    background-color: #fff;
    opacity: 1;
    mix-blend-mode: exclusion;
}

.prix-cursor-out {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 2px solid #C5941C;
    transition: all 0.3s ease-out;
    z-index: 101
}

.prix-cursor-out.prix-cursor-hover {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-color: #C5941C;
}

.prix-cursor-out.prix-cursor-hover2 {
    opacity: 0;
}

[data-magic-cursor=hide] .prix-cursor {
    opacity: 0;
    display: none;
    visibility: hidden;
    position: absolute;
    z-index: -1
}
@media (max-width: 720px){
    .prix-cursor{
        display: none;
    }
}
/*[e] Cursor Style */