/*=================================================
		모듈 (폰트,크기,색상,굵기,자간 등)
=================================================*/
html,
body{
	line-height:1.4;
	
	word-wrap: break-word;
	word-break: keep-all;
}

/*****#####===== 폰트크기 =====#####*****/
.txt-1{
	font-size:50px;
}

.txt-2{
	font-size:36px;
}

.txt-3{
	font-size:24px;
}

.txt-4{
	font-size:20px;
}

.txt-5{
	font-size:18px;
}

.txt-6{
	font-size:16px;
}

/*****#####===== 자간 =====#####*****/
.ls-1{
	letter-spacing:0px;
}

.ls-2{
	letter-spacing:-1px;
}

.ls-3{
	letter-spacing:-2px;
}

.lh-27{
	line-height:2.7;
}

/*****#####===== 칼라 =====#####*****/
.blue-color{
	color:#032b4c;
}

.black-color{
	color:#000000;
}

.brown-color{
	color:#5C4136;
}

.brown-l-color{
	color:#B8AA93;
}

.red-color{
	color:#AF100C;
}

.gray-l-color{
	color:#7b7b7b;
}

.pink-color{
	color:#B12973;
}

/*****#####===== 배경 =====#####*****/
.brown-l-bg{
	background-color:#C2B49A;
}

.white-bg{
	background-color:#ffffff;
}

/*****#####===== 선 =====#####*****/
.separator{
	width:50px;
	height:2.5px;
	
	margin:20px 0 30px;
	
	background-color:#062B48;
}

.separator.brown{
	background-color:#AE8978;
}

.separator.brown-l{
	background-color:#C2B499;
}

.separator.pink{
	margin:20px 0 40px;
	background-color:#B12973;
}

/*****#####===== 리스트 =====#####*****/
ul{
	margin:0;
	padding:0;
	list-style:none;
}

/*****#####===== 버튼 =====#####*****/
.brown-btn{
    padding: 8px 30px;
    font-weight:500;
    
    border:1px solid #C2B49A;
    background-color:#ffffff;
    
   	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease-in-out;	 
}

.brown-btn:hover{
	border:1px solid transparent;
	background-color:#C2B49A;
	color:#ffffff;
}

/*****#####===== 간격 =====#####*****/
.pb-07{
	padding-bottom:7px;
}

.mt-07{
	margin-top:70px;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** lg *****/
@media (min-width: 992px) and (max-width: 1199px){ 

}

/***** md *****/
@media (min-width: 768px) and (max-width: 991px){ 
	 
}

/***** sm *****/
@media (min-width: 544px) and (max-width: 767px){

}

/***** xs *****/
@media (max-width: 543px){
	/*****#####===== 폰트크기 =====#####*****/
	.txt-1{
		font-size:25px;
	}
	
	.txt-2{
		font-size:18px;
	}
	
	.txt-3{
		font-size:16px;
	}
	
	.txt-4{
		font-size:15px;
	}
	
	.txt-5{
		font-size:14px;
	}
	
	.txt-6,
	form .form-control{
		font-size:13px;
	}
	
	/*****#####===== 자간 =====#####*****/
	.lh-27{
		line-height:2.2;
	}
	
	/*****#####===== 선 =====#####*****/
	.separator,
	.separator.pink{
		height:2px;
		margin:10px 0 20px;
	}
	
	/*****#####===== 버튼 =====#####*****/
	.brown-btn{
		font-size:13px;
	}
	
	/*****#####===== 간격 =====#####*****/
	.mt-3{
		margin-top:20px !important;
	}
	
	.mt-2{
		margin-top:10px !important;
	}
	
	.mt-07{
		margin-top:35px;
	}
	
	.mb-3{
		margin-bottom:20px !important;
	}
	
	.pt-2{
		padding-top:10px !important;
	}
	
	.pt-3{
		padding-top:20px !important;
	}
	
	.pb-3{
		padding-bottom:20px !important;
	}
	
}

/*=================================================
		네비게이션
=================================================*/
/*****#####===== 일반 =====#####*****/
#main-gnb{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	
	z-index: 1002;
	overflow:hidden;
	
	background-color: #AD8875;
	box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.09);
    
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#main-gnb.float{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
}

/*****#####===== 로고 =====#####*****/
#main-gnb .nav-logo{
    padding: 23px 0 0;	
	
	display: inline-block;
	float: none;
	height: auto;
}

#main-gnb .nav-btn{
	display:none;
}

/*****#####===== 리스트 =====#####*****/
#main-gnb .navbar-nav{
	margin: 0;
}

#main-gnb .navbar-nav > li > a{
	padding: 0 0 20px;
	
	display:inline-block;
}

#main-gnb .navbar-nav > li > a > span{
	padding:7px 20px;
	
	font-size:18px;
	font-weight:500;
	
	color:rgba(255,255,255,0.82);
		
	display: block;
	text-align: center;
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease-in-out;	
}

#main-gnb .navbar-nav > li + li a span{
	border-left:1px solid #BEB095;
}

#main-gnb .navbar-nav > li:hover,
#main-gnb .navbar-nav > li.active{
	background-image:url('/img/nav_hover.png');
	background-position:center bottom;
	background-repeat:no-repeat;
    background-size: 104px;
}

#main-gnb .navbar-nav > li:hover > a > span,
#main-gnb .navbar-nav > li.active > a > span{
	color:rgba(255,255,255,1);
}

/*****#####===== sns =====#####*****/
#main-gnb .sns-wrap{
	margin:20px 26px 5px 0;
}

#main-gnb .sns-wrap > li{
	padding:0 4px;
}

#main-gnb .sns-wrap img{
	height:18px;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** lg *****/
@media (min-width: 992px) and (max-width: 1199px){ 

}

/***** md *****/
@media (min-width: 768px) and (max-width: 991px){ 
	 
}

/***** sm *****/
@media (min-width: 544px) and (max-width: 767px){

}

/***** xs *****/
@media (max-width: 543px){
	/*****#####===== 메인 네비 버튼 =====#####*****/
	#main-gnb .nav-btn{
		position:absolute;
		top:50%;
		right:10px;
		
		padding:4px 10px;
	    
	    background: none;
	    border: 1px solid #ffffff;
	    color: #ffffff;
		
		z-index:1002;
		display:block;
		
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	
	/*****#####===== 메인 네비 =====#####*****/
	#main-gnb{
		overflow:visible;
	}
	
	#main-gnb.active, 
	#main-gnb.inactive{
		top:0;
	}
	
	#main-gnb .row{
		display:block;
	}
		
	#main-gnb #menu-navbar{
		position: fixed;
	    top:51px;
	    left: 0;
	    		
		width:100%;
		background-color:#AD8875;
		
		display:none;
	}
	
	#main-gnb #menu-navbar.active{
	    z-index: 1001;
	}
	
	#main-gnb .navbar-nav > li{
		display:block;
	}

	#main-gnb .navbar-nav > li:hover,
	#main-gnb .navbar-nav > li.active{
		background:none;
	}
	
	#main-gnb .navbar-nav > li > a{
		padding:10px 0;
	}
	
	#main-gnb .navbar-nav > li > a > span{
		padding:0;
		
		font-size:14px;
	}
	
	#main-gnb .navbar-nav > li + li a span{
		border-left:none;
	}
	
	/*****#####===== 로고 =====#####*****/
	#main-gnb .nav-logo{
		padding:10px 0;
	}

	#main-gnb .nav-logo img{
		height:30px;
	}
	
	/*****#####===== sns =====#####*****/
	#main-gnb .sns-wrap{
		position:absolute;
		top: -54px;
	    right: 49px;
	}
}

/*=================================================
		 페이지 공통
=================================================*/
/*****#####===== 페이지 컨텐츠 랩 =====#####*****/
.page-content-wrap{
	padding-top: 78px;
	overflow: hidden;
}

#term_modal .modal-body{
	height:700px;
	overflow-y: scroll;
}

/*****#####===== 검색 =====#####*****/
.srch-wrap{
	margin-top:30px;
}

.srch-wrap > *{
	min-height:42px;
}

.srch-wrap > .brown-btn{
	margin-top:-4px;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** lg *****/
@media (min-width: 992px) and (max-width: 1199px){ 

}

/***** md *****/
@media (min-width: 768px) and (max-width: 991px){ 
	 
}

/***** sm *****/
@media (min-width: 544px) and (max-width: 767px){

}

/***** xs *****/
@media (max-width: 543px){
	.page-content-wrap{
		padding-top:50px;
	}
	
	.srch-wrap{
		margin-top:20px;
	}
	
	.srch-wrap > .brown-btn{
		margin-top:-1px;
		padding:0 16px;
	}	
}

/*=================================================
		 페이지 탑배너
=================================================*/
/*****#####===== 탑 배너 =====#####*****/
.top-banner-wrap{
	position:relative;
		
	width: 100%;
	
	overflow:hidden;
}

.top-banner-wrap .ratio_banner:before{
	padding-top: 16%;
}

/*****##### 이너 #####*****/
.top-banner-wrap .top-banner-inner{
	position:absolute;
	top:50%;
	left:50%;
	
	width:100%;
	
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

/***** 타이틀 *****/
.top-banner-wrap .top-banner-title{
	font-size:50px;
	font-weight:600;
	
	letter-spacing:-3px;
}

/***** 서브타이틀 *****/
.top-banner-wrap .top-banner-subtitle{
	padding:7px 0 0;
	
    font-size:16px;
    font-weight:600;
    
    letter-spacing:11px;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** lg *****/
@media (min-width: 992px) and (max-width: 1199px){ 

}

/***** md *****/
@media (min-width: 768px) and (max-width: 991px){ 
	 
}

/***** sm *****/
@media (min-width: 544px) and (max-width: 767px){

}

/***** xs *****/
@media (max-width: 543px){
	.top-banner-wrap .ratio_banner:before{
		padding-top:50%;
	}
	
	.top-banner-wrap .top-banner-title{
		font-size:35px;
	}
	
	.top-banner-wrap .top-banner-subtitle{
		font-size: 12px;
		letter-spacing: 7px;
	}
}

/*=================================================
		 네비게이션
=================================================*/
/*****#####===== 기본 네비게이션 =====#####*****/
.page-nav-wrap{
	margin:30px 0 60px;
}

.page-nav-wrap li,
.page-nav-wrap li > a,
.page-nav-wrap.nav-tabs li,
.page-nav-wrap.nav-tabs li > a{
	display:inline-block;
}

.page-nav-wrap li,
.page-nav-wrap.nav-tabs li{
	margin:0 -2px;
	border:1px solid #CFCFCF;
}

.page-nav-wrap.n-width-50 li{
	width:50%;
}

.page-nav-wrap.n-width-33 li{
	width:33.33333%;
}

.page-nav-wrap.n-width-25 li{
	width:25%;
}

.page-nav-wrap.n-width-20 li{
	width:20%;
}

.page-nav-wrap li > a,
.page-nav-wrap.nav-tabs li > a{
	width:100%;
	height:100%;
	
	padding: 10px 0 6px;
	
	font-size:20px;
	
	letter-spacing:-2px;
	border:none;
	border-bottom: 5px solid transparent;
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease-in-out;	
}

.page-nav-wrap li:hover > a,
.page-nav-wrap li.active > a,
.page-nav-wrap.nav-tabs .nav-link:hover,
.page-nav-wrap.nav-tabs .nav-link:focus,
.page-nav-wrap.nav-tabs .nav-link.active, 
.page-nav-wrap.nav-tabs .nav-link.active:focus, 
.page-nav-wrap.nav-tabs .nav-link.active:hover{
	border:none;
	border-bottom: 5px solid #AC8875;
	
}

/*****#####===== 페이지 네비게이션 =====#####*****/
.side-nav-wrap{
	overflow:hidden;
}

.side-nav{
	width:200px;
	float:right;
}

/*****##### 타이틀 #####*****/
.side-nav-title{
	padding:17px 20px;
	
	border-bottom:2px solid #B0296E;
}

/*****##### 리스트 #####*****/
.side-nav-list > li{
	padding:5px 0;
}

.side-nav-list > li > a{
	width:100%;
	
	padding:7px 20px;
	display:block;
	color:#000000;
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease-in-out;
}

.side-nav-list > li:hover:not(.sub-menu) > a,
.side-nav-list > li.active:not(.sub-menu) > a{
	background-color:#B12973;
	color:#ffffff;
}

/***** 서브메뉴 *****/
.side-nav-list > li.sub-menu > a{
	color:#999999;
	cursor: pointer;
}

.side-nav-list > li.sub-menu.active > a,
.side-nav-list > li.sub-menu:hover > a{
	color:#000000;
}

/*****#####===== 라운드 탭 버튼 =====#####*****/
.round-tab-wrap .round-tab > li{
	float:none;
	display:inline-block;
}

.round-tab-wrap .round-tab > li > a{
	margin:0 10px;
	padding:10px 23px;
	
	border:3px solid #B12973;
	border-radius:30px;
	color:#B12973;

	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease-in-out;
}

.round-tab li:hover > a,
.round-tab li.active > a,
.round-tab.nav-tabs .nav-link:hover,
.round-tab.nav-tabs .nav-link:focus,
.round-tab.nav-tabs .nav-link.active, 
.round-tab.nav-tabs .nav-link.active:focus, 
.round-tab.nav-tabs .nav-link.active:hover{
	border:3px solid transparent;
	background-color:#B12973;
	color:#ffffff;
}

/*****##### 커뮤니티 네비게이션 #####*****/
#page-publicity-page .page-nav-wrap li,
#page-notice-page .page-nav-wrap li,
#page-congratulate-page .page-nav-wrap li,
#page-thank-page .page-nav-wrap li,
#page-method-page .page-nav-wrap li{
	width:20%;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** lg *****/
@media (min-width: 992px) and (max-width: 1199px){ 

}

/***** md *****/
@media (min-width: 768px) and (max-width: 991px){ 
	 
}

/***** sm *****/
@media (min-width: 544px) and (max-width: 767px){

}

/***** xs *****/
@media (max-width: 543px){
	/*****#####===== 기본 네비게이션 =====#####*****/
	.page-nav-wrap{
		margin:10px 0 30px;
	}
	
	.page-nav-wrap li > a, 
	.page-nav-wrap.nav-tabs li > a{
		font-size:13px;
	}
	
	/*****#####===== 라운드 탭 버튼 =====#####*****/
	.round-tab-wrap{
		margin-bottom:20px;
	}
	
	.round-tab-wrap .round-tab > li{
		width:49%;
	}
	
	.round-tab-wrap .round-tab > li > a{
		margin:0 2px;
		padding:10px 7px;
		
		font-size:12px;
	}
}

/*=================================================
		 페이지 게시물테이블
=================================================*/
/*****#####===== 게시물리스트 테이블 =====#####*****/
.board-list-table > tbody > tr > th,
.board-list-table > tbody > tr > td{
	padding:13px 0;
	
	font-weight:400;
	
	text-align:center;
}

.board-list-table > tbody > tr > th{
	border-bottom:2px solid #C0B49C;
}

.board-list-table th.subject{
	width:60%;
}

.board-list-table td.subject{
	padding-left:30px;
}

.board-list-table td.subject span{
	font-style:normal;
}

.board-list-table > tbody > tr+tr > td{
	border-top:1px solid #cccccc;
}

/*****#####===== 게시물뷰 테이블 =====#####*****/
.section-bg .view-table{
	border-top:2px solid #C2B49A;
}

.section-bg .view-table > tbody > tr > th{
	font-weight:500;
	background-color:#C2B49A;
	color:#ffffff;
}

.section-bg .view-table > tbody > tr > th,
.section-bg .view-table > tbody > tr > td{
	border-bottom:1px solid #ece6d9;
}

/*****#####===== 페이지네이션 =====#####*****/
.pagination-wrap{
	margin-top: 20px;
}

.pagination-wrap .page-item .page-link{
    padding: 7px 15px;
    color:#000000;
}

.pagination-wrap .page-item:focus .page-link,
.pagination-wrap .page-item:hover .page-link,
.pagination-wrap .page-item.active .page-link,
.pagination-wrap .page-item.active .page-link:focus,
.pagination-wrap .page-item.active .page-link:hover{
    background-color: #C2B49A;
    border-color: #C2B49A;
    color:#ffffff;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** lg *****/
@media (min-width: 992px) and (max-width: 1199px){ 

}

/***** md *****/
@media (min-width: 768px) and (max-width: 991px){ 
	 
}

/***** sm *****/
@media (min-width: 544px) and (max-width: 767px){

}

/***** xs *****/
@media (max-width: 543px){
	/*****#####===== 게시물리스트 테이블 =====#####*****/
	.board-list-table th.subject{
		width:80%;
	}
	
	/*****#####===== 게시물뷰 =====#####*****/
	.view-page.section-bg{
		padding:20px 0 50px;
	}
	
	.section-bg .view-table > tbody > tr > th{
		width:15%;
	}
	
	/*****#####===== 게시물 쓰기 =====#####*****/
	.write-page.section-bg{
		padding:20px 0 50px;
	}
	
	/*****#####===== 페이지네이션 =====#####*****/
	.pagination-wrap .page-item .page-link{
		padding:9px 15px;
		font-size:12px;
	}
}

/*=================================================
		상세 페이지 공통
=================================================*/
/*****#####===== 탑 타이틀 랩 =====#####*****/
.top-title-wrap{
	padding:80px 50px;
}

.top-title-wrap p{
	margin:0;
}

/*****#####===== 컨텐츠 랩 =====#####*****/
.content-wrap{
	padding:0 330px 70px 50px;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** lg *****/
@media (min-width: 992px) and (max-width: 1199px){ 

}

/***** md *****/
@media (min-width: 768px) and (max-width: 991px){ 
	 
}

/***** sm *****/
@media (min-width: 544px) and (max-width: 767px){

}

/***** xs *****/
@media (max-width: 543px){
	/*****#####===== 탑 타이틀 랩 =====#####*****/
	.top-title-wrap{
		padding:40px 20px;
	}
	
	/*****#####===== 컨텐츠 랩 =====#####*****/
	.content-wrap{
		padding:20px 20px 50px;
	}
}

/*=================================================
		상세 페이지 모듈
=================================================*/
/*****#####===== 베이스 콜 랩 =====#####*****/
.base-col-wrap .item-title{
	padding:0 0 7px;
}

/*****#####===== 보더 박스 랩 =====#####*****/
.border-box-wrap .border-box{
	padding:20px;
}

.border-box-wrap .border-box li{
	padding:5px 0;
}

/*****#####===== 아이템 보더 랩 =====#####*****/
.item-border-wrap .item-wrap{
	margin:0 0 30px;
}

.item-border-wrap .item-wrap+.item-wrap{
	padding-top:35px;
	border-top:1px solid #cccccc;
}

/*****#####===== 컨텐츠 테이블 =====#####*****/
.content-table{
	border-top:2px solid #AD8875;
	border-bottom:1px solid #AD8875;
}

.content-table tbody > tr > th,
.content-table tbody > tr > td{
	padding:10px 0;
	font-weight:500;
	
	text-align:center;
}

.content-table tbody > tr > th{
	border-right:1px solid #ededed;
}

.content-table tbody > tr + tr > th,
.content-table tbody > tr + tr > td{
	border-top:1px solid #ededed;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** lg *****/
@media (min-width: 992px) and (max-width: 1199px){ 

}

/***** md *****/
@media (min-width: 768px) and (max-width: 991px){ 
	 
}

/***** sm *****/
@media (min-width: 544px) and (max-width: 767px){

}

/***** xs *****/
@media (max-width: 543px){
	/*****#####===== 아이템 보더 랩 =====#####*****/
	.item-border-wrap .item-wrap{
		margin:0 0 20px;
	}
	
	.item-border-wrap .item-wrap+.item-wrap{
		padding-top:25px;
	}
	
	/*****#####===== 컨텐츠 테이블 =====#####*****/
	.content-table tbody > tr > th, 
	.content-table tbody > tr > td{
		padding:10px;
	}
	
	/*****#####===== 보더 박스 랩 =====#####*****/
	.border-box-wrap .border-box{
		padding:15px;
	}
}




