@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

.wrap {
    background-color: #ffffff;
    font-family: 'Pretendard-Regular';
    font-weight: 400;
}

.header {
    background-color: #ffffff00;
    width: 1920px;
    height: 100px;
    position: fixed;
    top:0;
    left: 50%;
    z-index: 555;
    transform: translateX(-50%);
}

.header:hover {
    background-color: white;
}

.header:hover .inner {
    color: black;
    border-bottom: 1px solid black;
}

.header:hover .top_inner .box li {
    color: black;
}
.inner {
    margin:0 auto;
    background-color: rgba(127, 255, 212, 0);
    border-bottom: 1px solid #fff;
    color: white;
    width: 1820px;
    display: flex;
    justify-content: space-between;
    height: 60px;
    align-items: center;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, 0);
}
.inner .logo {
    position: absolute;
    top: 30;
    left: 50%;
    transform: translate(-50%,0);
}

.header:hover .inner .logo {
    filter: brightness(0);
    }

.inner .logo img {
    display: block;
}

.inner .nav .gnb {
    display: flex;
    column-gap: 40px;
}

.inner .nav .gnb > li {
    font-weight: 200;
   /*  position: relative; */
}

.inner .nav .gnb > li:hover .depth-02 {
    opacity: 1;
    visibility: visible;
}


.inner .nav .gnb > li .depth-02 {
    position: absolute;
    top: 60px;
    left: 0px;
/*     top: 40px;
    left: 0px; */
    white-space: nowrap;
    background-color: white;
    color: black;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    height: 330px;
    width: 600px;

}

.inner .nav .gnb > li .depth-02 > li {
    padding: 15px 20px 15px 10px;
    text-align: start;
    position: relative;
    font-size: 14px;

}



.inner .nav .gnb > li .depth-02 > li img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    right: 15px;
    top: 35%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.inner .nav .gnb > li .depth-02 > li:nth-child(2) img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    right: 15px;
    top: -30px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.inner .nav .gnb > li .depth-02 > li:nth-child(3) img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    right: 15px;
    top: -76px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.inner .nav .gnb > li .depth-02 > li:nth-child(4) img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    right: 15px;
    top: -122px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.inner .nav .gnb > li .depth-02 > li:nth-child(5) img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    right: 15px;
    top: -168px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.inner .nav .gnb > li .depth-02 > li:nth-child(6) img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    right: 15px;
    top: -214px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.inner .nav .gnb > li .depth-02 > li:nth-child(7) img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    right: 15px;
    top: -260px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}


.inner .nav .gnb > li .depth-02 > li:hover img {
    opacity: 1;
    visibility: visible;
}


.inner .nav .gnb > li .depth-02 > li:after {
    content: '';
    background-color: black;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 82%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.inner .nav .gnb > li .depth-02 > li:hover::after{
    opacity: 1;
    visibility: visible;
}

.inner .nav .gnb > li .depth-02 li a {
    display: block;
}


.inner .util {
    display: flex;
    column-gap: 20px;
}

.header:hover .inner .util {
        filter: brightness(0);
}

.top_inner {
    background-color: rgba(151, 151, 151, 0);
    height: 40px;
    line-height: 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.top_inner .box {
    display: flex;
    width: 100%;
    justify-content: center;
    column-gap: 43px;
}

.top_inner .box li {
    font-size: 14px;
    font-weight: 300;
    color: #eee;
    position: relative;
}

.top_inner .box li::after {
    content: '';
    width: 4px;
    height: 4px;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: 0.5s;
}

.top_inner .box li:hover::after {
    opacity: 1;
}


.reservation {
    position: absolute;
    top: 100px;
    left:50%;
    transform: translate(-50%,0);
    background-color: rgba(121, 121, 121, 0);
    width: 281px;
    height: 40px;
    text-align: center;
    border: none;
    border-bottom: 1px solid #fff;;
}

.header:hover .reservation{
    background-color: white;
    border: none;
    border-bottom: 1px solid black;
    }

.header:hover .reservation a {
    color: black;
    
}


.reservation a {
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    margin-right: 8px;

}

.reservation img {
    position: relative;
    top: 6px;
}

.header .reservation img {
    filter: brightness(1);
}

.header:hover .reservation img {
    filter: brightness(0);
}




.header .reservation_box {
    display: flex;
    position: absolute;
    align-items: center;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 12px 20px;
    opacity: 0;
    visibility: hidden;
}
.header .reservation_box .box_wrap {
    display: flex;
    text-align: center;
}   
.header .reservation_box .box_wrap .box {
    border-right: 1px solid black;
    padding: 5px 10px;
}
.header .reservation_box .box_wrap .box p{
    margin-bottom: 20px;
}
.header .reservation_box .box_wrap .box .box01_1{
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .reservation_box > a {
    display: block;
    width: 120px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border: 1px solid black;
    border-radius: 6px;
    margin-left: 15px;
}

.header .reservation_box.active {
    opacity: 1;
    visibility: visible;
}

.main .main_visual {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide {
    height: 980px;
}
.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .main_box {
    color: white;
    position: absolute;
    top: 35%;
    left: 10%;

}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .main_box p {
    font-size: 32px;
    font-weight: 300;
    position: relative;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .main_box p:after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: -10px;
    left: 164px;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .main_box p:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: -10px;
    left: 191px;
}


.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .main_box h3 {
    font-size: 60px;
    font-family: "EB Garamond", serif;
    font-weight: 100;
    
}



.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide  .text_box {
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    right: 152px;
    width: 660px;
    padding: 13px 8px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    opacity: 0;
    transition: 0.5s;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide  .text_box.active {
    opacity: 1;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .text_box .text{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    width: 100%;

}
.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .text_box .text li{
    display: flex;
    height: 50px;
    width: 100%;
    line-height: 50px;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .text_box .text li:nth-child(1){
    border-bottom: 1px solid black;

}
.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .text_box .text li:nth-child(2){
    border-bottom: 1px solid black;

}
.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .text_box .text li:nth-child(3){
    border-bottom: 1px solid black;

}


.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .text_box .text li a{
    display: flex;

}
.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .text_box .text li p{
    display: inline-block;
}
.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .text_box .text li span{
    display: inline-block;
}



.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .button{
    border-bottom: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 50px;
    width: 120px;
    text-align: center;
    height: 60px;
    line-height: 60px;
}


.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .button:hover{
    background-color: white;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .button:hover p{
    color: black;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .button:hover img{
    filter: brightness(0);

}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .button img {
    width: 21px;
    height: 24px;

}
.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .button p {
    font-family: "EB Garamond", serif;
    color: white;
    font-size: 16px;
    display: block;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .weather_box {
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.329);
    width: 520px;
    position: absolute;
    bottom: 0;
    gap: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .weather_box .box {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .weather_box .box:nth-child(2) {
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .weather_box .box p {
    font-size: 16px;
    font-weight: 200;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .weather_box .box p span {
    font-size: 12px;
    margin-left: 3px;
}

.main .main_visual .mainSwiper .swiper-wrapper .swiper-slide .weather_box .box img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}




.main .section-01 .box_wrap {
    width: 100%;
    position: relative;

}
.main .section-01 .box_wrap img {
    width: 100%;
    height: 900px;
    display:block;
    object-fit: cover;
}
.section-01 .box_wrap h2 {
    font-size: 40px;
    font-family: "EB Garamond", serif;
    font-weight: 300;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
}
.section-01 .box_wrap .left_box {
    position: absolute;
    top: 50%;
    left: 110px;
    transform: translate(0,-50%);
}
.section-01 .box_wrap .left_box .circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background-color: #83838338;
    box-shadow: 0px 0px 10px #000;
    position: relative;
    opacity: 0;
}

.main .section-01 .box_wrap:hover .circle {
    opacity: 1;
    transition: 0.8s;
}

.section-01 .box_wrap .left_box .circle .text {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgb(87, 65, 211);
    text-align: center;
    line-height: 100px;
    color: white;
}

.section-01 .box_wrap .left_box .circle .text:nth-child(1){
    position: absolute;
    top: -10px;
    right: 40px;
    background-color: #539ADC;
}
.section-01 .box_wrap .left_box .circle .text:nth-child(2) {
    position: absolute;
    top: 90px;
    right: -40px;
    background-color: #779EC3;
}
.section-01 .box_wrap .left_box .circle .text:nth-child(3) {
    position: absolute;
    top: 220px;
    right: -40px;
    background-color: #4F84B6;
}
.section-01 .box_wrap .left_box .circle .text:nth-child(4) {
    position: absolute;
    bottom: -10px;
    right: 40px;
    background-color: #539ADC;
}

.section-01 .box_wrap .left_box .circle .text:hover {
    box-shadow: inset 2px 1px 4px rgb(78, 78, 78);
}

.section-01 .box_wrap .left_box .circle .text p {
    font-size: 18px;
    color: white;
}

.section-01 .box_wrap .text_box{
    color: white;
    opacity: 0;
    transition: 1.5s;
    visibility: none;
}

.section-01 .box_wrap .text_box p:nth-child(1) {
    position: absolute;
    top: 200px;
    right: 300px;
    font-size: 24px;
}

.section-01 .box_wrap .text_box p:nth-child(2) {
    position: absolute;
    top: 300px;
    right: 450px;
    font-size: 24px;
}

.section-01 .box_wrap .text_box p:nth-child(3) {
    position: absolute;
    top: 35%;
    right: 40%;
    font-size: 20px;
}

.section-01 .box_wrap .text_box p:nth-child(4) {
    position: absolute;
    top: 47%;
    right: 40%;
    font-size: 20px;
}

.section-01 .box_wrap .text_box p:nth-child(5) {
    position: absolute;
    top: 47%;
    right: 10%;
    font-size: 20px;
}

.main .section-01 .box_wrap:hover .text_box {
    opacity: 1;
    visibility:visible;
}


.section-02 .box_wrap {
    width: 100%;
    position: relative;
}

.section-02 .box_wrap .blur {
    width: 100%;
    height: 1000px;
    background-color: #00000036;
    position: absolute;
    top:0;
    left: 0;
    backdrop-filter: blur(5px); 

}

.section-02 .box_wrap h2 {
    width: 100%;
    text-align: center;
    font-family: "EB Garamond", serif;
    font-size: 40px;
    font-weight: 300;
    color: white;
    border-bottom: 1px solid white;
    position: absolute;
    top:100px;
    left:50%;
    transform: translate(-50%,-50%);
}

.section-02 .box_wrap img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    display: block;
}

.section-02 .box_wrap .item_wrap {
    width: 1820px;
    display: flex;
    justify-content: center;
    gap: 17px;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.section-02 .box_wrap .item_wrap .item {
    width: 350px;
    height: 700px;
    transition: 0.4s;
    overflow: hidden;
    position: relative;
}

.section-02 .box_wrap .item_wrap .item.active {
    width: 1000px;
    transform: scale(1.2);
}

.section-02 .box_wrap .item_wrap .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-02 .box_wrap .item_wrap .item:hover {
    transform: scale(1.2);
    
}

.section-02 .box_wrap .item_wrap .item .text {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgba(0, 0, 0, 0.308);
    width: 100%;
    height: 56px;
    line-height: 56px;
    text-align: center;
    font-size: 20px;
    font-weight: 200;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}

.section-02 .box_wrap .item_wrap .item:hover .text {
    opacity: 1;
    visibility: visible;

}



.section-03 .event_wrap {
    width: 100%;
    height: 1500px;
    position: relative;
}
.section-03 .event_wrap > img {
    width: 100%;
    height: 100%;
    display: block;
    
}

.section-03 .event_wrap > h2 {
    font-size: 40px;
    font-family: "EB Garamond", serif;
    font-weight: 300;
    width: 100%;
    text-align: center;
    color: white;
    border-bottom: 1px solid white;
    position: absolute;
    top:100px;
    left:50%;
    transform: translate(-50%,-50%);
}

.section-03 .event_wrap > a {
    font-size: 14px;
    color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(255, 255, 255);
    display: block;
    padding: 3px 10px;
    position: absolute;
    top:170px;
    right: 50px;
}

.section-03 .event_wrap .all_box {
    position: absolute;
    top:200px;
    left: 50%;
    display: flex;
    width: 1820px;
    height: 1250px;
    gap: 28px;
    transform: translateX(-50%);

}

.section-03 .event_wrap .all_box .sticky {
    width: 48%;
    height: 700px;
    position: sticky;
    top: 0;
}

.section-03 .event_wrap .all_box .sticky .eventSwiper{
    height: 100%;
}

.section-03 .event_wrap .all_box .sticky .eventSwiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
}

.section-03 .event_wrap .all_box .sticky .eventSwiper .swiper-wrapper .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
}

.section-03 .event_wrap .all_box .package_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    width: 50%;
    height: 700px;
}

.section-03 .event_wrap .all_box .package_box .package {
    width: 48.4%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.315);
}

.section-03 .event_wrap .all_box .package_box .package img {
    width: 100%;
    object-fit: cover;
    display: block;

}

.section-03 .event_wrap .all_box .package_box .package .text{
    padding: 20px 40px;
    height: 283px;
    text-align: center;
    background-color: white;
}
.section-03 .event_wrap .all_box .package_box .package .text h2 {
    font-size: 24px;
    margin-bottom: 13px;
}
.section-03 .event_wrap .all_box .package_box .package .text > p {
    font-size: 16px;
    margin-bottom: 17px;
}
.section-03 .event_wrap .all_box .package_box .package .text > span {
    color: #777;
    font-size: 14px;
   
}

.section-03 .event_wrap .all_box .package_box .package .text > strong {
    font-size: 24px;
    display: block;
    margin-top: 20px;
    margin-bottom: 32px;
    color:#2790f1;
}

.section-03 .event_wrap .all_box .package_box .package .text > strong span{
    font-size: 18px;
    color:#333;
    
}

.section-03 .event_wrap .all_box .package_box .package .text .button {
    width: 150px;
    margin: 0 auto;
    line-height: 44px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid black;
}

.section-03 .event_wrap .all_box .package_box .package .text .button:hover {
    background-color: #2790F1;
    color: white;
    border: none;
}

.section-03 .event_wrap .all_box .package_box .package .text .button a {
    font-size: 16px;
    display: block;
}


.section-04 {
    
}

.section-04 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.section-04 .lusong_wrap {
    width: 100%;
    height: 800px;
    position: relative;
}

 .section-04 .lusong_wrap > img {
    height: 100%;
    width: 91%;
    object-fit: cover;
    display: block;
} 

 .section-04 .lusong_wrap .half_box {
    width: 91%;
    height: 800px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ffffff3a;
    backdrop-filter: blur(3px);
/*     border: 30px solid #5E3F3A; */
} 

/* .section-04 .lusong_wrap .all_box {
    width: 91%;
    height: 800px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.473);
}  */

.section-04 .lusong_wrap .image{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 900px;
}

.section-04 .lusong_wrap .image .lastSwiper2 {
    width: 1405px;
    height: 700px;
}

.section-04 .lusong_wrap .image .lastSwiper2 .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.section-04 .lusong_wrap .image .lastSwiper2 .swiper-wrapper .swiper-slide {
    width: 1405px;
    height: 100%;
}

.section-04 .lusong_wrap .image .lastSwiper2 .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.section-04 .lusong_wrap .image .lastSwiper {
    width: 1405px;
    height: 100px;
}

.section-04 .lusong_wrap .image .lastSwiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.section-04 .lusong_wrap .image .lastSwiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.section-04 .lusong_wrap .image .lastSwiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.section-04 .lusong_wrap .image > img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}



.section-04 .lusong_wrap .text_box {
    height: 800px;
    background-color: #677446;
    position: absolute;
    bottom: 0;
    right: 0;
}

.section-04 .lusong_wrap .text_box .first_box {
    text-align: center;
    width: 500px;
    margin-top: 250px;
    margin-bottom: 58px;

}

.section-04 .lusong_wrap .text_box .first_box img {
    width: 200px;

}
.section-04 .lusong_wrap .text_box .first_box strong {
    display: block;
    margin-top: 17px;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 300;
    color: white;
}
.section-04 .lusong_wrap .text_box .first_box p {
    font-size: 18px;
    color: #eee;
    font-weight: 300;
}

.section-04 .lusong_wrap .text_box .second_box {
    color: white;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.section-04 .lusong_wrap .text_box .second_box a {
    font-size: 16px;
    font-weight: 300;
    display: block;
    width: 160px;
    height: 50px;
    line-height: 50px;
    border: 1px solid white;
}

.section-04 .lusong_wrap .text_box .second_box a:hover {
    color: black;
    background-color: white;
}


.section-05 {}
.section-05 .photo_wrap {
    width: 100%;
    height: 1000px;
    position: relative;
    
}
.section-05 .photo_wrap > img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.section-05 .photo_wrap .blur_box{
    width: 100%;
    background-color: #6774466b;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    backdrop-filter: blur(3px); /* 블러 효과 */

}

.section-05 .photo_wrap .title_box {
    height: 600px;
    width: 500px;
    padding: 0 50px;
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translate(-50%,-50%);
   /*  box-shadow: 3px 3px 10px rgba(255, 255, 255, 0.308); */
}

.section-05 .photo_wrap .title_box .back_box{
    background-color: #00000025;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: inset 0px 0px 5px #ffffff;
    transition: 0.3s;
}

.section-05 .photo_wrap .title_box .back_box {
    animation-name: backBox;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-timing-function: linear;

}

@-webkit-keyframes backBox {
    0% {
        box-shadow: inset 0px 0px 5px #ffffff;
    }

    100% {
        box-shadow: inset 0px 0px 5px #000;
    }
}

.section-05 .photo_wrap .title_box .back_box:hover {
    box-shadow: inset 0px 0px 5px #000;
}

    .section-05 .photo_wrap .title_box h2{
    line-height: 150px;
    white-space: nowrap;
    color: rgb(255, 255, 255);
    font-size: 40px;
    font-family: "EB Garamond", serif;
    font-weight: 300;
    display: block;
    position: absolute;
    top:45% ;
    left: 50%;
    transform: translate(-50%,-50%);
}

.section-05 .photo_wrap .title_box > a {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 18px;
    color: white;
    font-family: "EB Garamond", serif;
    font-weight: 300;
    display: block;
    padding: 12px 60px;
    border: 1px solid white;
}

.section-05 .photo_wrap .title_box > a:hover {
    background-color: white;
    color: #000000;
}



.section-05 .photo_wrap .photo_box {
    position: absolute;
    top: 0;
    right: 0;
}
.section-05 .photo_wrap .photo_box .image {
    width: 202px;
    
}

.section-05 .photo_wrap .photo_box .image:hover p{
    opacity: 1;
    visibility: visible;
    
}

.section-05 .photo_wrap .photo_box .image img{
    height: 202px;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.section-05 .photo_wrap .photo_box a .image p {
    display: block;
    position: absolute;
    font-size: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.288);
    width: 100%;
    height: 100%;
    text-align: center;
    right: 400px;
    border-radius: 50%;
    line-height: 200px;
    opacity: 0;
    visibility: hidden;
    
}

.section-05 .photo_wrap .photo_box a:nth-child(1) .image{
    position: absolute;
    bottom: -290px;
    right: 400px;
    transition: 0.8s;
    text-align: center;
}

.section-05 .photo_wrap .photo_box a:nth-child(1) .image img{
    width: 100%;

}

.section-05 .photo_wrap .photo_box a:nth-child(1) .image:hover {
    position: absolute;
    transform: scale(1.2);

}



.section-05 .photo_wrap .photo_box a:nth-child(2) .image {
    position: absolute;
    bottom: -460px;
    right: 100px;
    transition: 0.8s;
}

.section-05 .photo_wrap .photo_box a:nth-child(2) .image:hover {
    position: absolute;
    transform: scale(1.2);
}

.section-05 .photo_wrap .photo_box a:nth-child(3) .image {
    position: absolute;
    bottom: -600px;
    right: 400px;
    transition: 0.6s;
}

.section-05 .photo_wrap .photo_box a:nth-child(3) .image:hover  {
    position: absolute;
    transform: scale(1.2);
}

.section-05 .photo_wrap .photo_box a:nth-child(4) .image {
    position: absolute;
    bottom: -780px;
    right: 100px;
    transition: 0.6s;
}

.section-05 .photo_wrap .photo_box a:nth-child(4) .image:hover {
    position: absolute;
    transform: scale(1.2);
}

.section-05 .photo_wrap .photo_box a:nth-child(5) .image{
    position: absolute;
    bottom: -920px;
    right: 400px;
    transition: 0.6s;
}

.section-05 .photo_wrap .photo_box a:nth-child(5) .image:hover{
    position: absolute;
    transform: scale(1.2);

}

.section-05 .photo_wrap .video_box {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

.section-05 .photo_wrap .video_box .first_video {
    width: 600px;
    box-shadow: 1px 1px 10px rgb(97, 97, 97);
    margin-bottom: 150px;
}

.section-05 .photo_wrap .video_box .first_video div {
    height: 338px;
}

.section-05 .photo_wrap .video_box .first_video iframe {
    width: 100%;
    height: 100%;


}

.section-05 .photo_wrap .video_box .second_video {
    width: 600px;
    box-shadow: 1px 1px 10px rgb(97, 97, 97);

}

.section-05 .photo_wrap .video_box .second_video div {
    height: 338px;
}

.section-05 .photo_wrap .video_box .second_video iframe {
    width: 100%;
    height: 100%;
}

.section-05 .photo_wrap > a {
    position: absolute;
    bottom: 0;
    left: 200px;
    transform: translateX(-50%);
    font-size: 18px;
    color: white;
    font-family: "EB Garamond", serif;
    font-weight: 300;
    display: block;
    padding: 10px 40px;
    border: 1px solid white;
}

.section-05 .photo_wrap > a:hover {
    background-color: white;
    color: #576D95;
}



footer .text_wrap {
    width: 100%;
}
footer .text_wrap .box_01 {
    display: flex;
    justify-content: center;
    gap: 40px;
}
footer .text_wrap .box_01 .icon_box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

footer .text_wrap .box_01 .icon_box img {
    width: 32px;
    object-fit: cover;
}
footer .text_wrap .box_01 .icon_box p {
    font-size: 12px;
    color: #777;
}

footer .text_wrap .box_01 .icon_box:nth-child(7) img {

}

footer .text_wrap .box_02 {
    width: 100%;
    height: 700px;
    background-color: #323A1B;
    color: white;
    padding: 50px 0;
    position: relative;
}

footer .text_wrap .box_02 .logo_box {
    width: 500px;
    position: absolute;
    left:10%;
    top:50%;
    transform: translateY(-50%);
}

footer .text_wrap .box_02 .logo_box img {
    width: 100%;
    filter: brightness(1);
}

footer .text_wrap .box_02 .text_box {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
}
footer .text_wrap .box_02 .text_box .box_first{
    display: flex;
    align-items: center;
    gap: 150px;
    margin-bottom: 50px;
}
footer .text_wrap .box_02 .text_box .box_first .left_box {
    font-size: 14px;
    display: flex;
}
footer .text_wrap .box_02 .text_box .box_first .left_box a{
    color: #ccc;
    display:block;
    padding: 0 8px;
    border-right: 2px solid #eee;
}

footer .text_wrap .box_02 .text_box .box_first .left_box a:nth-child(1) {
    padding: 0 8px 0 20px;
}


footer .text_wrap .box_02 .text_box .box_first .left_box a:nth-child(3) {
    border: none;
}

footer .text_wrap .box_02 .text_box .box_first .right_box{
    height: 35px;
}
footer .text_wrap .box_02 .text_box .box_first .right_box img{
    width: 35px;
    height: 100%;
    line-height: 35px;
    object-fit: cover;
    margin-right: 20px;
}

footer .text_wrap .box_02 .text_box .box_second {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

footer .text_wrap .box_02 .text_box .box_second .left_box .box_text{
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}
footer .text_wrap .box_02 .text_box .box_second .left_box .box_text > a{
    color:#eee;
    position: relative;
}

footer .text_wrap .box_02 .text_box .box_second .left_box .box_text > a strong {
    font-size: 18px;
    font-weight: 300;
}

footer .text_wrap .box_02 .text_box .box_second .left_box .box_text > a::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #eee;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

footer .text_wrap .box_02 .text_box .box_second .left_box .box_text > a:hover::after {
    opacity: 1;
    visibility:visible;
}

footer .text_wrap .box_02 .text_box .box_second .left_box .box_text .text {
    font-size: 16px;
    color: #ccc;
    display: flex;
    gap: 20px;
}

footer .text_wrap .box_02 .text_box .box_second .right_box {
    text-align: center;
}
footer .text_wrap .box_02 .text_box .box_second .right_box .number_box{
    margin-bottom: 60px;
}
footer .text_wrap .box_02 .text_box .box_second .right_box .number_box h4{
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 8px;
}
footer .text_wrap .box_02 .text_box .box_second .right_box .number_box strong {
    display: block;
    font-size: 40px;
    margin-bottom: 20px; 
    color: #C6196E;

}
footer .text_wrap .box_02 .text_box .box_second .right_box .number_box p {
    font-size: 333;
    color: 555;

}
footer .text_wrap .box_02 .text_box .box_second .right_box .number_box span {
    font-size: 14px;
    margin-top:8px;
    color: #ddd;
}


footer .text_wrap .box_02 .text_box .box_second .right_box .number_box2{
    margin-bottom: 60px;
}
footer .text_wrap .box_02 .text_box .box_second .right_box .number_box2 h4{
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 8px;
}
footer .text_wrap .box_02 .text_box .box_second .right_box .number_box2 strong {
    display: block;
    font-size: 40px;
    color:#C6196E;


}
footer .text_wrap .box_02 .text_box .box_second .right_box .number_box2 p {
    font-size: 333;
    color: 555;
    margin: 20px 0 0;

}
footer .text_wrap .box_02 .text_box .box_second .right_box .number_box2 span {
    font-size: 14px;
    margin-top:8px;
    color: #ddd;
}

footer .text_wrap .box_02 .text_box .box_last {
    display: flex;
    font-weight: 300;
    color: #bbb;
    gap: 20px;
    margin-top: 15px;

}

footer .text_wrap .box_02 .text_box .box_last div  {    
}
footer .text_wrap .box_02 .text_box .box_last div  strong{
    font-size: 14px;
    color: #ddd;
    font-weight: 300;
    margin-right: 3px;
}
footer .text_wrap .box_02 .text_box .box_last div  span{
    color: #bbb;
    font-weight: 300;
}

.scroll_box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgb(255, 255, 255);
    background-color: #0000006e;
    position: fixed;
    bottom: 90px;
    right: 50px;
    transition: 0.3s;
}

.scroll_box img {
    width: 22px;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.3s;

}

.scroll_box:hover {
    background-color: white;
}

.scroll_box:hover img {
    filter:brightness(0);
    top: 40%;
}


