@charset "utf-8";
@import url('https://fonts.cdnfonts.com/css/exmouth');

.wrap,
body,
html {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

.scroll_wrap::-webkit-scrollbar,
html::-webkit-scrollbar {
    display: none;
}
.wrap {
    min-width: 1550px;
}
.fit_in {
    padding: 0 20px;
}
.inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.in_1200 {
    max-width: 1200px;
}
.in_1440 {
    max-width: 1440px;
}
.in_1470 {
    max-width: 1470px;
}
.in_1680 {
    max-width: 1684px;
}
.in_full {
    max-width: 100%;
}

/*main_vd*/
.main_vd {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}
.main_vd iframe {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(177.778vh);
    min-width: 100%;
    height: calc(56.25vw);
    min-height: 100%;
    transform: translate(-50%,-50%);
}

/*header*/
header {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    min-width: 1500px;
    height: 100px;
    padding: 0 20px;
    background-color: #fff;
    z-index: 99;
    transition: 0.3s;
}
header::before {
    position: absolute;
    top: 99px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e7e7e7;
    content: "";
    transition: 0.3s;
}
header .head_in {
    position: relative;
    max-width: 1700px;
    height: 100px;
    margin: 0 auto;
}
header h1 {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -21px;
}
header h1 a {
    display: block;
    width: 250px;
    height: 42px;
    background: url("../img/logo-bl.svg") no-repeat center / contain;
    transition: 0.3s;
}
header .gnb {
    text-align: center;
}
header .gnb .dep1 {
    display: flex;
    margin-left: -150px;
    justify-content: center;
}
header .gnb .dep1 > li > a {
    display: block;
    padding: 0 15px;
}
header .gnb .dep1 > li > a span {
    display: block;
    position: relative;
    padding: 0 15px;
    color: #231916;
    font-size: 1rem;
    line-height: 100px;
    transition: 0.3s;
}
header .gnb .dep1 > li > a span::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #d0cabc;
    content: "";
    transform: scaleX(0);
    transition: 0.3s;
}
header .gnb .dep2 {
    margin-top: 30px;
}
header .gnb .dep2 li ~ li {
    margin-top: 20px;
}
header .gnb .dep2 li a {
    display: block;
    color: #9f9f9f;
    font-size: 0.94rem;
    transition: 0.3s;
}
header .gnb .dep2 li a:hover {
    /* color: #231916; */
    font-weight: 500;
}
header .rig {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -16px;
    align-items: center;
}
header .rig .open {
    padding: 0 30px;
    background-color: #231916;
    color: #d0cabc;
    font-size: 0.94rem;
    line-height: 32px;
    letter-spacing: -0.06em;
    text-align: center;
    border-radius: 30px;
    transition: 0.3s;
}
header .rig .tel {
    margin-left: 25px;
}
header .rig .tel p {
    padding-left: 20px;
    background: url("../img/tel-icon.png") no-repeat left center;
    color: #231916;
    font-family: "Jost";
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}
header .gnb .dep1 > li:hover > a span::before {
    transform: scaleX(1);
}
header.trp {
 background-color: rgba(0, 0, 0, 0.1); /* 약간 어두운 반투명 배경 */
    backdrop-filter: blur(10px); /* 흐림 정도 */
    -webkit-backdrop-filter: blur(10px); /* 사파리 호환용 */
    border-bottom: 1px solid rgba(234, 234, 234, 0.5);
}
header.trp::before {
    opacity: 0;
}
header.trp h1 a {
    background-image: url("../img/logo.svg");
}
header.trp .gnb .dep1 > li > a span {
    color: #fff;
}
header.trp .rig .open {
    background-color: #000;
    color: #f0af9a;
}
header.trp .rig .tel p {
    background-image: url("../img/tel-icon-wh.png");
    color: #fff;
}
header:hover {
    height: 340px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
header:hover::before {
    opacity: 1;
}
header:hover h1 a {
    background-image: url("../img/logo-bl.svg");
}
header:hover .gnb .dep1 > li > a span {
    color: #231916;
}
header:hover .rig .open {
    background-color: #231916;
    color: #d0cabc;
}
header:hover .rig .tel p {
    background-image: url("../img/tel-icon.png");
    color: #231916;
}

header .service {
    width: 150px;
}

header.trp .service {
    width: 150px;
}

header .service .dep2 li a{
    color: #231916;
}

header:hover .service .dep2 li a{
    color: #000;
}

header.white {
    background: transparent;
}
header.white:hover {
    background: #fff;
}

header.white::before {
    opacity: 0;
}
header.white:hover::before {
    opacity: 1;
}

/*submenu*/
.submenu {
    position: relative;
    padding-top: 180px;
    z-index: 5;
}
.submenu .sub_tab {
    display: flex;
    border-bottom: 1px solid #eaeaea;
    justify-content: space-between;
    align-items: center;
}
.submenu .sub_tab .tit {
    padding-bottom: 40px;
    color: #050505;
    font-weight: 600;
    font-size: 2.5rem;
}
.submenu .sub_tab .depth ul {
    display: flex;
}
.submenu .sub_tab .depth ul li a {
    display: block;
    position: relative;
    padding: 25px 25px 40px;
    color: #8c8c8c;
    font-size: 1.06rem;
}

.submenu .sub_tab .depth.type2 ul li a {
    display: block;
    position: relative;
    padding: 25px 15px 40px;
    color: #8c8c8c;
    font-size: 1.06rem;
}

.submenu .sub_tab .depth ul li a::before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #d0cabc;
    content: "";
    opacity: 0;
}
.submenu .sub_tab .depth ul li.active a {
    color: #050505;
    font-weight: 500;
}
.submenu .sub_tab .depth ul li.active a::before {
    opacity: 1;
}

/*footer*/
footer {
    position: relative;
    padding: 100px 20px;
    background-color: #000;
    text-align: center;
}
footer .foot_txt {
    display: flex;
    gap: 0 20px;
    align-items: center;
    justify-content: center;
}
footer .foot_txt p {
    display: flex;
    align-items: center;
}
footer .foot_txt p em {
    color: #636464;
    font-size: 0.81rem;
}
footer .foot_txt p em span {
    color: #898989;
}
footer .foot_txt p strong {
    color: #9fa0a0;
    font-weight: 600;
    font-size: 1rem;
}
footer .tel {
    color: #898989;
    font-family: 'Pretendard';
    font-weight: 500;
    font-size: 1.5rem;
}
footer .top {
    position: absolute;
    top: 50%;
    right: 5.7292vw;
    margin-top: -12px;
    cursor: pointer;
}

/*fix_btn*/
.fix_btn {
    position: fixed;
    right: 5.7292vw;
    bottom: 60px;
    z-index: 50;
}
.fix_btn a {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 138px;
    height: 138px;
    background-color: rgba(208, 202, 188, 0.6); /* d0cabc의 반투명 버전 */
    color: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5); /* 흰색 반투명 1px 테두리 */
    backdrop-filter: blur(6px); /* 배경 흐림 효과 */
    -webkit-backdrop-filter: blur(6px); /* 사파리 호환 */
}
.fix_btn a p {
    position: relative;
    z-index: 1;
}
.fix_btn a p span {
    display: block;
    margin-bottom: 5px;
    font-family: 'Mulish';
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-align: center;
}
.fix_btn a p strong {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 0.75rem;
    text-align: center;
}
.fix_btn a p em {
    display: block;
    width: 32px;
    height: 6px;
    margin: 0 auto;
    background: url("../img/intro-btn-arr-bl.png") no-repeat center / contain;
    transition: 0.3s;
}
.fix_btn a:hover p em {
    transform: translate(20%,0);
}
.fix_btn.none_fix {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: auto;
}
.fix_btn.on {
    position: absolute;
    bottom: calc(100% + 60px);
}

/*vd*/
.vd {
    position: relative;
    padding-bottom: 56.25%;
}
.vd iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/*tab*/
.con_tab ul{display:flex;margin-bottom:50px;}
.con_tab ul li{text-align:center;line-height:50px;background-color: #f0f0f0;color: #000;border: 1px solid #dedede;transition:0.2s;cursor:pointer;}
.con_tab ul li.on{background-color: #d0cabc;border: 1px solid #d0cabc;}
.con_tab.tab2 ul{justify-content:space-around; width: 100%;}
.con_tab.tab2 li{width: 100%;}
.con_tab.tab7 ul li{width:50%;}
.con_tab.tab10 li{width: 100%; letter-spacing:-0.04em;}
.with_box{display:none; text-align: center;}
.with_box.on{display:block;}

.with_box .list_btn { margin-top: 60px; }
.with_box .list_btn a { display: block; width: 220px; margin: 0 auto; border: 1px solid #1d2f3f; color: #1d2f3f; font-size: 1.125rem; line-height: 58px; text-align: center; border-radius: 50px; transition: 0.3s; }
.with_box .list_btn a:hover { background-color: #1d2f3f; color: #fff; }

/*scroll*/
.scroll {
    position: fixed;
    bottom: 50px;
    left: 50%;
    width: 19px;
    height: 46px;
    margin-left: -10px;
    background: url("../img/scroll-wh.png") no-repeat center / contain;
    animation: scroll 2.5s infinite;
    z-index: 10;
    transition: 0.6s;
}
.scroll.off {
    display: none;
}
.fp-viewing-5 .scroll,
.fp-viewing-6 .scroll {
    background-image: url("../img/scroll-bl.png");
}
.fp-viewing-6 .scroll {
    opacity: 0;
}
@keyframes scroll {
    0% {
        transform: translate(0,20px);
    }
    50% {
        transform: translate(0,0);
    }
    100% {
        transform: translate(0,20px);
    }
}

#fp-nav ul li a.active + .fp-tooltip{opacity: 1 !important; width: auto !important;}

#fp-nav.black a span{background: #231916 !important;}
#fp-nav.black a.active span{border: 2px solid #231916 !important; background: transparent !important;}
#fp-nav.black ul li a.active + .fp-tooltip{color:#231916 !important;}

#fp-nav ul li a.active span{background: transparent;border:2px solid #fff;width: 8px;height: 8px;position: absolute;transform: translate(-50%, -50%);margin: 0;transition: none;}


#fp-nav ul li a:not(.active) span{background: #fff;border: none;width: 6px;height: 6px;transition: none;transform: translate(-50%, -50%);position: absolute;margin: 0;}

#fp-nav ul li{font-size: 12px;margin: 10px;width: 12px;height: 12px;}
#fp-nav ul li .fp-tooltip{font-size: 12px; line-height: 12px; font-weight: 600; letter-spacing: 0.04em; top:0px}
#fp-nav ul li:last-of-type{
    display: none;
}
#fp-nav ul li a,.fp-slidesNav ul li a {display: flex;position: relative;z-index: 1;width: 12px;height: 12px;transition: none;}

/*main page*/

/*section01*/
.main-vis {
    position: fixed;;
    width: 100%;
    height: 100%;
}

.main-scroll{
    width: 1760px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    bottom:80px;
    height: 106px;
    transform: translate(-50%);
    text-align: left;
    animation: scroll 2s infinite linear;
}

@keyframes scroll {
    0% {
        transform: translate(-50%,0);
    }
    50% {
        transform: translate(-50%,-15px);
    }
    100% {
        transform: translate(-50%,0);
    }
}

.main-vis-item {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 200px;
    width: 280px;
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.main-vis-txt01 {
    display: block;
    height: 75px;
    color: #fff;
    font-size: 23px;
    line-height: 30px;
    letter-spacing: -0.05em;
	text-shadow: 0 10px 12px rgba(0, 0, 0, 0.2);
}
.main-vis-txt02 {
    display: block;
    height: 40px;
    color: #fff;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -0.05em;	
    font-weight: 600;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.main-vis-line {
    display: block;
    width: 1px;
    height: 60px;
    margin: 50px auto 80px;
    background: #fff;
}
.main-vis .bg {
    transition: 2.5s;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.1);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main-vis .bg img{
    max-width: none;
    min-width: 100%;
    height: 100%;
    min-height: 980px;
}

.main-vis.active .bg {
    transform: scale(1);
}

.main-vis .logo-wrap .logo-type1 {
    width: 270px;
    height: 160px;
    
}
.main-vis .logo-wrap .logo-type2 {
    width: 170px;
}

.main-vis .logo-type1 {
    fill: none;
    stroke: #f0af9a;
    stroke-width: 1px;
}

.main-vis .logo-type1 .l1 {
    stroke-dasharray: 140px;
    stroke-dashoffset: 140px;
}
.main-vis .logo-type1 .l2 {
    stroke-dasharray: 85px;
    stroke-dashoffset: 85px;
}
.main-vis .logo-type1 .l3 {
    stroke-dasharray: 90px;
    stroke-dashoffset: 90px;
}
.main-vis .logo-type1 .l4 {
    stroke-dasharray: 90px;
    stroke-dashoffset: 90px;
}
.main-vis .logo-type1 .l5 {
    stroke-dasharray: 120px;
    stroke-dashoffset: 120px;
}

.main-vis.active .logo-type1 .l1 {
    animation: brand_line 1s linear forwards;
}
.main-vis.active .logo-type1 .l2 {
    animation: brand_line 1s linear forwards;
}
.main-vis.active .logo-type1 .l3 {
    animation: brand_line 1s linear forwards;
}
.main-vis.active .logo-type1 .l4 {
    animation: brand_line 1s linear forwards;
}
.main-vis.active .logo-type1 .l5 {
    animation: brand_line 1s linear forwards;
}

.main-vis .logo-type2 {
    fill: #231916;
    stroke: none;
    stroke-width: 1px;
    opacity: 0;
    transition: 1.2s;
}
.main-vis.active .logo-type2 {
    opacity: 1;
    transition-delay: 1s;
	margin-bottom: 20px;
}

.main-vis-txt01,
.main-vis-txt02,
.main-vis-line{
    opacity: 0;
    transition: 1.4s;
}
.main-vis.active .main-vis-txt01,
.main-vis.active .main-vis-txt02,
.main-vis.active .main-vis-line{
    opacity: 1;
    transition-delay: 1.5s;
}


/*section02*/
.sec2 {
    background: url("../img/section02-bg.jpg") no-repeat center center;
    background-size: cover;
    font-family: 'Pretendard' , sans-serif;
}
.promotion-wrap {
    display: flex;
    width: 1440px;
    margin: 0 auto;
    justify-content: space-between;
}

.promotion-wrap .promotion-info-wrap{
    opacity: 0;
    transition: 1.2s;
	padding-top: 70px;
}
.promotion-wrap.active .promotion-info-wrap{
    opacity: 1;
}
.promotion-wrap .promotion-video-wrap .item-wrap{
    opacity: 0;
    transition: 1s;
}
.promotion-wrap .item-wrap:first-of-type{
    transform: translateY(50px);
}
.promotion-wrap .item-wrap:nth-of-type(2){
    transform: translateY(-50px);
}
.promotion-wrap .item-wrap:nth-of-type(3){
    transform: translateY(50px);
}
.promotion-wrap.active .promotion-video-wrap .item-wrap{
    opacity: 1;
    transition-delay: 1.2s;
    transform: translateY(0);
}
.promotion-wrap .slide-arr-wrap{
	padding-top:10px;
}



.promotion-video-wrap {
    width: 1200px;
	overflow:hidden;
	padding: 0 50px;
	margin-right: -50px;
	margin-bottom: -80px;
}
.promotion-video-wrap .swiper-wrapper{
	height: auto;
}
.promotion-wrap .promotion-tit{
	margin-bottom:30px;
	text-align:center;
}
.promotion-wrap .promotion-tit strong{
	display:flex;
	align-items:center;
	justify-content:center;
	font-family: 'Noto Sans KR';
	color:#2b2122;
	font-size:42px;
	font-weight:600;
	margin-bottom:20px;
	opacity:0;
	transform:translate(0,50%);
	transition:0.6s;
	transition-delay:0.5s;
}
.promotion-wrap .promotion-tit strong em{
	font-family:'Pretendard';
	font-weight:400;
	font-size:40px;
	padding: 0 15px;
}
.promotion-wrap .promotion-tit span{
	display:block;
	font-family: 'Noto Sans KR';
	color:rgba(35,25,22,0.7);
	font-size:18px;
	margin-bottom:10px;
	opacity:0;
	transform:translate(0,90%);
	transition:0.6s;
	transition-delay:0.7s;
}
.promotion-wrap .promotion-tit p{
	font-family: 'Noto Sans KR';
	color:rgba(43,33,34,0.7);
	font-size:22px;
	font-weight:600;
	opacity:0;
	transform:translate(0,70%);
	transition:0.6s;
	transition-delay:0.9s;
}
.promotion-wrap.active .promotion-tit strong,
.promotion-wrap.active .promotion-tit span,
.promotion-wrap.active .promotion-tit p{
	opacity:1;
	transform:none;
}
.promotion-info-subtitle {
    margin-bottom: 60px;
    color: #231916;
    font-size: 17px;
}

.promotion-info-title{
    cursor: pointer;
}

.promotion-info-title.active {
    position: relative;
    color: #231916;
    font-weight: 700;
    font-size: 50px;
    opacity: 1;
}
.promotion-info-title.active .text {
    position: relative;
    letter-spacing: -0.06em;
    z-index: 1;
}
.promotion-info-title.active .under-line {
    display: block;
    position: absolute;
    bottom: -2px;
    left: -7px;
    width: 200px;
    height: 14px;
    background: #ab9c88;
    z-index: 0;
}
.promotion-info-title {
    margin: 40px 0;
    color: #050505;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    font-size: 50px;
    letter-spacing: -0.06em;
    opacity: 0.3;
}
.promotion-info-title .under-line{
    display: none;
}

.promotion-wrap .slide-arr {
    display: none;
    width: 146px;
    height: 40px;
    justify-content: space-between;
}
.promotion-wrap .slide-arr.on{
	display:flex;
}
.promotion-wrap .slide-next,
.promotion-wrap .slide-prev {
    overflow: hidden;
    width: 56px;
    height: 40px;
    border: none;
    background: url("../img/promotion-arr.png") no-repeat center center;
    background-size: contain;
    text-indent: -9999px;
    cursor: pointer;
}
.promotion-wrap .slide-prev {
    transform: rotate(180deg);
}

.promotion-video-wrap .item-wrap {
    display: flex;
	justify-content: center;
    height: 576px;
    align-items: center;
}
.promotion-video-wrap .item-wrap .item {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 476px;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    transition: 0.6s;
}
.promotion-video-wrap .item-wrap .item:hover{
	transform:scale(1.2);
}
.promotion-video-thumb {
    position: absolute;
	left:0;
	top:0;
	z-index:10;
	width:100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 20;
    cursor: pointer;
}
.promotion-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 70px;
    transform: translate(-50%, -50%);
    z-index: 15;
	transition:0.6s;
}
.item.play .promotion-video-btn{
	opacity:0;
}
/* 
기존
.promotion-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
} */

.promotion-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* section03 */

.sec3 .fp-tableCell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loc-wrap {
    position: relative;
    width: 1440px;
    height: 710px;
    margin: 80px auto 0;
}

.loc-wrap .loc-tit-wrap{
    opacity: 0;
    transform: translateX(-80px);
    transition: 1.2s;
}
.loc-wrap .loc-tit-slide{
    opacity: 0;
    transform: translateX(80px);
    transition: 1.2s;
}

.loc-wrap.active .loc-tit-wrap, .loc-wrap.active .loc-tit-slide{
    opacity: 1;
    transform: translateX(0);
}



.loc-tit-wrap {
    display: flex;
    margin-bottom: 50px;
    justify-content: space-between;
}

.loc-wrap .loc-subtit {
    margin-bottom: 20px;
    color: #231916;
    font-family: 'Pretendard', sans-serif;
    font-size: 17px;
}
.loc-wrap .loc-tit {
    color: #050505;
    font-size: 38px;
    letter-spacing: -0.06em;
}

.loc-wrap .swiper-slide {
    position: relative;
    width: 430px;
    height: 580px;
    color: #fff;
    overflow:hidden;
}

.loc-tit-slide .img-cut{
    position: absolute;
    font-size: 14px;
    font-family: 'Pretendard';
    color: #fff;
    top:10px; right: 10px;
}

.loc-tit-slide img{
    transform: scale(1);
    transition: 1s;
}
.loc-tit-slide .swiper-slide:hover img{
    transform: scale(1.1);
}

.white-side {
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10;
    transform: translateX(-720px);
}
.loc-slide-num {
    position: absolute;
    top: 360px;
    left: 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: 0.6s;
    opacity: 0;
}

.loc-slide-info {
    position: absolute;
    top: 440px;
    left: 30px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    transition: 0.6s;
    opacity: 0;
    letter-spacing: -0.05em;
}
.loc-slide-tit {
    text-align: right;
    position: absolute;
    display: block;
    width: 160px;
    bottom: 160px;
    left: 60px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 28px;
    transform: rotate(90deg);
    opacity: 0.5;
    transition: 0.6s;
    transform-origin: top left;
}
.swiper-slide:hover .loc-slide-tit{
    text-align: right;
    bottom: 80px;
    opacity: 0;
}
.loc-info-tit{
    position: absolute;
    left: -60px;
    bottom: 160px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 28px;
    opacity: 0;
    transition: .8s;
}

.swiper-slide:hover .loc-info-tit{
    text-align: right;
    left: 30px;
    opacity: 1;
}

.swiper-slide:hover .text-wrap.t1 .loc-slide-tit{
    left: -16px;
}
.swiper-slide:hover .text-wrap.t2 .loc-slide-tit{
    left: 30px;
}
.swiper-slide:hover .text-wrap.t3 .loc-slide-tit{
    left: -48px;
}
.swiper-slide:hover .text-wrap.t4 .loc-slide-tit{
    left: -40px;
}


.swiper-slide:hover .loc-slide-num{opacity: 1; transition-delay: 0.6s;}
.swiper-slide:hover .loc-slide-info{opacity: 1; transition-delay: 0.6s;}



.loc-wrap .rig {
    display: flex;
    gap: 26px;
    align-items: flex-end;
}
.loc-wrap .slide-next,
.loc-wrap .slide-prev {
    width: 24px;
    height: 30px;
    background: url("../img/loc-arr.png") no-repeat center;
    background-size: 18px 11px;
}
.loc-wrap .slide-prev {
    transform: rotate(180deg);
}
.loc-wrap .rig .arr-wrap {
    display: flex;
    gap: 15px;
}
.loc-wrap .rig .arr-wrap .slide-next,
.loc-wrap .rig .arr-wrap .slide-prev{
    cursor: pointer;
}


.loc-wrap .rig .pagination {
    transform: translateY(-6px);
}

.loc-wrap .pagination{
    font-family: 'NanumSquare', sans-serif;
}

.loc-wrap .swiper-pagination-current {
    color: #231916;
    font-weight: 600;
    font-size: 20px;
}
.loc-wrap .slash,
.loc-wrap .swiper-pagination-total {
    color: #464646;
    font-size: 14px;
    opacity: 0.5;
}

/* section4 */

.sec4 {
    position: relative;
    background: #0f0f0f;
}


.sec4 .fp-tableCell .swiper-slide-active{
    opacity: 0;
    transform: translateX(-80px);
    transition: 1.2s;
    transition-property: opacity, transform;
}
.sec4 .fp-tableCell .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev){
    opacity: 0;
    transform: translateY(80px);
    transition: 1.2s;
    transition-property: opacity, transform;
}
.sec4 .fp-tableCell.active .swiper-slide-active{
    opacity: 1;
    transform: translateX(0);
}
.sec4 .fp-tableCell.active .swiper-slide:not(.swiper-slide-active){
    opacity: 1;
    transform: translateY(0);
}

@media screen and (min-height: 980px) {
    .pre-wrap{
        width: 1440px;
        height: 790px;
        margin: 0 auto;
        left: 50%;    
        bottom:50%;
        position: absolute;
        transform: translate(-50%, +50%);
    }
}
@media screen and (max-height: 980px) {
    .pre-wrap{
        position: absolute;
        width: 1440px;
        margin: 0 auto;
        bottom: 0;
        left: 50%;
        height: 790px;
        transform: translate(-50%, 0);
    }
}


.pre-subtit {
    color: #f6f6f6;
    font-family: 'Pretendard', sans-serif;
    font-size: 17px;
    opacity: 0.5;
}

.pre-tab-btn-wrap {
    display: flex;
    gap: 0;
    position: absolute;
    bottom: 80px;
    left: 50%;
    width: 200px;
    height: 28px;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 19px;
    box-sizing: content-box;
    transform: translateX(-50%);
    z-index: 100;
}
.pre-tab-btn-wrap .btn {
    display: block;
    position: relative;
    width: 100px;
    height: 28px;
    padding: 0;
    color: #fff;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
    transition: .5s;
}
.pre-tab-btn-wrap .btn.active {
    color: #1a1513;
}
.pre-tab-btn-wrap .btn-toggle {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100px;
    height: 28px;
    background: #fff;
    border-radius: 14px;
}

    .pre-view{
        width: 1440px;
        height: 790px;
        margin: 0 auto;
        left: 50%;    
        bottom:0;
        position: absolute;
        transform: translateX(-50%);
    }



.pre-view .swiper-slide-container {
    overflow: hidden;
    width: 1440px;
    height: 790px;
}

.pre-view .swiper-slide-active {
    width: 1004px
}

.pre-view .swiper-slide:not(.swiper-slide-active) {
    position: relative;
    width: 1004px;
    height: 790px;
    color: #fff;
}

.swiper-slide .item{
    position: absolute;
    bottom: 0;
    left: 0;
}

.text-side {
    display: flex;
    position: absolute;
    right: -30px;
    z-index: 10;
    align-items: flex-end;
}

.text-side.side-n {
    display: flex;
    position: absolute;
    right: -140px;
    z-index: 10;
    align-items: flex-end;
}

.text-side.side-z {
    right: -120px;
}

.swiper-slide-active .text-side.side-g {
    top: 150px !important;
    right: 455px !important;
}
.swiper-slide-active .text-side.side-g.spe {
    top: 150px !important;
    right: 387px !important;
}
.swiper-slide-active .text-side.side-l {
    top: 149px !important;
    right: 399px !important;
}
.swiper-slide-active .text-side.side-l.spe {
    top: 149px !important;
    right: 412px !important;
}
.swiper-slide-active .text-side.side-a {
    top: 159px !important;
    right: 324px !important;
}
.swiper-slide-active .text-side.side-a.spe {
    top: 159px !important;
    right: 383px !important;
}
.swiper-slide-active .text-side.side-n {
    top: 188px !important;
    right: 203px !important;
}
.swiper-slide-active .text-side.side-n.spe {
    top: 188px !important;
    right: 289px !important;
}
.swiper-slide-active .text-side.side-z {
    top: 159px !important;
    right: 318px !important;
}

.swiper-slide .text-side.side-g {
    top: 70px;
    right: -28px;
    height: 120px;
}

.swiper-slide .text-side.side-l {
    top: 42px;
    right: -85px;
    height: 120px;
    text-align: right;
}

.text-side.side-g .text-side-title {
    transform: translateY(-8px);
}

.pre-icon-wrap {
    position: relative;
}
.pre-view .pre-icon {
    position: absolute;
    top: 0;
    left: 0;
}

.text-side.side-g .pre-icon-wrap {
    width: 101px;
    height: 145px;
    transform: translateY(14px);
}

.text-side.side-g .pre-icon {
    width: 101px;
    height: 145px;
}

.text-side.side-l .pre-icon-wrap {
    width: 98px;
    height: 105px;
    margin-right: -11px;
    transform: translateY(-90px);
}
.text-side.side-l .pre-icon {
    width: 98px;
    height: 105px;
}
.text-side.side-l.spe .pre-icon-wrap {
    width: 98px;
    height: 105px;
    margin-right: -11px;
    transform: translateY(-10px);
}
.text-side.side-l.sep .pre-icon {
    width: 98px;
    height: 105px;
}

.text-side.side-a .pre-icon-wrap {
    width: 102px;
    height: 109px;
    transform: translateY(-10px);
}

.swiper-slide .text-side.side-a.spe .pre-icon-wrap {
    width: 102px;
    height: 109px;
    transform: translate(-30px ,-0px);
}

.swiper-slide-active .text-side.side-a.spe .pre-icon-wrap {
    width: 102px;
    height: 109px;
    transform: translateY(-88px);
}

.text-side.side-a .pre-icon {
    width: 102px;
    height: 109px;
}

.text-side.side-n .pre-icon-wrap {
    width: 100px;
    height: 77px;
    margin-right: -13px;
    transform: translateY(-10px);
}
.text-side.side-n.spe .pre-icon-wrap {
    width: 100px;
    height: 77px;
    margin-right: -10px;
    transform: translateY(-90px);
}
.text-side.side-n .pre-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 77px;
    margin-right: -15px;
    transition: 0.3s;
}
.text-side.side-z .pre-icon-wrap {
    width: 84px;
    height: 110px;
    margin-right: -4px;
    transform: translateY(-6px);
}
.text-side.side-z .pre-icon {
    position: absolute;
    width: 84px;
    height: 110px;
    margin-right: 25px;
    transition: 0.3s;
}

.pre-view .swiper-slide-prev {
    opacity: 0 !important;
}
.pre-scroll{
    position: absolute;
    top: 175px;
    right: 287px;
}
.pre-scroll::after{
    display: block;
    position: absolute;
    left: 9px;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    content: '';
    transform: translateX(-50%);
    animation: scrollMove 1.5s linear infinite;
}
.slide-info{
    letter-spacing: -0.06em;
}
.view-more{
    letter-spacing: 0;
}

@keyframes scrollMove {
    0% {
        top:12px;
    }
    100% {
        top:18px;
    }
}

.pre-icon .icon1 {
    fill: transparent;
    stroke: #fff;
    stroke-width: 1px;
    vector-effect: non-scaling-stroke;
    z-index: 5;
}
.pre-icon .icon2 {
    fill: #0f0f0f;
    stroke: none;
    stroke-width: 1px;
    vector-effect: non-scaling-stroke;
    opacity: 0.5;
    z-index: 1;
}

.swiper-slide .text-side .text-side-title {
    color: #fff;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -0.04em;
    opacity: 0;
}

.info-side {
    position: absolute;
    top: 450px;
    right: 562px;
    color: #c5c5c5;
    font-weight: 300;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: -0.06em;
    text-align: right;
}
.view-more {
    display: block;
    position: relative;
    padding-right: 53px;
    margin-top: 60px;
    color: #8c8c8c;
    font-weight: 200;
    font-size: 15px;
    line-height: 30px;
}
.view-more::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    height: 1px;
    background: #cfcfcf;
    content: '';
    transform: translateY(-50%);
}

.swiper-slide .photo-side {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 312px;
    height: 394px;
    background: #0f0f0f;
    transition: 1.2s;
    transition-property: bottom;
}

.photo-side iframe{
    width: 100%; height: 100%;
    position: absolute;
    top: 50px; left: 0;
}

.swiper-slide .photo-side img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(.8);
    opacity: .8;
    transition: 2s;
}
.swiper-slide-active .photo-side img{
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

.swiper-slide .photo-side .image-cut{
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.swiper-slide-prev .photo-side{
    transition: none;
}

.swiper-slide-active .photo-side {
    position: absolute;
    right: 0;
    background: #0f0f0f;
}

.swiper-slide .item {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 360px;
    height: 394px;
}
.swiper-slide-active .item {
    width: 100%;
    height: 100%;
}

.swiper-slide .info-side {
    opacity: 0;
}
.swiper-slide-active .info-side {
    opacity: 1;
}

/* section06 */
.sec6 {
    position: relative;
    overflow: hidden;
}

.trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    transform: translate(-50%, -50%);
    scroll-behavior: smooth;
}

.trigger::-webkit-scrollbar {
    display: none;
}
.brand-wrap *{
    transition: .4s
}
.trigger1 {
    display: block;
    width: 100%;
    margin-top: 30vh;
    height: 100vh;
}
.trigger2 {
    display: block;
    width: 100%;
    height: 140vh;
    margin-bottom: 30vh;
}

.brand-wrap {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.brand-txt-box {
    display: flex;
    position: absolute;
    top: 50px;
    left: 50%;
    width: 1760px;
    height: 100%;
    align-items: center;
    transform: translateX(-50%);
    justify-content: space-between;
}

.brand-txt-box .title.plus{
    width: 62px; height: 62px;
    transform: translateY(-20px);
}

.brand-info-box {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1440px;
    height: 100px;
    text-align: center;
    align-items: flex-start;
    transform: translate(-50%, calc(-50% + 120px));
    justify-content: space-around;
    font-weight:500;
}

.brand-bottom-box {
    position: absolute;
    bottom: 96px;
    left: 50%;
    width: 1440px;
    color: #342b28;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    transform: translateX(-50%);
    justify-content: space-around;
    letter-spacing: -0.05em;
}

.brand-info-box span {
    display: block;
    margin-bottom: 12px;
    color: #151515;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.05em;
}
.brand-info-box .txt2 {
    position: absolute;
    top: -254px;
}
.brand-info-box .txt1 {
    transform: translateX(55px);
}
.brand-info-box .txt3 {
    transform: translateX(84px);
}
.brand-info-box em {
    font-size: 15px;
    font-weight: 400;
}

.brand-box {
    width: 600px;
    height: 300px;
    background: url("../img/brand-bg.jpg") no-repeat center center;
    transform: translateY(40px);
}

@media screen and (max-width:2000px){
    .brand-box{
    background-size: 2060px 1040px;
    }
}

@media screen and (min-width:2001px){
    .brand-box{
    background-size: 2460px 1440px;
    }
}

.brand-txt-box .title {
    display: block;
    width: 580px;
    color: #231916;
    font-weight: 600;
    font-size: 62px;
    line-height: 62px;
    letter-spacing: -0.05em;
    text-align: center;
}
.brand-txt-box .title.center{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-24px);
}
.brand-txt-box .title.tit3 {
    display: block;
    width: 680px;
    transform: translateY(-240px);
}

/*brand*/
.fullpage {
    will-change: auto;
}
.brand {
    display: flex;
    position: relative;
    overflow: hidden;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.brand .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, auto, auto, 0);
}
.brand .video video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand .txt {
    position: relative;
    z-index: 5;
}
.brand.p1 .txt p {
    display: flex;
    overflow: hidden;
    color: #fff;
    font-weight: 600;
    font-size: 6.875rem;
    line-height: 1.518em;
    letter-spacing: -0.05em;
}
.brand.p1 .txt p em {
    transform: translate(0,100%);
    transition: 1s;
    transition-delay: 0.5s;
}
/*
.brand.p1 .txt p em:nth-child(1) { transition-delay:0.5s; } 
.brand.p1 .txt p em:nth-child(2) { transition-delay:0.6s; } 
.brand.p1 .txt p em:nth-child(3) { transition-delay:0.7s; } 
.brand.p1 .txt p em:nth-child(4) { transition-delay:0.8s; } 
.brand.p1 .txt p em:nth-child(5) { transition-delay:0.9s; } 
.brand.p1 .txt p em:nth-child(6) { transition-delay:1s; } 
.brand.p1 .txt p em:nth-child(7) { transition-delay:1.1s; } 
.brand.p1 .txt p em:nth-child(8) { transition-delay:1.2s; } 
.brand.p1 .txt p em:nth-child(9) { transition-delay:1.3s; } 
.brand.p1 .txt p em:nth-child(10) { transition-delay:1.4s; } 
.brand.p1 .txt p em:nth-child(11) { transition-delay:1.5s; } 
.brand.p1 .txt p em:nth-child(12) { transition-delay:1.6s; } 
.brand.p1 .txt p em:nth-child(13) { transition-delay:1.7s; } 
*/
.mo_com .brand.p1 .txt p em {
    transform: none;
}

.brand.p2 .dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.brand.p2 .txt p ~ p {
    margin-top: 35px;
}
.brand.p2 .txt p span {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 1.813rem;
    line-height: 1.4em;
    letter-spacing: -0.05em;
}
.brand.p2 .txt p span em {
    display: block;
    transform: translate(0,100%);
    transition: 0.8s;
    transition-delay: 0.2s;
}
.mo_com .brand.p2 .txt p span em {
    transform: none;
}

.brand.p3 .brand3_bg{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:url(../img/brand3-bg.jpg) no-repeat center / cover;
}
.brand.p3 .dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 5;
}
.brand.p3 .cir {
    position: relative;
    z-index: 5;
}
.brand.p3 .cir ul {
    display: flex;
}
.brand.p3 .cir ul li {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 375px;
    height: 375px;
    text-align: center;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
.brand.p3 .cir ul li svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.brand.p3 .cir ul li svg circle {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-dasharray: 1200px;
    stroke-dashoffset: 1200px;
    transition: 0.6s;
    transition-delay: 0.2s;
}
.brand.p3 .cir ul li:first-child {
    margin-right: -50px;
    border: 1px solid #fff;
    opacity: 0;
    transition: 0.6s;
    transition-delay: 0.8s;
}
.brand.p3 .cir ul li:last-child {
    margin-left: -50px;
    border: 1px solid #fff;
    opacity: 0;
    transition: 0.6s;
    transition-delay: 0.8s;
}
.brand.p3 .cir dl {
    margin-bottom: -40px;
}
.brand.p3 .cir dl dt {
    display: flex;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 4.375rem;
    letter-spacing: -0.06em;
    justify-content: center;
    opacity: 0;
    transition: 0.6s;
    transition-delay: 1.2s;
}
.brand.p3 .cir dl dt p{
	font-size:34px;
	padding-bottom:20px;
}
.brand.p3 .cir dl dt span {
    position: relative;
}
.brand.p3 .cir dl dt span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 5px;
    height: 5px;
    margin-left: -1px;
    background-color: #fff;
    content: "";
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
    transition-delay: 2s;
}
.brand.p3 .cir ul li:nth-child(2) dl dt span::before {
    left: 27%;
}
.brand.p3 .cir dl dd p {
    overflow: hidden;
    color: rgba(255,255,255,1);
    font-weight: 300;
    font-size: 0.813rem;
    line-height: 1.385em;
    letter-spacing: -0.06em;
}
.brand.p3 .cir dl dd p span {
    display: block;
    transform: translate(0,100%);
    transition: 0.6s;
    transition-delay: 1.5s;
}
.mo_com .brand.p3 .cir ul li svg circle {
    stroke-dashoffset: 0;
}
.mo_com .brand.p3 .cir ul li:first-child {
    margin-right: -30px;
    opacity: 1;
}
.mo_com .brand.p3 .cir ul li:last-child {
    margin-left: -30px;
    opacity: 1;
}
.mo_com .brand.p3 .cir dl dd p span,
.mo_com .brand.p3 .cir dl dt {
    transform: none;
    opacity: 1;
}
.mo_com .brand.p3 .cir dl dt span::before {
    top: -10px;
    opacity: 1;
}

.brand.p4 .dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 5;
}
.brand.p4 .txt {
    position: relative;
    text-align: center;
    z-index: 5;
}
.brand.p4 .txt dt {
    width: 1000px;
    margin-bottom: 60px;
}
.brand.p4 .txt svg {
    display: block;
}
.brand.p4 .txt .line {
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 0.2px;
    fill: transparent;
}
.brand.p4 .txt .l1 {
    stroke-dasharray: 140px;
    stroke-dashoffset: 140px;
}
.brand.p4 .txt .l2 {
    stroke-dasharray: 85px;
    stroke-dashoffset: 85px;
}
.brand.p4 .txt .l3 {
    stroke-dasharray: 90px;
    stroke-dashoffset: 90px;
}
.brand.p4 .txt .l4 {
    stroke-dasharray: 90px;
    stroke-dashoffset: 90px;
}
.brand.p4 .txt .l5 {
    stroke-dasharray: 120px;
    stroke-dashoffset: 120px;
}
.brand.p4 .txt dd p {
    color: #fff;
    font-size: 1.813rem;
    line-height: 1.2em;
    letter-spacing: -0.05em;
    opacity: 0;
    transform: translate(0,30%);
    transition: 0.6s;
    transition-delay: 2s;
}
.mo_com .brand.p4 .txt .line {
    animation: brand_line 2.5s forwards;
    animation-delay: 0.2s;
}
.mo_com .brand.p4 .txt dd p {
    opacity: 1;
    transform: none;
}
@keyframes brand_line {
    55% {
        fill: transparent;
        stroke-dashoffset: 0;
        stroke-width: 0.2px;
    }
    100% {
        fill: #fff;
        stroke-dashoffset: 0;
        stroke-width: 0;
    }
}

.brand.p5 .dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/dim1.png") no-repeat center / cover;
    z-index: 5;
}
.brand.p5 .txt {
    text-align: center;
}
.brand.p5 .txt dl dt {
    overflow: hidden;
    margin-bottom: 60px;
}
.brand.p5 .txt dl dt img {
    display: block;
    margin: 0 auto;
    transform: translate(0,110%);
    transition: 0.6s;
    transition-delay: 0.3s;
}
.brand.p5 .txt dl dd p {
    color: #fff;
    font-size: 1.813rem;
    line-height: 1.2em;
    letter-spacing: -0.05em;
    opacity: 0;
    transform: translate(0,30%);
    transition: 0.6s;
    transition-delay: 0.8s;
}
.mo_com .brand.p5 .txt dl dd p,
.mo_com .brand.p5 .txt dl dt img {
    opacity: 1;
    transform: none;
}

.scroll_wrap {
    height: 100%;
    transition: 0.1s;
    /* overflow-y: auto; will-change: auto; */
}
.brand_con {
    display: flex;
    height: 100%;
    padding-bottom: 50px;
    align-items: center;
    justify-content: center;
}
.brand_con .fit_in {
    width: 100%;
}
.brand_tit {
    overflow: hidden;
}
.brand_tit p {
    color: #000;
    font-family: "Mulish";
    font-weight: 800;
    font-size: 2.875rem;
    letter-spacing: -0.015em;
    transform: translate(0,100%);
    transition: 0.8s;
}
.identity {
    display: flex;
    margin-top: 150px;
    align-items: flex-end;
}
.identity img {
    display: block;
}
.identity .lef {
    width: 555px;
    opacity: 0;
    transform: translate(-10%,0);
    transition: 0.6s;
    transition-delay: 0.4s;
}
.identity .rig {
    width: 915px;
    padding-bottom: 15px;
    padding-left: 79px;
}
.identity dl {
    position: relative;
    opacity: 0;
    transition: 0.6s;
    transition-delay: 0.7s;
}
.identity dl:nth-child(1) {
    transform: translate(0,-25%);
}
.identity dl:nth-child(2) {
    padding-top: 35px;
    margin-top: 30px;
    transform: translate(0,25%);
}
.identity dl:nth-child(2)::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #bfbfbf;
    content: "";
    transition: 0.8s;
    transition-delay: 0.8s;
}
.identity dl dt {
    margin-bottom: 15px;
    color: #000;
    font-family: "Mulish";
    font-weight: 700;
    font-size: 1.313rem;
    letter-spacing: -0.04em;
}
.identity dl dd p {
    color: #000;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.4em;
    letter-spacing: -0.06em;
    word-break: break-all;
}
.identity dl dd img {
    padding-top: 15px;
}
.brand_vd {
    height: 580px;
    margin-top: 50px;
    background-color: #000;
}
.mo_com .brand_tit p {
    transform: none;
}
.mo_com .identity .lef,
.mo_com .identity dl {
    opacity: 1;
    transform: none !important;
}
.mo_com .identity dl:nth-child(2)::before {
    left: 0;
    width: 100%;
}

/*sub*/
.contents {
    position: relative;
    padding: 100px 0 200px;
    background-color: #fff;
}
.contents.h_max {
    min-height: 100%;
}
.contents.pd_none {
    padding: 0;
}
.con_tit {
    position: relative;
    padding-top: 100px;
    margin-bottom: 60px;
}
.con_tit.pd_none {
    padding-top: 0;
}
.con_tit.lef {
    padding-left: 120px;
}
.con_tit p {
    overflow: hidden;
    color: #050505;
    font-size: 3.375rem;
    line-height: 1.111em;
}
.con_tit p span {
    display: block;
    transform: translate(0,100%);
    transition: 0.6s;
}
.con_tit p strong {
    font-weight: 600;
}
.con_tit .top_txt {
    position: absolute;
    top: 0;
    left: 0;
    padding-bottom: 35px;
}
.con_tit .top_txt span {
    display: block;
    color: #0252a4;
    font-family: "Mulish";
    font-size: 1.125rem;
    opacity: 0;
    transform: translate(-20%,0);
    transition: 0.8s;
    transition-delay: 0.4s;
}
.con_tit .top_txt span strong {
    font-weight: 800;
}
.con_tit .top_txt em {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #0252a4;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.6s;
    transition-delay: 0.4s;
}
.con_tit.active p span {
    transform: none;
}
.con_tit.active .top_txt em,
.con_tit.active .top_txt span {
    opacity: 1;
    transform: none;
}
.sub_img {
    opacity: 0;
    transform: translate(0,5%);
    transition: 1s;
}
.sub_img img {
    display: block;
    width: 100%;
}
.sub_img.active {
    opacity: 1;
    transform: none;
}

/*overview*/
.overview_info {
    margin-top: 135px;
}
.overview_info .tit {
    color: #050505;
    font-weight: 600;
    font-size: 2.125rem;
    opacity: 0;
    transform: translate(0,100%);
    transition: 0.6s;
}
.overview_info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 4.166%;
    margin-top: 70px;
}
.overview_info ul li {
    width: 21.875%;
}
.overview_info dl dt {
    overflow: hidden;
    margin-bottom: 10px;
}
.overview_info dl dd {
    position: relative;
    overflow: hidden;
    padding-top: 13px;
}
.overview_info dl dd::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #bfbfbf;
    content: "";
    transition: 0.8s;
    transition-delay: 0.3s;
}
.overview_info dl strong {
    display: block;
    color: #050505;
    font-weight: 500;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    transform: translate(0,120%);
    transition: 0.8s;
    transition-delay: 0.6s;
}
.overview_info dl span {
    color: #050505;
    font-size: 1.25rem;
    line-height: 1.3em;
    letter-spacing: -0.04em;
    transform: translate(0,-110%);
    transition: 0.8s;
    transition-delay: 0.6s;
}
.overview_info dl span img {
    vertical-align: baseline;
}
.overview_info dl dd p {
    display: flex;
    overflow: hidden;
    align-items: center;
}
.overview_info dl dd p strong {
    margin-right: 5px;
}
.overview_info .address {
    display: flex;
    margin-top: 170px;
}
.overview_info .address dl {
    width: 21.875%;
}
.overview_info .address dl dt {
    margin-bottom: 30px;
}
.overview_info .address strong {
    transform: translate(0,-120%);
}
.overview_info .address .map {
    margin-left: 105px;
    text-align: center;
    opacity: 0;
    transform: translate(-10%,0);
    transition: 0.6s;
    transition-delay: 1.2s;
}
.overview_info .address.active .map,
.overview_info .address.active .tit,
.overview_info .address.active dl dd span,
.overview_info .address.active dl strong,
.overview_info .tit.active,
.overview_info ul.active dl dd span,
.overview_info ul.active dl strong {
    opacity: 1;
    transform: none;
}
.overview_info .address.active dl dd::before,
.overview_info ul.active dl dd::before {
    width: 100%;
}
.overview_ori {
    position: relative;
    margin-top: 20px;
    color: #000;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.06em;
    z-index: 5;
	font-weight:500;
}

/*location*/
.loc_plan {
    overflow: hidden;
    padding-top: 200px;
}
.loc_plan .tit {
    margin-bottom: 60px;
    color: #050505;
    font-weight: 600;
    font-size: 3.375rem;
}
.loc_plan .area2 {
    margin-top: 160px;
}
.loc_plan .box {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.loc_plan .box .lef {
    opacity: 0;
    transform: translate(-10%,0);
    transition: 0.8s;
}
.loc_plan .box .rig {
    padding-top: 70px;
    opacity: 0;
    transform: translate(10%,0);
    transition: 0.8s;
}
.loc_plan .top {
    position: relative;
    padding-bottom: 35px;
    margin-bottom: 50px;
}
.loc_plan .top::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: #050505;
    content: "";
}
.loc_plan .top p {
    color: #050505;
    font-weight: 600;
    font-size: 2.125rem;
}
.loc_plan .tbl ~ .tbl {
    margin-top: 55px;
}
.loc_plan .tbl strong {
    display: block;
    margin-bottom: 12px;
    color: #050505;
    font-weight: 600;
    font-size: 1.5rem;
}
.loc_plan .tbl table {
    width: 100%;
}
.loc_plan .tbl table .col1 {
    width: 115px;
}
.loc_plan .tbl table th {
    padding: 5px 0;
    color: #6d6d6d;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.3em;
    letter-spacing: -0.05em;
    text-align: left;
    vertical-align: top;
}
.loc_plan .tbl table td {
    padding: 5px 0;
    color: #050505;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.3em;
    letter-spacing: -0.05em;
    text-align: left;
    vertical-align: top;
}
.loc_plan .tbl p {
    color: #050505;
    font-size: 1.25rem;
    line-height: 2em;
    letter-spacing: -0.05em;
}
.loc_plan .tbl .ori {
    margin-top: 40px;
    color: #4f4f4f;
    font-size: 1.125rem;
    line-height: 1.4em;
    letter-spacing: -0.05em;
}
.loc_plan .box.active .lef,
.loc_plan .box.active .rig {
    opacity: 1;
    transform: none;
}
.location_ori {
    position: relative;
    margin-top: 20px;
    color: #000;
    font-size: 14px
    line-height: 24px;
    letter-spacing: -0.06em;
    z-index: 5;
	font-weight:500;
}
.location_ori p~p{margin-top:8px;}
.loc_adv {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 80px;
    gap: 40px;
}
.loc_adv dl {
    width: 680px;
    opacity: 0;
    transition: 0.6s;
}
.loc_adv dl:nth-child(even) {
    transition-delay: 0.3s;
}
.loc_adv dl dt{
    margin-bottom: 40px;
}
.loc_adv dl dd.tit {
    color: #e2e2e2;
    font-family: "Pretendard";
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: right;
}
.loc_adv dl dd.info {
    color: #050505;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.05em;
    padding-left: 20px;
}
.loc_adv dl dd.info em {
    font-size: 16px;
    letter-spacing: -0.05em;
}
.loc_adv.active dl {
    opacity: 1;
    transform: none;
}

/*loc_map*/
.loc_map .box {
    display: flex;
    justify-content: center;
}
.loc_map .box .lef {
    padding-top: 60px;
    padding-right: 175px;
    opacity: 0;
    transform: translate(-40px,0);
    transition: 0.6s;
}
.loc_map .box .rig {
    opacity: 0;
    transform: translate(40px,0);
    transition: 0.6s;
    transition-delay: 0.3s;
}
.loc_map .box .rig ul li ~ li {
    margin-top: 70px;
}
.loc_map .box .rig p {
    margin-bottom: 70px;
    color: #050505;
    font-weight: 600;
    font-size: 2.13rem;
}
.loc_map .box .rig dl {
    display: flex;
    align-items: center;
}
.loc_map .box .rig dl dt {
    color: #050505;
    font-weight: 500;
    font-size: 1.38rem;
}
.loc_map .box .rig dl dd {
    margin-left: 20px;
    color: #050505;
    font-size: 1.25rem;
}
.loc_map .box .rig .link_btn {
    display: flex;
    margin-top: 25px;
}
.loc_map .box .rig .link_btn a {
    display: block;
    width: 215px;
    line-height: 48px;
    text-align: center;
}
.loc_map .box .rig .link_btn span {
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: left center;
    font-size: 0.94rem;
}
.loc_map .box .rig .link_btn .naver {
    border: 1px solid #050505;
    background-color: #050505;
}
.loc_map .box .rig .link_btn .naver span {
    background-image: url("../img/map-icon1.png");
    color: #d8dae5;
}
.loc_map .box .rig .link_btn .kakao {
    border: 1px solid #050505;
}
.loc_map .box .rig .link_btn .kakao span {
    background-image: url("../img/map-icon2.png");
    color: #000;
}
.loc_map .box.active .lef,
.loc_map .box.active .rig {
    opacity: 1;
    transform: none;
}

/*premium*/
.pre_list {
    display: flex;
    gap: 0 30px;
    justify-content: space-between;
}
.pre_list .box2 {
    margin-top: 81.25%;
}
.pre_list .box3 {
    margin-top: 50%;
}
.pre_list .box4 {
    margin-top: 67.1875%;
}
.pre_list .box5 {
    margin-top: 56.25%;
}
.pre_list .img {
    overflow: hidden;
}
.pre_list .img img {
    display: block;
    opacity: 0;
    transform: scale(1.1);
    transition: 1.5s;
}
.pre_list .txt {
    margin-top: 70px;
}
.pre_list .txt dt {
    margin-bottom: 15px;
}
.pre_list .txt dt p {
    overflow: hidden;
    color: #050505;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.429em;
    letter-spacing: -0.06em;
}
.pre_list .txt dt p span {
    display: block;
    transform: translate(0,100%);
    transition: 0.8s;
}
.pre_list .txt dd p {
    overflow: hidden;
    color: #050505;
    font-weight: 600;
    font-size: 3.25rem;
    line-height: 1.346em;
    letter-spacing: -0.06em;
}
.pre_list .txt dd p span {
    display: block;
    transform: translate(0,100%);
    transition: 0.8s;
    transition-delay: 0.3s;
}
.pre_list .img.active img,
.pre_list .txt.active dd p span,
.pre_list .txt.active dt p span {
    opacity: 1;
    transform: none;
}

/*premium2*/
.premium2 {
    padding-bottom: 180px;
}
.premium2 .pre_vis {
    position: relative;
    overflow: hidden;
    overflow: hidden;
    height: 735px;
    padding-top: 190px;
}
.premium2 .pre_vis .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/premium-vis.jpg") no-repeat center / cover;
    transform: scale(1.1);
    opacity: 0;
    transition: 2s;
}
.premium2 .pre_vis dl {
    position: relative;
    z-index: 10;
}
.premium2 .pre_vis dl dt {
    margin-bottom: 30px;
}
.premium2 .pre_vis dl dt p {
    overflow: hidden;
    color: #050505;
    font-size: 3.63rem;
    line-height: 1.1em;
    letter-spacing: -0.01em;
}
.premium2 .pre_vis dl dt p span {
    display: block;
    transform: translate(0,100%);
    transition: 0.6s;
    transition-delay: 0.4s;
}
.premium2 .pre_vis dl dt p strong {
    font-weight: 600;
}
.premium2 .pre_vis dl dd {
    position: relative;
    padding-top: 45px;
}
.premium2 .pre_vis dl dd::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #000;
    content: "";
    border-radius: 50%;
    transform: scale(0);
    transition: 0.6s;
    transition-delay: 0.8s;
}
.premium2 .pre_vis dl dd p {
    color: #000;
    font-family: "Mulish";
    opacity: 0;
    transform: translate(-40px,0);
    transition: 0.8s;
    transition-delay: 0.8s;
}
.premium2 .pre_vis dl dd p strong {
    font-weight: 800;
}
.premium2 .bot_txt {
    display: flex;
    height: 23%;
    align-items: center;
}
.premium2 .bot_txt .fit_in {
    width: 100%;
}
.premium2 .bot_txt p {
    color: #050505;
    font-weight: 500;
    font-size: 2.38rem;
    line-height: 1.3em;
    opacity: 0;
    transform: translate(-80px,0);
    transition: 0.8s;
    transition-delay: 1.3s;
}
.premium2 .list {
    margin-top: 220px;
}
.premium2 .list .area .box {
    display: flex;
}
.premium2 .list .area .box:nth-child(odd) .txt {
    margin-left: 9%;
}
.premium2 .list .area .box:nth-child(even) .txt {
    margin-right: 9%;
}
.premium2 .list .area .box1 {
    margin-bottom: 270px;
}
.premium2 .list .area .box2 {
    margin-bottom: 270px;
}
.premium2 .list .area .box3 {
    margin-bottom: 235px;
}
.premium2 .list .img {
    position: relative;
    overflow: hidden;
    width: 50%;
}
.premium2 .list .img img {
    display: block;
    width: 100%;
    transition: 1.5s;
}
.premium2 .list .img .mo_img {
    position: absolute;
    top: 0;
    left: 0;
}
.premium2 .list .box1 .img1 {
    opacity: 0;
    transform: scale(1.1);
}
.premium2 .list .box1 .img2 {
    opacity: 0;
    transform: translate(0,10%);
    transition: 1s;
    transition-delay: 0.4s;
}
.premium2 .list .box2 .img1 {
    opacity: 0;
    transform: scale(1.1);
}
.premium2 .list .box2 .img2 {
    opacity: 0;
    transform: translate(0,-10%);
    transition: 1.2s;
    transition-delay: 0.4s;
}
.premium2 .list .box3 .img1 {
    opacity: 0;
    transform: scale(1.1);
}
.premium2 .list .box3 .img2 {
    opacity: 0;
    transform: translate(0,-10%);
    transition: 1s;
    transition-delay: 0.3s;
}
.premium2 .list .box3 .img3 {
    opacity: 0;
    transform: translate(0,-10%);
    transition: 1s;
    transition-delay: 0.6s;
}
.premium2 .list .box4 .img1 {
    opacity: 0;
    transform: scale(1.1);
}
.premium2 .list .box4 .img2 {
    opacity: 0;
    transform: translate(-10%,0);
    transition: 1s;
    transition-delay: 0.3s;
}
.premium2 .list .box4 .img3 {
    opacity: 0;
    transform: translate(10%,0);
    transition: 1s;
    transition-delay: 0.6s;
}
.premium2 .list .txt {
    position: relative;
    width: 42%;
}
.premium2 .list .txt .tit {
    position: absolute;
    top: 0;
    color: #d4d4d4;
    font-weight: 600;
    font-size: 4.25rem;
    letter-spacing: -0.02em;
}
.premium2 .list .area .box:nth-child(odd) .tit {
    right: 0;
    text-align: right;
}
.premium2 .list .area .box:nth-child(even) .tit {
    left: 0;
    text-align: left;
}
.premium2 .list .txt .tit p {
    overflow: hidden;
}
.premium2 .list .txt .tit p span {
    display: block;
    transform: translate(0,100%);
    transition: 0.6s;
    transition-delay: 0.4s;
}
.premium2 .list .txt .bot {
    position: absolute;
    bottom: 25px;
}
.premium2 .list .area .box3 .bot {
    bottom: 60px;
}
.premium2 .list .area .box:nth-child(odd) .bot {
    left: 0;
    text-align: left;
}
.premium2 .list .area .box:nth-child(even) .bot {
    right: 0;
    text-align: right;
}
.premium2 .list .txt .bot p {
    color: #050505;
    font-size: 2.38rem;
    line-height: 1.16em;
    letter-spacing: -0.05em;
}
.premium2 .list .txt .bot p span {
    display: block;
    transform: translate(-10%,0);
    opacity: 0;
    transition: 0.8s;
    transition-delay: 1s;
}
.premium2 .list .txt .bot ul {
    margin-top: 55px;
}
.premium2 .list .txt .bot ul li {
    color: #262626;
    font-size: 1.06rem;
    line-height: 1.59em;
    letter-spacing: -0.06em;
    opacity: 0;
    transform: translate(0,110%);
    transition: 0.8s;
}
.premium2 .list .txt .bot ul li:nth-child(1) {
    transition-delay: 1.3s;
}
.premium2 .list .txt .bot ul li:nth-child(2) {
    transition-delay: 1.4s;
}
.premium2 .list .txt .bot ul li:nth-child(3) {
    transition-delay: 1.5s;
}
.premium2 .list .txt .bot ul li:nth-child(4) {
    transition-delay: 1.6s;
}
.premium2 .list .txt .bot ul li:nth-child(5) {
    transition-delay: 1.7s;
}
.premium2 .list .txt .bot ul li:nth-child(6) {
    transition-delay: 1.8s;
}
.premium2 .list .txt .bot ul li ~ li {
    margin-top: 15px;
}
.premium2 .list .txt .bot ul li strong {
    font-weight: 600;
}
.premium2 .list .box .img.active img,
.premium2 .list .box .txt.active .bot p span,
.premium2 .list .box .txt.active .bot ul li,
.premium2 .list .box .txt.active .tit p span,
.premium2 .pre_top.active .bot_txt p,
.premium2 .pre_top.active .pre_vis .bg,
.premium2 .pre_top.active .pre_vis dl dd p,
.premium2 .pre_top.active .pre_vis dl dd::before,
.premium2 .pre_top.active .pre_vis dl dt p span {
    opacity: 1;
    transform: none;
}

/*event*/
.event .list {
    display: flex;
    flex-wrap: wrap;
    gap: 70px 40px;
}
.event .list li {
    position: relative;
    width: calc(50% - 20px);
}
.event .list .empty_list {
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.event .list .empty_list .txt {
    padding: 80px 0;
    color: #666;
    font-weight: 300;
    font-size: 1.125rem;
}
.event .img {
    position: relative;
}
.event .img img {
    display: block;
    width: 100%;
}
.event .state {
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 0.875rem;
}
.event .state.on {
    background-color: #0152a4;
    color: #fff;
}
.event .state.end {
    background-color: #1d2f3f;
    color: #fff;
}
.event .txt_area {
    padding: 0 20px;
    margin-top: 30px;
}
.event .txt_area strong {
    display: block;
    overflow: hidden;
    color: #333;
    font-weight: 500;
    font-size: 1.5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.event .txt_area p {
    overflow: hidden;
    margin-top: 15px;
    color: #333;
    font-size: 1.125rem;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.event .txt_area span {
    display: block;
    overflow: hidden;
    margin-top: 20px;
    color: #999;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.event_view .view_box .top {
    padding: 40px 20px;
    border-top: 1px solid #666;
    border-bottom: 1px solid #eee;
}
.event_view .view_box .top .tit {
    display: flex;
    margin-bottom: 35px;
    align-items: flex-start;
}
.event_view .view_box .top .tit .state {
    padding: 15px 20px;
    margin-right: 50px;
    font-weight: 500;
    font-size: 0.875rem;
}
.event_view .view_box .top .tit .state.on {
    background-color: #0152a4;
    color: #fff;
}
.event_view .view_box .top .tit .state.end {
    background-color: #1d2f3f;
    color: #fff;
}
.event_view .view_box .top .tit strong {
    display: block;
    flex-grow: 1;
    color: #111;
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 1.4em;
}
.event_view .view_box .top .tit span {
    padding-left: 20px;
    color: #999;
    font-size: 1.125rem;
    line-height: 2.444em;
}
.event_view .view_box .top .period {
    padding-left: 35px;
    background: url("../img/period-icon.png") no-repeat left center / contain;
    color: #333;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.278em;
}
.event_view .view_box .con {
    padding: 30px 20px;
    text-align: center;
}
.event_view .view_box .list_btn {
    margin-top: 60px;
}
.event_view .view_box .list_btn a {
    display: block;
    width: 180px;
    margin: 0 auto;
    border: 1px solid #1d2f3f;
    color: #1d2f3f;
    font-size: 1.125rem;
    line-height: 58px;
    text-align: center;
    border-radius: 50px;
    transition: 0.3s;
}
.event_view .view_box .list_btn a:hover {
    background-color: #1d2f3f;
    color: #fff;
}

/* premium */
.premium.essential{
    min-width: 1600px;
}

.premium-vis{
    width: 100%;
    height: 100vh;
    min-height: 920px;
    background: #000;
}
.premium-tab{
    width: 100%;
    min-height: 920px;
    height: 100vh;
    display: flex;
    position: relative;
    z-index: 5;
}
.premium-tab .item{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

.item-bg{
    width: 100%; height: 0;
    position: absolute;
    background-color: #000000;
    opacity: .2;
    transition: 1s;
    border-right: 1px solid #c9cacc;
}
.item-bg2{
    width: calc(100% - 1px); height: 0;
    position: absolute;
    background-color: #000;
    opacity: 1;
    transition: 1s;
    left: 0px !important;
}

.item1 .item-bg,
.item3 .item-bg,
.item5 .item-bg{
    top: 0; left: 0;
}
.item2 .item-bg,
.item2 .item-bg2,
.item4 .item-bg2,
.item4 .item-bg{
    bottom: 0; right: 0;
}

.premium-vis.on .item-bg2,
.premium-vis.on .item-bg{
    height: 100%;
}
.premium-vis.on.active .item-bg2{
    height: 100%;
    width: 0;
}
.special .premium-vis .bg,
.essential .premium-vis .bg{
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: .5s;
    z-index: 0;
}
.special .premium-vis.on .bg,
.essential .premium-vis.on .bg{
    opacity: 0;
}
.special .premium-vis.on .bg.active,
.essential .premium-vis.on .bg.active{
    opacity: 1;
}

.premium-tab .title{
    display: block;
    line-height: 135px;
    color: #f6f6f6;
    font-size: 14px;
    opacity: 0;
    margin-top: 100px;
    transition: .8s;
}
.premium-tab .info{
    display: block;
    line-height: 120px;
    color: #f6f6f6;
    font-size: 26px;
    opacity: 0;
    font-weight: 300;
    margin-top: 100px;
    transition: .8s;
    letter-spacing: -0.04em;
}
.premium-vis.active .premium-tab .title{
    opacity: .4;
    transition-delay: 1.5s;
}
.premium-vis.active .premium-tab .info{
    opacity: .4;
    transition-delay: 1.5s;
}

.premium-vis .premium-tab svg{
    width: 68px; height: 68px;  
    transition: .5s;
}
.premium-vis .pre-logo{
    fill: #fff;
    opacity: 0;
    transition: 1s;
}

.item .title, .item svg, .item .info{
    position: relative;
    z-index: 10;
}

.premium-vis.active .premium-tab .pre-logo{
    opacity: 1;
    transition-delay: 1s;
}

.premium-vis *{
    cursor: pointer;
    user-select: none;
}

.first-bg{
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    z-index: 2;
    background: #000;
    opacity: 1;
}

.premium-vis.on.active .first-bg{
    opacity: 0;
}

.essential .premium-vis .bg[data='01']{
    background: #000
}

.essential .premium-vis .bg iframe{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

.essential .premium-vis .bg[data='02']{
    background: url(../img/essential-bgl.png) no-repeat center / cover;
}
.essential .premium-vis .bg[data='03']{
    background: url(../img/essential-bga.png) no-repeat center / cover;
}
.essential .premium-vis .bg[data='04']{
    background: url(../img/essential-bgn.png) no-repeat center / cover;
}
.essential .premium-vis .bg[data='05']{
    background: url(../img/essential-bgz.png) no-repeat center / cover;
}
.special .premium-vis .bg[data='01']{
    background: url(../img/special-bg-g.png) no-repeat center / cover;
}
.special .premium-vis .bg[data='02']{
    background: url(../img/special-bg-l.png) no-repeat center / cover;
}
.special .premium-vis .bg[data='03']{
    background: url(../img/special-bg-a.png) no-repeat center / cover;
}
.special .premium-vis .bg[data='04']{
    background: url(../img/special-bg-n.jpg) no-repeat center / cover;
}
.special .premium-vis .bg[data='05']{
    background: url(../img/special-bg-z.png) no-repeat center / cover;
}

.item svg{transform: translate(0, 0);overflow: visible;}

.essential .item1:hover svg{
    transform: translate(-43px, -100px);
}
.essential .item2:hover svg{
    transform: translate(-96px, -108px);
}
.essential .item3:hover svg{
    transform: translate(-89px, -108px);
}
.essential .item4:hover svg{
    transform: translate(-42px, -98px);
}
.essential .item5:hover svg{
    transform: translate(-49px, -108px);
}

.special .item1:hover svg{
    transform: translate(-43px, -100px);
}
.special .item2:hover svg{
    transform: translate(-62px, -108px);
}
.special .item3:hover svg{
    transform: translate(-70px, -110px);
}
.special .item4:hover svg{
    transform: translate(-34px, -99px);
}
.special .item5:hover svg{
    transform: translate(-49px, -107px);
}

.hover-title.special-g{
    padding-left: 65px;
}
.hover-title.special-l{
    padding-left: 42px;
}
.hover-title.special-a{
    padding-left: 0px;
    text-indent: 52px;
}
.hover-title.special-n{
    padding-left: 46px;
}
.hover-title.special-z{
    padding-left: 60px;
}


.item .item-hover{
    opacity: 0;
    transition: .5s;
}

.premium-vis.on.active .item:hover .item-hover{
    opacity: 1;
    transition-delay: 0.6s;
}

.item-hover{position: absolute;
width: 100%; top:50%;
height: 245px;
z-index: 10;
text-align: center;
transform: translateY(calc(-50% + 10px));
}

.hover-title{
    font-family: 'Pretendard', sans-serif;
    font-size: 50px;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 500;
    letter-spacing: -0.04em;
}
.hover-title.essential-g{
    padding-left: 65px;
}
.hover-title.essential-l{
    padding-left: 42px;
}
.hover-title.essential-a{
    padding-left: 65px;
}
.hover-title.essential-n{
    padding-left: 58px;
}
.hover-title.essential-z{
    padding-left: 65px;
}

.hover-info > em{
    display: inline;
    font-size: 12px;
    line-height: 24px;
    color: #c4c4c4;
    letter-spacing: -0.04em;
}
.item-hover > em{
    display: block;
    width: 1px;
    height: 26px;
    background-color: #fff;
    opacity: .4;
    margin: 0 auto;
}

.hover-subtit{
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.05em;
    margin: 30px auto;
}
.hover-info{
    font-size: 17px;
    line-height: 24px;
    color: #c4c4c4;
    letter-spacing: -0.04em;
}

.special .section,
.essential .section{
    background: #0f0f0f;
}

.sepcial .section .content,
.essential .section .content{
    width: 1440px;
    margin: 80px auto 0px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.iframe-wrap{
    width: 1388px;
    height: 490px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.iframe-wrap iframe{
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
}
.great-wrap{
    width: 100%;
    height: 660px;
    position: relative;
}
.essential .great .title-wrap{
    width: 451px;
    height: 116px;
    position: absolute;
    left: 55px;
    bottom: 254px;
}
.great .pre-tit1{opacity: .7;}

.great .title-wrap img{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.great .title-wrap .pre-tit1{
    mix-blend-mode: soft-light;
}
.txt{
    margin: 60px 0px 60px 52px;
}
.txt .tit{
    font-size: 26px; 
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.06em;
    margin-bottom:30px;
}
.txt .tit em{
    font-size: 22px;
}

.essential .great .txt .tit{
    margin-top:-80px
}

.txt .info{
    font-size: 17px;
    line-height: 30px;
    color: #c4c4c4;
    letter-spacing: -0.06em;
}

.special .section .content > div,
.essential .section .content > div{
    width: 1440px;
    height:674px;
    margin: 0 auto;
    position: relative;
}
.landmark .bg-wrap{
    width: 100%; height: 500px;
    margin-bottom: 60px;
}

.essential .bg-wrap,
.special .bg-wrap{
    position: relative;
}

.landmark .title-wrap{
    position: absolute;
    width: 401px;
    height: 274px;
    top: -48px;
    right: -107px;
}
.title-wrap img{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
}
.pre-tit1{
    mix-blend-mode: soft-light;
}

.abundant .title-wrap{
    width: 590px;
    height: 108px;
    position: absolute;
    left: 50px; bottom:160px;
    z-index: 10;
}
.essential .pre-tit1{
    opacity: 0.75;
}

.bg-wrap{overflow: hidden;}

.pagination-wrap{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px;
    width: 100%;
}
.pagination-wrap .prev-btn,
.pagination-wrap .next-btn{
    width: 50px; height: 50px;
    cursor: pointer;
    background: url(../img/essential-arr.png) no-repeat center;
    background-size: 9px 12px;
}

.pagination-wrap .prev-btn{
    transform: rotate(180deg);
}

.pre-pagination{display: flex; justify-content: space-between; height: 50px; align-items: center;}

.pre-pagination.item2{width: 30px !important;}
.pre-pagination.item3{width: 50px !important;}
.pre-pagination.item4{width: 75px !important;}

.pre-pagination .swiper-pagination-bullet-active{
    background: #d0cabc !important;
    width: 10px !important; height: 10px !important;
    border: none;
}
.pre-pagination .swiper-pagination-bullet{
    background: transparent;
    box-sizing: border-box;
    border:  1px solid #fff;
    width: 10px !important; height: 10px !important;
    margin: 0 !important;
    opacity: 1;
}

.lustrous-wrap{
    margin-top: 38px;
}

.noble .title-wrap{
    width: 440px;
    height: 173px;
    right: -100px;
    top:50px;
    position: absolute;
}
.zenith .title-wrap{
    width: 264px;
    height: 269px;
    left: -26px;
    top:28px;
    position: absolute;
}

.essential .pre-caution,
.special .pre-caution{
    font-size: 14px;
    font-weight: 300;
    color: #a6a6a6;
    letter-spacing: -0.06em;
    text-indent: -16px;
    padding-left: 16px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.txt .info + .pre-caution:first-of-type{
    margin-top: 24px;
}

.special .great .title-wrap{
    width: 519px;
    height: 129px;
    position: absolute;
    left: 53px;
    bottom:149px;
}


.special .lustrous-wrap .title-wrap{
    display: block;
    position: absolute;
    left: -48px;
    top:14px;
    width: 279px;
    height: 191px;
    z-index: 5;
}

.special .ai .title-wrap{
    display: block;
    position: absolute;
    right: 170px;
    bottom: 58px;
    width: 379px;
    height: 205px;
    z-index: 5;
}
.special .next .title-wrap{
    display: block;
    position: absolute;
    right: -101px;
    top:50px;
    width: 614px;
    height: 156px;
    z-index: 5;
}
.special .zenith .title-wrap{
    display: block;
    position: absolute;
    left: -28px;
    top:-22px;
    width: 264px;
    height: 269px;
    z-index: 5;
}
.special .lustrous-wrap .pre-tit1{
    opacity: .5;
}
.special .ai-wrap .pre-tit1{
    opacity: .5;
}
.special .next-wrap .pre-tit1{
    opacity: .5;
}
.special .zenith-wrap .pre-tit1{
    opacity: .5;
}

.ai-wrap .bg-wrap{
    position: relative;
    width: 100%; height: 500px;
}
.ai-wrap .img1{position: absolute; bottom: 0; left: 0; width: 890px; height: 460px; z-index: 1;}
.ai-wrap .img2{position: absolute; top: 0; right: 0; width: 720px; height: 300px; z-index: 2;}

.essential .content.active .title-wrap{
    transform: translateX(0);
    opacity: 1;
}
.essential .content .title-wrap{
    transition: .8s;

}
.essential .content.active .txt{
    opacity: 1;
    transition-delay: 1s;
}
.essential .content .txt{
    opacity: 0;
    transition: .8s;
}

.essential .great .title-wrap{
    transform: translateX(-50px);
    transition: .8s;
}

.essential .content:not(.active) .great-wrap .title-wrap{
    opacity: 0;
    transform: translateX(-50px);
}
.essential .content:not(.active) .landmark-wrap .title-wrap{
    opacity: 0;
    transform: translateX(50px);
}
.essential .content:not(.active) .abundant-wrap .title-wrap{
    opacity: 0;
    transform: translateX(50px);
}
.essential .content:not(.active) .noble-wrap .title-wrap{
    opacity: 0;
    transform: translateX(-50px);
}
.essential .content:not(.active) .zenith-wrap .title-wrap{
    opacity: 0;
    transform: translateX(-50px);
}


.special .content.active .title-wrap{
    transform: translateX(0);
    opacity: 1;
}
.special .content .title-wrap{
    transition: .8s;

}
.special .content.active .txt{
    opacity: 1;
    transition-delay: 1s;
}
.special .content .txt{
    opacity: 0;
    transition: .8s;
}

.special .great .title-wrap{
    transform: translateX(-50px);
    transition: .8s;
}

.special .content:not(.active) .great-wrap .title-wrap{
    opacity: 0;
    transform: translateX(-50px);
}
.special .content:not(.active) .lustrous-wrap .title-wrap{
    opacity: 0;
    transform: translateX(50px);
}
.special .content:not(.active) .ai-wrap .title-wrap{
    opacity: 0;
    transform: translateX(50px);
}
.special .content:not(.active) .next-wrap .title-wrap{
    opacity: 0;
    transform: translateX(-50px);
}
.special .content:not(.active) .zenith-wrap .title-wrap{
    opacity: 0;
    transform: translateX(-50px);
}

.landmark-wrap .img-notice{position: absolute; bottom:20px; right: 20px; color:#fff; font-size: 14px; line-height: 1.4; text-align: right;}
.img-notice{position: absolute; bottom:20px; left: 20px; color:#fff; font-size: 14px; line-height: 1.4; text-align: left;}


/* 브랜드 추가 부분 */

.brand.p3{position: relative;}
.brand.p3 .bg{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 0; transition: 1.2s; opacity: 0;}
.brand.p3 .bg.on{opacity: 1;}

.brand.p3 .bg[data='1']{background: url(../img/brand-s2-img1.jpg) no-repeat center / cover;}
.brand.p3 .bg[data='2']{background: url(../img/brand-s2-img2.jpg) no-repeat center / cover;}
.brand.p3 .bg[data='3']{background: url(../img/brand-s2-img3.jpg) no-repeat center / cover;}

.slo-box-wrap{position: relative; z-index: 10; width: 1440px; height: 100%; display: flex; justify-content: center; align-items: center; margin: 0 auto; gap: 18px;}

.slo-box-wrap li:nth-last-of-type(odd){
    transform: translateY(-40px);
    opacity: 0;
}
.slo-box-wrap li:nth-last-of-type(even){
    transform: translateY(40px);
    opacity: 0;
}
.slo-box-wrap.on li{
    transform: translateY(0);
    opacity: 1;
}


.slo-box-wrap li{
    width: 462px; height: 500px;
    background: rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: .8s;
    color: #ccc;
}

.slo-box-wrap li.on{
    background: rgba(0,0,0,0.7);
    color: #fff;
}

.slo-box-wrap li *{
    transition: .8s;
}

.brand.p3 .slo-tit{
    font-size: 24px;
    letter-spacing: -0.05em;
}

.brand.p3 .slo{
    font-family: 'Exmouth';
    font-size: 52px;
    margin: 40px auto;
}

.brand.p3 .slo-txt{
    font-size: 16px; line-height: 28px;
    letter-spacing: -0.05em;
}

/* 미래가치 */
/* 미래가치 */
.txt-wrap{display: flex; align-items: flex-end; justify-content: space-between;}
.txt-wrap .img-box{flex-shrink:0;position:relative;}
.txt-wrap .img-box iframe{display:block;width: 350px;height: 630px;position:absolute;bottom:0;}
.txt-wrap .fade_mo.d3 iframe{right:0;}
.txt-wrap .fade_mo.d1 iframe{left:0;}
.txt-box{letter-spacing: -0.05em;}
.txt-box .tit1{font-size: 40px; font-weight: 400; line-height: 46px; letter-spacing: -0.06em;}
.txt-box .tit2{font-size: 40px; font-weight: 600; line-height: 46px; letter-spacing: -0.06em;}
.txt-box .info{font-size: 17px; line-height: 30px; color: #050505; margin-top: 80px;}
.txt-box .info-ori{margin-top: 56px; font-size: 15px; color: #787878; line-height:1.5; padding-left:18px; text-indent:-18px;}
.txt-box .info-ori~.info-ori{margin-top: 14px; font-size: 15px; color: #787878;}

.fade_mo{opacity:0;transition:0.8s;}
.fade_mo.lef{transform:translate(-10%);}
.fade_mo.rig{transform:translate(10%);}
.fade_mo.d2{transition-delay:0.3s;}
.fade_mo.d3{transition-delay:0.6s;}

.mo.active .fade_mo{opacity:1;transform:none;}

.con_tit.reverse{text-align: right;}
.con_tit.reverse.con_tit .top_txt{right: 0; left: auto;}
.con_tit.reverse.con_tit .top_txt em{right: 0; left: auto;}

/* 청약안내 */
.mojip-container{display: flex; width: 100%; height: 623px; position: relative; margin-bottom: 340px;}
.mojip-container .lef{clip-path: rect(50% 50% 50% 50%);transition:0.8s;transition-delay:0.5s;}
.mojip-container.active .lef{clip-path: rect(0 100% 100% 0);}
.mojip-container .rig{width: 0px; flex-shrink: 0; background: #d0cabc; display: flex; justify-content: center; align-items: center; overflow: hidden; transition: .8s; transition-delay: 1.3s; position: relative;}
.mojip-container.active .rig{width: 510px;}
.mojip-container .box{display: flex; justify-content: center; align-items: center; flex-direction: column; position: absolute; top: 0; left: 0; width: 510px; height:100%;}
.mojip-container .box em{width: 1px; height: 60px; position: relative; display: block;  margin: 45px 0;}
.mojip-container .box em::after{display: block; position: absolute; content: ''; background: #000; width: 1px; height: 0%; top: 50%; left: 0; transform: translateY(-50%); transition:0.3s;transition-delay:1.5s;}
.mojip-container.active .box em::after{height: 60px;}

.mojip-container .btn-wrap{display: flex; justify-content: center; align-items: center; flex-direction: column; height:138px; gap: 10px;}

.mojip-container .btn1{width: 336px; height: 64px; background: url(../img/sub61-3.png) no-repeat center; text-align: left; padding: 0px 30px; opacity: 0; transition: .6s; transition-delay: 1.5s; transform: translateX(-40px);}
.mojip-container .btn2{width: 336px; height: 64px; background: url(../img/sub61-5.png) no-repeat center; text-align: left; padding: 0px 30px; opacity: 0; transition: .6s; transition-delay: 1.5s; transform: translateX(40px);}
.mojip-container .logo{opacity: 0; transition: .6s; transition-delay: 1.5s;}
.mojip-container.active .btn1,
.mojip-container.active .btn2,
.mojip-container.active .logo{opacity: 1; transform:none;}
.mojip-container span{display: block;  font-size: 22px; letter-spacing: -0.05em; color: #d0cabc; line-height: 62px;}
.mojip-container .bot{position: absolute; left: 120px; bottom:-202px; transition: .6s; transition-delay: 2s; opacity: 0; box-shadow: 4px 11px 14px 0px rgba(0, 0, 0, 0.1);}
.mojip-container.active .bot{position: absolute; left: 120px; bottom:-272px; opacity: 1;}

/* 단지 - 단지안내 */
.danji .con_tit{padding-top: 0px; letter-spacing: -0.05em;}
.danji-info{margin-top:80px;}
.danji-info .tit { color: #050505; font-weight: 600; font-size: 2.125rem; opacity: 0; transform: translate(0,100%); transition: 0.6s; margin-bottom: 40px; }
.danji-info .tit.active{opacity: 1; transform: none;}
.danji-ori {position: relative;padding-left: 17px;text-indent: -17px;margin-top: 20px;color: #000;font-size: 14px;line-height: 24px;letter-spacing: -0.02em;z-index: 5; font-weight:500;}
.danji-ori p~p{margin-top:4px;}

/* 단지 - 커뮤니티 */
.community .top{width: 100%; height: 1210px; position: relative;}
.community .top .title{font-size: 54px; color: #000; letter-spacing: -0.06em;}
.community .top .title strong{display: block;}
.community .top .item{font-size:22px; line-height: 30px; letter-spacing: -0.04em; color: #000; position: absolute;}
.community .item.item1{top: 380px; right: 820px; text-align: right;}
.community .item.item2{top: 920px; left: -80px;}
.community .item.item3{top: 1260px; left: 485px; display: flex; gap:5px}
.community .item.item4{top: 760px; right: 30px; text-align: right;}
.community .item strong{display: block;}
.community .bg{position: absolute; transition: .8s; opacity: 0; transition-delay: .6s;}
.community .bg.bg1{top: -80px; right: 0;}
.community .bg.bg2{top: 480px; left: -80px;}
.community .bg.bg3{top: 560px; left: 485px;}
.community .bg.bg4{top: 480px; right: 30px;}
.community .top.active .bg{opacity: 1;}
.community .top.active .bg.bg1{top: 0; right: 0;}
.community .top.active .bg.bg2{top: 480px; left: 0;}
.community .top.active .bg.bg3{top: 480px; left: 485px;}
.community .top.active .bg.bg4{top: 480px; right: 110px;}
.community .top.active .item.item1{top: 380px; right: 750px;}
.community .top.active .item.item2{top: 920px; left: 0;}
.community .top.active .item.item3{top: 1180px; left: 485px;}
.community .top.active .item.item4{top: 760px; right: 110px;}
.community .top .title{opacity: 0; transform: translateX(-80px); transition: 0.6s; line-height: 60px;}
.community .top .item{opacity: 0; transition: 0.6s; transition-delay: 1.2s;}
.community .top.active .title{opacity: 1; transform: none;}
.community .top.active .item{opacity: 1; transform: none;}
.community .bot{margin-top: 150px;}
.community .bot .tit{ color: #050505; font-weight: 600; font-size: 2.125rem; opacity: 0; transform: translate(0,100%); transition: 0.6s; margin-bottom: 40px; letter-spacing: -0.06em;}
.community .bot.active .tit{opacity: 1; transform: none;}
.community .bot .box-wrap{ width: 100%; background: #fafaf8; padding: 100px; height: 2815px; }
.community .bot img{transition: 0.8s; opacity: 0;}
.community .bot .item1{margin-bottom: 30px; transform: translateX(-80px);}
.community .community-wrap.type2{display:flex;justify-content: space-between;}
.community .bot .item2{transform: translateX(-80px);}
.community .bot .item3{transform: translateX(80px);}
.community .bot .item1.active,
.community .bot .community-wrap.active .item2,
.community .bot .community-wrap.active .item3{opacity: 1; transform: none;}
.community-wrap~.community-wrap{margin-top:40px;}

/* 세대 - 세대안내 */

.precaution { position: relative; padding: 30px 20px 30px 120px; margin-top: 60px; background-color: #f5f5f5;text-align:left;}
.precaution:before { display: inline-block; position: absolute; top: calc(50% - 25px); left: 40px; width: 50px; height: 50px; background: url(../img/precaution_icon.png) no-repeat; content: ""; } 
.precaution li {position: relative;padding-left: 10px;color: #828282;font-size: 14px;line-height: 24px;letter-spacing: -0.05em;font-weight: 500;} 
.precaution li b{font-weight: 600; color: #555;}


/* 세대 - 인테리어 */
.with_box .int{text-align: left;}
.item1 .int{overflow: hidden; width: 100%;}
.item1 .int.top{width: 100%; height: 1494px; position: relative; margin-bottom: 30px;}
.item1 .int.top img{position: absolute; top: 0; left: 0; transition: 1s; opacity: 0;}
.item1 .int.top .item2{transform: translateX(80px);}
.item1 .int.top .item3{transform: translateX(-80px);}
.item1 .int.top .item4{transform: translateY(80px);}
.item1 .int.top .item1.active{opacity: 1; transform: none !important;}
.item1 .int.top .item2.active{opacity: 1; transform: none !important;}
.item1 .int.top .item3.active{opacity: 1; transform: none !important;}
.item1 .int.top .item4.active{opacity: 1; transform: none !important;}
.item1 .int.bot{opacity: 0; transform: translateY(80px); transition: 1s;}
.item1 .int.bot.active{opacity: 1; transform: none;}


.item2 .int.bot img{transition: 1s;  opacity: 0;}
.item2 .int.bot{width: 100%; height: 1332px; position: relative;}
.item2 .int.bot img{position: absolute; top: 0; left: 0;}
.item2 .int~.int{margin-top: 30px;}
.item2 .int.top .tit{transform: translateX(80px); opacity: 0; transition: 1s;}
.item2 .int.mid{transform: translateY(80px); opacity: 0; transition: 1s;}
.item2 .int.bot .item3{transform: translateX(80px);}
.item2 .int.bot .item4{transform: translateX(-80px);}
.item2 .int.bot .item5{transform: translateY(80px);}
.item2 .int.top.active .tit{opacity: 1; transform: none;}
.item2 .int.mid.active{opacity: 1; transform: none;}
.item2 .int.bot .item3.active{opacity: 1; transform: none;}
.item2 .int.bot .item4.active{opacity: 1; transform: none;}
.item2 .int.bot .item5.active{opacity: 1; transform: none;}

/* 이벤트 이미지 첨부 폼 */
.img-input{position:relative;}
.img-box-btn{display:flex; gap:3px;margin-top:16px;align-items:center;}
.img-info{position:relative; }
.img-inputs{height:120px;}
/* .img-info-wrap{position:absolute; top:30px; left:40px;} */
.img-box-btn button{width:27px; height:27px; border:none; background:none; background-size:16px; font-weight:300; font-size:20px; line-height:30px; text-align:center;}
.img-box-btn button:first-of-type{background:url(../img/plus-btn.png) no-repeat center;}
.img-box-btn button:last-of-type{background:url(../img/minus-btn.png) no-repeat center;}

.img-box-wrap{padding: 10px 0px;}
.img-box-wrap li{display: flex; line-height:40px;}
.img-box-wrap span{ color:#555;font-size: 13px;}

.sub82-btn1 {display: block;width: 80px;height:28px;margin-top: 7px;margin-right:20px;border: none;background-color: #777;color: #fff;font-weight: 500;font-size: 14px;line-height: 26px;text-align:center;transition: 0.2s;}
.sub82-btn1:hover{border: 1px solid #777;background-color: #fff;color: #777;}
.photo_notice{margin-top:16px; color:#777; font-size:14px;}

/* 이벤트 폼 추가 */
.bo_tbl table tr td input[type="password"]{width:100%;height: 45px;padding: 0px 20px;border: none;background-color: #f0f0f0;color: #999;font-size: 1rem; text-align:left;outline: none;}

/* 이벤트 리스트 */
.event_tbl{margin-top: 25px;}
.event_tbl table{width: 100%;border-top: 1px solid #79838d;table-layout: fixed;}
.event_tbl table th{padding: 20px 0;border-bottom: 1px solid #ddd;color: #333;font-weight:500;text-align: center;}
.event_tbl table td{padding: 20px 0;border-bottom: 1px solid #eee;font-weight:300;text-align: center;}
.event_tbl table td a{display: flex;overflow:hidden;width: 90%;padding-left: 60px;color: #333;font-weight:400;font-size: 1rem;text-align: left;white-space:nowrap;align-items: flex-end;text-overflow:ellipsis;}
.event_tbl table td a:hover{text-decoration: underline;}
.event_tbl table td .no_data{padding:80px 0;color:#444;font-weight: 500;font-size:1rem;}
.event_tbl table .col1{width: 10%;}
.event_tbl table .col2,
.event_tbl table .col3{width: 17.5%;}
.event_tbl .lock{ height: 14px;margin-left:10px;}
.event_tbl .btn-wrap{display: flex;gap: 10px; margin-top: 40px;justify-content: flex-end; align-items: center;}
.event_tbl .btn-wrap .wr_btn{display:block; width: 180px; height:50px; border:1px solid #353535;background-color: #353535; color: #fff;font-weight: 600; font-size: 1rem; line-height: 48px; text-align: center; transition: 0.2s;}
.event_tbl .btn-wrap .wr_btn:hover {border: 1px solid #353535;background-color: #fff;color: #353535;}

/* 비밀글 비밀번호 확인 */
#pw_confirm { width: 500px; padding: 20px 0; margin: 0 auto; border-top: 1px solid #000; border-bottom: 1px solid #e5e5e5; background: #fff;text-align: center; box-sizing: border-box;}
#pw_confirm h3 {margin:60px 20px 40px; color:#000;font-size:32px;}
#pw_confirm .lock-logo{height: 60px;}
#pw_confirm p {padding:0 20px 40px;border-bottom:1px solid #e9e9e9;color:#000;font-size:16px;line-height:24px;}
#pw_confirm p strong {display:block;margin:0 0 5px;color:#000;font-size:20px ;}
#pw_confirm fieldset { display: flex; flex-direction: column; gap:30px;padding:50px;}
#pw_confirm fieldset .frm_input { height: 50px; padding: 8px; border: 1px solid #e5e5e5;background-color:transparent !important; font-size: 15px; border-radius: 4px;}
#pw_confirm label { position: absolute; color: transparent;letter-spacing:-0.1em; z-index: -1;}
#pw_confirm_id {display:inline-block;margin-right:20px;font-weight:bold;}
#pw_confirm .btn_submit{width: 100%; height: 50px; border: none; background: #000; color: #fff; font-weight: 700; font-size: 16px; line-height: 50px; cursor: pointer;}

/* 상담 추가 */
.bo_tbl table tr td > div.survey_loc2{gap:30px}
.bo_tbl table tr td > div.survey_loc2 label{display: flex; align-items: center; gap: 10px;}
.survey_radio4{display: flex;align-items: center;gap: 0;font-size: 14px !important;flex-wrap:wrap;gap:1.45vw}

@media (min-width:360px) and (max-width: 1420px){
    .wrap.subwrap{width: 100%; min-width:auto;}
    .survey * {accent-color: #353535;}
    .survey_header_wrap{position:absolute;left:0;top:0;width:100%;z-index:99;background:#191919;padding: 0 20px;}
    .survey_header{height:100px;position:relative;}
    .survey_header h1{position:absolute;top:30px;left:0;width:107px;}
    .survey_header .tel{position:absolute;right:0;top:0;line-height:100px;color:#d0cabc;display:flex;align-items:center;}
    .survey_header .tel p{font-size:1.063rem;font-family:'Pretendard';letter-spacing:-0.02em;}
    .survey_header .tel p span{font-weight:500;}
    .survey_header .tel em{background-color:#827e75;width:1px;height:16px;margin: 0 15px;}
    .survey_header .tel a{color:#d0cabc;font-family:'Pretendard';font-weight:500;font-size:1.188rem;letter-spacing:0.02em;}
    .survey_radio{font-size: 14px !important;}
    .survey_radio4 {display: flex;align-items: center;gap: 14px;flex-wrap: wrap;}
    .survey_tit strong{font-size: 28px; color: #fff; letter-spacing: -0.04em; font-weight: 600; margin-bottom: 60px; display: block; padding-top: 140px;}
    .survey_tit p{font-size: 17px; line-height: 32px; letter-spacing: -0.04em; color: #dcdcdc;}
	.survey_tit_box{margin-bottom:50px;display:flex;justify-content:space-between;}
	.survey_tit_box .lef p{font-size:38px;color:#222;line-height:1.3em;font-weight:600;}
	.survey_tit_box .rig .logo img{display:block;width:150px;margin: 0 0 0 auto;}
	.survey_tit_box .rig .name_box{margin-top:30px;}
	.survey_tit_box .rig .name_box .bo_tbl{width:400px;margin-bottom:0;}
    .survey input[type="radio"]{width: 14px; height: 14px;}

	.bo_tbl table tr td .black_btn{width: 80px}
    .bo_tbl table tr td > div.survey_loc2{font-size: 14px;}
    .survey input, .survey select{font-size: 14px !important;line-height:35px}
    .survey_radio4{display: flex;align-items: center;gap: 0;font-size: 14px !important;flex-wrap:wrap;gap:1.45vw}
    .cus_type{font-size: 12px !important;}
    .bo_tbl .cus_type ul li label span{font-size: 14px;margin-left:6px;font-weight:500;}
    .bo_tbl .cus_type ul li label input{width: 15px;height: 15px;}
	.bo_tbl table tr th{font-size: 1.06rem;font-weight: 400;color: #333;padding: 25px 0 25px 16px;text-align: left;border-bottom: 1px solid #e5e5e5;line-height:1.3em;}
	.bo_tbl table tr td > div.survey_loc2{gap:30px}
	.bo_tbl table tr td > div.survey_loc2 label{display: flex; align-items: center; gap: 10px;}
}


/* 레이어 팝업 */
.layer-wrap{position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.3); top: 0; left: 0; z-index: 9999; display: none;}
.layer-wrap.active{display: block;}

.layer-view{display: none; width: 1160px; height: 652px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10000; background: #000;}
.layer-view.active{display: block;}

.video-wrap iframe{width: 100%; height: 100%; position: absolute; top: 0; left: 0;}
.video-wrap.active{display: block;}
.close-btn{background: url(../img/close5.png) no-repeat center; width: 40px; height: 40px; position: absolute; top: 0; right: -50px;cursor: pointer;}

/* 유니트 영상 */
.with_box .video-wrap{width: 100%; height: 0; padding-bottom: 56.25%; position: relative; background: #555;}
.with_box .video-wrap iframe{width: 100%; height: 100%; top: 0; left: 0; position: absolute;}