@charset "utf-8";

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'aesop';
    src: url(../font/Aesop\ Regular.ttf) format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

body {
    line-height: 1;
    color: #333;
    font-family: 'Pretendard-Regular';
    overflow-x: hidden;
    cursor: none;
    max-width: 100%;
    width: 100%;
}


.cursor { 
	position: absolute;
    top: 0;
    left: 0;
	background-color: #b9a88b;
	width: 6px; height: 6px;
	border-radius: 100%;
	z-index: 10000;
	user-select: none;
	pointer-events: none;
	transform: scale(1);
	transition: 
		0.3s ease-in-out transform,
		0.2s ease-in-out opacity;
	
}

.cursor > p {
    color: #fff;
    font-weight: 100;
    position: absolute;
    left: 15px;
}

.cursor:active {
    opacity: 0.5;
    transform: scale(0);
}
.cursor:hover{
    opacity: 0.08;
}
.cursor-follower {
	position: absolute; 
    top: 50px;
    left: 0;
	background-color: #ebeade96;
	width: 20px; height: 20px;
	border-radius: 100%;
	z-index: 10000;
	transform: translate(5px, 5px);
	user-select: none;
	pointer-events: none;
	transition: 
		0.6s ease-in-out transform,
		0.2s ease-in-out opacity;
	
}
	
	
.cursor-follower:active {
    opacity: 0.7;
    transform: scale(3);
}
.cursor-follower:hover {
    opacity: 0.08;
}
/*  */

.loading {
    max-width: 100%;
    width: 100%;
    height: 100vh;
    background-color: #202020;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}



.loading p {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.loading p a {
    width: 135px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 30px;
    display: block;
    color: #fff;
    transition: 0.5s;
    font-family: 'aesop';
}

.loading p a:hover {
    color: #f0efe0;
    transition: 0.5s;
    transform: scale(1.2);
    background-color: #2020209a;
    width: 200px;
    height: 35px;
    line-height: 35px;
    border-radius: 10px;
}


/* 🎈🎈🎈 loading video 🎈🎈🎈 */

.loading video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}


/* 🧨🧨🧨header🧨🧨🧨 */
header {
    max-width: 100%;
    width: 100%;
    height: 100px;
    position: absolute;
    z-index: 1;
}

header .inner {
    width: 1600px;
    height: 100%;
    /* background-color: forestgreen; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

/* 로그인 */

header .inner .login {
    width: 500px;
    height: 650px;
    color: #fff;
    display: none;
}

header .right > span {
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    position: absolute;
    right: 100px;
}


header .inner .login .inner {
    background-color: #fff;
    width: 500px;
    height: 650px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #202020;
    transition: all 0.5s;
}

header .inner .login .inner .close {
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
}

header .inner .login .inner .close img {
    transition: 1s;
}

header .inner .login .inner .close img:hover {
   transform: rotate(-90deg);
   transition: 1s;
}

header .inner .login .inner .from {
    margin: 0 auto;
    text-align: center;
}

header .inner .login .inner .from h3 {
    font-size: 40px;
    margin-bottom: 50px;
    font-family: 'aesop';
    font-weight: 100;
}

header .inner .login .inner .from fieldset {
    border: none;
}

.login .inner .from fieldset .box1 span {
    width: 250px;
    height: 30px;
    margin: 0 auto;
    background-color: #202020;
    color: #fff;
    display: block;
    line-height: 30px;
    margin-bottom: 20px;
    border-radius: 30px;
    transition: 0.5s;
    cursor: pointer;
}

.login .inner .from fieldset .box1 span:hover {
    background-color: rgb(236, 227, 211);
    color: #202020;
    transition: 0.5s;
}

.login .inner .from fieldset .box1 ul {
    display: flex;
    justify-content: space-between;
}

.login .inner .from fieldset .box1 ul li {
    border-right: 1px solid #202020;
    padding: 0 10px;
}

.login .inner .from fieldset .box1 ul li:last-child {
    border: none;
}

header .inner .login .inner .from fieldset .box input {
    width: 250px;
    height: 30px;
    margin-bottom: 10px;
}

input[type="text"],
input[type="password"] {
    width: 300px;
    height: 40px;
    border: 1px solid #333;
    padding: 0 10px;
}

header .inner .login .inner .from fieldset .box label {
    display: none;
}

header .inner .right {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
}



header .inner .right .search img {
    margin-right: 20px;
    cursor: pointer;
}



/* header .inner .right .open_menu img {
    object-fit: cover;
    cursor: pointer;
} */

/* example 8 */

.menu {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
}

.menu span {
    margin: 0 auto;
    position: relative;
    top: 12px;
}

.menu span:before,
.menu span:after {
    position: absolute;
    content: '';
}

.menu span,
.menu span:before,
.menu span:after {
    width: 30px;
    height: 3px;
    background-color: #fff;
    display: block;
}

.menu span:before {
    margin-top: -12px;
}

.menu span:after {
    margin-top: 12px;
}

.example8 span {
    -webkit-transition: 0.2s ease 0s;
    transition: 0.2s ease 0s;
}

.open_menu .example8 span:before,
.open_menu .example8 span:after {
    -webkit-transition-property: margin, opacity;
    transition-property: margin, opacity;
    -webkit-transition-duration: 0.2s, 0s;
    transition-duration: 0.2s, 0s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.open_menu .example8:hover span {
    width: 16px;
    height: 16px;
    margin-top: -5px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.open_menu .example8:hover span:before,
.open_menu .example8:hover span:after {
    margin-top: 0px;
    opacity: 0;
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
}

/* example8 end */


header .inner nav {
    width: 50%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -9999px;
    text-align: center;
    background-color: #202020;
    padding-top: 100px;
    transition: 0.5s;
}

header .inner nav .close_menu {
    cursor: pointer;
    margin-bottom: 20px;
    color: #fff;
}

header .inner nav .close_menu:hover {
    color: rgb(236, 227, 211);
}


header .inner nav .gnb .depth01 {
    width: 60%;
    margin: 10px auto;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
}

header .inner nav .gnb .depth01>a {
    font-size: 30px;
    font-weight: normal;
    height: 50px;
    line-height: 50px;
}

header .inner nav .gnb .depth01>a:hover {
    color: rgb(236, 227, 211);
}

header .inner nav .gnb .depth02 {
    background-color: #fff;
    display: none;
}

header .inner nav .gnb .depth02 li {
    color: #202020;
    padding: 15px 0;
    border-bottom: 1px dashed #202020;
    font-weight: normal;
    cursor: pointer;
}

header .inner nav .gnb .depth02 li:hover {
    font-weight: bold;
}

header .inner .search_box {
    position: absolute;
    top: 80px;
    right: 50px;
    display: none;
}

header .inner .search_box input {
    width: 200px;
    height: 30px;
    color: #fff;
    transition: 0.5s 0.5s;
    display: block;
}

header .inner .search_box input.on {
    width: 300px;
}

header .inner .search_box input[type="text"] {
    color: #202020;
}

header .inner .search_box button {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    width: 35px;
    height: 30px;
}


/* 🧨🧨🧨video🧨🧨🧨 */

.main_01 {
    width: 100%;
    position: relative;
}

.main_01 video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
    filter: brightness(20%);
    display: block;
}

.main_01 div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #eee;
    text-align: center;
}

.main_01 div h1 {
    font-size: 40px;
    margin-bottom: 30px;
    font-family: 'aesop';
    font-weight: 100;
}

.main_01 div p {
    line-height: 22px;
    font-weight: normal;
}

/*  */

.wrapper {
    display: grid;
    place-items: center;
}

.typing-demo.on {
    width: 100%;
    animation: typing 3.5s steps(50), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-size: 16px;
}

@keyframes typing {
    from {
        width: 0;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}



/* 🧨🧨🧨cont01🧨🧨🧨 */

.cont01 {
    width: 100%;
    position: relative;
}

.cont01 h1 {
    position: absolute;
    top: 70px;
    left: 160px;
}

.cont01>img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.cont01 .image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cont01 .image img {
    height: 350px;
    object-fit: cover;
}

.cont01 div {
    position: absolute;
    top: 50%;
    right: 250px;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
}

.cont01 div strong {
    font-weight: 100;
    font-family: 'aesop';
    font-weight: 100;
}

.cont01 div h3 {
    font-size: 40px;
    margin: 10px 0 30px;
    font-family: 'aesop';
    font-weight: 100;
}

.cont01 div p,
.cont02 div p {
    line-height: 25px;
    margin-bottom: 40px;
    font-weight: normal;
}

.cont01 div span {
    width: 96px;
    height: 14px;
    position: relative;
    left: -5%;
    cursor: pointer;
}

.cont01 div span::before {
    content: '';
    background: url(../img/next1.png) center center / cover no-repeat;
    width: 65px;
    height: 10px;
    position: absolute;
    bottom: 5px;
    left: 50px;
}


/* .cont01 div span {
    width: 150px;
    height: 30px;
    margin: 0 auto;
    background-color: #fff;
    color: #202020;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    transition: 0.2s;
    cursor: pointer;
}

.cont01 div span:hover {
    background-color: #202020;
    color: #fff;
    transition: 0.2s;
} */


/* 🎈🎈🎈cont02🎈🎈🎈 */

.cont02 {
    width: 100%;
    height: 100vh;
    position: relative;
}

.cont02>img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.cont02 h1 {
    position: absolute;
    top: 70px;
    left: 160px;
}

.cont02 div {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.cont02 div span {
    width: 96px;
    height: 14px;
    position: relative;
    left: -5%;
    cursor: pointer;
}

.cont02 div span::before {
    content: '';
    background: url(../img/next1.png) center center / cover no-repeat;
    width: 65px;
    height: 10px;
    position: absolute;
    bottom: 5px;
    left: 50px;
}


/* .cont02 div span {
    width: 150px;
    height: 30px;
    margin: 0 auto;
    background-color: #fff;
    color: #202020;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    transition: 0.2s;
    cursor: pointer;
}

.cont02 div span:hover {
    background-color: #202020;
    color: #fff;
    transition: 0.2s;
} */

.cont02 div h3 {
    font-size: 40px;
    margin-bottom: 40px;
    font-family: 'aesop';
    font-weight: 100;
}

.cont02 .text_slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
}

.cont02 .text_slide p {
    font-size: 20px;
    white-space: nowrap;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    animation: text 90s linear infinite;
}

@keyframes text {
    to {
        transform: translateX(-100%);
    }

    from {
        transform: translateX(10%);
    }
}


/* 🧨🧨🧨스와이프 슬라이드🧨🧨🧨 */

.swiper .swiper-wrapper {
    width: 1600px;
    height: 640px;
    margin: 100px auto;
}

.swiper .swiper-wrapper .swiper-slide img {
    width: 1600px;
    height: 640px;
    object-fit: cover;
}


/* 🧨🧨🧨list🧨🧨🧨 */

.list {
    width: 1600px;
    margin: 0 auto;
}

.list .text span {
    color: #858585;
}

.list .text h1 {
    font-size: 40px;
    margin-top: 10px;
    color: #333;
    font-weight: normal;
}

.list .text p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 25px;
}

.list .swiper {
    margin-top: 50px;
    text-align: center;
}

.list .swiper .swiper-wrapper .swiper-slide {
    width: 460px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.list .swiper .swiper-wrapper .swiper-slide>div {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.list .swiper .swiper-wrapper .swiper-slide>div h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.list .swiper .swiper-wrapper .swiper-slide img {
    width: 305px;
    height: 173px;
    object-fit: cover;
}

.list .swiper .swiper-wrapper .swiper-slide:nth-child(4) img {
    width: 342px;
    height: 192px;
    object-fit: cover;
}

.list .swiper .swiper-wrapper .swiper-slide:nth-child(5) img {
    width: 171px;
    height: 382px;
    object-fit: cover;
}

.list .swiper .swiper-wrapper .swiper-slide:nth-child(6) img {
    width: 138px;
    height: 382px;
    object-fit: cover;
}

.list .swiper .swiper-wrapper .swiper-slide:nth-child(7) img {
    width: 156px;
    height: 378px;
    object-fit: cover;
}


/* 🎈🎈🎈list2🎈🎈🎈 */

.list2 {
    width: 100%;
}

.list2 .inner {
    display: flex;
    justify-content: space-between;
}

.list2 .inner figure {
    width: 320px;
    height: 320px;
    position: relative;
    transition: 0.2s;
}

.list2 .inner figure .img-hover {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.list2 .inner figure:hover .img-hover {
    display: block;
    transition: 0.5s;
}


/* 🎁🎁🎁cont03🎁🎁🎁 */


.cont03 {
    width: 1600px;
    height: 600px;
    margin: 0 auto;
    position: relative;
}

.cont03 .text {
    position: absolute;
    top: 50%;
    left: 0;

}

.cont03 .text h3 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #333;
    font-weight: normal;
}

.cont03 .text p {
    margin-bottom: 20px;
    line-height: 22px;
}


.cont03 .text span {
    width: 0;
    height: 30px;
    position: absolute;
    left: 0;
    transition: 0.5s linear;
}

.cont03 .text span a {
    width: 150px;
    height: 30px;
    font-size: 16px;
    border: 1px solid #202020;
    display: block;
    text-align: center;
    line-height: 30px;

}

.cont03 .text span:hover {
    width: 150px;
    height: 30px;
    color: #fff;
    background-color: #202020;
    transition: 0.5s linear;
}

.cont03 .swiper {
    width: 1070px;
    height: 600px;
    position: absolute;
    top: 0;
    right: 0;
}


.cont03 .swiper .swiper-wrapper .swiper-slide img {
    width: 1070px;
    height: 600px;
    object-fit: cover;
}


/* 🎈🎈🎈cont04🎈🎈🎈 */

.cont04 {
    width: 100%;
    height: 100vh;
    background: url(../img/sub_bn/00.jpg) center center / cover fixed no-repeat;
    margin-top: 100px;
}

.cont04 span {
    position: absolute;
    left: -999999999px;
}


/*🧨🧨🧨 footer 🧨🧨🧨*/

  
 

footer {
    width: 100%;
    height: 100px;
    background-color: #202020;
    color: #fff;
}

footer .inner {
    width: 1600px;
    margin: 0 auto;
    display: flex;
    position: relative;
}

footer .inner ul {
    line-height: 100px;
}

footer .inner ul li {
    display: inline-block;
    font-size: 14px;
    font-weight: 100;
    margin-right: 30px;
}

footer .inner .in li a {
    padding-bottom: 3px;
}

footer .inner .in li a:hover {
    border-bottom: 1px solid #fff;
}

footer .inner .in li:first-child a:hover {
    border: none;
}


footer .inner .sns {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
}

footer .inner .sns li {
    margin-right: 10px;
}

footer .inner .sns li a img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    transition: 0.5s;
}

footer .inner .sns li a:hover img {
    transform: scale(1.2);
    transition: 0.2s;
}