@charset "UTF-8";
@import url("/resources/css/common/default.css");
@import url("/resources/css/common/root.css");
@import url("/resources/css/common/print.css");
/*-------------------------------------------------
title       : 메인
Author      : PLAN I
Create date : 2024-10-25
-------------------------------------------------*/
@media (max-width: 1024px) {
  html {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 8px;
  }
}
.title1 {
  display: flex;
  gap: 1rem;
  font-family: var(--ff-tit, "EliceDigitalBaeum");
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--cl-tit, #222222);
  letter-spacing: -0.02em;
  margin: 8rem 0 3rem;
}
.title1:first-child {
  margin-top: 0;
}
.title1 + .title2 {
  margin-top: 0;
}
.title1 > i {
  position: relative;
  flex-shrink: 0;
}
.title1 > i::before, .title1 > i::after {
  position: absolute;
  content: "";
}
.title1.type1 > i {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  margin-top: 0.5rem;
}
.title1.type1 > i::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  border: 1rem solid var(--cl-tit-sub1, #00afef);
  border-radius: 0.8rem;
}
.title1.type1 > i::after {
  right: 0;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--cl-tit-sub2, #005cd4);
  border-bottom-right-radius: 0.8rem;
}
.title1.type2 > i {
  display: block;
  width: 4.1rem;
  height: 3.3rem;
}
.title1.type2 > i::before {
  top: 0.48rem;
  left: 0;
  width: 2.3rem;
  height: 2.3rem;
  background-color: var(--cl-tit-sub3, #010893);
  border-radius: 50%;
}
.title1.type2 > i::after {
  top: 0.48rem;
  left: 1.3rem;
  width: 2.3rem;
  height: 2.3rem;
  background-color: var(--cl-tit-sub4, #ea5520);
  border-radius: 50% 50% 0 50%;
  transform: rotate(-45deg);
}

.title2 {
  display: flex;
  gap: 0.6rem;
  padding-left: 0.2rem;
  font-family: var(--ff-tit, "EliceDigitalBaeum");
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--cl-tit, #222222);
  letter-spacing: -0.03em;
  word-break: keep-all;
  margin: 3rem 0 0.8rem;
}
.title2 > i {
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
  box-sizing: border-box;
  background-color: #ffffff;
  border: 0.6rem solid var(--cl-tit-sub2, #005cd4);
  border-radius: 50%;
  margin-top: 0.6rem;
}
.title2.type2 > i {
  border-color: var(--cl-tit-sub4, #ea5520);
}

.desc {
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--cl-tit, #222222);
  word-break: keep-all;
}

.indent {
  padding-left: 2.8rem;
}
.indent > .desc + .bul, .indent > .bul + .small, .indent > .bul + .scroll-area, .indent > .scroll-area + .bul {
  margin-top: 0.8rem;
}

.small {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--cl-sub, #616161);
  word-break: keep-all;
}

.bul {
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--cl-tit, #222222);
}
.bul > li {
  position: relative;
  padding-left: 1.6rem;
  word-break: keep-all;
}
.bul > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}
.bul > li + li {
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 5.2rem;
  padding: 0 6rem;
  box-sizing: border-box;
  font-family: var(--ff, var(--ff));
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cl-label, #424242);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  background-color: #ffffff;
  border: 0.1rem solid var(--cl-line, #e0e0e0);
  border-radius: 0.3rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.button:hover {
  background-color: var(--cl-bg, #f7f7f7);
  border-color: var(--cl-border, #bdbdbd);
}
.button:focus {
  outline: 0.2rem solid var(--cl-focus, #222222);
  outline-offset: 0.2rem;
}
.button:focus-visible {
  outline-color: var(--cl-focus, #005cd4);
}
.button.type2 {
  color: #ffffff;
  background-color: var(--cl-tit, #222222);
  border-color: var(--cl-tit, #222222);
}
.button.type2:hover {
  background-color: var(--cl-label, #424242);
  border-color: var(--cl-label, #424242);
}
.button.type3 {
  color: #ffffff;
  background-color: var(--cl-tit-sub4, #ea5520);
  border-color: var(--cl-tit-sub4, #ea5520);
}
.button.type3:hover {
  color: #ffffff;
  background-color: #d14b1c;
  border-color: #d14b1c;
}
.button:disabled, .button[aria-disabled=true] {
  color: var(--cl-placeholder, #9e9e9e);
  background-color: var(--cl-file-bg, #f5f6f9);
  border-color: var(--cl-line, #e0e0e0);
  cursor: default;
}

.button-wrap {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 2.4rem;
  box-sizing: border-box;
}
.modal[hidden] {
  display: none;
}
.modal-dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 48rem;
  max-width: 100%;
  padding: 3.2rem 4rem;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 1.2rem;
  box-shadow: -1.2rem 0 3.6rem rgba(0, 0, 0, 0.05);
}
.modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  background-color: var(--cl-tit-sub4, #ea5520);
  border-radius: 1rem;
}
.modal-icon[hidden] {
  display: none;
}
.modal-icon img {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
}
.modal-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.modal-title, .modal-message {
  width: 100%;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  color: #152240;
  text-align: center;
  word-break: keep-all;
}
.modal-message {
  padding: 1.6rem;
  box-sizing: border-box;
  background-color: #f1f3f8;
  border-radius: 1.2rem;
}
.modal-desc {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cl-sub, #616161);
  text-align: center;
  word-break: keep-all;
}
.modal-body {
  width: 100%;
  text-align: left;
}
.modal-body .title2 {
  margin: 3.2rem 0 1.6rem;
}
.modal-body .title2:first-child {
  margin-top: 0;
}
.modal-body .table1-wrap {
  margin-top: 2rem;
}
.modal.type-content {
  align-items: flex-start;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow-y: auto;
}
.modal.type-content .modal-dialog {
  align-items: stretch;
  width: 96rem;
  max-height: calc(100vh - 8rem);
  max-height: calc(100dvh - 8rem);
  gap: 2.4rem;
  padding: 3.2rem 4rem 2.4rem;
}
.modal.type-content .modal-content {
  flex: 1 1 auto;
  gap: 1.6rem;
  min-height: 0;
}
.modal.type-content .modal-title {
  flex-shrink: 0;
  text-align: left;
}
.modal.type-content .modal-desc {
  flex-shrink: 0;
  text-align: left;
}
.modal.type-content .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(100vh - 28rem);
  max-height: calc(100dvh - 28rem);
  padding-right: 0.8rem;
  overflow: auto;
  box-sizing: border-box;
}
.modal.type-content .modal-actions {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .modal.type-content .modal-dialog {
    width: 100%;
    max-height: calc(100vh - 4rem);
    max-height: calc(100dvh - 4rem);
    padding: 2.4rem 2rem 2rem;
  }
  .modal.type-content .modal-body {
    max-height: calc(100vh - 22rem);
    max-height: calc(100dvh - 22rem);
  }
}
.modal-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.modal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 4.8rem;
  padding: 0 1.6rem;
  box-sizing: border-box;
  font-family: var(--ff, var(--ff));
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cl-label, #424242);
  background-color: #ffffff;
  border: 0.1rem solid #d5d8e0;
  border-radius: 0.8rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.modal-button:hover {
  background-color: var(--cl-bg, #f7f7f7);
}
.modal-button:focus {
  outline: 0.2rem solid var(--cl-focus, #222222);
  outline-offset: 0.2rem;
}
.modal-button:focus-visible {
  outline-color: var(--cl-focus, #005cd4);
}
.modal-button.type2 {
  color: #ffffff;
  background-color: var(--cl-tit, #222222);
  border-color: var(--cl-tit, #222222);
}
.modal-button[hidden] {
  display: none;
}

.modal-link {
  display: inline;
  padding: 0;
  font: inherit;
  font-weight: 600;
  line-height: inherit;
  color: #002789;
  text-decoration: underline;
  background: none;
  border: 0;
  cursor: pointer;
}
.modal-link:focus {
  outline: 0.2rem solid var(--cl-tit, #222222);
  outline-offset: 0.2rem;
}
.modal-link:focus-visible {
  outline: 0.2rem solid #002789;
  outline-offset: 0.2rem;
}
.modal-link:hover {
  color: #001a5c;
}

.table1 {
  width: 100%;
  border-collapse: collapse;
  border-top: 0.2rem solid var(--cl-tit, #222222);
}
.table1 th, .table1 td {
  padding: 1.6rem 2rem;
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--cl-tit, #222222);
  border-right: 0.1rem solid var(--cl-line, #dddddd);
  border-bottom: 0.1rem solid var(--cl-line, #dddddd);
  word-break: keep-all;
}
.table1 th {
  height: 7rem;
  font-weight: 700;
  text-align: center;
  background-color: var(--cl-bg, #f7f7f7);
  border-bottom-color: var(--cl-line-dark, #afafaf);
}
.table1 td {
  height: auto;
  min-height: 7rem;
}
.table1 th:last-child, .table1 td:last-child {
  border-right: 0;
}
.table1 th:first-child, .table1 td:first-child {
  text-align: center;
}
.table1 .is-center {
  text-align: center;
}
.table1 .small {
  margin-top: 0.4rem;
}
.table1 .is-total td {
  height: 6rem;
  font-weight: 600;
  text-align: center;
  background-color: var(--cl-bg, #f7f7f7);
}
.table1 caption:not(.sr-only) {
  overflow: visible;
  position: static;
  width: auto;
  height: auto;
  margin-bottom: 1.6rem;
  padding: 0;
  border: 0;
  clip: auto;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cl-tit, #222222);
  text-align: center;
  white-space: normal;
}
.table1-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.req {
  color: #d43333;
}

.table2 {
  width: 100%;
  border-collapse: collapse;
  border-top: 0.3rem solid var(--cl-tit, #222222);
}
.table2 th, .table2 td {
  border-bottom: 0.1rem solid #e5e7f0;
  vertical-align: middle;
  word-break: keep-all;
}
.table2 th {
  width: 27rem;
  padding: 3rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #081324;
  text-align: center;
  background-color: #f8f8f8;
}
.table2 td {
  padding: 0.8rem 1.6rem;
}
.table2 td .form-input,
.table2 td .form-select,
.table2 td .form-textarea,
.table2 td .form-select-md {
  width: 100%;
  max-width: 100%;
}
.table2 td .flex {
  width: 100%;
}
.table2 td .flex > .form-input,
.table2 td .flex > .form-select,
.table2 td .flex > .form-select-md {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}
.table2 td .form-email {
  flex-wrap: nowrap;
  width: 100%;
}
.table2 td .form-email .form-input,
.table2 td .form-email .form-select {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}
.table2 td .form-email .at {
  flex-shrink: 0;
}
.table2 td .form-date-range {
  width: 100%;
}
.table2 td .form-date-range .form-date-wrap {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}
.table2 td .form-date-range .dash {
  flex-shrink: 0;
}
.table2 td.is-full {
  padding: 2rem 1.6rem;
}
.table2 tbody[hidden] {
  display: none;
}
.table2 .req {
  margin-right: 0.4rem;
}
.table2-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table3 {
  width: 100%;
  border-collapse: collapse;
  border-top: 0.1rem solid #1c2952;
}
.table3 th, .table3 td {
  padding: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  word-break: keep-all;
  border-bottom: 0.1rem solid #e1cfca;
}
.table3 th {
  font-weight: 500;
  color: var(--cl-tit, #222222);
  background-color: #fefbf5;
}
.table3 td {
  color: var(--cl-sub, #616161);
}

.point {
  color: var(--cl-tit-sub4, #ea5520);
}

.scroll-area {
  max-height: 30rem;
  padding: 2rem;
  overflow-y: auto;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--cl-sub, #616161);
  background-color: #ffffff;
  border: 0.1rem solid var(--cl-border, #bdbdbd);
  border-radius: 1.2rem;
  -webkit-overflow-scrolling: touch;
}
.scroll-area > * + * {
  margin-top: 1rem;
}
.scroll-area.is-static {
  max-height: none;
  overflow: visible;
  background-color: #fafafa;
}

.form-input, .form-select, .form-date, .form-textarea {
  width: 100%;
  height: 4.8rem;
  padding: 0 1.6rem;
  box-sizing: border-box;
  font-family: var(--ff, var(--ff));
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--cl-tit, #222222);
  background-color: #ffffff;
  border: 0.1rem solid var(--cl-border, #bdbdbd);
  border-radius: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-textarea {
  height: 22.4rem;
  padding: 1.6rem;
  resize: vertical;
}
.form-text {
  padding: 0 0.4rem;
  font-size: 1.6rem;
  line-height: 4.8rem;
  color: var(--cl-tit, #222222);
  word-break: break-all;
}
.form-text.type2 {
  padding: 1.6rem 0.4rem;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--cl-label, #424242);
  word-break: keep-all;
}
.form-input:focus, .form-select:focus, .form-date:focus, .form-textarea:focus {
  outline: 0.2rem solid var(--cl-focus, #222222);
  outline-offset: 0.1rem;
}
.form-input:focus-visible, .form-select:focus-visible, .form-date:focus-visible, .form-textarea:focus-visible {
  outline: 0.2rem solid var(--cl-focus, #005cd4);
  outline-offset: 0.1rem;
}
.form-input::placeholder, .form-date::placeholder {
  color: var(--cl-placeholder, #bdbdbd);
  opacity: 1;
}
.form-select {
  padding-right: 4.4rem;
  color: var(--cl-placeholder, #9e9e9e);
  background-image: url("/resources/images/mps/main/arr_down.svg");
  background-position: right 1.8rem center;
  background-repeat: no-repeat;
  background-size: 1.1rem 0.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-select:valid {
  color: var(--cl-tit, #222222);
}
.form-date-wrap {
  position: relative;
}
.form-date {
  padding-right: 4.8rem;
}
.form-date-btn {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: transparent url("/resources/images/common/layout/calendar.svg") no-repeat center/1.5rem 1.6rem;
  border: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
.form-date-btn:focus {
  outline: 0.2rem solid var(--cl-focus, #222222);
  outline-offset: 0.2rem;
}
.form-date-btn:focus-visible {
  outline-color: var(--cl-focus, #005cd4);
}
.form-radio, .form-check {
  position: relative;
  display: inline-flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--cl-label, #424242);
  cursor: pointer;
}
.form-radio > input, .form-check > input {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  overflow: hidden;
  opacity: 0;
}
.form-radio > i, .form-check > i {
  position: relative;
  width: 2rem;
  height: 2rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
  box-sizing: border-box;
  background-color: #ffffff;
  border: 0.1rem solid var(--cl-placeholder, #9e9e9e);
}
.form-radio > i {
  border-radius: 50%;
}
.form-radio > input:checked + i {
  border: 0.14rem solid var(--cl-tit, #222222);
}
.form-radio > input:checked + i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background-color: var(--cl-tit, #222222);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  content: "";
}
.form-check {
  gap: 1rem;
}
.form-check > i {
  border-color: var(--cl-border, #bdbdbd);
  border-radius: 0.2rem;
}
.form-check > input:checked + i {
  background-color: var(--cl-tit, #222222);
  border-color: var(--cl-tit, #222222);
}
.form-check > input:checked + i::after {
  position: absolute;
  top: 0.3rem;
  left: 0.6rem;
  width: 0.5rem;
  height: 0.9rem;
  border-right: 0.2rem solid #ffffff;
  border-bottom: 0.2rem solid #ffffff;
  transform: rotate(45deg);
  content: "";
}
.form-radio > input:focus + i, .form-check > input:focus + i {
  outline: 0.2rem solid var(--cl-focus, #222222);
  outline-offset: 0.2rem;
}
.form-radio > input:focus-visible + i, .form-check > input:focus-visible + i {
  outline-color: var(--cl-focus, #005cd4);
}
.form-file {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  padding: 1.6rem 2.4rem;
  background-color: var(--cl-file-bg, #f5f6f9);
  border-radius: 0.8rem;
}
.form-file > input {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  overflow: hidden;
  opacity: 0;
}
.form-file-btn {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  height: 4rem;
  padding: 0 1.6rem 0 1.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  background-color: var(--cl-tit, #222222);
  border: 0.1rem solid var(--cl-label, #424242);
  border-radius: 0.8rem;
  cursor: pointer;
}
.form-file-btn::before {
  width: 1.8rem;
  height: 1.8rem;
  background: url("/resources/images/mps/main/ico_search.svg") no-repeat center/100% 100%;
  content: "";
}
.form-file > input:focus + .form-file-btn {
  outline: 0.2rem solid var(--cl-focus, #222222);
  outline-offset: 0.2rem;
}
.form-file > input:focus-visible + .form-file-btn {
  outline-color: var(--cl-focus, #005cd4);
}
.form-file-info {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--cl-file-text, #757575);
  word-break: break-all;
}
.form-file-info > span + span {
  padding-left: 1.6rem;
  border-left: 0.1rem solid var(--cl-border, #bdbdbd);
}
.form-file-down {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cl-tit, #222222);
  text-decoration: none;
}
.form-file-down:focus {
  outline: 0.2rem solid var(--cl-focus, #222222);
  outline-offset: 0.2rem;
}
.form-file-down:focus-visible {
  outline-color: var(--cl-focus, #005cd4);
}
.form-email {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}
.form-email .form-input, .form-email .form-select {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}
.form-email .at {
  flex-shrink: 0;
  font-size: 1.6rem;
  color: var(--cl-sub, #616161);
}
.form-date-range {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.form-date-range .form-date-wrap {
  width: 18rem;
}
.form-date-range .dash {
  font-size: 1.8rem;
  color: var(--cl-sub, #616161);
}
.form-select-md {
  width: 30rem;
}

.radio-list {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.radio-list-end {
  justify-content: flex-end;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .table1:not(.result-table-board):not(.result-table-aply) {
    min-width: 70rem;
  }
  .table1-wrap:has(.result-table-board),
  .table1-wrap:has(.result-table-aply) {
    overflow-x: visible;
  }
  .table2 {
    display: block;
  }
  .table2-wrap {
    overflow-x: visible;
  }
  .table2 tbody, .table2 tr, .table2 th, .table2 td {
    display: block;
    width: 100%;
  }
  .table2 th {
    padding: 1.2rem 1.6rem 1.2rem 3rem;
    text-align: left;
    border-bottom: 0;
    position: relative;
  }
  .table2 td {
    padding: 1.2rem 1.6rem;
  }
  .table2 .req {
    position: absolute;
    top: 1.2rem;
    left: 1.6rem;
  }
}
@media (max-width: 768px) {
  .form-file {
    flex-wrap: wrap;
  }
  .form-file-info {
    width: 100%;
    flex-wrap: wrap;
  }
  .form-select-md {
    width: 100%;
  }
  .form-date-range .form-date-wrap {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .button {
    width: 100%;
  }
  .button-wrap {
    flex-direction: column;
  }
}
#visual {
  overflow: hidden;
  padding: 7.2rem 0 6.6rem;
  position: relative;
}
#visual::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  width: 100dvw;
  height: 100%;
  background: url("/resources/images/mps/main/visual-background.webp") no-repeat center center/cover;
  transform: translateX(-50%);
}
#visual .visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
#visual .visual-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
#visual .visual-round {
  font-family: "HiKR", var(--ff-tit, "EliceDigitalBaeum");
  font-size: 3.2rem;
  font-weight: 800;
  line-height: normal;
  color: #ffffff;
}
#visual .visual-title {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-family: "HiKR", var(--ff-tit, "EliceDigitalBaeum");
  font-size: 5.6rem;
  font-weight: 800;
  line-height: normal;
}
#visual .visual-title-accent {
  background: linear-gradient(180deg, #ffffff 0%, #00ffc3 112.5%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
#visual .visual-title-main {
  color: #ffffff;
}
#visual .visual-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.7rem 5rem;
  position: relative;
  z-index: 1;
}
#visual .visual-period {
  margin: 0;
  font-family: var(--ff, "Pretendard GOV");
  color: #ffffff;
  white-space: nowrap;
}
#visual .visual-period-label,
#visual .visual-period-day {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
}
#visual .visual-period-year {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: normal;
}
#visual .visual-period-date {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: normal;
}
#visual .visual-period-sep {
  font-size: 3rem;
  font-weight: 800;
  line-height: normal;
}
#visual .visual-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 3rem;
  border-radius: 60rem;
  background-color: #000000;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
#visual .visual-cta i {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
}
#visual .visual-cta:focus {
  outline: 0.2rem solid #ffffff;
  outline-offset: 0.2rem;
}
#visual .visual-cta:focus-visible {
  outline-color: #00ffc3;
}
#visual .visual-object {
  position: absolute;
  right: 0;
  bottom: -6.6rem;
  z-index: 2;
  width: auto;
  max-width: 52%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.inner,
.layout {
  width: 120rem;
  max-width: calc(100% - 48px);
  margin-left: auto;
  margin-right: auto;
}

#tab {
  width: 100%;
  width: 100vw;
  max-width: 100%;
  background-color: #01174e;
}
#tab ul {
  width: 120rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  height: 7rem;
  overflow-x: hidden;
}
#tab li {
  flex: 1 1 0;
  min-width: 0;
}
#tab a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
  border-radius: 0.8rem 0.8rem 0 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}
#tab a br {
  display: none;
}
#tab a:focus {
  outline: 0.2rem solid #ffffff;
  outline-offset: -0.4rem;
}
#tab a:focus-visible {
  outline-color: #00afef;
}
#tab .is-active a {
  color: #01174e;
  background-color: #ffffff;
}

#contents {
  padding: 7rem 0 15rem;
}

#footer {
  width: 100%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 3.6rem 0 4rem;
  background-color: #1d1d1d;
}
#footer .footer-org {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
#footer .footer-org-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#footer .footer-org-item strong {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
#footer .footer-org-item img {
  display: block;
  width: auto;
  height: auto;
  max-height: 3.3rem;
}
#footer .footer-info {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.03em;
  word-break: keep-all;
}
#footer .footer-info p + p {
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  #visual {
    padding: 5rem 0 4rem;
  }
  #visual .visual-round {
    font-size: 2.8rem;
  }
  #visual .visual-title {
    font-size: 5rem;
  }
  #visual .visual-object {
    max-width: 42%;
  }
  #visual .visual-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  #visual .visual-period-label,
  #visual .visual-period-day {
    font-size: 2rem;
  }
  #visual .visual-period-year {
    font-size: 2.4rem;
  }
  #visual .visual-period-date {
    font-size: 3.2rem;
  }
  #visual .visual-period-sep {
    font-size: 2.8rem;
  }
  #visual .visual-cta {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  #visual {
    padding: 4rem 0 0;
  }
  #visual .visual-inner {
    gap: 2.4rem;
  }
  #visual .visual-round {
    font-size: 2.4rem;
  }
  #visual .visual-title {
    font-size: 5.2rem;
  }
  #visual .visual-period {
    white-space: normal;
  }
  #visual .visual-cta {
    padding: 1.2rem 2.4rem;
    font-size: 2.2rem;
  }
  #visual .visual-cta i {
    font-size: 2rem;
  }
  #visual .visual-object {
    max-width: 80%;
    position: relative;
    bottom: 0;
    margin: 0 auto;
  }
  #visual .visual-head {
    align-items: center;
    text-align: center;
  }
  #visual .visual-foot {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  #visual .visual-period-label {
    display: none;
  }
  #tab a {
    font-size: 2rem;
    white-space: normal;
    word-break: keep-all;
  }
  #tab a br {
    display: inline;
  }
  #footer .footer-org {
    gap: 1.6rem 2.4rem;
  }
  #footer .footer-org-item {
    flex-wrap: wrap;
  }
}
.process {
  display: flex;
  gap: 2.7rem;
  align-items: stretch;
  width: 100%;
  margin-top: 3rem;
  padding: 0;
  list-style: none;
}
.process > li {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  min-width: 0;
}
.process > li + li::before {
  position: absolute;
  top: 9.4rem;
  left: -4.3rem;
  width: 6rem;
  height: 5.3rem;
  background: url("/resources/images/mps/main/process_arr.svg") no-repeat center/contain;
  content: "";
}
.process strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  padding: 0.8rem 1.2rem;
  font-family: var(--ff-tit, "EliceDigitalBaeum");
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  background-color: #083c8b;
  border-radius: 1.3rem 1.3rem 0 0;
}
.process span {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 9rem;
  padding: 2.7rem 1.2rem;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cl-tit, #222222);
  text-align: center;
  background-color: var(--cl-bg, #f7f7f7);
}

.form-head {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.1rem;
}
.form-head .title1 {
  margin: 0;
}

.form-head-hint {
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--cl-sub, #616161);
}

.form-section + .form-section {
  margin-top: 8.9rem;
}

.check-list {
  display: flex;
  gap: 1.5rem 0;
  flex-wrap: wrap;
}
.check-list .form-check {
  width: 33.33%;
  padding-right: 1rem;
  box-sizing: border-box;
}

.agree-item .title2 {
  margin: 0 0 2.1rem;
}
.agree-item + .agree-item {
  margin-top: 6rem;
}

.form-note {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cl-tit-sub4, #ea5520);
  word-break: keep-all;
}

.verify-intro {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 4rem;
  background-color: #f5faff;
  border-radius: 1rem;
}
.verify-icon {
  display: flex;
  flex: 0 0 10.6rem;
  align-items: center;
  justify-content: center;
  width: 10.6rem;
  height: 10.6rem;
  background-color: #ffffff;
  border-radius: 50%;
}
.verify-icon img {
  display: block;
  width: 51.8867924528%;
  height: 51.8867924528%;
  object-fit: contain;
}
.verify-icon.type2 img {
  width: 48.1132075472%;
  height: 42.4528301887%;
}
.verify-title {
  font-family: var(--ff-tit, "EliceDigitalBaeum");
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--cl-tit, #222222);
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.verify-title strong {
  color: #002789;
}
.verify-desc {
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1.4;
  color: var(--cl-label, #424242);
  word-break: keep-all;
}
.verify-form {
  margin-top: 4rem;
}
.verify-form .form-input,
.verify-form .form-select {
  width: 40rem;
  max-width: 100%;
}
.verify-form .form-email {
  flex-wrap: nowrap;
  width: 100%;
}
.verify-form .form-email .form-input,
.verify-form .form-email .form-select {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}
.verify-note {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cl-sub, #616161);
  word-break: keep-all;
}
.verify-box {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
  padding: 4rem 2rem;
  box-sizing: border-box;
  background-color: #f8f8f8;
  border-radius: 1.2rem;
}
.verify-field {
  width: 60rem;
  max-width: 100%;
}
.verify-field-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.verify-field-row .form-input {
  flex: 1 1 auto;
  min-width: 0;
}
.verify-label {
  display: block;
  margin-bottom: 1.5rem;
  padding-left: 0.2rem;
  font-family: var(--ff-tit, "EliceDigitalBaeum");
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--cl-tit, #222222);
  letter-spacing: -0.03em;
  word-break: keep-all;
}
.verify-send {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding: 0 1.6rem 0 1.4rem;
  box-sizing: border-box;
  font-family: var(--ff, var(--ff));
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  background-color: var(--cl-tit, #222222);
  border: 0.1rem solid var(--cl-label, #424242);
  border-radius: 0.8rem;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.verify-send:hover {
  background-color: var(--cl-label, #424242);
}
.verify-send:focus {
  outline: 0.2rem solid var(--cl-focus, #222222);
  outline-offset: 0.2rem;
}
.verify-send:focus-visible {
  outline-color: var(--cl-focus, #005cd4);
}
.verify-box-note {
  width: 60rem;
  max-width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cl-sub, #616161);
  word-break: keep-all;
}
@media (max-width: 768px) {
  .verify-field-row {
    flex-direction: column;
  }
  .verify-send {
    width: 100%;
  }
}

.result-head {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.result-count {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cl-tit, #222222);
}
.result-count .current {
  color: var(--cl-tit-sub4, #ea5520);
}
.result-search {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.result-search .form-input {
  width: 26rem;
  height: 4.8rem;
  border-radius: 0.3rem;
}
.result-search .button {
  width: auto;
  height: 4.8rem;
  padding: 0 2.2rem;
  font-size: 1.6rem;
}
.result-table {
  min-width: 120rem;
}
.result-table th {
  height: 8rem;
}
.result-table td {
  height: 7rem;
  padding: 1.2rem 1rem;
  text-align: center;
}
.result-table .work-title {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  text-align: left;
}
.result-table .work-title a {
  color: var(--cl-tit, #222222);
}
.result-table .work-title a:hover {
  text-decoration: underline;
}
.result-table .work-title a:focus {
  outline: 0.2rem solid var(--cl-focus, #222222);
  outline-offset: 0.2rem;
}
.result-table .work-title a:focus-visible {
  outline-color: var(--cl-focus, #005cd4);
}
.result-table-board {
  min-width: 0;
}
@media (max-width: 1024px) {
  .result-table-board {
    display: block;
    width: 100%;
    border-top: 0;
  }
  .result-table-board thead {
    position: absolute;
    width: 0.1rem;
    height: 0.1rem;
    padding: 0;
    margin: -0.1rem;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
  .result-table-board tbody {
    display: block;
  }
  .result-table-board tr {
    display: block;
    padding: 2rem 2.4rem;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 0.1rem solid #e5e7f0;
    border-radius: 1.2rem;
  }
  .result-table-board tr + tr {
    margin-top: 1.2rem;
  }
  .result-table-board td {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    text-align: left;
    border: 0;
  }
  .result-table-board td::before {
    display: block;
    width: 100%;
    margin-bottom: 0.4rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--cl-label, #424242);
    white-space: pre-line;
    text-wrap: balance;
  }
  .result-table-board td:not(:nth-child(1)):not([colspan]) {
    padding: 1.2rem 0;
    border-bottom: 0.1rem solid #e5e7f0;
  }
  .result-table-board td:not(:nth-child(1)):not([colspan]):last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .result-table-board td:nth-child(1) {
    display: none;
  }
  .result-table-board td:nth-child(2) {
    padding-top: 0;
  }
  .result-table-board td:nth-child(2)::before {
    display: none;
  }
  .result-table-board td:nth-child(3)::before {
    content: "Author (작성자)";
  }
  .result-table-board td:nth-child(4)::before {
    content: "Date (등록일)";
  }
  .result-table-board td:nth-child(5)::before {
    content: "Views (조회수)";
  }
  .result-table-board td:empty::after {
    display: block;
    content: "-";
    color: var(--cl-sub, #616161);
  }
  .result-table-board .work-title {
    padding: 0;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
  }
  .result-table-board .work-title a {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
  }
  .result-table-board .work-title a::after {
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-family: "remixicon";
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    color: var(--cl-label, #424242);
    content: "\ea6c";
  }
  .result-table-board .work-title a:hover {
    text-decoration: underline;
  }
  .result-table-board .work-title a:hover::after {
    color: var(--cl-tit, #222222);
  }
}
.result-table-aply {
  min-width: 0;
}
.result-table-aply td {
  text-wrap: balance;
}
.result-table-aply .cell-period-end,
.result-table-aply .cell-time {
  display: block;
}
.result-table-aply td[colspan] .cell-empty-ko {
  display: block;
}
@media (max-width: 1024px) {
  .result-table-aply {
    display: block;
    width: 100%;
    border-top: 0;
  }
  .result-table-aply thead {
    position: absolute;
    width: 0.1rem;
    height: 0.1rem;
    padding: 0;
    margin: -0.1rem;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
  .result-table-aply tbody {
    display: block;
  }
  .result-table-aply tr {
    display: flex;
    flex-direction: column;
    padding: 2rem 2.4rem;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 0.1rem solid #e5e7f0;
    border-radius: 1.2rem;
  }
  .result-table-aply tr + tr {
    margin-top: 1.2rem;
  }
  .result-table-aply td {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    text-align: left;
    border: 0;
  }
  .result-table-aply td::before {
    display: block;
    width: 100%;
    margin-bottom: 0.4rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--cl-label, #424242);
    white-space: pre-line;
    text-wrap: balance;
  }
  .result-table-aply td:not(:nth-child(1)):not([colspan]) {
    padding: 1.2rem 0;
    border-bottom: 0.1rem solid #e5e7f0;
  }
  .result-table-aply td:not(:nth-child(1)):not([colspan]):last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .result-table-aply td:nth-child(1) {
    display: none;
  }
  .result-table-aply td:nth-child(2) {
    order: 1;
  }
  .result-table-aply td:nth-child(2)::before {
    content: "Submission Category (공모 분야)";
  }
  .result-table-aply td:nth-child(3) {
    order: 2;
  }
  .result-table-aply td:nth-child(3)::before {
    content: "Theme (공모 주제)";
  }
  .result-table-aply td:nth-child(4) {
    order: 0;
    padding-top: 0;
  }
  .result-table-aply td:nth-child(4)::before {
    display: none;
  }
  .result-table-aply td:nth-child(5) {
    order: 3;
  }
  .result-table-aply td:nth-child(5)::before {
    content: "Application Period (접수기간)";
  }
  .result-table-aply td:nth-child(6) {
    order: 4;
  }
  .result-table-aply td:nth-child(6)::before {
    content: "Submission Date and Time (제출일시)";
  }
  .result-table-aply td:empty::after {
    display: block;
    content: "-";
    color: var(--cl-sub, #616161);
  }
  .result-table-aply td[colspan] {
    order: 0;
    padding: 2rem 0;
    text-align: center;
  }
  .result-table-aply td[colspan]::before {
    display: none;
  }
  .result-table-aply .cell-period-end,
  .result-table-aply .cell-time {
    display: inline;
  }
  .result-table-aply td[colspan] .cell-empty-ko {
    display: block;
  }
  .result-table-aply .work-title {
    padding: 0;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
  }
  .result-table-aply .work-title a {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
  }
  .result-table-aply .work-title a::after {
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-family: "remixicon";
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    color: var(--cl-label, #424242);
    content: "\ea6c";
  }
  .result-table-aply .work-title a:hover {
    text-decoration: underline;
  }
  .result-table-aply .work-title a:hover::after {
    color: var(--cl-tit, #222222);
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq > li.type1 {
  padding: 4rem 2rem;
  text-align: center;
  font-size: 1.8rem;
  color: var(--cl-sub, #616161);
}
.faq > li.active .q {
  gap: 2.4rem;
  border-width: 0.3rem;
  border-color: #002789;
}
.faq > li.active .faq-mark-q {
  background-color: #002789;
  color: #ffffff;
}
.faq > li.active .faq-title {
  font-weight: 600;
}
.faq > li.active .faq-title-text {
  overflow: visible;
  white-space: normal;
  word-break: break-word;
}
.faq > li.active .faq-arrow {
  transform: rotate(180deg);
}
.faq .q {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  width: 100%;
  padding: 3.2rem 4rem;
  box-sizing: border-box;
  font: inherit;
  text-align: left;
  background-color: #ffffff;
  border: 0.1rem solid #e5e7f0;
  border-radius: 0.8rem;
  cursor: pointer;
}
.faq .q:focus, .faq .q:focus-visible, .faq .q:active {
  outline: none;
}
.faq-head {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  width: 100%;
}
.faq-mark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 4rem;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.3;
}
.faq-mark-q {
  background-color: #f8f8f8;
  color: #757575;
}
.faq-mark-a {
  background-color: #f8f8f8;
  color: #757575;
  font-size: 1.6rem;
}
.faq-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cl-tit, #222222);
}
.faq-title-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.faq-title .btn_redSmall,
.faq-title span[title],
.faq-title .icon_secret,
.faq-title .icon_new,
.faq-title img {
  margin-right: 0.6rem;
  vertical-align: middle;
}
.faq-arrow {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--cl-tit, #222222);
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.faq .a {
  display: none;
  overflow: hidden;
  width: 100%;
}
.faq-answer {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding-right: 2.4rem;
}
.faq-branch {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.8rem;
  line-height: 1;
  color: #757575;
}
.faq-body {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--cl-sub, #616161);
  word-break: break-word;
  padding-top: 1rem;
}
.faq-body p {
  margin: 0;
}
.faq-body p + p {
  margin-top: 0.8rem;
}
@media (max-width: 768px) {
  .faq .q {
    padding: 2.4rem 2rem;
  }
  .faq-title {
    font-size: 1.6rem;
  }
  .faq-answer {
    padding-right: 0;
  }
}

.board-view-title {
  margin: 0;
  font-family: var(--ff-tit, "EliceDigitalBaeum");
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--cl-tit, #222222);
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.board-view-meta {
  margin-top: 2.1rem;
  border-top: 0.3rem solid var(--cl-tit, #222222);
}
.board-view-meta-list {
  display: flex;
  gap: 2rem 4rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 3rem 2.4rem;
  list-style: none;
  background-color: #f8f8f8;
  border-bottom: 0.1rem solid #e5e7f0;
}
.board-view-meta-item {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.board-view-meta-label {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: #081324;
  word-break: keep-all;
}
.board-view-meta-value {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cl-label, #424242);
  word-break: keep-all;
}
.board-view-body {
  margin: 8rem 0;
  min-height: 32rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cl-label, #424242);
  word-break: keep-all;
}
.board-view-body > * + * {
  margin-top: 1.6rem;
}
.board-view-attach {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 4rem;
  padding: 3.2rem 4rem;
  box-sizing: border-box;
  background-color: #ffffff;
  border: 0.1rem solid #e5e7f0;
  border-radius: 0.8rem;
}
.board-view-attach-label {
  flex-shrink: 0;
  white-space: nowrap;
  padding-top: 0.6rem;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #081324;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.board-view-attach-list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.board-view-attach-item {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.board-view-attach-info {
  display: flex;
  flex: 1 1 auto;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}
.board-view-attach-name {
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cl-label, #424242);
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-view-attach-meta {
  flex-shrink: 0;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #757575;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin-top: 0.15rem;
}
.board-view-attach-down {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 4rem;
  padding: 0 1.6rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--cl-label, #424242);
  text-decoration: none;
  background-color: #ffffff;
  border: 0.1rem solid #e0e0e0;
  border-radius: 0.8rem;
  gap: 0.6rem;
}
.board-view-attach-down i {
  font-size: 1.8rem;
}
.board-view-attach-down:hover {
  background-color: var(--cl-bg, #f7f7f7);
}
.board-view-attach-down:focus, .board-view-attach-down:focus-visible, .board-view-attach-down:active {
  outline: none;
}
.board-view-nav {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 2rem;
  padding: 3.2rem 4rem;
  box-sizing: border-box;
  border: 0.1rem solid #e5e7f0;
  border-radius: 0.8rem;
}
.board-view-nav-row {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.board-view-nav-row + .board-view-nav-row {
  padding-top: 2.4rem;
  border-top: 0.1rem solid #e5e7f0;
}
.board-view-nav-type {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-shrink: 0;
  width: 14.8rem;
  white-space: nowrap;
}
.board-view-nav-icon {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  border-right: 0.2rem solid var(--cl-label, #424242);
  border-bottom: 0.2rem solid var(--cl-label, #424242);
}
.board-view-nav-icon.is-prev {
  transform: rotate(-135deg);
  margin-top: 0.4rem;
}
.board-view-nav-icon.is-next {
  transform: rotate(45deg);
  margin-bottom: 0.4rem;
}
.board-view-nav-label {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #081324;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.board-view-nav-divider {
  flex-shrink: 0;
  width: 0.1rem;
  height: 1.6rem;
  background-color: #e5e7f0;
}
.board-view-nav-text, .board-view-nav-link {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cl-label, #424242);
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.board-view-nav-link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
  text-decoration: none;
}
.board-view-nav-link:hover {
  text-decoration: underline;
}
.board-view-nav-link:focus {
  outline: 0.2rem solid var(--cl-focus, #222222);
  outline-offset: 0.2rem;
}
.board-view-nav-link:focus-visible {
  outline-color: var(--cl-focus, #005cd4);
}
.board-view-nav-text.is-empty {
  color: var(--cl-label, #424242);
}

@media (max-width: 1024px) {
  .process {
    flex-direction: column;
    gap: 1.6rem;
  }
  .process > li + li::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .check-list .form-check {
    width: 100%;
  }
  .verify-intro {
    gap: 1.6rem;
    align-items: flex-start;
    padding: 2.4rem;
  }
  .verify-icon {
    flex: 0 0 6rem;
    width: 6rem;
    height: 6rem;
  }
  .verify-title {
    font-size: 2.2rem;
  }
  .verify-desc {
    font-size: 1.7rem;
  }
  .result-search, .result-search .form-input {
    width: 100%;
  }
  .result-search .button {
    flex-shrink: 0;
  }
  .board-view-body {
    margin-top: 4rem;
    min-height: 20rem;
  }
  .board-view-attach {
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2.4rem 2rem;
  }
  .board-view-attach-label {
    width: auto;
    padding-top: 0;
  }
  .board-view-attach-list {
    width: 100%;
  }
  .board-view-attach-item {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .board-view-attach-info {
    width: 100%;
  }
  .board-view-attach-name {
    white-space: normal;
  }
  .board-view-attach-down {
    width: 100%;
    justify-content: center;
  }
  .board-view-nav {
    margin-top: 4rem;
    padding: 2.4rem 2rem;
  }
  .board-view-nav:has(.is-empty) .board-view-nav-row + .board-view-nav-row {
    padding-top: 0;
    border-top: none;
  }
  .board-view-nav-row {
    gap: 1.2rem 2.4rem;
  }
  .board-view-nav-row:has(.is-empty) {
    display: none;
  }
}
.board_pager {
  margin-top: 4rem;
  text-align: center;
}
.board_pager > a {
  display: inline-block;
  overflow: hidden;
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  vertical-align: middle;
  font-size: 2rem;
}
.board_pager > a[class*=prev] {
  position: absolute;
  left: 0;
}
.board_pager > a[class*=prev]::before {
  font-family: "remixicon";
  content: "\ea64";
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  line-height: inherit;
}
.board_pager > a[class*=next] {
  position: absolute;
  right: 0;
}
.board_pager > a[class*=next]::before {
  font-family: "remixicon";
  content: "\ea6e";
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  line-height: inherit;
}
.board_pager > a {
  position: static !important;
  border-radius: 100%;
  border: 1px solid var(--bdc);
}
.board_pager img {
  vertical-align: top;
}
.board_pager .group {
  margin: 0 1rem;
}
.board_pager .group > a {
  display: inline-block;
  position: relative;
  width: 8rem;
  text-align: center;
  vertical-align: middle;
}
.board_pager .group > a:first-child::after, .board_pager .group > a:last-child::before {
  position: absolute;
  top: 0;
  width: 4rem;
  content: "···";
  opacity: 0.5;
}
.board_pager .group > a.disable {
  display: none;
}
.board_pager .group > a:first-child {
  padding-right: 4rem;
}
.board_pager .group > a:first-child::after {
  right: 0;
}
.board_pager .group > a:last-child {
  padding-left: 4rem;
}
.board_pager .group > a:last-child::before {
  left: 0;
}
.board_pager .group:first-child:last-child > a {
  width: 4rem;
  padding: 0;
}
.board_pager .group:first-child:last-child > a::before, .board_pager .group:first-child:last-child > a::after {
  display: none;
}
.board_pager .item, .board_pager > span {
  margin: 0 1rem;
}
.board_pager .item a, .board_pager > span a {
  display: inline-block;
  overflow: hidden;
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  vertical-align: middle;
  border-radius: 100%;
}
.board_pager .item .active, .board_pager > span .active {
  background-color: #000;
  color: #fff;
}
.board_pager + .board_btns {
  position: relative;
  height: 0;
  margin-top: 0;
}
.board_pager + .board_btns .btn_m {
  position: absolute;
  right: 0;
  bottom: 0;
}