@charset "UTF-8";
/*헤더*/
#header {
	position: fixed;
	top: 0; left: 0; 
	width: 100%;
	z-index: 1000;
	transition: background 0.3s;
}
#header .inner {
	display: flex;
	justify-content: space-between;
	max-width: 90vw;
	margin: 0 auto;
	position: relative;
	z-index: 20;
	padding-top:30px;
}
/* 로고 */
.logo img { 
	height: 48px; 
	width: auto; 
	vertical-align: middle; 
}
.logo .logo_pc {
	display: none; 
}
/* PC GNB */
.gnb { 
	display: flex; 
	gap:60px;
}
.gnb > li { 
	position: relative; 
	/* min-width: 170px;  */
}
.gnb > li > a { 
	color: #fff; 
	font-size: 22px; 
	text-transform: uppercase; 
	display: block; 
	line-height: 48px; 
	font-family: "zahrah", serif;
	font-weight:400;
	letter-spacing:0;
	text-align:center;
	box-sizing:border-box;
	margin-bottom:20px;
	border-bottom:2px solid rgba(0,0,0,0);
}
/* PC 서브메뉴 */
.depth2 {
	padding-bottom:40px; 
	display: none; 
	flex-direction: column; 
	gap: 15px; 
	z-index: 30; 
	text-align: center;
}
.depth2 li a { 
	color: #999; 
	font-size: 17px; 
	white-space: nowrap; 
	letter-spacing:0;
	font-weight:300;
}
.depth2 li a:hover { 
	color: #a81c43; 
	font-weight: 600; 
}

/* 로그인 버튼 */
.header_login{
	padding-top:10px;
}
.header_login a {
	color: #fff; 
	font-size: 14px; 
	border: 1px solid rgba(255,255,255,0.5);
	padding: 6px 20px; 
	border-radius: 20px;
	display:inline-block;
}
/* --- 활성화 상태 (.on) --- */
#header.on { 
	background: #fff; 
	border-bottom: 1px solid #eee;
 }
#header.on .gnb > li > a, 
#header.on .header_login a { 
	color: #000; 
}
#header.on .header_login a { 
	border-color: #000; 
}
#header.on .gnb > li:hover{
	
}
#header.on .gnb > li:hover > a{
	color:#a81c43;
	border-bottom:2px solid #a81c43;
	
}
#header.on .logo .logo_wh {
	display: none; 
}
#header.on .logo .logo_pc {
	display: block; 
}
#header.open .header_bg {
	height: 320px; 
	border-top: 1px solid #ddd; 
}
#header.open .depth2 { 
	display: flex; 
}
/* --- 햄버거 버튼 (반드시 보임 처리) --- */
.m-menu-wrap,
.m-menu-btn {
	display: none; 
}

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

.quick_menu {
	background: rgba(0,0,0,0.7);
	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;
		box-shadow:3px 3px 3px rgba(0,0,0,0.2);
}

/* 활성 상태 */
.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: #a81c43;
	text-align: center;
	line-height: 90px;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	cursor: pointer;
	box-shadow:3px 3px 3px rgba(0,0,0,0.2);
}

/* TOP 버튼 */
.top-btn {
	width: 90px;
	height: 90px;
	border: none;
	border-radius: 50%;
	background: #111;
	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;
	box-shadow:3px 3px 3px rgba(0,0,0,0.2);
}

  
  /*메인*/
 .mbr{display:none;}
.main-visual {
  position: relative;
}
.main-visual .inbox {
	position: relative;
	height:900px;
	max-height: 98vh;
}
/* --- 슬라이드 공통 --- */
.main-visual .visual_slide {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-visual .visual_slide .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.main-visual .visual_slide .slide.active {
  opacity: 1;
}
/* --- 슬라이드 배경 이미지 --- */
.main-visual .visual_slide .slide1 {
	background: url("/pub/img/visual1.png") no-repeat 50% 50%;
	background-size:cover;
}
.main-visual .visual_slide .slide2 {
	background: url("/pub/img/visual2.png") no-repeat 50% 50%;
	background-size:cover;
}
.main-visual .visual_slide .slide3 {
	background: url("/pub/img/visual3.png") no-repeat 50% 50%;
	background-size:cover;
}
.main-visual .visual_slide .slide4 {
	background: url("/pub/img/visual4.png") no-repeat 50% 50%;
	background-size:cover;
}
.main-visual .visual_slide .slide5 {
	background: url("/pub/img/visual5.png") no-repeat 50% 50%;
	background-size:cover;
}
/* --- 텍스트 박스 --- */
.main-visual .visual_slide .slide .text-box {
  position: absolute;
  top: 50%;
  left: 15%;
  color: #fff;
  opacity: 0;
  transform: translateY(-10%);
  transition: all 1s ease;
}

.main-visual .visual_slide .slide.active .text-box {
  opacity: 1;
  transform: translateY(-40%);
}
.main-visual .visual_slide .slide .text-box h5 {
  font-size: 30px;
  font-weight:300;
}
.main-visual .visual_slide .slide .text-box h5 b{
	font-weight:700;
}
.main-visual .visual_slide .slide .text-box h2.en {
  font-size: 130px;
  line-height: 1;
  font-weight: 500;
  margin: 50px 0;
}
.main-visual .visual_slide .slide .text-box p {
  font-size: 25px;
  font-weight:300;
  line-height:1.5;
}

/* --- 좌측 번호 네비게이션 --- */
.main-visual .visual-nav {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-visual .visual-nav span {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  cursor: pointer;
  position: relative;
  opacity:0.2;
}
.main-visual .visual-nav span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.4s ease;
}
.main-visual .visual-nav span.active{
	opacity:1;
	 font-weight: 600;
}
.main-visual .visual-nav span.active::after {
  width: 100%;
}
 .main-visual .visual-nav span + span{
	  margin-top:20px;
  }
   .main-visual .scroll-down {
    position: absolute;
    right: 8vw;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 15;
    color: #fff;
	letter-spacing:0;
}
 .main-visual .scroll-down p {
    font-size: 14px;
    font-weight: 700;
    -webkit-writing-mode: vertical-rl; /* 예시: 세로쓰기인 경우 */
    writing-mode: vertical-rl;
}
 .main-visual .scroll-down .ico {
    margin-top: 5px;
    fill: #fff;
}
.main1{
	background:#fafafa;
}
.main1 .inbox{
	width:1440px;
	max-width:90vw;
	margin:0 auto;
	padding:150px 0 100px;
	position:relative;
}
.main1 .inbox .flex{
	justify-content:space-between;
	align-items:center;
	margin-bottom:50px;
}
.main1 .inbox .flex .textbox h6{
	font-size:18px;
	font-weight:400;
}
.main1 .inbox .flex .textbox h4{
	font-size:35px;
	line-height:1.5;
	margin:30px 0;
	font-weight:300;
}
.main1 .inbox .flex .textbox p{
	font-size:20px;
	line-height:1.5;
}
.main1 .inbox .flex .textbox a{
	display:block;
	font-size:16px;
	line-height:50px;
	height:50px;
	width:150px;
	color:#fff;
	background:#a81c43;
	margin-top:50px;
	text-align:center;
}
.main1 .inbox .flex .right.textbox{
	text-align:right;
	padding-right:10px;
}
.main1 .inbox .flex .right.textbox h4{
	transform:translateX(10px);
}
.main1 .inbox .flex .left.textbox{
	text-align:left;
}
.main1 .inbox .flex .textbox .cline{
	display:block;
	width:1px;
	height:230px;
	background:#a81c43;
	position:absolute;
}
.main1 .inbox .flex .right.textbox .cline{
	top:0;
	right:0;
}
.main1 .inbox .flex .left.textbox .cline{
	left:0;
	bottom:0;
	height:180px;
}
.main2{
	padding:150px 0;
}
.main2 .flex{
	gap:10%;
	justify-content:flex-end;
	align-items:center;
}
.main2 .flex .left{
	/* width:40%; */
	box-sizing:border-box;
}
.main2 .flex .left img{
	display:block;
}
.main2 .flex .left h4{
	font-size:30px;
	font-weight:300;
	margin:50px 0 30px;
}
.main2 .flex .left h3{
	font-size:80px;
	font-weight:500;
}
.main2 .flex .left p{
	font-size:25px;
	margin:30px 0 80px;
}
.main2 .flex .left .btnbox{
	position:relative;
	height:50px;
}
.main2 .flex .left .btnbox .swiper-button-prev::after,
.main2 .flex .left .btnbox .swiper-button-next::after{
	display: none;
}
.main2 .flex .left .btnbox .swiper-button-next, 
.main2 .flex .left .btnbox .swiper-button-prev {
    width: 50px; 
    height: 50px;
    border-radius: 50%; 
    border: 1px solid #333;
	top:0;
	left:auto;
	right:auto;
	margin-top:0;
}
.main2 .flex .left .btnbox .swiper-button-prev {
    background: url('/img/btn_prev.png') no-repeat 50% 50%;
}

.main2 .flex .left .btnbox .swiper-button-next {
    background: url('/img/btn_next.png') no-repeat 50% 50%;
	left:60px;
}
.main2 .flex .right{
	width:55%;
	margin:0;
}
.main2 .flex .right.mySwiper .swiper-slide {
	filter: grayscale(100%);
	transition: filter 0.5s ease; 
	opacity: 0.5; 
}
.main2 .flex .right.mySwiper .swiper-slide-active {
	filter: grayscale(0%);
	opacity: 1;
}
.main2 .flex .right.mySwiper .swiper-slide img{
	width:100%;
	display:block;
}
.main2 .flex .right.mySwiper .swiper-slide div{
	padding:30px 10px 50px 0;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.main2 .flex .right.mySwiper .swiper-slide div p{
	font-size:30px;
	font-weight:600;
}
.main2 .flex .right.mySwiper .swiper-slide div > span{
	font-size:16px;
	font-weight:300;
	letter-spacing:0;
}
.main2 .flex .right .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background:#a81c43;
}
.main2 .flex .right .swiper-horizontal>.swiper-pagination-progressbar,
.main2 .flex .right .swiper-pagination-progressbar.swiper-pagination-horizontal{
	top:auto;
	bottom:0;
	height:8px;
}
.main3{
	background:#fafafa;
	padding:150px 0;
}
.main3 .inbox{
	width:1440px;
	max-width:90vw;
	margin:0 auto;
	position:relative;
	text-align:center;
}
.main3 .inbox .title h3{
	font-size:80px;
	font-weight:500;
}
.main3 .inbox .title p{
	font-size:25px;
	margin: 30px 0 100px;
}
.main3 .inbox .flex{
	justify-content:center;
	gap:30px;
}
.main3 .inbox .flex li{
	border:1px solid #eee;
	box-sizing:border-box;
	border-radius:30px;
	padding:10px 10px 30px;
	background:#fff;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
.main3 .inbox .flex li img{
	max-width:100%;
	display:block;
	border-radius:20px;
}
.main3 .inbox .flex li a p{
	font-size:30px;
	font-weight:600;
	margin:30px 0 10px;
}
.main3 .inbox .flex li a div > span{
	font-weight:300;
	letter-spacing:0;
}
.main4{
	padding:150px 0;
	text-align:center;
}
.main4 .title h3{
	font-size:80px;
	font-weight:500;
}
.main4 .mySwiper2{
	margin:100px 0;
}
/* 기본 상태: 작고 흑백 */
.main4 .mySwiper2 .swiper-slide {
	transform: scale(0.8); /* 기본 크기 80% */
	transition: all 0.5s;
	filter: grayscale(100%);
	opacity: 0.5;
}

/* 가운데 활성화된 슬라이드: 크고 컬러 */
.main4 .mySwiper2 .swiper-slide-active {
	transform: scale(1.2); /* 120% 크기로 확대 */
	filter: grayscale(0%);
	opacity: 1;
	z-index: 10; /* 다른 슬라이드보다 위로 */
}

.main4 .mySwiper2 .swiper-slide img {
	width: 100%;
	display: block;
}
.main4 > p{
	font-size:25px;
	line-height:1.5;
}




			




/*오시는길*/
.com_location{
	background:#f9f9f9;
}
.com_location .flex{
	width:100%;
	max-width:100%;
	align-items:stretch;
}
.com_location .flex .map{
	width:50vw;
	height:100%;
	box-sizing:border-box;
	min-height:850px;
	display:block;
}
.com_location .flex .info{
	width:50vw;
	position:relative;
	box-sizing:border-box;
	display:flex;
	align-items: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 80px;
	font-size:80px;
	font-weight:500;
}
.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.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.align_top ul li:last-child{
	margin-bottom:0;
}
.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 .btnbox{
	display:flex;
	gap:10px;
	margin-top:80px;
}
.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;
	letter-spacing:0;
}
.com_location .flex .info .btnbox a img{
	margin-right:5px;
	vertical-align:middle;
	max-height:90%;
}
/*footer*/
#footer{
	background:#181818;
	padding:100px 0;
}
#footer .inbox{
	width:1420px;
	max-width:95vw;
	margin:0 auto;
}
#footer .inbox .flex{
	justify-content:center;
	align-items:center;
	gap:100px;
}
#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:last-child{
	padding-right:0;
	margin-right:0;
	border-right:0;
}
#footer .inbox .textbox .fmenu li a{
	color:#ddd;
	display:block;
	font-size:16px;
}
#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;
	line-height:1;
	font-weight:300;
	display:inline-block;
}
#footer .inbox .textbox .fcon p{
	font-size: 14px;
	color:#aaa;
}






/* 노트북 */
@media (max-width: 1440px) {
#header .inner {
	padding-top:3vw;
	max-width:95vw;
}
.logo img { 
	height: 3.8vw; 
	max-height:48px;
}
.gnb { 
	gap:3vw;
}
.gnb > li > a { 
	font-size: 1.8vw; 
	line-height: 4vw; 
	margin-bottom:1vw;
	white-space: nowrap; 
}
/* PC 서브메뉴 */
.depth2 {
	padding-bottom:3vw; 
	gap: 1vw; 
}
.depth2 li a { 
	font-size: 1.2vw; 
}
.depth2 li a:hover { 
	color: #a81c43; 
	font-weight: 600; 
}

/* 로그인 버튼 */
.header_login{
	padding-top:0.8vw;
}
.header_login a {
	font-size: 1.2vw; 
	padding: 0.5vw 1.5vw; 
	border-radius: 1.5vw;
}



/* 퀵메뉴 */
.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 .visual_slide .slide .text-box h5 {
  font-size: 2.5vw;
}
.main-visual .visual_slide .slide .text-box h2.en {
	font-size: 10vw;
	margin: 3vw 0;
}
.main-visual .visual_slide .slide .text-box p {
  font-size: 2vw;
}
/* --- 좌측 번호 네비게이션 --- */
.main-visual .visual-nav {
  left: 6vw;
  gap: 1vw;
}
.main-visual .visual-nav span {
  font-size: 1.5vw;
}
.main-visual .visual-nav span::after {
  bottom: -0.5vw;
}
.main-visual .visual-nav span + span{
  margin-top:2vw;
}
.main-visual .scroll-down {
	right: 5vw;
	top: 50%;
}
.main-visual .scroll-down p {
	font-size: 1.2vw;
}
.main-visual .scroll-down .ico {
	margin-top: 0.5vw;
}

.main1 .inbox{
	padding:12vw 0 8vw;
}
.main1 .inbox .flex{
	margin-bottom:5vw;
}
.main1 .inbox .flex .imgbox{
	width:40vw;
}
.main1 .inbox .flex .textbox h6{
	font-size:1.5vw;
}
.main1 .inbox .flex .textbox h4{
	font-size:2.8vw;
	margin:2vw 0;
}
.main1 .inbox .flex .textbox p{
	font-size:1.6vw;
}
.main1 .inbox .flex .textbox a{
	font-size:1.2vw;
	line-height:3.6vw;
	height:3.6vw;
	width:12vw;
	margin-top:3vw;
}
.main1 .inbox .flex .right.textbox{
	text-align:right;
	padding-right:0.5vw;
}
.main1 .inbox .flex .right.textbox h4{
	transform:translateX(0.5vw);
}
.main1 .inbox .flex .textbox .cline{
	width:1px;
	height:14vw;
}
.main1 .inbox .flex .left.textbox .cline{
	height:12vw;
}
.main2{
	padding:12vw 0;
}
.main2 .flex{
	gap:8%;
}
.main2 .flex .left img{
	width:5vw;
}
.main2 .flex .left h4{
	font-size:2.2vw;
	margin:3vw 0 1.5vw;
}
.main2 .flex .left h3{
	font-size:6vw;
}
.main2 .flex .left p{
	font-size:2vw;
	margin:1.5vw 0 5vw;
}
.main2 .flex .left .btnbox{
	height:4vw;
}
.main2 .flex .left .btnbox .swiper-button-next, 
.main2 .flex .left .btnbox .swiper-button-prev {
    width: 4vw; 
    height: 4vw;
}
.main2 .flex .left .btnbox .swiper-button-next {
	left:5vw;
}
.main2 .flex .right.mySwiper .swiper-slide div{
	padding:2vw 0.5vw 4vw 0;
}
.main2 .flex .right.mySwiper .swiper-slide div p{
	font-size:2.2vw;
}
.main2 .flex .right.mySwiper .swiper-slide div > span{
	font-size:1.2vw;
}
.main2 .flex .right .swiper-horizontal>.swiper-pagination-progressbar,
.main2 .flex .right .swiper-pagination-progressbar.swiper-pagination-horizontal{
	height:6px;
}
.main3{
	padding:12vw 0;
}
.main3 .inbox .title h3{
	font-size:6vw;
}
.main3 .inbox .title p{
	font-size:2vw;
	margin: 2vw 0 8vw;
}
.main3 .inbox .flex{
	gap:1vw;
}
.main3 .inbox .flex li{
	padding:1vw 1vw 2vw;
	border-radius:2vw;
}
.main3 .inbox .flex li img {
	border-radius:1vw;
}
.main3 .inbox .flex li a p{
	font-size:2.2vw;
	font-weight:600;
	margin:2vw 0 0.5vw;
}
.main3 .inbox .flex li a div > span{
	font-size:1.2vw;
}
.main4{
	padding:12vw 0;
}
.main4 .title h3{
	font-size:6vw;
}
.main4 .mySwiper2{
	margin:5vw 0;
}
.main4 > p{
	font-size:2vw;
}
/*오시는길*/
.com_location .flex .map{
	min-height:65vw;
}
.com_location .flex .info{
	justify-content:center;
}
.com_location .flex .info .in{
	padding-left: 0;
}
.com_location .flex .info h6{
	font-size:1.5vw;
	font-weight:500;
}
.com_location .flex .info h3{
	margin:2vw 0 5vw;
	font-size:6vw;
}
.com_location .flex .info .ul > li{
	font-size:1.6vw;
	margin-bottom:2vw;
}
.com_location .flex .info .ul > li.align_top ul li{
	font-size:1.6vw;
	margin-bottom:0.5vw;
}
.com_location .flex .info .ul > li b{
	min-width:10vw;
}
.com_location .flex .info .ul > li p{
	font-size:1.6vw;
}
.com_location .flex .info .btnbox{
	gap:1vw;
	margin-top:5vw;
}
.com_location .flex .info .btnbox a{
	width: 12vw;
	height:3.2vw;
	line-height:3.2vw;
	font-size:1.2vw;
}
.com_location .flex .info .btnbox a img{
	margin-right:0.5vw;
	max-height:60%;
}
/*footer*/
#footer{
	padding:8vw 0;
}
#footer .inbox .flex{
	gap:8vw;
}
#footer .inbox .flex .logobox img{
	max-width:8vw;
}
#footer .inbox .textbox .fmenu{
	margin-bottom:2vw;
}
#footer .inbox .textbox .fmenu li{
	padding-right:1.5vw;
	margin-right:1.5vw;
}
#footer .inbox .textbox .fmenu li a{
	font-size:1.4vw;
}
#footer .inbox .textbox .fcon{
	gap:1vw;
	max-width:55vw;
}
#footer .inbox .textbox .fcon span{
	font-size:1.2vw;
}
#footer .inbox .textbox .fcon p{
	font-size: 1.2vw;
}













}

/* 태블릿 */
@media (max-width: 1024px) {

 #header .inner { 
	height: 10vw; 
	padding-top:3vw;
	max-width:90vw;
 }
 .logo img { 
	height: 5vw; 
}
.main-nav, 
.header_bg { 
	display: none !important; 
}
/* --- 햄버거 버튼 (반드시 보임 처리) --- */
.m-menu-btn {
	display: block; 
	width: 4.2vw; 
	height: 3vw;
	position: fixed; 
	top:4vw;
	right:5vw;
	cursor: pointer; 
	z-index: 2000;
}
.m-menu-btn span {
	display: block; 
	position: absolute; 
	left: 0;
	width: 100%; 
	height: 1px; 
	background: #fff; /* 기본 흰색 */
	transition: 0.3s;
}
.m-menu-btn span:nth-child(1) { top: 0; }
.m-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.m-menu-btn span:nth-child(3) { bottom: 0; }

/* 흰색 헤더일 때 버튼 검정색 */
#header.on .m-menu-btn span { 
	background: #000; 
}
/* --- 모바일 사이드바 디자인 --- */
.m-menu-wrap {
	position: fixed; 
	display:block;
	top: 0; 
	right: -100%; 
	width: 50vw; 
	height: 100%;
	background: #fff; 
	z-index: 1500; 
	transition: 0.4s ease-in-out;
	padding: 5vw 3vw; 
	overflow-y: auto;
	box-shadow: -1vw 0 -1.5vw rgba(0,0,0,0.1);
	box-sizing:border-box;
}
.m-menu-mask {
	display: none; 
	position: fixed; 
	top: 0; left: 0; 
	width: 100%; 
	height: 100%;
	background: rgba(0,0,0,0.5); 
	z-index: 1400;
}
#header.m-open .m-menu-wrap { right: 0; }
#header.m-open .m-menu-mask { display: block; }

/* 사이드바 내부 메뉴 스타일 */
.m-gnb-list > li { 
	margin-bottom: 3vw; 
}
.m-gnb-list > li > a {
	font-size: 2.5vw; 
	font-weight: 600;
	color: #333;
	display: block; 
	margin-bottom: 2vw; 
}
.m-depth2 { 
	display: flex; 
	flex-direction: column; 
	gap: 1vw; 
}
.m-depth2 li a { 
	font-size: 2vw; 
	color: #777;
}

/* 햄버거 버튼 X 변신 */
#header.m-open .m-menu-btn span:nth-child(1) { 
	top: 50%; 
	transform: rotate(45deg); 
	background: #000; 
}
#header.m-open .m-menu-btn span:nth-child(2) { 
	opacity: 0; 
}
#header.m-open .m-menu-btn span:nth-child(3) { 
	bottom: 50%; 
	transform: rotate(-45deg); 
	background: #000; 
}

.header_login{
	position:absolute;
	top:3.5vw;
	right:8vw;
	z-index:999;
	padding-top:0;
}
.header_login a {
	font-size: 2vw; 
	padding: 0.7vw 3vw; 
	border-radius: 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:space-between;
	background:rgba(99,6,32,0.8);
}
.quick_menu li {
	padding: 2vw 0 2.5vw;
	width:25%;
	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:1.8vw;
}
#sub .quick_menu li a p{font-size:1.8vw;}
.quick_menu li a img{
	width:3vw;
	display:block;
	margin:0 auto 1vw;
}
/* QUICK 버튼 */
.quick_open_btn {
	display:none;
}
/* TOP 버튼 */
.top-btn {
	width: 6vw;
	height: 6vw;
	font-size: 2vw;
	bottom:12vw;
	right:1vw;
	position:fixed;
}
/*footer*/
#footer{
	padding:8vw 0 15vw;
}
.main-visual .inbox{
	height:80vh;
}



	
}


/* 모바일 */
@media (max-width: 768px) {
#header .inner { 
	height: 15vw; 
	padding-top:5vw;
	max-width:90vw;
 }
 .logo img { 
	height: 8vw; 
}
.m-menu-btn {
	width: 7vw; 
	height: 5vw;
	top:6vw;
	right:5vw;
}
.m-menu-wrap {
	width: 80vw; 
	padding: 10vw 5vw; 
}
.m-gnb-list > li { 
	margin-bottom: 6vw; 
}
.m-gnb-list > li > a {
	font-size: 4.5vw; 
	margin-bottom: 3vw; 
}
.m-depth2 { 
	gap: 2vw; 
}
.m-depth2 li a { 
	font-size: 3.2vw; 
}
.header_login{
	top:5vw;
	right:12vw;
}
.header_login a {
	font-size: 3.2vw; 
	padding: 1vw 4vw; 
	border-radius: 8vw;
}


/* 퀵메뉴 */
.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:space-between;
}
.quick_menu li {
	padding: 4vw 0 5vw;
	width:25%;
	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 .visual_slide .slide1 {
	background: url("/pub/img/visual1_m.png") no-repeat 50% 100%;
	background-size:cover;
}
.main-visual .visual_slide .slide4 {
	background: url("/pub/img/visual4_m.png") no-repeat 50% 100%;
	background-size:cover;
}
.main-visual .visual_slide .slide5 {
	background: url("/pub/img/visual5_m.png") no-repeat 50% 100%;
	background-size:cover;
}
/* --- 텍스트 박스 --- */
.main-visual .visual_slide .slide .text-box{
	left:0;
	top:35%;
	text-align:center;
	width:100%;
}
.main-visual .visual_slide .slide .text-box h5 {
  font-size:4vw;
}
.main-visual .visual_slide .slide .text-box h2.en {
  font-size: 15vw;
  margin-bottom: 5vw;
}
.main-visual .visual_slide .slide .text-box p {
  font-size: 3.5vw;
}

/* --- 좌측 번호 네비게이션 --- */
.main-visual .visual-nav {
  left: 5vw;
  gap: 2vw;
}
.main-visual .visual-nav span {
  font-size: 3vw;
}
.main-visual .visual-nav span::after {
  bottom: -0.5vw;
}
.main-visual .visual-nav span + span{
  margin-top:2vw;
}
.main-visual .scroll-down {
	right: auto;
	top: auto;
	left: 50%;
	bottom: 5vw;
	transform: translate(-50%, -50%);
}
.main-visual .scroll-down p {
	font-size: 2.5vw;
	writing-mode: inherit;
}
.main-visual .scroll-down .ico {
	margin-top: 0.5vw;
}

.main1 .inbox{
	padding:15vw 0;
}
.main1 .inbox .flex{
	margin-bottom:5vw;
	justify-content:center;
	flex-direction:column;
	
}
.main1 .inbox .flex.reverse{
	flex-direction:column-reverse;
	margin-bottom:0;
}
.main1 .inbox .flex .imgbox{
	width:100%;
}
.main1 .inbox .flex .textbox h6{
	font-size:3vw;
}
.main1 .inbox .flex .textbox h4{
	font-size:5vw;
	margin:4vw 0;
}
.main1 .inbox .flex .textbox p{
	font-size:3.5vw;
}
.main1 .inbox .flex .textbox a{
	font-size:3vw;
	line-height:8vw;
	height:8vw;
	width:30vw;
	margin:8vw auto 0;
}
.main1 .inbox .flex .left.textbox,
.main1 .inbox .flex .right.textbox{
	text-align:center;
	padding-right:0;
	margin:8vw 0 10vw;
}
.main1 .inbox .flex .right.textbox h4{
	transform:translateX(0);
}
.main1 .inbox .flex .textbox .cline{
	display:none;
}
.main2{
	padding:15vw 0;
}
.main2 .flex{
	gap:8%;
	flex-direction:column;
	text-align:center;
}
.main2 .flex .left,
.main2 .flex .right{
	width:90vw;
}
.main2 .flex .left img{
	width:10vw;
	margin:0 auto;
}
.main2 .flex .left h4{
	font-size:5vw;
	margin:5vw 0 2vw;
}
.main2 .flex .left h3{
	font-size:10vw;
}
.main2 .flex .left h3 br{
	display:none;
}
.main2 .flex .left p{
	font-size:3.5vw;
	margin:5vw 0 10vw;
}
.main2 .flex .left .btnbox{
	height:7vw;
	margin-bottom:5vw;
}
.main2 .flex .left .btnbox .swiper-button-next, 
.main2 .flex .left .btnbox .swiper-button-prev {
    width: 7vw; 
    height: 7vw;
}
.main2 .flex .left .btnbox .swiper-button-prev {
	left:auto;
	right:1%;
	transform:translateX(-100%);
}
.main2 .flex .left .btnbox .swiper-button-next {
	left:auto;
	right:0%;
}
.main2 .flex .right.mySwiper .swiper-slide div{
	padding:5vw 1vw 8vw 0;
}
.main2 .flex .right.mySwiper .swiper-slide div p{
	font-size:4vw;
}
.main2 .flex .right.mySwiper .swiper-slide div > span{
	font-size:2.5vw;
}
.main2 .flex .right .swiper-horizontal>.swiper-pagination-progressbar,
.main2 .flex .right .swiper-pagination-progressbar.swiper-pagination-horizontal{
	height:4px;
}
.main3{
	padding:15vw 0;
}
.main3 .inbox .title h3{
	font-size:10vw;
}
.main3 .inbox .title p{
	font-size:3.5vw;
	margin: 5vw 0 10vw;
}
.main3 .inbox .flex{
	gap:2vw;
	flex-direction:column;
}
.main3 .inbox .flex li{
	padding:1vw;
	border-radius:2vw;
}
.main3 .inbox .flex li img {
	border-radius:1vw;
}
.main3 .inbox .flex li a{
	display:flex;
	gap:5vw;
	align-items:center;
	text-align:left;
}
.main3 .inbox .flex li a img{
	width:50%;
	display:block;
}
.main3 .inbox .flex li a p{
	font-size:4vw;
	font-weight:600;
	margin:0 0 1vw;
}
.main3 .inbox .flex li a div > span{
	font-size:2.5vw;
}
.main4{
	padding:15vw 0;
}
.main4 .title h3{
	font-size:10vw;
}
.main4 .title h3 .mbr{
	display:inline-block;
}
.main4 .mySwiper2{
	margin:10vw 0;
}
.main4 > p{
	font-size:3.5vw;
}
.main4 > p .mbr{
	display:inline-block;
}
/*오시는길*/
.com_location .flex{
	flex-direction:column;
}
.com_location .flex .map{
	min-height:50vw;
	width:100vw;
}
.com_location .flex .info{
	justify-content:center;
	width:100%;
}
.com_location .flex .info .in{
	padding-left: 0;
	padding:15vw 0;
}
.com_location .flex .info h6{
	font-size:3vw;
	font-weight:500;
	text-align:center;
}
.com_location .flex .info h3{
	margin:3vw 0 8vw;
	font-size:10vw;
	text-align:center;
}
.com_location .flex .info .ul > li{
	font-size:3.5vw;
	margin-bottom:4vw;
}
.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:22vw;
}
.com_location .flex .info .ul > li p{
	font-size:3.5vw;
}
.com_location .flex .info .btnbox{
	gap:2vw;
	margin-top:10vw;
	justify-content:center;
}
.com_location .flex .info .btnbox a{
	width: 30vw;
	height:8vw;
	line-height:8vw;
	font-size:3vw;
}
.com_location .flex .info .btnbox a img{
	margin-right:0.5vw;
	max-height:50%;
}
/*footer*/
#footer{
	padding:15vw 0 30vw;
}
#footer .inbox .flex{
	gap:5vw;
	flex-direction:column;
}
#footer .inbox .flex .logobox img{
	max-width:10vw;
}
#footer .inbox .textbox .fmenu{
	margin-bottom:5vw;
	justify-content:center;
}
#footer .inbox .textbox .fmenu li{
	padding-right:1.5vw;
	margin-right:1.5vw;
}
#footer .inbox .textbox .fmenu li a{
	font-size:3vw;
}
#footer .inbox .textbox .fcon{
	gap:2vw;
	max-width:90vw;
	justify-content:center;
}
#footer .inbox .textbox .fcon span{
	font-size:2.5vw;
}
#footer .inbox .textbox .fcon p{
	font-size: 2.5vw;
}
















}





