@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');


*{
	box-sizing:border-box;
	margin:0; padding:0;
	font-family: 'Noto Sans KR', sans-serif;
}
a{
	color:inherit;
	text-decoration:none;
}

body {
	margin: 0;
	//overflow: hidden;
}


.main > section {
	/*min-height: 100vh;*/
	width:100%;
}

ul{
	list-style:none;
	padding: 0;
}

.inner{
	width:1200px;
	margin:0 auto;
	position:relative;	
}


/* header */ 

header#header{
	width:100%;
	background:#ffffff;
	box-shadow:0 0 10px #aaa;
	position:fixed;
	top:0;
	z-index:4;
}

header#header > .inner{
	width:1200px;
	margin:0 auto;
	position:relative;	
	height:120px;
}

#logo a{
	width:366px;
	height:110px;
	background:url(../images/logo.jpg);
	background-repeat:no-repeat;
	position:absolute;
	top:10px;	left:0; 
}

header#header > .inner > label{
	position:absolute;
	right:10px;	top:40px;
	width:50px;	height:50px;
	background-image:url(../images/menu_icon.png);
	display:none;
}

#toggle{
	display:none;
}








/* menu */

header{
	z-index:3;
}

#mainmenu{
	/*overflow:hidden;*/
	list-style:none;
	position:absolute;
	right:0;	
	top:72px;
}
#mainmenu > li{
	float:left;
	margin-left:3px;
}

#mainmenu > li:nth-child(1){
	width:103px;
}

#mainmenu > li:nth-child(2){
	width:196px;
}

#mainmenu > li:nth-child(3){
	width:194px;
}

#mainmenu > li:nth-child(4){
	width:125px;
}

#mainmenu > li:nth-child(5){
	width:152px;
}

#mainmenu a{
	display:block;
	font-size:1.1em;
	padding:10px 0 10px 27px;
	/*width:195px;*/
	text-align:center;
}


#mainmenu .submenu{
	list-style:none;
	background:#e7e7e7;
	display:none;
	margin-top:10px;
}


#mainmenu .submenu li a{
	display:block;
	text-align:center;
	padding:6px;
	color:#333333;
	font-size:1em;
}

#mainmenu .submenu li a:hover{
	background:#aaaaaa;
	color:white;
	transition:0.2s;
}

header + .submenu_bg{
	background:#e7e7e7;
	width:100%;
	height:200px;
	position:fixed;
	left:0;	top:120px;
	display:none;
	z-index:2;
}







/* footer */ 


footer{
	width:100%;
	background-color:#333333;
	color:#d1d1d1;	
	padding-top:30px;
}

footer > .inner{
	width:1200px;
	height:200px;
	margin:0 auto;
}

footer > .inner > div{
	float:left;
	font-size:0.8em;
}

footer > .inner > div:first-child{
	width:250px;
	height:100px;
	background:url(../images/logo_bottom.jpg) no-repeat;
}


footer > .inner > div > span{
	font-weight:bold;
}

.part{
	color:gray;
	font-weight:bold;
	font-size:0.5em;
}






@media(max-width:1200px){
	
header#header > .inner{
	width:100vw;
}

.inner{
	width:100vw;
}


header#header > .inner > label{
	display:block;
}

#toggle + nav{
	display:none;
}

#toggle:checked + nav{
	display:block;
}

#mainmenu > li{
	clear:both;
	width:100%;
}

#mainmenu{
	top:120px;	
	background:#e7e7e7;
	width:100vw;
}
#mainmenu a{
	width:100%;
	text-align: left;
}
#mainmenu .submenu li a{
	background:#f1f1f1;
}

#mainmenu > li:nth-child(1){
	width:100%;
}

#mainmenu > li:nth-child(2){
	width:100%;
}

#mainmenu > li:nth-child(3){
	width:100%;
}

#mainmenu > li:nth-child(4){
	width:100%;
}

#mainmenu > li:nth-child(5){
	width:100%;
}


footer{
	overflow:hidden;
	font-size:0.7em;
	padding-bottom:100px;
}
footer > .inner{
	overflow:hidden;
	width:100vw;
	height:250px;
	padding:20px;
}

}




@media(max-width:450px){
	#logo a{
		width:calc(100vw - 100px);
		background-size:100%;
		background-position:center;
	}
}















