@charset "UTF-8";
/* 기본 테이블 */
.default-table {
  width: 100%;
  position: relative;
}
.default-table.scroll {
  max-height: 960px;
  overflow-y: auto;
  overflow-x: auto;
}
.default-table.scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.default-table.scroll::-webkit-scrollbar-track {
  background-color: transparent;
}
.default-table.scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #dcdcdc;
}
.default-table.scroll table {
  min-width: 720px;
}
.default-table.type-02 .check-area {
  padding: 10px 0;
}
.default-table.type-02 table tr th {
  background: #fffaef;
}
.default-table table {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #8D8D8D;
  text-align: center;
}
.default-table table colgroup .tit {
  width: 120px;
}
.default-table table colgroup .w-170px {
  width: 170px;
}
.default-table table colgroup .w-100px {
  width: 105px !important;
}
.default-table table colgroup .w-120px {
  width: 120px;
}
.default-table table tr th {
  position: relative;
  padding: 10px 3px;
  font-size: 1.5rem;
  font-weight: 800;
  word-break: break-all;
  background: #ebebeb;
  word-break: break-all;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  text-align: center;
}
.default-table table tr td {
  position: relative;
  height: 45px;
  padding: 10px 3px;
  font-size: 1.5rem;
  line-height: 1.5;
  word-break: break-all;
  border-bottom: 1px solid var(--line);
  color: #555;
  background-color: #fff;
}
.default-table table tr td.right {
  text-align: right;
  padding-right: 25px;
}
.default-table table tr td.bd-left {
  border-left: 1px solid var(--line);
}
.default-table table tr td .mo {
  display: none;
}
.default-table table tr td .new {
  font-size: 1.1rem;
  background: #f05050;
  padding: 2px 6px;
  color: #fff;
  border-radius: 3px;
  margin-right: 5px;
}
.default-table table tr td .pop-link {
  font-weight: 600;
  color: #508deb;
  text-decoration: underline;
}
.default-table table tr td.bold {
  font-weight: 600;
}
.default-table table tr td.bold.red {
  color: var(--red);
}
.default-table table tr td.bold.blue {
  color: #508deb;
}
.default-table table .a-link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #508deb;
  text-align: left;
  display: block;
}
.default-table table .a-link:hover {
  text-decoration: underline;
}
.default-table table strong {
  font-weight: 900;
}
.default-table table .block {
  display: block;
}
.default-table table .input-radio.box-radio {
  margin: 0;
}
.default-table table .input-radio.box-radio input[type=radio] + label {
  padding: 4px 8px;
  min-width: 60px;
}
.default-table table .input-text {
  padding-top: 5px;
}
.default-table table .input-text:first-child {
  padding-top: 0;
}
.default-table table .input-text input {
  height: 38px;
}
.default-table.td-left table tr td {
  text-align: left;
  padding: 5px 10px;
}
.default-table.td-left table tr td:nth-child(n+2) {
  border-left: 1px solid var(--line);
}
.default-table.bd-table table {
  border-right: 1px solid var(--line);
}
.default-table.bd-table table tr th:nth-child(1) {
  border-left: 1px solid var(--line);
}
.default-table.bd-table table tr td {
  border-left: 1px solid var(--line);
}

.normal-table {
  position: relative;
  width: 100%;
}
.normal-table .table-tit {
  padding: 5px 0;
  border-bottom: 2px solid #D80C24;
  display: inline-block;
}
.normal-table .table-tit .tit {
  font-size: 2.1rem;
  font-weight: 700;
}
.normal-table .table-tit.pd-30 {
  padding-top: 30px;
}
.normal-table.pd-50 {
  padding-top: 50px;
}
.normal-table table {
  width: 100%;
  font-size: 1.5rem;
  border-top: 1px solid #aaa;
  table-layout: fixed;
  line-height: 1.4;
}
.normal-table table thead tr {
  background: #f4f4f4;
}
.normal-table table thead tr th {
  position: relative;
  font-weight: 600;
  vertical-align: middle;
  padding: 5px;
  text-align: center;
  height: 50px;
}
.normal-table table thead tr th:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background: #E1E1E1;
}
.normal-table table thead tr th:nth-child(1):after {
  width: 0;
  height: 0;
}
.normal-table table thead tr th.border-bot {
  border-bottom: 1px solid #E1E1E1;
}
.normal-table table thead tr th.border-left {
  border-left: 1px solid #E1E1E1;
}
.normal-table table tbody tr th {
  font-weight: 600;
}
.normal-table table tbody tr th.body-header {
  text-align: center;
  background: #f4f4f4;
  border: 1px solid #E1E1E1;
  border-left: 0;
  padding: 5px 3px;
}
.normal-table table tbody tr td {
  padding: 6px;
  text-align: left;
  height: 50px;
  border: 1px solid #d7dbe3;
  color: #333;
  word-break: break-all;
}
.normal-table table tbody tr td.text-center {
  text-align: center;
}
.normal-table table tbody tr td.td-bold {
  font-weight: 600;
}
.normal-table table tbody tr td:first-child {
  border-left: 0;
}
.normal-table table tbody tr td:last-child {
  border-right: 0;
}
.normal-table table tbody tr td.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.normal-table table tbody tr td span {
  font-weight: 500;
}
.normal-table table tbody tr td span.sub-text {
  font-weight: 400;
  color: #8d0303;
}

@media (max-width: 1024px) {
  .normal-table.pc {
    display: none;
  }
}
@media (max-width: 768px) {
  .normal-table .table-tit .tit {
    font-size: 1.5rem;
  }
  .normal-table table {
    font-size: 1.3rem;
  }
}
.ess {
  display: inline-block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  margin: 0 0 8px 3px;
  background: #f05050;
}

.inner-table {
  padding-bottom: 0 !important;
}
.inner-table.full table {
  width: 100%;
}
.inner-table table {
  width: 700px;
  max-width: 100%;
  border-left: 1px solid var(--line);
}
.inner-table table tbody tr th {
  background: #fff;
}
.inner-table table tr th {
  padding: 5px;
  font-size: 1.3rem;
}
.inner-table table tr th.bd-right {
  border-right: 1px solid var(--line);
}
.inner-table table tr td {
  padding: 5px;
  font-size: 1.4rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.list-table.mo {
  display: none;
}
.list-table.mo .list-tit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px 0 15px 25px;
  background: #e3e3e3;
}
.list-table.mo .list-tit::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--theme);
  position: absolute;
  left: 10px;
  top: 25px;
}
.list-table.mo .list-tit p {
  font-size: 1.6rem;
  font-weight: 800;
}
.list-table.mo ul li {
  border-bottom: 1px solid var(--line);
  padding: 15px 10px;
}
.list-table.mo ul li .top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 7px;
}
.list-table.mo ul li .top-area .tit {
  font-size: 1.7rem;
  font-weight: 700;
}
.list-table.mo ul li .bot-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list-table.mo ul li .bot-area dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  padding-right: 20px;
}
.list-table.mo ul li .bot-area dl:last-child {
  padding-right: 0;
}
.list-table.mo ul li .bot-area dl dt {
  width: 70px;
  color: #9C9C9C;
  font-weight: 600;
}
.list-table.mo ul li .bot-area dl dd {
  width: calc(100% - 70px);
  color: #333;
}
.list-table .input-text input {
  height: 35px;
}
.list-table .input-radio.box-radio {
  margin: 0;
}
.list-table .input-radio.box-radio input[type=radio] + label {
  padding: 4px 8px;
  min-width: 60px;
}
.list-table .selectbox::after {
  top: 15px;
}
.list-table .selectbox select {
  line-height: 35px;
  padding: 0 35px 0 15px;
}

.link {
  font-weight: 600;
  color: #508deb;
}
.link:hover {
  text-decoration: underline;
}

@media (max-width: 2030px) {
  .default-table table colgroup .bid-tit {
    width: 350px;
  }
  .default-table table colgroup .rsut-tit {
    width: 280px;
  }
  .default-table table colgroup .bidder-tit {
    width: 350px;
  }
}
@media (max-width: 1200px) {
  .list-table.pc {
    display: none;
  }
  .list-table.mo {
    display: block;
  }
  .list-table.mo.pd-top {
    padding-top: 7px;
  }
}
@media (max-width: 1070px) {
  .m-scroll {
    overflow-x: auto;
  }
  .m-scroll table {
    width: 1070px;
  }
  .m-scroll table colgroup .w-170px {
    width: 100px;
  }
  .m-scroll table colgroup .w-100px {
    width: 75px !important;
  }

  .s-table table {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 890px) {
  .default-table table colgroup .w-170px {
    width: 70px;
  }
  .default-table table colgroup .w-100px {
    width: 70px !important;
  }
  .default-table table tr th {
    font-size: 1.4rem;
    padding: 7px;
  }
  .default-table table tr td {
    font-size: 1.4rem;
    padding: 7px 7px 7px 10px;
  }
  .default-table.mo-ui table colgroup {
    display: none;
  }
  .default-table.mo-ui table thead {
    display: none;
  }
  .default-table.mo-ui table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-gap: 0 5px;
    gap: 0 5px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
  }
  .default-table.mo-ui table tr td {
    display: inline-block;
    height: auto;
    padding: 3px 0;
    text-align: left;
    border: none;
    margin-right: 8px;
  }
  .default-table.mo-ui table tr td:last-child {
    margin-right: 0;
  }
  .default-table.mo-ui table tr td.num {
    display: none;
  }
  .default-table.mo-ui table tr td.mo-tit {
    display: block;
    width: 100%;
    padding-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
  }
  .default-table.mo-ui table tr td .a-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
  }
  .default-table.mo-ui table tr td .mo {
    display: inline-block;
    font-weight: 600;
    margin-right: 5px;
  }
  .default-table.mo-ui table tr td .colr-blue {
    display: inline-block;
    margin-left: 5px;
  }
  .default-table.mo-ui table tr.fixed .noti-label {
    display: none;
  }
  .default-table.mo-ui table tr.fixed .noti-label.mo-label {
    display: inline-block;
  }

  .inner-table table tr th {
    font-size: 1.15rem;
  }
  .inner-table table tr td {
    font-size: 1.15rem;
  }
}
@media (max-width: 575px) {
  .list-table.mo {
    display: block;
  }
  .list-table.mo ul li .top-area {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .list-table.mo .box .info {
    gap: 8px;
  }
  .list-table.mo .box .info dl {
    width: 100%;
  }
  .list-table.mo .box .info .btn-wrap {
    margin-top: 7px;
  }
}
@media (max-width: 475px) {
  .default-table table colgroup .tit {
    width: 100px;
  }

  .inner-table table {
    width: 100%;
  }

  .list-table.mo ul li .top-area .tit {
    font-size: 1.6rem;
  }
}
.system-table .table-desc {
  text-align: center;
  padding: 30px 0;
}
.system-table .table-desc .tit {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
}
.system-table .table-desc .tit b {
  font-size: 3rem;
  font-weight: 800;
}
.system-table .table-desc .tit.bold {
  font-weight: 800;
}
.system-table .default-table table tr th, .system-table .default-table table tr td {
  font-size: 1.6rem;
  background: #fff;
}
.system-table .default-table table tr th {
  color: #fff;
}
.system-table .default-table table tr td {
  text-align: left;
  padding: 10px 15px;
}
.system-table .default-table table tr td .txt {
  position: relative;
  padding-left: 10px;
  color: #333;
}
.system-table .default-table table tr td .txt:not(:last-child) {
  margin-bottom: 3px;
}
.system-table .default-table table tr td .txt:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #777;
  position: absolute;
  left: 0;
  top: 8px;
}
.system-table .default-table table tr td.bg-pink {
  background: #fff9fd !important;
}
.system-table .default-table table tr td.bg-blue {
  background: #f5faff !important;
}
.system-table .default-table table tr td.bg-green {
  background: #f9fff9 !important;
}
.system-table .default-table table tr td.bg-gray {
  background: #f7f7f7 !important;
}

.program-wrap {
  padding-top: 70px;
}
.program-wrap .program-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.program-wrap .program-list .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 30px;
  border-top: 1px solid #555;
}
.program-wrap .program-list .item .tit-area .label {
  font-size: 1.4rem;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 3px;
  line-height: 1;
  font-weight: 600;
}
.program-wrap .program-list .item .tit-area .label.type-1 {
  background: #DFF2EB;
  color: #1a4d3c;
}
.program-wrap .program-list .item .tit-area .label.type-2 {
  background: #D4EDF5;
  color: #1e5f6e;
}
.program-wrap .program-list .item .tit-area .label.type-3 {
  background: #E3EEFF;
  color: #2a4a7e;
}
.program-wrap .program-list .item .tit-area .label.type-4 {
  background: #EDE8F5;
  color: #4a3d6e;
}
.program-wrap .program-list .item .tit-area .label.type-5 {
  background: #ffe3f7;
  color: #53243E;
}
.program-wrap .program-list .item .tit-area .tit {
  font-size: 2rem;
  font-weight: 800;
  padding-top: 10px;
}
.program-wrap .program-list .item .tit-area .txt {
  font-size: 1.5rem;
  line-height: 1.4;
  padding-top: 10px;
  color: #333;
  min-height: 75px;
}
.program-wrap .program-list .item .img-area {
  width: 100%;
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
  border-radius: 5px;
  margin-top: 10px;
}
.program-wrap .program-list .item .img-area img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 반응형 */
@media (max-width: 1024px) {
  .program-wrap {
    padding-top: 50px;
  }
  .program-wrap .program-list {
    gap: 8px;
  }
  .program-wrap .program-list .item {
    padding-top: 24px;
  }
  .program-wrap .program-list .item .tit-area .label {
    font-size: 1.3rem;
    padding: 5px 8px;
  }
  .program-wrap .program-list .item .tit-area .tit {
    font-size: 1.8rem;
    padding-top: 8px;
  }
  .program-wrap .program-list .item .tit-area .txt {
    font-size: 1.4rem;
    padding-top: 8px;
    min-height: 60px;
  }
  .program-wrap .program-list .item .img-area {
    padding-bottom: 56%;
    margin-top: 8px;
  }

  .system-table .table-desc {
    padding: 24px 0;
  }
  .system-table .table-desc .tit {
    font-size: 2rem;
    line-height: 1.5;
  }
  .system-table .table-desc .tit b {
    font-size: 2.6rem;
  }
  .system-table .default-table table tr th, .system-table .default-table table tr td {
    font-size: 1.5rem;
  }
  .system-table .default-table table tr td {
    padding: 8px 12px;
  }
  .system-table .default-table table tr td .txt {
    padding-left: 8px;
  }
  .system-table .default-table table tr td .txt:before {
    top: 6px;
  }
}
@media (max-width: 768px) {
  .program-wrap {
    padding-top: 40px;
  }
  .program-wrap .program-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 8px;
  }
  .program-wrap .program-list .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 6px);
            flex: 1 1 calc(50% - 6px);
    min-width: 0;
    padding-top: 20px;
  }
  .program-wrap .program-list .item .tit-area .tit {
    font-size: 1.7rem;
    padding-top: 8px;
  }
  .program-wrap .program-list .item .tit-area .txt {
    font-size: 1.4rem;
    padding-top: 6px;
    min-height: 50px;
  }
  .program-wrap .program-list .item .img-area {
    margin-top: 8px;
  }

  .system-table .table-desc {
    padding: 20px 0;
  }
  .system-table .table-desc .tit {
    font-size: 1.8rem;
  }
  .system-table .table-desc .tit b {
    font-size: 2.2rem;
  }
  .system-table .default-table {
    overflow-x: auto;
  }
  .system-table .default-table table {
    min-width: 560px;
  }
  .system-table .default-table table tr th, .system-table .default-table table tr td {
    font-size: 1.4rem;
  }
  .system-table .default-table table tr td {
    padding: 6px 10px;
  }
  .system-table .default-table table tr td .txt {
    font-size: 1.35rem;
    padding-left: 8px;
  }
  .system-table .default-table table tr td .txt:before {
    width: 3px;
    height: 3px;
    top: 6px;
  }
}
@media (max-width: 480px) {
  .program-wrap {
    padding-top: 30px;
  }
  .program-wrap .program-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .program-wrap .program-list .item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    padding-top: 16px;
  }
  .program-wrap .program-list .item .tit-area {
    text-align: center;
    word-break: keep-all;
  }
  .program-wrap .program-list .item .tit-area .txt {
    min-height: auto;
  }
  .program-wrap .program-list .item .img-area {
    margin-top: 6px;
  }

  .system-table .table-desc {
    padding: 16px 0;
  }
  .system-table .table-desc .tit {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .system-table .table-desc .tit b {
    font-size: 1.9rem;
  }
  .system-table .default-table table {
    min-width: 480px;
  }
  .system-table .default-table table tr th, .system-table .default-table table tr td {
    font-size: 1.3rem;
  }
  .system-table .default-table table tr td {
    padding: 6px 8px;
  }
  .system-table .default-table table tr td .txt {
    font-size: 1.25rem;
    padding-left: 6px;
  }
  .system-table .default-table table tr td .txt:not(:last-child) {
    margin-bottom: 2px;
  }
  .system-table .default-table table tr td .txt:before {
    width: 3px;
    height: 3px;
    top: 5px;
  }
}/*# sourceMappingURL=startup-system.css.map */