/*===============================================
*  COMMON
===============================================*/
/* HEADER */
#header {
	background-color:transparent;
	border-bottom: 1px solid transparent;
}
.header_body{
	background-color:transparent;
	border-bottom:2px solid transparent;
}
#gnb > ul > li > a {
	color:#fff;
	font-size:17px;
}
#header.active, #header.fixed {
	background-color:#f3f2ea;
	border-bottom: 1px solid #ddd;
}
#header.active .header_body, #header.fixed .header_body {
	background-color:#fff;
	border-bottom:2px solid #171717;
	width:100%;
}
#header.active #gnb > ul > li > a, #header.fixed #gnb > ul > li > a {
	color:#555;
}


/* AREA */
.wp {

	padding:0;
}
.wp:after {
	content:"";
	display:block;
	clear:both;
}
@media(min-width:1651px) {
	.wp {
		width:1180px;
		max-width:1180px;
		margin:0 auto;
	}
}


 /*===================================
= BUTTON
=====================================*/
.btnWp {
	margin-top:30px;
	text-align:center;
}
.btn01 {
	border:1px solid;
	padding:15px 80px;
	background:#5c5c5c;
	color:#fff;
	font-size:15px;
	font-weight:400;
	border-radius:0;
	transition: all 0.2s ease;
}
.btn01.btn02 {
	background:#fff;
	border-color:#5c5c5c;
	color:#5c5c5c;
	margin-left:10px;
}

.btn01.btn02.btn03 {
	background-color:#f5f5f5
} 

/*===============================================
* SUB TOP
===============================================*/
.subTop { 
	width:100%;
	height:320px;
	background-size:cover;
	background-position:50% 0%;
	background-repeat:no-repeat;
	position:relative;
	margin-bottom:80px;
	overflow:hidden;
}
.subTop:before {
	content:"";
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background:rgba(40,40,40,.8);
}
.subTop .topTitle {
	position:absolute;
	left:50%;
	top:50%;
	-ms-transform:translate(-50%, -30%);
	-webkit-transform:translate(-50%, -30%);
	transform:translate(-50%, -30%);
	overflow:hidden;
	height:80px;
	text-align:center;
}
.topTitle p {
	font-family: 'Barlow Condensed', sans-serif;
	color:rgba(255,255,255,.7);
	letter-spacing:0.5rem;
	font-weight:500;
	font-size:13px;
	animation: sub_top linear 0.5s forwards ;
	opacity:0;
}
.topTitle h1 {
	margin-top:10px;
	font-size:45px;
	font-weight:400;
	color:#fff;
	-webkit-text-shadow:0 2px 3px rgba(97,97,97,0.6);
	text-shadow:0 2px 3px rgba(97,97,97,0.6);
	animation: sub_top linear 0.5s forwards ;
	animation-delay: 0.5s;
	opacity:0;
}
@-webkit-keyframes sub_top { 
	0% { -webkit-transform: translateY(50px); opacity:0; }
  100% { -webkit-transform: translateY(0); opacity:1; } 
 }
 @keyframes sub_top { 
	0% { -webkit-transform: translateY(50px); opacity:0; }
  100% { -webkit-transform: translateY(0); opacity:1; } 
 }
/* 반응형 */
@media (max-width:767px) {
	.subTop { height:250px; margin-bottom:50px; }
	.topTitle h1 { font-size:30px; margin-top:0; }
}


/*===============================================
* SUB TOP NAV
===============================================*/
.topNav { 
	height:0;
	position:absolute;
	left:0;
	right:0;
	top:257px;
}
.topNav ul {
}
.topNav ul:after {
	content:"";
	display:block;
	clear:both;
}
.topNav ul li {
	float:left;
	text-align:center;
	padding:0 1px;
}
.topNav ul li a {
	display:inline-block;
	width:100%;
	padding:20px 0;
	background:rgba(191,179,130,.7);
	color:#fff;
	font-size:17px;
	font-weight:400;
	letter-spacing:.1rem;
}
.topNav ul li a:hover {
	background:rgba(191,179,130,1);
}
.topNav ul li a.active {
	background:#fff;
	color:#222;
}
/* SUB TOP NAV */
#inquiry .topNav ul li {
	width:33.333%;
}
#community .topNav ul li {
	width:33.333%;
}
#about .topNav ul li {
	/* width:25%; 수정전 원래 상태 2018-10-02 */
	width:25% /* 수정 후 2018-10-02 */
}
#inquiry .topNav.classNav ul li {
	width:20%;
}
/* 반응형 */
@media (max-width:767px) {
	.topNav { top:211px; }
	.topNav ul li a { font-size:11px; padding:12px 0; }
}

/*===============================================
* MAIN TITLE
===============================================*/
/* 01 */
.mainTitle h2 {
	position:relative;
	font-family:'NanumSquare', sans-serif;
	font-size:38px;
	color:#222;
	font-weight:700;
	line-height:1;
	letter-spacing:-0.3rem;
	text-align:left;
}
.mainTitle h2:before {
	content:"";
	position:absolute;
	top:2px;
	width:7px;
	height:35px;
	background:#c3af6c;
	right:calc(100% + 7px);
}

/* 02 */
.mainTitle02 h2 {
	margin-bottom:20px;
	position:relative;
	font-family:  'NanumSquare', sans-serif;
	text-align:center;
	font-size:32px;
	color:#444;
	font-weight:700;
	line-height:1;
	letter-spacing:-0.3rem;
}
.mainTitle02 h2:before {
	content:"";
	position:absolute;
	width:30px;
	height:3px;
	background:#c3af6c;
	border-radius:50px;
	bottom:-20px;
	left:50%;
	transform:translateX(-50%);
}


@media (max-width:762px) {
	.mainTitle h2 { font-size:26px; }
	.mainTitle h2:before { width:10px; height:22px; right:calc(100% + 5px); }
	.mainTitle02 h2 { font-size:24px; }
	.btn01 { width:200px; display:block; margin-left:auto; margin-right:auto; padding:12px 0; text-align:center; }
	.btn01.btn02 {margin-left:0; margin-top:10px; margin-left:auto; margin-right:auto;}
	.btn01.btn02.btn03 { margin-left:auto;  margin-right:auto;}
}
