@charset "UTF-8";
#content #sub-tab,
.contents #sub-tab {
  margin-top: 0;
}
#content .con__box,
.contents .con__box {
  margin-top: 8rem;
}
#content .title,
#content .sub-title,
.contents .title,
.contents .sub-title {
  color: #111;
}
#content .title strong.red,
#content .sub-title strong.red,
.contents .title strong.red,
.contents .sub-title strong.red {
  color: red;
}
#content h1.title,
.contents h1.title {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  line-height: 1.3;
}
#content h2.title,
.contents h2.title {
  margin-bottom: 2rem;
  font-size: 2.8rem;
  line-height: 1.3;
}
#content h3.title,
.contents h3.title {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  line-height: 1.3;
}
#content h4.title,
#content .sub-title,
.contents h4.title,
.contents .sub-title {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.3;
}
#content p.text,
.contents p.text {
  font-size: 1.8rem;
  color: #555;
}

.policy-title {
  margin-top: 8rem;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
}
.policy-title.sm {
  margin-top: 4rem;
}
.policy-title.lg {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.con__title {
  margin: 8rem 0;
  font-size: 4.4rem;
  font-weight: 700;
  text-align: center;
}
.con__title + .con__box {
  margin-top: 0;
}

.dot-list > li,
.dash-list > li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
  color: #555;
  text-align: left;
}
.dot-list > li:last-child,
.dash-list > li:last-child {
  margin-bottom: 0;
}
.dot-list > li > ul,
.dash-list > li > ul {
  margin-top: 0.8rem;
}
.dot-list > li > ul > li,
.dash-list > li > ul > li {
  margin-bottom: 0.2rem;
  font-size: 1.6rem;
}
.dot-list > li > ul > li:last-child,
.dash-list > li > ul > li:last-child {
  margin-bottom: 0;
}

.dot-list > li::before {
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background-color: #0097A1;
  content: "";
}
.dot-list > li.flex-box::before {
  top: 1.5rem;
}
.dot-list > li.flex-box + li {
  margin-top: 0.8rem;
}
.dot-list.table > li {
  color: #333;
}
.dot-list.table > li::before {
  background-color: #333;
}

.dash-list > li {
  padding-left: 1.2rem;
}
.dash-list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

.num-list {
  counter-reset: numList;
}
.num-list > li {
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #555;
}
.num-list > li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.3rem;
  background: #2b578d;
  font-size: 1.5rem;
  color: #fff;
  content: counter(numList);
  gap: 1rem;
  counter-increment: numList;
}

.btn__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.btn__box.left {
  justify-content: flex-start;
}
.btn__box--list .btn__style {
  min-width: 10rem;
  height: 5rem;
}
.btn__style {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border: 1px solid #0097A1;
  border-radius: 0.5rem;
  background-color: #0097A1;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  transition: 0.24s;
  gap: 1rem;
}
.btn__style:hover, .btn__style:focus {
  background-color: #064163;
  border-color: #064163;
}
.btn__style.disabled, .btn__style[disabled] {
  background-color: #ddd;
  pointer-events: none;
  border-color: #ddd;
}
.btn__style.type02 {
  background-color: #fff;
  color: #0097A1;
  border-color: #0097A1;
}
.btn__style.type02:hover, .btn__style.type02:focus {
  background-color: #e4faff;
}
.btn__style.type03 {
  background-color: #2B4B90;
  transition: 0s;
  border-color: #2B4B90;
}
.btn__style.type03:hover, .btn__style.type03:focus {
  background: linear-gradient(103deg, #1bb9c3 -27.68%, #4596e7 122.21%);
  border-color: transparent;
}
.btn__style.type04 {
  background-color: #e4edff;
  color: #2B4B90;
  border-color: rgba(43, 75, 144, 0.4);
}
.btn__style.type04:hover, .btn__style.type04:focus {
  background-color: #2B4B90;
  color: #fff;
  border-color: #2B4B90;
}
.btn__style.type05 {
  background-color: #f9f9f9;
  color: #555;
  border-color: #ddd;
}
.btn__style.type05:hover, .btn__style.type05:focus {
  background-color: #555;
  color: #fff;
  border-color: #555;
}
.btn__style.type06 {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
.btn__style.type06:hover, .btn__style.type06:focus {
  background-color: #555;
  color: #fff;
  border-color: #555;
}
.btn__style.type07 {
  background-color: #111;
  color: #fff;
  border-color: #111;
}
.btn__style.type07:hover, .btn__style.type07:focus {
  background-color: #111;
  border-color: #111;
}
.btn__style.type-lg {
  width: 23rem;
  height: 5rem;
  border-radius: 0.8rem;
  font-weight: 600;
}
.btn__style.type-lg.black {
  background-color: #111;
  border-color: #111;
}
.btn__style.type-sm {
  padding: 0.5rem 1rem;
  background-color: #fff;
  font-size: 1.5rem;
  color: #555;
  border-color: #ddd;
}
.btn__style.type-sm:hover, .btn__style.type-sm:focus {
  background-color: #0097A1;
  color: #fff;
  border-color: #0097A1;
}
.btn__view {
  display: inline-block;
  position: relative;
  padding-right: 2.2rem;
  font-size: 1.8rem;
}
.btn__view::after {
  position: absolute;
  top: 0.2rem;
  right: 0;
  font-family: "remixicon";
  font-size: 1.7rem;
  content: "\f0d1";
}
.btn__count {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #f9f9f9;
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  transition: 0.24s;
}
.btn__count:hover {
  background-color: #eee;
}

.table__wrap {
  position: relative;
}
.table__wrap + .table__wrap {
  margin-top: 4rem;
}
.table__wrap table {
  text-align: center;
  table-layout: auto;
}
.table__wrap table label {
  font-size: 1.8rem !important;
  line-height: 1.4;
}
.table__wrap table caption {
  width: 1px;
  height: 1px;
  color: #fff;
}
.table__wrap table thead th {
  padding: 1.5rem 1rem;
  background-color: #0097A1;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
.table__wrap table thead th .sm {
  font-size: 1.6rem;
}
.table__wrap table tbody tr {
  border-bottom: 1px solid #ddd;
}
.table__wrap table tbody tr:first-child {
  border-top: 1px solid #0097A1;
}
.table__wrap table tbody tr:last-child {
  border-bottom: 1px solid #0097A1;
}
.table__wrap table tbody th {
  padding: 1.5rem 1rem;
  background-color: #f2f6fa;
  font-size: 2rem;
  font-weight: 600;
  color: #0097A1;
}
.table__wrap table tbody th.bd-right {
  border-right: 1px solid #ddd;
}
.table__wrap table tbody th .sm {
  font-size: 1.6rem;
}
.table__wrap table tbody td {
  padding: 1.5rem 1rem;
  border-right: 1px solid #ddd;
  font-size: 1.8rem;
  color: #555;
}
.table__wrap table tbody td:last-child {
  border-right: none;
}
.table__wrap table tbody td.bd-right {
  border-right: 1px solid #ddd;
}
.table__wrap table tbody td .btn__box {
  gap: 0.4rem 0.8rem;
}
.table__wrap.style table thead th {
  background-color: #2B578D;
}
.table__wrap.style table tbody td {
  padding: 1rem;
}
.table__wrap.style table tbody tr:last-child {
  border-color: #2B578D;
}
.table__wrap.form tbody th,
.table__wrap.form tbody td {
  text-align: left;
}
.table__wrap.form tbody th {
  padding: 1.5rem 2.5rem;
}
.table__wrap.form tbody td {
  padding: 1rem 2rem;
}

@media (max-width: 1024px) {
  .table__wrap.style {
    padding-top: 4rem;
  }
  .table__wrap.style::before {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    font-weight: 500;
    color: #2B578D;
    content: "좌우로 스크롤하여 전체 내용을 볼 수 있습니다.";
  }
  .table__wrap.style > div {
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: #e3e3e3 transparent;
  }
  .table__wrap.style > div::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .table__wrap.style > div::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: #e3e3e3;
  }
  .table__wrap.style > div::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .table__wrap.style table {
    width: 1200px;
  }
}
@media (max-width: 768px) {
  .table__wrap {
    padding-top: 4rem;
  }
  .table__wrap::before {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    font-weight: 500;
    color: #0097A1;
    content: "좌우로 스크롤하여 전체 내용을 볼 수 있습니다.";
  }
  .table__wrap > div {
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: #e3e3e3 transparent;
  }
  .table__wrap > div::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .table__wrap > div::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: #e3e3e3;
  }
  .table__wrap > div::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .table__wrap table {
    width: 980px;
  }
}
.status__wrap {
  padding: 6rem 3rem 8rem;
  border: 1px solid #ddd;
  border-radius: 1.6rem;
  background-color: #f1f8f9;
}
.status__wrap + .status__wrap {
  margin-top: 8rem;
}
.status__wrap > div {
  max-width: 80rem;
  margin: 0 auto;
}
.status__wrap.status02 {
  background-color: #f1f5f9;
}
.status__wrap.status02 .status__icon {
  background-color: #2B4B90;
}
.status__wrap.status02 .status__desc-text strong,
.status__wrap.status02 .status__alert::before,
.status__wrap.status02 .status__item-desc strong {
  color: #2B4B90;
}
.status__top {
  display: flex;
  align-items: center;
  margin-bottom: 2.4rem;
  gap: 3rem;
}
.status__desc {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.status__desc-text {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.status__desc-text strong {
  font-weight: 700;
  color: #0097A1;
}
.status__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  background-color: #0097A1;
}
.status__icon img {
  width: 2.4rem;
}
.status__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 1rem 4rem;
  border-radius: 50rem;
  background-color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  gap: 0.4rem 4rem;
}
.status__alert {
  position: relative;
  padding-left: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #555;
}
.status__alert::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "remixicon";
  font-weight: 400;
  color: #0097A1;
  content: "\ee58";
}
.status__con {
  padding: 2.4rem 4.8rem;
  margin-bottom: 2.4rem;
  border: 1px solid #ddd;
  border-radius: 1.2rem;
  background-color: #fff;
}
.status__item {
  display: flex;
  padding: 1.6rem 0;
  border-bottom: 1px solid #ddd;
  font-size: 1.8rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.status__item:last-child {
  border-bottom: none;
}
.status__item-title {
  flex-shrink: 0;
  width: 16rem;
  color: #444;
}
.status__item-desc {
  color: #222;
}
.status__item-desc strong {
  color: #0097A1;
}

@media (max-width: 500px) {
  .status__top {
    flex-direction: column;
  }
  .status__desc-text br {
    display: none;
  }
  .status__title {
    justify-content: center;
  }
  .status__item {
    flex-direction: column;
    gap: 0.4rem;
  }
  .status__con {
    padding: 2rem 3rem;
  }
}
.select__wrap {
  display: inline-block;
  position: relative;
}
.select__wrap.sm {
  width: 14rem;
}
.select__wrap.md {
  width: 20rem;
}
.select__wrap.full {
  width: 100%;
}
.select__wrap.half {
  width: 50%;
}
.select__wrap.grow {
  flex-grow: 1;
}
.select__wrap::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-family: "remixicon";
  color: #000;
  content: "\ea4e";
}
.select__wrap select {
  width: 100%;
  padding: 0.8rem 1rem;
  padding-right: 3.4rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input__wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.input__wrap input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
  font-size: 1.8rem;
  color: #333;
}
.input__wrap input::-moz-placeholder {
  color: #999;
}
.input__wrap input::placeholder {
  color: #999;
}
.input__wrap input:disabled {
  background-color: #f1f5f9;
  color: #555;
}
.input__wrap.sm {
  width: 10rem;
}
.input__wrap.md {
  width: 20rem;
}
.input__wrap.half {
  width: 50%;
}
.input__wrap.full {
  width: 100%;
}
.input__wrap.grow {
  flex-grow: 1;
}

.radio__wrap {
  text-align: left;
}
.radio__wrap input[type=radio] {
  position: absolute;
  opacity: 0;
  width: auto;
  height: auto;
}
.radio__wrap input[type=radio] + label {
  position: relative;
  padding-left: 2.6rem;
  font-size: 1.6rem;
  color: #333;
}
.radio__wrap input[type=radio] + label::before {
  display: inline-block;
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
  content: "";
}
.radio__wrap input[type=radio] + label::after {
  display: inline-block;
  position: absolute;
  top: 0.7rem;
  left: 0.5rem;
  opacity: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #2B578D;
  transition: 0.14s;
  content: "";
}
.radio__wrap input[type=radio]:checked + label::after {
  opacity: 1;
}
.radio__wrap input[type=radio]:disabled + label::before {
  background-color: #ddd;
}
.radio__wrap input[type=radio]:disabled + label::after {
  background-color: #999;
}

.check__wrap {
  text-align: left;
}
.check__wrap input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: auto;
  height: auto;
}
.check__wrap input[type=checkbox] + label {
  position: relative;
  padding-left: 2.6rem;
  font-size: 1.6rem;
  color: #333;
}
.check__wrap input[type=checkbox] + label::before {
  display: inline-block;
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ddd;
  border-radius: 0.2rem;
  background-color: #fff;
  content: "";
}
.check__wrap input[type=checkbox] + label::after {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0.15rem;
  opacity: 0;
  font-family: "remixicon";
  font-size: 1.7rem;
  font-weight: 700;
  color: #2B578D;
  transition: 0.14s;
  content: "\eb7a";
}
.check__wrap input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.check__wrap input[type=checkbox]:disabled + label::before {
  background-color: #ddd;
}
.check__wrap input[type=checkbox]:disabled + label::after {
  color: #999;
}

.date__wrap {
  display: inline-block;
  width: 18rem;
}
.date__wrap input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
  font-size: 1.8rem;
  color: #333;
}
.date__wrap input:disabled {
  background-color: #ddd;
  color: #555;
}

.flex-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}
.flex-box.nowrap {
  flex-wrap: nowrap;
}
.flex-box.center {
  justify-content: center;
}
.flex-box.between {
  justify-content: space-between;
}
.flex-box.right {
  justify-content: flex-end;
}
.flex-box.a-start {
  align-items: flex-start;
}
.flex-box.a-center {
  align-items: center;
}
.flex-box .radio__wrap {
  margin-right: 1rem;
}
.flex-box .radio__wrap:last-child {
  margin-right: 0;
}

.address__wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.policy__box {
  max-height: 30rem;
  overflow: auto;
  padding: 3rem 2.4rem;
  margin-bottom: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.5;
}
.policy__box .table__wrap::before {
  font-size: 1.8rem;
}

.con__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  gap: 0.8rem 4rem;
}
.con__top .title {
  margin-bottom: 0 !important;
}

.alert-text {
  position: relative;
  padding-left: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #555;
}
.alert-text::before {
  position: absolute;
  top: 0.2rem;
  left: 0;
  font-family: "remixicon";
  font-weight: 400;
  color: #0097A1;
  content: "\ee58";
}

.textarea__wrap textarea,
.input__wrap textarea {
  width: 100%;
  height: 30rem;
  padding: 0.65rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
  font-size: 1.8rem;
  color: #333;
  line-height: 1.5;
  resize: none;
}
.textarea__wrap textarea::-moz-placeholder, .input__wrap textarea::-moz-placeholder {
  color: #999;
}
.textarea__wrap textarea::placeholder,
.input__wrap textarea::placeholder {
  color: #999;
}

.req-mark {
  margin: 0 0.2rem;
  font-weight: 600;
  color: #0097A1;
  vertical-align: text-bottom;
}

.layout .layout {
  padding: 0;
}

.step__tab {
  display: flex;
  margin-bottom: 6rem;
  border: 1px solid #2B578D;
  border-radius: 1rem;
  background-color: #fff;
  counter-reset: tabNum;
}
.step__tab.num-none .step__item::before {
  display: none;
}
.step__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  position: relative;
  min-height: 7rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 2rem;
  color: #111;
  text-align: center;
  gap: 1rem;
}
.step__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.step__item::before {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #2B578D;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 2.4rem;
  counter-increment: tabNum;
  content: counter(tabNum);
}
.step__item.active {
  border-radius: 0.8rem;
  background-color: #2B578D;
  font-weight: 600;
  color: #fff;
}
.step__item.active::before {
  background-color: #fff;
  color: #2B578D;
}

.cate__tab {
  display: flex;
  margin-top: 6rem;
  border-radius: 1rem 1rem 0 0;
  background-color: #f9f9f9;
}
.cate__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  min-height: 6rem;
  padding: 1rem;
  border-bottom: 1px solid #333;
  font-size: 1.8rem;
  color: #333;
  text-align: center;
}
.cate__item.active {
  border: 1px solid #333;
  border-bottom: none;
  border-radius: 1rem 1rem 0 0;
  background-color: #fff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .step__tab {
    flex-direction: column;
  }
  .step__item {
    min-height: auto;
    padding: 1.4rem 2rem;
  }
}
td > div + div {
  margin-top: 1rem;
}

.text__box {
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  color: #333;
  line-height: 1.5;
}

.survey__box {
  display: flex;
  flex-direction: column;
  padding: 5rem;
  margin-top: 10rem;
  border-radius: 1.6rem;
  background-color: #f1f5f9;
  gap: 3.2rem;
}
.survey__top {
  display: flex;
  align-items: center;
  padding-bottom: 3.2rem;
  border-bottom: 1px dashed #95aac3;
  gap: 3rem;
}
.survey__icon {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
}
.survey__title {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
}
.survey__desc {
  font-size: 1.8rem;
  color: #555;
}
.survey__question {
  margin-bottom: 3rem;
  font-size: 1.9rem;
  font-weight: 700;
  color: #111;
}
.survey__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.survey__list > div {
  width: calc(33.3333333333% - 1.6rem);
}

@media (max-width: 768px) {
  .survey__question {
    margin-bottom: 2rem;
  }
  .survey__list {
    gap: 1.2rem;
  }
  .survey__list > div {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .survey__icon {
    display: none;
  }
}
.overview__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 9rem;
  border: 6px solid rgba(0, 151, 161, 0.1);
  border-radius: 0 4rem;
  gap: 4rem;
}
.overview__con {
  flex-grow: 1;
  max-width: 82rem;
}
.overview__title {
  font-size: 3.2rem;
}
.overview__title strong {
  font-weight: 700;
  color: #0097A1;
}
.overview__desc {
  margin-top: 3rem;
  font-size: 2.4rem;
  color: #555;
  line-height: 1.6;
}
.overview__desc strong {
  color: #0097A1;
}
.overview__img {
  flex-shrink: 0;
  width: 31rem;
}
.overview__intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.overview__intro-item {
  display: flex;
  align-items: center;
  padding: 3.2rem 5.6rem;
  border-radius: 1.2rem;
  background: #fafafa;
  gap: 3.2rem;
}
.overview__intro-icon {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
}
.overview__intro-icon + div {
  flex-grow: 1;
}
.overview__intro-title {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #555;
}
.overview__intro-desc {
  font-size: 1.8rem;
  color: #555;
}
.overview__intro-notice {
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px dashed #ddd;
  font-size: 1.8rem;
  color: #555;
}
.overview__step-top {
  padding: 2.4rem 3.2rem;
  margin-bottom: 2rem;
  border: 3px solid #ededed;
  border-radius: 1.2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #555;
  text-align: center;
}
.overview__step-con {
  display: flex;
}
.overview__step-item {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  text-align: center;
}
.overview__step-item:first-child .overview__step-title {
  border-radius: 1.2rem 0 0 0;
}
.overview__step-item:first-child .overview__step-desc {
  border-radius: 0 0 0 1.2rem;
}
.overview__step-item:nth-child(2) .overview__step-title {
  background-color: #17a79e;
}
.overview__step-item:nth-child(3) .overview__step-title {
  background-color: #0093aa;
}
.overview__step-item:nth-child(4) .overview__step-title {
  background-color: #167dad;
}
.overview__step-item:last-child .overview__step-title {
  border-radius: 0 1.2rem 0 0;
  background-color: #02568e;
}
.overview__step-item:last-child .overview__step-title::after {
  display: none;
}
.overview__step-item:last-child .overview__step-desc {
  border-radius: 0 0 1.2rem 0;
}
.overview__step-title {
  position: relative;
  padding: 1.2rem 1.6rem;
  background-color: #4cb87b;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
.overview__step-title::after {
  position: absolute;
  top: 50%;
  right: -0.8rem;
  transform: translateY(-50%);
  z-index: 1;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-color: inherit;
  content: "";
}
.overview__step-desc {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  min-height: 23rem;
  padding: 2.4rem 2rem;
  border: 1px solid #ededed;
  border-top: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: #555;
  text-align: center;
}

@media (max-width: 1024px) {
  .overview__top {
    padding: 6rem;
  }
}
@media (max-width: 860px) {
  .overview__top {
    padding: 4rem;
  }
  .overview__con {
    max-width: 100%;
  }
  .overview__img {
    display: none;
  }
  .overview__intro-item {
    padding: 3.2rem 4.2rem;
  }
  .overview__step-con {
    flex-wrap: wrap;
  }
  .overview__step-item {
    flex: 1 0 auto;
    width: 33.3333333333%;
  }
  .overview__step-item:first-child .overview__step-desc {
    border-radius: 0;
  }
  .overview__step-item:nth-child(3) .overview__step-title {
    border-radius: 0 1.2rem 0 0;
  }
  .overview__step-item:nth-child(4) .overview__step-desc {
    border-radius: 0 0 0 1.2rem;
  }
  .overview__step-item:last-child .overview__step-title {
    border-radius: 0;
  }
}
@media (max-width: 580px) {
  .overview__title {
    font-size: 3rem;
  }
  .overview__desc {
    margin-top: 2rem;
    font-size: 2.2rem;
  }
  .overview__intro-item {
    flex-direction: column;
    text-align: center;
    gap: 2.4rem;
  }
  .overview__step-con {
    gap: 2.4rem;
  }
  .overview__step-item {
    width: 100%;
    overflow: hidden;
    border-radius: 1.2rem;
  }
  .overview__step-title {
    border-radius: 0 !important;
  }
  .overview__step-title::after {
    display: none;
  }
  .overview__step-desc {
    min-height: auto;
    padding: 3.4rem 2rem;
    border-radius: 0 0 1.2rem 1.2rem !important;
  }
}
.file-box a + .btn__style {
  margin-left: 0.6rem;
}

.file-input {
  width: 30rem;
  padding: 0.45rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
  font-size: 1.8rem;
  color: #333;
}

.file-input::file-selector-button {
  padding: 0.5rem 1rem;
  margin-right: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #0097A1;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

.file-wrap {
  display: flex;
  align-items: center;
}
.file-wrap img {
  margin-right: 0.8rem;
}

.file-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.file-item img {
  width: 2.6rem;
  margin-right: 0.8rem;
}

.file-name {
  word-break: break-all;
  font-size: 1.8rem;
  font-weight: 400;
  color: #555;
}

.file-size {
  flex-shrink: 0;
  margin-left: 0.4rem;
  font-size: 1.6rem;
  color: #999;
}

.pd-bottom {
  padding-bottom: 1rem;
}

.process__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2.4rem;
  border-radius: 1.5rem;
  background: #f2f6fa;
  gap: 8.5rem;
}
.process__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  position: relative;
  width: 15.6rem;
  height: 15.6rem;
  border: 0.6rem solid;
  border-radius: 50%;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 600;
  gap: 1rem;
}
.process__item::after {
  position: absolute;
  top: 50%;
  right: -6rem;
  transform: translateY(-50%);
  font-family: "remixicon";
  font-size: 2.2rem;
  font-weight: 400;
  color: #2d3a71;
  line-height: 1;
  content: "\ea6e";
}
.process__item:last-child::after {
  display: none;
}
.process__item.color01 {
  border-color: #0fa7b7;
}
.process__item.color02 {
  border-color: #028bc1;
}
.process__item.color03 {
  border-color: #005ed0;
}
.process__item.color04 {
  border-color: #2b3bc8;
}
.process__item.color05 {
  border-color: #6631ab;
}
.process__icon {
  display: inline-block;
  width: 4rem;
  height: 4rem;
}

.documents__wrap {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  border: 4px solid #f2f6fa;
  border-radius: 1.5rem;
  gap: 3rem;
}
.documents__wrap.line .documents__item:not(:first-child) {
  padding-top: 3rem;
  border-top: 1px dashed #bbc9d6;
}
.documents__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
.documents__title strong {
  font-size: 2rem;
  font-weight: 700;
  color: #2b578d;
}
.documents__title p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
}
.documents__box {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.6rem;
  margin-top: 1rem;
  border-radius: 1rem;
  background: #f2f6fa;
  gap: 1rem;
}
.documents__box p {
  font-size: 1.6rem;
  color: #555;
}
.documents__box .dot-list > li {
  font-size: 1.6rem;
}
.documents__box .dot-list > li::before {
  top: 0.8rem;
  background-color: #2b578d;
}

@media (max-width: 1280px) {
  .process__wrap {
    gap: 5.5rem;
  }
  .process__item::after {
    right: -4.4rem;
  }
}
@media (max-width: 900px) {
  .process__wrap {
    flex-wrap: wrap;
    padding: 5rem 14rem;
  }
}
@media (max-width: 768px) {
  .process__wrap {
    padding: 5rem 7rem;
  }
}
@media (max-width: 480px) {
  .process__wrap {
    flex-direction: column;
    padding: 5rem 2.4rem;
  }
  .process__item::after {
    top: auto;
    bottom: -5.4rem;
    right: 44%;
    transform: translateY(0) rotate(90deg) translateX(-50%);
  }
}
.procedure__wrap {
  padding: 6rem 4.4rem 3rem;
  margin-top: 2rem;
  border-radius: 1.5rem;
  background: #f2f6fa;
}
.procedure__list {
  display: flex;
  gap: 4.2rem;
  counter-reset: procedureNum;
}
.procedure__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  position: relative;
  min-height: 10rem;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
.procedure__item p {
  display: none;
}
.procedure__item::before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #2b578d;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-align: center;
  content: counter(procedureNum);
  counter-increment: procedureNum;
}
.procedure__item::after {
  position: absolute;
  top: 50%;
  right: -3rem;
  transform: translateY(-50%);
  font-family: "remixicon";
  font-size: 2.2rem;
  font-weight: 400;
  color: #2d3a71;
  line-height: 1;
  content: "\ea6e";
}
.procedure__item:last-child::after {
  display: none;
}
.procedure__btm {
  display: flex;
  margin-top: 2rem;
  gap: 4.2rem;
}
.procedure__btm-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: calc(20% - 3.36rem);
  padding: 1.6rem 2rem;
  padding-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.24;
  text-align: center;
}
.procedure__btm-item.width {
  flex-grow: 1;
}
.procedure__btm-item::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2rem;
  border: 2px solid #2b578d;
  border-bottom: none;
  content: "";
}

@media (max-width: 900px) {
  .procedure__wrap {
    padding: 5rem 4.4rem 4rem;
  }
  .procedure__list {
    justify-content: center;
    flex-wrap: wrap;
  }
  .procedure__item {
    flex-direction: column;
    flex: 0 0 auto;
    width: calc(33.3333333333% - 2.8rem);
    padding: 2.4rem 2rem;
  }
  .procedure__item p {
    display: block;
    margin-top: 0.4rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2b578d;
  }
  .procedure__btm {
    display: none;
  }
}
@media (max-width: 600px) {
  .procedure__list {
    gap: 3rem;
  }
  .procedure__item {
    width: 100%;
  }
  .procedure__item::after {
    display: none;
  }
}
.list-box {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  border: 4px solid #f2f6fa;
  border-radius: 1.5rem;
  gap: 3rem;
}
.list-box.color {
  border: none;
  background-color: #f1f5f9;
}
.list-box .dot-list > li {
  font-size: 1.6rem;
}
.list-box .dot-list > li::before {
  top: 0.8rem;
  background-color: #2b578d;
}

li > ul {
  margin-top: 0.4rem;
}
li > .list-box,
li > .documents__wrap,
li > .table__wrap {
  margin: 1.4rem 0 2rem;
}

.login-wrap {
  padding: 8rem 3rem;
  border: 1px solid #ddd;
  border-radius: 1.6rem;
  background: #f1f8f9;
  text-align: center;
}
.login-wrap .form-tit {
  font-size: 0;
}
.login-wrap .fieldset {
  max-width: 50rem;
  margin: 0 auto;
  gap: 0;
}
.login-wrap .fieldset .form-group {
  align-items: center;
}
.login-wrap .input__wrap input {
  height: 6rem;
  padding: 1rem 2rem;
  font-size: 1.6rem;
}
.login-title {
  margin: 3.2rem 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.login-title strong {
  color: #0097A1;
}
.login-title span {
  display: inline-block;
}
.login-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 1.8rem 0 4rem;
  gap: 0.8rem 2.4rem;
}
.login-link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
}
.login-link li {
  position: relative;
}
.login-link li::after {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%) rotate(30deg);
  width: 1px;
  height: 1.2rem;
  background-color: #d8d8d8;
  content: "";
}
.login-link li:last-child::after {
  display: none;
}
.login-link a {
  display: inline-block;
  position: relative;
  padding: 0;
  font-size: 1.6rem;
  color: #555;
}
.login-link a.login-join {
  padding-right: 2rem;
  font-weight: 700;
  color: #0097A1;
}
.login-link a.login-join::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "remixicon";
  font-size: 1.6rem;
  font-weight: 400;
  color: #0097A1;
  content: "\f25e";
}
.login-btn {
  background-color: #0097A1;
}

.find__wrap {
  display: flex;
  gap: 2rem;
}
.find__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  padding: 8rem 3rem;
  border: 5px solid #f9f9f9;
  border-radius: 1.6rem;
  text-align: center;
}
.find__con {
  position: relative;
  padding-top: 16.4rem;
}
.find__con::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14.2rem;
  height: 12.4rem;
  background: url("/resources/images/find_img.svg") no-repeat center center/contain;
  content: "";
}
.find__con.simple::before {
  background: url("/resources/images/find_img02.svg") no-repeat center center/contain;
}
.find__con h4 {
  margin-bottom: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.find__con p {
  font-size: 1.8rem;
  line-height: 1.4;
}
.find__btn {
  margin-top: 2.4rem;
  background-color: #111;
}

.round-btn {
  display: inline-block;
  padding: 1rem 5rem;
  border-radius: 50rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .find__wrap {
    flex-direction: column;
  }
  .find__item {
    padding: 5rem 3rem 6rem;
  }
}
.result__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem;
  border: 5px solid #f9f9f9;
  text-align: center;
}
.result__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 2rem 0 4rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  gap: 0 1.6rem;
}
.result__text strong {
  font-size: 4rem;
  font-weight: 700;
  color: #0097A1;
}
.result__btn {
  background-color: #0097A1;
}

@media (max-width: 768px) {
  .result__wrap {
    padding: 6rem 3rem;
  }
}
@media (max-width: 420px) {
  .login-menu {
    flex-direction: column;
    gap: 2.4rem 0;
  }
  .login-menu .check__wrap {
    margin-right: auto;
  }
}
.pwfind__wrap {
  padding: 8rem;
  border: 1px solid #ddd;
  border-radius: 1.6rem;
  background: #f1f5f9;
  text-align: center;
}
.pwfind__wrap h4 {
  margin-top: 2.4rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.pwfind__wrap p {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  color: #555;
}
.pwfind__wrap .input__wrap {
  max-width: 50rem;
  margin: 3.2rem auto;
}
.pwfind__wrap .input__wrap input {
  height: 5.2rem;
  padding: 1rem 2rem;
  font-size: 1.6rem;
}
.pwfind__btn {
  background-color: #2B4B90;
}

@media (max-width: 768px) {
  .pwfind__wrap {
    padding: 6rem 3rem;
  }
}
.reset__wrap {
  padding: 8rem;
  margin-bottom: 8rem;
  border: 5px solid #f9f9f9;
  border-radius: 1.6rem;
  text-align: center;
}
.reset__wrap h4 {
  margin-top: 2.4rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.reset__con {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  margin: 3.2rem auto;
  text-align: left;
  gap: 2rem;
}
.reset__input label {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2B4B90;
}
.reset__input label i {
  margin-right: 0.7rem;
  font-weight: 400;
}
.reset__input input {
  height: 6rem;
  padding: 1rem 2rem;
  font-size: 1.6rem;
}
.reset__notice {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  color: #555;
}
.reset__notice sup {
  margin-right: 0.3rem;
  color: #2B4B90;
  vertical-align: text-top;
}
.reset__btn {
  background-color: #2B4B90;
}

@media (max-width: 768px) {
  .reset__wrap {
    padding: 6rem 3rem;
  }
}
.finish__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem;
  border: 1px solid #ddd;
  border-radius: 1.6rem;
  background: #f1f8f9;
}
.finish__wrap h4 {
  margin-top: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.finish__desc {
  margin: 2rem 0 4rem;
  font-size: 1.8rem;
  line-height: 1.4;
}
.finish__btn {
  background-color: #0097A1;
}

@media (max-width: 768px) {
  .finish__wrap {
    padding: 6rem 3rem;
  }
}
.bulArea01 {
  position: relative;
  min-width: 1px;
  padding-left: 8px;
}

.bulArea01 .bul {
  position: absolute;
  top: 0;
  left: 0;
}

.bulArea02 {
  position: relative;
  min-width: 1px;
  padding-left: 11px;
}

.bulArea02 .bul {
  position: absolute;
  top: 0;
  left: 0;
}

.bulArea03 {
  position: relative;
  min-width: 1px;
  padding-left: 17px;
}

.bulArea03 .bul {
  position: absolute;
  top: 0;
  left: 0;
}

.bulArea04 {
  position: relative;
  min-width: 1px;
  padding-left: 21px;
}

.bulArea04 .bul {
  position: absolute;
  top: 0;
  left: 0;
}

.conTitle01 {
  margin: 2rem 0 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.policy-smtitle {
  margin: 6rem 0 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0097A1;
}
.policy-smtitle:first-of-type {
  margin-top: 0;
}

.krds-pagination .page-links .page-link {
  font-weight: 400;
}
.krds-pagination .page-links .page-link.active {
  border-radius: 50%;
  background-color: #2B4B90;
  font-weight: 600;
}

.board__group {
  padding: 5rem 2.4rem;
  margin-bottom: 5rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background: #f1f5f9;
}
.board__group-con {
  display: flex;
  flex-wrap: wrap;
  max-width: 70rem;
  margin: 0 auto;
  gap: 1rem 4rem;
}
.board__group-item {
  display: flex;
  align-items: center;
  flex-grow: 1;
  overflow: visible !important;
  gap: 1rem;
}
.board__group-item label {
  min-width: 8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2B4B90;
}
.board__group-item .select__wrap.md,
.board__group-item .input__wrap,
.board__group-item .flex-box {
  flex-grow: 1;
}
.board__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 1rem 4rem;
}
.board__result {
  display: flex;
  align-items: center;
  gap: 0.6rem 2rem;
}
.board__result-item {
  position: relative;
  overflow: visible;
  font-size: 1.7rem;
  font-weight: 500;
  color: #333;
}
.board__result-item::after {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  width: 1px;
  height: 1.8rem;
  background-color: #ddd;
  content: "";
}
.board__result-item:last-child::after {
  display: none;
}
.board__result-num {
  font-weight: 700;
  color: #0097A1;
}
.board__view {
  display: flex;
  gap: 1rem;
}
.board__view-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  background-color: #111;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  gap: 1rem;
}
.board__view-btn i {
  font-weight: 400;
}
.board__view-title {
  padding: 3rem 2.4rem;
  border-top: 1px solid #111;
  text-align: center;
}
.board__view-title h2 {
  font-size: 2.8rem;
}
.board__view-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2.2rem 2.4rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f9f9f9;
  gap: 0.4rem 2.4rem;
}
.board__view-info > p {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #555;
  gap: 0.8rem;
}
.board__view-info > p span {
  display: inline-block;
  font-weight: 600;
  color: #333;
}
.board__view-con {
  padding: 5rem 4rem;
  font-size: 1.8rem;
  color: #555;
}
.board__file {
  display: flex;
  align-items: center;
  padding: 4rem 6rem;
  background-color: #f6f6f6;
  gap: 2rem 6rem;
}
.board__file h3 {
  font-size: 2rem;
}
.board__file-list {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  gap: 1.2rem;
}
.board__file-list > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem 2.4rem;
}
.board__file-list > li .file-item {
  flex: 1;
  flex-wrap: nowrap;
  min-width: 0;
  width: 100%;
}
.board__file-list > li .file-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board__file-list > li .btn__style {
  flex-shrink: 0;
}
.board__control {
  margin-top: 5rem;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.board__control-item {
  display: flex;
  align-items: center;
  min-height: 7.2rem;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  gap: 4rem;
}
.board__control-item:first-child {
  border-bottom: 1px solid #e6e6e6;
}
.board__control-cate {
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  padding-left: 3.6rem;
  font-weight: 600;
  color: #333;
}
.board__control-cate::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "remixicon";
  font-weight: 400;
  content: "\ea78";
}
.board__control-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  gap: 4rem;
}
.board__control-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}
.board__control-date {
  flex-shrink: 0;
  color: #999;
}

@media (max-width: 768px) {
  .board__group-con {
    flex-direction: column;
  }
  .board__file {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 4rem;
  }
}
@media (max-width: 540px) {
  .board__group-con {
    flex-direction: column;
  }
  .board__group-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .board__group-item .flex-box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .board__view-title {
    padding: 2.4rem;
  }
  .board__view-con {
    padding: 4rem 3rem;
  }
  .board__file {
    padding: 3rem;
  }
  .board__file-list > li {
    flex-direction: column;
    align-items: flex-start;
  }
  .board__control-item {
    padding: 1.2rem 2rem;
    gap: 2rem;
  }
}
@media (max-width: 420px) {
  .board__group-item .select__wrap {
    flex-grow: 1;
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 4rem);
  width: 120rem;
  max-height: calc(100% - 4rem);
  overflow-y: auto;
  padding: 4rem;
  border-radius: 1.4rem;
  background-color: #fff;
}
.modal-box.width {
  width: 160rem;
}
.modal-box .con__box {
  margin-top: 0 !important;
  margin-bottom: 1.2rem;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
  gap: 2rem;
}
.modal-header strong {
  font-size: 2.8rem;
  color: #111;
}
.modal-header button {
  font-size: 4rem;
  color: #111;
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
  gap: 0.8rem;
}

@media (max-width: 420px) {
  .modal-box {
    padding: 4rem 3rem;
  }
  .modal .table__wrap::before {
    font-size: 1.6rem;
  }
}
.cert__view {
  width: 2480px;
  height: 3508px;
  background: url(/resources/images/cert_bg.png) no-repeat center center/cover;
}

@media (max-width: 768px) {
  .board_list table td[aria-label=번호]:first-child {
    background-color: #0097A1;
    font-size: 1.4rem;
  }
}
.board_list .txt_left a {
  max-height: 3rem;
}

.notice-mark {
  display: inline-block;
  padding: 0.1rem 1rem;
  margin-right: 0.8rem;
  border-radius: 3rem;
  background: #eff8f9;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0097A1;
}

.status-mark {
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 5rem;
  background-color: #0097A1;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
.status-mark.type02 {
  border: 1px solid #0097A1;
  background-color: #fff;
  color: #0097A1;
}
.status-mark.type03 {
  background-color: #ddd;
  color: #111;
}

/* 
	plupload_mxds style_v1.0
*/
.plupload {
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}

.plupload_header_content {
  display: flex;
  align-items: center;
  padding: 1.6rem 3.2rem;
  border-radius: 3px;
  background-color: #f5f5f5;
  gap: 1rem 1.6rem;
}

.plupload_header_info {
  display: flex;
  margin-right: auto;
  gap: calc(3.2rem + 1px);
}

.plupload_header_info li {
  flex-shrink: 0;
  position: relative;
  font-size: 1.6rem;
  color: #9e9e9e;
}

.plupload_header_info li:before {
  position: absolute;
  top: 50%;
  right: calc(-1.6rem - 1px);
  transform: translatey(-50%);
  width: 1px;
  height: 1.4rem;
  background-color: #bdbdbd;
  content: "";
}

.plupload_header_info li:last-child:before {
  display: none;
}

.plupload_header_file_status {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  visibility: hidden;
  font-size: 1.4rem;
  color: #9e9e9e;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
}

.plupload_progress_container {
  position: relative;
  width: 10rem;
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
  background-color: #e0e0e0;
}

.plupload_progress_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 2px;
}

@media (max-width: 1280px) {
  .plupload_add {
    margin-right: auto;
    order: 1;
  }
  .plupload_header_info {
    width: 100%;
    order: 3;
  }
  .plupload_header_file_status {
    order: 2;
  }
}
/* 파일 업로드 시 */
.plupload_header_content.uploading .plupload_header_file_status {
  visibility: visible;
}

.plupload_header_content.uploading .plupload_progress_bar {
  background-color: #222;
}

/* 업로드 완료 시 */
.plupload_header_content.uploaded .plupload_header_file_status {
  visibility: visible;
}

.plupload_header_content.uploaded .plupload_progress_bar {
  background-color: #364fc7;
}

.plupload_add {
  flex-shrink: 0;
  color: #fff;
}

.plupload_remove {
  margin-left: 1rem;
}

.plupload_file_uploading {
  font-size: 1.6rem;
  color: #9e9e9e;
}

.plupload_filelist {
  position: relative;
  border: 1px dashed #bdbdbd;
  border-radius: 3px;
  background-color: #fff;
  transition: 0.5s background-color, 0.5s border-color;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.plupload_filelist::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

.plupload_filelist:before {
  position: absolute;
  top: -1px;
  left: -1px;
  opacity: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 2px dashed #424242;
  border-radius: 3px;
  transition: 0.5s;
  content: "";
}

.plupload_droptext {
  display: flex;
  align-items: center;
  padding: 3.2rem;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  color: #757575;
  transition: 0.5s;
  -moz-column-gap: 6px;
       column-gap: 6px;
}

.plupload_droptext i {
  position: relative;
  /*top:-.25rem;*/
  font-size: 2rem;
  font-weight: 400;
}

.plupload_filelist.drag_over {
  overflow: visible !important;
  background-color: #fafafa;
  border-color: transparent;
}

.plupload_filelist.drag_over:before {
  opacity: 1;
}

.plupload_filelist.drag_over .plupload_droptext {
  padding: 4.8rem 3.2rem;
}

.plupload_filelist > li:not(.plupload_droptext) {
  display: flex;
  align-items: center;
  position: relative;
  padding: 2rem 3.2rem;
  background-color: #fff;
  cursor: pointer;
}

.plupload_filelist > li:not(.plupload_droptext):before {
  position: absolute;
  top: calc(50% - 0.7rem);
  left: 1.6rem;
  opacity: 0;
  width: 0.7rem;
  height: 1.4rem;
  background: url(/mxds/images/fileupload-draggable-ico.svg) no-repeat 50% 50%/contain;
  transition: 0.25s opacity;
  content: "";
}

.plupload_filelist.drag_over > li:not(.plupload_droptext) {
  background-color: transparent;
}

.plupload_filelist > li + li:after {
  position: absolute;
  top: 0;
  left: 1.6rem;
  width: calc(100% - 3.2rem);
  height: 1px;
  border-top: 1px dotted #e0e0e0;
  content: "";
}

.plupload_filelist > li:not(.plupload_droptext):hover:before,
.plupload_filelist > li.ui-sortable-helper:before {
  opacity: 1;
}

.plupload_filelist > li.ui-sortable-helper {
  background-color: rgba(255, 255, 255, 0.5);
}

.plupload_filelist > li.ui-sortable-helper:after {
  display: none;
}

.plupload_file_status .alert-message {
  padding-left: 0;
  padding-right: 2.8rem;
}

.plupload_file_status .alert-message:before {
  left: auto;
  right: 0;
}

.plupload_file_name {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-right: auto;
  font-size: 1.6rem;
  color: #9e9e9e;
}

.plupload_file_name i {
  position: relative;
  margin-right: 0.4rem;
  font-size: 2rem;
}

.plupload_file_size {
  flex-shrink: 0;
  margin: auto 1.2rem auto 2rem;
  font-size: 1.4rem;
  color: #9e9e9e;
}

/*.plupload_file_action{margin-left:auto;}*/
.plupload_file_control {
  color: #222;
}

.plupload_file_name .icon-empty-page {
  margin-right: 0.8rem;
}

/* 업로드 완료 시 예외처리 */
.plupload_done .plupload_file_name *:not(.plupload_file_size) {
  color: #616161;
}

.plupload_done .plupload_file_name .plupload_file_down {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board__view-title .status-mark {
  padding: 0.5rem 1.4rem;
  margin-right: 1.2rem;
  font-size: 1.6rem;
  vertical-align: middle;
}

.inquiry__answer {
  overflow: hidden;
  margin-top: 5rem;
  border: 1px solid #0097A1;
  border-radius: 1rem;
}
.inquiry__answer-top {
  flex-wrap: wrap;
  padding: 2.2rem 6rem;
  background-color: #f2f6fa;
  gap: 0.8rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inquiry__answer-title {
  font-size: 2rem;
}
.inquiry__answer-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.inquiry__answer-info > p {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #555;
  gap: 0.8rem;
}
.inquiry__answer-cate {
  display: inline-block;
  font-weight: 600;
  color: #333;
}
.inquiry__answer-con {
  padding: 4rem;
  font-size: 1.6rem;
  color: #707070;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .inquiry__answer-top {
    padding: 2.2rem 3rem;
  }
  .inquiry__answer-con {
    padding: 3rem;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  overflow: hidden;
  border: 2px solid #f8f8f8;
  border-radius: 1.2rem;
}
.faq__item.active {
  border-color: #0097A1;
}
.faq__item.active .faq__question {
  background-color: #f2f6fa;
}
.faq__item.active .faq__question::after {
  transform: translateY(-50%) rotate(180deg);
  color: #999;
}
.faq__item.active .faq__question-title {
  color: #0097A1;
}
.faq__item.active .faq__question-title::before {
  color: #0097A1;
}
.faq__question {
  position: relative;
  padding: 2.8rem 4rem;
  padding-right: 8rem;
  background-color: #f8f8f8;
  cursor: pointer;
  transition: 0.34s;
}
.faq__question::after {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  font-family: "remixicon";
  font-size: 2.6rem;
  color: #ccc;
  transition: 0.4s;
  content: "\ea4e";
}
.faq__question-title {
  position: relative;
  padding-left: 5rem;
  font-size: 2.1rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  transition: 0.34s;
}
.faq__question-title::before {
  position: absolute;
  top: -0.9rem;
  left: 0;
  font-size: 3rem;
  font-weight: 700;
  color: #777;
  content: "Q.";
}
.faq__answer {
  display: none;
  position: relative;
  padding: 4rem;
  padding-left: 9rem;
}
.faq__answer::before {
  position: absolute;
  top: 3rem;
  left: 4rem;
  font-size: 3rem;
  font-weight: 700;
  color: #0097A1;
  content: "A.";
}
.faq__answer-text {
  font-size: 1.8rem;
  color: #555;
}

@media (max-width: 768px) {
  .faq__question {
    padding: 3rem;
    padding-right: 7rem;
  }
  .faq__question::after {
    right: 3rem;
  }
  .faq__answer {
    padding: 3rem;
    padding-left: 8rem;
  }
  .faq__answer::before {
    top: 2rem;
    left: 3rem;
  }
}
td .input__wrap + .input__wrap,
td .input__wrap + .date__wrap,
td .date__wrap + .input__wrap,
td .date__wrap + .date__wrap,
td input + .input__wrap,
td input + .date__wrap {
  margin-top: 0.8rem;
}

.board_list table td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.krds-pagination .page-links .page-link.link-dot {
  display: none;
}

.krds-pagination .page-links .page-link {
  border-radius: 50%;
}

.krds-pagination .page-links .first {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 0;
}
.krds-pagination .page-links .first:hover {
  background-color: #eef2f7;
}
.krds-pagination .page-links .first::before {
  font-family: "remixicon";
  font-size: 2rem;
  content: "\f2e2";
}

.krds-pagination .page-links .page-link.prev {
  margin-right: 1rem;
  border: 1px solid #ddd;
  border-radius: 50%;
}
.krds-pagination .page-links .page-link.prev::before {
  font-family: "remixicon";
  font-size: 2rem;
  font-weight: 400;
  content: "\ea64";
}
.krds-pagination .page-links .page-link.prev img {
  display: none;
}

.krds-pagination .page-links .last {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 0;
}
.krds-pagination .page-links .last:hover {
  background-color: #eef2f7;
}
.krds-pagination .page-links .last::before {
  font-family: "remixicon";
  font-size: 2rem;
  content: "\f2e4";
}

.krds-pagination .page-links .page-link.next {
  margin-left: 1rem;
  border: 1px solid #ddd;
  border-radius: 50%;
}
.krds-pagination .page-links .page-link.next::before {
  font-family: "remixicon";
  font-size: 2rem;
  font-weight: 400;
  content: "\ea6e";
}
.krds-pagination .page-links .page-link.next img {
  display: none;
}

@media (max-width: 480px) {
  .krds-pagination .page-links .page-link.prev,
  .krds-pagination .page-links .page-link.next {
    margin: 0;
  }
  .krds-pagination .page-links {
    gap: 0.4rem;
  }
}
#facilitySearchResult input[type=radio] {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .board_list #facilitySearchResult tr {
    padding: 2rem 1.4rem;
  }
  #facilitySearchResult input[type=radio] {
    margin-bottom: 8px;
  }
  .board_list table colgroup {
    display: none;
  }
}
.auth__wrap {
  max-width: 936px;
  padding: 40px;
}
.auth__wrap h1 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
}
.auth__wrap h2 {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.25;
}
.auth__wrap h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}
.auth__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.auth__logo {
  height: 52px;
  overflow: hidden;
}
.auth__logo img {
  transform: translateY(-50%);
}
.auth__con {
  display: flex;
  gap: 32px;
}
.auth__left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  max-width: 324px;
  padding: 30px;
  border-radius: 10px;
  background-color: #f2f6fa;
}
.auth__left h3 {
  margin-bottom: 20px;
}
.auth__left-top {
  flex-grow: 1;
  padding-bottom: 52px;
}
.auth__left-btm {
  padding-top: 52px;
  border-top: 1px solid #ddd;
}
.auth__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.auth__item {
  width: 74px;
  text-align: center;
  cursor: pointer;
}
.auth__icon {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
}
.auth__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.auth__name {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.auth__mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}
.auth__mobile-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.auth__right {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 30px;
  border-top: 1px solid #333;
}
.auth__right h3 {
  margin-bottom: 32px;
}
.auth__form input {
  width: 100%;
  height: 52px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  color: #111;
}
.auth__form input::-moz-placeholder {
  color: #999;
}
.auth__form input::placeholder {
  color: #999;
}
.auth__form input:disabled {
  background-color: #f2f6fa;
  color: #999;
}
.auth__form-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
  gap: 8px 20px;
}
.auth__form-top label {
  font-size: 16px;
  font-weight: 700;
  color: #0097A1;
}
.auth__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth__form-ex {
  font-size: 14px;
  color: #666;
}
.auth__consent {
  padding: 20px;
  margin-top: 32px;
  border-radius: 10px;
  background: #f2f6fa;
}
.auth__consent h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #0097A1;
  text-align: center;
}
.auth__consent-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.auth__consent-item + .auth__consent-item {
  margin-top: 6px;
}
.auth__consent-title {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  color: #555;
  gap: 8px;
}
.auth__consent-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.auth__consent-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.auth__consent-link {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  color: #0097A1;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth__consent-btm {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #ddd;
}
.auth__consent-btm p {
  max-width: 312px;
  margin: 0 auto;
  font-size: 14px;
  color: #555;
  text-align: center;
}
.auth__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 20px;
  border-radius: 8px;
  background-color: #0097A1;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.auth__btn.black {
  background-color: #111;
}
.auth__btn-wrap {
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
  margin-top: 32px;
  gap: 12px;
}

@media (max-width: 768px) {
  .auth__con {
    flex-direction: column;
  }
  .auth__left {
    max-width: 100%;
  }
  .auth__item {
    width: calc(25% - 15px);
  }
}
@media (max-width: 560px) {
  .auth__wrap {
    padding: 30px;
  }
  .auth__top {
    flex-direction: column-reverse;
    text-align: center;
    gap: 14px;
  }
  .auth__left {
    padding: 24px;
  }
  .auth__left-top {
    padding-bottom: 40px;
  }
  .auth__left-btm {
    padding-top: 40px;
  }
  .auth__item {
    width: calc(33.3333333333% - 14px);
  }
  .auth__name, .auth__consent-title, .auth__consent-link {
    font-size: 15px;
  }
}
.size-sm {
  font-size: 1.7rem;
}