@charset "utf-8";
/* etc */
@keyframes showItem {
	from {
		transform:translateY(20px);
		opacity:0;
	}
	to {
		transform:translateY(0px);
		opacity:1;
	}
}
.stagger-item {
	animation:showItem 0.5s;
	animation-fill-mode: both;
}
/* layout */
*{font-family: 'Pretendard GOV' !important;}
.fa{font-family: 'FontAwesome' !important;}
html,body {
	height:auto;
}
body.b-hid {
	overflow:hidden;
	position:relative;
}
body.b-hid:before{
	content:"";
	position:fixed;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.7);
	transition:opacity .2s;
	z-index:110;
}
.wrap {
	display:flex;
	flex-direction:column;
}
.wrap {
	height:100%;
	width:100%;
}
#container {
	flex-grow:1;
	overflow:visible;
}
#container.sub{
  max-width: 1352px;
  margin: 0 auto;
  padding-left:24px;
	padding-right:24px;
}
#container.main {
	padding-left:24px;
	padding-right:24px;
}
#container > main{
  margin-top:80px;
}
.hgroup{
	flex-wrap:wrap;
	height: auto;
}
.hgroup > div{
	width:100%;
	margin-bottom: 40px;
}
.hgroup > div + div{
    height: 60px;
    /* margin-bottom: 70px; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.hgroup .location-home {
    width: 40px;
    padding-left: 22px;
    height: auto;
    background-position: 0;
    font-style:normal;
}
.hgroup > div i, .hgroup > div a{
  display:inline-block;
  vertical-align: middle;
}
.hgroup > div a{
  text-decoration: underline;
  text-underline-offset:3px;
}
.bg-dim {
	display:none;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.5);
	position:absolute;
	z-index:101;
	transition:opacity .2s;
}
.bg-dim.on {
	display:flex;
	z-index:999;
}
.bg-dim>img {
	display:inline-block;
	content:"";
	width:65px;
	height:65px;
	position:absolute;
	left:50%;
	top:50%;
	transform: translate(-50%,-50%);
}
/* 통합검색 페이지 */
#container.allSearch {
	margin-top:170px;
}
.inner-con {
	width:100%;
	max-width:	1352px;
	margin:0 auto;
	padding:0 24px;
}
.header-wrap.all-menu-open {
	z-index:inherit;
}
.header-wrap.all-menu-open #header .util {
	z-index:inherit;
}
.header-wrap {
	position:sticky;
	top:0;
	z-index:200;
	width:100%;
	background:var(--color-gray-0);
	-webkit-transition:0.2s;
	transition:0.2s;
	-moz-transition:0.2s;
}
.header-wrap.fixed {
	position:fixed;
	margin-top:-50px;
	background:rgba(255,255,255,0.7);
	-webkit-transition:0.2s;
	transition:0.2s;
	-moz-transition:0.2s;
	z-index:200;
}
.header-wrap.fixed:hover {
	background:rgba(255,255,255,1);
}
.header-wrap #header {
	position:relative;
	transform:translateY(0);
  border-bottom:1px solid var(--color-gray-20);
}
.header-wrap .util {
	display:inline-block;
}
.header-wrap .left {
	position:absolute;
	top:8px;
}
.header-wrap .util ul {
	display:flex;
	align-items:center;
}
.header-wrap .util ul li {
	margin:0 20px 0 0;
}
.header-wrap .util ul li img {
	display:inline-block;
	margin-right:5px;
	width:16px;
	height:16px;
}
.header-wrap .util ul li a {
	display:inline-block;
	font-size:17px;
	color:var(--color-gray-80);
	font-weight:700;
}
.header-wrap .util ul li a:before {
	content: "";
    display: inline-block;
    background: url(../images/common/ico_login.svg) no-repeat 100% 0;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -4px;
    background-size: cover;
}
.header-wrap .util ul li.eng {
	margin:0 0 0 32px;
}
.header-wrap .util ul li.eng a {
	padding:0 0 0 27px;
	background:url(/static/ucms/images/common/icon-earth.png) no-repeat 0 50%;
	color:#869afd;
}
.header-wrap .util ul li:nth-child(3) .all-menu-btn {
	position:relative;
	height:46px;
	width:52px;
	vertical-align:top;
	border-left:1px solid #7293dc;
	border-right:1px solid #7293dc;
	z-index:100;
}
.header-wrap .util ul li:nth-child(3) .all-menu-btn button {
	height:46px;
	width:52px;
	display:block;
	text-indent:-9999px;
}
.header-wrap .util ul li:nth-child(3) .all-menu-btn:before {
	content:"";
	position:absolute;
	top:13px;
	left:14px;
	width:20px;
	height:14px;
	border-top:2px solid var(--color-gray-0);
	border-bottom:2px solid var(--color-gray-0);
	z-index:-1;
}
.header-wrap .util ul li:nth-child(3) .all-menu-btn:after {
	content:"";
	position:absolute;
	top:21px;
	left:14px;
	width:20px;
	height:2px;
	background:var(--color-gray-0);
	z-index:-1;
}
.header-wrap h1 {
	display:inline-block;
	z-index:100;
}
.header-wrap.active {
	overflow:visible;
}
.header-wrap.active:after {
	content:"";
	position:absolute;
	left:0;
	top:129px;
	width:100%;
	min-height:230px;
	background-color:var(--color-gray-0);
	border-top:1px solid var(--color-gray-20);
	border-bottom:1px solid var(--color-gray-20);
	box-shadow:0 6px 4px rgba(0,0,0,0.05);
	-webkit-transition:0.2s;
	transition:0.2s;
	-moz-transition:0.2s;
	z-index:200;
}
.gnb-wrap {
	border-top:1px solid var(--color-gray-20);
}
#gnb {
	width:100%;
	max-width:1352px;
	margin:0 auto;
	padding:0 24px;
	background: var(--color-gray-0);
}
#gnb>ul {
	margin:0 auto;
	text-align:left;
}
#gnb>ul:after {
	content:"";
	display:block;
	clear:both;
}
#gnb>ul>li {
	display:inline-block;
	-webkit-transition:0.3s;
	transition:0.3s;
	-moz-transition:0.3s;
}
#gnb>ul>li>a {
	position:relative;
	padding:0 20px;
	font-weight:700;
	font-size:18px;
	letter-spacing:-0.05px;
	color:var(--color-gray-80);
	-webkit-transition:0.3s;
	transition:0.3s;
	-moz-transition:0.3s;
	width:100%;
	display:flex;
	align-items:center;
	height:62px;
}
#gnb>ul>li>a span {
	display:block;
	font-size:12px;
	color:var(--color-gray-80);
}
#gnb>ul>li>a:before {
	content:"";
	position:absolute;
	top:46px;
	left:-2px;
	width:100%;
	height:3px;
	background:var(--color-secondary-50);
	border-left:2px solid var(--color-secondary-50);
	border-right:2px solid var(--color-secondary-50);
	z-index:100;
	opacity:0;
}
#gnb > ul > li > a::after{
	content: "";
    display: inline-block;
    background: url(../images/common/ico_arrow.svg) no-repeat 0 0;
    width: 20px;
    height: 20px;
    margin-left: 20px;
    vertical-align: middle;
    background-size: cover;
	-webkit-transition:0.3s;
	transition:0.3s;
	-moz-transition:0.3s;
}
#gnb > ul > li.active>a::after{
	transform:rotate(180deg);
}
#gnb>ul>li.active>a:hover:before,#gnb>ul>li.active>a:before {
	top:58px;
	opacity:1;
}
#gnb>ul>li.active>.depth02 {
	display:block !important;
	border-top:1px solid var(--color-gray-20);
	border-bottom:1px solid var(--color-gray-20);
}
#gnb>ul>li.active>a {
	color:#1f56ad;
}
#gnb .depth02 {
	display:none !important;
	position:absolute;
	top:161px;
	left:0;
	width:100%;
	padding:10px 0;
	background:var(--color-gray-0);
}
#gnb .depth02 ul {
	display:flex;
	max-width:1352px;
	margin:0 auto;
	padding:0 24px;
	flex-flow:row wrap;
}
#gnb .depth02 ul li {
	margin-right:20px;
}
#gnb .depth02 ul li a {
	position:relative;
	display:block;
	padding:15px;
	text-align:left;
}
#gnb .depth02 ul li a:hover {
	background-color:#edf1f5;
}
#gnb .depth02 ul li a:active {
	background-color:#d6e0eb;
}
#gnb>ul>li.active .depth02:before {
	content:"";
	position:absolute;
	top:-22px;
	left:0;
	width:100%;
	background:var(--color-gray-0);
	z-index:-1;
}
#gnb .depth02 li {
	text-align:center;
}
#gnb .depth02 li a {
	font-size:18px;
	color:var(--color-gray-80);
}
#gnb .depth02 li a:after{
    content: "";
    display: inline-block;
    background: url(../images/common/ico_arrow.svg) no-repeat 0 0;
    width: 20px;
    height: 20px;
    margin-left: 20px;
    vertical-align: middle;
    background-size: cover;
	transform:rotate(270deg);
}
#gnb .depth02 li.active a {
	color:#1f56ad;
	font-weight:500;
	border-bottom:1px solid #1f56ad;
}
.header-wrap .site-map {
	display:inline-block;
}
.header-wrap .site-map a {
	display:none;
	position:absolute;
	width:27px;
	height:23px;
	right:0;
	top: 80px;
}
.header-wrap .site-map button.all-search:before{
	content: "";
	display: inline-block;
	background: url(../images/common/ico_sch.svg) no-repeat 100% 0;
	width: 18px;
	height: 18px;
	margin-right: 5px;
	vertical-align: middle;
	margin-top: -4px;
	background-size: cover;
}
.header-wrap .site-map button.all-search{
	font-size:17px;
	font-weight:700;
	color:var(--color-gray-80);
	vertical-align:baseline;
}
.header-wrap .site-map button.all-search.close {
	content:"전체 검색 닫기";
	/* background:url(/static/ucms/images/common/all-search-close.png) no-repeat 50% 50%; */
}
.header-wrap .site-map a:before {
	content:"";
	position:absolute;
	top:0;
	right:0;
	width:22px;
	height:18px;
	border-top:2px solid var(--color-gray-100);
	border-bottom:2px solid var(--color-gray-100);
	-webkit-transition:0.3s ease-in-out;
	transition:0.3s ease-in-out;
	-moz-transition:0.3s ease-in-out;
}
.header-wrap .site-map a:after {
	content:"";
	position:absolute;
	top:10px;
	right:0;
	width:22px;
	height:2px;
	background:var(--color-gray-100);
}
.header-wrap .site-map a:hover:before {
	width:27px;
}
.all-search-wrap .btn-delete {
    display: inline-block;
    margin-left: -34px;
    background: url(https://www.fcsc.kr/static/ucms/images/common/all-search-close.png) no-repeat 50%;
    width: 28px;
    height: 28px;
    text-indent: -9999px;
}
.all-search-wrap {
	width:100%;
	min-height:170px;
	background:url(/static/ucms/images/common/all-search-bg.png) no-repeat 50% 50%;
	box-shadow:0 6px 4px rgba(0,0,0,0.05);
	position:absolute;
	top:132px;
	z-index:300;
	-webkit-transition:0.1s ease-in-out;
	transition:0.1s ease-in-out;
	-moz-transition:0.1s ease-in-out;
}
.header-wrap.fixed+.all-search-wrap {
	position:fixed;
		top:80px;
}
.hide {
	opacity:0;
	min-height:0;
	z-index:0;
		display:none;
}
.all-search-wrap form {
	text-align:center;
	line-height:170px;
	margin:auto;
	max-width:1200px;
	position:relative;
}
.all-search-wrap form select {
	min-width:120px;
	border-radius:0;
	height:52px;
	border:0;
	padding:0 10px;
	color:#666
}
.all-search-wrap form input {
	min-width:500px;
	border-radius:0;
	height:52px;
	padding:0 10px;
	border:0;
	margin:0 -8px 0 -4px;
	color:var(--color-gray-80);
}
.all-search-wrap form select + input[type="text"]{
  width:calc(100% - 300px);
  max-width:500px;
}
.all-search-wrap form button.search {
	height:54px;
	line-height:54px;
	border-radius:0;
	font-size:16px;
}
.all-search-wrap form .all-search-close{
  display: block;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  background-size: 20px !important;
  z-index: 500;
  background: var(--color-gray-100) url(https://www.fcsc.kr/static/ucms/images/common/icon-close-white.png) no-repeat 50% 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.all-search-wrap form button.filterbtn {
	position:absolute;
	bottom:0;
	right:-5px;
	background:#313851;
	border:#313851;
	border-radius:0;
}
.all-search-wrap .filter-wrap {
	position:absolute;
	width:100%;
	background:#fafbff;
	border:1px solid var(--color-secondary-50);
	border-top:0;
	padding:15px 50px 25px;
	line-height:52px;
}
.all-search-wrap .filter-wrap li {
	display:flex;
	justify-content:flex-start;
	border-bottom:1px dashed #dedfe2;
}
.all-search-wrap .filter-wrap li strong {
	min-width:100px;
	text-align:left;
	color:#2c428e;
	font-weight:600;
}
.all-search-wrap .filter-wrap li p{
	text-align:left;
}
.all-search-wrap .filter-wrap li p label {
	margin:0 20px 0 0;
	color:#666;
}
.all-search-wrap .filter-wrap li p input[type=checkbox] {
	margin:0 5px 0 0;
	height:20px;
	border:1px solid #cdcdcd;
}
.all-search-wrap .filter-wrap li p input[type=radio] {
	margin:0 5px 0 0;
	height:20px;
	border:1px solid #cdcdcd;
	min-width:auto;
}
.all-search-wrap .filter-wrap li p input[type=text] {
	height: 30px;
  margin: 0 5px 0 0;
  border: 1px solid #cdcdcd;
  border-radius: 3px;
  min-width: auto;
  padding:0 5px;
}
.all-search-wrap .filter-wrap li p select {
	height:30px;
	border:1px solid #cdcdcd;
	border-radius:3px;
}
.all-search-wrap .filter-wrap li em{
    display: block;
    font-style: normal;
    line-height: normal;
    text-align: left;
	font-size:15px;
	padding:14px 0 0 0;
}
.header-wrap .mobile-menu-btn,.header-wrap .mobile-close {
	display:none;
}
#header .mobile-util {
	display: none;
}
/* all-menu */
.wrap-layer-popup.all-menu-layer>.inner-layer-popup::before {
	display:block;
	content:"";
	position:absolute;
	width:100%;
	height:25px;
	background:#285194;
	z-index:1;
}
.wrap-layer-popup.all-menu-layer .layer-popup-contents {
	padding:130px 120px 0;
}
.wrap-layer-popup.all-menu-layer .layer-popup-bottom button {
	width:150px;
	height:50px;
	background-color:var(--color-primary-70);
	border:1px solid var(--color-primary-70);
	color:var(--color-gray-0);
	font-weight:500;
	border-radius:5px;
	transition:all .2s linear;
}
.wrap-layer-popup.all-menu-layer .layer-popup-bottom button:hover {
	background-color:var(--color-primary-80);
}
.wrap-layer-popup.all-menu-layer .layer-popup-bottom button:active {
	background-color:var(--color-primary-90);
}
.wrap-layer-popup.all-menu-layer .btn-layer-close {
	right:50px;
	top:50px;
}
.all-menu-wrap {
	overflow:hidden;
}
.all-menu-wrap .menuInfo {
	float:left;
	min-width:250px;
}
.all-menu-wrap .menuInfo .title {
	font-size:36px;
	margin-bottom:20px;
	font-weight:600;
	position:relative;
}
.all-menu-wrap .menuInfo .title::before {
	display:inline-block;
	content:"";
	background:url(/static/ucms/images/common/icon-menu.png) no-repeat;
	width:25px;
	height:20px;
	background-size:contain;
	margin:0 15px 3px 0;
}
.all-menu-wrap .menuInfo span {
	color:var(--color-gray-80);
	line-height:1.6;
}
.all-menu-wrap .all-menu-link {
	overflow:hidden;
		-webkit-transition:0.3s ease-in-out;
	transition:0.3s ease-in-out;
	-moz-transition:0.3s ease-in-out;
}
.all-menu-wrap .all-menu-link>div>ul {
	display:flex;
	justify-content:space-between;
	gap:10px;
}
.all-menu-wrap .all-menu-link>div>ul>li{
	width:22%;
}
.all-menu-wrap .all-menu-link>div>ul>li>a {
  font-size:18px;
  font-weight:700;
  color:var(--color-gray-80);
  width:100%;
  height:50px;
  margin-bottom:25px;
  display:block;
  padding:0 20px 0 25px;
  line-height:50px;
  background:#f8f9fb;
  border:1px solid #d5d5d5;
  border-radius:5px;
  position:relative;
  -webkit-transition:0.2s ease-in-out;
  transition:0.2s ease-in-out;
  -moz-transition:0.2s ease-in-out;
}
.all-menu-wrap .all-menu-link>div>ul>li>a::after {
	display:inline-block;
	content:"";
	width:11px;
	height:7px;
	background:url(/static/ucms/images/common/icon-arrow-up02.png) no-repeat;
	position:absolute;
	right:25px;
	top:46%;
	transform:rotate(180deg);
}
.all-menu-wrap .all-menu-link>div>ul>li:hover>a {
	background:#295cb0;
	color:var(--color-gray-0);
}
.all-menu-wrap .all-menu-link>div>ul>li:hover>a::after {
	background:url(/static/ucms/images/common/icon-arrow-up_white.png) no-repeat;
}
.all-menu-wrap .all-menu-link>div>ul>li>.depth02 {
	display:block !important;
}
.all-menu-wrap .all-menu-link>div>ul>li>.depth02 ul a {
	display:block;
	position:relative;
	color:#666;
	font-size:17px;
	padding-left:10px;
}
.all-menu-wrap .all-menu-link>div>ul>li>.depth02 ul li{
	margin:10px 0;
}
.all-menu-wrap .all-menu-link>div>ul>li>.depth02 ul a::before {
	display:inline-block;
	content:"";
	width:4px;
	height:4px;
	background:#666;
	vertical-align:middle;
	margin-right:10px;
}
.all-menu-wrap .all-menu-link>div>ul>li>.depth02 ul li:hover a {
	color:#2c428e;
	font-weight:600;
}
.all-menu-wrap .all-menu-link>div>ul>li>.depth02 ul li:hover a::before {
	background:#2c428e;
}
.breadcrumb {
	display:none;
	padding:11px 0 16px 2px;
}
.breadcrumb ul li {
	position:relative;
	display:inline-block;
	padding:0 0 0 12px;
	margin:0 0 0 16px;
	line-height:18px;
}
.breadcrumb ul li:after {
	content:"";
	position:absolute;
	top:7px;
	left:-7px;
	border-top:2px solid #ccc;
	border-right:2px solid #ccc;
	width:6px;
	height:6px;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	z-index:110;
}
.breadcrumb ul li:nth-child(1) {
	width:18px;
	height:18px;
	margin:0;
	padding:0;
	background:url(/static/ucms/images/common/icon-home.png) no-repeat 50% 50%;
	background-size:18px 18px;
}
.breadcrumb ul li {
	font-size:14px;
	color:#666;
}
.breadcrumb ul li:nth-child(1) {
	height:18px;
	line-height:18px;
	text-indent:-9999px;
}
.breadcrumb ul li:nth-child(1):after {
	display:none;
}
.link-text{
	position:relative;
	display:inline-block;
	font-size:16px;
	margin:20px auto;
	border:1px solid var(--color-gray-20);
	border-radius:12px;
	padding:20px;
}
.link-text:after{
  content:"";
  display: inline-block;
  background: url(../images/common/ico_open.svg) no-repeat 0 0;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  margin-top:-4px;
  vertical-align: middle;
  background-size: cover;
}
.section03-layer .inner_contents {
	text-align:center;
	margin:auto;
}
.footer-wrap {
	position:relative;
	width:100%;
	background:#f0f0f0;
	letter-spacing:-0.4px;
}
.footer-wrap .footer-banner-wrap {
	background:var(--color-gray-0);
  border-top:1px solid var(--color-gray-20);
  border-bottom:1px solid var(--color-gray-20);
}
.footer-wrap .footer-banner-wrap .footer-banner {
	max-width:1352px;
	padding:0 24px;
	margin:0 auto;
}
.footer-link-wrap {
  position: relative;
  background-color: var(--color-gray-0);
  border-left:1px solid var(--color-gray-20);
}
.footer-link-wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
}
.footer-link-wrap ul{
  display: flex;
}
.footer-link-wrap ul > li {
  display: flex;
  flex: 1 1 auto;
}
.footer-link-wrap ul li a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 16px;
  border-right: 1px solid var(--color-gray-20);
  text-align: left;
  white-space: normal;
  letter-spacing: -1px;
  word-spacing: -1px;
  font-size: 15px;
}

.footer-link-wrap ul li a:after{
  content:"";
  display: inline-block;
  background: url(../images/common/ico_open.svg) no-repeat 0 0;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  margin-top:-4px;
  vertical-align: middle;
  background-size: cover;
}

#footer {
	max-width:1352px;
	margin:0 auto;
	padding:40px 24px;
}
#footer .footer-bottom {
	position:relative;
	overflow:hidden;
}
#footer .footer-logo {
	height:48px;
}
#footer .footer-logo img{
	height:48px;
}
#footer .footer-info {
	display:flex;
	justify-content:space-between;
	padding:40px 0;
}
#footer .footer-info .info span {
	display:inline-block;
	margin:0px 10px;
	width:1px;
	height:15px;
	background:#9a9a9a;
	vertical-align:middle;
	font-size:16px;
}
#footer .footer-info .footer-text address {
	margin:0 0 16px 0;
	font-style:normal;
	font-weight:500;
}
#footer .footer-info .footer-text p {
	margin:0 0 8px 0;
	font-weight:700;
}
#footer .footer-info p + p{
	margin:0;
}
#footer .footer-info .footer-text address span {
	color:var(--color-gray-80);
	margin:0 18px;
}
#footer .footer-info .etc-info .item{
	margin:0 0 8px 0;
}
#footer .footer-info .etc-info .item a::after{
	content: "";
    display: inline-block;
    background: url(../images/common/ico_arrow.svg) no-repeat 0 0;
    width: 20px;
    height: 20px;
    margin-left: 5px;
	margin-top:-4px;
    vertical-align: middle;
    background-size: cover;
    transform: rotate(270deg);
}
#footer .footer-btm{
	position:relative;
	padding-top: 16px;
	font-size:15px;
	border-top:1px solid #cdd1d5;
}
#footer .footer-btm > div{
	display:flex;
	flex-wrap:wrap;
	gap:20px;
}
#footer .footer-btm > div .item a{
	font-weight:700;
}
#footer .footer-btm > div .item:nth-child(2) a{
	color: #003682;
}
#footer .footer-btm .copyright{
	margin-top:8px;
}
#footer .footer-sns{
	position:absolute;
	right:0;
	top:16px;
}
#footer .footer-sns li {
	display:inline-block;
	margin-right:10px;
}
#footer .footer-sns li img{
	height:30px;
}
.btn-top-move {
	position:fixed;
	bottom:100px;
	right:100px;
	z-index:100;
}
.btn-top-move a {
	display:block;
	width:64px;
	height:64px;
	padding:39px 0 0 0;
	background:rgba(36,113,197,0.7) url(/static/ucms/images/common/icon-arrow-up.png) no-repeat 50% 15px;
	font-size:12px;
	color:var(--color-gray-0);
	text-align:center;
	border-radius:20px;
}
.header-wrap.fixed ~ #container .contents-wrap {
	margin-top:120px;
}
.top-bom {
	position:fixed;
	bottom:20px;
	right:20px;
	z-index:190;
}
.top-bom a {
  display:block;
  width:50px;
  height:50px;
  background:var(--color-gray-0);
  color:var(--color-secondary-50);
  border:2px solid var(--color-secondary-50);
  font-size:14px;
  border-radius:12px;
  line-height:50px;
  text-align:center;
  box-shadow:0 5px 5px rgba(0, 0, 0, 0.2);
}
.nav {
	position:fixed;
	right:20px;
	top:50%;
	transform:translateY(-50%);
}
.nav ul li {
	width:15px;
	height:15px;
	border-radius:50%;
	background:var(--color-gray-0);
	margin-bottom:15px;
}
.nav ul li.on {
	background:var(--color-secondary-50);
}
.contents-wrap {
	margin:0 auto;
}
.contents {
	flex-grow:1;
	max-width:1352px;
	margin:auto;
	overflow:hidden;
	min-height:700px;
	padding:80px 24px;
}
.contents .inner {
	position:relative;
}
.contents>* {
	letter-spacing:-0.4px;
}
.subvisual {
	height:auto;
		padding:4% 0;
}
.subvisual__title {
	padding-bottom:25px;
	color:var(--color-gray-100);
	text-align:center;
	font-size:50px;
	font-weight:500;
	letter-spacing:-1.25px;
	text-shadow:0px 0px 50px var(--color-gray-0);
}
.subvisual__info {
	color:var(--color-gray-100);
	text-align:center;
	font-size:19px;
	letter-spacing:-1.25px;
	text-shadow:0px 0px 50px var(--color-gray-0);
}
.subvisual.i300001 {
	background:url(/static/ucms/images/contents/subvisual05.png) center center no-repeat;
	background-size:cover;
}
.subvisual.i300005 {
	background:url(/static/ucms/images/contents/subvisual06.png) center center no-repeat;
	background-size:cover;
}
.subvisual.i300003 {
	background:url(/static/ucms/images/contents/subvisual07.png) center center no-repeat;
	background-size:cover;
}
.subvisual.i300007 {
	background:url(/static/ucms/images/contents/subvisual08.png) center center no-repeat;
	background-size:cover;
}
.subvisual.i300018 {
	background:url(/static/ucms/images/contents/subvisual08.png) center center no-repeat;
	background-size:cover;
}
.subvisual.i300025 {
	background:url(/static/ucms/images/contents/subvisual08.png) center center no-repeat;
	background-size:cover;
}
.searchBar fieldset {
	padding:20px;
	margin-bottom:40px;
	background:#fafbff;
	display:flex;
	justify-content:center;
	align-items:center;
}

.searchBar fieldset .mr10{
	margin-right:5px !important;
}
searchBar fieldset.boardForm .filter-sec{
	margin-left:10px;
}
.searchBar fieldset .btnSet .button{
	margin:0;
}
.searchBar fieldset .btnSet .button.button-middle{
	min-width:80px;
}
.searchBar fieldset label {
	margin-right:15px;
	font-size:18px;
	font-weight:500;
	vertical-align:middle;
}
.searchBar fieldset button:focus-visible {
	outline:2px solid red;
	outline-offset:3px;
}
.searchBar fieldset a:focus-visible {
	outline:2px solid red;
	outline-offset:3px;
}
.searchBar .btnSet{
	margin-left:1px;
}
.searchView .both-contents {
	justify-content:space-around;
	align-items:flex-start;
	border:1px solid var(--color-gray-20);
	padding:10px 25px;
	margin-bottom:100px;
	height:275px;
	overflow:auto;
}
.searchView .both-contents>div {
	min-width:50%;
}
.searchView .both-contents ul li.bu2 {
	font-size:17px;
	font-weight:400;
	margin:11px 0;
	line-height:inherit;
}
.searchView .both-contents ul li.bu2 a.on {
	border-bottom:1px solid #666;
}
.searchView .both-contents ul li.bu2 a:hover {
	border-bottom:1px solid #666;
}
.searchView+.item_info {
	width:100%;
	height:400px;
	border:1px solid #999;
}
#content .both-contents.applyGo {
	justify-content:space-evenly;
	margin:80px 0;
}
#content .both-contents.applyGo div {
	width:460px;
	height:200px;
	background:#2c428e;
	border-radius:10px;
	color:var(--color-gray-0);
	position:relative;
}
#content .both-contents.applyGo div.direct {
	background:var(--color-gray-0);
	border:1px solid #2c428e;
	color:#2c428e;
}
#content .both-contents.applyGo div button {
	font-size:24px;
	position:absolute;
	left:50%;
	bottom:0;
	transform:translateX(-50%);
	width:100%;
	height:100%;
	font-weight:500;
	letter-spacing:-2px;
}
#content .both-contents.applyGo div button:hover {
	background:#778fdd;
	border-radius:10px;
}
#content .both-contents.applyGo div button::before {
	content:"";
	display:block;
	background:url(/static/ucms/images/contents/apply01.png) no-repeat 0 0;
	width:63px;
	height:63px;
	margin:auto auto 20px;
}
#content .both-contents.applyGo div button::after {
	content:"";
	background:url(/static/ucms/images/common/icon-arrow-right.png) no-repeat 0 0;
	width:13px;
	height:23px;
	display:inline-block;
	vertical-align:middle;
	margin:-1px 0 0 10px;
}
#content .both-contents div.direct button::before {
	background:url(/static/ucms/images/contents/apply02.png) no-repeat 0 0;
}
#content .both-contents div.direct button::after {
	background:url(/static/ucms/images/common/icon-arrow-rightBl.png) no-repeat 0 0;
}
#content .both-contents div.direct button::after {
	background:url(/static/ucms/images/common/icon-arrow-rightBl.png) no-repeat 0 0;
}
#content .both-contents div.twoType {
	background:#2b2666;
}
#content .both-contents div.twoType p {
	text-align:center;
	font-size:26px;
	padding-top:20px;
}
#content .both-contents div.twoType button {
	width:auto;
	height:auto;
	left:28%;
	bottom:16%;
	padding:5px 22px;
	font-size:17px;
}
#content .both-contents div.twoType button:hover {
	background:none;
}
#content .both-contents div.twoType button::before {
	display:none;
}
#content .both-contents div.twoType button::after {
	display:none;
}
#content .both-contents div.twoType button.load {
	right:-10%;
	left:unset;
}
#content .both-contents.check fieldset ul li {
	padding-left:35px;
	text-indent:-35px;
	margin: 0 0 20px 0;
}
#content .both-contents.check fieldset ul li label{
	line-height:1.5
}
.whiteBox {
	padding:30px;
	background: var(--color-gray-0);
}
/* etc */
.mid-title span {
	margin:0 0 0 6px;
	font-size:14px;
	font-weight:400;
	color:#666;
}
.mid-title.light {
	font-weight:500;
}
.mid-title+.basic-text {
	margin:0 0 40px 0;
}
.mid-title+.list-dot {
	margin:0 0 40px 0;
}
.tbl-scroll-b+.large-title {
	margin-top:70px;
}
.table-view {
	margin:0 0 40px 0;
}
.tbl-scroll-b .table-view {
	margin:0;
}
.checks.title-type label {
	padding-left:35px !important;
	height:28px !important;
	line-height:26px;
}
.bank-account {
	color:#001282;
}
.tbl-scroll-b table {
	table-layout: auto;
}
/* form */
.form-wrap {
	display:table;
	width:100%;
	border:1px solid #e7e7e7;
	border-radius:20px;
	padding:15px 30px 20px;
	margin:0 0 45px 0;
}
.form-wrap .form-group {
	display:flex;
	border-bottom:1px solid #e9e9e9;
}
.form-wrap .form-group .info-group {
	width:200px;
	-webkit-transition:0.3s;
	transition:0.3s;
	-moz-transition:0.3s;
}
.form-wrap .form-group .info-group p {
	font-size:18px;
	padding:15px 10px 0 35px;
}
.form-wrap .form-group .info-group p .req {
	margin-left:-15px;
}
.form-wrap.full-w .form-group .field-group-wrap {
	width:100%;
}
.form-wrap.full-w .form-group .input-group-text {
	font-size:18px;
}
.form-wrap .form-group .input-group-text {
	color:var(--color-gray-80);
}
.form-wrap .form-group .field-group-wrap {
	width:calc(100% - 200px);
}
.form-wrap .form-group .field-group-wrap .field-group {
	display:flex;
	width:100%;
	padding:9px 0;
	color:#707070;
	-webkit-transition:0.3s;
	transition:0.3s;
	-moz-transition:0.3s;
}
.form-wrap .form-group .field-group-wrap .field-group.flex-none {
	display:block;
}
.form-wrap .form-group .field-group-wrap .field-group+.field-group {
	padding-top:0;
}
.form-wrap .form-group .field-group-wrap .field-group .field {
	flex:1;
}
.form-wrap .form-group .field-group-wrap .field-group .field.text-only {
	min-height:42px;
	line-height:40px;
}
.form-wrap .form-group .field-group-wrap .field-group input[type="text"],.form-wrap .form-group .field-group-wrap .field-group input[type="password"],.form-wrap .form-group .field-group-wrap .field-group input[type="num"],.form-wrap .form-group .field-group-wrap .field-group select {
	width:100%;
	height:42px;
	border:1px solid #e7e7e7;
	border-radius:5px;
	color:#707070;
}
.form-wrap .form-group .field-group-wrap .field-group>* {
	margin:0 5px;
}
.form-wrap .form-group .field-group-wrap.email .field-group .field {
	width:calc(33% - 15px);
}
.form-wrap .form-group .field-group-wrap.email .field-group .field:last-child {
	width:calc(33% - 5px);
}
.form-wrap .form-group .field-group-wrap .bar {
	width:20px;
	line-height:38px;
	margin:0;
	font-style:normal;
	text-align:center;
}
.form-wrap .form-group .field-group-wrap .field-group .field-group-text {
	font-size:14px;
	color:#666;
}
.form-wrap .form-group .field-group-wrap .field-group .field-group-text.hidden-text {
	margin:5px 0 0 0;
}
.form-wrap .form-group .field-group-wrap.address .field-group:nth-child(1) .field {
	max-width:calc(33% - 5px);
}
.form-wrap .form-group .field-group-wrap.address .field-group .field-group-text.form-wrap .form-group .field-group-wrap.wauto .field-group input[type="text"],.form-wrap .form-group .field-group-wrap.wauto .field-group select {
	width:auto;
}
.form-wrap .form-group .field-group-wrap .field-group .checks {
	display:inline-block;
	margin:10px 30px 10px 0;
}
.form-wrap .form-group .field-group-wrap .field-group .checks label {
	padding-left:35px;
}
.form-wrap .form-group .field-group-wrap .field-group .checks:last-child {
	margin-right:0;
}
.form-wrap .form-group .field-group-wrap .field-group .filebox {
	display:flex;
	justify-content:space-between;
}
.form-wrap .form-group .field-group-wrap .field-group .filebox .upload-name {
	width:100%;
	margin:0 10px 0 0;
}
.form-wrap .form-group .field-group-wrap .field-group .addfile-list li {
	margin:0 0 5px 0;
}
.form-wrap .form-group .field-group-wrap .field-group .addfile-list li:last-child {
	margin:0;
}
.form-wrap .form-group .field-group-wrap .field-group .addfile-list li a {
	display:inline-block;
	width:14px;
	height:14px;
	background:url(/static/ucms/images/common/icon-close.png) no-repeat 50% 50%;
	text-indent:-9999px;
	background-size:12px 12px;
	vertical-align:text-bottom;
	border:1px solid var(--color-gray-20);
	padding:10px;
	border-radius:3px;
	margin:0 0 0 6px;
}
.form-wrap .form-group .field-group-wrap .field-group .button-middle {
	line-height:40px;
}
.form-wrap .form-group .field-group-wrap .field-group .textarea {
	border-radius:5px;
	width:100%;
	height:240px;
}
.form-wrap .form-group .field-group-wrap .field-group .button-add-file {
	width:42px;
	min-width:42px;
	margin:0 0 0 4px;
}
.form-wrap .form-group .field-group-wrap .field-group .button-add-file:after {
	content:"+";
	position:absolute;
	top:0;
	left:0;
	font-size:28px;
	color:var(--color-gray-0);
	z-index:10;
	width:42px;
	height:42px;
}
.form-wrap .form-group .field-group-wrap .field-group .button-add-file i {
	position:relative;
	display:block;
	text-indent:-9999px;
}
.form-wrap .tax-infomation {
	display:inline-block;
	position:relative;
	margin:10px 10px 20px 25px;
	padding:0 0 0 11px;
	font-size:18px;
	color:var(--color-gray-80);
}
.form-wrap .tax-infomation:after {
	content:"";
	position:absolute;
	top:11px;
	left:0;
	width:4px;
	height:4px;
	border-radius:100%;
	background:#ccc;
}
.form-wrap .tax-infomation:before {
	content:"";
	position:absolute;
	bottom:-2px;
	left:-6px;
	width:calc(100% + 12px);
	height:11px;
	border-radius:5px;
	background:#e9effe;
	z-index:-1;
}
.form-wrap .tax-infomation span {
	font-size:14px;
	color:#ff3d3d;
	margin: 0 0 0 12px;
}
/* 페이지,검색영역*/
div.board-search {
	overflow:hidden;
	position:relative;
	margin-bottom:40px;
	padding:30px;
	background:#f4f5f9;
	border-radius:unset;
}
div.board-search .fieldgroup {
	display:inline-flex;
	width:100%;
	flex:1 auto;
}
div.board-search .fieldgroup.both {
	justify-content:space-between;
}
div.board-search .fieldgroup.both .fieldset {
	max-width:50%;
}
div.board-search .fieldgroup .fieldset {
	display:inline-flex;
	align-items:center;
	flex:1 auto;
}
div.board-search .fieldset .field {
	position:relative;
	display:inline-flex;
	align-items:center;
	flex:1 auto;
	min-width:auto;
	max-width:unset;
	margin:0;
	padding:0
}
div.board-search .fieldset .field input,div.board-search .fieldset .field select {
	width:100%;
	height:40px;
	margin:0 5px;
	border-radius:3px;
	font-size:14px;
	color:#666;
}
div.board-search .fieldset .field .tit {
	position:static;
	margin:0 5px;
	z-index:0;
}
div.board-search .fieldset .button {
	margin:0 5px;
}
div.board-search .fieldset .button-middle {
	height:40px;
	line-height:34px;
	min-width:85px;
	padding:0 10px;
	background:#414a73;
	font-size:14px;
}
div.board-search .fieldset.fieldset-calendar {
	flex:none;
}
div.board-search .fieldset.fieldset-calendar .field button {
	position:absolute;
	top:2px;
	right:5px;
	width:30px;
	height:30px;
	background:url(/static/ucms/images/common/icon-calendar.png) no-repeat 50% 50%;
	text-indent:-9999px;
}
div.board-search .fieldset.fieldset-calendar .field input:read-only {
	background-color:var(--color-gray-0);
}
div.board-search .fieldset.fieldset-calendar .field input {
	max-width:154px;
}
div.board-search .bar {
	display:inline-block;
	width:10px;
	text-align:center;
}
.board-info {
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin:0 0 10px 0;
}
.board-info .board-count {
	position:relative;
	padding:0 0 0 11px;
	font-size:14px;
	color:#7a7a7a;
}
.board-info .board-count span {
	color:#003179;
}
.board-info .board-count:after {
	content:"";
	position:absolute;
	top:9px;
	left:0;
	width:4px;
	height:4px;
	border-radius:100%;
	background:#e10b21;
}
.board-info .count-view select {
	border-radius: 5px;
}
/*Board list*/
.tstyle_list {
	border-top:2px solid #bababa;
	border-bottom:1px solid #e8e8e8;
}
.tstyle_list.type02 {
	border-top:2px solid #4d78d4;
}
.tstyle_list.type02>div.dhead {
	background:#f4f8fd;
}
.tstyle_list.type02>div>ul>li {
	border-left:1px solid #e8e8e8;
}
.tstyle_list.type02>div>ul>li:nth-child(1) {
	border-left:none;
}
.tstyle_list.type02>div.dbody>ul:hover {
	background:var(--color-gray-0)ef2;
}
.tstyle_list>div>ul {
	display:table;
	table-layout:fixed;
	width:100%;
	clear:both;
	overflow:hidden;
}
.tstyle_list>div>ul>li {
	display:table-cell;
	min-height:50px;
	padding:13px 5px;
	text-align:center;
	text-overflow:ellipsis;
	width:10%;
	vertical-align:middle;
}
.tstyle_list>div.dhead,.tstyle_list thead {
	border-bottom:1px solid #e8e8e8
}
.tstyle_list>div.dhead>ul li,.tstyle_list thead th {
	color:var(--color-gray-100);
}
.tstyle_list>div.dbody>ul {
	border-bottom:1px solid #e8e8e8
}
.tstyle_list>div.dbody>ul li {
	color:#666;
}
.tstyle_list>div.dbody>ul:last-child {
	border-bottom:0
}
.tstyle_list>div.dbody>ul.notice li:first-child {
	color:#e10b21;
}
.tstyle_list>div.dhead>ul li.title {
	width:auto;
	text-align:center;
}
.tstyle_list>div.dbody>ul>li.title {
	width:auto;
	text-align:left;
}
.tstyle_list>div.dbody>ul>li.file a {
	text-align:center;
	width:100%;
}
.tstyle_list>div.dbody>ul:hover {
	background:#f6f9fd;
}
.tstyle_list .wid8 {
	width:8%;
}
.tstyle_list .wid10 {
	width:10%
}
.tstyle_list .wid13 {
	width:13%
}
.tstyle_list .wid15 {
	width:15%
}
.tstyle_list .wid16 {
	width:16%
}
.tstyle_list .wid18 {
	width:18%
}
.tstyle_list .wid24 {
	width:24%
}
.tstyle_list .ellipsis {
	display:block;
	vertical-align:top;
	width:100%;
}
.tstyle_list>div.dbody>ul>li a {
	color:#666;
}
.tstyle_list>div.dbody>ul>li a span {
	display:inline-block;
	width:auto;
	overflow:hidden;
	text-align:left;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.tstyle_list .new-article {
	display:inline-block;
	margin-left:5px;
	font-style:normal;
}
.tstyle_list .new-article:after {
	content:"N";
	display:inline-block;
	color:var(--color-gray-0);
	width:18px;
	height:18px;
	font-size:12px;
	line-height:16px;
	background:#346fef;
	border-radius:5px;
	text-align:center;
	margin-top:-2px;
	vertical-align: middle;
}
/*Board View*/
div.tstyle_view {
	border-top:2px solid #bababa;
	border-bottom:1px solid #e8e8e8;
	margin-bottom:30px
}
div.tstyle_view div.title {
	background:var(--color-gray-0);
	color:#003179;
	clear:both;
	font-size:24px;
	font-weight:500;
	padding:25px 20px 15px 30px;
	text-align:left
}
div.tstyle_view ul.head {
	background:var(--color-gray-0);
	border-bottom:1px solid #e8e8e8;
	width:100%;
	text-align:left;
	padding:0 30px 25px;
}
div.tstyle_view ul.head li {
	position:relative;
	display:inline-block;
	padding:5px 45px 5px 0;
	color:#666;
}
div.tstyle_view ul.head li:after {
	content:"";
	position:absolute;
	top:11px;
	left:-22px;
	width:1px;
	height:14px;
	background:#e8e8e8;
}
div.tstyle_view ul.head li:nth-child(1):after {
	display:none;
}
div.tstyle_view ul.head li span {
	margin:0 4px 0 0;
	font-weight:500;
	color:var(--color-gray-80);
}
div.tstyle_view ul.head li.full-w {
	display:block;
}
div.tstyle_view div.tb_contents {
	clear:both;
	padding:30px;
	line-height:180%;
	min-height:150px;
	color:#666;
	word-break:keep-all
}
div.tstyle_view .add-file-list {
	display:flex;
	padding:18px 20px 20px 30px;
	border-bottom:1px solid #e8e8e8;
}
div.tstyle_view .add-file-list span.title {
	display:inline-block;
	margin:0 4px 0 0;
	min-width:56px;
}
div.tstyle_view .add-file-list ul {
	display:inline-block;
}
div.tstyle_view .add-file-list ul li img {
	display:inline-block;
	margin:-2px 4px 0 0;
	;
	vertical-align:middle;
}
div.tstyle_view .add-file-list ul li a i {
	font-style:normal;
	color:#adadad;
}
div.tstyle_view.qna-type div.tb_contents {
	background:#f9f9f9;
}
.recomentList .tb_contents {
	position:relative;
	margin:0 0 20px 0;
	border-bottom:1px solid #d1d1d1;
}
.recomentList .tb_contents .button {
	position:absolute;
	right:0;
	top:0;
	border-radius:0;
	height:100px;
}
.recomentList textarea {
	height:100px;
	padding:10px;
	width:calc(100% - 120px)
}
.recomentList .characterLenDeco {
	color:#666;
	padding:10px 0;
	font-size:14px;
}
.recomentList #commentList .cmmntList {
	border-bottom:1px solid #d1d1d1;
}
.recomentList #commentList .cmmntList .cmtBody {
	padding:10px 10px 0 10px;
	color:#666;
	font-size:14px;
}
.recomentList #commentList .cmmntList .txtDesc {
	padding:10px 0;
}
.recomentList .cmmntUpdtDiv textarea {
	width:100%;
	margin:0 0 10px 0;
}
.recomentList .cmtFoot {
	padding:10px;
}
.recomentList .row {
	padding:10px;
}
.recomentList .row .vline,.recomentList .cmtFoot .vline {
	display:none;
}
.recomentList .b-edit,.recomentList .b-cancel,.recomentList .b-del {
	border:1px solid #d1d1d1;
	padding:2px 6px;
	border-radius:5px;
	font-size:13px;
	color:#666;
}
#faqList {
	border-top:2px solid #bababa;
	margin:0 0 40px 0;
}
#faqList dt {
	overflow:hidden;
	position:relative;
	display:block;
	padding:18px 30px;
	border-bottom:1px solid #e8e8e8;
}
#faqList dt:after {
	content:"";
	position:absolute;
	top:24px;
	right:30px;
	text-indent:-9999px;
	border-top:2px solid #5d5d5d;
	border-right:2px solid #5d5d5d;
	width:6px;
	height:6px;
	transform:rotate(135deg);
	-webkit-transform:rotate(135deg);
	-moz-transform:rotate(135deg);
	-webkit-transition:0.2s;
	transition:0.2s;
	-moz-transition:0.2s;
}
#faqList dt.open {
	background:#f6f9fd;
}
#faqList dt .qna_img {
	text-indent:-9999px;
	position:absolute;
}
#faqList dt.open:after {
	top:28px;
	border-color:#5d5d5d;
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
}
#faqList dd {
	color:#666;
	background:#f9f9f9;
	padding:30px;
	border-bottom:1px solid #e8e8e8;
}
#faqList dd p,#faqList dd span {
	background:none !important;
}
.faq-wrap {
	border-top:2px solid #bababa;
	margin:0 0 40px 0;
}
.faq-wrap>ul>li,.faq-wrap .list-dot>li {
	border-bottom:1px solid #e8e8e8;
}
.faq-wrap li .question {
	overflow:hidden;
	position:relative;
	display:block;
	padding: 18px 30px;
}
.faq-wrap li .question a p,.faq-wrap li .question p {
	/*float:left;*/
	color:var(--color-gray-70);
}
.faq-wrap li .question a p span,.faq-wrap li .question p span {
	display:inline-block;
	font-size:20px;
	color:var(--color-gray-70);
	font-weight:700;
	text-align:center;
	margin-top:-2px;
}
.faq-wrap li .question a p+p,.faq-wrap li .question p+p {
	width:calc(100% - 75px);
}
.faq-wrap li .answer {
	display:none;
	color:#666;
	background:#f9f9f9;
	padding:30px;
}
.faq-wrap li .answer p {
	line-height:32px;
}
.faq-wrap li .answer ul li ul li {
	line-height:32px;
}
.faq-wrap li .answer ul.list-dot>li {
	margin:0 0 15px 0;
}
.faq-wrap li .answer ul.list-dot strong {
	display:initial;
}
.faq-wrap li.active .question a p {
	color:var(--color-gray-70);
	font-weight:500;
}
.faq-wrap li.active .question a {
	background:#f6f9fd;
}
.faq-wrap li .question a:after {
	content:"열기";
	position:absolute;
	top:20px;
	right:30px;
	text-indent:-9999px;
	border-top:2px solid #5d5d5d;
	border-right:2px solid #5d5d5d;
	width:10px;
	height:10px;
	transform:rotate(135deg);
	-webkit-transform:rotate(135deg);
	-moz-transform:rotate(135deg);
}
.faq-wrap li.active .question a:after {
	content:"닫기";
	top:25px;
	border-color:#5d5d5d;
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
}
.faq-wrap .faq-visible .question {
	display:block;
	width:100%;
}
.faq-wrap .faq-visible .answer {
	display:block;
}
div.board-search .e-learn-tit {
	text-align:center;
	font-size:18px;
	color:#003179;
	margin:0 0 10px 0;
}
.card-list {
	clear:both;
	overflow:hidden;
	padding:5px;
}
.card-list .card-item {
	padding:20px;
	float:left;
	width:31.59%;
	margin:0 2%;
	border:1px solid #e7e7e7;
	margin:0 2.6% 25px 0;
	overflow:hidden;
	border-radius:20px;
}
.card-list .card-item:hover {
	border-color:#346fef;
	box-shadow:0 0 10px rgba(0,0,0,0.2);
	-webkit-transition:0.2s;
	transition:0.2s;
	-moz-transition:0.2s;
}
.card-list .card-item:nth-child(3n) {
	margin-right:0
}
.card-list .card-item .thumb-img {
	display:block;
	overflow:hidden;
	position:relative;
	width:100%;
	height:0;
	padding-bottom:61%;
	margin:0 auto 11px;
	text-align:center;
}
.card-list .card-item .thumb-img img {
	width:100%;
	min-height:160px;
}
.card-list .card-item dl dt {
	margin:0 0 3px 0;
	font-size:14px;
	color:#4d78d4;
}
.card-list .card-item dl dd {
	margin:0 0 4px 0;
	color:#666;
	height:50px;
	overflow:hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
}
.card-list .card-item .info {
	margin:0 0 16px 0;
}
.card-list .card-item .info li {
	display:inline-block;
	border-radius:5px;
	font-size:13px;
	padding:2px 7px;
	margin:0 4px 0 0;
}
.card-list .card-item .info li.period {
	border:1px solid #ff2626;
	color:#ff2626;
}
.card-list .card-item .info li.price {
	border:1px solid #003179;
	color:#003179;
}
.card-list .card-item .btm-area {
	position:relative;
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:16px 0 4px 0;
}
.card-list .card-item .btm-area:after {
	content:"";
	position:absolute;
	top:0;
	left:-50%;
	width:200%;
	height:1px;
	background:#e7e7e7
}
.card-list .card-item .btm-area a {
	display:inline-block;
	width:80px;
	font-size:14px;
	color:var(--color-gray-0);
	background:#346fef;
	border-radius:5px;
	text-align:center;
	line-height:30px;
}
.card-list .card-item .btm-area p+p {
	color:var(--color-gray-100);
}
.pageButton.btn-right {
	position:absolute;
	right:0;
	top:5px;
}
.process_state01 {
	width:100%;
	margin-bottom:80px;
}
.process_state01 ul {
	width:100%;
	display:flex;
	justify-content:space-evenly;
}
.process_state01 ul li {
	width:16%;
	height:80px;
	border-radius:50px;
	border:1px solid #e7e7e7;
	padding:5px;
	position:relative;
}
.process_state01 ul li::before {
	content:"";
	width:70px;
	height:70px;
	border-radius:50%;
	display:inline-block;
	position:absolute;
	left:5px;
	top:4px;
}
.process_state01 ul li::after {
	display:inline-block;
	background:url(/static/ucms/images/common/icon-arrow-rightBl.png) no-repeat 0 0;
	content:"";
	width:13px;
	height:23px;
	position:absolute;
	right:-33px;
	top:50%;
	transform:translateY(-50%);
}
.process_state01 ul li:last-child::after {
	display:none;
}
.process_state01 ul li>div {
	padding:7px 0 0 90px;
}
.process_state01 ul li>div span {
	color:#585858;
	font-size:16px;
}
.process_state01 ul li>div p {
	color:var(--color-gray-100);
	font-size:17px;
	font-weight:500;
}
.process_state01 ul li:first-child>div p {
	line-height:17px;
}
.process_state01 ul li.on {
	background:#344b91;
	border:1px solid #344b91;
}
.process_state01 ul li.on>div span {
	color:#a2c5f7;
}
.process_state01 ul li.on>div p {
	color:var(--color-gray-0);
}
.process_state01 ul li:nth-child(1)::before {
	background:url(/static/ucms/images/contents/step01.png) no-repeat 0 0;
}
.process_state01 ul li:nth-child(2)::before {
	background:url(/static/ucms/images/contents/step02.png) no-repeat 0 0;
}
.process_state01 ul li:nth-child(3)::before {
	background:url(/static/ucms/images/contents/step03.png) no-repeat 0 0;
}
.process_state01 ul li:nth-child(4)::before {
	background:url(/static/ucms/images/contents/step04.png) no-repeat 0 0;
}
.process_state01 ul li:nth-child(5)::before {
	background:url(/static/ucms/images/contents/step05.png) no-repeat 0 0;
}
.process_state01 ul li.on:nth-child(1)::before {
	background:url(/static/ucms/images/contents/step01_on.png) no-repeat 0 0;
}
.process_state01 ul li.on:nth-child(2)::before {
	background:url(/static/ucms/images/contents/step02_on.png) no-repeat 0 0;
}
.process_state01 ul li.on:nth-child(3)::before {
	background:url(/static/ucms/images/contents/step03_on.png) no-repeat 0 0;
}
.process_state01 ul li.on:nth-child(4)::before {
	background:url(/static/ucms/images/contents/step04_on.png) no-repeat 0 0;
}
.process_state01 ul li.on:nth-child(5)::before {
	background:url(/static/ucms/images/contents/step05_on.png) no-repeat 0 0;
}
.process_state02 {
	width:100%;
	border:1px solid #e6e6e6;
	background:url(/static/ucms/images/contents/process_on_01.png) no-repeat 0 0;
}
.process_state02 ul {
	display:flex;
}
.process_state02 ul li {
	width:50%;
	padding:27px 40px;
}
.process_state02 ul li.on span {
	color:var(--color-gray-0);
}
.process_state02 ul li span {
	color:var(--color-gray-80);
	font-size:20px;
	font-weight:600;
}
.process_state02 ul li span::before {
	display:inline-block;
	content:"";
	width:26px;
	height:26px;
	background:url(/static/ucms/images/common/icon-write.png) no-repeat 0 0;
	vertical-align:bottom;
	margin-right:15px;
}
table.process_state03 td div {
	padding:10px;
	border:1px solid var(--color-gray-20);
	color:#666;
	border-radius:3px;
	font-size:16px;
}
table.process_state03 td.on div {
	background:#244773;
	color:var(--color-gray-0);
}
.chart-wrap {
	width:100%;
	overflow:hidden;
	position:relative;
	display:flex;
	justify-content:space-between;
}
.chart-wrap .chart-box {
	width:23%;
	text-align:center;
}
.chart-wrap .chart-box div {
	width:100%;
	height:150px;
	border:1px solid #e2e2e2;
	margin-bottom:15px;
}
.chart-wrap .chart-box div strong {
	display:block;
	height:45px;
	background:#f7f7f7;
	line-height:45px;
}
.chart-wrap .chart-box div p {
	display:flex;
	justify-content:center;
	align-items:center;
	height:102px;
}
.sub.tab-list {
	background:var(--color-gray-0);
	justify-content:space-between;
	margin-bottom:0;
}
.sub.tab-list li a {
	display:inline-block;
	width:100%;
	font-size:17px;
	border:1px solid #dfdfdf;
	border-radius:10px 10px 0 0;
	border-bottom:0;
}
.sub.tab-list li a h4 {
	display:table-cell;
	width:1%;
	height:50px;
	text-align:center;
	vertical-align:middle;
	color:#666;
	font-weight:500;
	border-right:none;
}
.sub.tab-list li.on a h4 {
	background:#005bac;
	color:var(--color-gray-0);
	border-radius:10px 10px 0 0;
}
.sub.tab-list li a span {
	display:table-cell;
	width:1%;
	height:50px;
	text-align:center;
	vertical-align:middle;
	color:#666;
	font-weight:500;
	border-right:none;
}
.sub.tab-list li.on a span {
	position:relative;
	background:#005bac;
	color:var(--color-gray-0);
	border-radius:10px 10px 0 0;
}
.sub.tab-list li.on a span::before {
	content:"";
	position:absolute;
	top:2px;
	left:2px;
	border:1px dashed var(--color-gray-0);
	width:calc(100% - 6px);
	height:calc(100% - 6px);
	border-radius: 6px 6px 0 0;
}
/* 마이페이지 탭 */
.sub.mp.tab-list {
	justify-content:flex-start;
	margin-bottom:70px;
	border-bottom:1px solid #dfdfdf;
}
.sub.mp.tab-list li a {
	display:inline-block;
	width:100%;
	font-size:16px;
	border:1px solid #dfdfdf;
	position:relative;
	border-radius:0;
	border-bottom:0;
	background:#f7f7f7;
}
.sub.mp.tab-list li a h4 {
	height:75px;
	font-size:18px;
}
.sub.mp.tab-list li.on a h4 {
	background:var(--color-gray-0);
	color:#005bac;
	border-radius:0;
	font-weight:600;
}
.sub.mp.tab-list li.on a::after {
	display:block;
	content:"";
	width:100%;
	height:3px;
	background:#005bac;
	position:absolute;
	left:0px;
	top:0;
	border:1px solid #005bac;
	border-right:0;
}
.imgbox {
	width:100%;
	height:auto;
	padding:50px 60px;
	background:#fbfbfb;
	margin-bottom:50px;
}
.comment-box.small {
	padding:35px;
	text-align:center;
	font-weight:500;
	font-size:18px;
	line-height:30px;
}
.comment-box.small .basic-text {
	line-height:30px;
}
.agreementBox {
	width:100%;
	max-height:370px;
	overflow-y:auto;
	border-top:1px solid #e2e2e2;
	border-bottom:1px solid #e2e2e2;
}
.agreementBox .mid-title {
	width:100%;
	height:70px;
	line-height:70px;
	color:var(--color-gray-80);
	background:#fbfbfb;
	padding:0 15px;
}
.agreementBox>div {
	padding:30px;
}
.agreementBox>div p {
	font-weight:600;
	font-size:18px;
}
.agreementBox>div ul li {
	color:#666;
}
.agreementBox.btnbox {
	width:100%;
	max-height:inherit;
	border-bottom:none;
}
.agreementBox.btnbox>div {
	padding:0 0 15px 0;
}
.agreementBox.btnbox .both-contents>div {
	width:49%;
	height:85px;
	line-height:85px;
}
.agreementBox.btnbox .both-contents>div a {
	display:inline-block;
	width:100%;
	height:100%;
	padding-left:40px;
	border:1px solid #e2e2e2;
	font-size:20px;
	color:#666;
	font-weight:500;
}
.agreementBox.btnbox .both-contents>div a::before {
	display:inline-block;
	content:"";
	width:40px;
	height:45px;
	vertical-align:middle;
	margin-right:15px;
}
.agreementBox.btnbox .both-contents:nth-of-type(1)>div:nth-child(1) a::before {
	background:url(/static/ucms/images/contents/icon-certify01.png) no-repeat 0 0;
}
.agreementBox.btnbox .both-contents:nth-of-type(1)>div:nth-child(2) a::before {
	background:url(/static/ucms/images/contents/icon-certify02.png) no-repeat 0 0;
}
.agreementBox.btnbox .both-contents:nth-of-type(2)>div:nth-child(1) a::before {
	background:url(/static/ucms/images/contents/icon-certify03.png) no-repeat 0 0;
}
.agreementBox.btnbox .both-contents:nth-of-type(2)>div:nth-child(2) a::before {
	background:url(/static/ucms/images/contents/icon-certify04.png) no-repeat 0 0;
}
.agreementBox.btnbox .both-contents:nth-of-type(3)>div:nth-child(1) a::before {
	background:url(/static/ucms/images/contents/icon-certify05.png) no-repeat 0 0;
}
.agreementBox.btnbox .both-contents:nth-of-type(3)>div:nth-child(2) a::before {
	background:url(/static/ucms/images/contents/icon-certify06.png) no-repeat 0 0;
}
.agreementBox.btnbox .both-contents>div a:hover {
	border:1px solid #2c428e;
	color:#2c428e;
}
.table-view .table.applyresult ul li {
	margin-bottom:15px;
}
.table-view .table.applyresult ul li:last-child {
	margin-bottom:0;
}
.table-view .table.applyresult ul li dl {
	display:flex;
}
.table-view .table.applyresult ul li dl dt {
	font-size:18px;
	margin:0 5px;
}
.table-view .table.applyresult ul li dl dd.both::after {
	display:inline-block;
	content:"";
	width:1px;
	height:13px;
	background:#999;
	vertical-align:baseline;
	margin:0 0 0 8px;
}
.table-view .table.applyresult ul li dl dd {
	font-size:18px;
	margin:0 5px;
}
.table.finance {
	padding:35px 50px;
	border-top:1px solid #e2e2e2;
	border-bottom:1px solid #e2e2e2;
}
.table-view .table.finance td:last-child {
	background:unset
}
.table.finance dl {
	display:flex;
}
.table.finance dl>dt,.table.finance dl>dd {
	font-size:18px;
	color:#2c428e;
	margin:0 0px 15px 0;
	padding-left:10px;
	font-weight:500;
	position:relative;
}
.table.finance dl>dt::before {
	display:inline-block;
	content:"";
	width:4px;
	height:4px;
	background:#2c428e;
	border-radius:50%;
	position:absolute;
	left:0;
	top:50%;
}
.table.finance dl>dd {
	color:#666;
}
.table.finance tr td>span {
	display:block;
	content:"";
	width:45px;
	height:45px;
	margin:auto;
	background:url(/static/ucms/images/common/icon-detail.png) no-repeat 0 0;
}
.table.finance tr:hover td span {
	background: url(/static/ucms/images/common/icon-detail_hover.png) no-repeat 0 0;
}
/* 통합검색 */
.searchSec {
	position:relative;
	margin-bottom:40px;
}
.searchSec.attach {
	margin-bottom:0;
}
.searchSec .searchTit {
	height:60px;
	line-height:60px;
	border-bottom:1px solid var(--color-gray-100);
}
.searchSec .searchTit h5 {
	font-size:20px;
	line-height:18px;
	margin-right:10px;
	font-weight:500;
	display:inline-block;
}
.searchSec .searchTit span {
	font-size:16px;
	line-height:18px;
	font-weight:500;
}
.searchSec .searchTit span.more {
	float:right;
	text-indent:-9999px;
}
.searchSec .searchTit span.more::after {
	display:inline-block;
	content:"";
	width:38px;
	height:38px;
	float:right;
	margin-top:10px;
	background:url(../images/common/icon-more.png) no-repeat 0 0;
}
.searchSec .search-more a{
	position:absolute;
	top:20px;
	right:0;
	background:url(../images/common/icon-more.png) no-repeat 0 0;
	background-size:24px;
	padding-left:32px;
}
.searchSec .searchCont a {
	padding:25px 0;
	border-bottom:1px solid #e0e0e0;
	display:block;
}
.searchSec .searchCont a:hover {
	background:#f4f8ff
}
.searchSec .searchCont dl {
	display:flex;
	justify-content:space-between;
	margin-bottom:20px;
}
.searchSec .searchCont dl dt {
	font-size:18px;
	font-weight:500;
}
.searchSec .searchCont dl dd {
	font-size:16px;
	font-weight:600;
	color:#808080;
}
.searchSec .searchCont p {
	margin:23px 0;
	color:#666;
}
.searchSec .searchCont .route {
	color:#808080
}
.searchSec .searchCont .route .location-home {
	width:20px;
	height:20px;
	vertical-align:middle;
	background:url(/static/ucms/images/common/icon-home.png) center center no-repeat;
	display:inline-block;
}
.searchSec .searchCont .route .location-arr {
	vertical-align:middle;
	background:url(/static/ucms/images/common/icon-arrow-up02.png) no-repeat 50% 50%;
	margin:0 10px;
	width:7px;
	height:20px;
	background-size:contain;
	transform:rotate(90deg);
	display:inline-block;
}
.searchSec.menu .searchCont span {
	color: var(--color-secondary-50);
}
.hgroup .location-arr {
		margin:0 5px;
    display:inline-block;
    height:8px;
	}
/* 레이어 영역 */
/* 얼럿레이어 */
.wrap-layer-popup.alert-layer {
	padding:15% 0 0 0;
}
.wrap-layer-popup.alert-layer>.inner-layer-popup {
	width:500px;
	height:300px;
}
.wrap-layer-popup.alert-layer .wrap-layer-popup-title {
	height:45px;
	padding:15px 20px 0;
	background:#2b406a;
}
.wrap-layer-popup.alert-layer .wrap-layer-popup-title .title {
	color:var(--color-gray-0);
	font-weight:500;
	line-height:18px;
	font-size:18px;
	padding:0;
	border:none;
}
.wrap-layer-popup.alert-layer .btn-layer-close {
	position:absolute;
	right:20px;
	top:15px;
	width:16px;
	height:16px;
	z-index:100;
	background:url(/static/ucms/images/common/icon-close_sm.png) no-repeat 0 0;
	background-size:contain;
}
.wrap-layer-popup.alert-layer .layer-popup-contents {
	max-height:200px;
}
.wrap-layer-popup.alert-layer .layer-popup-contents>.inner-wrap {
	padding:40px 0 0;
}
.wrap-layer-popup.alert-layer .layer-popup-bottom {
	padding:20px 0;
}
.wrap-layer-popup.alert-layer .layer-popup-bottom button {
	width:80px;
	height:30px;
	color:var(--color-gray-0);
	background:#141943;
	font-weight:400;
	border-radius:3px;
	font-size:15px;
	border:none;
}
.wrap-layer-popup.alert-layer .layer-popup-bottom .btnSet {
	float:none;
	margin:0;
}
.wrap-layer-popup.alert-layer02 {
	padding:15% 0 0 0;
}
.wrap-layer-popup.alert-layer02>.inner-layer-popup {
	width:650px;
}
.wrap-layer-popup.alert-layer02 .wrap-layer-popup-title {
	height:45px;
	padding:15px 20px 0;
	background:#2b406a;
}
.wrap-layer-popup.alert-layer02 .wrap-layer-popup-title .title {
	color:var(--color-gray-0);
	font-weight:500;
	line-height:18px;
	font-size:18px;
	padding:0;
	border:none;
}
.wrap-layer-popup.alert-layer02 .btn-layer-close {
	position:absolute;
	right:20px;
	top:15px;
	width:16px;
	height:16px;
	z-index:100;
	background:url(/static/ucms/images/common/icon-close_sm.png) no-repeat 0 0;
	background-size:contain;
}
.wrap-layer-popup.alert-layer02 .layer-popup-contents {
	max-height:400px;
}
.wrap-layer-popup.alert-layer02 .layer-popup-contents>.inner-wrap {
	padding:40px 0;
}
.wrap-layer-popup.alert-layer02 .layer-popup-bottom button {
	width:80px;
	height:30px;
	color:var(--color-gray-0);
	background:#141943;
	margin:10px auto;
	font-weight:400;
	border-radius:3px;
	font-size:15px;
	border:none;
}
.wrap-layer-popup.alert-layer02 .layer-popup-bottom .btnSet {
	float:none;
	margin: 0;
}
/* 푸터레이어 */
/* 메인팝업레이어 */
.wrap-layer-popup.account-layer.infoLayer {
	display:block;
	max-width:700px;
	padding:1%;
	height:auto;
}
.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup {
	border:5px solid #26416d;
	max-width:650px;
}
.wrap-layer-popup.account-layer.infoLayer .layer-popup-contents p {
	font-size:20px;
}
.wrap-layer-popup.account-layer.infoLayer .inner-wrap {
	padding:30px 0;
}
.wrap-layer-popup.account-layer.infoLayer02 {
	display:block;
	max-width:700px;
	margin:1% 0 0 36%;
	height:auto;
	padding:0;
}
.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup {
	border:5px solid #26416d;
	max-width:650px;
}
.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup .title {
	font-size:26px;
}
.wrap-layer-popup.account-layer.infoLayer02 .layer-popup-contents p {
	font-size:20px;
}
.wrap-layer-popup.account-layer.infoLayer02 .inner-wrap {
	padding:30px 0 58px;
}
.wrap-layer-popup.account-layer.infoLayer .today {
	position:absolute;
	right:10px;
	bottom:5px;
	cursor:pointer;
}
.wrap-layer-popup.account-layer.infoLayer .today label {
	cursor: pointer;
}
/* 간편인증레이어 */
.wrap-layer-popup.certify-layer {
	padding:3% 0 0 0;
}
.wrap-layer-popup.certify-layer>.inner-layer-popup {
	width:900px;
}
.wrap-layer-popup.certify-layer .wrap-layer-popup-title {
	height:45px;
	padding:15px 20px 0;
	background:#344b91;
}
.wrap-layer-popup.certify-layer .wrap-layer-popup-title .title {
	color:var(--color-gray-0);
	font-weight:500;
	line-height:18px;
	font-size:18px;
	padding:0;
	border:none;
}
.wrap-layer-popup.certify-layer .btn-layer-close {
	position:absolute;
	right:20px;
	top:15px;
	width:16px;
	height:16px;
	z-index:100;
	background:url(/static/ucms/images/common/icon-close_sm.png) no-repeat 0 0;
	background-size:contain;
}
.wrap-layer-popup.certify-layer .layer-popup-contents {
	max-height:760px;
	padding:0 50px;
}
.wrap-layer-popup.certify-layer .layer-popup-contents>.inner-wrap {
	padding:50px 0;
}
.wrap-layer-popup.certify-layer .layer-popup-bottom {
	height:50px;
	display:flex;
}
.wrap-layer-popup.certify-layer .layer-popup-bottom button {
	height:50px;
	color:var(--color-gray-0);
	background:#141943;
	font-weight:400;
	line-height:inherit;
	border-radius:0;
	font-size:16px;
	border:none;
}
.wrap-layer-popup.certify-layer .layer-popup-bottom button.close {
	width:40%;
	background:#555;
}
.wrap-layer-popup.certify-layer .layer-popup-bottom button.certify {
	width:60%;
	background:#2c428e;
}
.wrap-layer-popup.certify-layer .layer-popup-contents .certifyBox {
	height:130px;
	margin:auto auto 50px;
	text-align:center;
}
.wrap-layer-popup.certify-layer .layer-popup-contents .certifyBox::before {
	display:block;
	content:"";
	margin:auto;
	width:70px;
	height:70px;
}
.wrap-layer-popup.certify-layer .layer-popup-contents .certifyBox.naver::before {
	background:url(/static/ucms/images/common/icon-naver.png) no-repeat 0 0;
}
.wrap-layer-popup.certify-layer .layer-popup-contents .certifyBox.kakao::before {
	background:url(/static/ucms/images/common/icon-kakao.png) no-repeat 0 0;
}
.wrap-layer-popup.certify-layer .layer-popup-contents .certifyBox label {
	display:block;
}
.wrap-layer-popup.certify-layer .table-list table label {
	font-size:16px;
}
.wrap-layer-popup.depth02-layer .inner-layer-popup {
	max-width: 530px;
}
/* 구비서류 레이어 */
.wrap-layer-popup.docu-layer {
	padding:3% 0 0 0;
}
.wrap-layer-popup.docu-layer .wrap-layer-popup-title {
	height:45px;
	padding:15px 20px 0;
	background:#344b91;
}
.wrap-layer-popup.docu-layer .wrap-layer-popup-title .title {
	color:var(--color-gray-0);
	font-weight:500;
	line-height:18px;
	font-size:18px;
	padding:0;
	border:none;
}
.wrap-layer-popup.docu-layer .btn-layer-close {
	position:absolute;
	right:20px;
	top:15px;
	width:16px;
	height:16px;
	z-index:100;
	background:url(/static/ucms/images/common/icon-close_sm.png) no-repeat 0 0;
	background-size:contain;
}
.wrap-layer-popup.docu-layer .layer-popup-contents {
	max-height:700px;
	padding:0 50px;
}
.wrap-layer-popup.docu-layer .layer-popup-contents>.inner-wrap {
	padding:50px 0;
}
.wrap-layer-popup.docu-layer .layer-popup-bottom button {
	width:130px;
	height:50px;
	color:var(--color-gray-0);
	background:#2c428e;
	margin:10px auto;
	font-weight:400;
	border-radius:3px;
	border:none;
}
.wrap-layer-popup.docu-layer .layer-popup-bottom button.close {
	width:40%;
	background:#555;
}
.wrap-layer-popup.docu-layer .table-list table th,.wrap-layer-popup.docu-layer .table-list table td {
	padding:15px 10px;
}
.wrap-layer-popup.docu-layer .table-list table td {
	position: relative;
}
/* 신청완료확인서 레이어 */
.wrap-layer-popup.compltDocu-layer {
	padding:3% 0 0 0;
}
.wrap-layer-popup.compltDocu-layer>.inner-layer-popup {
	width:1020px;
}
.wrap-layer-popup.compltDocu-layer .wrap-layer-popup-title {
	height:45px;
	padding:15px 20px 0;
	background:#344b91;
}
.wrap-layer-popup.compltDocu-layer .wrap-layer-popup-title .title {
	color:var(--color-gray-0);
	font-weight:500;
	line-height:18px;
	font-size:18px;
	padding:0;
	border:none;
}
.wrap-layer-popup.compltDocu-layer .btn-layer-close {
	position:absolute;
	right:20px;
	top:15px;
	width:16px;
	height:16px;
	z-index:100;
	background:url(/static/ucms/images/common/icon-close_sm.png) no-repeat 0 0;
	background-size:contain;
}
.wrap-layer-popup.compltDocu-layer .layer-popup-contents {
	max-height:690px;
	padding:0 50px;
}
.wrap-layer-popup.compltDocu-layer .layer-popup-contents>.inner-wrap {
	padding:50px 0;
}
.wrap-layer-popup.compltDocu-layer .table-list table th,.wrap-layer-popup.compltDocu-layer .table-list table td {
	padding:15px 35px
}
.pcHide {
	display: none !important;
}
/* uiux */
body {
	line-height: 1.5;
}
.searchCont dl{
	display: flex;
}
.searchCont dd{
	flex-basis: 120px;
	min-width: 120px;
		text-align: right;
}
.searchCont dt{
	flex-grow: 1;
	min-width: 0;
	word-wrap: break-word;
}
/* 스크롤 동작 */
.b-hid .wrap.scroll-down .header-wrap #header{
  -webkit-transform:translateY(0);
  transform:translateY(0);
}
.wrap[class*=scroll] .header-wrap {
	position:relative;
}
.wrap[class*=scroll] .header-wrap #header {
	position:fixed;
	top:0;
	left:0;
	z-index:100;
	width:100%;
	background-color:var(--color-gray-0);
	-webkit-transition:-webkit-transform ease 0.4s 0.01s;
	transition:-webkit-transform ease 0.4s 0.01s;
	transition:transform ease 0.4s 0.01s;
	transition:transform ease 0.4s 0.01s,-webkit-transform ease 0.4s 0.01s;
}
.wrap.scroll-down .header-wrap #header {
	-webkit-transform:translateY(calc(-100% - 77px));
	transform:translateY(calc(-100% - 77px));
}
.wrap.scroll-up .header-wrap #header {
	-webkit-transform:translateY(0);
	transform: translateY(0);
}
.header-wrap #header .h-inner {
	display:flex;
	align-items:center;
	justify-content:space-between;
	/* flex-direction:column;*/
	width:100%;
	max-width:1352px;
	padding:40px 24px 16px;
	margin:0 auto;
	position:relative;
}
.header-wrap #header .h-inner>div {
	text-align: right;
}
/* util dropdown */
.header-util{
	position: absolute;
	top: 10px;
	right: 24px;
}
.zoom-drop {
	display:inline-flex;
	position:relative;
}
.zoom-drop > button{
	position:relative;
	font-size:15px;
}
.zoom-drop > button::after{
	content: "";
    display: inline-block;
    background: url(../images/common/ico_arrow.svg) no-repeat 0 0;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    vertical-align: middle;
    margin-top: -4px;
    background-size: cover;
	-webkit-transition:0.3s;
	transition:0.3s;
	-moz-transition:0.3s;
}
.zoom-drop.active > button::after{
	transform:rotate(180deg);
}
.zoom-drop .drop-menu {
	display:none;
	position:absolute;
	top:14px;
	left:0;
	z-index:6;
	min-width:170px;
	margin-top:16px;
	border:1px solid var(--color-gray-20);
	border-radius:16px;
	background-color:var(--color-gray-0);
	box-shadow:0 0.4px 1.2px 0 rgba(0,0,0,0.12);
	transform:translateX(-50%);
}
.zoom-drop .drop-menu:before {
	display:inline-flex;
	position:absolute;
	left:50%;
	bottom:100%;
	width:2px;
	height:1.2px;
	content:"";
	transform:translateX(-50%);
}
.zoom-drop .drop-menu .drop-in {
	display:flex;
	align-items:flex-start;
	justify-content:flex-start;
	flex-direction:column;
	gap:10px;
}
.zoom-drop .drop-menu .drop-top-info {
	width:100%;
}
.zoom-drop .drop-menu .drop-btm-btn {
	display:flex;
	width:100%;
	padding:10px 0;
	border-top:1px solid var(--color-gray-20);
	align-items:flex-start;
	justify-content:center;
	flex-direction:row;
}
.zoom-drop .drop-menu .drop-btm-btn .reset-btn {
	flex:1;
	position:relative;
}
.zoom-drop .drop-menu .drop-btm-btn .reset-btn::before{
	content:"";
	width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 4px;
	background: url(../images/common/ico_reset.png) no-repeat 0 0;
}
.zoom-drop .drop-menu .drop-list {
	width:100%;
	padding:10px;
}
.zoom-drop .drop-menu .drop-list .item-link {
	display:flex;
	width:100%;
	height:48px;
	border-radius:6px;
	font-size:16px;
	padding:0 10px;
	align-items:center;
	justify-content:flex-start;
	flex-direction:row;
}
.zoom-drop .drop-menu .drop-list .item-link:hover {
	background-color:#edf1f5;
}
.zoom-drop .drop-menu .drop-list .item-link:active {
	background-color:#d6e0eb;
}
.zoom-drop.active .drop-menu {
	display:block;
}
.zoom-drop .item-link:before {
	display:inline-flex;
	width:25px;
	height:25px;
	padding:2px;
	border:0.1px solid var(--color-gray-20);
	border-radius:4px;
	background-color:var(--color-gray-0);
	content:"가";
	line-height:1;
	margin-right:10px;
	align-items:center;
	justify-content:center;
	flex-direction:row;
	flex-shrink:0;
}
.zoom-drop .active .item-link {
	background-color:#eef2f7;
	color:#052b57;
	font-weight:700;
}
.zoom-drop .active .item-link:before {
	background-color:#063a74;
	color:var(--color-gray-0);
}
.zoom-drop .item-link.xsm:before {
	width:21px;
	height:21px;
	font-size:15px;
}
.zoom-drop .item-link.sm:before {
	width:24px;
	height:24px;
	font-size:17px;
}
.zoom-drop .item-link.md:before {
	width:25px;
	height:25px;
	font-size:19px;
}
.zoom-drop .item-link.lg:before {
	width:27px;
	height:27px;
	font-size:21px;
}
.zoom-drop .item-link.xlg:before {
	width:30px;
	height:30px;
	font-size:25px;
}
.gov_top {
	position:relative;
	overflow:hidden;
	min-height:32px;
	line-height:32px;
	font-size:14px;
	z-index:100;
}
.gov_top:before {
	content:"";
	position:absolute;
	width:500%;
	height:100%;
	top:0;
	left:50%;
	background-color:#eef2f7;
	transform:translateX(-50%);
	z-index:-1;
}
.gov_top .inner {
	max-width:1352px;
	margin:0 auto;
	padding:0 24px;
}
.gov_top .inner img {
	margin:-2px 8px 0 0;
}
.gov_top .inner .gov_desc span{
	display:inline-block;
	vertical-align:middle;
	background: url(../images/common/ico_flag.svg) no-repeat 0 0;
	width: 24px;
	height: 24px;
	margin-right: 4px;
    margin-top: -3px;
}
.footer-bottom .gov_top{
	margin-top:24px;
}
.footer-bottom .gov_top .inner{
	background:var(--color-gray-0);
}
@media all and (max-width:1600px) {
}
@media all and (max-width:1536px) {
	.wrap-layer-popup {
		height:auto
	}
	.wrap-layer-popup>.inner-layer-popup {
    max-width: 1200px;
    width: 100%;
	}
}
@media all and (max-width:1480px) {
	.wrap-layer-popup.all-menu-layer .layer-popup-contents {
		padding:100px 60px 0;
	}
	.all-menu-wrap .menuInfo {
		min-width:200px;
	}
	.wrap-layer-popup.all-menu-layer .btn-layer-close {
		right:20px;
		top:40px;
	}
}
@media all and (max-width:1280px) {
	.header-wrap h1 {
		left:20px;
	}
	.header-wrap .util {
		right:20px;
	}
	.header-wrap .site-map {
		right:20px;
	}
	.footer-link-wrap ul{
		flex-wrap:wrap;
	}
	.footer-link-wrap ul li{
    flex: inherit;
		width:25%;
	}
  .footer-link-wrap ul li:nth-child(1) a, 
	.footer-link-wrap ul li:nth-child(2) a,
	.footer-link-wrap ul li:nth-child(3) a,
	.footer-link-wrap ul li:nth-child(4) a{
		border-bottom:1px solid var(--color-gray-20);
	}
	.footer-link-wrap ul{
		border-right:1px solid var(--color-gray-20);
	}
	.footer-link-wrap ul li:nth-child(4) a{
		border-right:none;
	}
	#container {
		width:100%;
	}
	.main-section03 .inner-con .section03 .btn-link .button:last-child {
		margin:0;
	}
	searchBar fieldset.boardForm{
		flex-direction:column;
	}
	searchBar fieldset.boardForm .filter-sec{
		margin-left:8px;
		margin-top:10px;
	}
}
@media all and (max-width:1100px) {
	#gnb .depth02 li a {
		font-size:16px;
	}
	.wrap-layer-popup.all-menu-layer .layer-popup-contents {
		padding:50px 60px 0;
	}
	.all-menu-wrap .menuInfo {
		float:none;
		overflow:hidden;
		margin-bottom:20px;
	}
	.all-menu-wrap .menuInfo .title {
		float:left;
		margin-right:30px;
	}
	.all-menu-wrap .menuInfo span {
		line-height:1.4;
	}
	.process_state01 ul li {
		width:18%;
	}
	.process_state01 ul li::after {
		right: -18px;
	}
	.searchBar fieldset.boardForm{
		flex-direction:column;
	}
	.searchBar fieldset.boardForm .filter-sec{
		margin:10px 0 0 8px;
	}
}
@media all and (max-width:1024px) {
	/* layout */
	.wrap {
		min-width:auto;
	}
	.gov_top .inner{
		padding:0 16px;
	}
	.all-search-wrap form .all-search-close{
		display:none;
	}
	.header-wrap.fixed ~ #container .contents-wrap {
		margin-top:50px;
	}
	.header-wrap.fixed {
		top:0;
		margin-top:0;
	}
	.header-util{
		display:none;
	}
	/* 20260529 수정 - S */
	.b-hid .header-wrap{
		overflow:hidden;
	}
	/* 20260529 수정 - E */
	.header-wrap{
		overflow:hidden;
	}
	.header-wrap:before {
		display:none;
	}
	.header-wrap #header .h-inner{
		padding:16px;
	}
	#header h1 {
		top:20px;
		left:15px;
	}
	#header h1 img {
		width:190px;
	}
	#header .gnb-wrap {
		opacity: 0;
		visibility: hidden;
		position:fixed;
		right:-100%;
		top:0;
		height:100vh;
		width:100%;
		z-index:500;
		background-color:var(--color-gray-0);
		-webkit-transition:0.3s;
		transition:0.3s;
		-moz-transition:0.3s;
	}
	.b-hid .wrap.scroll-up .header-wrap #header .gnb-wrap.mobile-menu-open,
	.b-hid .wrap.scroll-down .header-wrap #header .gnb-wrap.mobile-menu-open{
		top:0;
	}
	#header .gnb-wrap.mobile-menu-open {
		right:0;
		top:0;
		opacity: 1;
		visibility: visible;
		background:var(--color-gray-0);
	}
	#header .gnb-wrap.mobile-menu-open:before{
		position: absolute;
		top: 0;
		left: 0;
		width: 160px;
		height: 100%;
		min-height: 400px;
		background-color: #edf1f5;
		border-right: 1px solid var(--color-gray-20);
		z-index: -1;
		content: '';
	}
	.header-wrap .left {
		display:none;
	}
	.header-wrap .util {
		display:none;
	}
	.header-wrap .site-map {
		display:none;
	}
	.gnb-util{
		padding:16px;
	}
	.gnb-util .zoom-drop .drop-menu{
		top: 14px;
		left: 80px;
	}
	#gnb{
		padding:0;
		background: transparent;
	}
	#gnb>ul {
		padding:0;
		margin:0;
	}
	#gnb>ul:after {
		content:"";
		display:block;
		clear:both;
	}
	#gnb>ul>li {
		display:block;
		float:none;
		margin:0;
		width:100%;
	}
	#gnb>ul>li:nth-child(4) {
		padding:0;
		background:none;
	}
	#gnb>ul>li>a span {
		display:none;
	}
	#gnb>ul>li.active>a{
		background:var(--color-gray-0);
		border-right:1px solid var(--color-gray-0);
		margin-left:1px;
	}
	#gnb>ul>li>a {
		position:relative;
		font-size:18px;
		font-weight:500;
		color:#464646;
		height:50px;
		line-height:50px;
		padding:0 0 0 16px;
		display:inline-block;
		text-align:left;
		width:160px;
	}
	#gnb>ul>li::before {
		display:none;
		content:"";
		width:25px;
		height:14px;
		background:url(/static/ucms/images/common/icon-dropdown.png) no-repeat 0 0;
		position:absolute;
		z-index:1;
		top:16px;
		right:25px;
	}
	#gnb>ul>li.on::before {
		background:url(/static/ucms/images/common/icon-dropdown.png) no-repeat 0 0;
		transform:rotate(180deg);
	}
	#gnb>ul>li.on>a {
		/* border-bottom:1px solid #1f56ad;
		background:#f4f8fd; */
	}
	#gnb>ul>li>a:after {
		display:none;
	}
	#gnb>ul>li.active>a:after {
		border-bottom:2px solid var(--color-secondary-50);
	}
	#gnb .depth02 ul{
		display:block;
		padding:0;
	}
	.mobile-menu-open #gnb>ul>li.active .depth02 {
		display:block !important;
	}
	.mobile-menu-open #gnb>ul>li .depth02 {
		display:none;
		position: absolute;
		top: 99px;
		left: 161px;
		padding:0;
		width: calc(100% - 161px);
		background: var(--color-gray-0);
		border-bottom:none;
	}
	#gnb>ul>li .depth02 li.plus-bg.active>a:after {
		top:22px;
		right:15px;
		width:6px;
		height:6px;
		left:auto;
		border:none;
		border-top:2px solid #4d78d4;
		border-right:2px solid #4d78d4;
		transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
		-moz-transform:rotate(-45deg);
	}
	#gnb>ul>li .depth02 li.plus-bg>a:after {
		content:"";
		position:absolute;
		top:17px;
		right:15px;
		border-top:2px solid #a3a3a3;
		border-right:2px solid #a3a3a3;
		width:6px;
		height:6px;
		transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		-moz-transform:rotate(135deg);
	}
	#gnb>ul>li.active a:before {
		display:none;
	}
	#gnb .depth02 ul>li {
		margin:0;
		display:block;
	}
	#gnb .depth02 li a:after{
		position: absolute;
		right: 16px;
		top: 50%;
		margin: -10px 0 0 0;
	}
	#gnb .depth02 ul>li>a {
		position:relative;
		line-height:49px;
		height:49px;
		padding:0 0 0 16px;
		display:block;
	}
	#gnb .depth02 ul>li>a:hover {
		background:none;
	}
	#gnb .depth03 {
		display:none;
		padding:10px 0;
		background:#f4f8fd;
		border-top:2px solid #4d78d4;
	}
	#gnb .depth02 ul>li .depth03 li {
		border:none;
	}
	#gnb .depth02 ul>li .depth03 li a {
		position:relative;
		line-height:18px;
		color:#666;
		padding:8px 10px 8px 24px;
		border:none;
		height:auto;
	}
	#gnb .depth02 ul>li .depth03 li a:after {
		content:"";
		position:absolute;
		top:16px;
		left:15px;
		width:3px;
		height:3px;
		border-radius:100%;
		background:#c5c9d6;
	}
	#gnb .depth02 ul>li .depth03 li a:hover {
		color:var(--color-gray-100);
	}
	#gnb>ul>li.active .depth02:before,#gnb>ul>li .depth02:after {
		display:none;
	}
	#header .mobile-util {
		position:relative;
		display:block;
		height:auto;
		background:var(--color-gray-0);
		text-align:left;
		border-bottom:1px solid var(--color-gray-20);
	}
	#header .mobile-util ul + ul{
		padding:0 16px 16px 16px;
	}
	#header .mobile-util ul + ul li a{
		font-weight:700;
	}
	#header .mobile-util ul + ul li:nth-child(1) a:before{
		content: "";
		display: inline-block;
		background: url(../images/common/ico_login.svg) no-repeat 100% 0;
		width: 18px;
		height: 18px;
		margin-right: 5px;
		vertical-align: middle;
		margin-top: -4px;
		background-size: cover;
	}
	#header .mobile-menu-btn {
		display:block;
		position:absolute;
		right:5px;
		top:16px;
	}
	#header .mobile-menu-btn a {
		position:relative;
		display:block;
		height:45px;
		width:50px;
    padding-top:24px;
    font-size:14px;
    color:var(--color-gray-90);
	}
	#header .mobile-menu-btn a:before {
		content:"";
		position:absolute;
		top:0;
		left:12px;
		width:27px;
		height:17px;
		border-top:3px solid #425894;
		border-bottom:3px solid #425894;
	}
	#header .mobile-menu-btn a:after {
		content:"";
		position:absolute;
		top:10px;
		right:11px;
		width:19px;
		height:3px;
		background:#425894;
		-webkit-transition:0.3s ease-in-out;
		transition:0.3s ease-in-out;
		-moz-transition:0.3s ease-in-out;
	}
	#header .mobile-menu-btn .all-search {
		width:50px;
		height:45px;
		background: url(../images/common/ico_sch.svg) no-repeat 50% 0;
		position:absolute;
		right:58px;
		background-size:25px;
    font-size:13px;
    color:var(--color-gray-90);
    padding-top:22px;
	}
	#header .mobile-menu-btn .all-search.close {
		background:url(/static/ucms/images/common/all-search-close.png) no-repeat 50% 0;
    background-size: 24px;
	}
	#header .mobile-close {
		display: flex;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
	}
	#header .mobile-close a {
		display:block;
		width:30px;
		height:30px;
		background:url(/static/ucms/images/common/icon-close.png) no-repeat 50% 50%;
		text-indent:-9999px;
		background-size: 20px !important;
		z-index:500;
	}
	.all-search-wrap {
		top:98px;
		position:fixed;
	}
	.header-wrap.fixed+.all-search-wrap {
		top:65px;
	}
	#header .all-menu-btn {
		display: none;
	}
	/* all-menu */
	.all-menu-btn {
		display:none !important;
		position:absolute;
		top:55px;
		right:0px;
		z-index:1000;
	}
	.footer-wrap {
		height:auto;
	}
	.footer-wrap .footer-banner-wrap .main_popzone_roll3 {
		width:calc(100% - 140px);
	}
	.footer-wrap .footer-banner-wrap .navi-wrap {
		position:absolute;
		top:26px;
		right:-130px;
		width:130px;
		height:40px;
		z-index:100;
	}
	.footer-wrap .footer-banner-wrap .navi-wrap .owl-nav {
		display:flex;
		justify-content:space-between;
		width:104px;
		margin:0 0 0 13px;
	}
	.footer-wrap .footer-banner-wrap .navi-wrap .owl-nav .owl-prev {
		width:30px;
		height:40px;
		background:url(/static/ucms/images/main/popup-zone-prev.png) no-repeat 50% 50%;
		text-indent:-9999px;
	}
	.footer-wrap .footer-banner-wrap .navi-wrap .owl-nav .owl-next {
		width:30px;
		height:40px;
		background:url(/static/ucms/images/main/popup-zone-next.png) no-repeat 50% 50%;
		text-indent:-9999px;
	}
	.footer-wrap .footer-banner-wrap .navi-wrap .owl-controls .owl-conl-btn {
		width:30px;
		height:40px;
		background:url(/static/ucms/images/main/popup-zone-pause.png) no-repeat 50% 50%;
		text-indent:-9999px;
	}
	.footer-wrap .footer-banner-wrap .navi-wrap .owl-controls .owl-conl-btn.active {
		width:30px;
		height:40px;
		background:url(/static/ucms/images/main/popup-zone-play.png) no-repeat 50% 50%;
		text-indent:-9999px;
	}
	.footer-wrap .footer-banner-wrap .navi-wrap .owl-controls {
		display:block;
		position:absolute;
		top:0;
		left:50px;
	}
	.footer-wrap .footer-banner-wrap .owl-dots {
		display:none;
	}
	.btn-top-move {
		bottom:30px;
		right:20px;
	}
	.aside .inner>div:nth-child(1) {
		display:none;
	}
	.breadcrumb {
		display:block;
	}
	#visual.subvisual {
		margin-top: 0;
	}
  #container > main{
    margin-top:60px;
  }
	#container {
		padding:0
	}
	#container.allSearch {
		margin-top:280px;
	}
	#content {
		padding:0 0 150px;
	}
	.contents {
		flex-grow:inherit;
		padding:0 15px;
	}
	.page-info {
		padding:0 0 22px;
		margin:0 0 20px 0;
	}
	.page-info h4+div {
		margin-bottom:0;
	}
	.member-step ul li div:before {
		width:60px;
		height:60px;
	}
	div.board-search {
		padding:15px 10px;
	}
	div.board-search .fieldset .field .tit {
		font-size:14px;
	}
	div.board-search .fieldgroup.both .fieldset {
		max-width: inherit;
	}
	.searchBar fieldset label {
		font-size: 16px;
	}
	.searchBar fieldset {
		padding:20px;
	}
	/* 신청 본인인증 화면 */
	.process_state01 ul {
		display:block;
		overflow:hidden;
	}
	.process_state01 ul li {
		width:23%;
		float:left;
		margin-right:50px;
		margin-bottom:5px;
	}
	.process_state01 ul li::after {
		right:-33px;
	}
	.sub fieldset.boardForm .btnSet {
		text-align:center;
		width:100%;
	}
	
	/* 레이어팝업 반응형 */
	.wrap-layer-popup .layer-popup-contents>.inner-wrap {
		padding:0;
	}
	.wrap-layer-popup.account-layer .list-dot>li strong {
		display: block;
	}
	/* 사이트변경레이어 */
	.wrap-layer-popup.account-layer.infoLayer {
		padding:1%;
	}
	.wrap-layer-popup.account-layer.infoLayer02 {
		margin:1% 0 0 50%;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup {
		max-width:500px;
	}
	.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup {
		max-width:500px;
	}
}
@media (max-width: 1023px) {
    .hgroup {
        padding: 0;
    }
}
@media all and (max-width:890px) {
	#container {
		width:100%;
	}
	.tbl-scroll-b {
		position:relative;
		padding-top:32px;
		background:url(/static/ucms/images/common/bg-hand.gif) right top no-repeat
	}
	.tbl-scroll-b table {
		min-width:980px
	}
	.table-scroll-wrap .table-list table th,.table-scroll-wrap .table-list table td {
		font-size:16px;
		padding:10px;
	}
	.table-list table thead th,.table-list table tbody td {
		font-size:16px;
		padding:10px;
	}
	.table-list table th,.table-list table td {
		font-size:16px;
		padding:10px;
	}
	.table-list table td button.button-middle {
		margin:0;
		line-height:22px;
		font-size:13px;
		min-width:40px;
		padding:0 5px;
	}
	.table-list table td button.button-small {
		margin:0;
		line-height:22px;
		font-size:13px;
		min-width:40px;
		padding:0 5px;
	}
	.adm>dl>dt {
		width:100%;
		padding-bottom:10px;
	}
	.table-view table th,.table-view table td {
		padding:10px;
	}
	.table-view .table.applyresult ul li dl dt,.table-view .table.applyresult ul li dl dd {
		font-size:16px;
	}
	.table-view .table.applyresult tr>td:last-child {
		font-size:16px;
	}
	.comment-box02 {
		padding:30px;
	}
	/* 레이어팝업 반응형 */
	.wrap-layer-popup .layer-popup-bottom button,
  .wrap-layer-popup .layer-popup-bottom button.close {
		width: 100px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 16px !important;
    min-width: auto;
		padding:0;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup {
		max-width:400px;
	}
	.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup {
		max-width: 400px;
	}
}
@media all and (max-width:768px) {
	/* layout */
  .hgroup{
    display:flex;
    padding: 0 0 0 20px;
  }
  .hgroup > div{
    width:auto;
    margin:0;
  }
  .all-search-wrap form input#searchTerm{
    min-width:auto;
  }
	#footer {
        padding: 28px 16px;
  }
  .footer-link-wrap ul li{
		width:50%;
	}
  .footer-link-wrap ul li:nth-child(5) a, 
	.footer-link-wrap ul li:nth-child(6) a{
		border-bottom:1px solid var(--color-gray-20);
	}
	.footer-link-wrap ul{
		border-right:1px solid var(--color-gray-20);
	}
	.footer-link-wrap ul li:nth-child(2) a,
  .footer-link-wrap ul li:nth-child(6) a{
		border-right:none;
	}
  .comment-box>article strong{
    font-size:16px;
  }
  .comment-box>article{
    margin-bottom:30px;
  }
  .comment-box > *{
    font-size: 15px;
  }
  .comment-box .title{
    font-size: 18px;
    margin-bottom:20px;
  }
  .comment-box>article p{
    margin-bottom:20px;
  }
	#container {
		width:100%;
	}
  #container > main {
      margin-top: 0;
  }
  #container.sub{
    padding:0;
  }
	#container.allSearch {
		 margin-top:235px;
	}
	.contents {
		min-height:auto;
	}
  .subvisual__title{
    font-size:33px;
    padding-bottom:5px;
  }
	.aside .etc-info {
		display:none;
	}
	.aside .inner {
		border:none;
	}
	.aside .inner>div:nth-child(1) {
		width:100%;
	}
	.aside dl {
		width:calc(50% - 30px);
		max-width:none;
	}
	.aside dl:last-child {
		border-right:none;
	}
	div.board-search .fieldgroup .fieldset {
		margin:0 0 10px 0;
	}
	div.board-search .fieldgroup .fieldset:last-child {
		margin:0;
	}
	div.board-search .fieldgroup {
		flex-wrap:wrap;
	}
	div.board-search .fieldgroup .fieldset {
		width:100%;
	}
	div.board-search .fieldset .field .tit {
		position:absolute;
		z-index:-1;
	}
	div.board-search .fieldset.fieldset-calendar .field {
		flex:1 auto;
	}
	div.board-search .fieldset.fieldset-calendar .field input {
		max-width:inherit;
	}
	.faq-wrap li .question a {
		padding:20px;
	}
	.faq-wrap li .answer {
		padding:20px;
	}
	#faqList dt {
		padding:20px;
	}
	#faqList dd {
		padding: 30px;
	}
	/* form */
	.form-wrap {
		padding:0 15px 15px;
		margin:0 0 20px 0;
	}
	.form-wrap+.btn-area {
		margin-top:20px;
	}
	.form-wrap .form-group {
		flex-wrap:wrap;
	}
	.form-wrap .form-group .info-group {
		display:flex;
		width:100%;
	}
	.form-wrap .form-group .info-group p {
		padding:15px 10px 0 0;
		font-size:14px;
	}
	.form-wrap .form-group .info-group p .req {
		margin-left:0;
	}
	.form-wrap .form-group .field-group-wrap {
		display:flex;
		flex-wrap:wrap;
		width:100%;
	}
	.form-wrap .form-group .field-group-wrap .field-group {
		width:calc(100% + 16px);
		padding:8px 0;
		margin-right:-8px;
		margin-left:-8px;
	}
	.form-wrap .form-group .field-group-wrap.email .field-group {
		flex-wrap:wrap;
	}
	.form-wrap .form-group .field-group-wrap.email .field-group .field {
		width:calc(50% - 20px);
	}
	.form-wrap .form-group .field-group-wrap.email .field-group .field:last-child {
		width:calc(100%);
	}
	.form-wrap .form-group .field-group-wrap.address .field-group:nth-child(1) input {
		max-width:inherit;
	}
	.form-wrap .form-group .field-group-wrap.address .field-group:nth-child(1) .field {
		max-width:inherit;
	}
	.form-wrap .tax-infomation {
		font-size:15px;
		margin:20px 10px 10px;
		letter-spacing:-1px;
	}
	.form-wrap .notice-box {
		margin-top:15px;
	}
  .sub.tab-list li a{
    font-size:12px;
  }
  .searchView .both-contents ul li.bu2{
    font-size:15px;
  }
	.tstyle_list .m-hidden {
		display:none !important
	}
	.tstyle_list .m-gray {
		color:#999;
	}
	.tstyle_list .m-brd {
		position:relative;
		color:#999;
	}
	.tstyle_list .m-brd:after {
		content:"";
		position:absolute;
		top:5px;
		left:-8px;
		width:1px;
		height:12px;
		background:#999;
	}
	.tstyle_list>div.dhead {
		display:none;
	}
	.tstyle_list>div.dbody>ul {
		padding:10px 0 5px 0;
	}
	.tstyle_list>div.dbody>ul>li {
		border:0;
		display:block;
		float:left;
		width:auto;
		padding:0 0 5px 0;
		margin-right:15px;
		min-height:auto;
		text-align:left;
	}
	.tstyle_list>div.dbody>ul>li.title {
		font-size:15px;
		float:none;
		width:100% !important;
	}
	div.tstyle_view div.title {
		padding:15px 15px 10px 15px;
		font-size:20px;
	}
	div.tstyle_view ul.head {
		padding:0 15px 15px;
	}
	div.tstyle_view .add-file-list,div.tstyle_view div.tb_contents {
		padding:15px;
	}
	.card-list .card-item:nth-child(2n) {
		margin-right:0 !important;
	}
	.card-list .card-item {
		width:48.7%;
		margin: 0 2.6% 25px 0 !important;
	}
	/* etc */
	.large-title {
		font-size:18px;
	}
	.mid-title {
		font-size:16px;
		margin:0 0 10px 0;
	}
	.mid-title+.basic-text {
		margin:0 0 20px 0;
	}
	.btn-area .btn-center {
		display:flex;
		justify-content:center;
	}
	.btn-area .btn-center button,.btn-area .btn-center a {
		margin:0 5px;
	}
	.button.button-large {
		max-width:360px;
		width:100%;
		height:44px;
		line-height:42px;
		font-size:16px;
		min-width:auto;
	}
	.button.button-middle {
		font-size:14px;
	}
	.both-contents {
		flex-wrap:wrap;
	}
	.both-contents>div {
		width:100%;
		padding:0 20px;
	}
	#content .both-contents.applyGo div {
		margin-right:0 !important;
	}
	.both-contents>div:nth-child(2) {
		margin:20px 0;
	}
	.searchView .both-contents {
		display:block;
    margin-bottom:40px;
    height:240px;
	}
	.searchView .both-contents>div:nth-child(2) {
		margin:0;
	}
  .searchView .both-contents>div{
		padding:0;
	}
  #content .both-contents.check fieldset ul li {
    margin: 0 0 12px 0;
  }
  #content .both-contents.check fieldset ul li label {
    font-size: 15px;
  }
	.adm>dl>dt {
		width:100%;
		padding-bottom:10px;
		text-align:center;
	}
	.adm .both-contents div {
		text-align:center;
		border-bottom:none;
	}
  .all-menu-wrap .all-menu-link>div>ul{
    flex-wrap:wrap;
  }
	.all-menu-wrap .all-menu-link>div>ul>li {
		width:48%;
		margin-bottom:15px;
	}
	.all-menu-wrap .all-menu-link>div>ul>li>.depth02 ul {
		display:block;
	}
	.all-menu-wrap .all-menu-link .depth02 ul a {
		margin-right:0;
		margin-bottom:5px;
	}
	.wrap-layer-popup.all-menu-layer .inner-layer-popup {
		max-width:700px;
	}
	.wrap-layer-popup.all-menu-layer .layer-popup-contents {
		padding:50px 20px 0;
	}
	.wrap-layer-popup.account-layer.infoLayer {
		padding:1%;
	}
	/* 	.wrap-layer-popup.account-layer.infoLayer02{padding: 1% 54%;}*/
	.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup {
		max-width:350px;
	}
	.process_state01 ul li::before {
		display:none;
	}
	.process_state01 ul li>div {
		padding:6px 0 0 0;
		text-align:center;
	}
	.moHide {
		display:none !important;
	}
	.pcHide {
		display:table-cell !important;
	}
	.imgbox {
		padding: 0;
	}
	.searchBar fieldset.boardForm {
		display:block;
	}
	.searchBar fieldset.boardForm .filter-sec{
		margin-left:0;
	}
	.searchBar fieldset.boardForm .filter-tit{
		display:block;
		font-size:15px;
		margin-bottom:5px;
	}
	searchBar fieldset.boardForm .filter-sec{
		margin-left:0;
	}
}
@media all and (max-width:640px) {
	/* layout */
	.contents>* {
		font-size:14px;
	}
	#container {
		width:100%;
	}
	.mid-title {
		font-size:16px;
	}
  .footer-wrap .footer-banner-wrap .footer-banner{
    padding:0;
  }
  .footer-link-wrap ul li a{
    padding:0 10px;
	font-size:14px;
  }
	#footer .footer-logo img {
		height: 41px;
	}
	#footer .footer-info {
		font-size:15px;
		line-height:24px;
		flex-wrap:wrap;
		padding:20px 0;
	}
	#footer .footer-info > div{
		width:100%;
	}
	#footer .footer-btm{
		flex-wrap:wrap;
	}
	#footer .footer-btm > div{
		width:100%;
		gap:10px;
	}
	#footer .footer-btm .footer-sns{
		position:static;
		margin:10px 0 12px 0;
	}
	.all-search-wrap form input {
		max-width:250px;
		min-width:250px;
	}
  .sub.tab-list li a span{
    padding:1px 2px;
  }
  .sub.tab-list li a{
    font-size:13px;
  }
	.pagination span a {
		width:24px;
		height:24px;
		padding:1px 0 4px;
		margin:0 0 0 -1px;
		font-size:13px;
		background-size:auto 10px !important;
	}
	.pagination strong {
		width:24px;
		height:24px;
		padding:1px 0 4px;
		margin:0 1px 0 0;
	}
	.pagination li,.pagination li a {
		width:24px;
		height:24px;
		font-size:13px;
		line-height:24px;
		background-size:auto 10px !important;
	}
	.pagination li.active {
		width:24px;
		height:24px;
		line-height:24px;
		font-size:13px;
	}
	.pagination li.active span {
		width:24px;
		height:24px;
		line-height:24px;
		font-size:13px;
	}
	.faq-wrap li .question a {
		padding:15px 10px;
	}
	.faq-wrap li .answer {
		padding:15px 10px;
	}
	.faq-wrap li .question a:after {
		top:18px;
		right:15px;
	}
	.faq-wrap li.active .question a:after {
		top:18px;
	}
	#faqList dt {
		padding:15px 10px;
	}
	#faqList dt:after {
		top:18px;
		right:15px;
	}
	#faqList dt.open:after {
		top:22px;
	}
	#faqList dd {
		padding:15px 10px;
	}
	div.tstyle_view div.title {
		padding:15px 10px 10px 10px;
		font-size:18px;
	}
	div.tstyle_view ul.head {
		padding:0 10px 15px;
	}
	div.tstyle_view ul.head li {
		padding:5px 10px 5px 0;
	}
	div.tstyle_view ul.head li:after {
		display:none;
	}
	div.tstyle_view .add-file-list,div.tstyle_view div.tb_contents {
		padding:10px;
	}
	.card-list .card-item {
		width:100%;
		margin:0 0 20px 0;
	}
	.button::after {
		display:none;
	}
	.filterbtn::after {
		display:inline-block !important;
	}
	.filterbtn.close::after {
		display:inline-block !important;
	}
	.comment-box {
		padding:15px;
	}
	.whiteBox {
		padding:15px;
	}
	.comment-box02 {
		padding:15px;
	}
	.comment-box02>ul>li {
		display:block;
	}
	.sub .btnSet {
		text-align:center;
		width:100%;
		padding-top:10px;
	}
	.searchBar fieldset #searchWrd {
		width:calc(100% - 98px);
		margin:0 !important;
	}
	.searchBar fieldset .btnSet.m0 .button{
		width:100%;
	}
	.sub .btnSet .button.button-middle02 {
		min-width:150px;
	}
	.searchBar .btnSet{
		margin-bottom:0;
		padding-top:0;
		margin-top:10px !important;
	}
	.searchBar fieldset {
		display:block;
		padding:10px;
	}
	.adm>dl>dt {
		width:100%;
		padding-bottom:10px;
		text-align:center;
	}
	.adm .both-contents div {
		text-align:center;
		border-bottom:none;
	}
	.adm label {
		margin-right:10px;
	}
	.adm+.admIfo {
		padding:5px;
		font-size:14px;
	}
	.sub.mp.tab-list li {
		width: 33%;
	}
	/* 레이어팝업 반응형 */
  .all-menu-wrap .menuInfo .title{
		float:none;
    font-size: 24px;
	}
	.all-menu-wrap .menuInfo .title + span br{
		display:none;
	}
	.wrap-layer-popup .layer-popup-contents .table-scroll-wrap>div {
		min-width:510px;
	}
	.wrap-layer-popup .layer-popup-contents {
		padding:20px;
	}
  .wrap-layer-popup .wrap-layer-popup-title {
    height: 72px;
    padding: 20px 20px 0;
  }
  .wrap-layer-popup .layer-popup-bottom{
    padding:20px 20px;
  }
	.wrap-layer-popup .wrap-layer-popup-title .title {
		font-size:24px;
    padding-bottom:20px;
	}
	.wrap-layer-popup .layer-popup-contents>.inner-wrap .blue-box02 {
		padding:10px
	}
	.wrap-layer-popup .layer-popup-contents>.inner-wrap .comment-box {
		padding:10px !important;
	}
	.wrap-layer-popup .layer-popup-contents>.inner-wrap .chart-wrap {
		display:block;
	}
	.wrap-layer-popup .layer-popup-contents>.inner-wrap .chart-wrap .chart-box {
		width:48%;
		float:left;
	}
	.wrap-layer-popup .layer-popup-contents>.inner-wrap .chart-wrap .chart-box:nth-child(even) {
		margin:0 0 0 2%;
	}
	.wrap-layer-popup .layer-popup-contents>.inner-wrap .chart-wrap .chart-box:nth-child(3),.wrap-layer-popup .layer-popup-contents>.inner-wrap .chart-wrap .chart-box:nth-child(4) {
		margin-top:10px;
	}
	.wrap-layer-popup.account-layer.infoLayer {
		padding:1%;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup {
		max-width:300px;
	}
	.wrap-layer-popup.account-layer.infoLayer02 {
		margin:1% 50%;
	}
	.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup {
		max-width:300px;
	}
	.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup .title {
		font-size:22px;
	}
	.wrap-layer-popup.all-menu-layer .inner-layer-popup {
		max-width:600px;
	}
	.all-menu-wrap .all-menu-link>div>ul>li>a {
		padding:0 10px;
	}
	.all-menu-wrap .all-menu-link>div>ul>li>.depth02 ul a {
		padding-left:5px;
    font-size: 16px;
	}
	.all-menu-wrap .all-menu-link>div>ul>li>.depth02 ul a::before {
		margin-right:3px;
	}
}
@media all and (max-width:500px) {
	#container {
		width:100%;
	}
	.all-search-wrap form input {
		min-width:250px;
		max-width:250px;
	}
	.all-search-wrap form select {
		font-size:15px;
	}
	.all-search-wrap .filter-wrap dl dd label {
		margin:0 20px 0 0;
	}
	.searchSec .searchCont dl dt {
		white-space:nowrap;
		overflow:hidden;
		max-width:330px;
		text-overflow:ellipsis;
	}
	.sub .btnSet .button.button-middle02 {
		min-width:130px;
    line-height: 50px;
	}
	.process_state01 ul li {
		width:37%;
	}
	.faq-wrap .answer .blue-box strong {
		display:block;
		margin:0 !important;
	}
	.faq-wrap+div.blue-box strong {
		display:block;
		margin:0 !important;
	}
	/* .table-scroll-wrap>div{min-width: 390px;}*/
	.table-scroll-wrap.mp>div {
		min-width:390px;
	}
	.wrap-layer-popup .layer-popup-contents .table-scroll-wrap>div {
		min-width:390px;
	}
	.wrap-layer-popup.all-menu-layer .inner-layer-popup {
		max-width:500px;
	}
	.all-menu-wrap .all-menu-link>div>ul>li>a {
		font-size:16px;
	}
	.wrap-layer-popup.account-layer.infoLayer {
		padding:1% 6%;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup {
		max-width:440px;
	}
	.wrap-layer-popup.account-layer.infoLayer02 {
		margin:62% 6%;
	}
	.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup {
		max-width:440px;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-wrap,.wrap-layer-popup.account-layer.infoLayer02 .inner-wrap {
		padding:10px 0;
	}
	.wrap-layer-popup.account-layer.infoLayer .wrap-layer-popup-title,.wrap-layer-popup.account-layer.infoLayer02 .wrap-layer-popup-title {
		height:auto;
		padding:30px 70px 0;
	}
	.wrap-layer-popup.account-layer.infoLayer .wrap-layer-popup-title .title,.wrap-layer-popup.account-layer.infoLayer02 .wrap-layer-popup-title .title {
		padding:0 0 10px;
		font-size:18px;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup .btn-link .button,.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup .btn-link .button {
		line-height:30px;
		font-size:14px;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup .btn-link .button:first-child {
		margin-bottom:0
	}
	.wrap-layer-popup.account-layer.infoLayer .layer-popup-contents p,.wrap-layer-popup.account-layer.infoLayer02 .layer-popup-contents p {
		font-size:16px;
	}
}
@media all and (max-width:480px) {
	#container {
		width:100%;
	}
	.comment-box02 {
		padding:5px;
	}
	.adm+.admIfo span {
		margin-right:10px;
	}
	.recomentList .tb_contents .button {
		min-width:60px;
		height:60px;
	}
	.recomentList textarea {
		height:60px;
		padding:10px;
		width:calc(100% - 75px)
	}
	.wrap-layer-popup .table-list table th,.wrap-layer-popup .table-list table td {
		font-size:14px;
		padding:5px;
	}
	.wrap-layer-popup.account-layer.infoLayer {
		padding:1% 3%;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup {
		max-width:440px;
	}
	.wrap-layer-popup.account-layer.infoLayer02 {
		margin:68% 3%;
	}
	.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup {
		max-width:440px;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-wrap,
  .wrap-layer-popup.account-layer.infoLayer02 .inner-wrap {
		padding:10px 0;
	}
	.wrap-layer-popup.account-layer.infoLayer .wrap-layer-popup-title,
  .wrap-layer-popup.account-layer.infoLayer02 .wrap-layer-popup-title {
		height:auto;
		padding:30px 70px 0;
	}
	.wrap-layer-popup.account-layer.infoLayer .wrap-layer-popup-title .title,
  .wrap-layer-popup.account-layer.infoLayer02 .wrap-layer-popup-title .title {
		padding:0 0 10px;
		font-size:18px;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup .btn-link .button,
  .wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup .btn-link .button {
		line-height:30px;
		font-size:14px;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup .btn-link .button:first-child {
		margin-bottom:0
	}
	.wrap-layer-popup.account-layer.infoLayer .layer-popup-contents p,
  .wrap-layer-popup.account-layer.infoLayer02 .layer-popup-contents p {
		font-size:16px;
	}
	.sub + .searchView .both-contents {
		padding:5px 10px;
	}
}
@media (min-width:400px) and (max-width:459px) {
	.all-search-wrap form input#searchTerm {
		min-width:200px;
		max-width:200px;
	}
	.all-search-wrap form select#searchType {
		min-width:95px;
	}
	.all-search-wrap .filter-wrap li strong {
		min-width:80px;
	}
	.wrap-layer-popup .layer-popup-contents .table-scroll-wrap>div {
		min-width:300px;
	}
	/* 	.table-scroll-wrap>div{min-width: 300px;}*/
	.table-scroll-wrap.mp>div {
		min-width:300px;
	}
	.wrap-layer-popup.account-layer.infoLayer {
		padding:1%;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup {
		max-width:390px;
	}
	.wrap-layer-popup.account-layer.infoLayer02 {
		margin:92% 1%;
	}
	.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup {
		max-width:390px;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup .btn-link .button:first-child {
		margin-bottom:5px
	}
}
@media (min-width:360px) and (max-width:399px) {
	#gnb>ul>li::before {
		width:20px;
		top:20px;
		background-size:contain;
	}
	#gnb>ul>li.on::before {
		width:20px;
		top:20px;
		background-size:contain;
	}
	#container.sub #content {
		padding:0 20px 100px;
	}
	.subvisual__title {
		padding-bottom:15px;
		font-size:40px;
	}
	.subvisual__info {
		font-size:16px;
	}
	.hgroup p {
		padding:0;
		font-size:14px;
	}
	.hgroup .location-arr {
		margin:0 5px;
	}
	.hgroup .page-print {
		margin-left:20px;
	}
	.all-search-wrap form input#searchTerm {
		min-width:180px;
		max-width:180px;
	}
	.all-search-wrap form select#searchType {
		min-width:95px;
	}
	.all-search-wrap form button.search {
		min-width:55px;
	}
	.all-search-wrap .filter-wrap li strong {
		min-width:80px;
	}
	.all-search-wrap .filter-wrap li p label {
		margin:0 10px 0 0;
	}
	.all-search-wrap .filter-wrap li p input[type=text] {
		width:100px;
		margin:0
	}
	.all-search-wrap .filter-wrap li p input[type=radio] {
		margin:0 3px 0 0;
	}
	.wrap-layer-popup.account-layer.infoLayer {
		padding:1%;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup {
		max-width:350px;
	}
	.wrap-layer-popup.account-layer.infoLayer02 {
		margin:92% 1%;
	}
	.wrap-layer-popup.account-layer.infoLayer02 .inner-layer-popup {
		max-width:350px;
	}
	.wrap-layer-popup.account-layer.infoLayer .layer-popup-contents p,.wrap-layer-popup.account-layer.infoLayer02 .layer-popup-contents p {
		font-size:13px;
	}
	.wrap-layer-popup.account-layer.infoLayer .wrap-layer-popup-title,.wrap-layer-popup.account-layer.infoLayer02 .wrap-layer-popup-title {
		padding:30px 0 0;
	}
	.wrap-layer-popup.account-layer.infoLayer .inner-layer-popup .btn-link .button:first-child {
		margin-bottom:5px
	}
	.wrap-layer-popup.account-layer.infoLayer .btn-layer-close,.wrap-layer-popup.account-layer.infoLayer02 .btn-layer-close {
		position:absolute;
		right:10px;
		top:10px;
	}
	.wrap-layer-popup .layer-popup-contents .table-scroll-wrap>div {
		min-width:290px;
	}
	.searchBar fieldset label {
		margin-right:5px;
	}
	.sub.tab-list li a h4 {
		padding:0;
		font-size:15px;
	}
	#content .both-contents.applyGo div button {
		font-size:20px;
	}
	.searchBar fieldset #searchWrd {
		min-width:63%;
		width:calc(100% - 90px);
		margin:0 !important;
	}
	.searchBar fieldset.boardForm select#searchCnd {
		margin:0 !important;
		
	}
	.searchBar fieldset.boardForm select#searchType {
		margin:10px 0 !important;
	}
	.searchBar fieldset.boardForm #searchWrd {
		min-width:auto;
		width:calc(100% - 98px);
		margin:0 0 0 !important;
	}
	.searchBar fieldset.boardForm .shDate input {
		width:138px;
	}
	.sub.mp.tab-list li a h4 {
		font-size:16px;
	}
}