@charset "UTF-8";

/********** 풋터 **********/
.layout-footer {
	display:block;
	width:100%;
	border-top:1px solid #b2b2b2;
	word-wrap:break-word;
	word-break:keep-all;
	overflow-wrap:anywhere;
	position:relative;
}
	.layout-footer img { max-width:100%; vertical-align:top; }
	
	.layout-footer .footer-frame {
		display:block;
		width:100%;
	}

		/********** 풋터 - 바로가기 버튼 **********/
		.layout-footer .foot-navi {
			display:flex;
			justify-content:center;
			width:100%;
			background-color:#fff;
			border-bottom:1px solid #c6c6c6;
		}
			.layout-footer .foot-navi .foot-navi-item { display:block; }
			
				.layout-footer .foot-navi .foot-navi-link {
					display:block;
					width:100%;
					padding:20px 10px;
					font-weight:600;
					font-size:0.85rem;
					transition:0.3s all ease-in-out;
					color:#000;
					text-decoration:none;
				}
		
		.layout-footer .foot-navi .foot-navi-link:hover,
		.layout-footer .foot-navi .foot-navi-link:focus { text-decoration:none; color:#8a6b35; }

		/********** 풋터 - 사이트 정보 **********/
		.layout-footer .foot-site-info {
			display:block;
			width:100%;
			padding:35px 0;
		}
			.layout-footer .foot-site-info-frame {
				display:block;
				width:100%;
			}
				.layout-footer .site-info-box,
				.layout-footer .copyright {
					display:block;
					width:100%;
					text-align:center;
				}	
				
				.layout-footer .copyright {
					display:block;
					width:100%;
					margin-top:25px;
					font-family:'SEBANG_Gothic_Regular', sans-serif;
					font-size:0.85rem;
					font-weight:400;
					color:rgba(0,0,0,.6);
					line-height:1.4;
				}
				
					.layout-footer .site-info-box .foot-site-info-item {
						display:block;
						width:100%;
						font-family:'SEBANG_Gothic_Regular', sans-serif;
						font-size:1.15rem;
						font-weight:400;
						color:#000;
						letter-spacing:-.6px;
					}
					.layout-footer .site-info-box .foot-site-info-item.adr {
						margin-top:25px;
						line-height:1.4;
					}
										
					.layout-footer .site-info-box .contact-info--frame {
						display:flex;
						justify-content:center;
						flex-wrap:wrap;
						width:100%;
					}
						.layout-footer .site-info-box .contact-info--frame .contact-info-item {
							display:block;
							width:auto;
							font-family:'SEBANG_Gothic_Regular', sans-serif;
							font-size:1rem;
							font-weight:400;
							color:#000;
							line-height:1.4;
						}
						
						.layout-footer .site-info-box .contact-info--frame .contact-info-item:not(:last-of-type) { margin-right:20px; }
					
/*************************************************** 상단으로 바로 가기 아이콘  ***************************************************/
#topMove { 
	display:block;
	width:45px;
	height:45px;
	position:fixed;
	right:18px;
	bottom:18px;
	z-index:101;
}

	#topMove .top-move-link { 
		display:block;
		width:100%;
		background-color:rgba(214,177,111,.7);
		border-radius:5px;
		transition:0.3s all ease-in-out;
	}
	
	#topMove .top-move-link:hover,
	#topMove .top-move-link:focus { background-color:rgba(156,121,99,.7); }

/********** responsive - start **********/

/* Mobile */
@media screen and (min-width:1px) and (max-width:639px) {
	/********** 풋터 - 바로가기 버튼 **********/
	.layout-footer .foot-navi { flex-wrap:wrap; }
	
		.layout-footer .foot-navi .foot-navi-item { width:100%; }
		.layout-footer .foot-navi .foot-navi-item:nth-of-type(n+2) { border-top:1px dashed #ccc; }
		
			.layout-footer .foot-navi .foot-navi-link { text-align:center; }
	
	/********** 풋터 - 사이트 정보 **********/
	.layout-footer .site-info-box .contact-info--frame .contact-info-item {
		width:100%;
		margin-top:12px;
	}
}

/* Mobile & Tablet */
@media screen and (min-width:1px) and (max-width:1216px) {
	/********** 풋터 - 사이트 정보 **********/
	.layout-footer .foot-site-info {
		padding-left:30px;
		padding-right:30px;
	}
	
	/********** 관련기관 배너 **********/
	.container-organization .organization-list--frame { width:100%; }
	.container-organization .slide-controller {
		justify-content:center; 
		width:100%;
		margin-bottom:25px;
	}
	
	.container-organization .data {
		width:100%;
		padding-left:20px;
		padding-right:20px;
	}
}

/* Tablet */
@media screen and (min-width:640px) and (max-width:1216px) {
	
}

/* Tablet & PC */
@media screen and (min-width:640px) {
	/********** 풋터 - 바로가기 버튼 **********/
	.layout-footer .foot-navi .foot-navi-item:not(:last-of-type) { margin-right:20px; }
}

/* PC */
@media screen and (min-width:1217px) {	
	/********** 풋터 - 사이트 정보 **********/
	.layout-footer .site-info-box .contact-info--frame { margin-top:12px; }
	
	/********** 관련기관 배너 **********/
	.container-organization .organization-list--frame {
		width:100%;
		max-width:1520px;
		margin-left:auto;
		margin-right:auto;
	}
	.container-organization .slide-controller {
		justify-content:flex-start; 
		width:auto;
		margin-right:42px;
	}
	.container-organization .data { 
		width:calc(100% - 162px);
		padding-left:42px;
		border-left:1px solid #ccc;
	}
}

/********** responsive - end **********/ 