@charset "UTF-8";

/* ==========================================================================
   공통 레이아웃 (Common)
   ========================================================================== */
   body{
	   overflow:hidden;
   }
#header {
    width: 100%;
	/* max-width:100vw  ; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

#header .inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:95vw;
}

#header .logo img {
    width: 250px;
    max-width: 18vw;
    display: block;
}

/* 퀵메뉴 */
.quick {
	position: fixed;
	right: 1vw;
	bottom: 1vw;
	z-index:999;
}

.quick_menu {
	background: #3c3c3c; /* fallback */
	text-align: center;
	border-radius: 45px;
	padding: 25px 0;
	margin-bottom: 10px;
	overflow: hidden; /* 내부가 자연스럽게 커지도록 */

	/* 처음엔 접혀있음 */
	transform: scaleY(0);
	transform-origin: bottom; /* 아래에서 위로 커짐 */
	opacity: 0;
	pointer-events: none;

	transition:
		transform 0.6s cubic-bezier(0.25, 1, 0.3, 1),
		opacity 0.4s ease;
}

/* 활성 상태 */
.quick_menu.active {
	transform: scaleY(1);
	opacity: 1;
	pointer-events: auto;
}

.quick_menu li {
	padding: 15px 0;
}

.quick_menu li a {
	color: #fff;
	font-size:13px;
}
#sub .quick_menu li a p{font-size:13px;}
.quick_menu li a img{
	max-width:30px;
}

/* QUICK 버튼 */
.quick_open_btn {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	color: #fff;
	background: #333;
	text-align: center;
	line-height: 90px;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	cursor: pointer;
}

/* TOP 버튼 */
.top-btn {
	width: 90px;
	height: 90px;
	border: none;
	border-radius: 50%;
	background: #2f8588;
	color: #fff;
	font-size: 35px;
	cursor: pointer;
	transition: opacity 0.3s;
	z-index: 9999;
	font-weight: 100;
	font-family: "Noto Sans KR", sans-serif;
	pointer-events: auto;
}







/* 메인 비주얼 슬라이드 */
.main .visual {
    position: relative;
    height: 95vh;
    min-height: 850px;
}

.main .visual .mainBannerView {
    height: 100%;
    background: #ddd;
}

.main .visual .mainBannerView .text {
    position: absolute;
    top: 50%;
    left: 10%;
    z-index: 999;
	transform:translateY(-50%);
}

.main .visual .mainBannerView .mainBanner {
    overflow: hidden;
}

.main .visual .mainBannerView .vis1 { background: url(/img/main_visual1.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .vis2 { background: url(/img/main_visual2.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .vis3 { background: url(/img/main_visual3.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .vis4 { background: url(/img/main_visual4.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .vis5 { background: url(/img/main_visual5.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .vis6 { background: url(/img/main_visual6.png) no-repeat 50% 50% / cover; }

.main .visual .mainBannerView .text h2 {
    font-size: 45px;
    color: #fff;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -1px;
}

.main .visual .mainBannerView .text h2 b {
    font-weight: 600;
}
.main .visual .mainBannerView .vis2 .text h2 .boxtext{
	display:inline-block;
	background:#9d0000;
	padding:5px 10px 7px;
	border-radius:5px;
}
.main .visual .mainBannerView .text p {
    font-size: 25px;
    color: #fff;
    margin-top: 30px;
    line-height: 1.4;
    font-weight: 300;
}

.main .visual .mainBannerView .text a {
    display: block;
    margin-top: 50px;
    color: #fff;
    width: 150px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 28px;
    border: 1px solid #fff;
    box-sizing: border-box;
	font-size:16px;
}
.main .visual .mainBannerView .controller {
    position: absolute;
    bottom: 15%;
    left: 10%;
    z-index: 10;
    display: flex;
	gap:10px;
	align-items:center;
}

.main .visual .mainBannerView .controller > span {
    width: 27px;
    display: inline-block;
    cursor: pointer;
}

.main .visual .mainBannerView .controller .mb_numbox {
    display: flex;
	align-items:center;
	gap:10px;
}

.main .visual .mainBannerView .controller .mb_numbox > span {
    font-size: 18px;
    color: #fff;
}

.main .visual .mainBannerView .controller .mb_numbox > span.point {
    color: #f18d00;
    font-weight: 500;
}

.main .visual .mainBannerView .controller .mb_numbox .swiper-pagination-progressbar {
    width: 170px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    position: static;
}

.main .visual .mainBannerView .controller .mb_numbox .swiper-pagination-progressbar span {
    background: #f18d00;
}

/* 섹션 1 (아코디언) */
.main1 {
    --bg-color: #0b1118;
    --point-color: #4ac0cf;
    --transition: 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    padding-top: 150px;
    text-align: center;
}

.main1 .title_box h3 {
    font-size: 54px;
    line-height: 1.4;
    font-weight: 700;
}

.main1 .title_box p {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
    margin: 30px 0 100px;
}

.main1 .accordion-container {
    background-color: var(--bg-color);
    display: flex;
    width: 100%;
    height: 70vh;
	min-height: 500px;
    text-align: left;
}

.main1 .item {
    position: relative;
    flex: 1;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    transition: flex var(--transition), height var(--transition);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.main1 .bg-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(40%);
    transition: all var(--transition);
}

.main1 .content {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    transition: all var(--transition);
}

.main1 .title {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 1);
    transition: color var(--transition);
}

.main1 .title::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--point-color);
    transition: width var(--transition);
}

.main1 .desc {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    opacity: 0;
    transition: all var(--transition);
}

.main1 .item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
}

.main1 .item .desc span {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
}

/* 메인 2 섹션 */
.main2 .flex {
    align-items: center;
    gap: 5%;
}

.main2 .flex .imgbox {
    width: 50%;
}

.main2 .flex .imgbox img {
    display: block;
    width: 100%;
}

.main2 .flex .textbox h3 {
    font-size: 54px;
    line-height: 1.4;
    font-weight: 700;
}

.main2 .flex .textbox p {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
    margin: 30px 0 50px;
}

.main2 .flex .textbox a {
    display: block;
    color: #0c7074;
    width: 150px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 28px;
    border: 1px solid #0c7074;
    box-sizing: border-box;
}

/* 오시는 길 (Location) */
#com_location {
    background: #f9f9f9;
}

#com_location .flex {
    width: 100%;
    display: flex;
    align-items: stretch;
}

#com_location .flex .map {
    width: 50vw;
    min-height: 850px;
    display: block;
}

#com_location .flex .info {
    width: 50vw;
    position: relative;
    display: flex;
    align-items: center;
	justify-content:center;
}

#com_location .flex .info .in {
    /* padding-left: 8vw; */
}

#com_location .flex .info h6 {
    font-size: 18px;
    font-weight: 500;
}

#com_location .flex .info h3 {
    margin: 30px 0 50px;
    font-size: 54px;
    font-weight: 700;
}

#com_location .flex .info .ul > li {
    font-size: 20px;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

#com_location .flex .info .ul > li:first-child {
    margin-bottom: 10px;
}

#com_location .flex .info .ul > li.align_top {
    align-items: flex-start;
}

#com_location .flex .info .ul > li.align_top ul li {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 5px;
}

#com_location .flex .info .ul > li b {
    display: block;
    min-width: 150px;
    letter-spacing: 0;
}

#com_location .flex .info .ul > li p {
    font-weight: 300;
    font-size: 20px;
}

#com_location .flex .info .box {
    background: #0c7074;
    border-radius: 20px;
    text-align: center;
    padding: 30px 0;
}
#com_location .flex .info .box .tel-link{
    color: #fff;
	display:block;
}
.tel-link {
    pointer-events: none;
    cursor: default;
    color: inherit;
    text-decoration: none;
}
#com_location .flex .info .box p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
}

#com_location .flex .info .btnbox {
    display: flex;
    gap: 10px;
}

#com_location .flex .info .btnbox a {
    display: block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    font-weight: 300;
    font-size: 15px;
    text-align: center;
    color: #fff;
    background: #000;
}

#com_location .flex .info .btnbox a img {
    margin-right: 5px;
    vertical-align: middle;
    max-height: 90%;
}

/* 주차 안내 */
#com_parking {
    padding: 150px 0;
    background: #f9f9f9;
    text-align: center;
}

#com_parking h3 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 50px;
}

#com_parking .flex {
    justify-content: center;
    gap: 10px;
}

#com_parking .flex div img {
    display: block;
	max-width:40vw;
}

#com_parking .flex div p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 50px;
}

/* 푸터 (Footer) */
#footer {
    background: #181818;
    padding: 100px 0;
}

#footer .inbox {
    width: 1440px;
    max-width: 90vw;
    margin: 0 auto;
}

#footer .inbox .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer .inbox .flex .logobox img{
	width: 250px;
	max-width:30vw;
}
#footer .inbox .textbox .fmenu {
    display: flex;
    margin-bottom: 30px;
}

#footer .inbox .textbox .fmenu li {
    line-height: 1;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #999;
}

#footer .inbox .textbox .fmenu li a {
    color: #ddd;
}

#footer .inbox .textbox .fmenu li:last-child {
    padding-right: 0;
    margin-right: 0;
    border: 0;
}

#footer .inbox .textbox .fcon {
    color: #ddd;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 600px;
    align-items: center;
}

#footer .inbox .textbox .fcon span {
    font-size: 14px;
    font-weight: 300;
}

#footer .inbox .textbox .fcon p {
    font-size: 14px;
    color: #aaa;
}

/* ==========================================================================
   미디어 쿼리 - PC (1025px 이상)
   ========================================================================== */
@media (min-width: 1025px) {
    #header .m-menu-btn {
        display: none;
    }

    #header .main-nav .gnb {
        display: flex;
        height: 100px;
        gap: 1.8vw;
    }

    #header .main-nav .gnb > li {
        position: static;
    }

    #header .main-nav .gnb > li > a {
        display: block;
        line-height: 100px;
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    #header .depth2 {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: #f1f3f5;
        display: none;
        justify-content: center;
        align-items: center;
        height: 50px;
        border-bottom: 1px solid #ddd;
    }
	 
    #header .depth2 li {
        margin: 0 40px;
        position: relative;
    }

    #header .depth2 li::after {
        content: '|';
        position: absolute;
        right: -40px;
        top: 60%;
        transform: translateY(-50%);
        color: #ccc;
        font-size: 12px;
    }

    #header .depth2 li:last-child::after {
        display: none;
    }

    #header .depth2 li a {
        font-size: 15px;
        color: #555;
        font-weight: 400;
        transition: color 0.2s;
    }

    #header .main-nav .gnb > li:hover .depth2 {
        display: flex;
    }
	
	
	#header.vertical .main-nav .gnb > li{
		 position:relative;
	 }
	#header.vertical .depth2 {
        position: absolute;
        top: 100px;
        left: 50%;
		transform:translateX(-50%);
        width: 160px;
		text-align:center;
        background: #f1f3f5;
        display: none;
        justify-content: center;
        align-items: center;
        height: auto;
        border-bottom: 1px solid #ddd;
    }
	#header.vertical .depth2.big{
		width:200px;
	}
	#header.vertical .depth2 li {
        margin: 0;
        position: relative;
		border:0;
    }
	#header.vertical .depth2 li a{
		display:block;
		padding:10px 0;
	}
	#header.vertical .main-nav .gnb > li:hover .depth2 {
        display: block;
    }
	#header.vertical .main-nav .gnb > li .depth2 li:hover a{
        background:#2f8588;
		color:#fff;
    }
	#header.vertical .depth2 li::after{
			display:none;
	}

    /* --- PC 아코디언 수정 로직 --- */
    /* 1. 기본 active 상태 */
    .main1 .item.active {
        flex: 4;
        border-right: 1px solid var(--point-color);
    }
    .main1 .item.active .bg-img {
        opacity: 1;
        filter: grayscale(0%);
        transform: translateX(-50%) scale(1.05);
    }
    .main1 .item.active .desc {
        opacity: 1;
        transform: translateY(0);
    }
    .main1 .item.active .title {
        color: #fff;
    }
    .main1 .item.active .title::after {
        width: 50px;
    }

    /* 2. 컨테이너 호버 시: 기존 active를 포함한 모든 아이템 비활성화 처리 */
    .main1 .accordion-container:hover .item {
        flex: 1;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .main1 .accordion-container:hover .item .bg-img {
        opacity: 0.6;
        filter: grayscale(40%);
        transform: translateX(-50%) scale(1);
    }
    .main1 .accordion-container:hover .item .desc {
        opacity: 0;
        transform: translateY(30px);
    }
    .main1 .accordion-container:hover .item .title {
        color: rgba(255, 255, 255, 1);
    }
    .main1 .accordion-container:hover .item .title::after {
        width: 0;
    }

    /* 3. 현재 호버 중인 아이템 강제 활성화 (active 보다 우선순위 높음) */
    .main1 .accordion-container .item:hover {
        flex: 4 !important;
        border-right: 1px solid var(--point-color) !important;
        z-index: 2;
    }
    .main1 .accordion-container .item:hover .bg-img {
        opacity: 1 !important;
        filter: grayscale(0%) !important;
        transform: translateX(-50%) scale(1.05) !important;
    }
    .main1 .accordion-container .item:hover .desc {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .main1 .accordion-container .item:hover .title {
        color: #fff !important;
    }
    .main1 .accordion-container .item:hover .title::after {
        width: 50px !important;
    }

    .main1 .content {
        bottom: 8%;
        left: 40px;
        width: 400px;
    }
    .main1 .title {
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   미디어 쿼리 - 노트북 (1440px 이하)
   ========================================================================== */
@media (max-width: 1440px) {
/* 퀵메뉴 */
.quick_menu {
	border-radius: 4.5vw;
	padding: 2vw 0;
	margin-bottom: 1vw;
}
.quick_menu li {
	padding: 1vw 0;
}
.quick_menu li a {
	color: #fff;
	font-size:1.1vw;
}
#sub .quick_menu li a p{font-size:1.1vw;}
/* QUICK 버튼 */
.quick_open_btn {
	width: 7vw;
	height: 7vw;
	line-height: 7vw;
	font-size: 1.5vw;
	margin-bottom: 1vw;
}
/* TOP 버튼 */
.top-btn {
	width: 7vw;
	height: 7vw;
	font-size: 3vw;
}
/* 메인 비주얼 슬라이드 */
.main .visual {
    height: 95vh;
    min-height: 60vw;
	max-height:75vw;
}
.main .visual .mainBannerView .text {
    /* top: 30%; */
    /* left: 10%; */
}
.main .visual .mainBannerView .text h2 {
    font-size: 3.5vw;
    line-height: 1.4;
}
.main .visual .mainBannerView .text p {
    font-size: 2vw;
    margin-top: 2vw;
    line-height: 1.4;
}
.main .visual .mainBannerView .text a {
    margin-top: 3vw;
    width: 12vw;
    height: 4vw;
    line-height: 4vw;
    border-radius: 2.5vw;
	font-size:1.2vw;
}
.main .visual .mainBannerView .controller {
    bottom: 10%;
    left: 10%;
}
.main .visual .mainBannerView .controller > span {
    width: 2vw;
    margin-right: 1vw;
}
.main .visual .mainBannerView .controller .mb_numbox > span {
    font-size: 1.2vw;
}
.main .visual .mainBannerView .controller .mb_numbox .swiper-pagination-progressbar {
    width: 12vw;
    height: 2px;
}
.main1 {
    padding-top: 12vw;
}

.main1 .title_box h3 {
    font-size: 4vw;
}

.main1 .title_box p {
    font-size: 1.8vw;
    line-height: 1.5;
    margin: 2vw 0 8vw;
}

.main1 .accordion-container {
    width: 100%;
    height: 60vh;
	min-height: 50vw;
}
.main1 .title {
    font-size: 2vw;
    gap: 1vw;
}
.main1 .desc {
    font-size: 1.2vw;
    line-height: 1.6;
}
.main1 .item .desc span {
    margin-top: 1.5vw;
    font-size: 1.2vw;
    width: 3.5vw;
    height: 3.5vw;
    line-height: 3.5vw;
}
.main2 .flex {
    gap: 5%;
}
.main2 .flex .imgbox {
    width: 50%;
}
.main2 .flex .textbox h3 {
    font-size: 4vw;
}
.main2 .flex .textbox p {
    font-size: 1.8vw;
    margin: 1.5vw 0 3vw;
}

.main2 .flex .textbox a {
     width: 12vw;
    height: 4vw;
    line-height: 4vw;
    border-radius: 2.5vw;
	font-size:1.2vw;
}
#com_location .flex .map {
    width: 50vw;
    min-height: 60vw;
}
#com_location .flex .info {
    width: 50vw;
}
#com_location .flex .info h6 {
    font-size: 1.3vw;
}
#com_location .flex .info h3 {
    margin: 1.5vw 0 3vw;
    font-size: 4vw;
}
#com_location .flex .info .ul > li {
    font-size: 1.8vw;
    margin-bottom: 2vw;
}

#com_location .flex .info .ul > li:first-child {
    margin-bottom: 1vw;
}
#com_location .flex .info .ul > li.align_top ul li {
    font-size: 1.8vw;
    margin-bottom: 1vw;
}
#com_location .flex .info .ul > li b {
    min-width: 10vw;
}
#com_location .flex .info .ul > li p {
    font-size: 1.8vw;
}
#com_location .flex .info .box {
    border-radius: 1vw;
    padding: 2vw 0;
}
#com_location .flex .info .box p {
    font-size: 1.8vw;
}
#com_location .flex .info .btnbox {
    gap: 0.5vw;
}

#com_location .flex .info .btnbox a {
    width: 14vw;
    height: 3.5vw;
    line-height: 3.5vw;
    font-size: 1.3vw;
	letter-spacing:0;
}
#com_location .flex .info .btnbox a img {
    margin-right: 0.5vw;
    max-height: 80%;
}

/* 주차 안내 */
#com_parking {
    padding: 12vw 0;
}

#com_parking h3 {
    font-size: 4vw;
    margin-bottom: 3vw;
}

#com_parking .flex {
    gap: 1vw;
}

#com_parking .flex div img {
	max-width:45vw;
}

#com_parking .flex div p {
    font-size: 1.8vw;
    margin-top: 3vw;
}

#footer {
	padding: 8vw 0;
}
#footer .inbox .textbox .fmenu {
	margin-bottom: 2vw;
}

#footer .inbox .textbox .fmenu li a {
	font-size: 1.4vw;
}

#footer .inbox .textbox .fcon {
	gap: 1vw;
	max-width: 55vw;
}

#footer .inbox .textbox .fcon span,
#footer .inbox .textbox .fcon p {
	font-size: 1.2vw;
}




}

/* ==========================================================================
   미디어 쿼리 - 태블릿 (1024px 이하)
   ========================================================================== */
@media (max-width: 1024px) {
    #header .inner {
        height: 12vw;
		/* width:100vw; */
    }

    #header .logo img {
        max-width: 30vw;
    }

    #header .m-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 25px;
        height: 18px;
        cursor: pointer;
    }

    #header .m-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #333;
        transition: 0.3s;
    }

    #header .main-nav {
        position: fixed;
        top: 12vw;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: 0.3s;
        overflow-y: auto;
    }

    #header .main-nav.active {
        right: 0;
    }

    #header .main-nav .gnb > li {
        border-bottom: 1px solid #eee;
    }

    #header .main-nav .gnb > li > a {
        padding: 2.5vw 3vw;
        font-size: 1.8vw;
        font-weight: 600;
        display: block;
        background: #fafafa;
    }

    #header .depth2 {
        display: none;
        background: #fff;
        padding: 2.5vw 3.5vw;
        box-sizing: border-box;
    }

    #header .depth2 li a {
        display: block;
        padding: 1vw 0;
        font-size: 1.6vw;
        color: #666;
    }

    #header .m-menu-btn.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #header .m-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    #header .m-menu-btn.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
	/* 퀵메뉴 */
	.quick {
		position: fixed;
		left: 0;
		bottom: 0;
		z-index:999;
		width:100%;
	}
	.quick_menu {
		border-radius: 0;
		padding: 0;
		margin-bottom: 0;
		transform: scaleY(1);
		transform-origin: bottom; /* 아래에서 위로 커짐 */
		opacity: 1;
		display:flex;
		justify-content:center;
	}
	.quick_menu li {
		padding: 2vw 0 2vw;
		width:50%;
		position:relative;
	}
	.quick_menu li:after{
		content:"";
		display:block;
		width:1px;
		height:8vw;
		background:rgba(255,255,255,0.5);
		position:absolute;
		top:50%;
		right:0;
		transform:translateY(-50%);
	}
	.quick_menu li:last-child:after{display:none;}
	.quick_menu li a {
		color: #fff;
		font-size:2vw;
	}
	.quick_menu li a br{display:none;}
	.quick_menu li a img{
		width:6vw;
		display:block;
		margin:0 auto 1vw;
	}

	/* QUICK 버튼 */
	.quick_open_btn {
		display:none;
	}

	/* TOP 버튼 */
	.top-btn {
		width: 6vw;
		height: 6vw;
		font-size: 3vw;
		bottom:12vw;
		right:1vw;
		position:fixed;
	}

    #footer {
        padding: 8vw 0 10vw;
    }
	#footer .inbox .flex .logobox img{
		max-width:25vw;
	}
	.main .visual .mainBannerView .mainBanner{
		background-position:65% 100%;
	}
    /* 모바일용 아코디언 */
    .main1 .accordion-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .main1 .item {
        flex: none;
        width: 100%;
        height: 10vw;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main1 .item.active {
        height: 45vw;
        border-bottom: 1px solid var(--point-color);
    }

    .main1 .content {
        top: 50%;
        left: 5vw;
        right: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        width: 90vw;
		transform:translateY(-50%);
    }

    .main1 .title {
        min-height: 10vw;
        margin: 0;
        display: flex;
        align-items: center;
		font-size:3vw;
    }
	.main1 .item .desc{
		display:none;
	}
    .main1 .item.active .title {
        color: #fff;
        min-height: auto;
        margin-top: 0;
        margin-bottom: 2vw;
    }

    .main1 .item.active .title::after {
        width: 10vw;
    }

    .main1 .item.active .desc {
		font-size:1.5vw;
        opacity: 1;
        transform: translateY(0);
		display:block;
    }

	.main1 .item .desc span {
		margin-top: 2.5vw;
		font-size: 1.5vw;
		width: 5vw;
		height: 5vw;
		line-height: 5vw;
	}
    .main1 .item.active .bg-img {
        opacity: 1;
        filter: grayscale(0%);
    }

    .main1 .bg-img {
        width: 100%;
        height: 100%;
        transform: none;
        left: 0;
    }
}

/* ==========================================================================
   미디어 쿼리 - 모바일 (768px 이하)
   ========================================================================== */
@media (max-width: 768px) {
    #header .inner {
        height: 15vw;
    }

    #header .logo img {
        max-width: 45vw;
    }

    #header .main-nav {
        top: 15vw;
    }

    #header .main-nav .gnb > li > a {
        padding: 5vw 8vw;
        font-size: 4vw;
    }

    #header .depth2 {
        padding: 5vw 9vw;
    }

    #header .depth2 li a {
        font-size: 3.5vw;
    }
	/* 퀵메뉴 */
	.quick {
		position: fixed;
		left: 0;
		bottom: 0;
		z-index:999;
		width:100%;
	}

	.quick_menu {
		border-radius: 0;
		padding: 0;
		margin-bottom: 0;
		transform: scaleY(1);
		transform-origin: bottom; /* 아래에서 위로 커짐 */
		opacity: 1;
		display:flex;
		justify-content:center;
	}
	.quick_menu li {
		padding: 4vw 0 5vw;
		width:50%;
		position:relative;
	}
	.quick_menu li:after{
		content:"";
		display:block;
		width:1px;
		height:15vw;
		background:rgba(255,255,255,0.5);
		position:absolute;
		top:50%;
		right:0;
		transform:translateY(-50%);
	}
	.quick_menu li:last-child:after{display:none;}
	.quick_menu li a {
		color: #fff;
		font-size:2.5vw;
	}
	#sub .quick_menu li a p{font-size:2.5vw;}
	.quick_menu li a img{
		width:6vw;
		display:block;
		margin:0 auto 1vw;
	}

	/* QUICK 버튼 */
	.quick_open_btn {
		display:none;
	}

	/* TOP 버튼 */
	.top-btn {
		width: 10vw;
		height: 10vw;
		font-size: 3vw;
		bottom:22vw;
		right:1vw;
		position:fixed;
	}



.main .visual {
    height: 90vh;
    min-height: 150vw;
	max-height:200vw;
	text-align:center;
}
.main .visual .mainBannerView .vis1 { background: url(/img/main_visual_m1.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .vis2 { background: url(/img/main_visual_m2.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .vis3 { background: url(/img/main_visual_m3.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .vis4 { background: url(/img/main_visual_m4.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .vis5 { background: url(/img/main_visual_m5.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .vis6 { background: url(/img/main_visual_m6.png) no-repeat 50% 50% / cover; }
.main .visual .mainBannerView .text {
    /* top: 30%; */
    /* left: 10%; */
	left:0;
	top:auto;
	bottom:12%;
	transform:translate(0%,0%);
	width:100%;
}
.main .visual .mainBannerView .vis1 .text h2 br{
	display:none;
}
.main .visual .mainBannerView .vis1 .text h2 .mbr{
	display:inline-block;
}
.main .visual .mainBannerView .text .mbr{
	display:inline-block;
}
.main .visual .mainBannerView .text h2 {
    font-size: 5.5vw;
    line-height: 1.4;
}
.main .visual .mainBannerView .text p {
    font-size: 3vw;
    margin-top: 5vw;
    line-height: 1.6;
}
.main .visual .mainBannerView .text a {
    margin: 5vw auto 0;
    width: 30vw;
    height: 7vw;
    line-height: 7vw;
    border-radius: 4vw;
	font-size:3vw;
}
.main .visual .mainBannerView .controller {
    bottom: 5%;
    left: 50%;
	transform:translateX(-50%);
}
.main .visual .mainBannerView .controller > span {
    width: 5vw;
    margin-right: 1vw;
}
.main .visual .mainBannerView .controller .mb_numbox > span {
    font-size: 3vw;
}
.main .visual .mainBannerView .controller .mb_numbox .swiper-pagination-progressbar {
    width: 20vw;
    height: 2px;
}
.main1 {
    padding-top: 15vw;
}

.main1 .title_box h3 {
    font-size: 7vw;
}
.main1 .title_box h3 .mbr{
	display:inline-block;
}
.main1 .title_box p {
    font-size: 3.2vw;
    line-height: 1.5;
    margin: 8vw 0 15vw;
}
.main1 .accordion-container{
	min-height:120vw;
}
.main1 .item {
	height: 15vw;
}

.main1 .item.active {
	height: 60vw;
}
.main1 .content {
	left: 10vw;
	width: 80vw;
}
.main1 .title {
	min-height: 15vw;
	font-size:5vw;
	gap: 2vw;
}

.main1 .item.active .title {
	margin-bottom: 5vw;
}
.main1 .item.active .title::after {
	width: 20vw;
}
.main1 .item.active .desc {
	font-size:3vw;
}
.main1 .item .bg-img {
	opacity: 0.5;
    filter: grayscale(50%);
}
.main1 .item.active .bg-img {
	opacity: 0.8;
	filter: grayscale(0%);
}

.main1 .item .desc span {
	margin-top: 5vw;
	font-size: 3vw;
	width: 6vw;
	height: 6vw;
	line-height: 6vw;
}
.main2 .flex {
    gap: 5%;
	flex-direction:column;
}
.main2 .flex .imgbox{
    width: 100%;
}
.main2 .flex .textbox {
    width: 100%;
	padding:15vw 0;
	text-align:center;
}
.main2 .flex .textbox h3 {
    font-size: 7vw;
}
.main2 .flex .textbox p {
    font-size: 3.2vw;
    margin: 8vw 0 10vw;
}
.main2 .flex .textbox a {
     width: 30vw;
    height: 8vw;
    line-height: 8vw;
    border-radius: 4vw;
	font-size:3vw;
	margin:0 auto;
}

#com_location .flex {
	flex-direction: column-reverse;
}

#com_location .flex .map {
    width: 100vw;
    min-height: 70vw;
}
#com_location .flex .info {
    width: 100vw;
	padding:15vw 0;
}
#com_location .flex .info h6 {
	text-align:center;
    font-size: 2.5vw;
}
#com_location .flex .info h3 {
	text-align:center;
    margin: 5vw 0 8vw;
    font-size: 7vw;
}
#com_location .flex .info .ul > li {
    font-size: 3.5vw;
    margin-bottom: 5vw;
}

#com_location .flex .info .ul > li:first-child {
    margin-bottom: 3vw;
}
#com_location .flex .info .ul > li.align_top ul li {
    font-size: 3.5vw;
    margin-bottom: 2vw;
}
#com_location .flex .info .ul > li b {
    min-width: 23vw;
}
#com_location .flex .info .ul > li p {
    font-size: 3.5vw;
}
#com_location .flex .info .box {
    border-radius: 3vw;
    padding: 8vw 0;
}
.tel-link {
        pointer-events: auto;
    }
#com_location .flex .info .box p {
    font-size: 3.5vw;
}
#com_location .flex .info .btnbox {
    gap: 1vw;
}

#com_location .flex .info .btnbox a {
    width: 30vw;
    height: 7vw;
    line-height: 7vw;
    font-size: 3vw;
	letter-spacing:0;
}
#com_location .flex .info .btnbox a img {
    margin-right: 1vw;
    max-height: 70%;
}

/* 주차 안내 */
#com_parking {
    padding: 0 0 15vw;
}

#com_parking h3 {
    font-size: 7vw;
    margin-bottom: 8vw;
}

#com_parking .flex {
    gap: 12vw;
	flex-direction:column;
}

#com_parking .flex div img {
	max-width:80vw;
	margin:0 auto;
}
#com_parking .flex .left img{
	padding-right:6vw;
}
#com_parking .flex .right img{
	padding-left:6vw;
}
#com_parking .flex div p {
    font-size: 3.5vw;
    margin-top: 5vw;
}
    #footer {
        padding: 15vw 0;
    }

    #footer .inbox .flex {
        flex-direction: column;
        gap: 8vw;
    }

    #footer .inbox .textbox .fmenu {
        justify-content: center;
		margin-bottom:8vw;
    }

    #footer .inbox .textbox .fmenu li a {
        font-size: 3vw;
    }
#footer .inbox .textbox .fcon span, #footer .inbox .textbox .fcon p{
	font-size:2.5vw;
}
    #footer .inbox .textbox .fcon {
        max-width: 90vw;
        justify-content: center;
    }
	#footer .inbox .flex .logobox img{
		max-width:40vw;
	}
}