@charset "UTF-8";
@import "reset.css";
@import "font.css";
html {
    width: 100%;
    height: 100%;
    font-family: "notosans", sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #2d2f43;
}

body {
    width: 100%;
    height: 100%;
    background-color: #f9fafb;
    overflow-x: auto;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* header */
header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%; /*min-width: $body-min-width;*/
    height: 70px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    background: #fff;
}
header h1 {
    width: 230px;
}
header h1 a img {
    width: 200px;
}
header nav {
    padding-left: 50px;
}
header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px 20px;
}
header nav ul li a {
    font-size: 1.7rem;
    font-weight: 500;
}
header nav ul li a:hover,
header nav ul li a.active {
    color: #FC4C02;
}
header > ul {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 30px;
}
header > ul li a {
    font-size: 1.4rem;
}

/* aside */
aside {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 8;
    width: 230px;
    height: 100%;
    padding-top: 112px;
    background: #2eaf6e;
    overflow-y: auto;
    border-right: 1px solid #ddd;
}
aside h1 {
    position: fixed;
    left: 0;
    top: 70px;
    z-index: 9;
    width: 230px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #2eaf6e;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}
aside ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0 20px 0;
}
aside ul li {
    position: relative;
    width: 100%;
}
aside ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 32px;
    padding: 0 20px 0 30px;
    font-size: 1.4rem;
    color: #f3f3f3;
    font-weight: 300;
}
aside ul li a:hover {
    color: #97ce98;
}
aside ul li a.active {
    background-color: #97ce98;
    color: #2d2f43;
}
aside ul li a.active::before {
    display: block;
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    content: "";
    background: #2d2f43;
}
aside::-webkit-scrollbar {
    width: 3px;
    border-radius: 3px;
}
aside::-webkit-scrollbar-thumb {
    background-color: #ddd;
}
aside::-webkit-scrollbar-track {
    background-color: #2eaf6e;
}

/* main */
main {
    width: 100%;
    min-width: 1600px;
    padding: 70px 20px 20px 250px;
}
main > article .page_location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 20px;
    width: 100%;
    height: 40px;
}
main > article .page_location span {
    font-size: 1.2rem;
    color: #999;
    min-height: 16px;
}
main > article .page_location span::after {
    content: url("../img/ic/c_ic_breadcrumbs.svg");
    position: absolute;
    width: 16px;
    height: 16px;
    margin: -1px 0 0 2px;
}
main > article .page_location span:last-child {
    color: #2d2f43;
}
main > article .page_location span:last-child::after {
    content: "";
}
main section {
    min-height: 500px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 12px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 12px 0 rgba(0, 0, 0, 0.05);
}
main.main_page {
    padding: 90px 20px 20px 20px;
}

/* input */
input {
    width: 100%;
    height: 30px;
    padding: 0 8px;
    border: 1px solid #ddd;
    font-size: 1.4rem;
    color: #2d2f43;
    border-radius: 2px;
}
input:-moz-read-only {
    background-color: #ededed;
}
input:disabled,
input:read-only {
    background-color: #ededed;
}
input::-webkit-input-placeholder {
    color: #999;
}
input::-moz-placeholder {
    color: #999;
}
input:-ms-input-placeholder {
    color: #999;
}
input::-ms-input-placeholder {
    color: #999;
}
input::placeholder {
    color: #999;
}
input[type="date"].date {
    width: 130px;
}

/* textarea */
textarea {
    width: 100%;
    height: auto;
    min-height: 60px;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 1.4rem;
    color: #2d2f43;
    border-radius: 2px;
    overflow: auto;
}

/* 라디오 / 체크박스 버튼 */
.radio_wrap,
.chkbox_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px 20px;
}
.radio_wrap label,
.chkbox_wrap label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 5px;
    cursor: pointer;
}

input[type="radio"] {
    display: none;
}
input[type="radio"] + i {
    width: 20px;
    height: 20px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: url("../img/bg/radio_out.png") no-repeat left top/100%;
}
input[type="radio"] + i + span {
    font-size: 1.5rem;
    color: #333;
}
input[type="radio"]:checked + i {
    background: url("../img/bg/radio_in.png") no-repeat left top/100%;
}
input[type="radio"]:disabled + i {
    opacity: 0.5;
}

input[type="checkbox"] {
    display: none;
}
input[type="checkbox"] + i {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 2px;
    border: 1px solid #ddd;
}
input[type="checkbox"] + i + span {
    font-size: 1.5rem;
    color: #333;
}
input[type="checkbox"]:checked + i {
    background: #2eaf6e url("../img/bg/check_in.png") no-repeat center/14px;
}
input[type="checkbox"]:disabled + i {
    opacity: 0.5;
}

a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #2d2f43;
}

/* 파일첨부 */
.file_wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 5px;
}
.file_wrap > input[type="file"] {
    visibility: hidden;
    width: 0;
    height: 0;
    border: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}
.file_wrap > button {
    background-color: #222a3e;
    color: #fff;
}

/* select */
select {
    width: 100%;
    height: 30px;
    padding: 0 28px 0 8px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff url("../img/bg/ico_select_dark.png") no-repeat right 8px
        center/10px;
    font-size: 1.4rem;
    color: #2d2f43;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select:disabled {
    background-color: #ededed;
}
/* 샐렉트박스 선택후 나오는 리스트 */
.select2-results__option {
    padding: 5px;
    user-select: none;
    -webkit-user-select: none;
    font-size: 1.3em;
}

/* title - text */
.title_box {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

h2 {
    font-size: 1.8rem;
    font-weight: 500;
}

h3 {
    font-size: 1.6rem;
    font-weight: 400;
}

h4 {
    font-size: 1.5rem;
}

.info_text_red {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 5px;
    margin-top: 10px;
    font-size: 1.2rem;
    color: #e73956;
}

.print_text {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 500;
    text-decoration: underline;
    letter-spacing: 5px;
}

/* search_wrap */
.search_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 15px 25px;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.search_wrap > div .row {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0 20px;
}
.search_wrap > div .row:first-child {
    margin-top: 0;
}
.search_wrap > div .row .cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 5px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.search_wrap > div .row .cell.flex_none {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.search_wrap > div .row .cell span {
    font-size: 1.4rem;
    white-space: nowrap;
}
.search_wrap > div .row .cell .chkbox_wrap {
    gap: 5px 10px;
}
.search_wrap > .search_box {
    -webkit-box-flex: 8;
    -ms-flex-positive: 8;
    flex-grow: 8;
}
.search_wrap > .search_button {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
}
.search_wrap > .search_button .row {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 0 10px;
}

/* table */
.table_wrap {
    width: 100%;
}
.table_wrap .table_top {
    margin-top: 20px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.table_wrap .table_top:first-child {
    margin-top: 0;
}
.table_wrap .table_top h4 span {
    color: #2eaf6e;
}
.table_wrap .table_top > div:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 10px;
}
.table_wrap .table_box {
    width: 100%;
    margin-top: 10px;
}
.table_wrap .table_box.table_over_x {
    overflow-x: auto;
}

table {
    width: 100%;
    margin-top: -1px;
}
table:first-child {
    margin-top: 0;
}
table caption {
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    visibility: hidden;
}
table.list_type_1 thead tr th,
table.list_type_1 tfoot tr th {
    padding: 8px 10px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    background-color: #f3f6f8;
    border: 1px solid #ccc;
    position: relative;
}
/* 마우스가 테이블 셀 가장자리에 올 때 커서 변경 */
table.list_type_1 thead tr th {
    cursor: col-resize;
}
/* 첫 번째와 마지막 열은 커서 변경 안 함 */
table.list_type_1 thead tr th:first-child,
table.list_type_1 thead tr th:last-child {
    cursor: default;
}
table.list_type_1 thead tr th .chkbox_wrap,
table.list_type_1 tfoot tr th .chkbox_wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
table.list_type_1 thead tr td,
table.list_type_1 tfoot tr td {
    padding: 8px 10px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
}
table.list_type_1 thead tr td.title,
table.list_type_1 tfoot tr td.title {
    background-color: #f3f6f8;
}
table.list_type_1 thead tr td .chkbox_wrap,
table.list_type_1 tfoot tr td .chkbox_wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
table.list_type_1 tbody tr {
    background-color: #fff;
}
table.list_type_1 tbody tr:hover {
    cursor: pointer;
    background-color: #deeede;
}
table.list_type_1 tbody tr:active {
    background-color: #c0dfc1;
}
table.list_type_1 tbody tr td {
    height: 38px;
    padding: 3px 5px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    border: 1px solid #ccc;
}
table.list_type_1 tbody tr td .chkbox_wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
table.list_type_1 tbody tr td.text_left {
    text-align: left;
}
table.list_type_1 tbody tr th {
    padding: 8px 10px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    background-color: #f3f6f8;
    border: 1px solid #ccc;
}
table.list_type_1.hover_none tbody tr:hover {
    cursor: default;
    background-color: #fff;
}
table.list_type_1.hover_none tbody tr:active {
    background-color: #fff;
}
table.list_type_2 thead tr th,
table.list_type_2 tfoot tr th {
    padding: 8px 10px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    background-color: #f3f6f8;
    border: 1px solid #ccc;
    position: relative;
}
table.list_type_2 thead tr th .chkbox_wrap,
table.list_type_2 tfoot tr th .chkbox_wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
table.list_type_2 thead tr td,
table.list_type_2 tfoot tr td {
    padding: 8px 10px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
}
table.list_type_2 thead tr td.title,
table.list_type_2 tfoot tr td.title {
    background-color: #f3f6f8;
}
table.list_type_2 thead tr td .chkbox_wrap,
table.list_type_2 tfoot tr td .chkbox_wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
table.list_type_2 tbody tr {
    background-color: #fff;
}
table.list_type_2 tbody tr:hover {
    cursor: pointer;
    background-color: #deeede;
}
table.list_type_2 tbody tr:active {
    background-color: #c0dfc1;
}
table.list_type_2 tbody tr td {
    height: 38px;
    padding: 3px 5px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    border: 1px solid #ccc;
}
table.list_type_2 tbody tr td .chkbox_wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
table.list_type_2 tbody tr td.text_left {
    text-align: left;
}
table.list_type_2 tbody tr th {
    padding: 8px 10px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    background-color: #f3f6f8;
    border: 1px solid #ccc;
}
table.list_type_2.hover_none tbody tr:hover {
    cursor: default;
    background-color: #fff;
}
table.list_type_2.hover_none tbody tr:active {
    background-color: #fff;
}
table.reg_type_1 tbody tr th {
    height: 50px;
    padding: 0 15px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: left;
    background-color: #f3f6f8;
    border: 1px solid #ccc;
}
table.reg_type_1 tbody tr th.txac {
    text-align: center;
}
table.reg_type_1 tbody tr td {
    padding: 10px;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
}
table.reg_type_1 tbody tr td.txac {
    text-align: center;
}
table.reg_type_1 tbody tr td .side_con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
table.reg_type_1 tbody tr .pr_title {
    display: inline-block;
    font-size: 3.7rem;
    font-weight: 500;
}
table.print_reg tbody tr th {
    height: 30px;
    padding: 10px;
    vertical-align: middle;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
}
table.print_reg tbody tr th.txac {
    text-align: center;
}
table.print_reg tbody tr td {
    padding: 10px;
    vertical-align: middle;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
}
table.print_reg tbody tr td.txac {
    text-align: center;
}
table.print_reg tbody tr td.input_td {
    padding: 8px 10px;
}
table.print_reg tbody tr td .side_con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
table.print_reg tbody tr td .chkbox_wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
table.print_reg tbody tr td input[type="checkbox"] + i {
    width: 16px;
    height: 16px;
}
table.print_reg tbody tr td input[type="checkbox"] + i + span {
    font-size: 1.2rem;
}
table.print_reg tbody tr td input[type="checkbox"]:checked + i {
    background: #2eaf6e url("../img/bg/check_in.png") no-repeat center/10px;
}
table.print_reg tbody tr .pr_title {
    display: inline-block;
    font-size: 3.7rem;
    font-weight: 500;
}
table.print_list thead tr th {
    padding: 10px;
    vertical-align: middle;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
}
table.print_list thead tr th.bold {
    font-size: 1.3rem;
    font-weight: 500;
}
table.print_list tbody tr td {
    padding: 10px;
    height: 30px;
    vertical-align: middle;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
}
table.print_list tbody tr th {
    padding: 10px;
    vertical-align: middle;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
}
table.print_list tbody tr th.bold {
    font-size: 1.3rem;
    font-weight: 500;
}
table.print_list tfoot tr td {
    padding: 10px;
    height: 30px;
    vertical-align: middle;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
}
table .table_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
table .table_flex .chkbox_wrap span {
    white-space: nowrap;
}
table .table_multy_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px 20px;
}
table .table_multy_flex > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0 5px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
table .table_multy_flex > div > span {
    white-space: nowrap;
}
table .table_multy_flex > div.text {
    -webkit-box-flex: initial;
    -ms-flex-positive: initial;
    flex-grow: initial;
}
table .table_align {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 5px;
}

/* paginate */
.paginate {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 5px;
}
.paginate > a {
    width: 26px;
    height: 26px;
    font-size: 0;
    text-indent: -9999px;
    border: 1px solid #ccc;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 10px;
}
.paginate > a.first {
    background-image: url("../img/bg/page_first.png");
}
.paginate > a.prev {
    background-image: url("../img/bg/page_prev.png");
}
.paginate > a.next {
    background-image: url("../img/bg/page_next.png");
}
.paginate > a.last {
    background-image: url("../img/bg/page_last.png");
}
.paginate > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
}
.paginate > ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: 1.4rem;
    color: #888;
}
.paginate > ul li.on a {
    color: #2eaf6e;
    text-decoration: underline;
    font-weight: 500;
}

/* modal */
.modal {
    width: 500px;
    max-width: 90%;
    min-height: 300px;
    max-height: 90%;
    padding: 0;
    border-radius: 0;
    z-index: 9999;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: auto; /* 세로 스크롤 추가 */
}
.modal .modal_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 50px;
    padding: 0 0 0 20px;
    background-color: #f2f2f2;
}
.modal .modal_header > .modal_title {
    font-size: 1.8rem;
    font-weight: 300;
}
.modal .modal_header > .modal_close,
.modal .modal_header > .modal_multy_close {
    width: 60px;
    height: 40px;
    font-size: 0;
    text-indent: -9999px;
    cursor: pointer;
    background: url("../img/bg/modal_close_bg.png") no-repeat center/19px;
}
.modal .modal_contents {
    margin: 20px 10px 20px 20px;
    padding-right: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}
.modal .modal_contents::-webkit-scrollbar {
    width: 4px;
    border-radius: 2px;
}
.modal .modal_contents::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}
.modal .modal_contents::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}
.modal .modal_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 15px;
    padding: 0 20px 30px 20px;
}

.modal-bright-background .blocker {
    background-color: rgba(255, 255, 255, 0.1) !important;
}
/*탭*/
.tab_wrap {
    width: 100%;
}
.tab_wrap .tab_base {
    width: 100%;
    border-bottom: 1px solid #2eaf6e;
}
.tab_wrap .tab_base::after {
    content: "";
    display: block;
    clear: both;
}
.tab_wrap .tab_base > a {
    display: block;
    padding: 10px 22px;
    float: left;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
    border: 1px solid #2eaf6e;
    border-left: 0;
    border-bottom: 0;
    cursor: pointer;
}
.tab_wrap .tab_base > a:first-child {
    border-left: 1px solid #2eaf6e;
}
.tab_wrap .tab_base > a.active {
    background-color: #2eaf6e;
    color: #fff;
}
.tab_wrap .tab_base_con {
    display: none;
    width: 100%;
    padding-top: 10px;
}
.tab_wrap .t_block {
    display: block;
}

/* button */
.date_button_wrap {
    display: flex;
    gap: 2px;
}

.bottom_center_bt {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 15px;
}

button {
    cursor: pointer;
    white-space: nowrap;
    width: auto;
    height: 30px;
    padding: 0 12px;
    font-size: 1.4rem;
    border: 0;
    border-radius: 2px;
}
button.date_bt {
    height: 23px;
    padding: 0 1px;
    font-size: 1.2rem;
    background-color: #B9CAB2;
    color: #fff;
    gap: 0px;
}
button.search_bt {
    background-color: #2eaf6e;
    color: #fff;
}
button.excel_bt {
    background-color: #72b473;
    color: #fff;
}
button.reg_bt,
button.print_bt {
    background-color: #e46a7d;
    color: #fff;
}
button.del_bt {
    background-color: #747a80;
    color: #fff;
}
button.add_bt,
button.back_bt {
    background-color: #222a3e;
    color: #fff;
}
button.confirm_bt,
button.save_bt,
button.edit_bt {
    background-color: #6577a5;
    color: #fff;
}
button.cancel_bt {
    background-color: #bdbfc0;
    color: #fff;
}
button.reg_table_bt {
    background-color: #4d5364;
    color: #fff;
}
button.basic_table_bt {
    background-color: #4d5364;
    color: #fff;
}
button.del_table_bt {
    background-color: #747a80;
    color: #fff;
}
button.search_table_bt {
    background-color: #2eaf6e;
    color: #fff;
}
button.edit_table_bt,
button.confirm_table_bt,
button.save_table_bt {
    background-color: #6577a5;
    color: #fff;
}
button.reg_save_bt {
    height: 40px;
    padding: 0 40px;
    background-color: #2eaf6e;
    color: #fff;
}
button.reg_copy_bt {
    height: 40px;
    padding: 0 40px;
    background-color: #72b473;
    color: #fff;
}
button.reg_cancel_bt {
    height: 40px;
    padding: 0 40px;
    background-color: #bdbfc0;
    color: #fff;
}
button.reg_del_bt {
    height: 40px;
    padding: 0 40px;
    background-color: #747a80;
    color: #fff;
}
button.reg_list_bt {
    height: 40px;
    padding: 0 40px;
    background-color: #222a3e;
    color: #fff;
}
button.reg_add_bt {
    height: 40px;
    padding: 0 40px;
    background-color: #e46a7d;
    color: #fff;
}
button.modal_confirm_bt {
    height: 36px;
    padding: 0 36px;
    background-color: #222a3e;
    color: #fff;
}
button.modal_close_bt {
    height: 36px;
    padding: 0 36px;
    background-color: #747a80;
    color: #fff;
}
button.modal_cancel_bt {
    height: 36px;
    padding: 0 36px;
    background-color: #bdbfc0;
    color: #fff;
}
button.table_confirm_bt {
    height: 24px;
    font-size: 1.2rem;
    background-color: #6577a5;
    color: #fff;
}

.board-container {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px 0;
}
.board-container > div {
    width: calc(50% - 10px);
    -ms-flex-preferred-size: calc(50% - 10px);
    flex-basis: calc(50% - 10px);
    border: 1px solid #ddd;
    border-radius: 4px;
}
.board-container > div > h3 {
    height: 40px;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #72b473;
    border-radius: 4px 4px 0 0;
    color: #fff;
    font-weight: 200;
}
.board-container > div > div {
    width: 100%;
    height: 320px;
    padding: 10px;
    font-size: 1.2rem;
    overflow: hidden;
}
/*
.board-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.board-section > h3 {
    height: 40px;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #72b473;
    border-radius: 4px 4px 0 0;
    color: #fff;
    font-weight: 200;
}
*/