@charset "utf-8";

/* ==========================================================================
    기존 코드
   ========================================================================== */
/* 스킵 네비게이션 */
#skip-nav {
    position: absolute; left: 0; right: 0; top: 0;
    z-index: 9999;
    & *{list-style: none; margin: 0; padding: 0;}
    a{display: block; width: 1px; height: 1px; overflow: hidden; color: #fff; white-space: nowrap; text-align: center;}
    a:focus,
    a:active{width: 100%; height: auto; padding: 0.5rem; background: #000;}
}
.wrap {position: relative;
    max-width: 1600px;
    margin: 0 auto;
    @media (width <= 1640px) {
        margin: 0 15px;
        max-width: 100%;
    }
}

/* ==========================================================================
    COMMON
   ========================================================================== */
.main-grid {
    position: relative;
    padding-left: var(--main-gap); padding-right: var(--main-gap);
}
.grid01 {
    position: relative;
    max-width: var(--main-width); width: 100%; margin: 0 auto;
    padding-left: var(--main-gap); padding-right: var(--main-gap);
    @media (width <= 1360px) {
        width: auto;
        padding-left: var(--main-gap);  padding-right: var(--main-gap);
    }
}
.split-flex {
    display: flex;
    .split-col{flex: 1; min-width: 0;}
    .left-col{display: flex; justify-content: center; padding: 0 var(--main-gap);}
    .right-col{position: relative; padding-right: 28px;}
    @media (width <= 1600px) {
        .right-col{padding: 0 var(--main-gap)}
    }
    @media (width <= 860px) {
        flex-direction: column-reverse; gap: 40px;
        .split-col{padding: 0;}
    }
}
.split-grid {display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));}
.d-logo {
    width: 105px;
    @media (width <= 640px) {
        width: 100px;
    }
}
.instagram{width: 20px;}
.kakao{width: 25px;}
.linktree{width: 20px;}

/* ==========================================================================
    HEADER
   ========================================================================== */
header {
    position: fixed; top: 0;
    width: 100%; min-width: 320px;
    background: #fff; z-index: 30;
    .header-inner{display: flex; justify-content: space-between; height: var(--header-height);}
    .left-area,
    .right-area{display: flex; align-items: center;}
    .left-area .lnb{margin-left: 57px;}
    .right-area .lnb{margin-right: 128px;}
    .header-utils{display: flex; align-items: center; gap: 25px;}
    .link-instagram > a,
    .btn-search a{display: block; padding: 5px 0 5px 5px;}
    .btn-search a > img{width: 20px;}
    .logo,
    .lnb{display: flex; align-items: center; height: 100%;}
    .btn-allmenu{display: none; position: relative; top: 1px; align-items: center; margin-left: 20px;}
    .btn-allmenu .menu_all_btn{float: none;}
    @media (width <= 1720px) {
        .right-area .lnb{margin-right: 80px;}
    }
    @media (width <= 1500px) {
        .left-area .lnb{margin-left: 48px;}
        .right-area .lnb{margin-right: 48px;}
    }
    @media (width <= 1280px) {
        .left-area .lnb{margin-left: 40px;}
        .right-area .lnb{margin-right: 40px;}
    }
    @media (width <= 1200px) {
        .left-area .lnb{margin-left: 20px;}
        .right-area .lnb{margin-right: 20px;}
    }
    @media (width <= 1024px) {
        .lnb{display: none;}
        .btn-allmenu{display: flex;}
    }
    @media (width <= 640px) {
        .header-utils{gap: 10px;}
        .btn-allmenu{margin-left: 18px;}
    }
}
.lnb {
    > ul{display: flex; align-items: center; gap: 8px;}
    > ul > li{position: relative;}
    > ul > li > a{display: block; padding: 14px 12px; font-size: 14px; font-weight: bold; text-transform: uppercase;}
    > ul > li.active > a,
    > ul > li > a.on{color: #bbb;}
    > ul > li > ul,
    .sub-menu {
        position: absolute; top: 30px; left: -8px; z-index: 5;
        display: none; min-width: 134px; padding: 10px 20px; background-color: #fff;
        > li a{font-size: 13px; font-weight: bold; color: #999; line-height: 29px; text-transform: uppercase;}
        > li a:hover,
        > li a.on{color: var(--basic-color);}
        &::after {content: ""; position: absolute; top: -10px; left: 50%; translate: -50% 0; width: 0; height: 0; border: 5px solid transparent; border-bottom-color: #fff;}
    }
    > ul > li:hover > ul,
    > ul > li:hover .sub-menu{display: block;}
}

/* ==========================================================================
    FOOTER
   ========================================================================== */
footer {
    margin-top: 100px;
    padding-top: 40px; border-top: 1px solid var(--border-color0101);
    font-size: 14px; color: #777; line-height: 24px;
    .footer-top .logo{margin-bottom: 31px;}
    .footer-bottom{position: relative; top: -54px; display: flex; flex-direction: column; align-items: center; padding: 24px 0; text-align: center;}
    .address {
        margin-top: 14px;
        > span{white-space: nowrap;}
        > span:not(:last-child)::after{content: "|"; font-size: 14px; font-weight: 100; color: #bbb; margin: 0 9px 0 13px;}
        .label{font-weight: bold; margin-right: 0;}
    }
    .footer-sns{display: flex; justify-content: flex-end; gap: 24px;}
    .footer-sns a{cursor: pointer;}
    .footer-store {display: flex; flex-direction: column; gap: 26px;}
    .footer-terms{margin-top: 23px;}
    .footer-terms > ul{display: flex; gap: 20px;}
    .footer-terms li a{font-size: 13px; font-weight: 500; color: #666;}
    .copyright{font-size: 10px; text-transform: uppercase;}
    @media (width <= 1200px) {
        .footer-bottom{top: -34px}
    }
    @media (width <= 1024px) {
        margin-top: 60px;
        font-size: 13px;
    }
    @media (width <= 860px) {
        margin-top: 40px;
        text-align: center;
        .footer-bottom{top: 0; margin-top: 30px;}
        .address > span.m-block{display: block;}
        address > span.m-block::after{display: none;}
    }
    @media (width <= 640px) {
        padding-bottom: 30px;
    }
}
.floating-menu {
    position: fixed; right: calc(var(--main-gap) - 6px ); bottom: var(--main-gap); z-index: 100;
    opacity: 0; visibility: hidden; transition: .3s ease-out;
    &.active {opacity: 1; visibility: visible; right: var(--main-gap);}
    > ul{display: flex; flex-direction: column; gap: 12px;}
    .circle-item{display: flex; justify-content: center; align-items: center; width: 56px; aspect-ratio: 1 / 1; border: 1px solid var(--basic-color); border-radius: 50%; background-color: var(--basic-color); font-size: 0; box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.32); cursor: pointer;}
    .gototop{border-color: var(--basic-color); background-color: #fff;}
    .gototop img{width: 15px;}
    .chtalk img{width: 25px;}
    .chkakao img{width: 27px;}
    @media (width <= 640px) {
        > ul{gap: 6px;}
        .circle-item{width: 42px; box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.22);}
        .gototop img{width: 10px;}
        .chtalk img{width: 18px;}
        .chkakao img{width: 19px;}
    }
}
/* ==========================================================================
    Collection View
   ========================================================================== */
body:has(.pg-view) header{border-bottom: 1px solid var(--border-color0101);}

/*정보영역*/
.prod-info {
    max-width: 684px; width: 100%; margin: 0 auto;
    .tit-sec {
        text-align: center;
        .title{display: inline-flex; justify-content: center; align-items: center; width: 132px; height: 42px; border: 1px solid var(--basic-color); border-radius: 21px; font-size: 15px; font-weight: bold;}
        .scroll-bounce{margin-top: 30px;}
    }
    .prod-header {
        display: flex; align-items: center;
        .btn-back{font-size: 0; width: 60px; height: 42px; background: url('/assets/site/img/common/arr03.png') no-repeat left center / 36px auto;}
        .prod-title{font-size: 38px; font-weight: bold; line-height: 1;}
        .tag-set{display: flex; align-items: flex-end; gap: 4px; margin-left: 13px;}
        .tex-tag {
            height: 24px;
            font-size: 11px; line-height: 21px;
            &.tag-season{padding: 0 13px; background-color: #000;}
            &.tag-best{width: 48px; color: #000; border: 1px solid #222; background-color: #fff;}
        }
    }
    .prod-meta {
        margin-top: 40px;
        > ul{display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));}
        .meta-item{display: flex; align-items: center; height: 54px; font-size: 14px; border-bottom: 1px solid var(--border-color0101)}
        .meta-item:nth-child(n+5){grid-column: span 2;}
        .meta-item .meta-label{width: 70px; font-weight: bold;}
        .meta-item .meta-vl{font-weight: 500;}
        /*.meta-item:nth-child(5){grid-column: span 2;}*/
    }
    .prod-colorway {
        margin-top: 130px;
        .refer{text-align: center; margin-top: 20px;}
        .refer p{font-size: 14px; color: #999; line-height: 22px;}
        .swatch-list {display: flex; justify-content: center; margin-top: 23px;}
    }
    .prod-detail {
        margin-top: 147px;
        .desc{margin-top: 18px;}
        .desc p{line-height: 28px; letter-spacing: -0.25px;}
    }
    .prod-caution {
        margin-top: 140px;
        .caution{margin-top: 15px;}
        .caution > li{font-size: 15px; line-height: 26px; padding-left: 12px; text-indent: -12px;}
        .caution > li:not(:last-child){margin-bottom: 6px;}
        .caution > li::before{content: "• ";}
    }
}
/*컬러웨이 패널*/
.colorway-panel {
    position: fixed; right: 0; top: calc(var(--header-height) + 1px ); z-index: 10;
    width: 50%; height: calc(100dvh - var(--header-height) );
    padding: 90px 40px;
     opacity: 0; visibility: hidden; pointer-events: none; transition: .2s ease-out;
    background-color: #fff; overflow-y: auto;
    &::-webkit-scrollbar{width: 0; height: 0; background: transparent;}
    &.open {opacity: 1; visibility: visible; pointer-events: auto;}
    .colorway-info{max-width: 726px; width: 100%; margin: 0 auto;}
    .cw-header {
        display: flex; padding: 0 21px; margin-bottom: 1px;
        .tit-set{display: flex; align-items: flex-end; gap: 14px; display: none;}
        .swatch-number{font-size: 26px; font-weight: bold;}
        .cw-title{position: relative; top: -4px; font-size: 18px; font-weight: bold}
        .cw-title::before{content: ""; display: inline-block; width: 1px; height: 16px; background-color: var(--border-color01); margin-right: 12px;}
        .btn-x{margin-left: auto;}
        .btn-x img{width: 18px;}
        .panel-close{padding: 10px 0 10px 10px;}
    }
    .swatch-color{padding: 0;}
    .swatch-color img{width: 100%;}
    .list-container{padding: 40px 0 33px; border-bottom: 1px solid #eaeaea;}
    .list-container:last-child{padding-bottom: 0; border-bottom: 0;}
}
.prod-view {
    .prod-vis-container {position: sticky; top: var(--header-height); align-self: flex-start; background-color: #eee;}
    .view-slider {
        .tex-item .item-thumb{aspect-ratio: auto;  height: calc( 100dvh - var(--header-height) );}
        .tex-item:hover .item-thumb .item-img{scale: 1;}
        .swiper-button-next, .swiper-button-prev{width: 42px; height: 42px;}
        .swiper-button-next{right: 20px; background: rgba(34,34,34,.3) url('/assets/site/img/common/arr0102-w.png') no-repeat center / 18px auto;}
        .swiper-button-prev{left: 20px; background: rgba(34,34,34,.3) url('/assets/site/img/common/arr0101-w.png') no-repeat center / 18px auto;}
    }
    .prod-info-container{position: relative; padding: 90px 40px;}
}

.pg-collection {
    .page-title .page-util .searchbar01{max-width: 334px;}
    .related-prod {padding-top: 62px; padding-bottom: 20px;}
    .related-prod .related-title{padding: 0 var(--main-gap); margin-bottom: 22px;}
    .related-prod .related-title .title{font-size: 30px; font-weight: bold; text-transform: uppercase;}
    @media (width <= 1420px) {
        .colorway-panel{padding: 60px 40px;}
        .prod-view .prod-info-container{padding: 60px 40px;}
    }
    @media (width <= 1280px) {
        .page-title .page-util .searchbar01{max-width: 300px;}
    }
    @media (width <= 1200px) {
        .swatch-list{
            .swatch-code{height: 48px; font-size: 14px;}
        }
        .colorway-panel {
            padding: 50px 30px;
            .list-container{padding: 30px 0 28px;}
        }
        .prod-info {
            .prod-header {
                .btn-back{width: 48px; height: 36px; background: url('/assets/site/img/common/arr03.png') no-repeat left center / 28px auto;}
                .prod-title{font-size: 32px;}
            }
            .prod-meta{margin-top: 30px;}
            .prod-colorway{margin-top: 90px;}
            .prod-detail{margin-top: 107px;}
            .prod-detail .desc p{font-size: 15px;; line-height: 26px;}
            .prod-caution{margin-top: 110px;}
        }
        .prod-view .prod-info-container{padding: 50px 30px;}
        .related-prod .related-title .title{font-size: 26px;}
    }
    @media (width <= 1024px) {
        .page-title .page-util .searchbar01{max-width: 240px; height: 38px;}
        .searchbar01 input[type="text"]{font-size: 15px;}
        .searchbar01 .btn-search{padding: 0 17px 0 7px;}
        .colorway-panel{top: auto; inset: 0; width: 100%; height: 100dvh; z-index: 100}
        .prod-view {
            display: block;
            .prod-vis-container{position: relative; top: 0; width: 100%;}
            .view-slider .tex-item .item-thumb{aspect-ratio: 5 / 4; height: auto;}
        }
        .related-prod{padding-top: 0}
        .related-prod .related-title .title{font-size: 22px; margin-bottom: 14px; padding-top: 40px; border-top: 1px solid var(--border-color0101);}
    }
    @media (width <= 860px) {
        .prod-info .prod-header {
            .btn-back{width: 40px; height: 30px; background: url('/assets/site/img/common/arr03.png') no-repeat left center / 24px auto;}
            .prod-title{font-size: 28px;}
        }
        .page-title .page-util .searchbar01{display: none;}
        .related-prod .related-title .title{margin-bottom: 16px;}
    }
    @media (width <= 640px) {
        .swatch-list{
            > ul{gap: 20px;}
            .swatch-code{height: 48px; font-size: 14px;}
        }
        .prod-info {
            .prod-header {
                .btn-back{width: 34px; height: 28px; background: url('/assets/site/img/common/arr03.png') no-repeat left center / 20px auto;}
                .prod-title{font-size: 24px;}
                .tex-tag{height: 20px; font-size: 10px; line-height: 20px;}
                .tex-tag.tag-season{min-width: 0; padding: 0 10px;}
                .tex-tag.tag-best{width: 42px;}
            }
            .prod-meta{margin-top: 20px;}
            .tit-sec .title{width: 114px; height: 38px;}
            .tit-sec .scroll-bounce{margin-top: 20px;}
            .prod-colorway .refer{margin-top: 10px;}
            .prod-colorway{margin-top: 80px;}
            .prod-detail{margin-top: 97px;}
            .prod-caution{margin-top: 100px;}
            .prod-caution .caution > li {font-size: 14px; line-height: 23px; padding-left: 10px; text-indent: -10px;}
        }
        .colorway-list {
            gap: 14px;
            .color-item {flex: 0 0 calc(33.333333333% - 10px);}
            .fabric-color::after {background-size: calc(100% + 1px) auto}
            .color-name{margin-top: 10px;}
            .name-ko{margin-top: 5px;}
        }
        .colorway-panel {
            padding: 0; z-index: 101;
            .colorway-info{display: flex; flex-direction: column; height: 100dvh;}
            .cw-header {
                padding: 30px 20px 10px;
                .swatch-number{font-size: 22px;}
            }
            .cw-body{padding: 0 20px; flex: 1; overflow-y: auto}
        }
        .prod-view {
            .prod-info-container{padding: 40px 20px;}
            .view-slider {
                .tex-item .item-thumb{aspect-ratio: 1 / 1;}
                .swiper-button-next, .swiper-button-prev{display: none;}
            }
        }
        .related-prod{padding-top: 14px;}
        .related-prod .related-title .title{font-size: 23px; padding-top: 34px; text-align: center; margin-bottom: 14px;}
    }
}

.page-vis {
    position: relative; margin-bottom: 42px;
    .page-title {position: absolute; top: 34px;}
    .page-title .title{color: #fff;}
    .page-title .txt-en{display: none}
        /*&.new-prod{background: url('/assets/site/img/contents/page-vis01.jpg') no-repeat center / cover;}*/
    &.new-prod .image{position: relative; aspect-ratio: 1920 / 740;}
    @media (width <= 1280px) {
        margin-bottom: 34px;
        &.new-prod .image{aspect-ratio: 1920 / 860;}
    }
    @media (width <= 1024px) {
         margin-bottom: 26px;
        &.new-prod .image{aspect-ratio: 1920 / 960;}
    }
    @media (width <= 860px) {
        &.new-prod .image{aspect-ratio: 1920 / 1020;}
    }
    @media (width <= 640px) {
        margin-bottom: 14px;
        /*&.new-prod .image{aspect-ratio: 1920 / 700;}*/
        &.new-prod .image{display: none;}
        .page-title {position: relative; top: auto; display: block; padding-top: 60px; padding-bottom: 18px; text-align: center;}
        .page-title .title{color: var(--basic-color); transform: unset}
        .page-title .txt-en{display: block; margin-top: 10px;}
    }
}

.pg-best {
    .page-title{flex-direction: column; align-items: center; justify-content: center;}
    .page-title .txt-en{margin-top: 10px;}
    .rank-slider{padding-top: 47px; padding-bottom: 60px;}
    @media (width <= 1200px) {
        .rank-slider{padding-top: 30px; padding-bottom: 40px;}
    }
    @media (width <= 860px) {
        .rank-slider{padding-top: 10px; padding-bottom: 10px;}
    }
}

/* ==========================================================================
    Edit
   ========================================================================== */
.pg-edit {
    .top-slider {
        .top-vis{position: relative;}
        .top-vis .thumb-img{aspect-ratio: 1880 / 664;}
        .swiper-button-next, .swiper-button-prev{width: 42px; height: auto; aspect-ratio: 1 / 1; margin-top: -71px;}
        .swiper-button-next{right: 30px; background: rgba(34,34,34,.3) url('/assets/site/img/common/arr0102-w.png') no-repeat center / 18px auto;}
        .swiper-button-prev{left: 30px; background: rgba(34,34,34,.3) url('/assets/site/img/common/arr0101-w.png') no-repeat center / 18px auto;}
        .swiper-horizontal>.swiper-pagination-bullets,
        .swiper-pagination-bullets.swiper-pagination-horizontal{bottom: 130px;}
        .thumb-title{display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100px; text-align: center; background-color: #fff;}
        .thumb-title .title{font-size: 24px; font-weight: bold; line-height: 32px;}
        .thumb-title p{font-size: 16px; line-height: 22px; margin-top: 4px;}
    }
    .thumb-list {
        margin-top: 55px;
        > ul{display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 45px var(--main-gap);}
        .thumb-img{aspect-ratio: 1 / 1;}
        .thumb-title{text-align: center; margin-top: 14px;}
        .thumb-title .title{font-size: 18px; font-weight: bold; line-height: 25px; display: -webkit-box; text-overflow: ellipsis; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 2;}
        .thumb-title p{font-size: 14px; line-height: 21px; margin-top: 4px; display: -webkit-box; text-overflow: ellipsis; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 2;}
        .paging{margin-top: 70px;}
    }
    @media (width <= 1200px) {
        .top-slider .top-vis .thumb-img{aspect-ratio: auto; height: 420px;}
        .thumb-list {margin-top: 40px;}
    }
    @media (width <= 1024px) {
        .top-slider {
            .top-vis .thumb-img{height: 380px;}
            .swiper-button-next, .swiper-button-prev{margin-top: -66px;}
            .swiper-button-next{right: 20px;}
            .swiper-button-prev{left: 20px;}
            .swiper-horizontal>.swiper-pagination-bullets,
            .swiper-pagination-bullets.swiper-pagination-horizontal{bottom: 110px;}
            .thumb-title{height: 90px;}
            .thumb-title .title{font-size: 22px; line-height: 30px;}
            .thumb-title p{font-size: 15px; line-height: 22px;}
        }
        .thumb-list {
            margin-top: 30px;
            > ul{grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px var(--main-gap);}
        }
    }
    @media (width <= 860px) {
        .top-slider {
            margin-left: var(--minus-gap); margin-right: var(--minus-gap);
            .top-vis .thumb-img{height: 360px;}
            .swiper-button-next, .swiper-button-prev{display: none}
        }
    }
    @media (width <= 640px) {
        .top-slider {
            .top-vis .thumb-img{height: 360px;}
            .thumb-title{height: 90px;}
            .thumb-title .title{font-size: 22px; line-height: 30px;}
            .thumb-title p{font-size: 15px; line-height: 22px;}
        }
        .thumb-list {
            margin-top: 40px;
            > ul{grid-template-columns: 1fr; gap: 36px var(--main-gap);}
        }
    }
}

.board-view {
    padding-top: 85px;
    padding-bottom: 40px;
    .board-view-top {
        display: flex; justify-content: space-between; align-items: flex-end;
        padding-bottom: 20px;
        .subject{font-size: 38px; font-weight: bold; line-height: 48px;}
        .sub-title{font-size: 18px; color: #666; line-height: 28px; margin-top: 2px;}
        .date{font-size: 14px; font-weight: 500; color: #999; padding-bottom: 2px;}
    }
    .board-view-body {
        padding-top: 40px; padding-bottom: 40px;
        border-top: 1px solid var(--basic-color); border-bottom: 1px solid #eee;
        .view-body p{font-size: 16px;}
    }
    .board-view-foot {
        padding-top: 40px;
        .btn-container {display: flex; justify-content: center; align-items: center;}
    }
    @media (width <= 1200px) {
        padding-top: 70px;
        .board-view-top {
            .subject{font-size: 32px; line-height: 42px;}
            .sub-title{font-size: 17px;}
        }
        .board-view-body{padding-top: 20px; padding-bottom: 20px;}
    }
    @media (width <= 1024px) {
        padding-top: 60px;
        .board-view-top {
            .subject{font-size: 28px; line-height: 38px;}
            .sub-title{font-size: 16px; margin-top: 0;}
        }
        .board-view-body .view-body p{font-size: 15px;}
    }
    @media (width <= 860px) {
        padding-top: 50px;
        .board-view-top {
            padding-bottom: 14px;
            .subject{font-size: 24px; line-height: 32px;}
            .sub-title{font-size: 15px;}
            .date{font-size: 13px;}
        }
    }
    @media (width <= 640px) {
        .board-view-top {
            padding-bottom: 14px;
            .subject{font-size: 24px; line-height: 32px;}
            .sub-title{font-size: 14px; margin-top: 4px;}
            .date{font-size: 13px;}
        }
    }
}
/* ==========================================================================
    Search / 기타페이지
   ========================================================================== */
.pg-search {
    .page-title .page-util .searchbar01{width: 460px;}
    @media (width <= 1200px) {
        .page-title .page-util .searchbar01{width: 360px;}
    }
    @media (width <= 1024px) {
        .page-title .page-util .searchbar01{width: 300px;}
        .item-list > ul{grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 1px;}
    }
    @media (width <= 860px) {
        .page-title .page-util .searchbar01{width: 280px;}
    }
    @media (width <= 640px) {
        .page-title {flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 20px;}
        .page-util{display: block; width: 100%;}
        .page-title .page-util .searchbar01{width: 100%; max-width: 100%;}
        .item-list > ul{grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 1px;}
        .item-list .tex-item  .item-info .item-name{font-size: 16px;}
    }
}

.pg-terms {
    &.sub_container{padding-bottom: 80px;}
    .terms-cont{font-size: 15px; color: #666; line-height: 26px;}
    .terms-cont strong{color: #222;}
}


/* ==========================================================================
    MODAL
    ========================================================================== */
.hm-modal{
    --bs-modal-width: 500px;
    .top-modal{padding: 27px 40px;}
    .top-modal .tit-set .txt-en{font-family: 'Roboto', sans-serif; font-size: 11px; font-weight: bold; color: #bbb; letter-spacing: 0; text-transform: uppercase; margin-bottom: 6px;}
    .top-modal .tit-set .title{font-size: 26px; font-weight: bold; color: var(--basic-color); line-height: 1.4}
    .top-modal .btn-close img{width: 23px;}
    .cont-modal{padding: 20px 40px;}
    .cont-modal::-webkit-scrollbar{width: 14px;}
    .cont-modal::-webkit-scrollbar-track{background: transparent;}
    .cont-modal::-webkit-scrollbar-thumb{border: 4px solid transparent; background-color: #ccc; background-clip: padding-box;}
    .term-box{font-size: 16px; color: #666; line-height: 26px;}
    .term-box .top{margin-bottom: 20px;}
    .term-box .tit{color: #222;}
    .term-box strong.tit{font-weight: 400}
    .term-box .depth{margin: 20px 0;}
    &.privacy{--bs-modal-width: 760px;}
    &.privacy .cont-modal{padding: 32px 40px;}
    &.privacy .cont-modal strong{color: var(--basic-color)}
    &.movie {
        --bs-modal-width: 1080px;
        .top-modal{padding: 22px 32px;}
        .cont-modal{padding: 32px 32px;}
    }

    @media (width <= 767px) {
        .top-modal{padding: 20px 20px;}
        .cont-modal{padding: 20px 20px;}
        &.privacy .cont-modal{padding: 28px 20px;}
        &.movie {
            .top-modal{padding: 14px 20px;}
            .top-modal .tit-set .txt-en{font-size: 10px;}
            .top-modal .tit-set .title{font-size: 22px;}
            .top-modal .btn-close img{width: 18px;}
            .cont-modal{padding: 20px 20px;}
        }
    }
}


/* ==========================================================================
    기존
   ========================================================================== */
.snb{display: none}
/* header - snb - 언어선택 */
.snb .lang_area {
    position: relative;
    float: left;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background: #fff;
}
.snb .lang_area .lang_area_tit {
    display: inline-block;
    height: 50px;
}
.snb .lang_area .lang_area_tit .btn_lang {
    position: relative;
    padding-right: 24px;
    font-size: 14px; font-weight: 600; line-height: 50px;
}
.snb .lang_area .lang_area_tit .btn_lang:after {
    content: "";
    display: block;
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 10px; height: 6px;
    background: url('../img/common/ico-down-black.gif') 0 0 no-repeat;
}
.snb .lang_area .lang_area_tit.active .btn_lang:after {
    background: url('../img/common/ico-down-black-on.gif') 0 0 no-repeat;
}


/* header - snb - 로그인 */
.snb .login_area {
    position: relative;
    float: left;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    margin-left: 20px;
}
.snb .login_area .lang_area_tit {
    display: inline-block;
    height: 50px;
}
.snb .login_area .login_btn {
    position: relative;
    vertical-align: middle;
    padding-right: 24px;
    font-size: 14px; font-weight: 600;
    width: 30px; height: 50px;
    background: url('../img/common/ico-login-black.png') no-repeat center center / 26px auto;
}


/* 공통 옵션 오픈 스타일 */
.snb .option_open {
    min-width: 65px;
    position: absolute;
    left: 50%; top: 47px;
    transform: translateX(-49%);
    -webkit-transform: translateX(-49%);
    -moz-transform: translateX(-49%);
    -o-transform: translateX(-49%);
    padding: 10px 5px;
    background-color: #fff;
    border: 1px solid #dbdbdb; box-sizing: border-box; border-radius: 5px;
}
.snb .option_open a {
    position: relative;
    display: block; color: #888;
    font-size: 14px; line-height: 32px;
    padding: 0 10px; margin-bottom: 10px;
}
.snb .option_open a:last-child {
    margin-bottom: 0px;
}
.snb .option_open a:hover {
    font-weight: 600;
    color: #222; background: #f5f5f5;
}


/* 로그인 옵션 오픈 스타일 */
.snb .login_open {
    min-width: 95px;
}




/* header - snb - 사이트맵 / 모바일 메뉴 */
.menu_all_btn {
    position: relative;
    width: 26px; height: 40px;
    z-index: 99; cursor: pointer;
    float: left;

    transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
.menu_all_btn span {
    display: block;
    position: absolute;
    width: 25px; height: 2px;
    background: #222; border-radius: 9px;
    opacity: 1;
    left: 50%;

    transform: translateX(-50%) rotate(0deg);
    -webkit-transform: translateX(-50%) rotate(0deg);
    -moz-transform: translateX(-50%) rotate(0deg);
    -o-transform: translateX(-50%) rotate(0deg);

    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.menu_all_btn span:nth-child(1) {
    top: 9px;
}
.menu_all_btn span:nth-child(2),
.menu_all_btn span:nth-child(3) {
    top: 18px;
}
.menu_all_btn span:nth-child(4) {
    top: 27px;
}


/* 모바일 메뉴 오픈했을때 button */
.menu_all_btn.open span {

}
.menu_all_btn.open.dark span{
    background: #fff;
}
.menu_all_btn.open span:nth-child(1) {
    width: 0%;
    top: 11px; left: 50%;
}
.menu_all_btn.open span:nth-child(2) {
    margin-left: -10px;
    top: 19px;

    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.menu_all_btn.open span:nth-child(3) {
    margin-left: -10px;
    top: 19px;

    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.menu_all_btn.open span:nth-child(4) {
    width: 0%;
    top: 11px; left: 50%;
}


/* 사이트맵 / 모바일 메뉴 */
#sitemapBG {
    position: fixed;
    width: 95%; height: 95%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    background: #fff;
    z-index: 98; opacity: 0;
    transition: 1s;
    pointer-events: none; will-change: transform;
}
#sitemapBG.dark {
    background: #000;
}
#sitemapNAV{
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh; min-width: 320px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 98; opacity: 0;
    background: transparent;
    transition: all 1s;
    overflow: hidden;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
#sitemapNAV::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}
/*#sitemapNAV:before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    z-index: -1;*/
/*    top: 55%; left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    display: block;*/
/*    width: 430px;*/
/*    height: 180px;*/
/*    background: url("/assets/site/img/common/logo_sitemap.png") no-repeat;*/
/*    background-size: contain;*/
/*    background-position: center top -180px;*/
/*    opacity: 0.3;*/
/*    transition: 0.5s;*/
/*}*/
#sitemapNAV .wrap{
    margin: 0 auto;
    width: 1600px; max-width: 90%;
}
ul.sitemap_list {
    position: fixed;
    position: absolute;
    display: flex; justify-content: space-between;
    width: 100%; min-width: 320px;
    left: 0; top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
ul.sitemap_list > li {
    display: inline-block;
    width: 26.333%; padding-left: 7%;
    /* 100 / 갯수 = width + padding-left */
    margin: 1.5rem 0;
    opacity: 0; vertical-align: top;
    transition: 0.4s cubic-bezier(0.365, 0.84, 0.44, 1);
}
ul.sitemap_list > li:nth-child(1){
    padding-left: 0;
}
ul.sitemap_list > li > a {
    display: block;
    box-sizing: border-box; padding: 0 0 1rem;
    position: relative;
    font-size: 2rem; font-weight: 800;
    color: #222; text-decoration: none;
    transition: 0.5s; pointer-events: none;
}
#sitemapNAV.dark ul.sitemap_list > li > a{
    color: #fff;
}
ul.sitemap_list > li > a::before{
    position: absolute;
    content: "";
    left: 0; bottom: 0;
    z-index: -1;
    width: 100%; height: 1px;
    background-color: #ddd;
}
#sitemapNAV.dark ul.sitemap_list > li > a::before{
    background-color: #fff;
}
ul.sitemap_list > li > a::after{
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    z-index: -1;
    width: 100%; height: 1px;
    background: #222;
    transform: scaleX(0.3); transform-origin: left;
    transition: transform 0.5s;
}
ul.sitemap_list > li:hover > a::after{
    transform: scaleX(1);
    transform-origin: left;
}
ul.sitemap_list .sub_menu{
    margin-top: 6px;
    padding-top: 14px;
}
.pc-gnb ul.sitemap_list .sub_menu{
    display: block !important;
}
ul.sitemap_list .sub_menu li{
    margin: 15px 0;
}
ul.sitemap_list .sub_menu li a{
    display: inline-block; vertical-align: middle;
    color: #333; font-size: 1.1rem;
    white-space: nowrap;
}
#sitemapNAV.dark ul.sitemap_list .sub_menu li a{
    color: #fff;
}
ul.sitemap_list .sub_menu li a:hover,
ul.sitemap_list .sub_menu li a:focus{
    font-weight: 600;
    color: #222;
}
ul.sitemap_list .sub_menu li a::before{
    display: none;
}


/* 오픈했을때 */
#sitemapBG.open{
    display: block; opacity: 1;
    pointer-events: auto;
    width: 100%; height: 100%;
    border-radius: 0;
}
#sitemapNAV.open{
    pointer-events: auto;
    opacity: 1;
    width: 100%; height: 100vh;
    border-radius: 0;
}
#sitemapNAV.dark.open{

}
#sitemapNAV.open:before{
    background-position: center center;
    transition-delay: 0.5s;
}
#sitemapNAV.open ul.sitemap_list > li{
    opacity: 1;
    /*transform: translateX(0);*/
}

/*모바일메뉴*/
.menu_all_btn.open span{width: 20px;}
.right-sidebar.m-gnb {
    .gnb-top{padding: 0 var(--main-gap);}
    .gnb-top h2 {padding: 0; display: flex; align-items: center; height: var(--header-height); border-bottom: 1px solid var(--border-color0101);}
    ul.sitemap_list{margin-top: var(--header-height); padding: 19px var(--main-gap);}
    ul.sitemap_list > li{padding: 8px 5px; border-bottom: 0; }
    ul.sitemap_list > li > a{font-size: 16px; font-weight: bold; line-height: 36px; text-transform: uppercase;}
    ul.sitemap_list > li > a:hover{text-decoration: underline; text-underline-offset: 3px;}
    ul.sitemap_list > li:not(:has(.sub_menu)) > a::after{width: 8px; height: 13px; background: url('../img/common/arr0301.png') no-repeat 0 0 / 8px auto;}
    ul.sitemap_list > li:has(.sub_menu) > a::after{width: 13px; height: 8px; background: url('../img/common/arr0302.png') no-repeat center / 13px auto; transform: none; transition: .2s ease-out;}
    ul.sitemap_list > li:has(.sub_menu).active > a::after{rotate: 180deg}

    ul.sitemap_list .sub_menu{ margin-top: 0; padding-left: 12px; padding-top: 4px;}
    ul.sitemap_list .sub_menu li a{font-size: 14px; color: #999; padding: 11px 0; text-transform: uppercase}
    ul.sitemap_list .sub_menu li a.on{color: var(--basic-color);}
    /*ul.sitemap_list .sub_menu li a::before{content: ""; position: relative; top: -1px; display: inline-block; width: 5px; height: 2px; background-color: #999; vertical-align: middle; margin-right: 8px;}*/
    ul.sitemap_list .sub_menu li a.on::before{background-color: var(--basic-color);}
    .searchbar-wrap{padding: 0 var(--main-gap)}
}


/* 모바일 메뉴 - 스타일 */
.m-gnb {
    display: none;
    position: relative; min-width: 320px;
}
.m-gnb .gnb-top {
    position: fixed; top: 0; right: 0;
    width: 100%; max-width: 420px; max-height: 165px; min-width: 320px;
    z-index: 1;
}
.m-gnb .gnb-top h2 {
    padding: 20px 15px;
}
.m-gnb .gnb-top h2 p {
    margin-top: 15px;
}
.m-gnb .gnb-top .gnb-quick {
    padding: 15px 0;
    border-top: 1px solid #555;
    overflow: hidden;
    background: #222;
}
.m-gnb .gnb-top .gnb-quick a {
    float: left;
    position: relative;
    display:block; width: 50%;
    text-align: center;
    color: #fff;
}
.m-gnb .gnb-top .gnb-quick a::after {
    content: '';
    display: block; width: 1px; height: 15px;
    position: absolute; right: 0; top: 50%;
    background: #555;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.m-gnb .gnb-top .gnb-quick a:last-child::after {
    content: none;
}
.m-gnb ul.sitemap_list {
    position: relative;
    top: 0; transform: translateY(0);
    display: block;
    width: auto;
    padding: 0 15px 150px;
    margin-top: 165px;
}
.m-gnb ul.sitemap_list > li {
    width: 100%;
    padding-left: 0;
    padding: 20px 0px; margin: 0;
    border-bottom: 1px solid #e8e8e8;
    opacity: 0;
    transform: translateX(50%);
}
.m-gnb ul.sitemap_list > li.active:before{
    width: 100%;
}
.m-gnb ul.sitemap_list > li:nth-child(1){
    transition-delay: 0.05s;
}
.m-gnb ul.sitemap_list > li:nth-child(2){
    transition-delay: 0.1s;
}
.m-gnb ul.sitemap_list > li:nth-child(3){
    transition-delay: 0.15s;
}
.m-gnb ul.sitemap_list > li:nth-child(4){
    transition-delay: 0.2s;
}
.m-gnb ul.sitemap_list > li:nth-child(5){
    transition-delay: 0.25s;
}
.m-gnb ul.sitemap_list > li:nth-child(6){
    transition-delay: 0.3s;
}
.m-gnb ul.sitemap_list > li:nth-child(7){
    transition-delay: 0.35s;
}
#sitemapNAV.open .m-gnb ul.sitemap_list > li{
    opacity: 1;
    transform: translateX(0);
}
.m-gnb ul.sitemap_list > li > a {
    display: block;
    font-size: 1.1rem; font-weight: 600; color: #222;
    padding: 0;
}
#sitemapNAV.open .m-gnb ul.sitemap_list > li > a {
    pointer-events: auto;
}
.m-gnb ul.sitemap_list > li > a::before{
    display: none;
}
.m-gnb ul.sitemap_list > li > a::after {
    transition: transform 0.5s;
    display: block;
    width: 10px; height: 6px;
    z-index: 9;
    top: 50%; bottom: auto; left: auto; right: 0;
    background: url('../img/common/ico-down-black.gif') 0 0 no-repeat;
    transform-origin: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.m-gnb ul.sitemap_list > li.active > a::after {
    background: url('../img/common/ico-down-black-on.gif') 0 0 no-repeat
}
.m-gnb ul.sitemap_list .sub_menu {
    display: none;
    margin-top: 15px; padding-top: 0; border-top: 0;
}
.m-gnb ul.sitemap_list .sub_menu li {
    margin: 0;
}
.m-gnb ul.sitemap_list .sub_menu li a {
    display: block; padding: 10px 0;
    color: #888;
}
.m-gnb ul.sitemap_list .sub_menu li a.on{
    color: #222;
}
.m-gnb ul.sitemap_list .sub_menu li a:hover,
.m-gnb ul.sitemap_list .sub_menu li a:focus{
    color: #222;
}
.m-gnb ul.sitemap_list .sub_menu li a::before {
    content: none;
}
.m-gnb ul.sitemap_list > li.active {

}

@media screen and (max-width:1280px) {
    #sitemapBG{
        background: rgba(0, 0, 0, 0.7);
        width: 100%; height: 100%;
        border-radius: 0;
    }
    #sitemapNAV{
        border-radius: 0;
        left: auto; right: 0;
        max-width: 420px;
        background: #fff;
        overflow-y: auto;

    }
    #sitemapNAV:before{
        display: none;
    }

    #sitemapNAV .pc-gnb {
        display: none;
    }
    .m-gnb {
        display: block;
        /* overflow: hidden; */
        overflow-y: scroll;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }
    .m-gnb::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera*/
    }
}
@media screen and (max-width:500px) {

}
@media screen and (max-width:460px) {
    .m-gnb .gnb-top h2 {
        padding: 15px 15px;
    }
}










/*********** Sub Visual ***********/
.sub_visual {
    position: relative; overflow: hidden;
    width: 100%; height: 320px;
    margin: 0 auto; margin-top: var(--header-height);
    transition:all .1s linear; z-index:8;
}
.sub_visual .wrap {
    position: absolute;
    width: 100%; height: 100%; max-width: 1280px;
    top: 0; left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    margin:0 !important;
    z-index: 5;
}
.sub_visual .text{
    position: absolute;
    width: 100%;
    top: 50%; left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    text-align: center;
    z-index: 10;
    padding: 0; margin-top: -30px;
    color: #fff;
}
.sub_visual h2 {
    font-size: 40px; font-weight: 500;
}
.sub_visual p {
    color: #aaa;
}


/* Sub nav - PC */
.subdepth {
    position: relative;
    width: 100%; height: 65px; max-width: 1600px;
    margin: 0 auto; margin-top: -64px;
    background: #fff;
    z-index: 10;
}
.subdepth .inner{
    width: 1600px; margin: auto;
}
.subdepth .bgn {
    position: relative;
    text-align: center;
}
.subdepth .bgn span {
    display: inline-block;
    line-height: 65px;
}
.subdepth .bgn span a {
    display: block; position: relative;
    margin: 0 25px;
    white-space: nowrap;
    transition: 0.2s;
    transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
.subdepth .bgn span a.on {
    color: #222;
    font-weight: 700;
}
.subdepth .bgn span a.on::after {
    content: '';
    display: block; position: absolute;
    bottom: 0;
    width: 100%;  height: 3px;
    background: #222;
}


/* Sub nav - Mobile */
.submenu_select {
    display: none;
    text-align: left;
    border-bottom: 1px solid #ddd; box-sizing: border-box;
}
.submenu_select .inner {
    width: 100%;
}
.submenu_select .home {
    display: inline-block;
    width: 60px; height: 52px;
    vertical-align: middle;
    position: relative;
}
.submenu_select .main_menu {
    position: relative;
    display: inline-block;
    width: 250px; height: 52px;
    vertical-align: middle;
}
.submenu_select .sub_menu {
    display: inline-block;
    width: 250px;
    vertical-align: middle;
    position: relative;
}
.submenu_select .home::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select .home a {
    display: block; text-indent: -9999px; margin: 0 auto;
    width: 100%; height: 100%;
    background: url('../img/sub/home_ic.png') no-repeat center;
}
.submenu_select .main_menu::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select .sub_menu::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select button {
    border: none; outline: none; cursor: pointer;
    font-size: 14px; color: #222; letter-spacing: -0.8px; line-height: 52px;
    background: url('../img/sub/submenu_arr.png') transparent no-repeat 88% center;
    width: 100%; text-align: left; box-sizing: border-box;
    padding: 0 20px;
}
.submenu_select .main_menu ul,
.submenu_select .sub_menu ul {
    display: none;
    position: absolute;
    top: 52px; left: -2px;
    width: 100%;
    padding: 10px 0;
    text-align: left;
    background: #fff;
    border-top: 1px solid #eee; box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9;
}
.submenu_select .main_menu ul li:hover,
.submenu_select .sub_menu ul li:hover{
    background: #f7f7f7;
}
.submenu_select .main_menu ul li a,
.submenu_select .sub_menu ul li a{
    display: block;
    font-size: 14px; color: #222; letter-spacing: -0.8px;
    box-sizing: border-box; padding: 5px 20px;
}


.sub_visual .visual_img {
    display:block;
    position:absolute;
    z-index:3;
    width: 100%;
    height:100%;
    margin:0 0 0 -50%;
    left:50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sub_visual .visual_img::after {
    content: '';
    display: block;
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
    background: rgba(0,0,0,.45);
}
.sub_visual .visual_img img{
    animation:ani_slide1 3s ease-in-out;
    display:block;
    margin:0 auto;
    z-index:8;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes ani_slide1 {
    0% {margin-top: 0px;}
    50% {margin-top: -40px;}
    100% {margin-top: 0;}
}
@media screen and (max-width:1600px) {
    .subdepth {
        width: 95%;
    }
    .subdepth .inner {
        width: 100%;
    }
}

@media screen and (max-width:1280px) {
    .sub_visual {
        margin-top: 80px;
    }
}

@media screen and (max-width:1024px) {
    .sub_visual {
      height: auto;
      padding-bottom: 20%;
      margin-top: 80px;
    }
    .subdepth {
        display: none;
    }
    .submenu_select {
        display: block;
    }
    .sub_visual .text {
        margin-top: 0;
    }
    .sub_visual h2 {
        font-size: 30px;
    }
}

@media screen and (max-width:860px) {
    .sub_visual {
        margin-top: 65px;
    }
    .submenu_select .home {
        width: 10%;
    }
    .submenu_select .main_menu {
        width: 42%;
    }
    .submenu_select .sub_menu {
        width: 42%;
    }
    .submenu_select .sub_menu::after {
        content: none;
    }
}
@media screen and (max-width:640px) {
    .sub_visual .text {
        display: none;
    }
}
@media screen and (max-width:460px) {

    .sub_visual {
        margin-top: 55px;
        padding-bottom: 30%;
    }
    .submenu_select .main_menu ul,
    .submenu_select .sub_menu ul {
        top: 45px;
    }
    .submenu_select .main_menu {
        height: 45px;
    }
    .submenu_select .home {
        height: 45px;
    }
    .submenu_select button {
        height: 45px; line-height: 45px;
    }

}




/*********** Sub Layout ***********/
.sub_container {
    clear:both; position:relative;
    margin:0 auto;  /*z-index:1;*/
    /*overflow:hidden ;*/
    padding: var(--header-height) 0 0;
    min-height:400px;
 }
.sub_contents {
    z-index:10;
}






/*********** Popup ***********/
.div_popup{
    z-index: 99 !important;
    border: 1px solid rgba(0,0,0,.1); box-sizing: border-box;
    min-width: 320px;
}
.div_popup table {
    width: 100%;
}
.div_popup .divpop-img img {
    width: 100%;
}
.div_popup .divpop-bottom{
    background: #fff;
}
.div_popup .divpop-bottom a td::after {
    content: ''; display: block; clear: both;
}
.div_popup .divpop-bottom a{
    display: inline-block;
    color: #222;
    font-size: 14px; letter-spacing: -0.5px; vertical-align: middle;
    margin: 0 20px; line-height: 40px;

    transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);
}
.div_popup .divpop-bottom a:hover {
    color: #999;
}
.div_popup .divpop-bottom a.close {
    float: right;
    position: relative;
    padding: 0 25px 0 0;
}
.div_popup .divpop-bottom a.close::before {
    content: ''; display: inline-block;
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);

    transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);

    width: 17px; height: 1px;
    background: #222;
}
.div_popup .divpop-bottom a.close::after {
    content: ''; display: inline-block;
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -moz-transform: translateY(-50%) rotate(-45deg);
    -o-transform: translateY(-50%) rotate(-45deg);

    transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);

    width: 17px; height: 1px;
    background: #222;
}
.div_popup .divpop-bottom a.close:hover::before,
.div_popup .divpop-bottom a.close:hover::after {
    background: #999;
}
.div_popup .divpop-bottom a.today {
    float: left;
}

@media screen and (max-width:640px){
    .div_popup{
        z-index: 999999 !important;
        width: 90% !important;
        top: 50% !important; left: 50% !important;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
    }
}





/********** 서브페이지 타이틀 **********/
.sub_tit{
  position: relative;
}
.sub_tit strong{
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 2rem;
}
.sub_tit_s span{
    display: block;
    font-size: 1.125rem;
    color: #666;  letter-spacing: -0.8px;
    line-height: 1;
}

.section_title{
  border-bottom: 2px solid #ccc;
}
.section_title span{
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0 1% 6px 1%;
  letter-spacing: -1px;
  margin-bottom: -2px;
  border-bottom: 2px solid #444;
  color: #222;
}

@media screen and (max-width:1440px){
  .sub_tit::before{
    top: -88px;
  }
}
@media screen and (max-width:860px){
  .sub_tit::before{
    top: -90px;
  }
  .sub_tit strong{
    font-size: 2.2rem;
  }
  .sub_tit_s span{
    font-size: 1rem;
  }
}
@media screen and (max-width:860px){
  .sub_tit strong{
    font-size: 1.8rem;
    margin-bottom : 1.5rem;
  }
}





/* ==========================================================================
   안 씀
   ========================================================================== */

/* footer - 관련사이트 */
.family_site {
    display: block;
    width: 230px;
    position: absolute;
    bottom: 0; right: 0;
    display: none;
}
.family_site > .btn_fs_toggle {
    position: relative; display: block;
    line-height: 45px;
    padding: 0 80px 0 20px; color: #fff;
    background: #444;
}
.family_site > .btn_fs_toggle .plus {
    display: block;
    width: 18px; height: 18px;
    margin: -1px 0 0;
    position: absolute;
    top: 50%; right: 22px;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.family_site > .btn_fs_toggle .plus:before {
    content: "";
    display: block;
    width: 100%; height: 2px;
    background: #aaa;
    position: absolute;
    top: 50%; left: 50%;

    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.family_site > .btn_fs_toggle .plus:after {
    content: "";
    display: block;
    width: 2px; height: 100%;
    background: #aaa;
    position: absolute;
    top: 50%; left: 50%;

    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.family_site .site_list {
    display: none;
    position: absolute;
    bottom: 45px; left: 0;
    width: 100%; max-height: 230px;
    overflow-y: auto; z-index: 1;
    border: 1px solid #e9e9e9; box-sizing: border-box;
    color: #555; background: #fff;
    word-break: break-all;
}
.family_site .site_list li:hover {
    background: rgba(0, 0, 0, 0.05);
}
.family_site .site_list li a {
    position: relative; display: block;
    padding: 13px 20px; font-size: 13px;
}
.family_site .site_list li a:before {
    content: "";
    display: block;
    width: 85%; height: 1px;
    box-sizing: border-box; border-bottom: 1px dashed #e8e8e8;
    position: absolute;
    bottom: 0; left: 50%;

    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.family_site .site_list li:last-child a:before {
    display: none;
}

/*********** floating - 우측 하단 고정메뉴 ***********/
.floating_menu {
    display: none;
    position: fixed;
    right: 50px; bottom: 73px;
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -o-transform: translateY(15px);
    z-index: 2;
}
.floating_menu ul.sns {
    display: block;
    clear: both; transition: all 200ms linear;
    margin-bottom: 15px;
}
.floating_menu ul.sns li {
    position: relative;
    height: 46px; line-height: 46px;
    margin: 0 0 10px 0; text-align: center;
    transition: all 200ms linear;
}
.floating_menu ul.sns li::after {
    content: ''; display: block; clear: both;
}
.floating_menu ul.sns li:last-child {
    margin: 0;
}
.floating_menu ul.sns li a {
    float: right;
    display: block;
    border-radius: 58px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.35);
}
.floating_menu ul.sns li.naver_talktalk a {
    background: #00c63b; color: #fff;
}
.floating_menu ul.sns li.kakao a {
    background: #fae100; color: #111;
}
.floating_menu ul.sns li.ars {
    display: none;
}
.floating_menu ul.sns li.ars a {
    background: #b01e46; color: #fff;
}
.floating_menu ul.sns li.inquiry a {
    background: #111; color: #fff;
}
.floating_menu ul.sns li a span {
    position: relative;
    display: block; width: 0px; height: 46px;
    color: rgba(0,0,0,0); text-align: left;
    overflow: hidden;
    padding: 0 0 0 46px;
}
.floating_menu ul.sns li a:hover span,
.floating_menu ul.sns li a:focus span{
    width: 100px;  transition: all 200ms linear;
    font-size: 14px; font-weight: 500; color: #fff;
}
.floating_menu ul.sns li.kakao a:hover span,
.floating_menu ul.sns li.kakao a:focus span {
    color: #3c1e1e;
}
.floating_menu ul.sns li a span:before {
    content: "";
    position: absolute; top: 0; left: 0;
    display: block; width: 46px; height: 46px;
    border-radius: 50%;
    background: url("../img/common/floating_menu01.png") no-repeat;
    background-size: 40px; background-position: center center;
}
.floating_menu ul.sns li a:hover span:before,
.floating_menu ul.sns li a:focus span:before {
    border-radius: 50% 0 0 50%; transition: all 200ms linear;
}
.floating_menu ul.sns li.naver_talktalk a span:before {
    background-image: url("../img/common/floating_menu01.png");
}
.floating_menu ul.sns li.kakao a span:before {
    background-image: url("../img/common/floating_menu02.png");
}
.floating_menu ul.sns li.ars a span:before {
    background-image: url("../img/common/floating_menu04.png");
}
.floating_menu ul.sns li.inquiry a span:before {
    background-image: url("../img/common/floating_menu03.png");
}


/* 상단 바로가기 */
.progress-wrap {
    display: block;
    width: 46px; height: 46px;
    border-radius: 50px; box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);
    opacity: 0; z-index: 101;
    visibility: hidden; cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background: #fff;
    float: right;
    display: none;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap::after {
    content: '';
    display: block;
    width: 16px; height: 16px;
    position: absolute;
    left: 50%; top: 32%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 1;
    background: url(../img/common/scroll_top_ic.png) no-repeat center;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
    opacity: 0;
}
.progress-wrap::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%; top: 32%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 16px; height: 16px;
    background: url(../img/common/scroll_top_ic_hover.png) no-repeat center;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    opacity: 0; z-index: 2;
}
.progress-wrap:hover::before {
    opacity: 1;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: #444;
    stroke-width: 5;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


@media screen and (max-width:1280px) {
    .floating_menu {
        right: 20px; bottom: 40px;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
    }
    .progress-wrap {
        width: 40px; height: 40px;
    }
}

/* footer - SNS */
footer .sns {
    position: absolute;
    top: 0; right: 0;
}
footer .sns::after {
    content: ''; display: block; clear: both;
}
footer .sns li {
    float: left;
    margin: 0 0 0 16px;
}
footer .sns li:first-child {
    margin: 0;
}
footer .sns li a {
    display: block; width: 40px; height: 40px;
    border: 1px solid rgba(0,0,0,0); box-sizing: border-box;
    font-size: 0; text-indent: -9999px; border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #444444;
    background-size: 28px;
}
footer .sns li a.in {
    background-image: url("../img/common/ico-sns-in.png");
}
footer .sns li a.fb {
    background-image: url("../img/common/ico-sns-fb.png");
}
footer .sns li a.nb {
    background-image: url("../img/common/ico-sns-nb.png");
}
footer .sns li a.yt {
    background-image: url("../img/common/ico-sns-yt.png");
    background-size: 26px;
}