@media screen and (max-width:768px){
	header {
		width:100%;
		height:80px;
		display:block;
		box-sizing:border-box;
		background-color:#c5003e;
		box-shadow:2px 2px 2px 2px rgba(0,0,0,0.5);
		z-index:+1000;
		position:fixed;
		top:0px;
		left:0px;
	}

	/* 헤더 */
	header .innerWrap {
		width:100%;
		max-width:1000px;
		margin:0 auto;
		box-sizing:border-box;
		text-align:right;
	}
	header .innerWrap a {
		display:block;
		margin-top:55px;
		color:#fff;
		margin-left:10px;
		margin-right:10px;
		float:left;
		font-size:14px;
	}
	.dummyHeader {
		width:100%;
		height:80px;
	}
	.logo {
		height:40px;
		position:absolute;
		top:10px;
		left:50%;
		margin-left:-70px;
	}
	.logo_a {
		display:absolute;
	}

	/* INDEX */
	.indexDiv {
		width:100%;
		height:100%;
		background-image:url('../img/global/index2.jpg');
		background-size:cover;
		background-position:center;
		position:relative;
	}
	.indexDiv .box {
		width:80%;
		height:300px;
		position:absolute;
		top:50%;
		right:10%;
		margin-top:-200px;
		border:2px solid #fff;
		background-color:rgba(0,0,0,0.7);
		color:#fff;
		box-sizing:border-box;
		padding:30px;
		text-align:center;
	}
	.indexDiv .box h1 {
		font-size:35px;
		margin-bottom:20px;
	}
	.indexDiv .box h2 {
		font-size:23px;
		margin-bottom:20px;
		font-weight:100;
	}

	/* footer */
	footer {
		height:auto;
		padding:20px;
	}
	footer h1 {
		display:block;
		font-size:16px;
		color:#fff;
		font-weight:300;
	}
	footer h2 {
		display:block;
		font-size:16px;
		color:#fff;
		font-weight:300;
		text-align:left;
	}
	
	/* 내용 */
	.contents {
		width:100%;
		max-width:1100px;
		margin:0 auto;
		margin-bottom:50px;
		box-sizing:border-box;
		padding:10px;
	}
	.contents .title {
		width:100%;
		border-bottom:1px solid #dfdfdf;
		font-size:20px;
		font-weight:400;
		margin-top:30px;
		padding-bottom:10px;
		margin-bottom:10px;
	}
	.bottomImgWrap {
		width:100%;
		height:auto;
	}
	.bottomImg {
		float:left;
		width:50%;
		height:150px;
		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;
	}

	.home {
		display:none !important;
	}
}