@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');

@font-face {
          /* ① 이 폰트를 부를 이름 (사용자가 임의로 지정) */
          font-family: 'HanjinGroupSans'; 
  
          /* ② 폰트 파일의 경로와 포맷 */
          src: url('/resources/font/HanjinGroupSans-Regular-2d5c62191820bbfafdf0ef352aa111e3.woff2') format('woff2'),
               url('/resources/font/HanjinGroupSans-Regular-267193d92d9334276a39606523951e05.woff') format('woff');
               /* 여러 포맷을 선언하여 브라우저 호환성을 확보합니다. */
  
          /* 폰트의 굵기 */
          font-weight: normal; 
  
          /* 폰트의 스타일 (이탤릭 등) */
          font-style: normal; 
}

body {
	/*font-family: 'Nanum Gothic', sans-serif;*/
	font-family: 'HanjinGroupSans', sans-serif;
	background-color: #F5F6F7;
	padding: 0;
	margin: 0;
}

p, h1, h2, h3, h4 {
	margin: 0;
}

h1 {
	padding: 50px 0 20px 0;
}

h3 {
	margin: 34px 0 0 0;
}

button, textarea, input {
	/*font-family: 'Nanum Gothic', sans-serif;*/
	font-family: 'HanjinGroupSans', sans-serif;
}

button {
	display: inline-block;
	vertical-align: middle;
	width: 55px;
	height: 32px;
	color: white;
	background-color: #4F4F4F;
	border: 1px solid #B1B1B1;
	border-radius: 5px;
	font-size: 15px;
	box-sizing: content-box;
	padding: 0 5px;
	cursor: pointer;
}

input[type="text"], input[type="password"] {
	/* display: inline-block; */
	width: 240px;
	height: 38px;
	vertical-align: middle;
	border: 1px solid #B1B1B1;
	border-radius: 5px;
	font-size: 15px;
	box-sizing: content-box;
	padding: 0 5px;
	outline: 0;
}

a {
	text-decoration: none;
}

header {
	/* display: flex; */
	width: 100%;
	height: 156px;
	background-color: white;
	box-sizing: border-box;
	border-bottom: 3px solid #1E64DC;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	overflow: hidden;
}

header > .top-line {
	width: inherit;
	height: 8px;
	background-color: #1E64DC;
}

header > .header-wrap {
	display: flex;
	width: 1024px;
	height: 100px;
	margin: 0 auto;
	padding: 0 10px;
	justify-content: space-between;
	align-items: center;
}

.main-title {
	/*flex: 1;*/
	display: flex;
	height: inherit;
	text-align: left;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.main-title > a > img {
	display: block;
}

.main-title-ci-name {
	font-size: 20px;
	font-weight: 200;
}

.login-usernm, .login-empty {
	flex: none;
	display: flex;
	width: auto;
	height: inherit;
	align-items: center;
  	justify-content: flex-end;
  	font-weight: bold;
  	padding: 0 10px;
}

.header-wrap > .login-status {
	flex: none;
	display: flex;
	width: auto;
	height: inherit;
	align-items: center;
  	justify-content: flex-end;
  	font-size: 14px;
}

.login-status > a {
	color: #757C85;
	font-weight: bold;
	border: 1px solid #757C85;
	padding: 2px 4px;
}

.login-status > a:hover {
	color: #1E64DC;
	border: 1px solid #1E64DC;
}

header > .menu, header > .submenu {
	width: 100%;
}

header > .submenu {
	background-color: #F1F1F1;
	border-top: 1px solid #E7E7E7;
	box-sizing: border-box;
}

header ul {
	width: 924px;
	display: flex;
	font-size: 0;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}

header ul > li {
	flex: 1;
	display: inline-block;
	height: 48px;
}

header ul > li > div {
	display: table;
	height: inherit;
	width: 100%;
	text-align: center;
}

header ul > li > div a {
	display: table-cell;
	width: auto;
	height: inherit;
	color: black;
	vertical-align: middle;
	box-sizing: border-box;
	font-size: 19px;
	font-weight: bold;
}

.menu > ul > li > div a:hover {
	color: #1E64DC;
}

.submenu > ul > li {
	height: auto;
}

.submenu > ul > li.sub {
	padding: 20px 0 23px 0;
}

.submenu > ul > li > div {
	height: 48px;
}

.submenu > ul > li > div  a {
	font-size: 16px;
}

.submenu > ul > li > div a:hover {
	color: #1E64DC;
	font-weight: bold;
	border: 1px solid #1E64DC;
	box-sizing: border-box;
}

.contents-root {
	width: 100%;
	position: absolute;
	top: 156px;
	left: 0;
	z-index: 10;
}

.contents-body {
	width: 1024px;
	margin: 0 auto;
	padding: 0 10px;
	min-height: -webkit-calc(100vh - 266px);
	min-height: -moz-calc(100vh - 266px);
	min-height: calc(100vh - 266px);
}

.contents-wrap {
	width: 100%;
	height: auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

.contents-wrap > .contents {
	display: flex;
	width: inherit;
	height: inherit;
	margin: 0 auto;
}

.contents > .contents-items {
	flex: 1;
	background-color: white;
	border: 1px solid #EEEEEE;
	box-sizing: border-box;
}

.contents > .contents-items-empty {
	flex: 1;
	background-color: #F5F6F7;
	border: 1px solid #F5F6F7;
	box-sizing: border-box;
}

/* .contents > .contents-items:last-child {
	margin-left: 20px;
} */

.contents-bottom {
	padding-top: 20px;
	min-height: 382px;
}

.contents-bottom > .contents-items {
	margin-top: 0;
}

footer {
	width: 100%;
	height: 110px;
	background-color: #1E64DC;
}

footer > .footer-wrap {
	display: flex;
	width: 1024px;
	background-color: #1E64DC;
	margin: 0 auto;
	padding: 20px 10px 0 10px;
}

.footer-wrap > div:first-child {
	flex: none;
	margin-left: 10px;
}

.footer-wrap > div.info {
	flex: 1;
	font-size: 11px;
	color: #E1E1E1;
	padding-left: 25px;
	padding-top: 5px;
}

div.info span.bold-font {
	font-weight: bold;
}

div.info span.bold-font > a {
	color: #E1E1E1;
}

.footer-wrap > div:last-child {
	flex: none;
	margin-right: 10px;
}

.footer-wrap > div:last-child > select {
	display: inline-block;
	vertical-align: middle;
	/* height: 32px; */
	border: 1px solid #B1B1B1;
	font-size: 12px;
	box-sizing: content-box;
	outline: 0;
}

/* @media (max-width: 767px) {
	header {
		height: 126px;
	}
	
	header > .header-wrap {
		width: 96%;
		height: 80px;
		margin: 0 auto
	}
	
	.header-wrap > .main-title img {
		width: auto;
		height: 40px;
	}
	
	.header-wrap > .login-usernm {
	  	font-size: 14px;
	}
	
	.header-wrap > .login-status {
	  	font-size: 12px;
	}
	
	header > .menu {
		width: 100%;
	}
	
	.menu > ul {
		padding: 0;
	}
	
	.menu > ul > li {
		height: 38px;
		font-size: 14px;
		min-width: 55px;
	}
	
	.menu ul.submenu {
		padding: 16px 0;
	}
	
	.menu ul.submenu > li {
		height: 40px;
		line-height: 40px;
	}
	
	.menu ul.submenu > li a {
		font-size: 14px;
	}
	
	.contents-root {
		top: 126px;
	}
	
	.contents-body {
		width: 96%;
	}
	
	.contents-wrap > .contents {
		flex-direction: column;
		width: 96%;
	}
	
	.contents > .contents-items {
		margin: 20px 0;
	}
	
	.contents > .contents-items:last-child {
		margin-top: 0;
		margin-left: 0;
	}
	
	footer {
		height: 130px;
	}
	
	footer > .footer-wrap {
		flex-direction: column;
		width: 96%;
		padding-left: 0;
	}
	
	.footer-wrap > div:first-child {
		flex: 1;
		text-align: center;
		margin-left: 0;
	}
	
	.footer-wrap > div.info {
		flex: 1;
		text-align: center;
		font-size: 10px;
		padding-left: 0;
		padding-top: 10px;
	}
	
	.footer-wrap > div:last-child {
		display: none;
	}
} */
