@charset "UTF-8";

:root {
	--wid-lside: 280px;
	--wid-mobile-lside: 200px;
}

.g-wrap {
    display: flex;
    align-items: normal;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 100%;
}

.is-gnb-web.hasScrollY .g-wrap main {
    padding-right: 0.7rem;
}

.g-wrap .main-bg {
    background: url(../../images/gp/main_bg.jpg) no-repeat center center / cover;;
}

.g-wrap .main-wrap {
	width: 100%;
	min-height: 77vh;
}

.g-wrap .main-wrap .main-section01 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 77vh;
}

.g-wrap .main-wrap .main-section01 .main-section01-header {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
	min-height: 300px;
	height: 100%;
    color: #fff;
    padding: 60px 20px;
}

.g-wrap .main-wrap .main-section01 .main-section01-header .s01-h-content-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.g-wrap .main-wrap .main-section01 .main-section01-header .s01-h-content-boxes .s01-h-title-box {
	font-size: 3.5rem;
	font-weight: 700;
}

.g-wrap .main-wrap .main-section01 .main-section01-header .s01-h-content-boxes .s01-h-content-box {
	font-size: 1.9rem;
	font-weight: 600;
	width: 60%;
	opacity: 0.9;
}

.g-wrap .main-wrap .main-section01 .main-section01-header .s01-h-content-boxes .s01-h-button-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 15px;
    margin-top: 10px;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 30px 20px;
    box-sizing: border-box;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-news-box {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    margin-bottom: 14px;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-news-box > .news-icon {
	background-color: #ffc107;
	color: #212529;
	font-weight: 700;
    border-radius: 3px;
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.8em;
    position: relative;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-header-box {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-header-box .s01-c-header-title {
	font-size: 32px;
	font-weight: 700;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes {
	display: grid;
	grid-template-rows: none;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes > .s01-c-content-box {
	background-color: rgba(120, 180, 255, 0.3);
	border-radius: 8px;
	opacity: 0;
	cursor: pointer;
	min-height: 240px;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes > .s01-c-content-box:hover {
	box-shadow:
		-1px -1px 5px 0px #fff,
		10px 10px 20px 0px #0003,
		4px 4px 5px 0px #0002;
	background-color: rgba(120, 180, 255, 0.5);
	background: linear-gradient(0deg, rgba(120, 180, 255, 0.3) 0%, rgba(120, 180, 200, 0.5) 100%);
	translate: 0px -5px;
	transition:400ms ease all;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes > .s01-c-content-box > .s01-c-content {
	display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
	padding: 20px;
	word-break: keep-all;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes > .s01-c-content-box > .s01-c-content > .s01-c-content-header {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
	font-size: 1.5em;
	user-select: none;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes > .s01-c-content-box > .s01-c-content > .s01-c-content-header > .s01-c-content-header-icon {
	display: inline-flex;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes > .s01-c-content-box > .s01-c-content > .s01-c-content-body {
	font-size: 0.9em;
	user-select: none;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes > .s01-c-content-box > .s01-c-content > .s01-c-content-body > ul {
    display: block;
    list-style-type: circle;
    padding-inline-start: 16px;
}

.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes > .s01-c-content-box > .s01-c-content > .s01-c-content-body > ul > li:not(:last-child) {
	margin-bottom: 10px;
}

.g-wrap .main-wrap .main-section02 {
}

.g-wrap .main-wrap .main-section02 .main-section02-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
}

.g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-header-box {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
    color: #005f99;
}

.g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-header-box .s02-c-header-title {
	font-size: 32px;
	font-weight: 700;
}

.g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-header-box .s02-c-header-body {
	font-size: 14px;
	font-weight: 700;
}

.g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-content-box {
    max-width: 800px;
}

.g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-content-box li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 50px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-content-box li:not(:last-child) {
	border-bottom: 1px solid #e1e4e8;
}

.g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-content-box li > .news-date {
	font-size: 14px;
	color: #555555;
	min-width: 80px;
}

.g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-content-box li > .news-title {
	font-weight: 600;
	word-break: break-all;
}

.err-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	padding: 40px;
}

.err-wrap .err-box {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: var(--pc-padding-card-large);
    border: 1px solid #b1b8be;
    border-radius: 12px;
	max-width: calc(59.2rem + var(--contents-padding-x) * 2);
}

.err-wrap .err-box .err-header {
	width: 100%;
    border-bottom: 2px solid #D9E6F2;
    padding-bottom: 10px;
}

.err-wrap .err-box .err-header > img {
	width: 33rem;
}

.err-wrap .err-box .err-contents {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	height: 100%;
}

.err-wrap .err-box .err-contents > .err-msg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	gap: 4px;
}

.err-wrap .err-box .err-contents > .err-msg > span {
	text-align: center;
	font-size: 24px;
	font-weight: 700;
}

.err-wrap .err-box .err-contents > .err-desc {
	text-align: center;
}

.contents {
	display: block;
}

.contents .side-box {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--wid-lside);
	height: calc(100vh - 61px);
	background: #fafafa;
	overflow: visible;
	z-index: 30;
    transition-property: transform;
    transition-duration: .5s;
    transform: translateX(-100%);
}

.contents .side-box .side-contents {
	padding: 10px;
}

.contents .side-box .side-contents a:hover {
	background-color: #eef2f7;
	border-radius: 4px;
}

.contents .side-box .side-btn {
	position: absolute;
	top: calc(50% - 56px);
	left: 100%;
	width: 18px;
	height: 80px;
	background: #f1f1f1;
	border-radius: 0 50px 50px 0;
}

.contents .side-box .side-btn.close:after {
	content: '';
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
	width: 16px;
	height: 20px;
	background: url(../../images/ui/icon/ico_arrow_dropdown.svg) no-repeat center;
	transform: rotate(90deg);
}

.contents .side-box .side-btn.open:after {
	content: '';
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
	width: 16px;
	height: 20px;
	background: url(../../images/ui/icon/ico_arrow_dropdown.svg) no-repeat center;
	transform: rotate(-90deg);
}

.contents .side-box .side-contents .side-search-box {
	margin-bottom: 4px;
}

.contents .side-box .side-contents .side-contents-box {
	color: #333;
	border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 4px;
	height: calc(100vh - 150px);
	background: #f1f1f1;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth1 .depth1-tit {
	height: 41px;
	background-color: white;
	border-bottom: 1px solid #ddd;
	border-radius: 4px;
	padding: 4px;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth1 .depth1-tit > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
	text-indent: 10px;
	font-size: 18px;
	font-weight: 700;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth2 {
	padding: 15px 10px 15px 15px;
	height: calc(100vh - 200px);
	overflow-y: auto;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth2 .depth2-tit {
	height: 36px;
	background-color: #e1e2e3;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 4px;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth2 .depth2-tit > a {
	display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
	font-size: 16px;
	text-indent: 10px;
	font-weight: 700;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth3 {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 6px;
	padding: 10px 0px 10px 10px;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth3 > li {
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 4px;
	height: 36px;
	font-size: 16px;
	background-color: white;
	border-radius: 4px;
	width: 100%;
	padding-right: 10px;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth3 > li.filter-hidden {
	display: none;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth3 > li.legend-hidden {
	display: none;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth3 .depth3-tit {
	flex: 1;
	height: 36px;
	padding: 4px;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth3 .depth3-tit > a {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
	font-size: 16px;
	text-indent: 10px;
}

.contents .side-box .side-contents .side-contents-box .side-contents-depth3 .depth3-ico {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 4px;
}

.contents .contents-header {
    display: flex;
    align-items: normal;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: var(--pc-gap-layout-h2-h3);
    gap: var(--pc-gap-layout-title-body-large);
}

.contents .contents-header.full-header {
	margin-top: 10px;
	margin-bottom: 10px;
}

.contents .contents-header.form-header {
    margin: 0 auto;
    margin-bottom: var(--pc-gap-layout-h2-h3);
    max-width: calc(79.2rem + var(--contents-padding-x) * 2)
}

.contents .contents-header.login-header {
    margin: 0 auto;
    margin-bottom: var(--pc-gap-layout-h2-h3);
    max-width: calc(59.2rem + var(--contents-padding-x) * 2)
}

.contents .contents-header > .hbox {
	display: flex;
	align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.contents .contents-header:not(.has-infbox) > .hbox {
    padding-bottom: 20px;
	border-bottom: 1px solid #D9E6F2;
}

.contents .contents-header.full-header > .hbox {
	padding-bottom: 0px;
	border-bottom: 0;
}

.contents .contents-header > .hbox > .tit {
	color: var(--light-color-text-bolder);
	font-size: var(--pc-font-size-heading-large);
	font-weight: var(--font-weight-bold);
    letter-spacing: var(--typo-letter-spacing-1);
}

.contents .contents-header > .hbox > .util {
	display: inline-block;
	padding-top: 10px;
}

.contents .contents-header > .infbox {
    position: relative;
    background-color: var(--light-color-surface-secondary-subtler);
    padding: var(--pc-padding-card-small);
    border-radius: var(--radius-xlarge1);
    color : var(--light-color-text-basic);
}

.contents .contents-header > .infbox > .desc {
	font-size: var(--pc-font-size-body-large);
    font-weight: 600;
}

.contents .contents-sub {
	display: block;
	padding-bottom: var(--pc-gap-layout-contents-footer);
}

.contents .contents-sub.no-footer {
	padding-bottom: 0;
}

.contents .contents-sub.contents-sub-vcenter {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding-bottom: 0;
	height: 57vh;
}

.contents .contents-sub .titbox {
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
	padding-bottom: 20px;
}

.contents .contents-sub .titbox > .tit {
	display: block;
    position: relative;
    padding-left: 25px;
    color: var(--light-color-text-bolder);
    font-size: var(--pc-font-size-heading-medium);
	font-weight: var(--font-weight-bold);
}

.contents .contents-sub .titbox > .tit::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 16px;
    height: 16px;
    background: url(../../images/gp/sub/i_tit.png) no-repeat;
}

.contents .contents-sub .titbox > .desc {
    font-size: var(--pc-font-size-label-small);
    font-weight: var(--font-weight-bold);
}

/* 검색조건 */
.search-box {
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: var(--gap-4);
	margin-bottom: var(--pc-gap-layout-h2-h3);
}

.search-box .search-form {
	display: flex;
    align-items: end;
    justify-content: flex-start;
    flex-direction: row;
    gap: var(--gap-3);
}

.search-box .search-form .wk-form-group {
	width: auto;
}

.search-box-extend {
	display: none;
	border: 2px solid lightgray;
    padding: 20px;
    border-radius: 10px;
	margin-bottom: var(--pc-gap-layout-h2-h3);
}

.search-box-extend > .search-box {
	margin-bottom: 0px;
}

.search-list-box {
	display: flex;
    align-items: normal;
    justify-content: flex-start;
    flex-direction: column;
    gap: var(--gap-5);
}

.search-list-box .search-list-top {
	display: flex;
	align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
    gap: var(--gap-9);
}

.search-list-box .search-list-top > .search-list-result {
	font-size: var(--pc-font-size-label-large);
	font-weight: 700;
}

.search-list-box .search-list-top > .search-list-info {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: row;
}

.search-list-box .search-list-top > .search-list-info > li {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: var(--gap-5);
}

.search-list-box .search-list-top > .search-list-info > li:not(:first-child) {
	margin-left: 1.4rem;
}

.search-list-box .search-list-top > .search-list-info > li:not(:first-child)::before {
    display: inline-flex;
    content: "";
    width: 0.1rem;
    height: var(--size-height-2);
    background-color: #cdd1d5
}

.search-list-box .search-list-top > .search-list-info > li > span {
	font-weight: 700;
}

.search-list-box .chart-list .chart-info {
	min-height: 300px;
	border: 1px solid;
	border-radius: 10px;
	padding: 10px;
}

.search-list-box .search-list .search-list-web {
	display: block;
}

.search-list-box .search-list .search-list-mobile {
	display: none;
}

.search-list-box .search-list .card-list {

}

.search-list-box .search-list .card-list li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.search-list-box .search-list .card-list li:not(:last-child) {
	border-bottom: 1px solid #e1e4e8;
}

.search-list-box .search-list .card-list li > .card-list-top {
	font-size: 14px;
	color: #555555;
	min-width: 80px;
}

.search-list-box .search-list .card-list li > .card-list-body {
	font-weight: 600;
	word-break: break-all;
}

/* 검색조건 끝 */

.info-box {
    position: relative;
    background-color: var(--light-color-surface-secondary-subtler);
    padding: 20px;
    border-radius: var(--radius-xlarge1);
    color: var(--light-color-text-basic);
    margin-bottom: 20px;
}

.info-box .select-menu {
    font-size: 18px;
    color: #2b6be2;
    font-weight: 700;
    text-indent: 25px;
    box-sizing: border-box;
    background: url(../../images/gp/select_menu_icon.png) 0 50% no-repeat;
    margin-bottom: 20px;
}

.contents .form-box {
	width: 100%;
	margin: 0 auto;
	padding: var(--pc-padding-card-large);
    border: 1px solid #b1b8be;
    border-radius: 12px;
	max-width: calc(79.2rem + var(--contents-padding-x) * 2);
}

.contents .form-box:not(:first-child) {
	margin-top: 24px;
}

.contents .form-box.full-contents {
	height: 100%;
	padding: 16px;
	margin: 0;
	max-width: none;
}

.contents .form-box .info-ul {
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: var(--gap-5);
    padding-left: 30px;
    width: 100%;
}

.contents .form-box .info-ul > li {
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: var(--gap-9);
    width: 100%;
}

.contents .form-box .info-ul > li .key {
	flex-shrink: 0;
    width: 16rem;
    font-weight: 700;
}

.contents .form-box .info-ul > li .value {
	word-break: break-all;
	width: 100%;
}

.contents .login-box {
	width: 100%;
	margin: 0 auto;
	padding: var(--pc-padding-card-large);
    border: 1px solid #b1b8be;
    border-radius: 12px;
	max-width: calc(59.2rem + var(--contents-padding-x) * 2);
}

.contents .in-between {
	display: flex;
    align-items: normal;
    justify-content: flex-start;
    flex-direction: row;
    gap: var(--gap-4);
}

.contents .in-between.fwrap {
	flex-wrap: wrap;
}

.contents .session-expire-box {
	width: 100%;
	margin: 0 auto;
	padding: var(--pc-padding-card-large);
    border: 1px solid #b1b8be;
    border-radius: 12px;
	max-width: calc(59.2rem + var(--contents-padding-x) * 2);
}

.contents .session-expire-box .seb-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 20px;
}

.contents .session-expire-box .seb-header .seb-title {
    color: var(--light-color-text-bolder);
    font-size: var(--pc-font-size-heading-large);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--typo-letter-spacing-1);
    text-align: center;
}

.contents .session-expire-box .seb-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.contents .session-expire-box .seb-body .seb-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 18px;
    gap: 14px;
}

.contents .session-expire-box .seb-body .seb-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    font-weight: 600;
}

/* 좌우패널 기본 */
.in-between-w-30p {width: 30%;}
.in-between-w-40p {width: 40%;}
.in-between-w-50p {width: 50%;}
.in-between-w-60p {width: 60%;}
.in-between-w-100p {width: 100%;}

.in-between-3 {
	width: calc(33.33% - 8px);
}

.contents .in-between .list-box {
    margin: 0;
    box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
   	min-height: 325px;
   	padding-right: 7px;
}

.contents .in-between .detail-box {
    margin: 0;
    box-sizing: border-box
}

.contents .in-between .list-box .category,
.contents .in-between .detail-box .category {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    background-color: #f4f4f4;
}

/* 도움말 */
.contents .hlp-menu-btn {
	display: none;
	margin-bottom: 10px;
}

.contents .hlp-between {
	display: flex;
    align-items: normal;
    justify-content: flex-start;
    flex-direction: row;
    gap: var(--gap-4);
}

.contents .hlp-between .hlp-menu-box {
	display: block;
	min-width: 270px;
	max-width: 320px;
    margin: 0;
    box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
   	height: 700px;
   	padding-right: 7px;
   	transition: var(--transition-base);
   	z-index: 10;
}

.contents .hlp-between .hlp-contents-box {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.contents .hlp-between .hlp-contents-box p {
	min-height: 20px;
}

.contents .hlp-between .hlp-contents-box ul {
	list-style: inherit;
}

.contents .hlp-between .hlp-contents-box ol {
	list-style-type: decimal;
}

.contents .hlp-between .hlp-contents-box table {
	border-collapse: collapse;
	border: 0px;
}

.contents .hlp-between .hlp-contents-box a {
	color: #616161;
	text-decoration: none;
}

.contents .hlp-between .hlp-contents-box table,
.contents .hlp-between .hlp-contents-box tbody,
.contents .hlp-between .hlp-contents-box tr,
.contents .hlp-between .hlp-contents-box td {
	border: 0px;
}

.contents .hlp-between .hlp-contents-box td {
	height: 30px;
	border: 1px solid #cccccc;
	box-sizing: border-box;
	padding:0 10px;
}

.contents .hlp-between .hlp-contents-box th{
	height: 30px;
	text-align: center;
	background-color: var(--light-color-surface-secondary-subtler);
	border : 1px solid #cccccc;
	box-sizing: border-box;
	color: #333;
	font-weight: 700;
}

.contents .hlp-between .hlp-contents-box hr {
	position: unset !important;
	width: 100% !important;
	border: 1px solid black !important;
	margin: 5px 0 10px 0 !important;
	height: 0 !important;
}

.contents .hlp-between .hlp-menu-box .hlp-menu {
    position: relative;
    padding: 40px 28px;
    padding-right: 0;
    min-height: 700px;
    background-color: #002e57;
    box-sizing: border-box;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-top {
    margin-bottom: 30px;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-top h2 {
    display: block;
    color: #fff;
    font-size: 27px;
    line-height: 1.3;
    font-weight: normal;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-top h2 a {
    text-decoration: none;
    color: #fff;
	cursor : pointer;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth1 {
   	display: block;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth1 li {
   	margin-bottom: 5px;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth1 li a {
    position: relative;
    display: block;
    line-height: 1.2;
    word-wrap: break-word;
    word-break: keep-all;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth1>li>a {
	position: relative;
    padding: 10px 30px 12px 18px;
    font-size: 16px;
    color: #fff;
	text-decoration: none;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth1>li>a:hover {
	background-color: #da3f15;
    color: #fff;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth1>li>a:hover span {
	background-color: #da3f15;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth1>.active>a {
    background-color: #da3f15;
    color: #fff;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth1>.active>a span {
    background-color: #f54f23;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth1>li>a span {
    position: absolute;
    top: 0;
    right: -7px;
    display: block;
    width: 7px;
    height: 100%;
    background-color: transparent;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth2 {
	padding: 4px 10px 10px 30px;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth2>li {
    border: none;
    margin-bottom: 6px;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth2>.active>a {
    color: #efefef;
    font-weight: 700;
    text-decoration: underline;
}
.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth2>li a {
    position: relative;
    padding: 2px 11px;
    background-position: 0 0;
    border: none;
    color: #aaa;
    font-size: 16px;
    line-height: 1.4;
    word-wrap: break-word;
    word-break: keep-all;
}

.contents .hlp-between .hlp-menu-box .hlp-menu .hlp-ul-depth2>li a:before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #da3f15;
    border-radius: 50%;
}

.contents .hlp-between .hlp-contents-box .hlp-contents {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    padding: 20px 30px 20px 30px;
	min-height: 700px;
   	overflow-y: auto;
   	overflow-x: hidden;
}

.hlp-contents-preview p {
	min-height: 20px;
}

.hlp-contents-preview ul {
	list-style: inherit;
}
.hlp-contents-preview ol {
	list-style-type: decimal;
}

.hlp-contents-preview table {
	border-collapse: collapse;
	border: 0px;
}

.hlp-contents-preview a {
	color: #616161;
	text-decoration: none;
}

.hlp-contents-preview table,
.hlp-contents-preview tbody,
.hlp-contents-preview tr,
.hlp-contents-preview td {
	border: 0px;
}

.hlp-contents-preview td {
	height: 30px;
	border: 1px solid #cccccc;
	box-sizing: border-box;
	padding:0 10px;
}

.hlp-contents-preview th{
	height: 30px;
	text-align: center;
	background-color: var(--light-color-surface-secondary-subtler);
	border : 1px solid #cccccc;
	box-sizing: border-box;
	color: #333;
	font-weight: 700;
}

.hlp-contents-preview hr {
	position: unset !important;
	width: 100% !important;
	border: 1px solid black !important;
	margin: 5px 0 10px 0 !important;
	height: 0 !important;
}


/* 도움말 끝 */

/* 테이블 모음*/
.table-s1 {
	width: 100%;
	font-size: 16px;
	margin-bottom: 20px;
	overflow-x: auto;
}

.table-s1 table {
	border-collapse: collapse;
	border: 0px;
}

.table-s1 a {
	color: #616161;
	text-decoration: none;
}

.table-s1 table,
.table-s1 tbody,
.table-s1 tr,
.table-s1 td {
	border: 0px;
}

.table-s1 td {
	height: 46px;
	border: 1px solid #cccccc;
	border-left: none;
	border-right: none;
	box-sizing: border-box;
	padding:0 10px;
}

.table-s1 th{
	height: 46px;
	text-align: center;
	background-color: var(--light-color-surface-secondary-subtler);
	border : 1px solid #cccccc;
	box-sizing: border-box;
	border-left: none;
	border-right: none;
	color: #333;
	font-weight: 700;
}

.table-s1 .bbs-title {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 4px;
}
/* 테이블  끝 */

/* 팝업 */
.popup-dialog-wrap {
	display: block;
	z-index: 1000;
}

.popup-dialog {
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    background-color: white;
    border-radius: 5px;
	border: 1px #54A94C solid;
    border-bottom: 10px solid #54A94C;
}

.popup-dialog > .popup-dialog-header {
	height: 30px;
    background: linear-gradient(rgb(86, 86, 86), rgb(33, 33, 33));
    color: rgb(255, 255, 255);
    text-align: left;
    font-size: 14px;
    padding: 5px 15px;
    width: 100%;
    cursor: pointer;
}

.popup-dialog > .popup-dialog-contents {
	height: 100%;
	width: 100%;
	overflow-y: auto;
}

.popup-dialog > .popup-dialog-bottom {
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    padding: 5px 15px;
    width: 100%;
    height: 32px;
    background-color: rgb(238, 238, 238);
}

.popup-dialog > .popup-dialog-bottom label {
	font-size: 13px !important;
	line-height: 24px;
}

.popup-dialog > .popup-dialog-bottom button {
    height: 24px;
    width: 40px;
    font-size: 13px;
	background-color: rgb(102, 102, 102);
    border-color: rgb(102, 102, 102);
}
/* 팝업 */

/* 사이트맵 */
.sitemap {

}

.sitemap > ul {
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
	counter-reset: numbering;
	gap: 20px;
}

.sitemap > ul > li {
	counter-increment: numbering;
	width: 100%;
}

.sitemap > ul > li > .depth1 {
    position: relative;
    display: block;
    height: 6.8rem;
    line-height: calc(6.8rem - 2px);
    padding: 0 3rem;
    background: #f5f7f9;
    border: 1px solid #dee1e5;
    font-size: 2.8rem;
    font-weight: 700;
    color: #052b57;
    overflow: hidden;
    border-radius: 5px;
}

.sitemap > ul > li > .depth1::before {
	display: inline-flex;
    width: var(--icon--size-medium);
    height: var(--icon--size-medium);
    background-color: var(--light-color-text-basic);
    forced-color-adjust: none;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: contain;
    -webkit-mask-image: url(../../images/ui/icon/ico_angle.svg);
    mask-image: url(../../images/ui/icon/ico_angle.svg);
    content: "";
    flex-shrink: 0;
    transition: var(--transition-base);
    transform: rotate(-90deg);
    margin-right: 10px;
}

.sitemap > ul > li > .depth1::after {
	display: inline-block;
	position: absolute;
    content: counter(numbering, decimal-leading-zero);
    right: 5rem;
    font-size: 8rem;
    font-weight: 700;
    font-style: italic;
    color: #a7aeb5;
    opacity: .15;
    letter-spacing: -4px;
    box-sizing: border-box;
}

.sitemap > ul > li > ul {
}

.sitemap > ul > li > ul > li {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    min-height: 214px;
}

.sitemap > ul > li > ul > li.type-default {
	min-height: 150px;
}

.sitemap > ul > li > ul > li > .depth2 {
	padding: 20px;
	width: 20%;
	font-size: 20px;
	font-weight: 700;
	background-color: #eef2f7;
	border-radius: 5px;
	color: #052b57;
}

.sitemap > ul > li > ul > li > .depth3-list {
	display: flex;
	flex-direction: column;
    align-items: normal;
    gap: var(--gap-5);
    min-height: 100%;
    padding: 16px 16px;
    width: 100%;
}

.sitemap > ul > li > ul > li > .depth3-list > .depth3-contents {
	display: flex;
    align-items: normal;
    justify-content: flex-start;
    flex-direction: column;
    flex: 1;
    gap: var(--gap-5);
}

.sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: var(--gap-7);
}

.sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul > li a {
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    gap: var(--gap-3);
    padding: var(--main-menu--sub-menu-trigger-color-padding-y) var(--main-menu--sub-menu-trigger-color-padding-x);
    background-color: var(--main-menu--sub-menu-color-action);
    border-radius: var(--main-menu--sub-menu-trigger-color-radius);
    font-size: var(--main-menu--sub-menu-trigger-color-font-size);
}

.sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul > li a::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    margin-top: var(--padding-4);
    background-color: var(--light-color-text-basic);
    border-radius: var(--radius-max);
}

.sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul.type-description > li {
    display: flex;
    align-items: normal;
    justify-content: flex-start;
    flex-direction: column;
    gap: var(--gap-2);
    padding: 0;
}

.sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul.type-description > li .tit {
    font-size: 19px;
    font-weight: var(--font-weight-bold);
}

.sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul.type-description > li .tit a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    width: auto;
    padding: 4px;
    background-color: #ffffff00;
    border-radius: 6px;
}

.sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul.type-description > li .tit a::before {
	display: none;
}

.sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul.type-description > li .txt {
    padding: 16px 4px 0;
    border-top: 0.1rem solid #cdd1d5;
    font-size: 17px;
    color: #464c53;
}

/* 사이트맵 */

/* 부트스트랩 modal 관련 */

.modal .logo {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: var(--gap-5);
    overflow: hidden;
    user-select: none;
}

.modal .logo > .tit-wink {
	font-size: 32px;
    letter-spacing: -2px;
    user-select: none;
    cursor: pointer;
}

.modal .logo > .tit-system {
	display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: var(--gap-1);
    position: relative;
    height: 100%;
    padding-left: 10px;
    border-left: 1px solid #c8cbd1;
    user-select: none;
    cursor: pointer;
}

.modal .logo > .tit-system > p {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2px;
}

.modal .logo > .tit-system > span {
	font-size: 10px;
    font-weight: normal;
}

.modal .logo > .tit-mof {
	padding-left: 10px;
	border-left: 1px solid #c8cbd1;
	user-select: none;
	width: 48px;
}

.modal .logo > .tit-mof > img {
	content: url(../../images/biz/map/mof_logo.png);
}

/* 부트스트랩 modal 관련 */

.txt-red {
	color: #f3474d;
    font-size: 18px;
    font-weight: bold;
}

.txt-red2 {
	color: #f3474d !important;
    font-weight: bold;
}

.txt-blue {
	color: #0b50d0;
    font-size: 18px;
    font-weight: bold;
}

/* spinner */
.spinner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	gap: var(--gap-3);
	font-size: var(--pc-font-size-body-small);
}

.spinner::before {
    display: inline-flex;
    content: "";
    height: var(--size-height-3);
    width: var(--size-height-3);
    min-width: var(--size-height-3);
    border: var(--light-border-width-variable-medium) solid var(--light-color-element-disabled-light);
    border-top-color: var(--light-color-element-primary);
    border-radius: 100%;
    animation: spin 900ms infinite linear;
}
/* spinner */

.f-btm .f-btm-text .f-menu .privacy {
    color: #d75e6f;
    font-weight: 700;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(359deg); }
}

.justify-flex-end {
	justify-content: flex-end !important;
}

/* 애니메이션 */
@keyframes fadein {
    from { opacity: 0; transform:translateY(80px);}
    to { opacity: 1; transform:none;}
}

.ani-box {animation :fadein 1s ease-in-out; animation-fill-mode: forwards;}


/* 컨트롤 */
.btn-primary {
    background-color: #005f99;
    color: white;
    border: #005f99;
}

.btn-primary:hover {
    background-color: #008ac5;
    border-color: #008ac5;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: #005f99;
    transform: translateY(-2px);
}

.ctl-w-auto {width: auto;}
.ctl-w-1 {width: 1rem;}
.ctl-w-2 {width: 2rem;}
.ctl-w-3 {width: 3rem;}
.ctl-w-4 {width: 4rem;}
.ctl-w-5 {width: 5rem;}
.ctl-w-6 {width: 6rem;}
.ctl-w-7 {width: 7rem;}
.ctl-w-8 {width: 8rem;}
.ctl-w-9 {width: 9rem;}
.ctl-w-10 {width: 10rem;}
.ctl-w-15 {width: 15rem;}
.ctl-w-20 {width: 20rem;}
.ctl-w-30 {width: 30rem;}
.ctl-w-40 {width: 40rem;}
.ctl-w-50 {width: 50rem;}
.ctl-w-60 {width: 60rem;}
.ctl-w-70 {width: 70rem;}
.ctl-w-80 {width: 80rem;}

.flex-gap-1 {gap: var(--gap-1) !important;}
.flex-gap-2 {gap: var(--gap-2) !important;}
.flex-gap-3 {gap: var(--gap-3) !important;}
.flex-gap-4 {gap: var(--gap-4) !important;}
.flex-gap-5 {gap: var(--gap-5) !important;}

.display-none {display: none !important;}

.cursor-pointer {cursor: pointer !important;}

.grid-editor-color {background-color:rgba(227, 245, 215, 0.46);}

.text-align-left {text-align: left;}
.text-align-center {text-align: center;}

.pd-b-0 {padding-bottom: 0px !important;}

.mg-t-0 {margin-top: 0px !important;}
.mg-t-2 {margin-top: 0.5rem !important;}
.mg-t-3 {margin-top: 1rem !important;}
.mg-t-5 {margin-top: 3rem !important;}

.mg-b-0 {margin-bottom: 0px !important;}
.mg-b-3 {margin-bottom: 1rem !important;}

.mg-r-auto {margin-right: auto !important;}

/* 브라우저 자동완성 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: var(--input--color-text) !important;
}

/* 어두운 화면 */
[data-wk-mode=high-contrast] .contents .contents-sub .titbox > .tit {
	color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .contents .contents-header > .hbox > .tit {
	color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .contents .contents-header > .infbox {
    background-color: var(--high-contrast-color-surface-secondary-subtler);
    color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .contents .session-expire-box .seb-header .seb-title {
	color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .contents .in-between .list-box .category,
[data-wk-mode=high-contrast] .contents .in-between .detail-box .category {
    background-color: black;
}

[data-wk-mode=high-contrast] .contents .hlp-between .hlp-contents-box hr {
	border: 1px solid #f4f5f6 !important;
	opacity: 1;
}

[data-wk-mode=high-contrast] .txt-blue {
	color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .search-list .svg-icon {
	background-color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .search-list-box .search-list .card-list li > .card-list-top {
	color: white;
}

[data-wk-mode=high-contrast] .table-s1 .svg-icon:hover {
	opacity: 0.5;
}

[data-wk-mode=high-contrast] .table-s1 th {
	background-color: black;
	color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .table-s1 table,
[data-wk-mode=high-contrast] .table-s1 tbody,
[data-wk-mode=high-contrast] .table-s1 tr,
[data-wk-mode=high-contrast] .table-s1 td,
[data-wk-mode=high-contrast] .table-s1 th {
	border: 1px solid white;
}

[data-wk-mode=high-contrast] .table-s1 a {
	color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .sitemap > ul > li > .depth1::after {
	color: black;
}

[data-wk-mode=high-contrast] .sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul > li a,
[data-wk-mode=high-contrast] .sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul.type-description > li .tit,
[data-wk-mode=high-contrast] .sitemap > ul > li > ul > li > .depth3-list > .depth3-contents > ul.type-description > li .txt {
	color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .wk-btn.icon .svg-icon {
    background-color: var(--high-contrast-color-text-basic);
}

[data-wk-mode=high-contrast] .popup-dialog {
    background-color: black;
}

[data-wk-mode=high-contrast] .popup-dialog > .popup-dialog-bottom {
    background-color: black;
}

[data-wk-mode=high-contrast] .contents .side-box {
	background: black;
}

[data-wk-mode=high-contrast] .contents .side-box .side-contents .side-contents-box {
	background: black;
}

[data-wk-mode=high-contrast] .btn-primary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

[data-wk-mode=high-contrast] .btn-primary:hover {
    background-color: white;
    color: #005f99;
    border: 2px solid white;
}

[data-wk-mode=high-contrast] .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

[data-wk-mode=high-contrast] .btn-outline:hover {
    background-color: white;
    color: #005f99;
    transform: translateY(-2px);
}

[data-wk-mode=high-contrast] .g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-header-box {
    color: white;
}

[data-wk-mode=high-contrast] .g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-content-box li > .news-date {
	color: white;
}

/* bootstrap 고대비 */
[data-wk-mode=high-contrast] .modal .logo > .tit-mof > img {
	content: url(../../images/biz/map/mof_logo_high_contrast.png);
}

[data-wk-mode=high-contrast] .modal-dialog .modal-content {
    color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .modal-dialog .modal-title .txt-blue {
	color: #1a1a1a;
}

[data-wk-mode=high-contrast] .modal-dialog .modal-body,
[data-wk-mode=high-contrast] .modal-dialog .modal-footer {
	background-color: black;
}

[data-wk-mode=high-contrast] .modal-fullscreen,
[data-wk-mode=high-contrast] .modal-fullscreen .modal-header,
[data-wk-mode=high-contrast] .modal-fullscreen .modal-body,
[data-wk-mode=high-contrast] .modal-fullscreen .modal-footer {
	background-color: black;
}

[data-wk-mode=high-contrast] .modal-fullscreen .modal-header .modal-title {
	color: var(--high-contrast-color-text-bolder);
}

[data-wk-mode=high-contrast] .modal-fullscreen .modal-header .btn-close {
	opacity: 1;
}

[data-wk-mode=high-contrast] .modal-fullscreen .modal-header .btn-close:hover {
	opacity: 0.5;
}

[data-wk-mode=high-contrast] .modal-fullscreen .modal-header .btn-close > .fa {
    color: white;
}

/* jstree 고대비 */
[data-wk-mode=high-contrast] .jstree-default .jstree-hovered {
    color: #052b57;
}

[data-wk-mode=high-contrast] .jstree-default .jstree-clicked {
    color: #052b57;
}

/* 브라우저 자동완성 */
[data-wk-mode=high-contrast] input:-webkit-autofill,
[data-wk-mode=high-contrast] input:-webkit-autofill:hover,
[data-wk-mode=high-contrast] input:-webkit-autofill:focus,
[data-wk-mode=high-contrast] input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px var(--input--color-surface) inset !important;
    -webkit-text-fill-color: var(--high-contrast-color-text-bolder) !important;
}

/* 어두운 화면 */

/* 반응형 */
@media (max-width: 1400px) {
	.in-between-3 {
		width: calc(50% - 8px);
	}
}

@media (min-width: 1024px) {
	.inner {
		margin: 0 auto;
	}
}

@media (max-width: 1023px) {
	.g-wrap .main-wrap .main-section01 .main-section01-header {
	    padding: 60px 10px;
	}

	.g-wrap .main-wrap .main-section01 .main-section01-header .s01-h-content-boxes .s01-h-title-box {
		font-size: 3.0rem;
	}

	.g-wrap .main-wrap .main-section01 .main-section01-header .s01-h-content-boxes .s01-h-content-box {
		width: 100%;
	}

	.g-wrap .main-wrap .main-section01 .main-section01-header .s01-h-content-boxes .s01-h-button-box {
	}

	.g-wrap .main-wrap .main-section01 .main-section01-contents {
	    padding: 20px 10px;
	}

	.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes {
		grid-template-columns: repeat(2, 1fr);
	}

	.blockUI.blockMsg.blockPage {
		width: 60% !important;
		left: 20% !important;
	}

	.contents .hlp-menu-btn {
		display: block;
	}

	.contents .hlp-between .hlp-menu-box {
		position: absolute;
		left: -320px;
	}

	.in-between-3 {
		width: 100%;
	}

	.window-only {
		display: none;
	}
}

@media (max-width: 767px) {
	.g-wrap .main-wrap .main-section01 .main-section01-header {
	    padding: 60px 0px;
	}

	.g-wrap .main-wrap .main-section01 .main-section01-header .s01-h-content-boxes .s01-h-title-box {
		font-size: 2.8rem;
	}

	.g-wrap .main-wrap .main-section01 .main-section01-header .s01-h-content-boxes .s01-h-content-box {
		font-size: 1.8rem;
	}

	.g-wrap .main-wrap .main-section01 .main-section01-header .s01-h-content-boxes .s01-h-button-box {
	}

	.g-wrap .main-wrap .main-section01 .main-section01-contents {
	    padding: 20px 0px;
	}

	.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes {
		grid-template-columns: repeat(1, 1fr);
	}

	.g-wrap .main-wrap .main-section01 .main-section01-contents .s01-c-content-boxes > .s01-c-content-box > .s01-c-content {
		margin-left: 0px;
		margin-right: 0px;
	}

	.g-wrap .main-wrap .main-section02 .main-section02-contents {
		padding: 50px 10px;
	}

	.g-wrap .main-wrap .main-section02 .main-section02-contents .s02-c-content-box li {
	    align-items: flex-start;
	    flex-direction: column;
	    gap: 4px;
	}

	.contents .side-box {
		width: var(--wid-mobile-lside);
	}

	.contents .side-box .form-hint {
		font-size: 11px;
	}

	.contents .side-box .side-contents .side-contents-box .side-contents-depth1 .depth1-tit {
		height: 32px;
	}

	.contents .side-box .side-contents .side-contents-box .side-contents-depth1 .depth1-tit > a {
		text-indent: 4px;
		font-size: 14px;
	}

	.contents .side-box .side-contents .side-contents-box .side-contents-depth2 {
		padding: 10px 10px 10px 12px;
	}

	.contents .side-box .side-contents .side-contents-box .side-contents-depth2 .depth2-tit {
		height: 30px;
	}

	.contents .side-box .side-contents .side-contents-box .side-contents-depth2 .depth2-tit > a {
		font-size: 14px;
		text-indent: 4px;
	}

	.contents .side-box .side-contents .side-contents-box .side-contents-depth3 > li {
		height: 30px;
	}

	.contents .side-box .side-contents .side-contents-box .side-contents-depth3 .depth3-tit > a {
		font-size: 14px;
		text-indent: 4px;
	}

	.contents .contents-header > .hbox > .tit {
		font-size: var(--pc-font-size-heading-medium);
	}

	.contents .contents-header > .infbox > .desc {
		font-size: var(--pc-font-size-body-medium);
	}

	.contents .contents-sub.contents-sub-vcenter {
		height: unset;
	}

	.err-wrap {
		padding: 10px;
	}

	.err-wrap .err-box {
		padding: 24px;
	}

	.err-wrap .err-box .err-header > img {
        width: 24.4rem;
        height: 5.2rem;
	}

	.err-wrap .err-box .err-contents > .err-msg > span {
		font-size: 18px;
	}

	.err-wrap .err-box .err-contents > .err-desc {
		font-size: 14px;
	}

	.search-box .search-form {
	    align-items: flex-start;
	    flex-direction: column;
	    width: 100%;
	}

	.search-box .search-form .wk-form-group {
		width: 100%;
	}

	.search-list-box .search-list .search-list-web {
		display: none;
	}

	.search-list-box .search-list .search-list-mobile {
		display: block;
	}


	.search-list-box .search-list-top {
		align-items: flex-start;
		flex-direction: column;
		gap: var(--gap-3);
	}

	.search-list-box .search-list-top > .search-list-result {
		order: 1;
	}

	.search-list-box .search-list-top > .search-list-info {
		align-items: flex-end;
		flex-direction: column;
		margin-left: auto;
	}

	.search-list-box .search-list-top > .search-list-info > li:not(:first-child)::before {
		width: 0;
	}

	.in-between-w-30p,
	.in-between-w-40p,
	.in-between-w-50p,
	.in-between-w-60p,
	.in-between-w-100p {
		width: 100%;
	}

	.contents .in-between {
	    flex-direction: column;
	}

	.table-s1 {font-size: 14px;}

	.contents .form-box .info-ul > li {
		flex-direction: column;
        gap: var(--gap-3);
	}

	.ctl-w-auto,
	.ctl-w-1, .ctl-w-2, .ctl-w-3, .ctl-w-4, .ctl-w-5, .ctl-w-6, .ctl-w-7, .ctl-w-8, .ctl-w-9, .ctl-w-10, .ctl-w-15,
	.ctl-w-20,
	.ctl-w-30,
	.ctl-w-40,
	.ctl-w-50,
	.ctl-w-60,
	.ctl-w-70,
	.ctl-w-80 {
		width: 100%;
	}
}

/*bootstrap 깨짐방지*/
*:focus:is(.ui-draggable) {
	outline: unset;
	box-shadow: unset;
}

.tooltip-inner {
	font-size: 14px;
}

.modal-fullscreen {
	width: auto;
	background-color: white;
}

.modal-default .modal-header .btn-close,
.modal-fullscreen .modal-header .btn-close {
	background: unset;
	display: flex;
    align-items: center;
    justify-content: center;
}

.form-text {
	margin-top: unset;
	color: unset;
}

/*bootstrap 깨짐방지*/

/*jqgrid 깨짐방지*/
.ui-jqgrid .ui-th-column .cbox {
	position: relative !important;
    width: 14px !important;
    height: 14px !important;
}

.ui-jqgrid .jqgrow > td > .cbox {
	position: relative !important;
    width: 14px !important;
    height: 14px !important;
}

.ui-jqgrid .ui-jqgrid-btable {
	min-width: unset;
}

.ui-jqgrid tr {
  outline: none;
  box-shadow: none;
}

/*jqgrid 깨짐방지*/

/*ckeditor 깨짐방지*/
.cke_dialog_container table {
	min-width: unset;
}
/*ckeditor 깨짐방지*/
