@charset "utf-8";

/* 퀵메뉴 동그라미 */

.topbtn-up-arrow > span{
    display:inline-block;
    color:#e6e6e6;
    margin:0 0 0 -50%;
    text-align:center;
    letter-spacing:0.04em;
    font-weight:400;
    font-size:1.5rem;
}

.topbtn-up-arrow{
    width: 23px;
    height:26px;
    position: absolute;
    top:50%;
    left:50%;
    display: block;
    background:none;
    opacity: 0;
    visibility: hidden;
}



/* 퀵메뉴 동그라미 */

/* ----------------------------------------------------------------------- */

/* sub_visual */

.sub_visual {
    width: 100%;
    height: 759px;
    margin: 0 auto;
	overflow: hidden;
    position: relative;
}

.sub_visual_wr .sub_txt_box{
    width: 100%;
    height: auto;
    text-align: center;
    position: absolute;
    top: 36%;
    left: 0;
    animation: tit_ani 1.2s linear forwards;
}

.sub_visual_wr .sub_bn_tit{
    font-size: 50px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.sub_visual_wr .sub_bn_desc{
    font-size: 29px;
    color: #fff;
    font-weight: 300;
}

.sub_visual_wr .sub_bn_desc span{
    font-size: 23px;
    font-weight: 300;
}


@keyframes tit_ani {
    0% {
        opacity: 0;
        transform: translate3d(0, 50%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.sub_visual_wr .sub_visual_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    background: no-repeat center center/cover;
    animation: zoom 2s linear both;
}

@keyframes zoom {

    0% {
        transform: translateX(-50%) scale(1.1);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* snb메뉴 01 스타일 */

#snb01 {
    font-family: "Noto Sans KR", sans-serif;
    position: absolute;
    bottom: 0;
    left: 7%;
}

#snb01 ul{
    display: flex;
    align-items: center;
}

#snb01 ul li a{
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    color: #fff;
    position: relative;
    margin-left: -5px;
    padding-left: 15px;
}

#snb01 ul li a:hover{
    color: #fff;
}

#snb01 ul li .snb_home{
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 360px;
    background-color: rgba(255,255,255,0.3);
    position: relative;
}

#snb01 ul li .snb_home::after{
    content: "";
    display: block;
    background: url('/img/common/snb_home_btn.png');
    width: 13px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    filter: brightness(100);
}

#snb01 ul li:nth-of-type(3){
    margin-left: 14px;
}

#snb01 ul li::after{
    content: "";
    display: block;
    width: 8px;
    height: 13px;
    background: url('/img/common/snb_arrow_btn.png') no-repeat;
    position: relative;
    filter: brightness(100);
}

#snb01 ul li:nth-of-type(2):after{
    position: relative;
    top: -18px;
    left: 108%;
}

#snb01 ul li:nth-of-type(1):after,
#snb01 ul li:nth-of-type(3):after{
    opacity: 0;
}

/* snb메뉴 01 스타일 */


/* snb메뉴 02 스타일 */

#snb02 {
    font-family: "Noto Sans KR", sans-serif;
	background: rgba(255,255,255,0.3);
	height: 64px;
	position: absolute;
    bottom: 0;
    right: 0;
}
#snb02 .inner{
    width: 1460px;
}

#snb02 .inner ul {
	width: 100%;
    height: 600px;
	display: flex;
    justify-content: flex-start;
}

#snb02 .inner ul li {
	width: 210px;
	height: 64px;
}

#snb02 .inner ul li a{
    background: transparent;
    color: rgba(255,255,255,0.7) !important;
}

#snb02 .inner ul li a.active{
    background-color: #423327;
    color: #fff !important;
    opacity: 1;
}

#snb02 .inner ul li a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #333;
	font-size: 18px;
	font-weight: 500;
	transition: .5s;
	text-align: center;
}

#snb02 .inner ul li a:hover {
	background-color: rgba(66,51,39,0.6);
    color: #fff !important;
}

/* snb메뉴 02 스타일 */

/* sub_visual */

/* ----------------------------------------------------------------------- */

/* 흘러가는 글자 */
.marquee_wr {
	width: 100%;
	height: 7vw;
    min-height: 80px;
	margin: auto;
	overflow: hidden;
	position: relative;
    top: 0;
    z-index: -1;
}

.marquee {
    width: 200%;
    font-family: 'Derivia', sans-serif;
	font-size: 85px;
	font-weight: 200;
	color: #D8D8D8;
	position: absolute;
	top: 0;
	white-space: nowrap;
	text-transform: uppercase;
    letter-spacing: 0%;
	animation: marquee 40s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}
/* 흘러가는 글자 */

/* 흘러가는 글자 : sec01 위치이동 */

.sec01 .marquee_wr {
	width: 100%;
	height: 7vw;
    min-height: 80px;
	margin: auto;
	overflow: hidden;
	position: relative;
    top: -13.5vw;
    z-index: -1;
}

/* 흘러가는 글자 : sec01 위치이동 */

/* ----------------------------------------------------------------------- */

/* 공통 백그라운드 컬러 */

.light_brown{
    background: #CEC0B0;
}

/* 공통 백그라운드 컬러 */

/* 서브 공통 타이틀 */

.sub_txt_box{
    text-align: center;
}

.sub_txt_box .sub_tag{
    font-family: 'Derivia', sans-serif;
    font-size: 19px;
    color: #5E4531;
    letter-spacing: 0%;
}

.sub_txt_box .sub_tit{
    font-size: 36px;
    color: #fff;
}

.sub_txt_box .sub_tit_bl{
    font-size: 36px;
    color: #333333;
}

.sub_txt_box .sub_desc{
    font-size: 21px;
    color: #666;
    margin-top: 15px;
}

/* 서브 공통 타이틀 */

.sec01, .sec02, .sec03, .sec04, .sec05, .sec06{
    width: 100%;
    height: auto;
    position: relative;
}

/* sec01 : 서브 공통 섹션 */

.sub_sec01_txt{
    text-align: center;
}

.sub_sec01_txt .sub_sec01_tit{
    font-size: 35px;
    color: #000;
}

.sub_sec01_txt .sub_sec01_tit span{
    font-size: 50px;
    color: #C7A194;
}

.sub_sec01_txt .sub_sec01_tit::after{
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    margin: 30px auto;
    background: #C3A89F;
}

.sub_sec01_txt .sub_sec01_desc {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 22px;
    color: #333;
    line-height: 1.5;
    margin-top: 50px;
}

.sec01_img{
    width: 846px;
    height: 426px;
    border-radius: 30px;
    overflow: hidden;
    margin: 100px auto 0;
}

.sec01_img img{
    width: 100%;
}

/* sec01 : 서브 공통 섹션 */

/* ----------------------------------------------------------------------- */

/* -sub m13 : 둘러보기 페이지- */

.direc_con .inner{
    width: calc(100% - 4rem);
	max-width: 1296px;
	margin: 0 auto;
}

.around_con{
    margin-top: 60px;
    position: relative;
}

.around_con .ar_slide .swiper-slide{
    width: 100%;
    height: 721px;
    border-radius: 30px;
    overflow: hidden;
}

.around_con .ar_slide02{
    margin-top: 17px;
}

.around_con .ar_slide02 .swiper-slide{
    width: 136px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
}

.around_con .ar_slide02 .ar_img{
    width: 136px;
    height: 75px;
    cursor: pointer;
    filter: brightness(0.5);
    transition: all 0.3s;
}

.around_con .ar_slide02 .swiper-slide-thumb-active .ar_img{
    filter: brightness(1);
}

.around_con .ar_slide02 .swiper-slide .ar_img img{
    width: 100%;
}

.around_con .ar-swiper-button-prev,
.around_con .ar-swiper-button-next{
    width: 73px;
    height: 73px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.around_con .ar-swiper-button-prev{
    left: 26px;
    background: url("/img/sub/sub_around_prev.png") no-repeat;
}

.around_con .ar-swiper-button-next{
    right: 26px;
    background: url("/img/sub/sub_around_next.png") no-repeat;
}

/* -sub m13 : 둘러보기 페이지- */

/* -sub m14 : 오시는 길- */

.direc_con{
    position: relative;
}

.direc_con .direc_map{
    width: 1380px;
    height: 440px;
    border-radius: 30px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 60px;
}

.direc_con .direc_bg{
    width: 100%;
    height: 582px;
    background: #F1EEE9;
    position: absolute;
    top: 49%;
    left: 0;
    z-index: -1;
}

.direc_con .direc_txt{
    text-align: center;
    font-family: "Noto Sans KR", sans-serif;
    margin-top: 60px;
    padding-bottom: 100px;
}

.direc_con .direc_txt .direc_tit{
    width: 150px;
    height: 44px;
    border-radius: 360px;
    background: #5E4531;
    font-size: 28px;
    color: #fff;
    text-align: center;
    line-height: 44px;
    margin: 0 auto;
}

.direc_con .direc_txt .direc_desc{
    margin-top: 28px;
}

.direc_con .direc_txt .direc_desc span{
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #333;
}

.direc_con .direc_txt .direc_desc p{
    font-size: 36px;
    color: #333;
    letter-spacing: -5%;
}

/* -sub m14 : 오시는 길- */


/* -sub m22 : 질필러- */

/* m22-sec02 */

.in_out_box{
    margin-top: 60px;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.in_out_box li{
    display: flex;
    justify-content: center;
}

.in_out_box .in_out_img{
    width: 635px;
    height: 457px;
    border-radius: 30px;
    overflow: hidden;
}

.in_out_box .in_out_img img{
    width: 100%;
}

.in_out_box .in_out_txt{
    font-size: 26px;
    color: #fff;
    margin-top: 30px;
}

/* m22-sec02 */

/* m22-sec03 */

.tr_img_con{
    margin-top: 60px;
    position: relative;
}

.tr_img_con .tr_img{
    width: 100%;
    height: 327px;
}

.tr_img_con .tr_img img{
    width: 100%;
}

.tr_img_con .tr_tag{
    font-family: 'Derivia', sans-serif;
    font-size: 95px;
    color: rgba(255,255,255,0.3);
    text-align: right;
    letter-spacing: 5%;
    position: absolute;
    top: 30px;
    right: 40px;
}

.tr_list{
    margin-top: 48px;
}

.tr_list ul li{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 20px auto;
}

.tr_list ul li::after{
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background: #B7B7B7;
}

.tr_list ul li .tr_flex{
    font-family: "Noto Sans KR", sans-serif;
    font-size: 22px;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.tr_list ul li .tr_flex span{
    color: #C7A194;
}

/* m22-sec03 */


/* m22-sec04 */

.con0202 .sec04{
    width: 100%;
    height: auto;
    background: url('/img/sub/m22_sec04_bg.jpg') no-repeat;
    background-size: cover;
}

.in_out_fil_list{
    margin-top: 60px;
}

.in_out_fil_list ul{
    display: flex;
    justify-content: center;
    position: relative;
}

.in_out_fil_list ul li{
    width: 307px;
    height: 307px;
    border-radius: 307px;
    border: 1px solid #fff;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 25px;
    color: #fff;
    text-align: center;
    
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -20px;
}

.in_out_fil_list ul li::after{
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 13px;
    background: #fff;
    position: absolute;
}

.in_out_fil_list ul li:nth-of-type(1)::after,
.in_out_fil_list ul li:nth-of-type(3)::after,
.in_out_fil_list ul li:nth-of-type(5)::after{
    top: -2%;
}

.in_out_fil_list ul li:nth-of-type(2)::after,
.in_out_fil_list ul li:nth-of-type(4)::after,
.in_out_fil_list ul li:nth-of-type(6)::after{
    bottom: -2%;
}

/* m22-sec04 */


/* m22-sec05 */

.va_list{
    display: flex;
    justify-content: center;
    gap: 42px;
    margin-top: 60px;
}

.va_list ul{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.va_list .va_list_img{
    width: 445px;
    height: 249px;
    border-radius: 30px;
    overflow: hidden;
    background: #D9D9D9;
}

.va_list .va_list_num{
    width: 70px;
    height: 32px;
    border-radius: 50%;
    background: #AC9883;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 32px;
    margin-top: 23px;
}

.va_list .va_list_name{
    font-family: "Noto Sans KR", sans-serif;
    font-size: 27px;
    color: #444;
    margin-top: 17px;
}


/* m22-sec05 */

/* m22-sec06 */

.con0202 .sec06{
    padding-top: 100px;
    padding-bottom: 160px;
    display: block;
}

.va_spec_flex{
    display: flex;
    gap: 128px;
}

.sub_special_txt{
    margin-top: 130px;
}

.sub_special_txt .special_tag{
    font-family: 'Derivia', sans-serif;
    font-size: 48px;
    color: #5E4531;
}

.sub_special_txt .special_tag span{
    font-size: 48px;
    color: #DFDEDB;
}

.sub_special_txt .special_tit{
    font-size: 27px;
    color: #333;
    margin-top: 11px;
}

.sub_special_txt .special_tit span{
    font-size: 36px;
}

.va_spec_list ul{
    display: flex;
    gap: 46px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.va_spec_list ul::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #D8D8D8;
}


.va_spec_list ul:nth-of-type(3)::after{
    background: transparent;
}

.va_spec_list .va_spec_img{
    width: 391px;
    height: 252px;
    border-radius: 20px;
    overflow: hidden;
}

.va_spec_list .va_spec_img img{
    width: 100%;
}

.va_spec_list ul li .subject span{
    font-family: 'Derivia', sans-serif;
    font-size: 45px;
    color: #AC9883;
    margin-right: 10px;
    
    position: relative;
    top: 5px;
    letter-spacing: 0%;
}

.va_spec_list ul li .subject{
    font-size: 30px;
    color: #333;
}

.va_spec_list ul li .desc{
    font-family: "Noto Sans KR", sans-serif;
    font-size: 22px;
    color: #444;
    line-height: 1.5;
}

/* m22-sec06 */

/* m22-sec07 */

.con0202 .sec07{
    width: 100%;
    height: auto;
    background: url('/img/sub/m22_sec07_bg.jpg') no-repeat;
    background-size: cover;
}

.in_out_cau_list{
    margin-top: 60px;
}

.in_out_cau_list ul{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.in_out_cau_list li{
    width: 1231px;
    height: 91px;
    border-radius: 10px;
    background: #fff;

    font-family: "Noto Sans KR", sans-serif;
    font-size: 22px;
    color: #444;
    text-align: center;
    line-height: 91px;
}

/* m22-sec07 */

/* -sub m22 : 질필러- */