/* 초기화 */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #191919;
  font-family: 'SUITE', sans-serif;
	font-size: 62.5% !important;
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color : transparent !important;
	animation:entry .3s ease forwards;
  opacity: 0;
}

html::-webkit-scrollbar {
	display: none;
}

html {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

body {
	font-size: 1.6rem;
}

a {
	color: inherit;
	outline: none;
	text-decoration: none;
}

ol, ul {
	list-style: none;
}

b, strong {
	font-weight: 700;
}

img {
	max-width: 100%;
}

button {
	font-family: inherit;
	border: none;
	outline: none;
	cursor: pointer;
	color: inherit;
	-webkit-appearance: none;
	background: none;
}

select {
	outline: none;
	border: 1px solid transparent;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
}

input, textarea {
	font-family: inherit;
	outline: none;
	border: 1px solid transparent;
}

:focus {
	outline: none;
}

::placeholder {
	color:#A4A4A4;
}

em, i {
	font-style: normal;
}

@-webkit-keyframes entry {
	to{opacity: 1;}
}

@keyframes entry {
	to{opacity: 1;}
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


.hidden {
	overflow: hidden;
}
body.overflow{
	height: 100vh;
	overflow: hidden;
}


/* 블라인드 */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}


/* 줄바꿈 */
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.md {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.sm {
		display: none;
	}
}
@media screen and (max-width:576px) {
	.xs {
		display: none;
	}
}


/* 블록 */
.d-block {
	display: block;
}
.d-inline-block {
	display: inline-block;
}


.ellip {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-1 {
	-webkit-line-clamp: 1; 
}

.clamp-2 {
	-webkit-line-clamp: 2; 
}


/* 컨테이너 */
.container {
	max-width:1400px;
	width: 95%;
	margin:0 auto;
}


/* 메인 */
#main {
	min-height: calc(100vh - 260px);
	overflow: hidden;
}

@media screen and (max-width:1200px) {
	#main {
		min-height: calc(100vh - 250px);
	}	
}
@media screen and (max-width:1024px){
	#main {
		min-height: calc(100vh - 212px);
	}	
}
@media screen and (max-width:768px){
	#main {
		min-height: calc(100vh - 200px);
	}	
}


/* 상단 */
#header {
	position: absolute;
	top:0;
	left:0;
	z-index: 99;
	width: 100%;
}

#header .util {
	position: relative;
	padding:18px 1.5625vw;
	background-color: #191919;
	z-index:15;
}

#header .util a {
	display: block;
}

#header .util .din {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header .util .img,
#header .util .txt {
	display: flex;
	align-items: center;
	font-size:0px;
}

#header .util .img a {
	display: flex;
	align-items: center;
	gap:10px;
	font-size: 1.6rem;
	line-height: 1;
	color:#fff;
	cursor: pointer;
}

#header .util .img dd:first-child {
	position: relative;
	padding-right:12px;
	margin-right:12px;
}

#header .util .img dd:first-child::after {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	right:0;
	transform: translateY(-50%);
	width:1px;
	height:14px;
	background-color: #fff;
}

#header .util .img dd:first-child img {
	width: 24px;
}

#header .util .img dd:last-child img {
	width: 58px;
}

#header .util .txt dd {
	position: relative;
	font-size:1.6rem;
	line-height: 1;
	color:#fff;
}

#header .util .txt dd:first-child {
	padding-right:7px;
	margin-right:7px;
}

#header .util .txt dd:first-child::after {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	right:0;
	transform: translateY(-50%);
	width:1px;
	height:12px;
	background-color: #fff;
}

#header .inner {
	display: flex;
	justify-content: center;
	position: relative;
	background-color: #fff;
	z-index:10;
}

#header .inner::after {
	content: "";
	display: block;
	position: absolute;
	top:80px;
	left:0;
	width: 100%;
	height:1px;
	background-color: #d2d2d2;
	opacity:0;
	visibility: hidden;
	transition:all .1s ease;
	z-index:5;
}

#header .logo {
	position: absolute;
	top:15px;
	left: 1.5625vw;
	width: 215px;
	height:50px;
}

#header .logo a {
	display: block;
	width: 100%;
	height:100%;
	background: url('../img/common/h_logo.png') no-repeat center;
}

#header .menu {
	display: flex;
}

#header .menu .menu__li {
	position: relative;
}

#header .menu .menu__li::before {
	content: "";
	display: block;
	position: absolute;
	top:80px;
	left:0px;
	width: 1px;
	height:220px;
	background-color: #d2d2d2;
	opacity:0;
  visibility: hidden;
  transition:all .1s ease;
	z-index: 5;
}

#header .menu .menu__li:last-child::after {
	content: "";
	display: block;
	position: absolute;
	top:80px;
	right:0px;
	width: 1px;
	height:220px;
	background-color: #d2d2d2;
	opacity:0;
  visibility: hidden;
  transition:all .1s ease;
	z-index: 5;
}

#header .menu .menu__link {
	display: block;
	position: relative;
	padding:31px 40px;
	font-size:1.8rem;
	line-height:1;
	transition: all .4s ease;
}

#header .menu .menu__link::after {
	content: "";
	display: block;
	position: absolute;
	left:50%;
	bottom: -2px;
	transform: translateX(-50%);
	width: 0;
	height:2px;
	background-color: #00a19a;
	transition: all .4s ease;
	z-index:10;
}

#header .menu .submenu {
	position: absolute;
  top:100%;
  left:50%;
  transform: translateX(-50%);
  width: 100%;
  height:220px;
  padding:40px 0px 0px 30px;
  white-space: nowrap;
  opacity:0;
  visibility: hidden;
  transition:all .1s ease;
	z-index: 1;
}

#header .menu .submenu::after {
	content: "";
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	background-color: #f5f5f5;
	z-index: -1;
	opacity:0;
	visibility: hidden;
	pointer-events: none;
	transition:all .4s ease;
}

#header .menu .submenu li:not(:last-child) {
	margin-bottom:20px;
}

#header .menu .submenu a {
	font-size:1.6rem;
}

#header .btn {
	position: absolute;
	top:0;
	right:0;
	width:80px;
	height:80px;
}

#header .btn.mo{display: none;}

@media all and (max-width:1200px){
	#header .btn.mo{display: block;}
	#header .btn.pc{display: none;}
}

#header .btn button {
	display:block;
	position: relative;
	width: 100%;
	height: 100%;
}

#header .btn span {
  position: relative;
  margin: 0 auto;
}

#header .btn span::before,
#header .btn span::after {
  content: '';
  position: absolute;
}

#header .btn span,
#header .btn span::before,
#header .btn span::after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #00a19a;
}

#header .btn.mo span,
#header .btn.mo span::before,
#header .btn.mo span::after{
	width: 20px;
	height: 2px;
}
#header .btn.mo span::before{
	margin-top: -6.5px;
}
#header .btn.mo span::after{
	margin-top: 6.5px;
}
#header .btn span::before {
  margin-top: -10px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
	transition-delay: 0.2s, 0s;
}

#header .btn span::after {
  margin-top: 10px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
	transition-delay: 0.2s, 0s;
}

#header .btn.mo button.on span {
  background-color: rgba(0, 0, 0, 0) !important;
  transition-delay: 0.2s;
}

#header .btn.mo button.on span::before {
	margin-top: 0;
	transform: rotate(45deg);
	transition-delay: 0s, 0.2s;
}

#header .btn.mo button.on span::after {
	margin-top: 0;
	transform: rotate(-45deg);
	transition-delay: 0s, 0.2s;
}

#header .bak {
	overflow:hidden; 
	position:absolute; 
	top:0px;
	left:50%;
	transform:translateX(-50%);
	width:200vw; 
	height: 360px;
	background:#fff; 
	opacity:0;
	visibility: hidden;
	z-index:5;
	transition:all .3s ease;
}

@media screen and (min-width:1201px) {
	#header .menu__li:hover .menu__link::after {
		width: 100%;
	}

	#header .menu__li:hover .submenu::after {
		opacity: 1;
		visibility: visible;
	}

	#header .menu .submenu a:hover {
		text-decoration: underline;
		text-underline-offset: 3px;
	}

	#header[header-hover = "on"] .inner::after {
		opacity: 1;
		visibility: visible;
	}

	#header[header-hover = "on"] .menu__li::before {
		opacity: 1;
		visibility: visible;
	}

	#header[header-hover = "on"] .menu__li::after {
		opacity: 1;
		visibility: visible;
	}

  #header[header-hover = "on"] .menu__link {
    padding: 31px 80px;
  }

	#header[header-hover = "on"] .menu__li:nth-child(1) .menu__link {
		padding: 31px 34.1px;
	}

	#header[header-hover = "on"] .bak {
		opacity: 1;
		visibility: visible;
	}

	#header[header-hover = "on"] .submenu {
		opacity: 1;
		visibility: visible;
	}
}
@media screen and (max-width:1366px) {
	#header .logo {
		width: 175px;
	}

	#header .logo a {
		background-size:175px auto;
	}

	#header .menu .menu__link {
		padding: 31px 24px;
	}
}
@media screen and (max-width:1200px) {
	#header .util {
		padding: 12px 15px;
	}

	#header .util .img a {
		font-size:1.4rem;
	}

	#header .util .txt {
		display: none;
	}

	#header .inner {
		height: 70px;
	}

	#header .logo {
		left: 15px;
		height:40px;
	}

	#header .logo a {
		background-size: auto 40px;
	}

	#header .btn {
		width: 70px;
		height: 70px;
	}

	#header .menu {
		display: none;
	}
}
@media screen and (max-width:1024px) {
	#header .util .img a {
		gap:6px;
	}

	#header .util .img dd:first-child {
		padding-right:10px;
		margin-right:10px;
	}
	
	#header .util .img dd:first-child::after {
		height: 12px;
	}

	#header .util .img dd:first-child img {
		width: 20px;
	}

	#header .util .img dd:last-child img {
		width: 50px;
	}
}
@media screen and (max-width:768px) {
	#header .util .img a {
		font-size:1.3rem;
	}

	#header .util .img dd:first-child img {
		width: 16px;
	}

	#header .util .img dd:last-child img {
		width: 44px;
	}
}
@media screen and (max-width:576px) {
	#header .util {
		padding: 10px 15px;
	}

	#header .util .img a {
		gap:4px;
		font-size:1.1rem;
	}

	#header .util .img dd:first-child {
		padding-right:8px;
		margin-right:8px;
	}

	#header .util .img dd:first-child::after {
		height:10px;
	}
}


/* 하단 */
#footer {
	font-size:1.8rem;
	color:#fff;
}

#footer .art01 {
	padding:24px 0px;
	background-color: #3e547b;
}

#footer .art02 {
	padding:40px 0px;
	background-color: #0e295a;
}

#footer .f-container {
	max-width: 1400px;
	width: 95%;
	margin:0 auto;
}

#footer .din {
	display: flex;
	justify-content: space-between;
}

#footer .f-name {
	color:#fff;
}

#footer .f-link {
	display: flex;
	align-items: center;
	margin:0px -12px;
}

#footer .f-link li {
	position: relative;
	padding:0px 12px;	
}

#footer .f-link li:first-child::after {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	right:0;
	transform: translateY(-50%);
	width:1px;
	height:14px;
	background-color: #fff;
}

#footer .f-info {
	display: flex;
	flex-wrap: wrap;
	gap:0px 10px;
}

#footer .f-info li {
	line-height: 1.8;
}

#footer .f-info li:first-child {
	width: 100%;
}

#footer .f-copy {
	margin-top:24px;
}

@media screen and (max-width:1200px) {
	#footer {
		font-size:1.6rem;
	}
}
@media screen and (max-width:1024px) {
	#footer .art01 {
		padding:18px 0px;
	}

	#footer .art02 {
		padding:30px 0px;
	}

	#footer .f-link {
		margin:0px -10px;
	}

	#footer .f-link li {
		padding:0px 10px;	
	}

	#footer .f-link li:first-child::after {
		height:12px;
	}

	#footer .f-copy {
		margin-top:18px;
	}
}
@media screen and (max-width:768px) {
	#footer {
		font-size:1.4rem;
	}
}
@media screen and (max-width:576px) {
	#footer {
		font-size:1rem;
	}

	#footer .art01 {
		padding: 12px 0px;
	}

	#footer .din {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap:6px;
	}

	#footer .f-info {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		gap:0px 6px;
	}

	#footer .f-info li {
		line-height:1.6;
	}

	#footer .f-copy {
		text-align: center;
		margin-top: 12px;
	}
}

.table-lay-out .table{
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border:1px solid #B3B3B3;
}
.table-lay-out .bg-green{
	background-color: #00A19A;
}
.table-lay-out .table-bg-green{background-color: #F9FFF6;}
.table-lay-out .table-bg-blue{background-color: #F6FFFF;}
.table-lay-out .table-bg-yellow{background-color: #FEFEF9;}
.table-lay-out .table-bg-red{background-color: #FFF8FD;}

.table-lay-out .table.br-top-none{
	border-top: none;
}

.table-lay-out th{
	padding: 15px 20px;
	font-size: 2rem;
}
.table-lay-out td{
	padding: 15px 20px;
}
.table-lay-out td.tit{
	font-weight: 700;
	background-color: #e5f5f5;
}


.table-lay-out th,
.table-lay-out td{
  font-size: 1.8rem;
  border-right:1px solid #B3B3B3;
  border-bottom:1px solid #B3B3B3;
}

.table-lay-out .d-flex-box{
	display: flex;
	align-items: center;
}

.won-mon-ki{
	display: block;
	width: 20px;
	height: 20px;
	background: url(/asset/img/icon/file-up-icon.png)no-repeat center center /cover;
	margin-left: 5px;
}

.mok-rok-ero{
	display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
  margin: 0 auto;
  background-color: #00A19A;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

@media all and (max-width:576px){
	.mok-rok-ero{
		height: 50px;
		font-size: 1.6rem;
	}
}

#header .m_header{
	position: absolute;
	left: 0;
	top: calc(100% - 1px);
	height: calc(100vh - 100%);
	width: 100vw;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
#header .m_header.on{
	opacity: 1;
	visibility: visible;
}

#header .m_header .submenu{
	display: none;
	padding: 5px 0;
}

#header .m_header .menu__link{
	display: block;
	width: 100%;
	padding: 15px 10px;
	position: relative;
	border-bottom: 1px solid #b4b4b4;
	font-size: 1.6rem;
}

#header .m_header .menu__li{
}
#header .m_header .menu__link:before{
	position: absolute;
	width: 12px;
	height: 1px;
	content: '';
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #191919;
}
#header .m_header .menu__link:after{
	position: absolute;
	width: 12px;
	height: 1px;
	content: '';
	right: 15px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	background-color: #191919;
	transition: .5s;
}

#header .m_header .submenu a{
	padding: 5px 10px;
	display: block;
	font-size: 1.6rem;
}
#header .m_header .on .menu__link:after{
	transform: translateY(-50%) rotate(0);
}

#header .m_header .on .submenu{
	display: block;
}

#header .m_header .m-login{
	display: flex;
	justify-content: center;
	padding: 20px 0;
}
#header .m_header .m-login .lg-btn{
	padding: 10px 15px;
	display: block;
	font-size: 1.6rem;
	position: relative;
}
#header .m_header .m-login .lg-btn + .lg-btn:before{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background-color: #191919;
	content: '';
}

@media all and (max-width:768px){
	.table-lay-out th, .table-lay-out td{
		font-size: 1.6rem;
		padding: 10px;
	}
}

@media all and (max-width:576px){
	.table-lay-out th,
	.table-lay-out td{
		font-size: 1.4rem;
        height: 45px;
	}
}