/* style css */
body, html {
	overflow-x:hidden;
	min-width:1440px
}

::selection {
   background: #ad8b67;
   color: #fff
}

::-moz-selection {
   background: #ad8b67;
   color: #fff
}


::-webkit-selection {
    background: #ad8b67;
   color: #fff
}


.flex {
	display: -webkit-flex;
	display: flex
}

.flex-v {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center; 
	align-items: center
}

body, html {
	
}

body {
	-webkit-font-smoothing: antialiased
	color:#333;
}

.row {
	padding: 0 20px;
	margin: auto
}

/* 헤더 */
.header {
	position:fixed;
	top: 0;
	left: 0;
	right: 0;
	text-align:center;
	z-index: 9999;
	transition:all 300ms ease-in-out;
	height: 100px;
	background-color:#fff;
	border-bottom: 1px solid rgb(177 177 177 / 25%);
	min-width:1440px
}

.header.sub { 
	background-color:#fff;
}

.header .row {
	max-width:1760px;
	height:100px;
	line-height:100px;
}



@media(max-width:1800px) {
	.header .row {
		max-width:1300px;
	}
}

.header .logo {
	margin-top:5px;
	width:130px;
	height:80px;
	/*background-image:url('../image/logo_img222.png');*/
	background-image:url('/css/../image/old-logo_img.png');
	display:block;
}


.header .tel {
	margin-top: 28px;
}

.header .ing {
	margin-top: 26px;
	margin-left:28px;
}

.header .logo img {
	
}

.header .nav {
	min-width:750px;
	position:absolute;
	top: 0;
	left: 50%;
	transform:translate(-50%, 0);
}

.header .nav li {
	float:left;
	text-align:center;
	width: 125px;
}

.header .nav li a {
	display:inline-block;
	height: 100px;
	line-height:100px;
	font-size:18px;
	font-weight:bold;
	color:#383838;
}

.header .nav li a:hover,
.header .nav li.on a {
	color:#cfa578
}
 
.header .drop-menu {
	display:none; 
	position:absolute;
	background-color:rgba(0,0,0,.7);
	width: 100%;
	top: 100px;
	left: 0;
	padding: 30px 0;
	height: 300px;
}

.header .drop-menu .drop {
	position:absolute;
	z-index: 998;
	left: 50%;
	transform:translate(-50%, 0);
	font-size:15px;
	min-width:750px;
	/* min-width:750px; */
}

.header .drop-menu .drop > li {
	float:left;
	width: 125px;
	text-align:center;
}

.header .drop-menu .drop > li a {
	color:#fff;
	
}

.header .drop-menu .drop > li a:hover {
	color:#cfa578;
}

.header .drop-menu .sub-menu > li {
	margin-bottom: 10px;
	letter-spacing:-1px
}

.fixed-btn {
	position:absolute;
	right: 0;
	top: 50%;
	margin-top: -300px;
	z-index: 101;
	width: 70px;
	display:block;
	transition:all 300ms;
}

.fixed-btn li a {
	display:block;
	width: 100%;
	height: 300px;
}

.fixed-btn .first {
	background-color:#002a3a;
	background-image:url('../img_n/fixed01_off.png');
	background-position:center;
	border-top-left-radius:50px;
}

.fixed-btn .second {
	background-color:#ad8c67;
	background-image:url('../img_n/fixed02_off2.png');
	background-position:center;
	border-bottom-left-radius:50px;
}

.fixed-btn:hover {
	width: 120px;
}

.fixed-btn:hover .first {
	background-image:url('../img_n/fixed01_on.png');
}

.fixed-btn:hover .second {
	background-image:url('../img_n/fixed02_on2.png');
}


.footer {
	position:relative;
	padding: 60px 0;
	text-align:left;
	background:#272727;
}

.footer .row {
	max-width:1560px;
}

.term-btn {
	position:absolute;
	bottom: 0;
	right: 0;
	font-size:14px;
}

.term-btn a {
	color:#AD8B67;
}

.video-container {
	position: relative;
	padding-bottom: 53.5%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}



@media(min-width:992px) {
	.pc {
		display:block !important
	}

	.mobile {
		display:none !important
	}
}

@media(max-width:991px) {

	.pc {
		display:none !important
	}

	.mobile {
		display:block !important
	}

	

}

@media(max-width:575px) {

	


}

/* 202430926 */
body {visibility: unset !important; opacity: unset !important;}



/*애니메이션*/
/* 초기 상태 설정 */
.sl-right {
    opacity: 0;
    transform: translateX(150px); /* 오른쪽에서 슬라이딩되도록 위치 설정 */
    transition: opacity 2.0s ease-out, transform 1.0s ease-out;
}

/* 등장 애니메이션 */
.sl-right.show {
    opacity: 1;
    transform: translateX(0); /* 원래 위치로 이동 */
}
.sl-left {
    opacity: 0;
    transform: translateX(-150px); /* 오른쪽에서 슬라이딩되도록 위치 설정 */
    transition: opacity 2.0s ease-out, transform 1.0s ease-out;
}

/* 등장 애니메이션 */
.sl-left.show {
    opacity: 1;
    transform: translateX(0); /* 원래 위치로 이동 */
}
/* 아래에서 등장하는 sl-up */
.sl-up {
    opacity: 0;
    transform: translateY(100px); /* 아래쪽에서 시작 */
    transition: opacity 2.0s ease-out, transform 1.0s ease-out;
}

.sl-up.show {
    opacity: 1;
    transform: translateY(0); /* 원래 위치로 이동 */
}
