@charset "UTF-8";
.bg-btn-primary {
  background-color: #256EF4;
}
.bg-btn-primary:hover {
  background-color: #0B50D0;
}

.bg-btn-secondary {
  background-color: #ECF2FE;
}
.bg-btn-secondary:hover {
  background-color: #D8E5FD;
}

.bg-btn-tertiary {
  background-color: #ffffff;
}
.bg-btn-tertiary:hover {
  background-color: #f0f0f0;
}

.bg-btn-disabled {
  background-color: #CDD1D5;
}
.bg-btn-black {
  background-color: #222222;
}
.bg-badge-primary {
  background-color: #8C006E;
}
.bg-badge-secondary {
  background-color: #063A74;
}
.bg-badge-tertiary {
  background-color: #6D7882;
}
.bg-badge-point {
  background-color: #D63D4A;
}
.bg-badge-danger {
  background-color: #DE3412;
}
.bg-badge-warning {
  background-color: #FFB114;
}
.bg-badge-success {
  background-color: #228738;
}
.bg-badge-info {
  background-color: #0B78CB;
}
.bg-badge-search {
  background-color: #FFF2FC;
}
.textcolor-basic {
  color: #1E2124;
}

.textcolor-subtle {
  color: #464C53;
}

.textcolor-bolder {
  color: #131416;
}

.textcolor-primary {
  color: #0B50D0;
}

.textcolor-secondary {
  color: #052b57;
}

.textcolor-information {
  color: #096AB3;
}

.textcolor-sedonary_dark {
  color: #374058;
}

.textcolor-danger {
  color: #BD2C0F;
}

.textcolor-body_secondary {
  color: #444;
}

.textcolor-sg {
  color: #A50082;
}

.textcolor-static {
  color: #1E2124;
}

.textcolor-disabled {
  color: #B1B8BE;
}

.box {
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 12px;
  color: #1E2124;
  font-size: 19px;
}

.ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  overflow: hidden;
  width: 24px;
  height: 24px;
}
.ico::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
}
.ico.ico-location::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_location.svg);
}
.ico.ico-tel::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_tel.svg);
}
.ico.ico-homepage::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_homepage.svg);
}
.ico.ico-open-new::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_open-new.svg);
}
.ico.ico-go::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_go.svg);
}
.ico.ico-link::after {
  background-image: url(/humanframe/theme/apply/assets/images/ico/ico_open-new.svg);
}
.ico.ico-user::after {
  background-image: url(/humanframe/theme/portal/assets/images/ico/ico_user.svg);
}
.ico.ico-emotion {
  width: 20px;
  height: 20px;
  content: "";
  display: inline-block;
}
.ico.ico-emotion::before {
  background-image: url(/humanframe/theme/portal/assets/images/ico/ico_emotion.svg);
}

.box-basic-wrap {
  padding: clamp(12px, 8px + 2vw, 40px);
}

.dl-type {
  --col-dt-width: 200px;
}
@media only screen and (max-width: 47.99em) {
  .dl-type {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 22.5em) {
  .dl-type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.dl-type dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 29.99em) {
  .dl-type dt {
    -ms-flex-preferred-size: clamp(120px, 40%, var(--col-dt-width));
        flex-basis: clamp(120px, 40%, var(--col-dt-width));
  }
}
.dl-type dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.radio-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.radio-type > input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.checkbox-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.checkbox-type.is-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox-type > input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.ridio-group-col,
.radio-group-col,
.check-group-col,
.checkbox-group-col,
.field-group-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: flex;
  gap: 24px;
  row-gap: 16px;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ridio-group-col.inline > div,
.radio-group-col.inline > div,
.check-group-col.inline > div,
.checkbox-group-col.inline > div,
.field-group-col.inline > div {
  width: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.ridio-group-col.cols2 > div,
.radio-group-col.cols2 > div,
.check-group-col.cols2 > div,
.checkbox-group-col.cols2 > div,
.field-group-col.cols2 > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc((100% - 24px) / 2);
          flex: 1 1 calc((100% - 24px) / 2);
}
@media only screen and (max-width: 47.99em) {
  .ridio-group-col.cols2 > div,
  .radio-group-col.cols2 > div,
  .check-group-col.cols2 > div,
  .checkbox-group-col.cols2 > div,
  .field-group-col.cols2 > div {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.ridio-group-col.cols3 > div,
.radio-group-col.cols3 > div,
.check-group-col.cols3 > div,
.checkbox-group-col.cols3 > div,
.field-group-col.cols3 > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc((100% - 48px) / 3);
          flex: 1 1 calc((100% - 48px) / 3);
}
@media only screen and (max-width: 47.99em) {
  .ridio-group-col.cols3 > div,
  .radio-group-col.cols3 > div,
  .check-group-col.cols3 > div,
  .checkbox-group-col.cols3 > div,
  .field-group-col.cols3 > div {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.dl-type.is-input dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.dl-type.is-input dd .ridio-group-col,
.dl-type.is-input dd .radio-group-col,
.dl-type.is-input dd .check-group-col,
.dl-type.is-input dd .checkbox-group-col,
.dl-type.is-input dd .field-group-col {
  padding: 16px 0;
}
.dl-type:not(.is-input) dt > span {
  color: #AB2B36;
  margin-left: 4px;
}

.form-hint {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  font-size: clamp(8px, 6px + 1.3vw, 13px);
  color: #096AB3;
  font-weight: 400;
  margin-top: 10px;
}
.form-hint i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  width: 16px;
  height: 18px;
}
.form-hint i::before {
  content: "";
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 100%;
  background-image: url(/humanframe/theme/apply/assets/images/ico/ico_hint.svg);
}
.form-hint > p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: 1.4;
}
.form-hint span {
  color: #464C53;
}

.form-hint2 {
  font-size: clamp(8px, 6px + 1.3vw, 13px);
}
.form-hint2.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form-hint2.flex .total-num {
  min-width: 100px;
  margin: 0;
}

.form-tip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  font-size: clamp(8px, 6px + 1.3vw, 13px);
  color: #267337;
  font-weight: 400;
}
.form-tip i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  width: 16px;
  height: 18px;
}
.form-tip i::before {
  content: "";
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 100%;
  background-image: url(/humanframe/theme/apply/assets/images/ico/ico_file_check.svg);
  background-repeat: no-repeat;
}
.form-tip > p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: 1.4;
}

.input-tel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 640px;
  max-width: 100%;
}
.input-tel-wrap:has(.btn-wrap) {
  width: 100%;
}
.input-tel-wrap .form-wrap:has(.select-control) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30.6451612903%;
          flex: 0 0 30.6451612903%;
}
.input-tel-wrap .form-wrap:has(.select-control) .select-control {
  min-width: 100px;
}
.input-tel-wrap .form-wrap:has(> input) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.dl-type.text-large.is-input:has(.input-tel-wrap, .checkbox-type) dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
.dl-type.text-large.is-input:has(.input-tel-wrap, .checkbox-type) dd .btn-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  white-space: nowrap;
}
@media only screen and (max-width: 29.99em) {
  .dl-type.text-large.is-input:has(.input-tel-wrap, .checkbox-type) dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dl-type.text-large.is-input:has(.input-tel-wrap, .checkbox-type) dd .btn-wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
    margin-top: 8px;
  }
}

.input-visiter-wrap {
  width: 480px;
  max-width: 100%;
}
.input-visiter-wrap .form-wrap .select-control {
  width: 100%;
  min-width: 100px;
}

.post-wrap {
  max-width: 100%;
}

.form-question {
  display: inline-block;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  font-weight: 600;
  color: #096AB3;
}

.dl-type.is-input dd:has(.form-question) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 29.99em) {
  .dl-type.is-input dd:has(.form-question) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}

.radio-wrap,
.radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.radio-wrap.cols,
.radio-group.cols {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.radio-wrap.rows,
.radio-group.rows {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.btn-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  justify-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 47.99em) {
  .btn-list-wrap {
    gap: 10px;
  }
}
@media only screen and (max-width: 20em) {
  .btn-list-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.btn-list-wrap a,
.btn-list-wrap button {
  height: 100%;
}
.btn-list-wrap .left-element {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-list-wrap .right-element {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.radio-wrap.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.dl-type {
  margin-top: 24px;
}
.dl-type + .dl-type {
  margin-top: 16px;
}
.dl-type.mt0 {
  margin-top: 0;
}
.dl-type.is-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dl-type.is-col dd {
  margin-top: 0;
}
.dl-type.is-col + .text-large {
  margin-top: 40px;
}
.dl-type.text-large + .dl-type {
  margin-top: 40px;
}
@media only screen and (max-width: 29.99em) {
  .dl-type.text-large + .dl-type {
    margin-top: 16px;
  }
}
.dl-type.text-large dt {
  width: auto;
}
.dl-type.text-large dt span {
  color: #ab2b36;
}
.dl-type.is-input dd {
  margin-top: 8px;
}
.dl-type.is-col-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
.dl-type.is-col-input + .is-col-input {
  margin-top: 16px;
}
@media only screen and (max-width: 47.99em) {
  .dl-type.is-col-input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.dl-type.is-col-input dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 200px;
  margin-top: 4px;
}
@media only screen and (max-width: 47.99em) {
  .dl-type.is-col-input dt {
    width: 100%;
  }
}
.dl-type.is-col-input dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-top: 0;
}
.dl-type.is-col-input dd.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media only screen and (max-width: 47.99em) {
  .dl-type.is-col-input dd.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.dl-type.is-col-input dd.flex .form-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dl-type.is-col-input dd.flex .form-wrap label {
  min-width: 100px;
  font-size: 15px;
}
@media only screen and (max-width: 47.99em) {
  .dl-type.is-col-input dd.flex .form-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.dl-type dt {
  width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 17px;
  color: #1e2124;
  font-weight: 700;
}
.dl-type dd {
  margin-top: 24px;
  font-size: 17px;
}
.dl-type dd.is-child {
  margin-left: 24px;
  margin-top: 16px;
}

.form-wrap:has(.input-unit) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.form-wrap:has(.input-unit) .input-unit {
  white-space: nowrap;
}

.post-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.post-wrap .post-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 640px;
}
.post-wrap .post-head .form-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post-wrap .post-body .form-wrap + .form-wrap {
  margin-top: 10px;
}

.content-body .tab:first-child {
  margin-top: 0;
}

.content-top-info .info-list li:last-child {
  margin-bottom: 0;
}

.form-next-guide {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  border-radius: 12px;
  background-color: #EEF2F7;
  border: 1px solid #D6E0EB;
  padding: clamp(20px, 10px + 2.5vw, 40px);
  margin-bottom: 24px;
}
.form-next-guide.is-active {
  border: 1px solid #D6E0EB;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 29.99em) {
  .form-next-guide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.form-next-guide .guide-txt {
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  color: #1E2124;
}
.form-next-guide .btn-normal {
  word-break: keep-all;
  word-wrap: break-word;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.form-row-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  background-color: #F4F5F6;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.form-guide {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  margin-bottom: 20px;
  line-height: 1.6;
}

.form-label {
  color: #464C53;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 600;
  margin-right: 4px;
  white-space: nowrap;
}

.form-input,
.form-select {
  width: 160px;
  height: 48px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #58616A;
  font-size: 14px;
}

.form-unit {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
  white-space: nowrap;
}

.form-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 96px;
  height: 48px;
  border: none;
  border-radius: 4px;
  background-color: #222;
  padding: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}
.form-button:hover {
  background-color: #000;
}
.form-button:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.radio-wrap.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.form-row-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  background-color: #F4F5F6;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.form-guide {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  margin-bottom: 20px;
  line-height: 1.6;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form-row > label {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
  min-width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form-row .select-control {
  min-width: 200px;
  padding-right: 24px;
}
.form-row .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.form-row .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form-row .input-group .form-select {
  height: 48px;
  padding: 8px 12px;
  border: 1px solid #B1B8BE;
  border-radius: 4px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  background-color: #fff;
  min-width: 200px;
}
.form-row .input-group .form-select::-webkit-input-placeholder {
  opacity: 0.5;
}
.form-row .input-group .form-select::-moz-placeholder {
  opacity: 0.5;
}
.form-row .input-group .form-select:-ms-input-placeholder {
  opacity: 0.5;
}
.form-row .input-group .form-select::-ms-input-placeholder {
  opacity: 0.5;
}
.form-row .input-group .form-select::placeholder {
  opacity: 0.5;
}
.form-row .input-group .lot-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.form-row .input-group .lot-input-group .lot-input {
  width: 120px;
  height: 48px;
  padding: 8px 12px;
  border: 1px solid #B1B8BE;
  border-radius: 4px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  background-color: #fff;
}
.form-row .input-group .lot-input-group .lot-input::-webkit-input-placeholder {
  opacity: 0.5;
}
.form-row .input-group .lot-input-group .lot-input::-moz-placeholder {
  opacity: 0.5;
}
.form-row .input-group .lot-input-group .lot-input:-ms-input-placeholder {
  opacity: 0.5;
}
.form-row .input-group .lot-input-group .lot-input::-ms-input-placeholder {
  opacity: 0.5;
}
.form-row .input-group .lot-input-group .lot-input::placeholder {
  opacity: 0.5;
}
.form-row .input-group .lot-input-group .hyphen {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
}
.form-row .input-group .btn-search {
  height: 48px;
  padding: 8px 24px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
  cursor: pointer;
}
.form-row .input-group .btn-search:hover {
  opacity: 0.9;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  min-width: 160px;
}
.form-field .form-input {
  min-width: auto;
  width: 160px;
}

.form-label {
  color: #464C53;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 600;
  margin-right: 4px;
  white-space: nowrap;
}

.form-input,
.form-select {
  min-width: 160px;
  height: 48px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #58616A;
  font-size: 14px;
}

.form-unit {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
  white-space: nowrap;
}

.form-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 96px;
  height: 48px;
  border: none;
  border-radius: 4px;
  background-color: #222;
  padding: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}
.form-button:hover {
  background-color: #000;
}
.form-button:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.form-row-wrap.is-center .form-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
}

.number-input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.number-input-wrap .form-wrap {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.number-input-wrap .form-wrap::after {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  display: block;
  content: "-";
  position: absolute;
  right: -25px;
  top: 15px;
  z-index: 1;
}
.number-input-wrap .form-wrap:last-child::after {
  display: none;
}

.address-search-wrap {
  margin-bottom: 24px;
}
.address-search-wrap .form-row .form-select {
  width: 160px;
}

.address-search-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 200px;
  background-color: #fff;
  border: 1px solid #CDD1D5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.chart-container {
  position: relative;
}
.chart-container canvas {
  display: block;
}
.chart-container .chart-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.chart-container .chart-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.chart-container .chart-center-text .score {
  font-size: clamp(24px, 10px + 4.4vw, 44px);
  font-weight: 700;
  color: #0B50D0;
  line-height: 1;
}
.chart-container .chart-center-text .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  color: #B1B8BE;
  white-space: nowrap;
}
.chart-container .chart-center-text .label i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* 바 차트 CSS 애니메이션 */
@-webkit-keyframes barFillAnimation {
  from {
    width: 0%;
  }
  /* to는 인라인 스타일의 width 값으로 자동 설정됨 */
}
@keyframes barFillAnimation {
  from {
    width: 0%;
  }
  /* to는 인라인 스타일의 width 값으로 자동 설정됨 */
}
.bar-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 6px;
  background-color: #cdd1d5;
  border-radius: 4px;
}
.bar-wrapper .bar-fill {
  height: 100%;
  background: #A50082;
  border-radius: 4px;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  -webkit-animation: barFillAnimation 1s ease-out forwards;
          animation: barFillAnimation 1s ease-out forwards;
}

.survey-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.survey-question .question-number {
  font-size: 17px;
  font-weight: 700;
  color: #1e2124;
  margin-right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.survey-question .question-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 17px;
  color: #1e2124;
  line-height: 1.6;
}

.survey-form-wrap {
  background-color: #FFFFFF;
  padding: clamp(20px, 10px + 2.5vw, 40px);
  border-radius: 10px;
  border: 1px solid #e5e8eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 29.99em) {
  .survey-form-wrap {
    padding: clamp(10px, 8px + 2vw, 20px);
    gap: 0;
  }
}
.survey-form-wrap .survey-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 29.99em) {
  .survey-form-wrap .survey-item {
    padding: clamp(8px, 6px + 1.2vw, 12px);
    gap: 16px;
  }
}
.survey-form-wrap .survey-question {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.survey-form-wrap .survey-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 29.99em) {
  .survey-form-wrap .survey-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}
.survey-form-wrap .survey-head .btn-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media only screen and (max-width: 29.99em) {
  .survey-form-wrap .survey-head .btn-wrap {
    width: 100%;
  }
}
.survey-form-wrap .survey-head .btn-wrap .btn {
  white-space: nowrap;
}
.survey-form-wrap .survey-answer {
  background-color: #F4F5F6;
  padding: clamp(10px, 8px + 2vw, 20px);
  border-radius: 10px;
}
@media only screen and (max-width: 29.99em) {
  .survey-form-wrap .survey-answer .radio-group-col.inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.survey-result-wrap {
  margin-top: 40px;
}
.survey-result-wrap h3 {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  font-weight: 700;
  color: #1e2124;
}
.survey-result-wrap .result-summary-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: clamp(20px, 10px + 2.5vw, 40px);
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #CDD1D5;
}
@media only screen and (max-width: 63.99em) {
  .survey-result-wrap .result-summary-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.survey-result-wrap .result-summary-box .result-chart {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.survey-result-wrap .result-summary-box .result-chart .chart-container {
  max-width: 360px;
  margin: 0 auto;
}
.survey-result-wrap .result-summary-box .result-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.survey-result-wrap .result-summary-box .result-info .result-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.survey-result-wrap .result-summary-box .result-info .result-title strong {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #1E2124;
}
.survey-result-wrap .result-summary-box .result-info .result-title .score-text {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  font-weight: 700;
  color: #096AB3;
}
.survey-result-wrap .result-summary-box .result-info .result-grade {
  margin-bottom: 20px;
}
.survey-result-wrap .result-summary-box .result-info .result-grade .grade-text {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  color: #1E2124;
}
.survey-result-wrap .result-summary-box .result-info .result-grade .grade-text .grade-type {
  font-weight: 700;
  color: #096AB3;
}
.survey-result-wrap .result-summary-box .result-info .result-description .description-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 20px;
  background-color: #EEF2F7;
  border-radius: 10px;
}
.survey-result-wrap .result-summary-box .result-info .result-description .description-box .ico.ico-user {
  width: 32px;
  height: 32px;
}
.survey-result-wrap .result-summary-box .result-info .result-description .description-box .ico.ico-user::before {
  background-image: url(/humanframe/theme/portal/assets/images/ico/ico_user.svg);
}
.survey-result-wrap .result-summary-box .result-info .result-description .description-box .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.survey-result-wrap .result-summary-box .result-info .result-description .description-box .text p {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #131416;
}
.survey-result-wrap .result-summary-box .result-info .result-description .description-box .text p + p {
  margin-top: 12px;
}
.survey-result-wrap .result-detail-section h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e2124;
  margin-bottom: 20px;
}

.board-survey-wrap {
  margin-top: 40px;
  background-color: #FFFFFF;
  padding: clamp(20px, 10px + 2.5vw, 40px);
  border-radius: 10px;
  border: 1px solid #e5e8eb;
}

.board-survey-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.board-survey-item-list .board-survey-item .board-survey-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}
.board-survey-item-list .board-survey-item .board-survey-question .question-number {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
  color: #131416;
  margin-right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.board-survey-item-list .board-survey-item .board-survey-question p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #1E2124;
  line-height: 1.6;
}
.board-survey-item-list .board-survey-item .board-survey-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F4F5F6;
  padding: 0 clamp(12px, 8px + 2.4vw, 24px);
  border-radius: 10px;
}
.board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: clamp(12px, 8px + 2.4vw, 24px) 0;
  border-bottom: 1px solid #fff;
}
.board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item:last-child {
  border-bottom: 0;
}
@media only screen and (max-width: 47.99em) {
  .board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item .answer-input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 280px;
}
@media only screen and (max-width: 47.99em) {
  .board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item .answer-input {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: auto;
  }
}
.board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item .answer-value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 120px;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  font-weight: 700;
  color: #052b57;
}
@media only screen and (max-width: 47.99em) {
  .board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item .answer-value {
    text-align: right;
  }
}
@media only screen and (max-width: 29.99em) {
  .board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item .answer-value {
    width: 100%;
    text-align: left;
  }
}
.board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item .answer-value .value-bar {
  color: #0B50D0;
}
.board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item .answer-value .value-sum {
  color: #1E2124;
}
.board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item .answer-chart-bar {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media only screen and (max-width: 47.99em) {
  .board-survey-item-list .board-survey-item .board-survey-answer .board-survey-answer-item .answer-chart-bar {
    width: 100%;
  }
}

.survey-table-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.survey-table-wrap .survey-table-subtitle {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
  color: #131416;
  padding: 10px 0;
}
.survey-table-wrap .survey-table-subtitle.highlight {
  color: #BD2C0F;
}
.survey-table-wrap .survey-bullet-list {
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
  list-style: none;
}
.survey-table-wrap .survey-bullet-list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 8px;
  color: #1E2124;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  line-height: 1.8;
}
.survey-table-wrap .survey-bullet-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #464C53;
}
.survey-table-wrap .survey-table thead {
  background: #F4F5F6;
}
.survey-table-wrap .survey-table thead th {
  padding: 12px 10px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  color: #131416;
  border-bottom: 1px solid #CDD1D5;
}
.survey-table-wrap .survey-table thead th:not(:last-child) {
  border-right: 1px solid #CDD1D5;
}
.survey-table-wrap .survey-table tbody tr:nth-child(odd) {
  background: #FFFFFF;
}
.survey-table-wrap .survey-table tbody tr td {
  padding: 15px;
  border-bottom: 1px solid #E8EAEC;
}
.survey-table-wrap .survey-table tbody tr td:not(:last-child) {
  border-right: 1px solid #E8EAEC;
}
.survey-table-wrap .survey-table tbody tr td.text-center {
  text-align: center;
  vertical-align: middle;
}
.survey-table-wrap .survey-table .survey-table-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.survey-table-wrap .survey-table .survey-table-question .question-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 22px;
  height: 22px;
  border: 1px solid #CDD1D5;
  border-radius: 50%;
  font-size: clamp(8px, 6px + 1.3vw, 13px);
  font-weight: 600;
  color: #131416;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.survey-table-wrap .survey-table .survey-table-question .question-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  color: #1E2124;
  line-height: 1.6;
}
@media only screen and (max-width: 29.99em) {
  .survey-table-wrap .survey-table thead th {
    padding: 10px 8px;
    font-size: clamp(8px, 6px + 1.3vw, 13px);
  }
  .survey-table-wrap .survey-table tbody td {
    padding: 12px 10px;
  }
  .survey-table-wrap .survey-table .survey-table-question .question-number {
    min-width: 20px;
    height: 20px;
    font-size: 11px;
  }
  .survey-table-wrap .survey-table .survey-table-question .question-text {
    font-size: clamp(8px, 6px + 1.3vw, 13px);
  }
  .survey-table-wrap .survey-table .radio-wrap .radio-type input[type=radio] {
    width: 18px;
    height: 18px;
  }
}

.survey-question-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 29.99em) {
  .survey-question-answer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}
.survey-question-answer .question {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.survey-question-answer .question .question-number {
  font-size: 17px;
  font-weight: 700;
  color: #1e2124;
  margin-right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.survey-question-answer .question .question-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 17px;
  color: #1e2124;
  line-height: 1.6;
}
.survey-table-title {
  background-color: #D6E0EB;
  border-bottom: 1px solid #D6E0EB;
  margin: 0;
  padding: 16px 20px;
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  font-weight: 700;
  color: #464C53;
}

.survey-table {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.survey-table-group {
  padding: 0;
}
.survey-table-group.highlight .survey-table-head {
  color: #DE3412;
}
.survey-table-head {
  background-color: #F4F5F6;
  border-bottom: 1px solid #CDD1D5;
  border-bottom: 1px solid #CDD1D5;
  padding: 8px 20px;
  color: #131416;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  font-weight: 700;
}
.survey-table-body {
  background-color: #FFFFFF;
}

.survey-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.survey-item-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #CDD1D5;
}
@media only screen and (max-width: 47.99em) {
  .survey-item-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
.survey-item-list > li > .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  color: #1E2124;
}
.survey-item-list > li > .value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  font-weight: 600;
}
@media only screen and (max-width: 47.99em) {
  .survey-item-list > li > .value {
    width: 100%;
    padding: 16px 20px;
  }
}
.survey-item-list > li > .value .checkbox-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.survey-item-list > li > .value:has(.radio-group-col) {
  width: 300px;
}
@media only screen and (max-width: 47.99em) {
  .survey-item-list > li > .value:has(.radio-group-col) {
    width: 100%;
  }
}
@media only screen and (max-width: 47.99em) {
  .survey-item-list > li > .value:has(.radio-group-col).cols3 .radio-group-col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.survey-item-list > li > .value:has(.radio-group-col).cols3 .radio-group-col > div,
.survey-item-list > li > .value:has(.radio-group-col).cols3 .radio-group-col .radio-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc((100% - 48px) / 3);
          flex: 1 1 calc((100% - 48px) / 3);
}
@media only screen and (max-width: 47.99em) {
  .survey-item-list > li > .value:has(.radio-group-col).cols3 .radio-group-col > div,
  .survey-item-list > li > .value:has(.radio-group-col).cols3 .radio-group-col .radio-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.survey-item-list > li > .value:has(.radio-group-col).cols3 .radio-group-col > div .radio-type,
.survey-item-list > li > .value:has(.radio-group-col).cols3 .radio-group-col .radio-wrap .radio-type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.content-top-box {
  border: 1px solid #B1B8BE;
  border-radius: 10px;
  background-color: #fff !important;
  padding: clamp(20px, 10px + 2.5vw, 40px);
}
@media only screen and (max-width: 29.99em) {
  .content-top-box {
    padding: clamp(10px, 8px + 2vw, 20px);
  }
}
.content-top-box .start-guide {
  border-bottom: 0;
  margin-bottom: 24px;
}
.content-top-box .start-guide i {
  display: inline-block;
  overflow: hidden;
}
.content-top-box .start-guide i.ico-guide {
  width: 60px;
  height: 60px;
  display: block;
  background: #F4F5F6 url(/humanframe/theme/portal/assets/images/ico/ico_book_edu.svg) no-repeat center center;
  border-radius: 50%;
}
.content-top-box .start-guide strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 24px;
  color: #131416;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 12px 0 12px 0;
}

.process {
  background-color: #fff;
}

.board-view-table .table-line dl dd {
  background-color: #FFF;
}

.paper-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.paper-foot .paper-date {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
}
.paper-foot .paper-org {
  font-size: clamp(20px, 10px + 4vw, 40px);
  font-weight: 700;
  color: #1E2124;
}

.agree-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #F4F5F6;
  border: 1px solid #CDD1D5;
  border-radius: 12px;
  padding: clamp(20px, 10px + 2.5vw, 40px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.agree-box .checkbox-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn.disabled {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.textcolor-basic {
  color: #1E2124;
}

.textcolor-subtle {
  color: #464C53;
}

.textcolor-bolder {
  color: #131416;
}

.textcolor-primary {
  color: #0B50D0;
}

.textcolor-secondary {
  color: #052b57;
}

.textcolor-information {
  color: #096AB3;
}

.textcolor-sedonary_dark {
  color: #374058;
}

.textcolor-danger {
  color: #BD2C0F;
}

.textcolor-body_secondary {
  color: #444;
}

.textcolor-sg {
  color: #A50082;
}

.textcolor-static {
  color: #1E2124;
}

.textcolor-disabled {
  color: #B1B8BE;
}

.textsize-body_xsmall {
  font-size: 13px;
}

.textsize-body_small {
  font-size: 15px;
}

.textsize-body_medium {
  font-size: 17px;
}

.textsize-body_large {
  font-size: 19px;
}

.textsize-label_xsmall {
  font-size: 13px;
}

.textsize-label_small {
  font-size: 15px;
}

.textsize-label_medium {
  font-size: 17px;
}

.textsize-heading_small {
  font-size: 15px;
}

.textsize-heading_xsmall {
  font-size: 17px;
}

.textsize-heading_medium {
  font-size: 24px;
}

.textsize-heading_large {
  font-size: 32px;
}

.textsize-heading_xlarge {
  font-size: 40px;
}

.textsize-display_large {
  font-size: 44px;
}

.bgcolor-gray-subtler {
  background-color: #F4F5F6;
}

.bgcolor-secondary-subtler {
  background-color: #EEF2F7;
}

.bgcolor-information-subtler {
  background-color: #E7F4FE;
}

.bgcolor-information-lighter {
  background-color: #E7F4FE;
}

.bgcolor-danger-subtler {
  background-color: #FDEFEC;
}

.bgcolor-surface-white-subtle {
  background-color: #FFFFFF;
}

.bdcolor-secondary-light {
  border-color: #D6E0EB;
  border-style: solid;
  border-width: 1px;
}

.bdcolor-information-light {
  border-color: #B3D4F5;
  border-style: solid;
  border-width: 1px;
}

.bdcolor-danger-light {
  border-color: #F5C6BB;
  border-style: solid;
  border-width: 1px;
}

.bdcolor-gray-subtle {
  border-color: #E8EAEC;
  border-style: solid;
  border-width: 1px;
}

.bdcolor-input-border {
  border-color: #58616A;
  border-style: solid;
  border-width: 1px;
}

.bdcolor-gray {
  border-color: #B1B8BE;
  border-style: solid;
  border-width: 1px;
}

.bdcolor-gray-light {
  border-color: #CDD1D5;
  border-style: solid;
  border-width: 1px;
}

.bdcolor-gray-darker {
  border-color: #1e2124;
  border-style: solid;
  border-width: 1px;
}

.bdcolor-primary {
  border-color: #A50082;
  border-style: solid;
  border-width: 1px;
}

.bdcolor-error {
  border-color: #DE3412;
  border-style: solid;
  border-width: 1px;
}

.bdcolor-inverse {
  border-color: #fff;
  border-style: solid;
  border-width: 1px;
}

.gap-1 {
  gap: 2px;
}

.gap-2 {
  gap: 4px;
}

.gap-3 {
  gap: 8px;
}

.gap-4 {
  gap: 12px;
}

.gap-5 {
  gap: 16px;
}

.gap-6 {
  gap: 20px;
}

.gap-7 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.gap-9 {
  gap: 36px;
}

.gap-10 {
  gap: 40px;
}

.gap-11 {
  gap: 48px;
}

.radius-medium1 {
  border-radius: 7px;
}

.radius-medium4 {
  border-radius: 8px;
}

.radius-large1 {
  border-radius: 10px;
}

.radius-large2 {
  border-radius: 10px;
}

.radius-xlarge2 {
  border-radius: 12px;
}

.radius-small2 {
  border-radius: 4px;
}

.radius-small1 {
  border-radius: 4px;
}

.color-primary {
  color: #A50082;
}

.color-primary-active {
  color: #083891;
}

.color-secondary {
  color: #052B57;
}

.color-information {
  color: #096AB3;
}

.color-danger {
  color: #E74C3C;
}

.color-gray-dark {
  color: #4A5677;
}

.color-gray {
  color: #8F8F8F;
}

.color-gray-light {
  color: #CDD1D5;
}

.color-disabled-light {
  color: #cdd1d5;
}

.color-icon-primary {
  color: #0B50D0;
}

.history-wrap {
  padding: 0;
  border: none;
}
@media only screen and (max-width: 47.99em) {
  .history-wrap {
    padding: 0 20px 0 64px;
  }
}
.history-wrap::after {
  top: 16px;
  left: 245px;
}
@media only screen and (max-width: 47.99em) {
  .history-wrap::after {
    left: 29px;
    top: 10px;
    bottom: 65px;
  }
}
.history-wrap ul li {
  gap: 100px;
}
@media only screen and (max-width: 47.99em) {
  .history-wrap ul li {
    gap: 0;
  }
}
.history-wrap ul li::after {
  width: 15px;
  height: 15px;
  top: 6px;
  left: 238px;
  background-color: #256EF4;
  border-color: #CEDCF5;
  border-width: 4px;
}
@media only screen and (max-width: 47.99em) {
  .history-wrap ul li::after {
    left: -42px;
  }
}
.history-wrap ul li .year {
  width: 208px;
  font-size: 19px;
  margin: 0;
}
@media only screen and (max-width: 47.99em) {
  .history-wrap ul li .year {
    width: 100%;
  }
}
.history-wrap ul li .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}

.open {
  height: 303px;
  overflow: hidden;
}
.open.active {
  height: auto;
}

.policy-table a {
  display: block;
}
.policy-table img {
  width: 70px;
  margin-bottom: 10px;
}
.policy-table .p-lb-bx {
  display: block;
  position: relative;
  padding: 15px 8px;
}
.policy-table .p-lb-bx > i {
  display: block;
}
.policy-table .p-lb-bx > p {
  display: inline-block;
  border-bottom: 3px solid transparent;
}
.policy-table .p-lb-bx:hover > p, .policy-table .p-lb-bx:focus > p {
  border-color: #1d87ca;
}
.policy-table .p-lb-bx:hover .p-lb-hdn, .policy-table .p-lb-bx:focus .p-lb-hdn {
  display: block;
}
.policy-table .p-lb-bx .p-lb-hdn {
  display: none;
  position: absolute;
  left: -30px;
  right: -30px;
  top: 100%;
  margin-top: -6px;
  z-index: 1;
  border-radius: 12px;
  -webkit-box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}
.policy-table .p-lb-bx .p-lb-hdn > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 42px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  line-height: 18px;
  padding: 3px 15px;
  background: #1d87ca;
  border-radius: 12px 12px 0 0;
}
.policy-table .p-lb-bx .p-lb-hdn > dd {
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #1d87ca;
  text-align: left;
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  color: #222;
}
.policy-table .p-lb-bx .p-lb-hdn > dd p {
  font-weight: 400;
  font-size: inherit;
  color: inherit;
}
.policy-table .p-lb-bx .p-lb-hdn > dd > *:first-child {
  margin-top: 0;
}
.policy-table .p-lb-bx .p-lb-hdn > dd > * + * {
  margin-top: 10px;
}
.policy-table .p-lb-bx .p-lb-hdn > dd .lk {
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  color: #333;
  line-height: 20px;
  padding: 4px 10px;
  background: #f5f5f5;
  border: 1px solid #d9e4f9;
  border-radius: 4px;
}

.policy-table2 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 47.99em) {
  .policy-table2 p {
    display: block;
  }
}
.policy-table2 p strong {
  width: 60px;
}
.policy-table2 img {
  width: 40px;
  margin-right: 4px;
}
@media only screen and (max-width: 47.99em) {
  .policy-table2 img {
    display: block;
    margin: 0 0 8px 0;
  }
}

.h3-text {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 47.99em) {
  .h3-text {
    font-size: 17px;
  }
}

.mark-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media only screen and (max-width: 47.99em) {
  .mark-img {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
}
.mark-img .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  height: 240px;
  border: 1px solid #B1B8BE;
  border-radius: 12px;
}
@media only screen and (max-width: 47.99em) {
  .mark-img .img {
    width: 100%;
  }
}
.mark-img .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mark-img .text dl dt {
  font-size: 19px;
  font-weight: 700;
}
.mark-img .text dl dd {
  margin-top: 16px;
}
@media only screen and (max-width: 47.99em) {
  .mark-img .text dl dd {
    margin-top: 8px;
  }
  .mark-img .text dl dd br {
    display: none;
  }
}
.mark-img .text .btn-wrap {
  margin-top: 24px;
}
.mark-img .text .btn-wrap a {
  width: auto;
}
.mark-img .text .normal-type.dot {
  margin-top: 0;
}
.mark-img + .img-line {
  margin-top: 24px;
}
.mark-img.type2 .img {
  width: 397px;
  height: 210px;
}
@media only screen and (max-width: 47.99em) {
  .mark-img.type2 .img {
    width: 100%;
  }
}

.symbol-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 48px;
}
@media only screen and (max-width: 47.99em) {
  .symbol-list {
    gap: 16px;
  }
}
.symbol-list li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
}
@media only screen and (max-width: 29.99em) {
  .symbol-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 8px);
            flex: 0 0 calc(50% - 8px);
  }
}
.symbol-list li p {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media only screen and (max-width: 29.99em) {
  .symbol-list li p {
    font-size: 17px;
  }
}
.symbol-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 120px;
  border: 1px solid #B1B8BE;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.symbol-list li a::after {
  content: "";
  width: 34px;
  height: 34px;
  background: url(/humanframe/theme/portal/assets/images/ico/ico_download_white.svg) no-repeat center #CDD1D5;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 12px 0 0 0;
}
.symbol-list li:hover a::after {
  background-color: #083891;
}

.symbol-color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 29.99em) {
  .symbol-color {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.symbol-color li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 29.99em) {
  .symbol-color li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
}
.symbol-color li .color {
  margin-bottom: 6px;
  height: 42px;
  border-radius: 4px;
}
.symbol-color li .color.color1 {
  background-color: #A50082;
}
.symbol-color li .color.color2 {
  background-color: #7057A3;
}
.symbol-color li .color.color3 {
  background-color: #77005E;
}
.symbol-color li .color.color4 {
  background-color: #3E3A39;
}
.symbol-color li .color.color5 {
  background-color: #3E3A39;
}
.symbol-color li .color.color6 {
  background-color: #B5B6B6;
}
.symbol-color li dl dt {
  font-size: 15px;
  font-weight: 700;
  word-break: break-all;
}
.symbol-color li dl dd {
  font-size: 13px;
  color: #464C53;
  margin-top: 12px;
}

.citySong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 47.99em) {
  .citySong {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .citySong .btn-wrap {
    text-align: right;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .citySong .btn-wrap a {
    width: auto;
  }
}

.city-animal h4 {
  position: relative;
}
.city-animal h4::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.city-animal h4 span {
  position: relative;
  z-index: 2;
}
.city-animal h4.line1::before {
  background-color: #FFEEF7;
}
.city-animal h4.line1 strong {
  color: #A50082;
}
.city-animal h4.line2::before {
  background-color: #FFF7C9;
}
.city-animal h4.line2 strong {
  color: #9E6A00;
}
.city-animal h4.line3::before {
  background-color: #DFFAFF;
}
.city-animal h4.line3 strong {
  color: #256EF4;
}
@media only screen and (max-width: 47.99em) {
  .city-animal .img-flex {
    display: block;
  }
  .city-animal .img-flex img {
    width: 100%;
  }
}
.city-animal .normal-type li {
  padding-left: 44px;
}
@media only screen and (max-width: 47.99em) {
  .city-animal .normal-type li {
    padding-left: 40px;
  }
}
.city-animal .normal-type li strong {
  position: absolute;
  top: 0;
  left: 0;
}
.city-animal .board-wrap .board-body .gallery-type .text > dl > dt {
  height: auto;
}

.minwon-organ {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 47.99em) {
  .minwon-organ {
    margin: 10px 0;
  }
}

.badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 15px;
  background-color: #E7F4FE;
  padding: 2px 8px;
  border-radius: 4px;
}

.img-text-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.img-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 8px + 2vw, 40px);
}
@media only screen and (max-width: 29.99em) {
  .img-text-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.img-text-wrap .title {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
}
.img-text-wrap .img-wrap {
  display: block;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 350px;
          flex: 1 1 350px;
  height: 254px;
  padding-bottom: 1.3779527559;
  border: 1px solid;
  border-color: #B1B8BE;
  border-radius: 8px;
  position: relative;
}
@media only screen and (max-width: 29.99em) {
  .img-text-wrap .img-wrap {
    width: 100%;
    height: auto;
    padding-bottom: 30%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.img-text-wrap .img-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 29.99em) {
  .img-text-wrap .img-wrap img {
    width: 50%;
  }
}
.img-text-wrap .text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: calc(70% - 16px);
}
@media only screen and (max-width: 29.99em) {
  .img-text-wrap .text-wrap {
    width: 100%;
  }
}

.content-img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 47.99em) {
  .content-img-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.content-img-list + .content-img-list {
  margin-top: 20px;
}
.content-img-list .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  height: 254px;
  border: 1px solid #B1B8BE;
  border-radius: 12px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 30px;
}
@media only screen and (max-width: 47.99em) {
  .content-img-list .img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    height: 170px;
  }
}
.content-img-list ul {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.content-img-list .btn-wrap {
  margin-top: 16px;
  text-align: right;
}

.program-list p {
  background-color: #063A74;
  text-align: center;
  font-weight: 700;
  color: #fff;
  padding: 23px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.program-list p span {
  color: #FFB114;
}
.program-list .step-list > ul > li > .tit {
  color: #0B50D0;
}
.program-list .step-list > ul > li > .tit span {
  color: #1E2124;
}
.program-list .step-list > ul > li > .text {
  padding: 16px;
}

.language-list > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media only screen and (max-width: 29.99em) {
  .language-list > ul {
    gap: 16px;
  }
}
.language-list > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
  border: 1px solid #B1B8BE;
  border-radius: 12px;
  padding: 32px;
}
@media only screen and (max-width: 47.99em) {
  .language-list > ul > li {
    padding: 16px;
  }
}
@media only screen and (max-width: 29.99em) {
  .language-list > ul > li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding: 16px;
  }
}
.language-list > ul > li .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
.language-list > ul > li dl {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}
.language-list > ul > li dl dt {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 29.99em) {
  .language-list > ul > li dl dt {
    font-size: 20px;
  }
}
.language-list > ul > li dl dd {
  font-weight: 700;
  margin-top: 17px;
}
.language-list > ul > li dl dd span {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: #464C53;
}
.language-list > ul > li .btn-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  text-align: right;
}
.language-list.committee > ul > li {
  padding: 0;
  background-color: #fff;
  gap: 22px;
  overflow: hidden;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media only screen and (max-width: 47.99em) {
  .language-list.committee > ul > li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.language-list.committee > ul > li .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
  background-color: #E7F4FE;
  position: relative;
}
.language-list.committee > ul > li .img img {
  position: absolute;
  left: 0;
  bottom: 0;
}
.language-list.committee > ul > li dl {
  padding: 28px 22px 28px 0;
}
@media only screen and (max-width: 47.99em) {
  .language-list.committee > ul > li dl {
    padding: 16px;
  }
}

.manifesto {
  border: 1px solid #B1B8BE;
  border-radius: 12px;
  padding: 32px 28px;
}
@media only screen and (max-width: 47.99em) {
  .manifesto {
    padding: 24px;
  }
}
.manifesto .manifesto-box {
  border: 3px solid #D3EBFD;
  border-radius: 12px;
  padding: 0 21px 43px;
  position: relative;
}
.manifesto .manifesto-box::after {
  content: "";
  width: 60px;
  height: 60px;
  background: url(/humanframe/theme/portal/assets/images/content/manifesto_bg.png) no-repeat 0 0;
  position: absolute;
  top: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.manifesto .top {
  padding-bottom: 42px;
  margin-bottom: 34px;
  border-bottom: 1px dashed #B1B8BE;
}
.manifesto .top dl dt {
  font-size: 24px;
  color: #0B50D0;
  font-weight: 700;
  text-align: center;
  padding: 72px 0 30px;
}
@media only screen and (max-width: 47.99em) {
  .manifesto .top dl dt {
    font-size: 20px;
  }
}
.manifesto .top dl dd {
  border-radius: 8px;
  background-color: #F4F5F6;
  padding: 16px 16px 16px 48px;
  background-repeat: no-repeat;
  background-position: 20px center;
  background-image: url(/humanframe/theme/portal/assets/images/ico/ico_manifesto.svg);
}
.manifesto .top dl dd + dd {
  margin-top: 16px;
}
.manifesto .bottom {
  text-align: center;
}
.manifesto .bottom dl dt {
  font-size: 19px;
  color: #0B50D0;
  font-weight: 700;
}
@media only screen and (max-width: 47.99em) {
  .manifesto .bottom dl dt {
    font-size: 17px;
  }
}
.manifesto .bottom dl dd {
  font-size: 19px;
  color: #000;
  margin-top: 8px;
}
@media only screen and (max-width: 47.99em) {
  .manifesto .bottom dl dd {
    font-size: 17px;
  }
}

.protect-list {
  border-radius: 12px;
  background: -webkit-gradient(linear, right bottom, left top, from(#E3E8F4), to(#F4F5FA));
  background: linear-gradient(to top left, #E3E8F4, #F4F5FA);
  padding: 80px 60px;
  margin-top: 16px;
}
@media only screen and (max-width: 47.99em) {
  .protect-list {
    padding: 40px 24px;
  }
}
.protect-list dl dt {
  font-size: 32px;
  font-weight: 700;
  color: #256EF4;
  text-align: center;
}
@media only screen and (max-width: 47.99em) {
  .protect-list dl dt {
    font-size: 24px;
  }
}
.protect-list dl dd {
  color: #464C53;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #CDD1D5;
  margin-top: 32px;
}
@media only screen and (max-width: 47.99em) {
  .protect-list dl dd {
    padding: 24px;
    margin-top: 24px;
    font-size: 15px;
  }
}
.protect-list ul {
  margin-top: 50px;
}
@media only screen and (max-width: 47.99em) {
  .protect-list ul {
    margin-top: 30px;
  }
}
.protect-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #464C53;
  word-break: keep-all;
}
@media only screen and (max-width: 47.99em) {
  .protect-list ul li {
    font-size: 15px;
  }
}
.protect-list ul li + li {
  margin-top: 30px;
}
@media only screen and (max-width: 47.99em) {
  .protect-list ul li + li {
    margin-top: 20px;
  }
}
.protect-list ul li strong {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 19px;
  color: #fff;
  background-color: #096AB3;
  border-radius: 50%;
}
.protect-list ul li span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.main-minwon .tit {
  position: relative;
}
.main-minwon section {
  padding: 64px 0 0;
}
.main-minwon section:first-child {
  padding: 0;
}
.main-minwon .submain-minwon1 .board-search {
  margin: 0;
}
.main-minwon .submain-minwon1 .board-search .info-find .info-category ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 32px) / 3);
          flex: 0 0 calc((100% - 32px) / 3);
  min-width: auto;
}
.main-minwon .submain-minwon2 .minwon-wait {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #F4F5F6;
  border: 1px solid #CDD1D5;
  border-radius: 12px;
  padding: 40px;
}
@media only screen and (max-width: 47.99em) {
  .main-minwon .submain-minwon2 .minwon-wait {
    padding: 24px;
  }
}
.main-minwon .submain-minwon2 .minwon-wait .list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  border-radius: 12px;
  padding: 16px 24px;
}
@media only screen and (max-width: 47.99em) {
  .main-minwon .submain-minwon2 .minwon-wait .list {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.main-minwon .submain-minwon2 .minwon-wait .list .box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
  padding: 0;
  border: none;
  border-radius: 0;
}
@media only screen and (max-width: 63.99em) {
  .main-minwon .submain-minwon2 .minwon-wait .list .box {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .tit h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .tit .badge-wrap span.ing {
  color: #096AB3;
  background-color: #D8E5FD;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .tit .badge-wrap span.end {
  color: #fff;
  background-color: #A50082;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel {
  padding: 8px 24px;
  border-radius: 4px;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel.passport-list {
  background-color: #FDEFEC;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel.minwon-list {
  background-color: #E7F4FE;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel dl dt {
  font-size: 15px;
  font-weight: 700;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel dl dd {
  color: #6D7882;
  font-weight: 700;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel dl dd strong {
  font-size: 24px;
  margin-right: 10px;
  color: #A50082;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel dl:nth-child(2) {
  margin-top: 4px;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel dl:nth-child(2) dt {
  font-size: 17px;
  color: #6D7882;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel dl:nth-child(2) dt span {
  color: #0B50D0;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box .personnel dl:nth-child(2) dd strong {
  color: #096AB3;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box:last-child {
  border-top: 1px solid #ddd;
  padding-top: 11px;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box:last-child dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 10px;
  text-align: right;
}
@media only screen and (max-width: 63.99em) {
  .main-minwon .submain-minwon2 .minwon-wait .list .box:last-child dl {
    width: 100%;
  }
}
.main-minwon .submain-minwon2 .minwon-wait .list .box:last-child dl dt {
  font-size: 13px;
  color: #6D7882;
  font-weight: 700;
}
@media only screen and (max-width: 63.99em) {
  .main-minwon .submain-minwon2 .minwon-wait .list .box:last-child dl dt {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 150px;
            flex: 1 1 150px;
  }
}
.main-minwon .submain-minwon2 .minwon-wait .list .box:last-child dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #096AB3;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box:last-child .update {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_reset.svg) no-repeat center;
  background-color: #fff;
  border: 1px solid #B1B8BE;
  border-radius: 50%;
}
@media only screen and (max-width: 63.99em) {
  .main-minwon .submain-minwon2 .minwon-wait .list .box:last-child .update {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 32px;
            flex: 1 1 32px;
  }
}
.main-minwon .submain-minwon2 .minwon-wait .list .box.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 63.99em) {
  .main-minwon .submain-minwon2 .minwon-wait .list .box.flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.main-minwon .submain-minwon2 .minwon-wait .list .box.flex .link-text.large {
  font-size: 17px;
  color: #000;
}
.main-minwon .submain-minwon2 .minwon-wait .list .box.flex .link-text span {
  border: none;
}

.milage-wrap {
  padding: 40px;
  border: 1px solid #e5e8eb;
  border-radius: 12px;
}
@media only screen and (max-width: 47.99em) {
  .milage-wrap {
    padding: 20px;
  }
}
.milage-wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #CDD1D5;
}
.milage-wrap ul li:first-child {
  padding: 0px 0 15px 0;
}
.milage-wrap ul li:last-child {
  padding: 15px 0 0px 0;
  border: 0;
}
.milage-wrap ul li .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.milage-wrap ul li .name span {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fafafa;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.milage-wrap ul li .name {
  font-size: 17px;
  color: #1e2124;
}
.milage-wrap ul li .score {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.milage-wrap ul li.active .name span {
  color: #fff;
  background-color: #256EF4;
}
.milage-wrap ul li.active .score {
  color: #222;
  font-weight: 700;
}

@media only screen and (max-width: 29.99em) {
  #sitelink {
    width: 100%;
    margin-top: -16px;
  }
}

.min_yes {
  background: url(/humanframe/theme/portal/assets/images/ico/Disabled_yes.png) no-repeat;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
}

.merit .step-list > ul > li {
  width: calc((100% - 80px) / 3);
}

.mileage-wrap {
  padding: 40px;
  border: 1px solid #e5e8eb;
  border-radius: 12px;
}
@media only screen and (max-width: 47.99em) {
  .mileage-wrap {
    padding: 20px;
  }
}
.mileage-wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #CDD1D5;
}
.mileage-wrap ul li:first-child {
  padding: 0 0 15px 0;
}
.mileage-wrap ul li:last-child {
  padding: 15px 0 0 0;
  border: 0;
}
.mileage-wrap ul li .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
  color: #1e2124;
}
.mileage-wrap ul li .name span {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fafafa;
}
.mileage-wrap ul li .score {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mileage-wrap ul li.active .name span {
  color: #fff;
  background-color: #256EF4;
}
.mileage-wrap ul li.active .score {
  color: #222;
  font-weight: 700;
}

.board-table-head .total {
  margin-bottom: 24px;
}

.update-time-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
  color: #666;
  margin-bottom: 16px;
  padding: 16px 24px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.update-time-wrap > span {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
}
.update-time-wrap .update-time {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #096AB3;
}
.update-time-wrap .refresh {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 40px;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  padding: 8px 12px;
  border: 1px solid #d1d1d1;
  border-radius: 7px;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  line-height: 1;
}
.update-time-wrap .refresh::after {
  content: url("/humanframe/theme/portal/assets/images/ico/ico_refresh.svg");
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 29.99em) {
  .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cards .card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #CDD1D5;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cards .card .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  color: #1E2124;
  font-weight: 700;
  border-bottom: 1px solid #ddd;
}
.cards .card .numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  border-top: 1px solid #ddd;
}
.cards .card .numbers .number-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  width: 50%;
  text-align: center;
}
.cards .card .numbers .number-box .label {
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  color: #999;
}
.cards .card .numbers .number-box .value {
  font-size: clamp(20px, 10px + 4vw, 40px);
  font-weight: 700;
  color: #333;
  line-height: 1;
}
.cards .card .numbers .number-box .value.highlight {
  font-size: clamp(20px, 10px + 4vw, 40px);
  font-weight: 700;
}
.cards .card .queue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.cards .card .queue i {
  width: 24px;
  height: 24px;
}
.cards .card .queue i img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.cards .card .queue {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
}
.cards .card .queue strong {
  font-weight: 700;
  font-size: clamp(16px, 10px + 3.2vw, 32px);
}
.cards .card.minwon .queue {
  background-color: #FDEFEC;
}
.cards .card.rental .numbers .number-box .value.highlight {
  color: #096AB3;
}
.cards .card.rental .queue {
  background-color: #E7F4FE;
}
.cards .card.rental .queue strong {
  color: #096AB3;
}

/* 민원 접수 - 분홍색 */
.minwon .highlight {
  color: #d6006c;
}

/* 임대사업등록 - 파란색 */
.rental .highlight {
  color: #0078d7;
}

.queue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FDEFEC;
  gap: 2px;
  padding: 8px;
  font-size: 12px;
  color: #666;
}
.queue i {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 4px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
}
.queue strong {
  margin-left: 2px;
  font-weight: bold;
}

.promo-books-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 8px + 2vw, 40px);
  padding: 2.4rem 0;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
}
@media only screen and (max-width: 22.5em) {
  .promo-books-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.promo-books-cover {
  width: 260px;
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media only screen and (max-width: 22.5em) {
  .promo-books-cover {
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.promo-books-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-style: solid;
  border-width: 1px;
  border-color: #CDD1D5;
  border-radius: 8px;
}
.promo-books-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
}
.promo-books-title {
  font-size: clamp(16px, 10px + 3.2vw, 32px);
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.promo-books-desc {
  margin: 0 0 1.6rem;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #666;
}
.promo-books-meta {
  margin: 0 0 1.6rem;
}
.promo-books-meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.4rem;
}
.promo-books-meta-label {
  width: 4rem;
  font-size: 17px;
  color: #888;
}
.promo-books-meta-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 17px;
  color: #333;
}
.promo-books-audio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.8rem;
  font-size: 17px;
  color: #333;
}
.promo-books-audio-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.4rem;
  border-radius: 50%;
  position: relative;
}
.promo-books-audio-icon::before {
  content: url(/humanframe/theme/portal/assets/images/ico/ico_audio.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-40%, -50%);
          transform: translate(-40%, -50%);
}
.promo-books-chapter-list {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.promo-books-chapter-item + .promo-books-chapter-item {
  border-top: 1px solid #eee;
}
.promo-books-chapter-button {
  width: 100%;
  padding: 0.8rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.promo-books-chapter-button:hover .promo-books-chapter-title {
  text-decoration: underline;
}
.promo-books-chapter-index {
  font-size: 17px;
  color: #999;
  min-width: 2.4rem;
}
.promo-books-chapter-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 17px;
  color: #333;
}
.promo-books-chapter-download {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #bbb;
  position: relative;
}
.promo-books-chapter-download::before, .promo-books-chapter-download::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #666;
}
.promo-books-chapter-download::before {
  top: 4px;
  width: 2px;
  height: 6px;
}
.promo-books-chapter-download::after {
  top: 8px;
  width: 6px;
  height: 2px;
}
.promo-books-actions {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.4rem;
}
@media only screen and (max-width: 47.99em) {
  .promo-books-actions {
    position: relative;
    right: auto;
    top: auto;
    background-color: #F4F5F6;
    padding: 16px 20px;
  }
  .promo-books-actions .btn-normal {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
}
.promo-books-link {
  font-size: 17px;
  color: #333;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.promo-books-link::after {
  content: "›";
  font-size: 1.2rem;
}
.promo-books-link:hover {
  text-decoration: underline;
}
.promo-books-link-download::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #999;
  margin-right: 0.1rem;
}

.btn-ebook {
  padding-right: 26px;
  background-image: url(/humanframe/theme/portal/assets/images/ico/ico_ebook.svg);
}

.terms-wrap .terms-body {
  padding: 24px;
  border: 1px solid #b1b8be;
  border-radius: 12px;
}
.terms-wrap .terms-body h5 {
  margin: 0px 0 16px;
}
.terms-wrap .terms-body .inner {
  height: 140px;
  overflow-y: auto;
}
.terms-wrap .terms-body .inner ol {
  padding-left: 28px;
}
.terms-wrap .terms-body .inner ol + h5 {
  margin-top: 20px;
}
.terms-wrap .terms-body .inner ol.is-style-none {
  padding-left: 0px;
}
.terms-wrap .terms-body .inner ol.is-style-none li {
  list-style-type: none;
}
.terms-wrap .terms-body .inner ol.is-style-none li strong {
  color: #131416;
  font-size: 17px;
}
.terms-wrap .terms-body .inner ol.is-style-none li ol {
  padding-left: 10px;
}
.terms-wrap .terms-body .inner ol > li {
  list-style-type: decimal;
  font-size: 17px;
  color: #1e2124;
}
.terms-wrap .terms-body .inner ol > li + li {
  margin-top: 10px;
}
.terms-wrap .terms-body .inner ol > li ul li {
  margin-top: 1.2rem;
}
.terms-wrap .terms-foot {
  background: #e6e8ea;
  padding: 24px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.terms-wrap .terms-foot .left-element {
  font-size: 1.7rem;
  color: #1e2124;
}
@media only screen and (max-width: 47.99em) {
  .terms-wrap .terms-foot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}

.program-list > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.program-list > ul > li {
  width: 100%;
}

.program-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.program-file .file-name {
  font-size: 15px;
}

.data-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F4F5F6;
  gap: 16px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #CDD1D5;
  padding: 24px;
  padding: 24px 24px 24px 24px;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .data-box {
    padding: 20px 20px 20px 20px;
  }
}
.data-box .program-name {
  font-weight: 700;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.data-box .program-manager {
  font-size: 15px;
}
.data-box .num {
  font-size: 17px;
  font-weight: 700;
}
.data-box .text {
  width: 100%;
}
.data-box .program-file {
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
}
@media only screen and (max-width: 47.99em) {
  .data-box .program-file {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
}
.data-box .program-file .file-name {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
}
.data-box .program-file .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 47.99em) {
  .data-box .program-file .btn-wrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.program-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F4F5F6;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .program-unit {
    padding: 20px;
  }
}
.program-unit .program-name {
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.program-unit .program-manager {
  font-size: 15px;
}
.program-unit .num {
  font-size: 17px;
  font-weight: 700;
}
.program-unit .text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.mayors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(12px + 0.5vw);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: flex;
  flex-wrap: wrap;
  gap: calc(12px + 0.5vw);
}
.mayors > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - (12px + 0.5vw) * (3 - 1)) / 3);
          flex: 0 0 calc((100% - (12px + 0.5vw) * (3 - 1)) / 3);
}
@media only screen and (max-width: 47.99em) {
  .mayors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: calc(12px + 0.5vw);
  }
  .mayors > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - (12px + 0.5vw) * (2 - 1)) / 2);
            flex: 0 0 calc((100% - (12px + 0.5vw) * (2 - 1)) / 2);
  }
}
@media only screen and (max-width: 29.99em) {
  .mayors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: calc(12px + 0.5vw);
  }
  .mayors > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - (12px + 0.5vw) * (1 - 1)) / 1);
            flex: 0 0 calc((100% - (12px + 0.5vw) * (1 - 1)) / 1);
  }
}
.mayors .mayor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
}
.mayors .mayor-photo {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
}
.mayors .mayor-photo img {
  width: 100% !important;
  height: auto !important;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.mayors .mayor-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 10px;
  padding: 0;
}
.mayors .mayor-info > span {
  display: block;
  padding: 0 20px;
}
.mayors .mayor-worked {
  display: block;
  padding: 0 20px;
}
.mayors .mayor-name {
  display: block;
  padding: 0 20px;
  font-size: clamp(16px, 16px + 2vw, 32px);
}
.mayors .mayor-desc {
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: 10px 20px;
}
.mayors .mayor-desc.now {
  background-color: #E7F4FE;
  font-weight: bold;
}

.plan-list {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #B1B8BE;
}
.plan-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media only screen and (max-width: 63.99em) {
  .plan-list dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
}
.plan-list dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  border-radius: 6px;
  margin-right: 22px;
}
@media only screen and (max-width: 63.99em) {
  .plan-list dl dt {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin: 0;
    padding: 10px;
  }
}
@media only screen and (max-width: 29.99em) {
  .plan-list dl dt {
    font-size: 17px;
  }
}
.plan-list dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  border-radius: 6px;
  border: 1px solid;
  margin-left: 8px;
}
@media only screen and (max-width: 63.99em) {
  .plan-list dl dd {
    margin-left: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
}
@media only screen and (max-width: 29.99em) {
  .plan-list dl dd {
    font-size: 15px;
  }
}
.plan-list dl dd:nth-of-type(1) {
  margin-left: 0;
}
.plan-list dl:nth-child(1) dt {
  font-size: 24px;
  background-color: #256EF4;
}
@media only screen and (max-width: 29.99em) {
  .plan-list dl:nth-child(1) dt {
    font-size: 19px;
  }
}
.plan-list dl:nth-child(1) dd {
  font-weight: 700;
  color: #096AB3;
  background-color: #E2F7FF;
  border-color: #256EF4;
  padding: 25px;
  line-height: 120%;
}
.plan-list dl:nth-child(1) dd strong {
  display: block;
  font-size: 32px;
  color: #052B57;
}
@media only screen and (max-width: 29.99em) {
  .plan-list dl:nth-child(1) dd strong {
    font-size: 24px;
  }
}
.plan-list dl:nth-child(2) {
  margin-top: 12px;
}
.plan-list dl:nth-child(2) dt {
  background-color: #228738;
}
.plan-list dl:nth-child(2) dd {
  border-color: #228738;
  background-color: #FEFFEE;
  font-size: 13px;
  padding: 17px 5px;
  color: #267337;
  font-weight: 700;
  position: relative;
}
.plan-list dl:nth-child(2) dd::after {
  content: "";
  width: 2px;
  height: 12px;
  background-color: #E0E0E0;
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.plan-list dl:nth-child(2) dd strong {
  display: block;
  font-size: 17px;
}
.plan-list dl:nth-child(3) {
  padding-top: 154px;
  background: url(/humanframe/theme/portal/assets/images/content/vision_plan.png) no-repeat top center/100% 152px;
}
@media only screen and (max-width: 63.99em) {
  .plan-list dl:nth-child(3) {
    padding-top: 12px;
    background-image: none;
  }
}
.plan-list dl:nth-child(3) dt {
  height: 80px;
  background-color: #063A74;
}
@media only screen and (max-width: 63.99em) {
  .plan-list dl:nth-child(3) dt {
    height: auto;
  }
}
.plan-list dl:nth-child(3) dd {
  background-color: #F4F5F6;
  border-color: #B1B8BE;
  padding: 24px 15px;
}
@media only screen and (max-width: 29.99em) {
  .plan-list dl:nth-child(3) dd {
    padding: 16px 8px;
  }
}
.plan-list dl:nth-child(3) dd ul {
  margin: 8px 0 8px 16px !important;
}
.plan-list dl:nth-child(3) dd ul li {
  font-size: 15px;
  color: #1E2124;
}
@media only screen and (max-width: 29.99em) {
  .plan-list dl:nth-child(3) dd ul li {
    font-size: 13px;
  }
}
.plan-list dl:nth-child(3) dd ul li::after {
  width: 4px;
  top: 10px;
  left: -13px;
}
.plan-list dl:nth-child(3) dd ul li + li {
  margin-top: 16px;
}
.plan-list .graph-list {
  margin-top: 27px;
  padding-top: 27px;
  border-top: 2px dashed #DEDEDE;
}
.plan-list .graph-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 63.99em) {
  .plan-list .graph-list ul {
    gap: 24px;
  }
}
.plan-list .graph-list ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 120px) / 4);
          flex: 0 0 calc((100% - 120px) / 4);
}
@media only screen and (max-width: 63.99em) {
  .plan-list .graph-list ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 72px) / 4);
            flex: 0 0 calc((100% - 72px) / 4);
  }
}
@media only screen and (max-width: 29.99em) {
  .plan-list .graph-list ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
}

.monitor-register {
  padding: 24px;
}
.monitor-register.center {
  text-align: center;
}
.monitor-register dl {
  margin-bottom: 24px;
}
.monitor-register dl dt {
  font-weight: 700;
  font-size: 19px;
}
.monitor-register dl dd {
  margin-top: 16px;
}

.title-wrap:has(.btn-wrap), .title-wrap:has(.accordion-btn) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.visual-wrap {
  position: relative;
  margin-top: 24px;
}

.bmi-section,
.bodyfat-section {
  margin-bottom: 48px;
}

.bmi-title,
.bodyfat-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.bmi-chart,
.bodyfat-chart {
  margin-bottom: 24px;
}
.bmi-chart .chart-labels-top,
.bodyfat-chart .chart-labels-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-left: 42px;
  margin-bottom: 16px;
}
.bmi-chart .chart-labels-top .label-btn,
.bodyfat-chart .chart-labels-top .label-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.bmi-chart .chart-labels-top .label-btn.label-underweight,
.bodyfat-chart .chart-labels-top .label-btn.label-underweight {
  background-color: #21398c;
}
.bmi-chart .chart-labels-top .label-btn.label-normal,
.bodyfat-chart .chart-labels-top .label-btn.label-normal {
  background-color: #0069cf;
}
.bmi-chart .chart-labels-top .label-btn.label-overweight,
.bodyfat-chart .chart-labels-top .label-btn.label-overweight {
  background-color: #8c218c;
}
.bmi-chart .chart-labels-top .label-btn.label-obese,
.bodyfat-chart .chart-labels-top .label-btn.label-obese {
  background-color: #d92020;
}
.bmi-chart .chart-container,
.bodyfat-chart .chart-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 174px;
  gap: 12px;
  margin-top: 40px;
}
.bmi-chart .chart-container .chart-y-axis,
.bodyfat-chart .chart-container .chart-y-axis {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 30px;
  line-height: 1;
}
.bmi-chart .chart-container .chart-y-axis .y-axis-value,
.bodyfat-chart .chart-container .chart-y-axis .y-axis-value {
  margin-top: -8px;
  font-size: 15px;
  text-align: right;
  line-height: 1;
}
.bmi-chart .chart-container .chart-y-axis .y-axis-value:last-of-type,
.bodyfat-chart .chart-container .chart-y-axis .y-axis-value:last-of-type {
  opacity: 0;
}
.bmi-chart .chart-container .chart-bars,
.bodyfat-chart .chart-container .chart-bars {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 12px;
}
.bmi-chart .chart-container .chart-bars .chart-grid,
.bodyfat-chart .chart-container .chart-bars .chart-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.bmi-chart .chart-container .chart-bars .chart-grid,
.bodyfat-chart .chart-container .chart-bars .chart-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bmi-chart .chart-container .chart-bars .line-x,
.bodyfat-chart .chart-container .chart-bars .line-x {
  position: relative;
  height: 1px;
}
.bmi-chart .chart-container .chart-bars .line-x::before,
.bodyfat-chart .chart-container .chart-bars .line-x::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, #000 0, #000 3px, transparent 2px, transparent 3px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  opacity: 0.5;
}
.bmi-chart .chart-container .chart-bars .line-x:last-of-type,
.bodyfat-chart .chart-container .chart-bars .line-x:last-of-type {
  opacity: 0;
}
.bmi-chart .chart-container .chart-bars .bar-column,
.bodyfat-chart .chart-container .chart-bars .bar-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.bmi-chart .chart-container .chart-bars .bar-column .bar-fill,
.bodyfat-chart .chart-container .chart-bars .bar-column .bar-fill {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bmi-chart .chart-container .chart-bars .bar-column .bar-fill::before,
.bodyfat-chart .chart-container .chart-bars .bar-column .bar-fill::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 20px;
  z-index: 0;
  opacity: 0.2;
  min-height: 40px;
  border-radius: 8px 8px 0 0;
}
.bmi-chart .chart-container .chart-bars .bar-column .bar-fill .bar-text,
.bodyfat-chart .chart-container .chart-bars .bar-column .bar-fill .bar-text {
  position: absolute;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-underweight .bar-fill,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-underweight .bar-fill {
  height: calc(74% - 10px);
  margin-bottom: 0;
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-underweight .bar-fill::before,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-underweight .bar-fill::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#1c2093), to(#c3c5ff));
  background: linear-gradient(180deg, #1c2093 0%, #c3c5ff 100%);
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-underweight .bar-fill .bar-text,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-underweight .bar-fill .bar-text {
  top: 45%;
  color: #21398c;
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-normal .bar-fill,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-normal .bar-fill {
  height: calc(91.6% - 10px);
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-normal .bar-fill::before,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-normal .bar-fill::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#005bad), to(#ddefff));
  background: linear-gradient(180deg, #005bad 0%, #ddefff 100%);
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-normal .bar-fill .bar-text,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-normal .bar-fill .bar-text {
  top: 28%;
  color: #0069cf;
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-overweight .bar-fill,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-overweight .bar-fill {
  height: calc(99.6% - 10px);
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-overweight .bar-fill::before,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-overweight .bar-fill::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#a02ca2), to(#fff2ff));
  background: linear-gradient(180deg, #a02ca2 0%, #fff2ff 100%);
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-overweight .bar-fill .bar-text,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-overweight .bar-fill .bar-text {
  top: 34%;
  color: #8c218c;
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-obese .bar-fill,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-obese .bar-fill {
  height: calc(100% + 30px);
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-obese .bar-fill::before,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-obese .bar-fill::before {
  top: -30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#dd1c1d), to(#ffd4d4));
  background: linear-gradient(180deg, #dd1c1d 0%, #ffd4d4 100%);
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-obese .bar-fill .bar-text,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-obese .bar-fill .bar-text {
  top: 22px;
  color: #d92020;
}
.bmi-chart .chart-container .chart-bars .bar-column.bar-obese::before,
.bodyfat-chart .chart-container .chart-bars .bar-column.bar-obese::before {
  content: "";
  position: absolute;
  bottom: 0.67%;
  left: 0;
  right: 0;
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#fdecec), to(#fff5f5));
  background: linear-gradient(to top, #fdecec, #fff5f5);
  border-radius: 8px 8px 0 0;
  z-index: -1;
}

.bmi-explanation,
.bodyfat-explanation {
  background-color: #F4F5F6;
  padding: 20px;
  border-radius: 8px;
}
.bmi-explanation p,
.bodyfat-explanation p {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  line-height: 1.6;
  margin-bottom: 12px;
}
.bmi-explanation p:last-child,
.bodyfat-explanation p:last-child {
  margin-bottom: 0;
}
.bmi-explanation p strong,
.bodyfat-explanation p strong {
  font-weight: 700;
}
.bmi-explanation .bodytype-section .bodytype-title,
.bodyfat-explanation .bodytype-section .bodytype-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
.bmi-explanation .bodytype-section .bodytype-list,
.bodyfat-explanation .bodytype-section .bodytype-list {
  border-top: 1px solid #CDD1D5;
  border-bottom: 1px solid #CDD1D5;
  padding: 16px 0;
}

.bmi-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #333;
}

.bmi-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.railway-projects .project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 63.99em) {
  .railway-projects .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 47.99em) {
  .railway-projects .project-grid {
    grid-template-columns: 1fr;
  }
}
.railway-projects .project-card {
  background-color: #fff;
  border: 1px solid #CDD1D5;
  border-radius: 8px;
  padding: clamp(20px, 10px + 2.5vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(10px, 8px + 2vw, 40px);
}
.railway-projects .project-card .project-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.railway-projects .project-card .project-icon {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.railway-projects .project-card .project-icon img {
  width: 100%;
  height: auto;
}
.railway-projects .project-card .project-title {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  font-weight: 700;
  color: #131416;
  margin: 0;
  line-height: 1.4;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.railway-projects .project-card .project-info {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.railway-projects .project-card .project-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 22.5em) {
  .railway-projects .project-card .project-info dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.railway-projects .project-card .project-info dl dt {
  width: 100px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  font-weight: 700;
  color: #1E2124;
  background-color: #F4F5F6;
  padding: 4px 4px;
  border-radius: 4px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 29.99em) {
  .railway-projects .project-card .project-info dl dt {
    width: 72px;
  }
}
.railway-projects .project-card .project-info dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  color: #1E2124;
  margin: 0;
  line-height: 1.6;
  word-break: keep-all;
  word-wrap: break-word;
}
@media only screen and (max-width: 20em) {
  .railway-projects .project-card .project-info dl dd {
    width: 100%;
  }
}
.railway-projects .project-card .project-info .info-term {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
  color: #131416;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}

.content-section {
  margin-bottom: 48px;
}
.content-section:last-child {
  margin-bottom: 0;
}

.service-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #CDD1D5;
}

.service-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: #B1B8BE;
}
.service-info-wrap .service-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.service-info-wrap .service-info .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
}
.service-info-wrap .service-info .data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  line-height: 1.6;
}
.service-info-wrap .service-table-wrap {
  margin-top: 32px;
}
.service-info-wrap .service-table-wrap .table-title {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  font-weight: 700;
  margin-bottom: 16px;
}
.service-info-wrap .service-table-wrap .service-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #CDD1D5;
}
.service-info-wrap .service-table-wrap .service-table thead {
  background-color: #F4F5F6;
}
.service-info-wrap .service-table-wrap .service-table thead th {
  padding: 12px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #CDD1D5;
  vertical-align: middle;
}
.service-info-wrap .service-table-wrap .service-table tbody td {
  padding: 12px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  border: 1px solid #CDD1D5;
  line-height: 1.6;
  vertical-align: middle;
}
.service-info-wrap .service-table-wrap .service-table tbody tr:nth-child(even) {
  background-color: #F4F5F6;
}
.service-info-wrap .service-note {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.service-info-wrap .service-note::before {
  content: "※";
  position: absolute;
  left: 0;
}

.city-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.city-info-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 420px;
  width: 40%;
}
.city-info-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.city-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.city-info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  gap: 8px;
}
@media only screen and (max-width: 29.99em) {
  .city-info-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.city-info-list li .item {
  min-width: 160px;
}
.city-info-list li .item .icon {
  width: 24px;
}
.city-info-list li .item .icon img {
  width: 24px;
  height: 24px;
}
.city-info-list li .item strong {
  font-size: 16px;
  font-weight: 600;
}
.city-info-list li .data .normal-type.small-dot {
  margin: 2px 0 8px;
}
.city-info-list li .data p {
  margin: 0;
  line-height: 1.5;
  color: #555;
}
.city-info-list li .data a {
  color: #555;
  font-size: 17px;
}
@media only screen and (max-width: 47.99em) {
  .city-info-list li .data a {
    font-size: 15px;
  }
}
.city-info {
  /* 모바일 반응형 */
}
@media (max-width: 768px) {
  .city-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .city-info-image {
    width: 100%;
  }
}

.player-list-wrap .day-text {
  text-align: right;
  font-size: 17px;
  color: #8A949E;
  font-weight: 700;
}
.player-list-wrap ul {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}
@media only screen and (max-width: 47.99em) {
  .player-list-wrap ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.player-list-wrap ul li {
  border: 1px solid #CDD1D5;
  border-radius: 12px;
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media only screen and (max-width: 47.99em) {
  .player-list-wrap ul li {
    gap: 24px;
  }
}
.player-list-wrap ul li.active {
  border: 1px solid #063A74;
  background-color: #EEF2F7;
}
.player-list-wrap ul li.active .player-info .year {
  color: #052B57;
}
.player-list-wrap ul li .img {
  border-radius: 6px;
  overflow: hidden;
}
.player-list-wrap ul li .player-info .game {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 15px;
  color: #052B57;
}
.player-list-wrap ul li .player-info .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  font-weight: 700;
  color: #1E2124;
}
@media only screen and (max-width: 47.99em) {
  .player-list-wrap ul li .player-info .name {
    font-size: 24px;
  }
}
.player-list-wrap ul li .player-info .info {
  margin-top: 8px;
}
.player-list-wrap ul li .player-info .num {
  font-size: 15px;
  color: #1E2124;
}
.player-list-wrap ul li .player-info .mayor-name {
  font-size: 28px;
  color: #1E2124;
  font-weight: 700;
}
@media only screen and (max-width: 47.99em) {
  .player-list-wrap ul li .player-info .mayor-name {
    font-size: 24px;
  }
}
.player-list-wrap ul li .player-info .day {
  font-size: 15px;
  color: #464C53;
}
.player-list-wrap ul li .player-info .year {
  margin-top: 10px;
  font-size: 17px;
  color: #8A949E;
  font-weight: 700;
}

.ridio-group-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}