@charset "UTF-8";


/*	reset  */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 15px;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #000;
}

.clearfix::after, .clearfix::before {
	display: block;
	content: "";
	clear: both;
}

.ir_so {
	display: none;
	line-height: 0;
}

em, address, span {
	font-style: normal;
}

img {
	display: block;
}

body {
	overflow-x: hidden;
}

.none {
	display: none;
}


#wrap {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.container {
	width: 1260px;
	margin: 0 auto;
	padding: 0 10px;
}

#sub_menu {
	position: fixed;
	right: 80px;
	bottom: 50px;
	z-index: 100000;
}

#sub_menu .sub {
	
}

#sub_menu .sub .menu {
	width: 70px;
	height: 150px;
	background-color: #ff2764;
	border-radius: 33px;
	text-align: center;
	margin-bottom: 22px;
	box-shadow: 0 0 10px rgba(0,0,0,.5);
}

#sub_menu .sub .menu a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 70px;
	height: 70px;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	font-family: 'Noto Sans KR', sans-serif;
}

#sub_menu .sub .menu a:hover {
	opacity: 0.68;
}

#sub_menu .sub .menu a:first-child {
	margin-bottom: 5px;
	padding-top: 10px;
}

#sub_menu .sub .menu a:last-child {
	padding-bottom: 10px;
}

#sub_menu .sub .menu a img {
	display: block;
	margin-bottom: 7px;
}

#sub_menu .sub a#MOVE_TOP_BTN {
	display: flex;
	text-align: center;
	justify-content: center;
}

#sub_menu .sub a#MOVE_TOP_BTN img {
	display: block;
	cursor: pointer;
}



/* 헤더 영역 레이아웃 */

#header {
	width: 100%;
	height: 90px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	transition: all .25s ease-in-out;
}

#header.on {
	background-color: rgb(0,0,0);
	width: 100%;
	height: 110px;
}

#header .logo {
	float: left;
	width: 135px;
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-left: 80px;
}

#header.on .logo {
	height: 90px;
}

#header .nav {
	float: right;
	margin-right: 80px;
}

#header .nav ul {
	overflow: hidden;
}

#header .nav ul li {
	float: left;
	width: 135px;
	height: 90px;
	margin-right: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	padding-bottom: 15px;
}

#header.on .nav ul li {
	height: 90px;
}

#header .nav ul li:last-child {
	margin-right: 0;
}

#header .nav ul li.portfolio {
	padding-bottom: 0;
}

#header .nav ul li.portfolio a {
	display: block;
	padding: 15px 18px;
	border-radius: 6.5px;
	background-color: #ff2764;
	text-align: center;
	width: 100%;
}

#header .nav ul li.portfolio a:hover {
	color: lightyellow;
}

#header .nav ul li a {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #fff;
	position: relative;
}

#header .nav ul li a:hover {
	opacity: 0.85;
}

#header .nav ul li a.active::after{
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #ff2764;
	position: absolute;
	top: 11px;
	right: -10px;
}




/* 배너 영역 레이아웃 */

#banner {
	width: 100%;
	height: 500px;
	background: url(../images/sub/sub_mainbanner.jpg) no-repeat center center;
	background-size: cover;
}

#banner .container {
	
}

#banner .container em.title {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 72px;
	font-weight: 600;
	color: #fff;
	margin-top: 360px;
}

#banner .container em.title span.dot {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 72px;
	font-weight: 600;
	color: #ff2764;
}



/* 콘텐츠 영역 레이아웃 */

#contents {

}

#contents .container {

}

#contents .container .boxes {
	margin: 150px 0;
	width: 100%;
	overflow: hidden;
}

#contents .container .boxes>div {
	float: left;
	width: 32%;
	margin-right: 2%;
	background-color: #fff;
	text-align: center;
	border: 1px solid rgba(1,1,1,.05);
	opacity: .7;
	transform: scale(.975);
	transition: all .25s ease-in-out;
}

#contents .container .boxes>div:hover {
	background-color: rgba(1,1,1,.01);
	opacity: 1;
	transform: scale(1);
	box-shadow: none;
}

#contents .container .boxes>div:hover a>h3.title, #contents .container .boxes>div:hover a>span.kind {
	color: #000;
}

#contents .container .boxes>div:first-child {
	margin-bottom: 2%;
}

#contents .container .boxes>div:nth-child(2), #contents .container .boxes>div:nth-child(3) {
	margin-bottom: 2%;
}

#contents .container .boxes>div:nth-child(3n) {
	margin-right: 0;
}

#contents .container .boxes>div:nth-child(7), #contents .container .boxes>div:nth-child(8), #contents .container .boxes>div:nth-child(9) {
	margin-top: 2%;
}

#contents .container .boxes>div:nth-child(1)>a>img, #contents .container .boxes>div:nth-child(2)>a>img, #contents .container .boxes>div:nth-child(3)>a>img {
	border-top: 1px solid rgba(1,1,1,.05);
	border-bottom: 1px solid rgba(1,1,1,.05);
}

#contents .container .boxes>div>a>span.date {
	display: block;
	margin: 30px 0 40px;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #b5b5b5;
	position: relative;
}

#contents .container .boxes>div>a>span.date::after {
	content: "";
	width: 40px;
	height: 1px;
	background-color: #b5b5b5;
	position: absolute;
	top: 32px;
	left: 50%;
	transform: translateX(-50%);
}

#contents .container .boxes>div>a>img {
	display: block;
	width: 100%;
}

#contents .container .boxes>div>a>h3.title {
	display: block;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 22px;
	font-weight: 700;
	margin: 30px 0 10px;
	color: #474747;
}

#contents .container .boxes>div>a>span.kind {
	font-family: 'Noto Sans KR', sans-serif;
	display: block;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 30px;
	color: #898989;
}





/* 푸터 영역 레이아웃 */

#footer_end {
	width: 100%;
	height: 175px;
	background-color: #333;
}

#footer_end .container {
	width: 1260px;
	margin: 0 auto;
	padding: 42px 10px;
}

#footer_end .foot1 {
	float: left;
	width: 70%;
}

#footer_end .foot1 a {
	display: inline-block;
	margin-right: 50px;
	color: #ccc;
	font-weight: 700;
	font-size: 14px;
	font-family: 'Noto Sans KR', sans-serif;
}

#footer_end .foot1 a:last-child {
	margin-right: 0;
}

#footer_end .foot2 {
	float: left;
	width: 70%;
	margin-top: 24px;
}

#footer_end .foot2 ul {
	overflow: hidden;
}

#footer_end .foot2 ul li {
	float: left;
	display: inline-block;
	font-weight: 400;
	color: #888;
	margin-right: 28px;
	font-family: 'Noto Sans KR', sans-serif;
	position: relative;
	font-size: 14px;
	line-height: 1.8;
}

#footer_end .foot2 ul li::after {}

#footer_end .foot3 {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 94px;
	width: 30%;
}

#footer_end .foot3 img {
	display: block;
	opacity: 0.5;
}










/* -----------------------------------------------미디어쿼리 */


@media (max-width:1910px){
	
	#footer_end .foot1, #footer_end .foot2 {
		width: 100%;
	}
	
	#footer_end .foot3 {
		display: none;
	}
	
}


@media (max-width:1680px){
	
	#footer_end .container {
		padding: 40px 200px;
		width: 100%;
	}
	
}



@media (max-width:1600px){
	
	#sub_menu {
		display: none;
	}

}



@media (max-width:1560px){
	

	
}



@media (max-width:1500px){
	

	
}


@media (max-width:1440px){
	
	
	
}



@media (max-width:1400px){
	

}



@media (max-width:1280px){
	
	.container {
		width: 100%;
		padding: 0 40px;
	}
	
	#footer_end {
		height: 100px;
	}
	
	#footer_end .foot1 {
		width: 100%;
		text-align: center;
	}
	
	#footer_end .foot2 {
		display: none;
	}
	
}



@media (max-width:1180px){
	
	#header .logo {
		margin-left: 40px;
	}
	
	#header .nav {
		margin-right: 40px;
	}
	
	#header .nav ul li {
		width: 100px;
	}
	
	#header .nav ul li:last-child {
		width: 135px;
	}
	
}



@media (max-width:960px){
	
	#header .nav>ul>li:first-child {
		display: none;
	}
	
	#header .nav>ul>li:nth-child(2), #header .nav>ul>li:nth-child(3), #header .nav>ul>li:nth-child(4) {
		display: none;
	}
	
	#header .nav>ul>li>a:last-child {
		display: block;
		padding: 10px 18px;
	}
	
	#header .nav>ul>li>a:last-child:hover {
		background-color: #891939;
	}
	
}



@media (max-width:880px){
	
	#banner .container em.title {
		font-size: 54px;
	}
	
	#contents .container .boxes>div {
		width: 49%;
	}
	
	#contents .container .boxes>div:nth-child(2n) {
		margin-right: 0;
	}
	
	#contents .container .boxes>div:nth-child(3) {
		margin-right: 2%;
	}
	
	#contents .container .boxes>div>a>span.kind {
		font-size: 14px;
	}
	
	#footer_end .container {
		padding: 40px 20px;
	}
	
}





@media (max-width:560px){
	
	#banner .container em.title {
		width: 100%;
		text-align: center;
	}
	
	#contents .container .boxes>div {
		width: 100%;
		margin-right: 0;
		margin-bottom: 2%;
	}
	
	#footer_end .foot1 a:nth-child(2) {
		margin-right: 0;
	}
	
	#footer_end .foot1 a:last-child {
		display: none;
	}
	
}




@media (max-width:440px){
	
	#header.on {
	background-color: rgb(0,0,0);
	width: 100%;
	height: 100px;
	}

	#header.on .logo {
		height: 70px;
	}
	
	#header.on .nav ul li:last-child {
		height: 70px;
	}
	
}



@media (max-width:375px){
	
	#header h1.logo {
		height: 70px;
	}
	
	#header .logo a img {
		width: 80%;
	}
	
	#header .nav {
		height: 70px;
	}
	
	#header .nav ul li {
		height: 70px;
	}
	
	#header .nav ul li:last-child a {
		height: 29px;
		padding: 5px 10px;
		width: 120px;
		margin-left: 10px;
	}
	
}