
   .inner:not(.apply .inner) {
        width: 1200px;
        margin: 0 auto;
    }
/*서브메뉴 공통*/

/*2단메뉴 수료생인터뷰,포트폴리오,갤러리*/
.gnbWrap {
	/*display: none;*/
	position: fixed;
	top: 80px;
	background: #fff;
	width: 100%;
	z-index: 110;
	border-bottom: 1px solid #e0e0e0;
	
	.gnbDepth {
		width: 100%;
		display: flex;
		gap: 30px;
		
		li {
			font-size: 20px;
			cursor: pointer;
			color: #999;
			line-height: 64px;
		}
		
		.selected {
			font-weight: 600;
			color: #222;
			border-bottom: 2px solid #333;
		}
	}
}

/*2단메뉴 수료생인터뷰,포트폴리오,갤러리*/   

/*팝업창 */
/*
.supermodal-title{background-color:#00ABFF !important;}
.supermodal-container .supermodal-title .supermodal-close{color:#fff !important;}
.supermodal-container .supermodal-title .supermodal-close:hover {background-color: #222 !important;}
.supermodal-container .supermodal-body {overflow-x:hidden;}
*/
/*팝업창 */


.topBtn, .mainBtn {
    border: none;
    width: 60px;
    height: 60px;
    background-color: rgba(92, 100, 114, 0.5);
    background-image: url(/home/images/main/top_btn.png?ver=3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 50;
    position: fixed;

    /*
    right: 80px;
    bottom: 80px;
    */
    left: 90vw;
    bottom: 9vh;
}

.mainBtn {
    
    /*bottom: 20vh;*/
    bottom:150px;
    background-image: url(/home/images/main/main_btn.png?ver=3);
}


/* 비어있을 때 */
/* 데이터 없음 상태 */
.is-empty {
  width:100%;
  min-height: 200px;
  margin-top:80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  background: #fafafa;
  border: 1px solid #e6e6e6;
  border-radius: 8px;

  color: #555;
  text-align: center;
  padding: 20px;
}

/* 아이콘 */
.is-empty .empty-icon {
  font-size: 42px;
  margin-bottom: 8px;
  opacity: 0.55;
}

/* 제목 */
.is-empty .empty-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* 서브텍스트 */
.is-empty {
  font-size: 13px;
  color: #888;
}


/* 상세보기  리스트 버튼 */
.portfolio-actions {
	padding: 40px 0 100px;
	/*padding: 80px 0 100px;*/
	text-align: center;
	.portfolio-actions-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 120px;
		height: 44px;
		padding: 0 20px;
		border-radius: 6px;
		background: #d9d9d9;
		color: #222;
		font-size: 16px;
		font-weight: 600;
		transition: background-color 0.2s ease;
		
		&:hover {
			background: #cfcfcf;
		}
	}
}

/* 리스트 상단 셀렉트 박스 START */
button.filter-select {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 126px;
	height: 46px;
	box-sizing: border-box;
	background-color: #3F80EA;
	border-radius: 10px;
	cursor: pointer;
	
	.filter-select-label {
		color: #fff;
		font-size: 18px;
		font-weight: 500;
	}
	
	.filter-select-icon {
		display: block;
		width: 22px;
		height: 22px;
		margin-left: 12px;
		background-image: url("/home/images/angle-down.svg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 16px auto;
	}
}

div.filter-select-dropdown {
	position: absolute;
	top: 120%;
	left: 0;
	z-index: 100;
	width: 100%;
	
	ul.filter-select-list {
        display:none;
		background: #fff;
		border-radius: 6px;
		border: 1px solid #CBDFFF;
		z-index: 2;
		margin: 0;
		box-sizing: border-box;
		text-align: left;
		padding: 10px 5px;
		box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, .2);
		
		li {
			border-radius: 6px;
			padding: 8px 10px 6px 10px;
			box-sizing: border-box;
			color: #3F80EA;
			cursor: pointer;
			
			&:hover {
				color: #fff;
				background-color: #3F80EA;
			}
		}
	}
}

div.filter-select-dropdown ul.filter-select-list.active{display:block;}

/* 리스트 상단 셀렉트 박스 END */

/* 리스트 하단 더보기 버튼 */
.list-cta {
	text-align: center;
	margin-top: 60px;
	
	.list-cta-button {
		font-size: 18px;
		font-weight: 500;
		padding: 10px 20px;
		width: 200px;
		height: 60px;
		border: 1px solid #3F80EA;
		color: #3F80EA;
		background-color: white;
		border-radius: 10px;
		outline: none;
		cursor: pointer;
		
		&:hover {
			background-color: #3F80EA;
			color: #fff;
		}
	}
}

/* 하단 컨텍트 로고 모름 */
.contact {
	padding: 30px 0;
	
	.cont_logo {
		text-align: center;
	}
}

/* FOOTER 제발 따로 html 문서에 넣지 마세요 공통 css는 여기다 넣어주세요 제발요 */
footer .inner {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
}

footer {
	position: relative;
	width: 100%;
	background: #222;
	/*padding: 200px 0;*/
}

footer {
	line-height: 1;
}

footer .top_con {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
	/*padding: 40px 0 30px;*/
	border-bottom: 1px solid #ffffff10;
	/*border-bottom: 1px solid rgba(255,255,255,0.3);*/
}

footer .top_con .area1 {
}

footer .top_con .area1 ul {
}

footer .top_con .area1 ul li {
	display: flex;
	align-items: center;
}

footer .top_con .area1 ul li a {
	font-weight: 300;
	font-size: 15px;
	color: rgba(255, 255, 249, 0.6);
}

footer .top_con .area1 ul li a.w {
	color: #fff;
}

footer .top_con .area1 ul li i {
	display: inline-block;
	margin: 0 20px;
	width: 1px;
	height: 14px;
	background: #ffffff10;
}

footer .top_con .area1 ul li p {
	font-weight: 300;
	font-size: 14px;
	color: rgba(255, 255, 249, 0.6);
}

footer .top_con .area1 ul li p span {
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	margin-left: 5px;
}

footer .top_con .area2 {
	display: flex;
}

footer .top_con .area2 .snsList {
	display: flex;
}

footer .top_con .area2 .snsList li {
	min-width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;
	margin-right: 10px;
}


footer .top_con .area2 .snsList li a {
	display: block;
	width: 100%;
	height: 100%;
}


footer
.top_con
.area2
.familySite
.selectBox
ul.scrollBox::-webkit-scrollbar-thumb {
	height: 45%;
	border-radius: 20px;
	border: 0.7rem solid transparent;
	background-color: #d0d0d0;
	background-clip: content-box;
}

footer
.top_con
.area2
.familySite
.selectBox
ul.scrollBox::-webkit-scrollbar-track {
	width: 1rem;
	background-color: transparent;
	position: absolute;
	top: -50rem;
	right: -3rem;
}
footer .top_con .area2 .familySite .selectBox ul li {}
footer .top_con .area2 .familySite .selectBox ul li:nth-child(n + 1) {
	margin-top: 16px;
}
footer .top_con .area2 .familySite .selectBox ul li a {
	color: #444444;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

footer .btm_con {
	padding: 40px 0 70px;
}

footer .btm_con p {
	font-size: 14px;
	color: #fff;
	font-weight: 300;
}

footer .btm_con p span {
	font-weight: 200;
	color: rgba(255, 255, 249, 0.6);
}

footer .btm_con .companyName {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

footer .btm_con .info {
	margin-top: 20px;
}

footer .btm_con .info li {
	display: flex;
	flex-wrap: wrap;
}

footer .btm_con .info li:nth-child(2) {
	margin-top: 20px;
}

footer .btm_con .info li p {
	margin-right: 20px;
}

footer .btm_con .info li p span {
	margin-left: 8px;
}

footer .btm_con .copyright {
	margin-top: 20px;
}

footer .btm_con .copyright p {
	font-weight: 200;
	color: rgba(255, 255, 249, 0.6);
}