@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;
  }
}
.policy-wrap {
  min-height: 600px;
}
.policy-wrap .policy-title {
  text-align: center;
}
.policy-wrap .policy-title .tit {
  font-size: 3.5rem;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  line-height: 1.7;
}
.policy-wrap .txt-box {
  border: 1px solid var(--line);
  background: #f5f5f5;
  padding: 10px 15px;
  margin: 5px 0;
  font-size: 1.6rem;
}
.policy-wrap .txt-box p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
}
.policy-wrap strong {
  font-weight: 600;
}
.policy-wrap .group {
  padding: 15px 0;
}
.policy-wrap .h3 {
  padding-bottom: 10px;
  font-size: 2.5rem;
  line-height: 1.7;
}
.policy-wrap .h4 {
  padding: 10px 0 5px;
  font-size: 1.8rem;
  line-height: 1.7;
}
.policy-wrap p.txt {
  font-size: 1.7rem;
  line-height: 1.7;
  font-weight: 300;
}
.policy-wrap a.link {
  color: #006dd0;
}
.policy-wrap a.link:hover {
  text-decoration: underline;
}
.policy-wrap .in-table {
  width: 700px;
  max-width: 100%;
  border-top: 1px solid #888;
  font-size: 1.5rem;
  margin: 5px 0;
  table-layout: fixed;
}
.policy-wrap .in-table colgroup .tit {
  width: 200px;
}
.policy-wrap .in-table table {
  width: 100%;
}
.policy-wrap .in-table th {
  background: #eff0f5;
  padding: 10px 20px;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #cdd1d7;
}
.policy-wrap .in-table td {
  background: #fff;
  padding: 10px 20px;
  text-align: center;
  border-bottom: 1px solid #cdd1d7;
  color: #555;
}
.policy-wrap .link:after {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .policy-wrap {
    min-height: unset;
  }
  .policy-wrap .policy-title .tit {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .policy-wrap .policy-title .tit {
    font-size: 2.5rem;
  }
  .policy-wrap .txt-box {
    font-size: 1.4rem;
  }
  .policy-wrap .txt-box p {
    font-size: 1.4rem;
  }
  .policy-wrap .h3 {
    font-size: 2rem;
    line-height: 1.5;
  }
  .policy-wrap .h4 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .policy-wrap p.txt {
    font-size: 1.4rem;
  }
  .policy-wrap .txt-box {
    padding: 10px;
  }
  .policy-wrap .in-table {
    font-size: 1.4rem;
    width: 100%;
  }
  .policy-wrap .in-table colgroup .tit {
    width: 150px;
  }
  .policy-wrap .in-table th {
    padding: 10px;
  }
}/*# sourceMappingURL=policy.css.map */