@media screen and (min-width:1024px){
	header {
		width:100%;
		height:80px;
		display:block;
		box-sizing:border-box;
		background-color:#c5003e;
		box-shadow:1px 0px 10px 0px rgba(0,0,0,0.5);
		z-index:+1000;
		position:fixed;
		top:0px;
		left:0px;
	}

	/* 헤더 */
	header .innerWrap {
		width:100%;
		max-width:1100px;
		margin:0 auto;
		box-sizing:border-box;
		text-align:right;
	}
	header .innerWrap a {
		display:inline-block;
		margin-top:40px;
		color:#fff;
		margin-left:20px;
		margin-right:20px;
		font-weight:100;
	}
	.dummyHeader {
		width:100%;
		height:80px;
	}
	.logo {
		height:50px;
		position:absolute;
		top:15px;
		left:0px;
	}

	/* INDEX */
	.indexDiv {
		width:100%;
		height:calc(100% - 160px);
		background-image:url('../img/global/index2.jpg');
		background-size:cover;
		background-position:center;
		position:relative;
	}
	.indexDiv .box {
		width:500px;
		height:300px;
		position:absolute;
		top:50%;
		right:10%;
		margin-top:-150px;
		border:3px solid #fff;
		background-color:rgba(0,0,0,0.5);
		color:#fff;
		box-sizing:border-box;
		padding:50px;
		text-align:center;
	}
	.indexDiv .box h1 {
		font-size:40px;
		margin-bottom:20px;
	}
	.indexDiv .box h2 {
		font-size:30px;
		margin-bottom:20px;
		font-weight:100;
	}

	/* footer */
	footer h1 {
		display:block;
		position:absolute;
		top:20px;
		left:20px;
		font-size:16px;
		color:#fff;
		font-weight:300;
	}
	footer h2 {
		display:block;
		position:absolute;
		top:20px;
		right:20px;
		font-size:16px;
		color:#fff;
		font-weight:300;
		text-align:right;
	}

	/* 내용 */
	.contents {
		width:100%;
		max-width:1100px;
		margin:0 auto;
		margin-bottom:50px;
	}
	.contents .title {
		width:100%;
		border-bottom:1px solid #dfdfdf;
		font-size:25px;
		font-weight:400;
		margin-top:30px;
		padding-bottom:10px;
		margin-bottom:10px;
	}
	.bottomImgWrap {
		width:100%;
		height:auto;
	}
	.bottomImg {
		float:left;
		width:25%;
		height:200px;
		background-position:center;
		background-size:cover;
	}
	.bottomImg.img1 {
		background-image:url('../img/sub/img1.jpg');
	}
	.bottomImg.img2 {
		background-image:url('../img/sub/img2.jpg');
	}
	.bottomImg.img3 {
		background-image:url('../img/sub/img3.jpg');
	}
	.bottomImg.img4 {
		background-image:url('../img/sub/img4.jpg');
	}
	.clear {
		clear:both;
	}
}