 
  /**************************************************************/
  /**************************************************************/
  /*************************** main ë©”ì¸ ************************/
  /**************************************************************/
  /**************************************************************/
  /* ----------------------- video visual ----------------------*/
  /* .main_copy {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    left: 50%;
    bottom: 5rem;
    transform: translate(-50%);
    text-align: center;
    z-index: 2;
    color: #fff;
}
.main_copy img {
    margin-bottom: 1.25rem;
}
.main_copy p {
    display: block;
    width: 100%;
    font-size: 1.75rem;
    font-family: var(--main-font);
    font-weight: 600;
    letter-spacing: 1px;
} */


/* 페이지별 헤더 색상 교체 */

/* ------------------------ 공통 초기화 ------------------------ */
#header.mainheader .logo a img.on { display: none !important; }
#header.mainheader .logo a img.off { display: block !important; }

/* ------------------------ HOME ------------------------ */
.fp-viewing-HOME #header { background: none; border-bottom: none; }
.fp-viewing-HOME #header .menu_area ul li a { color: #fff; }
.fp-viewing-HOME #header nav #gnb li .nav_dep1 { color: #fff; }
.fp-viewing-HOME #header.mainheader.on nav #gnb li .nav_dep1 { text-shadow: none; }
.fp-viewing-HOME #header.mainheader .logo a img.on { display: none !important; }
.fp-viewing-HOME #header.mainheader .logo a img.off { display: block !important; }
.fp-viewing-HOME #header.mainheader.on .logo a img.off { display: none !important; }
.fp-viewing-HOME #header.mainheader.on .logo a img.on { display: block !important; }

.fp-viewing-ABOUT #header,
.fp-viewing-RESORT #header,
.fp-viewing-NOTICE #header {
  background: none;
  border-bottom: none;
}
.fp-viewing-ABOUT #header .menu_area ul li a,
.fp-viewing-RESORT #header .menu_area ul li a,
.fp-viewing-NOTICE #header .menu_area ul li a {
  color: var(--cgray-900);
}
.fp-viewing-ABOUT #header nav #gnb li .nav_dep1,
.fp-viewing-RESORT #header nav #gnb li .nav_dep1,
.fp-viewing-NOTICE #header nav #gnb li .nav_dep1 {
  color: var(--cgray-900);
  text-shadow: none;
}
.fp-viewing-ABOUT #header.mainheader .logo a img.on,
.fp-viewing-RESORT #header.mainheader .logo a img.on,
.fp-viewing-NOTICE #header.mainheader .logo a img.on {
  display: block !important;
}
.fp-viewing-ABOUT #header.mainheader .logo a img.off,
.fp-viewing-RESORT #header.mainheader .logo a img.off,
.fp-viewing-NOTICE #header.mainheader .logo a img.off {
  display: none !important;
}

.fp-viewing-ABOUT #header .menu_area ul li a.btn_ham_menu,
.fp-viewing-RESORT #header .menu_area ul li a.btn_ham_menu,
.fp-viewing-NOTICE #header .menu_area ul li a.btn_ham_menu,
.fp-viewing-FOOTER #header .menu_area ul li a.btn_ham_menu
{
    background-image: url(../images/common/ic_ham_menu_on.png);
}

.fp-viewing-COURSE #header.on .logo a img.off {
    display: none !important;
}
.fp-viewing-COURSE #header.on .logo a img.on {
    display: block !important;
}

/* ------------------------ FOOTER ------------------------ */
.fp-viewing-FOOTER #header.mainheader {
  background: #fff;
}
.fp-viewing-FOOTER #header .menu_area ul li a {
  color: var(--cgray-900);
}
.fp-viewing-FOOTER #header nav #gnb li .nav_dep1 {
  color: var(--cgray-900);
  text-shadow: none;
}
.fp-viewing-FOOTER #header.mainheader .logo a img.on {
  display: block !important;
}
.fp-viewing-FOOTER #header.mainheader .logo a img.off {
  display: none !important;
}


/* ------------------- sec basic setting ---------------------*/

.section .inner {
    width: calc(100% - 400px);
    margin: 0 auto;
}

.section .inner .sec_tit{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.section .inner .sec_tit.type_side .sec_cont{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.section .inner .sec_tit.type_side .sec_desc{
    flex: 1;
}
.section .inner .sec_tit .sec_sub{
    font-family: var(--sub-font);
    font-weight: 500;
    font-size: var(--txt-heading2);
    color: var(--main-color);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.section .inner .sec_tit .sec_cont .sec_title{
    font-size: var(--txt-display3);
    font-weight: 700;
    line-height: 140%;
}
.section .inner .sec_tit .sec_cont .sec_desc{
    font-size: var(--txt-body1);
    line-height: 150%;
    font-weight: 400;
}
p.caption{
    font-size: var(--txt-label);
    color: var(--gray-500);
    text-align: right;
    margin-top: 8px;
}
/* 공통 버튼*/
.btn_more {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.btn_more:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  border-radius: 50px;
  background: var(--sub-color-4);
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
  z-index: 0;
}

.btn_more span {
    position: relative;
    font-family:var(--sub-font);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #222;
    z-index: 1;
}
.btn_more::after {
  content: "\2192";
  position: relative;
  font-size: 18px;
  color: #222;
  transition: transform 0.3s ease;
  z-index: 1;
}

.btn_more:hover:before {
  width: 100%;
  background: var(--sub-color-4);
}
.btn_more:hover::after{
    transform: translateX(5px);
}

.btn_more:hover svg {
  transform: translateX(0);
}

.btn_more:active {
  transform: scale(0.95);
}
/* -------------------------- sec1 ---------------------------*/
@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}
.sec1 {
    position: relative;
}
.sec1::before {
    content: "";
    display: block;
    width: 15px;
    height: 135px;
    background: url(../images/main/scrollimg.png) no-repeat center center;
    position: absolute;
    right: 35px;
    top: 65%;
    background-size: cover;
    opacity: 1;
    z-index: 9999;
    animation: scroll .8s infinite alternate;
}
#main_full .section.active::before,
#main_full .section.active::after {
    opacity: 1;
    transition: .8s .6s
}

/*-------sec about-------*/
.sec_about .inner .about_img{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 350px;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}
.sec_about .inner .about_img::after{
    content: url(../images/main/DUKSHINCC.svg);
    left: 0;
    top: -30%;
    position: absolute;
    z-index: 0;
    transform-origin: left;
}
.sec_about .inner .about_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}
.sec_about .inner .sec_tit{
    margin-top: 1rem;
}
.sec_about .inner .sec_tit .sec_cont{
    margin-bottom: 2rem;
    gap: 5rem;
}
.section.sec_about .floating_icon {
    background: var(--main-color);
    color: #fff;
    padding: 12px 20px;
    font-size: var(--txt-body1);
    font-weight: 600;
    border-radius: 4px;
    z-index: 10;
    transition: all 0.3s;
    display: block;
    width: fit-content;
    float: right;
}

/*-------sec course-------*/
.sec_course .inner .bg_area{
    /* background: url(../images/main/facility_bg.png) no-repeat;
    background-position: center center; */
    background-color: var(--main-color-2);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 570px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}
.sec_course .inner{
    color: #fff;
    display: flex;
    gap: 114px;
    padding-top: 4rem;
}
.sec_course .inner .sec_tit .sec_cont{
    gap: 8rem
}
.sec_course .inner .sec_tit .sec_sub{
    color: var(--sub-color-2);
}
.sec_course .inner .sec_tit .sec_cont .sec_desc{
    margin: 2rem 0;
}
.sec_course .inner .left_area{
    width: 100%;
   flex: 4;
}
.sec_course .inner .left_area img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.sec_course .inner .right_area{
    width: 100%;
    flex: 2.5;
    align-content: center;
}
.sec_course .inner .right_area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.sec_course .btn_more span,
.sec_course .btn_more::after{
    color: #fff;
}
/*-------sec resort-------*/
.sec_resort .inner .sec_tit{
  margin-bottom: 2rem;
}
.sec_resort .inner .sec_tit .sec_cont{
    gap: 5rem;
}
.sec_resort .inner .resort_wrap{
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 4rem;
    max-width: 100%;
    overflow: visible;
}
.sec_resort .inner .left_area{
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}
.sec_resort .inner .left_area .img_wrap{
    flex: 1;
}
.sec_resort .inner .left_area .img_wrap.circle{
    position: relative;
    flex: 1;
}
.sec_resort .inner .left_area .img_wrap.circle::after{
    position: absolute;
    content: url(../images/main/resort_circle.svg?ver=3.0);
    width: 114px;
    height: 114px;
    border-radius: 50%;
    right: -7%;
    top: -10%;
    align-content: center;
    text-align: center;
    animation: spinCircle 10s linear infinite;
}
@keyframes spinCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*-------sec notice-------*/
.sec_notice{
    background: #F5FDF3;
}
.sec_notice .inner .sec_tit{
  margin-bottom: 2rem;
}
.sec_notice .inner .notice_wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 999999;
}

/* 회전 원형 */
.cursor-rotate {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: url("../images/main/viewmore_cursor.svg") no-repeat center/contain;
  transform: translate(-50%, -50%);
  animation: ring-spin 3s linear infinite;
}

/* 고정 화살표 */
.cursor-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: url("../images/main/arrow_cursor.svg") no-repeat center/contain;
  transform: translate(-50%, -50%);
  z-index: 2;                                 
}

@keyframes ring-spin{
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.sec_notice .inner .notice_wrap .box .notice_img{
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.sec_notice .inner .notice_wrap .box .notice_img::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-right: 54px solid transparent;
    border-top: 54px solid #F5FDF3;
    z-index: 2;
}
.sec_notice .inner .notice_wrap .box .notice_img::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 54px solid transparent;
    border-bottom: 54px solid #F5FDF3;
    z-index: 2;
}
.sec_notice .inner .notice_wrap .box .notice_img img{
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    transition: transform 0.8s ease;
    z-index: 1;
}
.sec_notice .inner .notice_wrap .box .notice_img:hover img {
  transform: scale(1.1); 
}
.sec_notice .inner .notice_wrap .box .notice_txt{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 130px;
    margin-top: 24px;
}
.sec_notice .inner .notice_wrap .box .notice_txt h4{
    font-size: var(--txt-title3);
    font-weight: 600;
    line-height: 140%;
    display: -webkit-box;   
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sec_notice .inner .notice_wrap .box .notice_txt .date{
    font-size: var(--txt-body1);
    color: var(--gray-500);
}



@media screen and (max-width:1890px) {
    .sec_about .inner .about_img::after{
        scale: 0.8;
    }
}

@media screen and (max-width:1600px) {
    .section .inner{
        width: calc(100% - 200px);
    }
    .sec_about .inner .sec_tit .sec_cont{
        gap: 2rem;
    }
    .sec_about .inner .about_img::after{
        scale: 0.7;
    }
    .sec_about .inner .about_img{
        height: 300px;
    }
    .section .inner .sec_tit .sec_cont .sec_title{
        font-size: var(--txt-title1);
    }
    .section .inner .sec_tit .sec_cont .sec_desc{
        font-size: var(--txt-body2);
    }
}

@media screen and (max-width:1500px) {

    
}