@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-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;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-size: 10px;
}

body {
  position: relative;
  font-family: "Pretendard GOV", "sans-serif";
  font-weight: 400;
  line-height: 150%;
  color: #1E2124;
  font-size: 17px;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 47.99em) {
  body {
    font-size: 15px;
  }
}

legend, .hd-element {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -999999px !important;
}

table caption {
  overflow: hidden;
  display: block;
  position: absolute;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

img, fieldset, button, input {
  border: 0;
  vertical-align: middle;
}

fieldset {
  min-width: auto;
}

input:-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

ul, ol, li {
  list-style: none;
}

body, div, dl, dt, dd, th, td, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, p, blockquote, button, input, textarea, strong, span, label, a {
  margin: 0;
  padding: 0;
  line-height: 150%;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
  margin: 0;
  padding: 0;
}

em, address {
  font-style: normal;
}

img, fieldset, button, input {
  border: 0;
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

label, button {
  cursor: pointer;
}

label {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

input, select, button, textarea {
  vertical-align: middle;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

input {
  margin: 0;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

#skipnav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10000;
}
#skipnav a {
  display: block;
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
  height: 1px;
  margin-bottom: -1px;
  background: #f2f2f2;
  font-size: 0;
  text-align: center;
  font-weight: bold;
  color: #444;
}
#skipnav a:hover, #skipnav a:focus, #skipnav a:active {
  position: absolute;
  left: 0;
  top: 0;
  padding: 3px;
  height: 25px;
  font-size: 15px;
}

img {
  max-width: 100%;
}

strong {
  font-weight: 700;
}

::-webkit-input-placeholder {
  color: #767676;
}

::-moz-placeholder {
  color: #767676;
}

:-ms-input-placeholder {
  color: #767676;
}

:-moz-placeholder {
  color: #767676;
}

xmp {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
}

@font-face {
  font-family: "Pretendard GOV";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard GOV Black"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Black.woff2) format("woff2"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Black.woff) format("woff");
}
@font-face {
  font-family: "Pretendard GOV";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard GOV ExtraBold"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-ExtraBold.woff2) format("woff2"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-ExtraBold.woff) format("woff");
}
@font-face {
  font-family: "Pretendard GOV";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard GOV Bold"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Bold.woff2) format("woff2"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Bold.woff) format("woff");
}
@font-face {
  font-family: "Pretendard GOV";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard GOV SemiBold"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-SemiBold.woff2) format("woff2"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-SemiBold.woff) format("woff");
}
@font-face {
  font-family: "Pretendard GOV";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard GOV Medium"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Medium.woff2) format("woff2"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Medium.woff) format("woff");
}
@font-face {
  font-family: "Pretendard GOV";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard GOV Regular"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Regular.woff2) format("woff2"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Regular.woff) format("woff");
}
@font-face {
  font-family: "Pretendard GOV";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard GOV Light"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Light.woff2) format("woff2"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Light.woff) format("woff");
}
@font-face {
  font-family: "Pretendard GOV";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard GOV ExtraLight"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-ExtraLight.woff2) format("woff2"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-ExtraLight.woff) format("woff");
}
@font-face {
  font-family: "Pretendard GOV";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard GOV Thin"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Thin.woff2) format("woff2"), url(/humanframe/theme/global/assets/font/pretendard/PretendardGOV-Thin.woff) format("woff");
}
.inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.header-banner {
  position: relative;
  z-index: 99999;
}
.header-banner .banner-type {
  width: 100%;
  height: 120px;
  text-align: center;
  padding: 0 20px;
}
@media only screen and (max-width: 63.99em) {
  .header-banner .banner-type {
    padding: 20px 20px 40px;
    height: auto;
  }
}
.header-banner .inner {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-banner dl dt {
  font-size: 24px;
  color: #FFF831;
  font-weight: 700;
}
@media only screen and (max-width: 47.99em) {
  .header-banner dl dt {
    font-size: 20px;
  }
}
.header-banner dl dd {
  font-size: 15px;
  color: #fff;
  margin-top: 10px;
}
@media only screen and (max-width: 47.99em) {
  .header-banner dl dd {
    font-size: 13px;
  }
}
.header-banner .today-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(30, 33, 36, 0.8);
  padding: 8px 15px 8px 12px;
}
@media only screen and (max-width: 63.99em) {
  .header-banner .today-btn {
    right: -20px;
    bottom: -40px;
  }
}
@media only screen and (max-width: 47.99em) {
  .header-banner .today-btn {
    padding: 5px 15px 5px 12px;
  }
}
.header-banner .today-btn .checkbox-wrap .checkbox-type {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.header-banner .today-btn .checkbox-wrap .checkbox-type label {
  color: #fff;
}
@media only screen and (max-width: 63.99em) {
  .header-banner .today-btn .checkbox-wrap .checkbox-type label {
    font-size: 15px;
  }
}
@media only screen and (max-width: 47.99em) {
  .header-banner .today-btn .checkbox-wrap .checkbox-type label {
    font-size: 13px;
  }
}
.header-banner .today-btn .close_btn {
  display: block;
  width: 16px;
  height: 16px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_close_white.svg) no-repeat 0 0;
}

header {
  background-color: #fff;
  position: relative;
  z-index: 999;
  border-bottom: 1px solid #CDD1D5;
}
@media only screen and (max-width: 63.99em) {
  header {
    width: 100%;
    z-index: 9999999;
  }
}
header .inner {
  position: static;
}
@media only screen and (max-width: 80em) {
  header .inner {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 63.99em) {
  header .inner {
    padding: 0;
  }
}
header .top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding: 4px 0;
  margin: 0 0 4px;
}
@media only screen and (max-width: 63.99em) {
  header .top-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 16px;
    z-index: 99999999;
  }
}
header .top-menu > li {
  position: relative;
}
header .top-menu > li:not(header .top-menu > li:last-child)::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #CDD1D5;
  position: absolute;
  top: 50%;
  right: -12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .top-menu > li > a {
  font-size: 15px;
  background-repeat: no-repeat;
  padding-right: 20px;
  background-size: 16px;
}
header .top-menu > li > a.button {
  background-position: right center;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_button.svg);
  vertical-align: middle;
}
header .top-menu > li > a.button-bottom {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg);
  background-position: right center;
}
header .top-menu > li > a i {
  vertical-align: middle;
}
header .top-menu > li > a span {
  vertical-align: text-top;
}
header .header-middle {
  padding: 12px 0 16px;
}
@media only screen and (max-width: 63.99em) {
  header .header-middle {
    height: 72px;
    padding: 0;
    border: none;
  }
}
header .header-middle .bottom-menu {
  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;
}
@media only screen and (max-width: 63.99em) {
  header .header-middle .bottom-menu {
    padding: 9px 10px 9px 16px;
  }
}
header .header-middle .bottom-menu .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
header .header-middle .bottom-menu .logo h1 a {
  display: block;
  width: 148px;
  height: 50px;
  background: url(/humanframe/theme/global/assets/images/common/logo.svg) no-repeat 0 0/100%;
}
@media only screen and (max-width: 63.99em) {
  header .header-middle .bottom-menu .logo h1 a {
    width: 92px;
    height: 31px;
  }
}
@media only screen and (max-width: 63.99em) {
  header .header-middle .bottom-menu .weather {
    display: none;
    position: fixed;
    z-index: 9999999;
    top: 16px;
    left: 16px;
    right: 16px;
    padding: 8px;
    background-color: #F4F5F6;
    border-radius: 6px;
  }
}
header .header-middle .bottom-menu .weather ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 29.99em) {
  header .header-middle .bottom-menu .weather ul {
    gap: 5px;
  }
}
header .header-middle .bottom-menu .weather ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  color: #464C53;
}
@media only screen and (max-width: 29.99em) {
  header .header-middle .bottom-menu .weather ul li {
    font-size: 13px;
  }
}
header .header-middle .bottom-menu .weather ul li i {
  margin-right: 10px;
}
@media only screen and (max-width: 29.99em) {
  header .header-middle .bottom-menu .weather ul li i {
    width: 20px;
    margin-right: 5px;
  }
}
header .header-middle .bottom-menu .weather ul li .weather-more,
header .header-middle .bottom-menu .weather ul li .weather-more2 {
  display: block;
  width: 16px;
  height: 16px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_weather_more.svg) no-repeat 0 0;
  margin-left: 4px;
}
@media only screen and (max-width: 29.99em) {
  header .header-middle .bottom-menu .weather ul li .weather-more,
  header .header-middle .bottom-menu .weather ul li .weather-more2 {
    width: 13px;
    height: 13px;
    background-size: cover;
  }
}
header .header-middle .bottom-menu .weather ul li strong {
  font-weight: 400;
  margin-left: 5px;
}
header .header-middle .bottom-menu .weather ul li.bad {
  color: #BD2C0F;
  padding-left: 19px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_weather_bad.svg) no-repeat 0 0;
}
@media only screen and (max-width: 29.99em) {
  header .header-middle .bottom-menu .weather ul li.bad {
    padding-left: 7px;
  }
}
header .etc-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media only screen and (max-width: 63.99em) {
  header .etc-menu {
    gap: 0;
  }
}
header .etc-menu li {
  position: relative;
}
header .etc-menu li > a {
  display: block;
  font-weight: 700;
  padding: 7px 12px;
}
@media only screen and (max-width: 63.99em) {
  header .etc-menu li > a {
    font-size: 15px;
    padding: 6px 12px 2px;
  }
}
@media only screen and (max-width: 47.99em) {
  header .etc-menu li > a {
    font-size: 13px !important;
  }
}
header .etc-menu li > a i {
  margin-right: 8px;
  vertical-align: middle;
}
@media only screen and (max-width: 63.99em) {
  header .etc-menu li > a i {
    display: block;
    margin: 0;
    text-align: center;
  }
}
header .etc-menu li > a span {
  vertical-align: text-top;
}
@media only screen and (min-width: 63.99em) {
  header .etc-menu li > a.total-search {
    display: none;
  }
}
@media only screen and (max-width: 63.99em) {
  header .etc-menu li.login {
    display: none;
  }
}
header .etc-menu .drop-menu {
  top: 50px;
}
header .header-bottom {
  border-width: 1px 0 1px 0;
  position: relative;
  border-top: 1px solid #CDD1D5;
}
@media only screen and (max-width: 63.99em) {
  header .header-bottom {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: #fff;
  }
  header .header-bottom > .inner {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
  }
}
header .header-bottom .mobile-top {
  display: none;
}
@media only screen and (max-width: 63.99em) {
  header .header-bottom .mobile-top {
    display: block;
    padding: 14px 16px;
  }
}
header .header-bottom .mobile-top .mobile-close {
  position: absolute;
  top: 76px;
  right: 16px;
}
header .header-bottom .mobile-top .mobile-close a {
  display: block;
  width: 24px;
  height: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_close.svg) no-repeat 0 0/100%;
}
header .header-bottom .mobile-top .top-menu {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header-bottom .mobile-top .mobile-login {
  margin: 104px 0 16px;
}
header .header-bottom .mobile-top .mobile-login a {
  font-size: 22px;
  font-weight: 700;
  padding-left: 32px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_login.svg) no-repeat 0 center/24px;
}
header .header-bottom .mobile-top .mobile-search a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/humanframe/theme/global/assets/images/ico/ico_header_search.svg) no-repeat 0 center;
}
@media only screen and (max-width: 63.99em) {
  header .header-bottom nav {
    overflow-y: auto;
    position: relative;
    background-color: #EEF2F7;
    height: 100%;
  }
}
header .header-bottom nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 63.99em) {
  header .header-bottom nav > ul {
    display: block;
  }
}
header .header-bottom nav > ul > li > a {
  display: block;
  font-size: 19px;
  color: #464C53;
  font-weight: 700;
  padding: 13px 44px 13px 16px;
  position: relative;
}
@media only screen and (max-width: 63.99em) {
  header .header-bottom nav > ul > li > a {
    width: 145px;
    height: 58px;
    line-height: 58px;
    color: #1E2124;
    padding: 0 24px;
    font-size: 17px;
  }
}
header .header-bottom nav > ul > li > a::before {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg);
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 63.99em) {
  header .header-bottom nav > ul > li > a::before {
    display: none;
  }
}
header .header-bottom nav > ul > li.is-other > a {
  padding: 13px 16px 13px 16px;
}
@media only screen and (max-width: 63.99em) {
  header .header-bottom nav > ul > li.is-other > a {
    padding: 0 24px;
  }
}
header .header-bottom nav > ul > li.is-other > a::before {
  display: none;
}
header .header-bottom nav > ul > li.active > a {
  color: #052B57;
}
@media only screen and (max-width: 63.99em) {
  header .header-bottom nav > ul > li.active > a {
    color: #052B57;
    background-color: #fff;
  }
}
header .header-bottom nav > ul > li.active > a::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #052B57;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 63.99em) {
  header .header-bottom nav > ul > li.active > a::after {
    display: none;
    height: 1px;
    background-color: #CDD1D5;
  }
}
header .header-bottom nav > ul > li.active > a::before {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
header .header-bottom nav > ul > li.active .gnb-wrap {
  display: block;
}
@media only screen and (max-width: 63.99em) {
  header .header-bottom.active > .inner {
    border-top: 1px solid #CDD1D5;
  }
}
header .header-search {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F4F5F6;
  padding: 8px 8px 7px 16px;
  border-radius: 6px;
  position: relative;
  margin-right: 83px;
}
@media only screen and (max-width: 63.99em) {
  header .header-search {
    display: none;
    position: fixed;
    top: 106px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    padding: 32px 32px 140px;
    border-radius: 0;
    overflow-x: hidden;
    overflow-y: scroll;
  }
}
header .header-search p {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media only screen and (min-width: 63.99em) {
  header .header-search p {
    display: none;
  }
}
header .header-search a {
  padding: 0;
  font-weight: 400;
}
header .header-search input {
  background: transparent;
  font-size: 15px;
}
@media only screen and (max-width: 63.99em) {
  header .header-search input {
    width: 100%;
    height: 48px;
    border-radius: 6px;
    border: 1px solid #0B50D0;
    background-color: #fff;
    padding-left: 16px;
  }
}
header .header-search .header-search-btn {
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_header_search.svg) no-repeat 0 0;
}
@media only screen and (max-width: 63.99em) {
  header .header-search .header-search-btn {
    position: absolute;
    top: 92px;
    right: 48px;
  }
}
header .header-search .ai-search {
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  color: #fff;
  padding: 0 25px 0 8px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_ai_search.svg) no-repeat right 8px center #063A74;
  border-radius: 6px;
  position: absolute;
  top: 0;
  right: -83px;
  font-weight: 700;
}
@media only screen and (max-width: 63.99em) {
  header .header-search .ai-search {
    display: none;
  }
}
@media only screen and (max-width: 63.99em) {
  header .header-search.active {
    display: block;
  }
  header .header-search.active .recent-item,
  header .header-search.active .search-term {
    display: block;
  }
}
header .dropdown {
  width: 187px;
  position: absolute;
  top: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  border: 1px solid #CDD1D5;
  border-radius: 8px;
  padding: 8px;
  z-index: 1;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
}
header .dropdown::after {
  content: "";
  width: 22px;
  height: 13px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_dropdown.svg) no-repeat 0 0;
  position: absolute;
  top: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header .dropdown ul li a {
  display: block;
  padding: 11px 16px;
  border-radius: 6px;
}
header .dropdown ul li a:hover {
  background-color: #EEF2F7;
}
header .dropdown .mypage-info {
  padding: 8px 15px;
  margin-bottom: 8px;
  border-bottom: 1px solid #CDD1D5;
}
header .dropdown .mypage-info strong {
  font-size: 19px;
  font-weight: 700;
}
header .dropdown .mypage-info p {
  font-size: 15px;
  color: #464C53;
  margin: 8px 0 4px;
}
header .dropdown .mypage-info span {
  font-size: 15px;
  color: #0B50D0;
  padding-left: 18px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_time.svg) no-repeat 0 center;
}
header .dropdown .mypage-info a {
  font-size: 15px;
  margin-left: 22px;
}
header .dropdown .logout {
  text-align: center;
  padding: 13px 10px 6px;
  margin-top: 8px;
  border-top: 1px solid #CDD1D5;
}
header .dropdown .logout a {
  padding-left: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_logout.svg) no-repeat 0 center;
}
header .drop-menu {
  display: none;
  width: 188px;
  border-radius: 8px;
  border: 1px solid #CDD1D5;
  background-color: #fff;
  padding: 8px;
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9999;
}
header .drop-menu::before {
  content: "";
  width: 22px;
  height: 13px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_dropdown.svg) no-repeat 0 0;
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 63.99em) {
  header .drop-menu.zoom-btn {
    width: 139px;
    left: auto;
    right: -58px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
header .drop-menu ul li a {
  display: block;
  padding: 11px 9px;
  border-radius: 6px;
  font-weight: 400;
}
header .drop-menu ul li a:hover {
  background-color: #EEF2F7;
}
header .drop-menu ul li a:active {
  background-color: #D6E0EB;
}
header .drop-menu .top {
  padding: 8px 14px;
  border-bottom: 1px solid #CDD1D5;
}
header .drop-menu .top + ul {
  margin: 8px 0;
}
header .drop-menu .top > strong {
  font-size: 19px;
}
header .drop-menu .top > span {
  display: block;
  font-size: 15px;
  color: #464C53;
  margin: 8px 0 4px;
}
header .drop-menu .top .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 15px;
}
header .drop-menu .top .time span {
  color: #A50082;
  padding-left: 18px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_time.svg) no-repeat 0 center;
}
header .drop-menu .logout {
  display: block;
  text-align: center;
  padding: 8px;
  border-top: 1px solid #CDD1D5;
}
header .drop-menu .logout span {
  padding-left: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_logout.svg) no-repeat 0 center;
}
.gnb-wrap {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  border-top: 1px solid #CDD1D5;
  overflow: hidden;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap {
    position: static;
    border: none;
  }
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap .inner {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 300px);
  }
}
.gnb-wrap .wrap {
  padding: 16px 40px;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap .wrap {
    padding: 8px 0;
    height: 100%;
    min-height: auto;
  }
}
.gnb-wrap ul li {
  border-radius: 6px;
}
.gnb-wrap ul li a {
  display: block;
  padding: 10px 10px 10px 20px;
  position: relative;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap ul li a {
    padding: 12px 8px;
  }
}
.gnb-wrap ul li a:not(.tit a):hover {
  background-color: #EEF2F7;
  color: #052B57;
  font-weight: 700;
}
.gnb-wrap ul li a::before {
  content: "•";
  position: absolute;
  left: 8px;
}
.gnb-wrap.normal .gnb-title {
  font-size: 24px;
  font-weight: 700;
  padding: 10px 4px;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.normal .gnb-title {
    display: none;
  }
}
.gnb-wrap.normal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 16px;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.normal ul {
    display: block;
    margin: 0;
  }
}
.gnb-wrap.normal ul li {
  width: calc(25% - 18px);
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.normal ul li {
    width: 100%;
  }
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.normal ul li a::before {
    display: none;
  }
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 {
    width: calc(100% - 140px);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
  }
}
.gnb-wrap.type-depth3 .inner {
  background-color: #EEF2F7;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 .inner {
    background-color: #fff;
  }
}
.gnb-wrap.type-depth3 .wrap {
  background-color: #EEF2F7;
  padding: 16px 0;
  position: relative;
  min-height: 300px;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 .wrap {
    background-color: #fff;
    min-height: auto;
    padding: 0 0 16px 12px;
  }
}
.gnb-wrap.type-depth3 .wrap > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 266px;
  height: 56px;
  text-align: left;
  line-height: 56px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border-radius: 0;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 .wrap > ul > li > a {
    width: 100%;
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) center;
    font-weight: 700;
    font-size: 19px;
    line-height: 150%;
  }
}
.gnb-wrap.type-depth3 .wrap > ul > li > a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg) no-repeat 0 0;
  background-size: 20px;
  position: absolute;
  top: 50%;
  right: 24px;
  left: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 .wrap > ul > li > a::before {
    display: none;
  }
}
.gnb-wrap.type-depth3 .wrap > ul > li > a:hover {
  background-color: #fff;
}
.gnb-wrap.type-depth3 .wrap > ul > li > a i {
  margin: 0 0 0 6px;
}
.gnb-wrap.type-depth3 .wrap > ul > li > a i img {
  width: 20px;
  height: 20px;
  margin-top: -2px;
}
.gnb-wrap.type-depth3 .wrap > ul > li > a.link {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
}
.gnb-wrap.type-depth3 .wrap > ul > li > a.link::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_link_black.svg) no-repeat 0 0;
  background-size: 20px;
}
.gnb-wrap.type-depth3 .wrap > ul > li > a.link::before {
  display: none;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 .wrap > ul > li > a.none {
    background-image: none !important;
  }
}
.gnb-wrap.type-depth3 .wrap > ul > li > a.none::before {
  display: none;
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap {
  display: none;
  position: absolute;
  top: 0;
  left: 266px;
  right: 0;
  min-height: 100%;
  padding: 16px 40px;
  background-color: #fff;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap {
    position: static;
    padding: 0;
  }
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap .tit {
    display: none;
  }
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap .tit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 4px;
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap .tit a::before {
  display: none;
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap .tit a span {
  font-size: 15px;
  font-weight: 400;
  text-decoration: underline;
  position: relative;
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap .tit a span::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg) no-repeat center;
  background-size: 16px;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 8px 24px;
  margin-top: 16px;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap ul {
    display: block;
    padding: 0;
    margin: 0;
  }
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap ul li {
    border-radius: 8px;
  }
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap ul li a {
  font-size: 17px;
}
@media only screen and (max-width: 63.99em) {
  .gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap ul li a {
    padding: 10px 16px 10px 28px;
    border-radius: 8px;
  }
  .gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap ul li a::before {
    left: 16px;
  }
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap ul li a i {
  margin: 0 0 0 6px;
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth3-wrap ul li a i img {
  width: 20px;
  height: 20px;
  margin-top: -2px;
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth4-wrap {
  display: none;
  position: absolute;
  top: 0;
  left: -300px;
  width: 1280px;
  background-color: #fff;
  z-index: 10;
  padding: 16px 40px;
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth4-wrap .tit a {
  padding: 10px 4px 10px 32px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_left.svg) no-repeat 4px center;
}
.gnb-wrap.type-depth3 .wrap > ul > li .depth4-wrap.active {
  display: block;
  left: -266px;
}
.gnb-wrap.type-depth3 .wrap > ul > li.active > a {
  background-color: #fff;
  font-weight: 700;
}
.gnb-wrap.type-depth3 .wrap > ul > li.active .depth3-wrap {
  display: block !important;
}

footer .footer-site {
  border: 1px solid #CDD1D5;
  border-width: 1px 0 1px 0;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site {
    border-width: 0 0 1px 0;
  }
}
footer .footer-site > .inner > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site > .inner > ul {
    display: block;
  }
}
footer .footer-site > .inner > ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
}
footer .footer-site > .inner > ul > li > a {
  display: block;
  padding: 15px 24px;
  border: 1px solid #CDD1D5;
  border-width: 0 1px;
  position: relative;
  background-color: #fff;
  margin-left: -1px;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site > .inner > ul > li > a {
    border-width: 1px 0px 0px;
    padding: 15px;
  }
}
footer .footer-site > .inner > ul > li > a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_footer_site.svg) no-repeat 0 0;
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
footer .footer-site .site-open {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EEF2F7;
  z-index: 9999;
  padding: 160px 0;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site .site-open {
    width: 98%;
    height: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
  }
}
footer .footer-site .site-open .close {
  display: block;
  width: 40px;
  height: 40px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_close.svg) no-repeat 0 0;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site .site-open .close {
    width: 24px;
    height: 24px;
    background-size: 100%;
  }
}
footer .footer-site .site-open p {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site .site-open p {
    padding: 24px 0 0 8px;
    font-size: 19px;
  }
}
footer .footer-site .site-open ul {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 40px;
  overflow-y: auto;
  height: 450px;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site .site-open ul {
    display: block;
    max-height: 360px;
    overflow-y: auto;
    margin-top: 12px;
    border-top: 1px solid #8A949E;
  }
}
footer .footer-site .site-open ul li {
  width: calc(25% - 30px);
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site .site-open ul li {
    width: 100%;
  }
  footer .footer-site .site-open ul li + li {
    margin-top: 8px;
  }
}
footer .footer-site .site-open ul li a {
  display: block;
  padding: 8px 12px 8px 20px;
  position: relative;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site .site-open ul li a {
    padding: 10px 16px 10px 28px;
  }
}
footer .footer-site .site-open ul li a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_link_gray.svg) no-repeat 0 0/16px;
  margin-left: 5px;
  position: absolute;
  top: 12px;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site .site-open ul li a::after {
    top: 15px;
  }
}
@media only screen and (max-width: 47.99em) {
  footer .footer-site .site-open ul li a::after {
    top: 13px;
  }
}
footer .footer-site .site-open ul li a::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #33363D;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 63.99em) {
  footer .footer-site .site-open ul li a::before {
    width: 4px;
    height: 4px;
    left: 16px;
  }
}
footer .footer-site .site-open ul li a:hover {
  background-color: #EEF2F7;
  color: #052B57;
  font-weight: 700;
  border-radius: 6px;
}
footer .footer-info {
  background-color: #F4F5F6;
  position: relative;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info {
    padding: 24px 16px;
  }
}
footer .footer-info .inner {
  max-width: 1200px;
}
footer .footer-info .footer-logo {
  padding: 40px 0 20px;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .footer-logo {
    padding: 0 0 16px;
  }
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .footer-logo img {
    width: 92px;
  }
}
footer .footer-info .address-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 205px;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .address-wrap {
    display: block;
  }
}
footer .footer-info .address-wrap .address {
  margin-top: 24px;
}
footer .footer-info .address-wrap .address p {
  position: relative;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .address-wrap .address p {
    padding-top: 40px;
  }
}
footer .footer-info .address-wrap .address p + p {
  margin: 16px 0 0;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .address-wrap .address p + p {
    margin: 24px 0 0;
  }
}
footer .footer-info .address-wrap .address span {
  display: inline-block;
  font-weight: 700;
  color: #0066B3;
  font-size: 15px;
  background-color: #E6E8EA;
  border-radius: 20px;
  text-align: center;
  min-width: 85px;
  height: 31px;
  line-height: 31px;
  margin-right: 8px;
  padding: 0 10px;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .address-wrap .address span {
    position: absolute;
    top: 0;
    left: 0;
  }
}
footer .footer-info .address-wrap .address strong {
  margin-right: 16px;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .address-wrap .address strong {
    margin-right: 5px;
  }
}
footer .footer-info .address-wrap .address-map {
  min-height: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .address-wrap .address-map {
    margin: 0 0 24px;
    min-height: auto;
  }
}
footer .footer-info .address-wrap .address-map > a {
  padding-right: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_button.svg) no-repeat right center;
  margin-right: 5px;
}
footer .footer-info .address-wrap .address-map ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .address-wrap .address-map ul {
    position: absolute;
    top: calc(100% - 93px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0;
  }
}
footer .footer-info .util {
  padding: 16px 0 24px;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #CDD1D5;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .util {
    display: block;
    margin: 0;
    padding: 16px 0 0;
  }
}
footer .footer-info .util ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
footer .footer-info .util ul li a {
  font-size: 15px;
}
footer .footer-info .util ul li strong {
  color: #052B57;
}
footer .footer-info .util p {
  font-size: 15px;
  color: #464C53;
}
@media only screen and (max-width: 63.99em) {
  footer .footer-info .util p {
    margin-top: 90px;
  }
}

.header-top {
  background-color: #EEF2F7;
  padding: 5px 0 4px;
  z-index: 102;
  position: relative;
}
@media only screen and (max-width: 63.99em) {
  .header-top {
    padding: 4px 0 4px 16px !important;
  }
}
.header-top span {
  font-size: 15px;
  padding-left: 32px;
  background: url(/humanframe/theme/global/assets/images/common/masthead.svg) no-repeat 0 center;
}

.identifier {
  font-size: 15px;
  background-color: #fff;
  padding: 8px 16px;
}
.identifier.black {
  background-color: #1E2124;
  color: #fff;
}
@media only screen and (max-width: 63.99em) {
  .identifier img {
    display: block;
    margin-bottom: 4px;
  }
}

.container {
  position: relative;
}
@media only screen and (max-width: 80em) {
  .container > .inner {
    padding: 0 16px;
  }
}
.container .content-wrap {
  padding-bottom: 120px;
}
@media (max-width: 480px) {
  .container .content-wrap {
    padding-bottom: 64px;
  }
}

.paginate {
  display: block;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 47.99em) {
  .paginate {
    gap: 3px;
  }
}
.paginate {
  margin: 24px auto 0px auto;
}
.paginate a {
  display: inline-block;
  color: #464C53;
  line-height: 40px;
  height: 40px;
  width: 40px;
  background-color: transparent;
  vertical-align: middle;
  text-align: center;
  border-radius: 6px;
  margin: 0 2px;
}
@media only screen and (max-width: 47.99em) {
  .paginate a {
    font-size: 15px;
  }
  .paginate a:nth-child(n+7):nth-child(-n+9) {
    display: none;
  }
}
.paginate a:hover {
  background-color: #EEF2F7;
}
.paginate a.active {
  color: #fff !important;
  background-color: #063A74;
}
.paginate a.com {
  display: block !important;
  color: #464C53;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 47.99em) {
  .paginate a.com {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.paginate a.com.prev {
  width: auto;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_prev.svg);
  background-position: left center;
  padding: 0 8px 0 20px;
}
@media only screen and (max-width: 47.99em) {
  .paginate a.com.prev {
    margin-left: -30px;
  }
}
.paginate a.com.next {
  width: auto;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_next.svg);
  background-position: right center;
  padding: 0 20px 0 8px;
}
@media only screen and (max-width: 47.99em) {
  .paginate a.com.next {
    margin-left: 30px;
  }
}
.paginate a.com.none {
  color: #8A949E;
}
.paginate a.com.none.prev {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_prev_none.svg);
}
.paginate a.com.none.next {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_next_none.svg);
}
@media only screen and (max-width: 47.99em) {
  .paginate {
    padding-top: 48px;
  }
}
.paginate .etc {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -1px;
  vertical-align: middle;
}
.paginate .input-page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  color: #464C53;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 26px;
}
@media only screen and (max-width: 47.99em) {
  .paginate .input-page {
    margin-top: 20px;
  }
}
.paginate .input-page .form-wrap input {
  width: 56px !important;
  text-align: center;
  padding: 0 8px;
}
@media only screen and (max-width: 47.99em) {
  .paginate .input-page .form-wrap input {
    width: 48px !important;
    height: 36px;
  }
}
.paginate .input-page span {
  padding: 0 9px;
}
.paginate .input-page .btn-normal {
  width: 64px;
  margin-left: 16px;
  line-height: 30px;
}
@media only screen and (max-width: 47.99em) {
  .paginate .input-page .btn-normal {
    width: 48px;
    height: 36px;
    min-height: 36px;
    line-height: 36px;
    margin-left: 8px;
    padding: 0;
  }
}

.black-dim {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.zoom-btn ul li a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.zoom-btn ul li a:not(.zoom-reset)::before {
  content: "가";
  display: inline-block;
  border: 1px solid #D8D8D8;
  border-radius: 4px;
  background-color: #fff;
  text-align: center;
  padding: 0 4px;
}
.zoom-btn ul li a.xsm::before {
  width: 21px;
  height: 21px;
  font-size: 15px;
  line-height: 21px;
}
.zoom-btn ul li axsm::before {
  width: 31px;
  height: 31px;
  font-size: 17px;
  padding: 0 4px;
  line-height: 31px;
}
.zoom-btn ul li a.md::before {
  width: 33px;
  height: 33px;
  font-size: 19px;
  line-height: 33px;
}
.zoom-btn ul li a.lg::before {
  width: 35px;
  height: 35px;
  font-size: 21px;
  line-height: 35px;
}
.zoom-btn ul li a.xlg::before {
  width: 39px;
  height: 39px;
  font-size: 25px;
  line-height: 39px;
}
.zoom-btn ul li a.active {
  font-weight: 700;
  color: #052B57;
  background-color: #EEF2F7;
}
.zoom-btn ul li a.active::before {
  background-color: #052B57;
  color: #fff;
}

.zoom-reset {
  text-align: center;
  position: relative;
  margin-top: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.zoom-reset::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  top: -8px;
  left: 0;
}

.lnb {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 240px;
  max-width: 270px;
  padding: 0 30px 120px 0;
  border-right: 1px solid #C6C6C6;
  position: relative;
}
@media only screen and (max-width: 120em) {
  .lnb {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 63.99em) {
  .lnb {
    display: none;
  }
}
.lnb .lnb-list {
  width: 100%;
  height: 100%;
}
.lnb .lnb-list h2 {
  font-size: 24px;
  color: #131416;
  padding: 24px 8px 16px;
  border-bottom: 1px solid #8A949E;
}
.lnb .lnb-list > ul > li {
  border-bottom: 1px solid #CDD1D5;
}
.lnb .lnb-list > ul > li .arrow {
  position: relative;
}
.lnb .lnb-list > ul > li .arrow::before {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg);
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lnb .lnb-list > ul > li i {
  margin-left: 8px;
}
.lnb .lnb-list > ul > li i img {
  width: 20px;
  height: 20px;
  margin-top: -2px;
}
.lnb .lnb-list > ul > li .depth2 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 17px;
  padding: 16px 16px 16px 8px;
  font-weight: 700;
}
.lnb .lnb-list > ul > li .depth > ul > li > a {
  display: block;
  padding: 8px 8px 8px 27px;
  position: relative;
}
.lnb .lnb-list > ul > li .depth > ul > li > a::after {
  content: "•";
  position: absolute;
  left: 12px;
  top: 8px;
}
.lnb .lnb-list > ul > li .depth3 {
  display: none;
}
.lnb .lnb-list > ul > li .depth3 > ul {
  padding: 10px 0;
}
.lnb .lnb-list > ul > li .depth4 {
  position: absolute;
  top: 0;
  left: -100% !important;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  padding-right: 40px;
}
.lnb .lnb-list > ul > li .depth4 .depth4-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 5px 20px;
  border-bottom: 1px solid #CDD1D5;
}
.lnb .lnb-list > ul > li .depth4 .depth4-title::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg) no-repeat right center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-bottom: 10px;
}
.lnb .lnb-list > ul > li .depth4 > ul {
  border-bottom: 1px solid #CDD1D5;
  padding: 10px 0;
}
.lnb .lnb-list > ul > li .depth4 > ul li a {
  display: block;
  font-size: 15px;
  padding: 8px 8px 8px 27px;
  position: relative;
}
.lnb .lnb-list > ul > li .depth4 > ul li a::after {
  content: "•";
  position: absolute;
  left: 12px;
}
.lnb .lnb-list > ul > li .depth4.active {
  display: block;
  left: 0 !important;
  opacity: 1;
  visibility: inherit;
}
.lnb .lnb-list ul li.active > a {
  background-color: #EEF2F7;
  border-radius: 6px;
}
.lnb .lnb-list ul li.active .depth2 a {
  color: #052B57;
  background-color: #EEF2F7;
  position: relative;
}
.lnb .lnb-list ul li.active .depth2 a::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #052B57;
  position: absolute;
  bottom: 0;
  left: 0;
}
.lnb .lnb-list ul li.active .depth2 a.arrow::before {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.lnb + .content-wrap {
  min-width: 300px;
  max-width: 1090px;
}

.search-manager {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  background-color: #EEF2F7;
}
.search-manager.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 47.99em) {
  .search-manager {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 64px 0 0;
  }
}
.search-manager .inner {
  max-width: 792px;
  position: relative;
}
@media only screen and (max-width: 47.99em) {
  .search-manager .inner {
    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%;
  }
}
.search-manager p {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 16px;
}
.search-manager dl {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #D6E0EB;
}
@media only screen and (max-width: 47.99em) {
  .search-manager dl {
    padding: 0 16px 24px;
    margin-bottom: 24px;
  }
}
.search-manager dl dt {
  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;
}
@media only screen and (max-width: 63.99em) {
  .search-manager dl dt {
    display: block;
  }
}
.search-manager dl dt label {
  font-size: 32px;
  font-weight: 700;
}
@media only screen and (max-width: 63.99em) {
  .search-manager dl dt label {
    display: block;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 47.99em) {
  .search-manager dl dt label {
    font-size: 24px;
  }
}
.search-manager dl dt a {
  padding-right: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_right.svg) no-repeat right center;
}
.search-manager dl dd {
  margin-top: 12px;
}
.search-manager dl dd input {
  height: 80px;
  font-size: 24px;
  font-weight: 700;
  color: #8A949E;
  background-color: #fff;
}
@media only screen and (max-width: 47.99em) {
  .search-manager dl dd input {
    height: 64px;
    font-size: 22px;
  }
}
.search-manager .close {
  display: block;
  width: 40px;
  height: 40px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_close.svg) no-repeat 0 0/100%;
  position: absolute;
  top: 0;
  right: -244px;
}
@media only screen and (max-width: 80em) {
  .search-manager .close {
    right: -70px;
  }
}
@media only screen and (max-width: 63.99em) {
  .search-manager .close {
    right: auto;
    left: calc(100% - 40px);
  }
}
@media only screen and (max-width: 47.99em) {
  .search-manager .close {
    top: -40px;
    width: 24px;
    height: 24px;
  }
}
.search-manager .scroll {
  height: 100vh;
}
.search-manager .bottom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 47.99em) {
  .search-manager .bottom-item {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow-y: auto;
    padding-bottom: 40px;
    -webkit-overflow-scrolling: touch;
  }
}
.search-manager .search-term {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding: 0 24px;
  position: relative;
}
@media only screen and (max-width: 47.99em) {
  .search-manager .search-term {
    padding: 0 16px;
  }
}
.search-manager .search-term ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-manager .search-term ul li + li {
  margin-top: 16px;
}
.search-manager .search-term ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-size: 17px;
  padding: 0;
  font-weight: 400;
}
.search-manager .search-term ul li a span {
  width: 20px;
}
.search-manager .search-term ul li strong {
  font-weight: 400;
  padding-right: 17px;
  position: relative;
}
.search-manager .search-term ul li strong.up {
  color: #AB2B36;
  padding-right: 10px;
}
.search-manager .search-term ul li strong.up::after {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 7px solid #AB2B36;
  position: absolute;
  top: 50%;
  left: -16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.search-manager .search-term ul li strong.down {
  color: #096AB3;
  padding-right: 10px;
}
.search-manager .search-term ul li strong.down::after {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #096AB3;
  position: absolute;
  top: 50%;
  left: -16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.search-manager .recent-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding: 0 24px;
  position: relative;
  border-left: 1px solid #D6E0EB;
}
@media only screen and (max-width: 47.99em) {
  .search-manager .recent-item {
    padding: 24px 16px 0;
    margin-top: 24px;
    border-top: 1px solid #D6E0EB;
  }
}
.search-manager .recent-item ul 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;
}
.search-manager .recent-item ul li + li {
  margin-top: 16px;
}
.search-manager .recent-item ul li a {
  padding: 0;
}
.search-manager .recent-item .delete-all {
  position: absolute;
  bottom: 0;
  left: 24px;
  display: inline-block;
  margin-top: 16px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_right.svg) no-repeat right center;
  padding-right: 26px;
}
@media only screen and (max-width: 47.99em) {
  .search-manager .recent-item .delete-all {
    position: static;
    margin-top: 22px;
  }
}

.page-top-btn {
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 99;
}
@media only screen and (max-width: 47.99em) {
  .page-top-btn {
    bottom: 1rem;
    right: 1rem;
  }
}
.page-top-btn button {
  width: 72px;
  height: 72px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_top_btn.svg) no-repeat center;
}
@media only screen and (max-width: 47.99em) {
  .page-top-btn button {
    width: 65px;
    height: 65px;
    background-size: 65px;
  }
}

.btn-wrap.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 29.99em) {
  .btn-wrap.flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .btn-wrap.flex div {
    width: 100%;
  }
}
.btn-wrap.right {
  -webkit-box-pack: right !important;
      -ms-flex-pack: right !important;
          justify-content: right !important;
}
.btn-wrap.between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-wrap.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap.is-inline {
  display: inline;
}
.btn-wrap.is-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media only screen and (min-width: 29.99em) {
  .btn-wrap.auto {
    width: auto !important;
  }
}

.btn-normal {
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  border-radius: 8px;
  font-size: 15px;
  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;
  gap: 5px;
  vertical-align: middle;
  padding: 5px 16px;
}
@media only screen and (max-width: 29.99em) {
  .btn-normal:not(.btn-download, .btn-view, .ico-download, .ico-view, .more, .box-download) {
    width: 100%;
  }
}
.btn-normal i {
  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;
}
.btn-normal.btn-download {
  padding-right: 18px;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_download.svg);
}
.btn-normal.btn-download + .btn-arrow {
  margin-left: 16px;
}
.btn-normal.ico-download {
  width: 20px;
  height: 20px;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_download.svg);
}
.btn-normal.ico-view {
  width: 20px;
  height: 20px;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_search.svg);
  background-size: 16px;
}
.btn-normal.more {
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_more.svg);
  padding-right: 24px;
}
@media (max-width: 480px) {
  .btn-normal.more {
    padding-right: 20px;
  }
}
.btn-normal.cont-btn {
  font-size: 17px;
  padding-right: 24px;
  background-size: 20px;
}
.btn-normal.btn-arrow {
  padding-right: 18px;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_button.svg);
}
.btn-normal.btn-view {
  padding-right: 18px;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_search.svg);
  background-size: 16px;
}
.btn-normal.link-go {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg);
}
.btn-normal.bg-btn-tertiary {
  border: 1px solid #58616A;
}
.btn-normal.bg-btn-primary {
  color: #fff;
}
.btn-normal.bg-btn-secondary {
  border: 1px solid #0B50D0;
  color: #0B50D0;
}
.btn-normal.btn-black {
  background-color: #222;
  color: #fff;
}
.btn-normal.bg-btn-disabled {
  color: #6D7882 !important;
  border-color: #CDD1D5 !important;
  pointer-events: none;
  cursor: not-allowed;
}
.btn-normal.bg-btn-disabled:hover {
  color: #6D7882 !important;
  border-color: #CDD1D5 !important;
  background-color: #CDD1D5 !important;
}
.btn-normal.bg-btn-black {
  color: #fff;
}
.btn-normal.xlarge {
  min-height: 64px;
  padding: 5px 24px;
  font-size: 19px;
}
.btn-normal.large {
  min-width: 90px;
  min-height: 56px;
  padding: 5px 16px;
  font-size: 17px;
}
@media only screen and (max-width: 47.99em) {
  .btn-normal.large {
    font-size: 15px;
  }
}
.btn-normal.medium {
  min-height: 48px;
  padding: 5px 16px;
  font-size: 17px;
  font-weight: 400;
  border-radius: 6px;
}
@media only screen and (max-width: 47.99em) {
  .btn-normal.medium {
    font-size: 15px;
    min-height: 40px;
    padding: 0 6px;
    border-radius: 6px;
    line-height: 38px;
  }
}
.btn-normal.small {
  min-height: 40px;
  padding: 5px 12px;
  border-radius: 6px;
}
.btn-normal.xsmall {
  min-height: 29px;
  padding: 1px 8px 0px;
  border-radius: 6px;
}
.btn-normal.link-text {
  font-size: 15px;
}
.btn-normal.link-text i {
  width: 16px;
}
.btn-normal.link-text i img {
  margin: 0;
}
.btn-normal.link-text.xsmall i img {
  width: 16px;
}
.btn-normal.box-download {
  font-size: 15px;
  line-height: 29px;
}
@media only screen and (max-width: 29.99em) {
  .btn-normal.box-download {
    font-size: 13px;
    line-height: 22px;
    padding: 1px 6px 0;
    gap: 2px;
  }
}
.btn-normal.box-download.large {
  font-size: 17px;
}
.btn-normal.box-download.large i {
  width: 18px;
}
.btn-normal.box-download.large i img {
  width: 18px;
}
.btn-normal.box-download i {
  width: 16px;
}

.link-text {
  background-repeat: no-repeat;
  background-position: right center;
  padding-left: 2px;
  word-break: break-all;
}
.link-text span {
  border-bottom: 1px solid #ddd;
}
.link-text i {
  vertical-align: middle;
}
.link-text i img {
  margin-top: -2px;
}
.link-text.large {
  font-size: 19px;
}
@media only screen and (max-width: 29.99em) {
  .link-text.large img {
    width: 20px;
  }
}
.link-text.medium:not(.box-download) {
  font-size: 17px;
}
@media only screen and (max-width: 47.99em) {
  .link-text.medium:not(.box-download) {
    font-size: 15px;
  }
}
.link-text.medium:not(.box-download) i {
  vertical-align: baseline;
}
@media only screen and (max-width: 47.99em) {
  .link-text.medium:not(.box-download) i {
    vertical-align: middle;
  }
}
.link-text.medium:not(.box-download) i img {
  width: 18px;
}
@media only screen and (max-width: 47.99em) {
  .link-text.medium:not(.box-download) i img {
    width: 16px;
  }
}
.link-text.small {
  font-size: 15px;
}
.link-text.small i img {
  width: 16px;
}
.link-text.color-blue {
  color: #256EF4;
}
.link-text.color-blue span {
  border-color: #256EF4;
}
.link-text.color-black {
  color: #1E2124;
}
.link-text.color-black span {
  border-color: #1E2124;
}

.tab {
  margin: 48px 0 40px;
  position: relative;
}
@media only screen and (max-width: 47.99em) {
  .tab {
    margin: 16px 0 24px;
  }
}
.tab + .content-section {
  margin-top: 0;
}
.tab {
  /*
  &:not(.type2, .type3, .type4){
      > ul{
          border-radius: 8px;
          overflow: hidden;
          border:1px solid #B1B8BE;
          //display: flex;          

          &:has([class^="col"]){

              display:grid !important;
              grid-auto-flow: row;
              grid-template-columns: repeat(auto-fill, max-content);
              grid-template-columns: repeat(6, 1fr); // 기본값
          }

          @include tab-list-grid-auto;           

          > li{
              margin-bottom:-1px;
              margin-right: -1px;
              > a{
                  border:1px solid #B1B8BE;
                  border-left-width: 0;
                  border-top-width: 0;
                  background-color:#fff;
              }
              // &:nth-child(n<4){
              //     >a{
              //         border-width:1px 0 0 1px;
              //         border-color:#B1B8BE;
              //         border-style: solid;
              //         border-radius:8px;
              //     }
              // }
          }
      }
      @include respond-to('tablet-default') {
          > ul{
              gap:8px;
              //@include respond-to('tablet-default'){        
                  display: flex;
                  overflow-y:hidden;
                  overflow-x: auto;
                  -webkit-overflow-scrolling: touch; 
                  white-space: nowrap;  
              //}  
              > li{
                  border-radius: 8px;
                  flex:none;
                  //@include respond-to('tablet-default'){        
                      flex: 0 0 auto;
                  //}  
                  > a{
                      border:none;
                      padding:7px 12px;
                      @include r-box((
                          font: 17
                      ));
                  }
              }
          }
      }
  }
      */
}
.tab > ul {
  width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 80em) {
  .tab > ul {
    width: 100%;
  }
}
@media only screen and (max-width: 63.99em) {
  .tab > ul.right-shadow::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    pointer-events: none;
    background: -webkit-gradient(linear, right top, left top, from(rgba(68, 68, 68, 0.3)), color-stop(40%, rgba(68, 68, 68, 0.15)), to(transparent)), url("/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg");
    background: linear-gradient(to left, rgba(68, 68, 68, 0.3) 0%, rgba(68, 68, 68, 0.15) 40%, transparent 100%), url("/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg");
    background-repeat: no-repeat;
    background-position: right center;
  }
}
.tab > ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  text-align: center;
  overflow: hidden;
}
.tab > ul > 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;
  height: 100%;
  font-size: 19px;
  font-weight: 700;
  color: #464C53;
  padding: 13.5px 5px;
  word-break: keep-all;
  position: relative;
}
@media only screen and (max-width: 47.99em) {
  .tab > ul > li > a {
    font-size: 15px;
  }
}
.tab > ul > li > a:focus, .tab > ul > li > a:hover {
  background-color: #f0f0f0;
}
.tab > ul > li.active > a {
  background-color: #083891;
  color: #fff;
}
.tab:not(.type2, .type3, .type4) {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (min-width: 47.99em) {
  .tab:not(.type2, .type3, .type4) {
    border: 1px solid #B1B8BE;
    border-width: 1px 0 0 1px;
  }
}
.tab:not(.type2, .type3, .type4) > ul {
  width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 80em) {
  .tab:not(.type2, .type3, .type4) > ul {
    width: 100%;
  }
}
.tab:not(.type2, .type3, .type4) > ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #fff;
}
@media only screen and (min-width: 47.99em) {
  .tab:not(.type2, .type3, .type4) > ul > li {
    border: 1px solid #B1B8BE;
    margin: -1px 0 0 -1px;
  }
}
.tab:not(.type2, .type3, .type4) > ul > li > a {
  white-space: nowrap;
}
.tab:not(.type2, .type3, .type4).is-col3 > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - -3px) / 3);
          flex: 0 0 calc((100% - -3px) / 3);
  width: calc((100% - -3px) / 3);
  max-width: calc((100% - -3px) / 3);
}
.tab:not(.type2, .type3, .type4).is-col3 > ul.has-col-blank::after {
  content: "";
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.tab:not(.type2, .type3, .type4).is-col4 > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - -4px) / 4);
          flex: 0 0 calc((100% - -4px) / 4);
  width: calc((100% - -4px) / 4);
  max-width: calc((100% - -4px) / 4);
}
.tab:not(.type2, .type3, .type4).is-col4 > ul.has-col-blank::after {
  content: "";
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.tab:not(.type2, .type3, .type4).is-col5 > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - -5px) / 5);
          flex: 0 0 calc((100% - -5px) / 5);
  width: calc((100% - -5px) / 5);
  max-width: calc((100% - -5px) / 5);
}
.tab:not(.type2, .type3, .type4).is-col5 > ul.has-col-blank::after {
  content: "";
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.tab:not(.type2, .type3, .type4).is-col6 > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - -6px) / 6);
          flex: 0 0 calc((100% - -6px) / 6);
  width: calc((100% - -6px) / 6);
  max-width: calc((100% - -6px) / 6);
}
.tab:not(.type2, .type3, .type4).is-col6 > ul.has-col-blank::after {
  content: "";
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.tab:not(.type2, .type3, .type4).is-col7 > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - -7px) / 7);
          flex: 0 0 calc((100% - -7px) / 7);
  width: calc((100% - -7px) / 7);
  max-width: calc((100% - -7px) / 7);
}
.tab:not(.type2, .type3, .type4).is-col7 > ul.has-col-blank::after {
  content: "";
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.tab:not(.type2, .type3, .type4).is-col8 > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - -8px) / 8);
          flex: 0 0 calc((100% - -8px) / 8);
  width: calc((100% - -8px) / 8);
  max-width: calc((100% - -8px) / 8);
}
.tab:not(.type2, .type3, .type4).is-col8 > ul.has-col-blank::after {
  content: "";
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.tab:not(.type2, .type3, .type4).is-col9 > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - -9px) / 9);
          flex: 0 0 calc((100% - -9px) / 9);
  width: calc((100% - -9px) / 9);
  max-width: calc((100% - -9px) / 9);
}
.tab:not(.type2, .type3, .type4).is-col9 > ul.has-col-blank::after {
  content: "";
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.tab:not(.type2, .type3, .type4).is-col10 > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - -10px) / 10);
          flex: 0 0 calc((100% - -10px) / 10);
  width: calc((100% - -10px) / 10);
  max-width: calc((100% - -10px) / 10);
}
.tab:not(.type2, .type3, .type4).is-col10 > ul.has-col-blank::after {
  content: "";
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media only screen and (max-width: 47.99em) {
  .tab:not(.type2, .type3, .type4) {
    overflow: visible;
    border-width: 0;
  }
  .tab:not(.type2, .type3, .type4) > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    white-space: nowrap;
    gap: 8px;
  }
  .tab:not(.type2, .type3, .type4) > ul > li {
    border-radius: 8px;
    white-space: nowrap;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .tab:not(.type2, .type3, .type4) > ul > li > a {
    border: none;
    padding: 7px 12px;
    font-size: 17px;
  }
}
.tab.type2 > ul {
  gap: 12px;
  border: none;
  border-radius: 0;
  overflow-x: auto;
  white-space: nowrap;
}
.tab.type2 > ul::-webkit-scrollbar {
  height: 6px;
  border-radius: 4px;
}
.tab.type2 > ul::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.tab.type2 > ul::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.tab.type2 > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border: none;
  overflow: visible;
}
.tab.type2 > ul > li > a:hover {
  background-color: #EEF2F7;
  color: #464C53;
}
.tab.type2 > ul > li > a:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #B1B8BE;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tab.type2 > ul > li.active > a {
  background-color: #fff;
  color: #083891;
}
.tab.type2 > ul > li.active > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #083891;
}
.tab.type3 > ul {
  gap: 8px;
}
@media only screen and (max-width: 63.99em) {
  .tab.type3 > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.tab.type3 > ul > li {
  border-radius: 8px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media only screen and (max-width: 63.99em) {
  .tab.type3 > ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.tab.type3 > ul > li > a {
  border: none;
  padding: 7px 12px;
  font-size: 17px;
}
.tab.type4 {
  margin: 24px 0 40px;
}
@media only screen and (max-width: 47.99em) {
  .tab.type4 {
    margin: -14px 0 24px;
  }
}
.tab.type4 > ul {
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 63.99em) {
  .tab.type4 > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.tab.type4 > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border-radius: 0 !important;
}
.tab.type4 > ul > li > a {
  border: none;
  padding: 7px 13px;
}
.tab.type4 > ul > li > a:hover {
  background-color: #EEF2F7;
  color: #464C53;
}
.tab.type4 > ul > li > a:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #B1B8BE;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tab.type4 > ul > li.active > a {
  background-color: #fff;
  color: #083891;
}
.tab.type4 > ul > li.active > a::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #083891;
  position: absolute;
  bottom: 0;
  left: 0;
}

.badge-wrap span {
  display: inline-block;
  padding: 3px 8px;
  color: #fff;
  border-radius: 4px;
}
.badge-wrap span.medium {
  font-size: 15px;
  padding: 2px 8px 1px;
}

.tab.type2.is-scroll {
  position: relative;
}
.tab.type2.is-scroll > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tab.type2.is-scroll > ul::-webkit-scrollbar {
  display: none;
}
.tab.type2.is-scroll .tab-next {
  display: block;
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 55px;
  bottom: 0;
  left: calc(100% - 30px);
  background: transparent url(/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg) no-repeat center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.tab.type2.is-scroll .tab-next::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -19px;
  width: 50px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(68, 68, 68, 0.3)), color-stop(40%, rgba(68, 68, 68, 0.15)), to(transparent));
  background: linear-gradient(to left, rgba(68, 68, 68, 0.3) 0%, rgba(68, 68, 68, 0.15) 40%, transparent 100%);
  pointer-events: none;
}
@media only screen and (max-width: 63.99em) {
  .tab.type2.is-scroll .tab-next {
    left: calc(100% - 30px);
  }
}
.tab.type2.is-scroll .tab-next.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
@media only screen and (max-width: 63.99em) {
  .tab.type2.is-scroll .tab-next.disabled {
    display: none;
  }
}

.form-wrap {
  position: relative;
}
.form-wrap.flex1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form-wrap.flex1 label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form-wrap.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form-wrap.alone {
  width: 100%;
}
.form-wrap.alone:has(.form-search) {
  width: auto;
}
.form-wrap label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 700;
}
.form-wrap label strong {
  color: #AB2B36;
}
.form-wrap input,
.form-wrap select {
  width: 100%;
  border: 1px solid #58616A;
  border-radius: 8px;
  height: 48px;
  padding: 0 16px;
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  background-color: #fff;
  padding-right: 48px;
}
@media only screen and (max-width: 63.99em) {
  .form-wrap input,
  .form-wrap select {
    width: 100% !important;
  }
}
@media only screen and (max-width: 47.99em) {
  .form-wrap input,
  .form-wrap select {
    font-size: 15px !important;
  }
}
.form-wrap input.w-100,
.form-wrap select.w-100 {
  max-width: 100% !important;
  width: 100%;
}
.form-wrap input.auto,
.form-wrap select.auto {
  width: auto;
  max-width: 100%;
}
.form-wrap input.w200,
.form-wrap select.w200 {
  width: 200px;
}
.form-wrap input.w300,
.form-wrap select.w300 {
  width: 300px;
}
.form-wrap input.w150,
.form-wrap select.w150 {
  width: 150px;
}
.form-wrap input.w140,
.form-wrap select.w140 {
  width: 140px;
}
.form-wrap input.is-readonly, .form-wrap input:disabled,
.form-wrap select.is-readonly,
.form-wrap select:disabled {
  background-color: #CDD1D5;
  pointer-events: none;
  border-color: #B1B8BE;
  opacity: 1;
}
.form-wrap input.datepicker,
.form-wrap select.datepicker {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_calendar.svg);
}
.form-wrap input.type-medium,
.form-wrap select.type-medium {
  height: 48px;
  background-size: 20px;
  border-radius: 6px;
}
@media only screen and (max-width: 47.99em) {
  .form-wrap input.type-medium,
  .form-wrap select.type-medium {
    height: 40px;
  }
}
.form-wrap input.type-small,
.form-wrap select.type-small {
  height: 40px;
  font-size: 15px;
  background-size: 16px;
  border-radius: 6px;
}
.form-wrap input.calendar-date,
.form-wrap select.calendar-date {
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_calendar.svg);
  padding: 0 40px 0 16px;
}
@media only screen and (max-width: 63.99em) {
  .form-wrap input.calendar-date,
  .form-wrap select.calendar-date {
    width: auto !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 30% !important;
            flex: 1 1 30% !important;
  }
}
.form-wrap input {
  padding-right: 16px;
}
.form-wrap select {
  font-size: 17px;
}
.form-wrap input:-moz-read-only, .form-wrap textarea:-moz-read-only {
  color: #464C53;
  background-color: #CDD1D5;
  border-color: #B1B8BE;
}
.form-wrap input:read-only,
.form-wrap textarea:read-only {
  color: #464C53;
  background-color: #CDD1D5;
  border-color: #B1B8BE;
}
.form-wrap select[readonly] {
  color: #464C53;
  background-color: #CDD1D5;
  border-color: #B1B8BE;
}
.form-wrap .select-control {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
}
.form-wrap .select-control.is-readonly {
  background-color: #CDD1D5;
  pointer-events: none;
}
.form-wrap .select-control.is-full {
  max-width: 100%;
  width: 100%;
}
.form-wrap textarea {
  width: 100%;
  height: 150px;
  padding: 8px 16px;
  resize: none;
  border: 1px solid #58616A;
  border-radius: 8px;
  font-size: 15px;
}
.form-wrap textarea:disabled {
  background-color: #CDD1D5;
  border-color: #B1B8BE;
  opacity: 1;
}
.form-wrap textarea.is-agreement {
  border: 1px solid #B1B8BE;
}
.form-wrap .total-num {
  display: block;
  text-align: right;
  font-size: 15px;
  color: #464C53;
  margin-top: 8px;
}
.form-wrap .total-num strong {
  color: #A50082;
  font-weight: 400;
}
.form-wrap .search-btn {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/humanframe/theme/global/assets/images/ico/ico_header_search.svg) no-repeat 0 center/100%;
}
@media only screen and (max-width: 63.99em) {
  .form-wrap .search-btn {
    width: 32px;
    height: 32px;
  }
}
.form-wrap > .btn-wrap {
  margin-top: 0;
}

.form-search {
  display: block;
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_search.svg) no-repeat 0 0;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

.radio-type > input {
  display: inline-block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #58616A;
}
.radio-type > input:checked {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_radio_active.svg);
}
.radio-type > input:disabled {
  background-color: #CDD1D5;
}
.radio-type > input:disabled + label {
  color: #8A949E;
}
.radio-type > input:disabled + label + span {
  color: #8A949E;
}
.radio-type > label {
  display: inline-block;
  width: auto;
  font-weight: 400;
  color: #131416;
  margin: 0 0 0 8px;
  vertical-align: middle;
}
@media only screen and (max-width: 29.99em) {
  .radio-type > label {
    font-size: 15px;
  }
}
.radio-type.size-large > input {
  width: 24px;
  height: 24px;
}
.radio-type.size-large > label {
  font-size: 19px;
}

.ex-text {
  display: block;
  margin: 5px 0 0 28px;
  font-size: 15px;
  color: #464C53;
}

.checkbox-wrap.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}

.checkbox-type > input {
  display: inline-block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #58616A;
  vertical-align: sub;
}
.checkbox-type > input:checked {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_checkbox_active.svg);
}
.checkbox-type > input:disabled {
  background-color: #CDD1D5;
}
.checkbox-type > input:disabled + label {
  color: #8A949E;
}
.checkbox-type > input:disabled + label + span {
  color: #8A949E;
}
.checkbox-type label {
  display: inline-block;
  margin: 0 0 0 8px;
  vertical-align: middle;
}
@media only screen and (max-width: 29.99em) {
  .checkbox-type label {
    font-size: 15px;
  }
}
.checkbox-type.size-large input {
  width: 24px;
  height: 24px;
}
.checkbox-type.size-large > label {
  font-size: 19px;
}

.checkbox-control {
  display: inline-block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #58616A;
  vertical-align: sub;
}
.checkbox-control:checked {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_checkbox_active.svg);
}
.checkbox-control:disabled {
  background-color: #CDD1D5;
}
.checkbox-control:disabled + label {
  color: #8A949E;
}
.checkbox-control:disabled + label + span {
  color: #8A949E;
}

.switch-wrap a {
  display: inline-block;
  font-size: 19px;
  padding-left: 48px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 0 center;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_switch.svg);
}
.switch-wrap a.active {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_switch_active.svg);
}
.switch-wrap a.type-small {
  padding-left: 40px;
  background-size: 32px;
}

.tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tag-wrap a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #CDD1D5;
  border-radius: 50px;
  background-color: #fff;
}
.tag-wrap a span {
  padding-right: 18px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_tag_del.svg) no-repeat right center;
  vertical-align: middle;
}
.tag-wrap a.type-medium {
  padding: 4px 10px;
  font-size: 15px;
}
.tag-wrap a.type-small {
  padding: 2px 8px;
  font-size: 13px;
}
.tag-wrap a.reset {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_reset.svg);
  padding: 6px 20px;
}

.email-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  max-width: 640px;
  width: 100%;
}
@media only screen and (max-width: 47.99em) {
  .email-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.email-group select {
  min-width: 200px;
}
.email-group .left-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.email-group .left-element .form-wrap:nth-child(2) {
  margin-left: 20px;
  position: relative;
}
.email-group .left-element .form-wrap:nth-child(2)::after {
  position: absolute;
  left: -22px;
  top: 16px;
  z-index: 1;
  content: "@";
}

.file-box-wrap {
  width: 100%;
  max-width: 640px;
}
.file-box-wrap .form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.file-box-wrap .form-wrap input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.file-box-wrap .form-wrap .hd-element {
  border: 0;
}
@media only screen and (max-width: 29.99em) {
  .file-box-wrap .form-wrap label {
    width: auto;
  }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

h3 {
  font-size: 32px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 47.99em) {
  h3 {
    font-size: 24px;
  }
}
h3 + div + h4, h3 + h4 {
  margin: 40px 0 20px;
}
h3 + h4 {
  margin-top: 24px !important;
}

h4 {
  font-size: 24px;
  margin: 40px 0 20px;
}
@media only screen and (max-width: 47.99em) {
  h4 {
    font-size: 19px;
  }
}
h4 + h5 {
  margin-top: 0;
}

h6 {
  margin: 16px 0 10px 0;
  font-size: 17px;
  color: #131416;
}

.text-color-red {
  color: #BD2C0F;
}

.text-color-blue {
  color: #0B50D0;
}

.text-color-navy {
  color: #052B57;
}

.content-img-box {
  background-color: #F4F5F6;
  height: 100px;
}

.is-right {
  text-align: right;
}

h5 {
  font-size: 19px;
  color: #131416;
  margin: 40px 0 16px;
}
@media only screen and (max-width: 47.99em) {
  h5 {
    font-size: 17px;
  }
}

.content-top-info {
  border-radius: 12px;
  background-color: #F4F5F6;
  border: 1px solid #D6E0EB;
  padding: 24px 40px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 47.99em) {
  .content-top-info {
    padding: 16px;
    border-radius: 8px;
  }
}
.content-top-info h5 {
  margin-top: 0;
}
.content-top-info .start-before {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #B1B8BE;
}
.content-top-info .start-before.line-none {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.content-top-info .start-before .title {
  margin-top: 24px;
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  color: #1E2124;
}
.content-top-info .start-before > strong {
  display: block;
  font-size: 19px;
  color: #131416;
  font-weight: 700;
  padding: 12px 0 12px 60px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_start_before.svg) no-repeat 0 center;
  background-size: 48px !important;
  margin-bottom: 16px;
}
.content-top-info .start-before > span {
  display: block;
  font-size: 17px;
  line-height: 150%;
}
@media only screen and (max-width: 47.99em) {
  .content-top-info .start-before > span {
    font-size: 15px;
  }
}
.content-top-info .start-before > span + span {
  margin-top: 8px;
}
.content-top-info .start-before > span.reference {
  font-size: 15px;
  color: #464C53;
  padding-left: 24px;
  position: relative;
}
.content-top-info .start-before > span.reference::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_reference.svg) no-repeat 0 center;
  position: absolute;
  top: 0;
  left: 0;
}
.content-top-info .ref {
  display: block !important;
  font-size: 15px !important;
  color: #096ab3;
  margin-top: 2px !important;
}
.content-top-info .info-list > li {
  font-size: 17px;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}
@media only screen and (max-width: 47.99em) {
  .content-top-info .info-list > li {
    font-size: 15px;
    padding-left: 12px;
  }
}
.content-top-info .info-list > li::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #464C53;
  position: absolute;
  top: 9px;
  left: 0;
}
@media only screen and (max-width: 47.99em) {
  .content-top-info .info-list > li::after {
    top: 7px;
  }
}
.content-top-info .info-list > li span {
  display: inline;
}
.content-top-info .info-list.single-item > li {
  padding-left: 0;
  margin-bottom: 0;
}
.content-top-info .info-list.single-item > li::after {
  display: none;
}
.content-top-info > span {
  color: #464C53;
}
.content-top-info .policy {
  margin-top: 24px;
}
.content-top-info .policy a {
  color: #131416;
  margin-bottom: 4px;
  padding-left: 24px;
  background-repeat: no-repeat;
  background-position: 0 center;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_hide.svg);
}
.content-top-info .policy a.active {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_show.svg);
}
.content-top-info .policy ul {
  display: none;
  border-radius: 12px;
  padding: 24px;
  background-color: #fff;
  margin-top: 7px;
}
.content-top-info .policy ul li {
  line-height: 150%;
  color: #464C53;
}
.content-top-info.type-normal .start-before {
  border: none;
  padding: 0;
  margin: 0;
}
.content-top-info.type-normal .start-before > strong {
  background: none;
  padding: 0;
}
.content-top-info .normal-type {
  margin-top: 0;
}
.content-top-info .normal-type li strong {
  font-weight: 400;
}

.content-body {
  margin-top: 48px;
  padding-bottom: 48px;
}
@media only screen and (max-width: 47.99em) {
  .content-body {
    margin-top: 40px;
  }
}
.content-body .content-section:first-child {
  margin: 0;
}
@media only screen and (max-width: 63.99em) {
  .content-body.has-floating {
    padding-right: 190px;
  }
}
@media only screen and (max-width: 47.99em) {
  .content-body.has-floating {
    padding-right: 0;
  }
}

.content-tab .tab {
  margin: 48px 0 0;
}
@media only screen and (max-width: 47.99em) {
  .content-tab .tab {
    margin: 32px 0 0;
  }
}

.content-section {
  margin-top: 48px;
}
.content-section + .content-section {
  margin-top: 80px;
}
@media only screen and (max-width: 47.99em) {
  .content-section + .content-section {
    margin-top: 40px;
  }
}
.content-section .content-foot {
  margin-top: 40px;
}
.content-section .logo {
  margin-top: 8px;
}
.content-section .logo > img {
  border-radius: 6px;
  border: 1px solid #B1B8BE;
}
@media only screen and (max-width: 29.99em) {
  .content-section .logo > img {
    width: 100%;
  }
}
.content-section .btn-wrap a {
  margin-right: 7px;
}
@media only screen and (max-width: 29.99em) {
  .content-section .btn-wrap a {
    margin-top: 5px;
  }
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 47.99em) {
  .flex-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
@media only screen and (max-width: 47.99em) {
  .flex-box > div {
    width: 100% !important;
  }
}
.flex-box.half-type > div {
  width: 50%;
}
.flex-box.half-type2 > div {
  width: calc(100% - 480px);
}
.flex-box.half-type2 > div:last-child {
  width: 456px;
}

.introduce-img {
  border-radius: 12px;
  background-color: #F4F5F6;
}
@media only screen and (max-width: 47.99em) {
  .introduce-img {
    height: 300px;
  }
}

.introduce-content .text {
  border-radius: 12px;
  background-color: #E6E8EA;
  height: 224px;
}
@media only screen and (max-width: 47.99em) {
  .introduce-content .text {
    height: auto;
  }
}
.introduce-content .map-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 12px;
  border: 1px solid #D6E0EB;
  padding: 18px 16px 18px 28px;
  margin-top: 16px;
}
@media only screen and (max-width: 47.99em) {
  .introduce-content .map-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
    padding: 13px 16px;
  }
}
@media only screen and (max-width: 47.99em) {
  .introduce-content .map-info .file-name {
    width: 100%;
  }
}
.introduce-content .map-info .file-name span {
  margin-left: 44px;
}
@media only screen and (max-width: 47.99em) {
  .introduce-content .map-info .file-name span {
    margin-left: 16px;
  }
}
.introduce-content .map-info .checkbox-wrap .checkbox-type label {
  margin-left: 40px;
}
@media only screen and (max-width: 47.99em) {
  .introduce-content .map-info .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    text-align: right;
  }
}
.introduce-content .map-info .btn a {
  font-size: 15px;
  padding-right: 18px;
  background-repeat: no-repeat;
  background-position: right center;
}
@media only screen and (max-width: 47.99em) {
  .introduce-content .map-info .btn a {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
.introduce-content .map-info .btn a.download {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_download.svg);
}
.introduce-content .map-info .btn a.view {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_view.svg);
  margin-left: 32px;
}

.content-map {
  border-radius: 12px;
  background-color: #CDD1D5;
  min-height: 500px;
}

.content-map-info {
  border-radius: 12px;
  background-color: #F4F5F6;
  padding: 40px;
  margin-top: 20px;
}
@media only screen and (max-width: 47.99em) {
  .content-map-info {
    padding: 24px;
  }
}
.content-map-info ul li {
  padding-left: 25px;
  position: relative;
  line-height: 150%;
}
.content-map-info ul li + li {
  margin-top: 16px;
}
.content-map-info ul li::after {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #1E2124;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 13px;
}
.content-map-info ul li span {
  display: block;
}

.normal-text {
  color: #131416;
  margin-bottom: 16px;
}

.process,
.process-portal {
  display: inline-block;
  border-radius: 12px;
  border: 1px solid #B1B8BE;
  padding: 32px 140px 32px 32px;
  position: relative;
}
@media only screen and (max-width: 63.99em) {
  .process,
  .process-portal {
    padding: 32px;
  }
}
.process::after,
.process-portal::after {
  content: "";
  width: 100%;
  height: 72px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(transparent));
  background: linear-gradient(to top, #fff, transparent);
  position: absolute;
  left: 0;
  bottom: 59px;
}
.process.active > ul,
.process-portal.active > ul {
  height: auto;
  margin-bottom: 32px;
}
.process.active > ul::after,
.process-portal.active > ul::after {
  height: 95%;
}
.process.active::after,
.process-portal.active::after {
  display: none;
}
.process > ul,
.process-portal > ul {
  height: 264px;
  overflow: hidden;
  position: relative;
}
.process > ul > li,
.process-portal > ul > li {
  position: relative;
  padding-left: 56px;
  padding-bottom: 32px;
}
.process > ul > li:not(:last-child)::after,
.process-portal > ul > li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #D6E0EB;
  position: absolute;
  top: 0;
  left: 11px;
  z-index: 1;
}
.process > ul > li:last-child,
.process-portal > ul > li:last-child {
  padding-bottom: 0;
}
.process > ul > li > strong,
.process-portal > ul > li > strong {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  border-radius: 4px;
  background-color: #063A74;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.process > ul > li > .tit,
.process-portal > ul > li > .tit {
  color: #052B57;
  font-weight: 700;
}
.process > ul > li > .tit > span,
.process-portal > ul > li > .tit > span {
  color: #1E2124;
  font-weight: 400;
  margin-left: 8px;
  padding-left: 8px;
  position: relative;
}
.process > ul > li > .tit > span::after,
.process-portal > ul > li > .tit > span::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #CDD1D5;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.process > ul > li > .txt,
.process-portal > ul > li > .txt {
  color: #464C53;
  margin-top: 6px;
}
.process .all-view,
.process-portal .all-view {
  display: block;
  padding-left: 56px;
  position: relative;
}
.process .all-view::after,
.process-portal .all-view::after {
  content: "+";
  width: 24px;
  height: 24px;
  background-color: #D6E0EB;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 28px;
  text-align: center;
  font-weight: 200;
  border-radius: 4px;
}
.process .all-view span,
.process-portal .all-view span {
  padding-right: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg) no-repeat right center;
}
.process .normal-type.dot,
.process-portal .normal-type.dot {
  margin-left: 25px;
}
.process .normal-type.dot > li + li,
.process-portal .normal-type.dot > li + li {
  margin-top: 4px;
}
.process .normal-type.dot > li::after,
.process-portal .normal-type.dot > li::after {
  width: 3px;
  height: 3px;
  top: 11px;
  left: -14px;
}
.process.none::after,
.process-portal.none::after {
  display: none;
}
.process.none > ul,
.process-portal.none > ul {
  height: auto;
}

.content-file > 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: 24px;
}
@media only screen and (max-width: 47.99em) {
  .content-file > ul {
    gap: 16px;
  }
}
.content-file > ul > 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;
  padding: 14px 16px;
  border: 1px solid #CDD1D5;
  border-radius: 8px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  color: #131416;
}
@media only screen and (max-width: 47.99em) {
  .content-file > ul > li {
    gap: 8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.content-file > ul > li .file-name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 17px;
  font-weight: 400;
}
@media only screen and (max-width: 47.99em) {
  .content-file > ul > li .file-name {
    font-size: 15px;
  }
}
.content-file > ul > li .file-name .file-size {
  font-weight: 400;
  color: #6D7882;
}
.content-file > ul > li .btn-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 47.99em) {
  .content-file > ul > li .btn-wrap {
    width: 100%;
    gap: 8px;
  }
}
.content-file > ul > li .btn-wrap .btn-normal {
  width: auto;
  font-size: 17px;
  background-size: 20px;
  padding-right: 23px;
  margin: 0;
}
@media only screen and (max-width: 47.99em) {
  .content-file > ul > li .btn-wrap .btn-normal {
    font-size: 15px;
    background-size: 16px;
  }
}
.content-file > ul > li .btn-wrap .btn-normal + .btn-normal {
  position: relative;
}
.content-file > ul > li .btn-wrap .btn-normal + .btn-normal::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #8A949E;
  position: absolute;
  top: 10px;
  left: -3px;
}
@media only screen and (max-width: 47.99em) {
  .content-file > ul > li .btn-wrap .btn-normal + .btn-normal::after {
    left: 2px;
  }
}
.content-file > ul > li .btn-wrap .btn-normal.btn-arrow {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_search.svg);
}

.content-file:not(:has(> ul)) {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 19px;
  border: 1px solid #CDD1D5;
  border-radius: 8px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  color: #131416;
}
@media only screen and (max-width: 47.99em) {
  .content-file:not(:has(> ul)) {
    gap: 8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.content-file:not(:has(> ul)) > .file-name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.content-file:not(:has(> ul)) .btn-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 47.99em) {
  .content-file:not(:has(> ul)) .btn-wrap {
    width: 100%;
    gap: 8px;
  }
}

.img-info-text {
  padding: 17px;
  border: 1px solid #D6E0EB;
  border-radius: 12px;
  margin-top: 44px;
}
.img-info-text p {
  position: relative;
  padding-left: 23px;
}
.img-info-text p::after {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 50%;
}

.course-info {
  padding: clamp(20px, 10px + 2.5vw, 40px);
  border-radius: 12px;
  background-color: #F4F5F6;
}
@media only screen and (max-width: 47.99em) {
  .course-info {
    padding: 24px;
  }
}
.course-info .course-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 47.99em) {
  .course-info .course-tit {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media only screen and (max-width: 29.99em) {
  .course-info .course-tit {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.course-info .course-tit dt {
  font-size: 19px;
  font-weight: 700;
  color: #0B50D0;
  padding: 4px 16px;
  background-color: #ECF2FE;
  border: 1px solid #0B50D0;
  border-radius: 100px;
  white-space: nowrap;
}
.course-info .course-tit dd {
  font-size: 19px;
  font-weight: 700;
}
@media only screen and (max-width: 47.99em) {
  .course-info .course-tit dd {
    width: 100%;
  }
}

.step-wrap ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 63.99em) {
  .step-wrap ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    row-gap: 16px;
  }
}
.step-wrap ul li {
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-top: 30px;
}
@media only screen and (max-width: 63.99em) {
  .step-wrap ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
@media only screen and (max-width: 63.99em) {
  .step-wrap ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 25%;
    gap: 0;
  }
}
@media only screen and (max-width: 22.5em) {
  .step-wrap ul li {
    width: 100%;
    -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;
    padding-top: 0;
  }
}
.step-wrap ul li::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  z-index: 3;
  background-repeat: no-repeat;
  background-position: left top;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_step_none.svg);
}
.step-wrap ul li.check::after {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_step_active.svg);
}
.step-wrap ul li.end::after {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_step_check.svg);
}
.step-wrap ul li::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  height: 2px;
  background: #CDD1D5;
  z-index: 2;
}
@media only screen and (max-width: 22.5em) {
  .step-wrap ul li::before {
    top: 9px;
    bottom: -16px;
    left: 9px;
    height: auto;
    width: 2px;
  }
}
.step-wrap ul li:last-child::before {
  display: none;
}
@media only screen and (max-width: 22.5em) {
  .step-wrap ul li dl {
    margin-left: 40px;
  }
}
.step-wrap ul li dl dt {
  font-size: 1.3rem;
  color: #464C53;
}
.step-wrap ul li dl dd {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E2124;
  word-break: keep-all;
  word-wrap: break-word;
}
.step-wrap .state-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.step-wrap .state-text span {
  color: #464C53;
}
.step-wrap .state-text span.active {
  color: #A50082;
  font-weight: 700;
}

.floating-menu {
  width: 160px;
  position: fixed;
  top: 297px;
  right: calc((100% - 1850px) / 2 + 24px);
  z-index: 99;
  background-color: #fff;
}
@media screen and (max-width: 1830px) and (min-width: 1025px) {
  .floating-menu {
    display: none;
  }
}
@media only screen and (max-width: 63.99em) {
  .floating-menu {
    right: 20px;
  }
}
@media only screen and (max-width: 47.99em) {
  .floating-menu {
    position: static;
    width: 100%;
  }
}
.floating-menu dl dt {
  font-size: 13px;
}
.floating-menu dl dd {
  color: #131416;
  font-weight: 700;
  margin-top: 4px;
}
.floating-menu ul {
  margin: 16px 0;
}
.floating-menu ul li a {
  display: block;
  font-size: 15px;
  color: #464C53;
  padding: 4px 0px 4px 8px;
  border-radius: 4px;
}
@media only screen and (max-width: 63.99em) {
  .floating-menu ul li a {
    padding: 4px 0;
  }
}
.floating-menu ul li.active a {
  background-color: #EEF2F7;
  color: #063A74;
  font-weight: 700;
}
.floating-menu .apply {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 6px;
  background-color: #222;
  color: #fff;
  text-align: center;
  font-size: 15px;
}

.content-control {
  margin-top: 64px;
}
.content-control a {
  display: block;
  font-size: 15px;
  text-align: center;
  padding: 5px 32px;
  color: #fff;
  background-color: #58616A;
}
.content-control a span {
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 12px;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_white.svg);
}
.content-control a.active span {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_white_active.svg);
}

.hidden-control {
  height: 700px;
  overflow: hidden;
}
.hidden-control.active {
  height: auto;
  overflow: visible;
}

.course-alarm {
  padding: 11px 16px;
  border-radius: 10px;
  background-color: #E7F4FE;
  border: 1px solid #D3EBFD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 48px;
}
@media only screen and (max-width: 47.99em) {
  .course-alarm {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.course-alarm .alarm {
  width: 78px;
  padding: 12px 10px;
  border-radius: 6px;
  background-color: #0B78CB;
}
.course-alarm .alarm span {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  padding-left: 28px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_alarm.svg) no-repeat 0 center;
}
.course-alarm span.tit {
  font-weight: 700;
  color: #0B78CB;
}

.mo-scroll .content-table {
  min-width: 768px;
}

@media only screen and (max-width: 47.99em) {
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
  }
  .table-wrapper.mo.is-scrolled {
    position: relative;
  }
  .table-wrapper.mo.is-scrolled::after {
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: -webkit-gradient(linear, right top, left top, from(rgba(68, 68, 68, 0.3)), color-stop(40%, rgba(68, 68, 68, 0.15)), to(transparent));
    background: linear-gradient(to left, rgba(68, 68, 68, 0.3) 0%, rgba(68, 68, 68, 0.15) 40%, transparent 100%);
  }
  .table-wrapper.mo .content-table {
    min-width: 768px;
  }
}

.content-table thead th {
  background-color: #EEF2F7;
  color: #131416;
  font-size: 15px;
  padding: 8px 15px;
  border: 1px solid #CDD1D5;
  border-width: 1px 0px;
  text-align: center;
  word-break: break-all;
}
.content-table thead th ~ td {
  border-width: 1px 0px;
}
.content-table tbody th,
.content-table tfoot th {
  border: 1px solid #CDD1D5;
  color: #131416;
  font-size: 15px;
  background-color: #EEF2F7;
  border-left: none;
  word-break: break-all;
}
.content-table tbody th ~ td,
.content-table tfoot th ~ td {
  border-width: 1px 0px;
}
.content-table tbody td,
.content-table tfoot td {
  padding: 12px 16px;
  color: #464C53;
  border: 1px solid #CDD1D5;
  border-width: 0px 0px 1px;
  background-color: #fff;
  text-align: center;
  word-break: break-all;
  font-weight: 400;
  font-size: 17px;
}
@media only screen and (max-width: 47.99em) {
  .content-table tbody td,
  .content-table tfoot td {
    font-size: 15px !important;
  }
}
.content-table tbody td.is-td-left,
.content-table tfoot td.is-td-left {
  text-align: left;
}
.content-table tbody td.is-td-right,
.content-table tfoot td.is-td-right {
  text-align: right;
}
.content-table tbody td.is-td-center,
.content-table tfoot td.is-td-center {
  text-align: center;
}
.content-table tbody td .btn-normal,
.content-table tfoot td .btn-normal {
  white-space: nowrap;
}
.content-table .text-align-right {
  text-align: right;
}
.content-table .text-align-left {
  text-align: left;
}
.content-table .mobile-tit {
  display: none;
}
.content-table .normal-type {
  margin: 0;
}
.content-table .normal-type li + li {
  margin-top: 3px;
}
.content-table.is-left th, .content-table.is-left td {
  text-align: left;
}
.content-table.is-right th, .content-table.is-right td {
  text-align: right;
}
.content-table.is-border {
  border-spacing: 0;
  border-top: 1px solid #CDD1D5;
  border-right: 2px solid #fff;
}
.content-table.is-border tr th {
  border-width: 0 1px 1px 0;
  padding: 12px 10px;
  text-align: center;
}
.content-table.is-border tr td {
  border-width: 0 1px 1px 0;
  padding: 12px 10px;
}
.content-table.is-border tr td.alignC {
  text-align: center;
}
.content-table.is-border > tfoot tr th,
.content-table.is-border > tfoot tr th[scope=row] {
  background-color: #fff;
}
.content-table.is-border > thead + tbody tr th,
.content-table.is-border > thead + tbody tr th[scope=row] {
  background-color: #fff;
}
@media only screen and (max-width: 29.99em) {
  .content-table .btn-normal {
    margin: 0 !important;
  }
}
.content-table .btn-normal.link-text:not(.box-download) {
  font-size: 17px;
}

.table-col {
  padding: 24px 0;
  border: 1px solid #CDD1D5;
  border-width: 1px 0 1px;
}
.table-col.is-row {
  padding: 0;
  border-width: 1px 0 0 0;
}
.table-col.is-row > ul {
  padding: 24px;
  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;
}
@media only screen and (max-width: 29.99em) {
  .table-col.is-row > ul {
    padding: 24px 0;
  }
}
.table-col.is-row > ul > li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.table-col.is-border-bottom {
  border-width: 1px 0;
}
.table-col > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.table-col > ul > li + li {
  margin-top: 16px;
}
.table-col > ul > li > strong {
  display: block;
  width: 180px;
  color: #131416;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 63.99em) {
  .table-col > ul > li > strong {
    width: 86px;
  }
}
.table-col > ul > li > .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.table-col > ul > li > .text > span {
  display: block;
  color: #131416;
}
.table-col > ul > li > .text > span + span {
  margin-top: 8px;
}
.table-col > ul > li > .text > span > .file-name {
  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;
  padding: 14px 16px;
  border: 1px solid #CDD1D5;
  border-radius: 8px;
}
@media only screen and (max-width: 47.99em) {
  .table-col > ul > li > .text > span > .file-name {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
}
.table-col > ul > li > .text > span > .file-name > .btn-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media only screen and (max-width: 47.99em) {
  .table-col > ul > li > .text > span > .file-name > .btn-wrap {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.table-col > ul > li > .text > span > .file-name > .btn-wrap .btn-normal {
  width: auto;
  font-size: 17px;
  background-size: 20px;
  padding-right: 23px;
  margin: 0;
}
.table-col > ul > li > .text > span > .file-name > .btn-wrap .btn-normal + .btn-normal {
  position: relative;
  margin-left: 20px;
}
.table-col > ul > li > .text > span > .file-name > .btn-wrap .btn-normal + .btn-normal::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #8A949E;
  position: absolute;
  top: 10px;
  left: -3px;
}
.table-col > ul > li > .img {
  width: 100%;
  max-width: 520px;
  max-height: 520px;
}
.table-col > ul > li > .img > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.content-head {
  padding-top: 24px;
}
.content-head .breadcrumb {
  margin: 0 0 40px;
}
.content-head .breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  row-gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 47.99em) {
  .content-head .breadcrumb ul {
    gap: 60px;
  }
}
.content-head .breadcrumb ul li {
  position: relative;
  font-size: 15px;
}
.content-head .breadcrumb ul li::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_button.svg) no-repeat 0 0;
  position: absolute;
  top: 50%;
  right: -19px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.content-head .breadcrumb ul li:last-child::after {
  display: none;
}
.content-head .breadcrumb ul li a {
  padding: 1px 4px;
}
.content-head .breadcrumb ul li a span {
  border-bottom: 1px solid #1E2124;
  white-space: nowrap;
}
.content-head .breadcrumb ul li:first-child a {
  padding: 1px 4px 1px 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_home.svg) no-repeat 4px 2px;
}
@media only screen and (max-width: 47.99em) {
  .content-head .breadcrumb ul li {
    display: none;
  }
  .content-head .breadcrumb ul li:first-child, .content-head .breadcrumb ul li:last-child {
    display: block;
  }
  .content-head .breadcrumb ul li:last-child {
    position: relative;
  }
  .content-head .breadcrumb ul li:last-child::before {
    content: "···";
    font-size: 15px;
    position: absolute;
    top: 0;
    left: -35px;
  }
  .content-head .breadcrumb ul li:last-child::after {
    display: block;
    left: -17px;
  }
}
@media only screen and (max-width: 47.99em) {
  .content-head .breadcrumb.ellipsis-items ul {
    gap: 24px;
  }
}
@media only screen and (max-width: 47.99em) {
  .content-head .breadcrumb.ellipsis-items ul li:last-child:after {
    display: none;
  }
}
.content-head .breadcrumb.ellipsis-items ul li:last-child::before {
  display: none;
}
.content-head .content-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content-head .content-title-wrap h2 {
  font-size: 40px;
}
@media only screen and (max-width: 47.99em) {
  .content-head .content-title-wrap h2 {
    font-size: 32px;
  }
}
.content-head .content-title-wrap .content-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media only screen and (max-width: 63.99em) {
  .content-head .content-title-wrap .content-actions {
    display: none;
  }
}
.content-head .content-title-wrap .content-actions > li {
  position: relative;
}
.content-head .content-title-wrap .content-actions > li:has(> .link) {
  display: none;
}
.content-head .content-title-wrap .content-actions > li > a {
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.content-head .content-title-wrap .content-actions > li > a.link {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_link.svg);
}
.content-head .content-title-wrap .content-actions > li > a.share {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_share.svg);
}
.content-head .content-title-wrap .content-actions > li > a.print {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_print.svg);
}
.content-head .content-title-wrap .content-actions .share-box {
  display: none;
  width: 223px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #CDD1D5;
  position: absolute;
  top: -6px;
  right: 60px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
  z-index: 999;
}
@media only screen and (max-width: 47.99em) {
  .content-head .content-title-wrap .content-actions .share-box {
    width: 180px;
    padding: 8px 10px;
    top: -2px;
    left: -196px;
  }
}
.content-head .content-title-wrap .content-actions .share-box::after {
  content: "";
  width: 12px;
  height: 22px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_share_box.svg) no-repeat 0 0;
  position: absolute;
  top: 50%;
  right: -12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.content-head .content-title-wrap .content-actions .share-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.content-head .content-title-wrap .content-actions .share-box ul li + li {
  margin-left: 8px;
}
@media only screen and (max-width: 47.99em) {
  .content-head .content-title-wrap .content-actions .share-box ul li + li {
    margin: 0;
  }
}
@media only screen and (max-width: 47.99em) {
  .content-head .content-title-wrap .content-actions .share-box ul li a img {
    width: 25px;
  }
}
.content-head .content-title-wrap .content-actions .share-box .share-qr {
  display: none;
  width: 400px;
  padding: 56px 40px;
  border: 1px solid #B1B8BE;
  border-radius: 12px;
  background-color: #fff;
  position: absolute;
  top: 70px;
  right: 0;
}
@media only screen and (max-width: 29.99em) {
  .content-head .content-title-wrap .content-actions .share-box .share-qr {
    top: 70px;
    right: 0;
    width: 360px;
    padding: 20px;
  }
}
.content-head .content-title-wrap .content-actions .share-box .share-qr .close {
  display: block;
  width: 24px;
  height: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_close.svg) no-repeat 0 0/cover;
  position: absolute;
  top: 24px;
  right: 24px;
}
.content-head .content-title-wrap .content-actions .share-box .share-qr p {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 47.99em) {
  .content-head .content-title-wrap .content-actions .share-box .share-qr p {
    font-size: 20px;
  }
}
.content-head .content-title-wrap .content-actions .share-box .share-qr .qr-img {
  text-align: center;
  margin: 8px 0;
}
.content-head .content-title-wrap .content-actions .share-box .share-qr dl + dl {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #CDD1D5;
}
@media only screen and (max-width: 47.99em) {
  .content-head .content-title-wrap .content-actions .share-box .share-qr dl + dl {
    margin-top: 16px;
    padding-top: 16px;
  }
}
.content-head .content-title-wrap .content-actions .share-box .share-qr dl dt {
  font-size: 19px;
  font-weight: 700;
}
@media only screen and (max-width: 47.99em) {
  .content-head .content-title-wrap .content-actions .share-box .share-qr dl dt {
    font-size: 17px;
  }
}
.content-head .content-title-wrap .content-actions .share-box .share-qr dl dd {
  color: #464C53;
}
@media only screen and (max-width: 47.99em) {
  .content-head .content-title-wrap .content-actions .share-box .share-qr dl dd {
    font-size: 15px;
  }
}
.content-head .content-title-wrap .content-actions .share-box .share-qr dl dd .link {
  color: #0B50D0;
  text-decoration: underline;
  position: relative;
  word-break: break-all;
}
.content-head .content-title-wrap .content-actions .share-box .share-qr dl dd .link i {
  margin-left: 10px;
}

.content-license {
  padding: 30px 40px;
  border-radius: 12px;
  border: 1px solid #CDD1D5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 48px 0;
}
@media only screen and (max-width: 29.99em) {
  .content-license {
    padding: 24px 20px;
    margin: 40px 0 24px;
  }
}
.content-license .opentype-txt-wrap {
  font-size: 17px;
  color: #131416;
}
@media only screen and (max-width: 29.99em) {
  .content-license .opentype-txt-wrap {
    font-size: 17px;
  }
}
.content-license .opentype-txt-wrap strong {
  color: #063A74;
}
.content-license .license-info {
  width: 100%;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid #8A949E;
}
@media only screen and (max-width: 29.99em) {
  .content-license .license-info {
    font-size: 15px;
    padding-top: 24px;
    margin-top: 8px;
  }
}

.content-satisfaction {
  border-radius: 12px;
  background-color: #F4F5F6;
  padding: 30px 40px;
}
@media only screen and (max-width: 47.99em) {
  .content-satisfaction {
    border-radius: 8px;
    padding: 16px;
  }
}
.content-satisfaction .satisfaction-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 47.99em) {
  .content-satisfaction .satisfaction-select {
    display: block;
  }
}
.content-satisfaction .satisfaction-select p {
  font-size: 19px;
  color: #131416;
  font-weight: 700;
}
@media only screen and (max-width: 47.99em) {
  .content-satisfaction .satisfaction-select p {
    font-size: 17px;
  }
}
.content-satisfaction .satisfaction-select ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 47.99em) {
  .content-satisfaction .satisfaction-select ul {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 47.99em) {
  .content-satisfaction .satisfaction-select ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
.content-satisfaction .satisfaction-select ul li a {
  display: block;
  width: 144px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #B1B8BE;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 17px;
}
@media only screen and (max-width: 47.99em) {
  .content-satisfaction .satisfaction-select ul li a {
    width: 100%;
    font-size: 15px;
  }
}
.content-satisfaction .satisfaction-select ul li a span {
  padding-right: 28px;
  background-repeat: no-repeat;
  background-position: right center;
  position: relative;
}
@media only screen and (max-width: 47.99em) {
  .content-satisfaction .satisfaction-select ul li a span {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.content-satisfaction .satisfaction-select ul li a.yes span {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_yes.svg);
}
.content-satisfaction .satisfaction-select ul li a.no span {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_no.svg);
}
.content-satisfaction .satisfaction-select ul li a.active {
  border-color: #0B50D0;
  background-color: #ECF2FE;
  color: #0B50D0;
}
.content-satisfaction .satisfaction-select ul li a.active span {
  padding-left: 24px;
}
.content-satisfaction .satisfaction-select ul li a.active span::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_yes_check.svg) no-repeat 0 0;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.content-satisfaction .satisfaction-select ul li a.active.yes span {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_yes_active.svg);
}
.content-satisfaction .satisfaction-select ul li a.active.no span {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_no_active.svg);
}
.content-satisfaction .satisfaction-select ul li a:hover {
  border-color: #0B50D0;
  background-color: #ECF2FE;
  color: #0B50D0;
}
.content-satisfaction .satisfaction-select ul li a:hover.yes span {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_yes_active.svg);
}
.content-satisfaction .satisfaction-select ul li a:hover.no span {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_no_active.svg);
}
.content-satisfaction .satisfaction-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #8A949E;
}
@media only screen and (max-width: 47.99em) {
  .content-satisfaction .satisfaction-info {
    display: block;
  }
}
.content-satisfaction .satisfaction-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.content-satisfaction .satisfaction-info dl:first-child {
  position: relative;
}
.content-satisfaction .satisfaction-info dl:first-child::after {
  content: "";
  width: 2px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #1E2124;
}
@media only screen and (max-width: 47.99em) {
  .content-satisfaction .satisfaction-info dl:first-child::after {
    display: none;
  }
}

.content-foot {
  margin-top: 80px;
}
@media only screen and (max-width: 47.99em) {
  .content-foot {
    margin: 0;
  }
}

.content-relation {
  background-color: #F4F5F6;
  border-radius: 12px;
  padding: 16px 24px 16px 24px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .content-relation {
    padding: 16px 20px 16px 20px;
  }
}
.content-relation p {
  color: #052B57;
  font-weight: 700;
  padding-left: 28px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_relation.svg) no-repeat 0 center;
}
.content-relation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 12px;
}
.content-relation ul li a {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid #CDD1D5;
  background-color: #fff;
  border-radius: 50px;
}

.box-basic-wrap {
  border: 1px solid #B1B8BE;
  padding: 4rem;
  border-radius: 12px;
  position: relative;
}
.box-basic-wrap h4 {
  margin: 0;
}
.box-basic-wrap .essential-text {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 1;
}
.box-basic-wrap .essential-text span {
  margin-right: 5px;
  color: #ab2b36;
}

.drag-file-box {
  text-align: center;
  background-color: #E6E8EA;
  border-radius: 12px;
  padding: 40px;
}
@media (max-width: 480px) {
  .drag-file-box {
    padding: 24px;
  }
}
.drag-file-box p {
  font-size: 19px;
}

.file-list .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.file-list .num strong span {
  color: #A50082;
}
.file-list ul {
  margin-top: 24px;
}
.file-list ul li {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #CDD1D5;
}
.file-list ul li + li {
  margin-top: 16px;
}
.file-list ul li .file-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #131416;
  gap: 16px;
}
@media only screen and (max-width: 47.99em) {
  .file-list ul li .file-name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 47.99em) {
  .file-list ul li .file-name:has(i) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.file-list ul li i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}
.file-list ul li.error {
  border-width: 2px;
  border-color: #DE3412;
  background-color: #FDEFEC;
}
.file-list ul li.error .del {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  padding-right: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_tag_del.svg) no-repeat right center/20px;
}
.file-list ul li.error .error-txt {
  color: #BD2C0F;
  margin-top: 16px;
  padding: 12px 0 0 24px;
  border-top: 1px solid #8A949E;
  background: url(/humanframe/theme/global/assets/images/ico/ico_error.svg) no-repeat 0 13px;
}
.file-list ul li.error .file-name {
  -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;
}
@media only screen and (max-width: 47.99em) {
  .file-list ul li .btn-wrap {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: right;
  }
  .file-list ul li .btn-wrap a {
    width: auto;
  }
}

.search-wrap {
  position: relative;
}
.search-wrap .search-head {
  height: 206px;
  background: #EEF2F7;
  position: relative;
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-head {
    height: 100%;
  }
}
.search-wrap .search-head::before {
  content: "";
  width: 99vw;
  height: 100%;
  background-color: #EEF2F7;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-head::before {
    z-index: 10;
    width: 100vw;
  }
}
.search-wrap .search-head .content-head {
  padding: 0 0 16px;
}
.search-wrap .search-head .content-head .content-title-wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search-wrap .search-head .box {
  width: 792px;
  margin: 0 auto;
}
.search-wrap .search-head .box .form-wrap input {
  height: 80px;
  font-size: 19px;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-head .box .form-wrap input {
    height: 64px;
  }
}
.search-wrap .search-head .box .search-plus {
  display: inline-block;
  padding-left: 28px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_search_plus.svg) no-repeat 0 center;
  font-size: 19px;
  margin-top: 12px;
}
.search-wrap .search-body {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  position: relative;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body {
    display: block;
    margin-top: 20px;
  }
}
.search-wrap .search-body .board-table-head {
  margin-top: 40px;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .board-table-head {
    margin: 0;
  }
}
.search-wrap .search-body .board-table-head .total {
  line-height: 200%;
}
.search-wrap .search-body .board-table-head .total .line {
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #8A949E;
  margin: 0px 8px 0px 8px;
}
@media only screen and (min-width: 29.99em) {
  .search-wrap .search-body .board-table-head .total br {
    display: none;
  }
}
.search-wrap .search-body .board-table-head .board-option dl:first-child {
  display: none;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .board-table-head .board-option dl:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 35px;
  }
  .search-wrap .search-body .board-table-head .board-option dl:first-child dt {
    right: 30px;
    left: auto;
  }
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .board-table-head .board-option dl:first-child dd {
    display: block !important;
    top: 3px;
  }
}
.search-wrap .search-body .board-table-head .board-option dl:first-child dd a {
  display: block;
  padding: 0;
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_filter.svg) no-repeat 0 0;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .board-table-head .board-option dl:nth-child(2) {
    display: none;
  }
}
.search-wrap .search-body .board-table-head .board-option dl:last-child::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #8A949E;
  position: absolute;
  top: 5px;
  left: -13px;
}
.search-wrap .search-body .board-table-head .board-option .form-wrap .select-control {
  width: 55px;
  height: 26px;
  border: none;
  color: #1E2124;
  background-position: right center;
  padding: 0px;
}
.search-wrap .search-body .search-filter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 282px;
          flex: 0 0 282px;
  background-color: #fff;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter {
    display: none;
    width: 100%;
    height: 99vh;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99999999;
    padding: 24px 0;
    border-radius: 12px 12px 0 0;
    overflow-y: auto;
  }
}
.search-wrap .search-body .search-filter h4 {
  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;
  margin: 0 0 16px;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter h4 {
    margin: 0 0 90px;
    padding: 0 16px;
    font-size: 19px;
  }
}
.search-wrap .search-body .search-filter h4 .close-btn {
  display: none;
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_close.svg) no-repeat 0 0/100%;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter h4 .close-btn {
    display: block;
  }
}
.search-wrap .search-body .search-filter h4 .reset {
  font-size: 19px;
  font-weight: 400;
  padding-right: 27px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_reset.svg) no-repeat right center/22px;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter .filter-list {
    padding: 0 16px;
  }
}
.search-wrap .search-body .search-filter .filter-list .tit {
  display: block;
  font-weight: 700;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg);
  border-top: 1px solid #6D7882;
  padding: 16px 0px 16px 0px;
}
.search-wrap .search-body .search-filter .filter-list .tit strong {
  color: #fff;
  padding: 1px 8px;
  border-radius: 1000px;
  background-color: #083891;
  vertical-align: middle;
  font-size: 15px;
}
.search-wrap .search-body .search-filter .filter-list .filter-of {
  display: none;
}
.search-wrap .search-body .search-filter .filter-list .filter-of .form-wrap {
  margin-top: 24px;
}
.search-wrap .search-body .search-filter .filter-list .filter-of .form-wrap label {
  display: block;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 8px;
}
.search-wrap .search-body .search-filter .filter-list .filter-of .form-wrap .btn-normal {
  width: 100%;
  margin-top: 8px;
}
.search-wrap .search-body .search-filter .filter-list .checkbox-wrap .checkbox-type + .checkbox-type {
  margin-top: 20px;
}
.search-wrap .search-body .search-filter .filter-list .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  overflow: hidden;
}
.search-wrap .search-body .search-filter .filter-list .date > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  position: relative;
}
.search-wrap .search-body .search-filter .filter-list .date > div::after {
  content: "";
  width: 5px;
  height: 1px;
  background-color: #1E2124;
  position: absolute;
  bottom: 17px;
  left: -11px;
}
.search-wrap .search-body .search-filter .filter-list .date label {
  display: block;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 8px;
}
.search-wrap .search-body .search-filter .filter-list .date input {
  background-image: none;
}
.search-wrap .search-body .search-filter .filter-list .radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.search-wrap .search-body .search-filter .filter-list .btn-normal {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
}
.search-wrap .search-body .search-filter .filter-list .btn-normal.active {
  border-color: #256EF4;
  background-color: #ECF2FE;
  color: #0B50D0;
}
@media only screen and (min-width: 63.99em) {
  .search-wrap .search-body .search-filter .filter-list .btn-normal.active {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.search-wrap .search-body .search-filter .filter-list .btn-normal.active::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_search_check.svg) no-repeat 0 0;
  display: inline-block;
}
.search-wrap .search-body .search-filter .filter-list.active .tit {
  color: #052B57;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_top.svg);
}
.search-wrap .search-body .search-filter .filter-list.active .filter-of {
  display: block;
  padding-bottom: 20px;
}
.search-wrap .search-body .search-filter .filter-list:nth-child(2) .tit {
  border-top: 1px solid #6D7882;
}
.search-wrap .search-body .search-filter .search-item {
  border-radius: 8px;
  background-color: #EEF2F7;
  margin-top: 40px;
}
.search-wrap .search-body .search-filter .search-item + .search-item {
  margin-top: 24px;
}
.search-wrap .search-body .search-filter .search-item .tit {
  font-size: 19px;
  color: #464C53;
  padding: 12px 24px;
  border-bottom: 1px solid #CDD1D5;
  font-weight: 700;
}
.search-wrap .search-body .search-filter .search-item .list {
  padding: 16px 24px 24px;
}
.search-wrap .search-body .search-filter .search-item .list ul 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;
}
.search-wrap .search-body .search-filter .search-item .list ul li + li {
  margin-top: 7px;
}
.search-wrap .search-body .search-filter .search-item .list ul li a {
  width: 100%;
  display: block;
}
.search-wrap .search-body .search-filter .search-item .list .all-del {
  display: block;
  text-align: center;
  margin-top: 30px;
}
.search-wrap .search-body .search-filter .search-item .list .all-del span {
  padding-right: 30px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_search_del.svg) no-repeat right center;
}
.search-wrap .search-body .search-filter .search-item .list.my-search ul li a {
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_search_del.svg) no-repeat 0 0;
}
.search-wrap .search-body .search-filter .search-item .list.ranking-list ul li a {
  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;
}
.search-wrap .search-body .search-filter .search-item .list.ranking-list ul li strong {
  display: inline-block;
  width: 20px;
  font-weight: 400;
  margin-right: 8px;
}
.search-wrap .search-body .search-filter .search-item .list.ranking-list ul li .ranking {
  font-size: 15px;
  position: relative;
}
.search-wrap .search-body .search-filter .search-item .list.ranking-list ul li .ranking::before {
  font-size: 9px;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
.search-wrap .search-body .search-filter .search-item .list.ranking-list ul li .ranking.up {
  color: #AB2B36;
}
.search-wrap .search-body .search-filter .search-item .list.ranking-list ul li .ranking.up::before {
  content: "▲";
  color: #AB2B36;
}
.search-wrap .search-body .search-filter .search-item .list.ranking-list ul li .ranking.down {
  color: #1A80E5;
}
.search-wrap .search-body .search-filter .search-item .list.ranking-list ul li .ranking.down::before {
  content: "▼";
  color: #1A80E5;
}
.search-wrap .search-body .search-filter .search-item .list.ranking-list ul li .ranking.normal {
  color: #464C53;
}
.search-wrap .search-body .search-filter .board-search {
  position: absolute;
  top: 0;
  right: 0;
  left: 346px;
  padding: 20px 24px 20px 24px;
}
@media (max-width: 480px) {
  .search-wrap .search-body .search-filter .board-search {
    padding: 20px 20px 20px 20px;
  }
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter .board-search {
    width: 100%;
    top: 70px;
    left: 0;
    padding: 16px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter .board-search .none-filter {
    font-size: 15px;
  }
  .search-wrap .search-body .search-filter .board-search .none-filter span {
    display: block;
  }
}
.search-wrap .search-body .search-filter .board-search .filter {
  margin: 0;
  padding: 0;
  border: none;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter .board-search .filter {
    display: block;
  }
}
.search-wrap .search-body .search-filter .board-search .filter strong {
  width: 160px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter .board-search .filter strong {
    display: none;
  }
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter .board-search .filter .tag-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter .board-search .filter .tag-wrap a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .search-wrap .search-body .search-filter .board-search .filter .tag-wrap a:not(.reset) {
    padding: 2px 8px;
    font-size: 15px;
  }
  .search-wrap .search-body .search-filter .board-search .filter .tag-wrap a.reset {
    padding: 6px 14px;
  }
}
.search-wrap .search-body .search-filter .btn-wrap {
  gap: 8px;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter .btn-wrap {
    padding: 0 16px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.search-wrap .search-body .search-filter .btn-wrap .btn-normal {
  width: auto;
}
.search-wrap .search-body .search-filter .btn-wrap.between {
  gap: 16px;
  border-top: 1px solid #CDD1D5;
  padding-top: 24px;
}
@media only screen and (max-width: 63.99em) {
  .search-wrap .search-body .search-filter .btn-wrap.between {
    gap: 8px;
  }
}
.search-wrap .search-body .search-filter .btn-wrap.between .btn-normal {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}
.search-wrap .search-body .search-cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 47.99em) {
  .search-wrap .search-body .search-cont .tab {
    margin: 40px 0 32px;
  }
}
.search-wrap .search-body .search-cont .search-result .paginate {
  margin-top: 40px;
}
.search-wrap .search-body .search-cont .search-result > ul > li {
  border-bottom: 1px solid #8A949E;
  position: relative;
  padding: 40px 0;
}
@media only screen and (max-width: 47.99em) {
  .search-wrap .search-body .search-cont .search-result > ul > li {
    padding: 32px 0;
  }
}
.search-wrap .search-body .search-cont .search-result > ul > li:first-child {
  border-top: 1px solid #8A949E;
}
.search-wrap .search-body .search-cont .search-result > ul > li .badge-wrap {
  margin-bottom: 24px;
}
@media only screen and (max-width: 47.99em) {
  .search-wrap .search-body .search-cont .search-result > ul > li .badge-wrap {
    margin-bottom: 16px;
  }
}
.search-wrap .search-body .search-cont .search-result > ul > li .text {
  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: 0 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 24px;
}
@media only screen and (max-width: 47.99em) {
  .search-wrap .search-body .search-cont .search-result > ul > li .text {
    margin-bottom: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.search-wrap .search-body .search-cont .search-result > ul > li .text dl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 47.99em) {
  .search-wrap .search-body .search-cont .search-result > ul > li .text dl {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.search-wrap .search-body .search-cont .search-result > ul > li .text dl dt {
  font-size: 19px;
  font-weight: 700;
}
.search-wrap .search-body .search-cont .search-result > ul > li .text dl dd {
  color: #464C53;
  margin-top: 12px;
}
.search-wrap .search-body .search-cont .search-result > ul > li .text p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.search-wrap .search-body .search-cont .search-result > ul > li .text p + p {
  margin-top: 8px;
}
.search-wrap .search-body .search-cont .search-result > ul > li .text .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  height: 110px;
}
@media only screen and (max-width: 47.99em) {
  .search-wrap .search-body .search-cont .search-result > ul > li .text .img {
    height: auto;
    margin-top: 16px;
  }
}
.search-wrap .search-body .search-cont .search-result > ul > li .keyword {
  color: #096AB3;
  background-color: #E7F4FE;
}
.search-wrap .search-body .search-cont .search-result > ul > li .info {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 47.99em) {
  .search-wrap .search-body .search-cont .search-result > ul > li .info {
    display: block;
  }
}
.search-wrap .search-body .search-cont .search-result > ul > li .info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search-wrap .search-body .search-cont .search-result > ul > li .info ul li {
  position: relative;
  text-decoration: underline;
}
.search-wrap .search-body .search-cont .search-result > ul > li .info ul li::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg) no-repeat 0 0/100%;
  position: absolute;
  top: 5px;
  right: -20px;
}
.search-wrap .search-body .search-cont .search-result > ul > li .info ul li:last-child::after {
  display: none;
}
@media only screen and (max-width: 47.99em) {
  .search-wrap .search-body .search-cont .search-result > ul > li .info .btn-wrap {
    position: static;
    margin-top: 16px;
  }
  .search-wrap .search-body .search-cont .search-result > ul > li .info .btn-wrap a:first-child {
    padding: 5px 24px 5px 0;
  }
}
.search-wrap .search-body .search-cont .search-result > ul > li .date {
  font-weight: 400;
  color: #464C53;
  vertical-align: middle;
  margin-left: 12px;
}
.search-wrap .search-body .search-cont .search-result > ul > li .list-more {
  text-align: right;
  margin-top: 40px;
}
@media only screen and (max-width: 47.99em) {
  .search-wrap .search-body .search-cont .search-result > ul > li .list-more {
    margin-top: 24px;
  }
}
.search-wrap .search-body .search-cont .search-result > ul > li .list-more a {
  position: relative;
}
.search-wrap .search-body .search-cont .search-result > ul > li .list-more a::before {
  content: "+";
  display: inline-block;
  font-size: 29px;
  font-weight: 100;
}
.search-wrap .search-body .search-cont .search-result > ul > li.result-none {
  border-top: none;
}
.search-wrap .search-body .search-cont .search-result > ul > li.result-none dl dt {
  font-size: 19px;
  font-weight: 700;
}
.search-wrap .search-body .search-cont .search-result > ul > li.result-none dl dd {
  color: #464C53;
  margin-top: 12px;
}
.search-wrap .search-body .search-cont .search-result .badge-wrap span.medium {
  color: #0B50D0;
  background-color: #ECF2FE;
}

.layer-popup-wrap {
  display: none;
  min-width: 684px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
}
@media only screen and (max-width: 63.99em) {
  .layer-popup-wrap {
    min-width: 100%;
  }
}
.layer-popup-wrap .layer-popup {
  border-radius: 12px;
  background-color: #fff;
  padding: 48px 24px 26px;
}
.layer-popup-wrap .layer-popup .popup-title {
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.layer-popup-wrap .layer-popup > p {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media only screen and (max-width: 47.99em) {
  .layer-popup-wrap .layer-popup > p {
    font-size: 22px;
  }
}
.layer-popup-wrap .layer-popup .close {
  width: 24px;
  height: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_close.svg) no-repeat 0 0/24px;
  position: absolute;
  top: 24px;
  right: 24px;
}
.layer-popup-wrap .layer-popup .popup-search {
  padding: 40px;
  background-color: #EEF2F7;
  border-radius: 12px;
}
.layer-popup-wrap .layer-popup .popup-search .form-wrap {
  gap: 24px;
}
.layer-popup-wrap .layer-popup .popup-search .form-wrap .select-control {
  width: 330px;
  height: 40px;
  color: #8A949E;
  background-size: 16px;
  background-position: 95% center;
}
.layer-popup-wrap .layer-popup .popup-search .btn-wrap .btn-normal {
  width: 64px;
}
.layer-popup-wrap .layer-popup .popup-body {
  min-height: 264px;
  border-radius: 12px;
  border: 1px solid #CDD1D5;
  margin: 16px 0 24px;
  overflow: hidden;
}
@media only screen and (max-width: 63.99em) {
  .layer-popup-wrap .layer-popup .popup-body {
    min-height: 100%;
  }
}

.help-start {
  position: absolute;
  top: 40px;
  right: calc(-1 * ((100vw - 1280px) / 2 - 40px));
}
@media only screen and (max-width: 63.99em) {
  .help-start {
    top: 16px;
    right: 16px;
  }
}

.help-btn {
  display: inline-block;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #58616A;
  margin: 0 0 0 auto;
}
.help-btn span {
  padding-left: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_help_left.svg) no-repeat 0 center;
}

.help-info {
  position: absolute;
  top: 0;
  right: -500px;
  width: 390px;
  height: 100%;
  background-color: #F4F5F6;
  border-left: 1px solid #B1B8BE;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
  opacity: 0;
  visibility: hidden;
  overflow-y: scroll;
  padding: 40px;
}
@media (max-width: 480px) {
  .help-info {
    padding: 24px;
  }
}
@media only screen and (max-width: 63.99em) {
  .help-info {
    width: 100%;
    left: 0;
    right: 0;
  }
}
.help-info.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: calc(-1 * ((100vw - 1280px) / 2 - 0px));
  opacity: 1;
  visibility: visible;
}
.help-info .top {
  width: 100%;
}
.help-info .top .help-btn {
  width: 98px;
  display: block;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #58616A;
  margin: 0 0 0 auto;
}
.help-info .top .help-btn span {
  padding: 0 20px 0 0;
  background: url(/humanframe/theme/global/assets/images/ico/ico_help_right.svg) no-repeat right center;
}
.help-info .top .help-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.help-info .top .help-menu li a {
  display: block;
  color: #464C53;
  font-weight: 700;
  padding: 7px 4px;
  position: relative;
}
.help-info .top .help-menu li.active a {
  color: #083891;
  padding: 7px 13px;
}
.help-info .top .help-menu li.active a::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #083891;
  position: absolute;
  bottom: 0;
  left: 0;
}
.help-info .top dl dt {
  font-size: 19px;
  color: #131416;
  font-weight: 700;
  margin-bottom: 16px;
}
.help-info .top dl dd {
  color: #464C53;
  line-height: 170%;
}
.help-info .top .list {
  margin-top: 16px;
}
.help-info .top .list li + li {
  margin-top: 10px;
}
.help-info .top .accordion {
  margin-top: 32px;
}
.help-info .top .accordion .accordion-wrap .accordion-list .head a {
  padding: 14px 0;
}
.help-info .link {
  font-size: 15px;
  padding-right: 18px;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_button.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 16px;
}
.help-info .bottom {
  padding-top: 32px;
  border-top: 1px solid #8A949E;
}
.help-info .bottom dl + dl {
  margin-top: 32px;
}
.help-info .bottom dl dt {
  color: #131416;
  font-weight: 700;
  margin-bottom: 16px;
}
.help-info .bottom dl dd + dd {
  margin-top: 12px;
}
.help-info .bottom dl dd a {
  background-repeat: no-repeat;
}
.help-info .bottom dl dd a.icon {
  padding-left: 18px;
  background-position: left center;
}
.help-info .bottom dl dd a.tel {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_tel.svg);
}
.help-info .bottom dl dd a.faq {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_faq.svg);
}

.content-slide .slide-img {
  height: 420px;
  padding-bottom: 20px;
  margin: 0 40px;
}
@media only screen and (max-width: 80em) {
  .content-slide .slide-img {
    margin: 0;
  }
}
@media only screen and (max-width: 63.99em) {
  .content-slide .slide-img {
    width: 100%;
    height: auto;
  }
}
.content-slide .slide-img .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content-slide .slide-img .swiper-wrapper .swiper-slide {
  overflow: hidden;
  border-radius: 12px;
  width: 400px;
  height: 165px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.content-slide .slide-img .swiper-wrapper .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(1px);
}
@media only screen and (max-width: 63.99em) {
  .content-slide .slide-img .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  }
}
.content-slide .slide-img .swiper-wrapper .swiper-slide.swiper-slide-active {
  width: 750px !important;
  height: 400px !important;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 10;
  margin: 0 -164px 0 -188px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 80em) {
  .content-slide .slide-img .swiper-wrapper .swiper-slide.swiper-slide-active {
    margin: 0 -90px 0 -124px;
  }
}
@media only screen and (max-width: 63.99em) {
  .content-slide .slide-img .swiper-wrapper .swiper-slide.swiper-slide-active {
    width: 100% !important;
    height: 0 !important;
    padding-top: 56.25%;
    margin: 0;
  }
}
.content-slide .slide-img .swiper-wrapper .swiper-slide.swiper-slide-active::after {
  display: none;
}
.content-slide .slide-img .swiper-wrapper .swiper-slide.swiper-slide-next {
  border-radius: 0 12px 12px 0;
}
.content-slide .slide-img .swiper-wrapper .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}
.content-slide .slide-img .img-more {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.content-slide .slide-img .img-more a {
  display: block;
  width: 50px;
  height: 50px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_img_more.svg) no-repeat 0 0/100%;
}
@media only screen and (max-width: 47.99em) {
  .content-slide .slide-img .img-more a {
    width: 35px;
    height: 35px;
  }
}

.slide-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
.slide-control div,
.slide-control a,
.slide-control button {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #CDD1D5;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  z-index: 99;
}
@media only screen and (max-width: 29.99em) {
  .slide-control div,
  .slide-control a,
  .slide-control button {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-size: 20px;
  }
}
.slide-control .swiper-pagination {
  width: 65px;
  position: static;
  border-radius: 30px;
  font-weight: 700;
}
.slide-control .swiper-button-next {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg);
}
.slide-control .swiper-button-prev {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_left.svg);
}
.slide-control .stop {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_stop.svg);
}
.slide-control .play {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_play.svg);
}
.slide-control .slide-add {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_plus.svg);
}

.tab-content .tab-panel {
  display: none;
}
.tab-content .tab-panel.active {
  display: block;
}

.box-text {
  font-size: 19px;
  padding: 24px;
  border-radius: 12px;
  background-color: #EEF2F7;
}
@media only screen and (max-width: 47.99em) {
  .box-text {
    font-size: 15px;
    padding: 16px;
  }
}
.box-text > ul {
  margin-top: 0;
}
.box-text ul li + li {
  margin-top: 8px;
}
.box-text h5 {
  margin: 0 0 20px;
}

.info-block {
  display: block;
  margin-top: 2px;
  font-size: 17px;
  color: #464C53;
}
@media only screen and (max-width: 47.99em) {
  .info-block {
    font-size: 15px;
  }
}
.info-block + .table-wrapper {
  margin-top: 8px;
}
.info-block.ref {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: #096ab3;
}
.info-block.ref strong {
  font-weight: 400;
}
.info-block.ref:after {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.info-block .link-text.medium:not(.box-download) {
  font-size: 15px;
}
.info-block .link-text.medium:not(.box-download) img {
  width: 16px;
}

.step-list {
  margin-top: 8px;
}
.step-list > ol,
.step-list > ul {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media only screen and (max-width: 47.99em) {
  .step-list > ol,
  .step-list > ul {
    gap: 40px;
  }
}
.step-list > ol > li,
.step-list > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc((100% - 120px) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  word-break: keep-all;
  min-height: 76px;
  font-size: 17px;
}
@media only screen and (max-width: 47.99em) {
  .step-list > ol > li,
  .step-list > ul > li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 47.99em) {
  .step-list > ol > li,
  .step-list > ul > li {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 100% !important;
            flex: 1 1 100% !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.step-list > ol > li::after,
.step-list > ul > li::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_button.svg) no-repeat 0 0/100%;
  position: absolute;
  top: 50%;
  right: -33px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 47.99em) {
  .step-list > ol > li::after,
  .step-list > ul > li::after {
    top: auto;
    bottom: -32px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.step-list > ol > li:last-child::after,
.step-list > ul > li:last-child::after {
  display: none;
}
.step-list > ol > li > .tit,
.step-list > ul > li > .tit {
  width: 100%;
  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;
  color: #096AB3;
  font-weight: 500;
  background-color: #ECF2FE;
  margin-bottom: 0;
  padding: 7px;
  border-radius: 8px 8px 0 0;
  text-align: center;
  border: 1px solid #B1B8BE;
}
@media only screen and (max-width: 47.99em) {
  .step-list > ol > li > .tit,
  .step-list > ul > li > .tit {
    font-size: 15px;
  }
}
.step-list > ol > li > .tit.active,
.step-list > ul > li > .tit.active {
  height: 100%;
  border-radius: 8px !important;
}
.step-list > ol > li > .tit.is-light-bg,
.step-list > ul > li > .tit.is-light-bg {
  background-color: #fff;
}
.step-list > ol > li > .text,
.step-list > ul > li > .text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80px;
  color: #464C53;
  background-color: #fff;
  padding: 4px 15px;
  border: 1px solid #B1B8BE;
  border-radius: 0 0 8px 8px;
  margin-top: -1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-height: 80px;
}
.step-list > ol > li > .text.is-center,
.step-list > ul > li > .text.is-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 47.99em) {
  .step-list > ol > li > .text,
  .step-list > ul > li > .text {
    min-height: 35px;
    padding: 15px;
    font-size: 15px;
  }
}
.step-list > ol > li > .tit + .text,
.step-list > ul > li > .tit + .text {
  border-top: 0;
}
.step-list > ol > li:has(:not(.text)) > .tit,
.step-list > ul > li:has(:not(.text)) > .tit {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border-radius: 8px;
}
.step-list > ol > li:has(.text) > .tit,
.step-list > ul > li:has(.text) > .tit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 8px 8px 0 0;
}
.step-list > ol > li:has(.text) > .text,
.step-list > ul > li:has(.text) > .text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.step-list > ol.active > li .tit,
.step-list > ul.active > li .tit {
  border-radius: 8px 8px 0 0;
}
@media only screen and (max-width: 47.99em) {
  .step-list > ol.active > li .tit,
  .step-list > ul.active > li .tit {
    height: auto;
  }
}
.step-list.col3 > ol > li,
.step-list.col3 > ul > li {
  width: calc((100% - 80px) / 3);
}
.step-list.col5 > ol li,
.step-list.col5 > ul li {
  width: calc((100% - 160px) / 5);
}
.step-list.img-step-list > ul {
  gap: 24px;
}
.step-list.img-step-list > ul > li::after {
  display: none;
}
.step-list.img-step-list > ul > li img {
  width: 100%;
  border-radius: 8px;
}
.step-list.img-step-list > ul > li > .tit + .img img {
  border-radius: 0px 0px 8px 8px;
}
.step-list.img-step-list > ul > li > .img {
  width: 100%;
}
.step-list.img-step-list > ul > li > .img + .img {
  margin-top: 64px;
  position: relative;
}
.step-list.img-step-list > ul > li > .img + .img::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_button.svg) no-repeat 0 0/100%;
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media only screen and (max-width: 47.99em) {
  .step-list.img-step-list > ul > li > .img + .img::after {
    top: -35px;
  }
}
@media only screen and (max-width: 47.99em) {
  .step-list.img-step-list > ul > li > .img + .img {
    margin-top: 40px;
  }
}
.step-list.is-center > ul > li > .text {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thumbnail-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 24px;
  margin-top: 24px;
}
@media only screen and (max-width: 29.99em) {
  .thumbnail-img {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}
.thumbnail-img > li {
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}
.thumbnail-img > li .img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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%;
}
.thumbnail-img > li .img:has(.origin) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.thumbnail-img > li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.thumbnail-img > li .img img.origin {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: auto;
     object-fit: auto;
}
.thumbnail-img > li .img img.is-border {
  border: 1px solid #B1B8BE;
}
.thumbnail-img > li p {
  font-weight: 700;
  margin-top: 16px;
  text-align: center;
}
@media only screen and (max-width: 29.99em) {
  .thumbnail-img > li p {
    font-size: 15px;
  }
}
.thumbnail-img.col1 {
  grid-template-columns: repeat(1, 1fr);
}
.thumbnail-img.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.thumbnail-img.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.thumbnail-img.col5 {
  grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width: 47.99em) {
  .thumbnail-img.col5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.thumbnail-img.col5 li p {
  font-weight: 400;
  font-size: 15px;
}

.table-info {
  margin-bottom: 20px;
}
.table-info .tit {
  font-weight: 700;
  font-size: 19px;
}
.table-info .txt {
  color: #464C53;
}

.table-sub {
  margin: 10px 0;
  font-size: 15px;
  color: #464C53;
  text-align: right;
}

.img-line {
  border-radius: 12px;
  border: 1px solid #B1B8BE;
  padding: 27px;
  text-align: center;
  margin-top: 20px;
  position: relative;
}
.img-line ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 0;
}
.img-line .img-more {
  display: none;
}
@media only screen and (max-width: 47.99em) {
  .img-line .img-more {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    width: 45px;
    height: 45px;
    background: url(/humanframe/theme/global/assets/images/ico/ico_img_more.svg) no-repeat 0 0/100%;
  }
  .img-line .img-more > a {
    display: block;
    height: 100%;
    width: 100%;
  }
}
.img-line.line-none {
  border: none;
  padding: 0;
}

.graph-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 29.99em) {
  .graph-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.graph-list .table-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.graph-list .img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 350px;
          flex: 1 1 350px;
  text-align: center;
}
.graph-list .img img {
  width: 100%;
}

.img-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 29.99em) {
  .img-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
}
.img-flex .logo {
  width: auto;
}
@media only screen and (max-width: 29.99em) {
  .img-flex .logo {
    width: 100%;
  }
}
.img-flex .logo > img {
  margin-bottom: 16px;
}
.img-flex .logo.line-none img {
  border: none;
}
.img-flex > ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.img-flex .btn-wrap a {
  margin-bottom: 8px;
}

.history-wrap {
  position: relative;
  border-radius: 12px;
  border: 1px solid #D6E0EB;
  padding: 68px 60px;
}
.history-wrap::after {
  position: absolute;
  content: "";
  left: 180px;
  top: 90px;
  bottom: 95px;
  width: 1px;
  height: auto;
  background: #C2D4EE;
}
@media only screen and (max-width: 47.99em) {
  .history-wrap {
    padding: 17px 24px 17px 64px;
  }
  .history-wrap::after {
    left: 32px;
    top: 33px;
    bottom: 90px;
  }
}
.history-wrap ul + ul {
  margin-top: 50px;
}
@media only screen and (max-width: 47.99em) {
  .history-wrap ul + ul {
    margin-top: 43px;
  }
}
.history-wrap ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}
.history-wrap ul li + li {
  margin-top: 20px;
}
@media only screen and (max-width: 47.99em) {
  .history-wrap ul li + li {
    margin-top: 17px;
  }
}
.history-wrap ul li::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 110px;
  top: 14px;
  z-index: 1;
  background: #316FCD;
  border: 5px solid rgba(204, 238, 221, 0.8);
  border-radius: 50%;
}
@media only screen and (max-width: 47.99em) {
  .history-wrap ul li {
    gap: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .history-wrap ul li::after {
    left: -42px;
  }
}
.history-wrap ul li .year {
  font-size: 28px;
  font-weight: 700;
  color: #1E2124;
  margin-top: 3px;
}
@media only screen and (max-width: 47.99em) {
  .history-wrap ul li .year {
    font-size: 22px;
    margin-top: 7px;
  }
}
.history-wrap ul li .info {
  margin-top: 10px;
}
.history-wrap ul li .info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.history-wrap ul li .info dl dt {
  position: relative;
  padding-left: 15px;
  font-weight: 700;
  font-size: 17px;
  color: #0B50D0;
}
.history-wrap ul li .info dl dt::after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0B50D0;
}

.portal-sitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media only screen and (max-width: 47.99em) {
  .portal-sitemap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.portal-sitemap > li > a {
  display: block;
  font-size: 19px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #EEF2F7;
  margin-bottom: 10px;
}
@media only screen and (max-width: 47.99em) {
  .portal-sitemap > li > a {
    font-size: 17px;
  }
}
.portal-sitemap > li .normal-type > li + li {
  margin-top: 4px;
}
.portal-sitemap > li .normal-type.hyphen {
  margin: 4px 0 0 19px;
}
.portal-sitemap > li .normal-type.hyphen > li {
  font-size: 15px;
}
.portal-sitemap > li .normal-type.hyphen > li::after {
  top: 10px;
  left: -15px;
  background-color: #A3A6A9;
}

.sitemap-popup {
  width: 940px;
}
@media only screen and (max-width: 63.99em) {
  .sitemap-popup {
    width: 95%;
    min-width: 95%;
    z-index: 9999999;
  }
}
.sitemap-popup .layer-popup {
  padding: 48px 40px 40px;
}
.sitemap-popup .layer-popup .popup-body {
  border: none;
}
.sitemap-popup .layer-popup .popup-body .portal-sitemap > li > a {
  color: #052B57;
}

.ready-wrap {
  padding: 80px 0 0 0;
  text-align: center;
}
.ready-wrap .logo {
  text-align: center;
  margin-bottom: 130px;
}
.ready-wrap .info {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ready-wrap .info strong {
  display: block;
  font-size: 32px;
  color: #222;
  word-break: break-all;
}
.ready-wrap .info span {
  font-size: 17px;
  color: #333;
}
.ready-wrap .ready-btn {
  margin-top: 24px;
  text-align: center;
}
@media only screen and (max-width: 47.99em) {
  .ready-wrap .logo {
    margin-bottom: 50px;
  }
  .ready-wrap .info {
    margin-top: 30px;
  }
  .ready-wrap {
    padding: 30px 20px 0 20px;
  }
}

.desc_unit {
  display: block;
  text-align: right;
}

@media only screen and (max-width: 63.99em) {
  .youtube-box iframe {
    width: 100% !important;
  }
}

.mypage-profile-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 12px;
  background: #F4F5F6;
  padding: 32px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
@media only screen and (max-width: 47.99em) {
  .mypage-profile-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;
    gap: 20px;
    padding: 24px;
  }
}
.mypage-profile-wrap .left-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 47.99em) {
  .mypage-profile-wrap .left-element {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.mypage-profile-wrap .left-element .name {
  font-size: 24px;
  color: #1E2124;
  font-weight: 700;
  margin-right: 32px;
}
@media only screen and (max-width: 47.99em) {
  .mypage-profile-wrap .left-element .name {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.mypage-profile-wrap .left-element .anyid-wrap a {
  border-radius: 100px;
  border: 1px solid #B1B8BE;
  background: #fff;
  padding: 0px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: #1E2124;
  font-size: 13px;
}
.mypage-profile-wrap .left-element .anyid-wrap a span {
  width: 16px;
  height: 16px;
  background: url(/humanframe/theme/apply/assets/images/ico/ico_check_black.png) no-repeat center center/16px;
}
.mypage-profile-wrap .left-element .profile-wrap a {
  border-radius: 100px;
  border: 1px solid #0B50D0;
  background: #E7F4FE;
  padding: 0px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: #0B50D0;
  font-size: 13px;
}
.mypage-profile-wrap .left-element .profile-wrap a span {
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/apply/assets/images/ico/ico_profile.png) no-repeat center center/16px;
}
.mypage-profile-wrap + .content-top-info .start-before > strong {
  padding: 12px 0 12px 46px;
  background-size: 36px !important;
}
@media only screen and (max-width: 22.5em) {
  .mypage-profile-wrap .btn-normal {
    display: inline-block;
  }
}

.guide-line {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px dashed #ddd;
}
.guide-line:hover {
  background-color: #f7f6f6;
}

.component-title {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#98207e), color-stop(50%, #98207e), to(#77005d));
  background: linear-gradient(to right, #98207e 0%, #98207e 50%, #77005d 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.node-blue {
  background-color: #0b4a80 !important;
  border: 1px solid #0b4a80 !important;
  color: #fff !important;
}

.node-violet {
  background-color: #6b4db7 !important;
  border: 1px solid #6b4db7 !important;
  color: #fff !important;
}

.node-pink {
  background-color: linear-gradient(180deg, #d21fa5, #a0006a) !important;
  border: 1px solid linear-gradient(180deg, #d21fa5, #a0006a) !important;
  color: #fff !important;
}

.node-pink-light {
  background-color: #fff0fb !important;
  border: 1px solid linear-gradient(180deg, #d21fa5, #a0006a) !important;
  color: #a0006a !important;
}

.node-blue-light {
  background-color: #ecf3fe !important;
  border: 1px solid #0b4a80 !important;
  color: #0b4a80 !important;
}

.node-green-light {
  border-color: #05A2AF !important;
  background-color: #F4FEFF !important;
  color: #05A2AF !important;
}

.node-gray-light {
  background-color: #f6f6f7;
  border-color: #8a949e;
}

.org-wrap {
  display: block;
  width: 880px;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0;
}

.org {
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
}

.org-level {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
}
@media only screen and (max-width: 47.99em) {
  .org-level {
    width: 100%;
  }
}

.dept-list {
  list-style: none;
  margin: 0;
  padding-left: 14px;
}

.org-node {
  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;
  font-weight: 700;
  color: #fff;
  padding: 14px 28px;
  position: relative;
  z-index: 5;
}

.org-node-circle {
  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: 200px;
  padding: 12px 26px;
  border-radius: 8px;
}

.org-node-citizen {
  background-color: #0b4a80;
}

.org-node-mayor {
  background-color: #A50082;
}
.org-node-mayor::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  height: 48px;
  width: 1px;
  background-color: #B1B8BE;
  z-index: 0;
}
@media only screen and (max-width: 47.99em) {
  .org-node-mayor::after {
    height: 91px;
  }
}

.org-node-headquarter {
  background: -webkit-gradient(linear, left top, left bottom, from(#d21fa5), to(#a0006a));
  background: linear-gradient(180deg, #d21fa5 0%, #a0006a 100%);
}
.org-node-headquarter::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 24px;
  background: #B1B8BE;
  z-index: 1;
}

.org-level-grid {
  display: grid;
  gap: 24px;
  row-gap: 0;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.org-level-grid.vert {
  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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
}
.org-level-grid.vert > li {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 47.99em) {
  .org-level-grid.vert {
    margin-top: 20px;
  }
}
.org-level-grid.cols4 {
  grid-template-columns: repeat(4, 1fr);
}
.org-level-grid.cols3 {
  grid-template-columns: repeat(3, 1fr);
}
.org-level-grid.cols2 {
  grid-template-columns: repeat(2, 1fr);
}
.org-level-grid.w100 {
  width: 100%;
}
@media only screen and (max-width: 47.99em) {
  .org-level-grid {
    gap: 12px;
  }
}
.org-level-grid > .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.org-level-grid > .col::after {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 0;
  left: -12px;
  right: -12px;
  margin: 0 auto;
  width: auto;
  height: 1px;
  background: #B1B8BE;
}
.org-level-grid > .col:first-child::after {
  left: 0;
}
.org-level-grid > .col:last-child::after {
  right: 0;
}
@media only screen and (max-width: 47.99em) {
  .org-level-grid > .col:has(> .org-center) {
    width: 100%;
  }
}
.org-level-grid > .col:has(> .org-side-right) {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.org-level-grid.vert > .col:has(> .org-side-right) {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.org-level-grid.vert > .col:has(> .org-side-right)::after {
  display: none;
}

.org-level-vert {
  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;
  position: relative;
  width: 100%;
}

.org-node-center {
  z-index: 3;
  min-width: 200px;
  max-width: 100%;
  text-align: center;
  padding: 12px 36px;
  background-color: #fef6ff;
  border: 1px solid #A50082;
  color: #A50082;
  position: relative;
  border-radius: 10px;
}
.org-node-center::after {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: 1px;
  height: 24px;
  background: #B1B8BE;
  z-index: 1;
}

.node-head {
  z-index: 3;
  width: 100%;
  max-width: 200px;
  width: 200px;
  max-width: 100%;
  text-align: center;
  border-radius: 10px;
  padding: 12px 36px;
  background-color: #fef6ff;
  border: 1px solid #A50082;
  color: #A50082;
  position: relative;
}
.node-head::after {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: 1px;
  height: 24px;
  background: #B1B8BE;
  z-index: 1;
}

.org-node-vice {
  background-color: #6b4db7;
  border: 1px solid #6b4db7;
  color: #fff;
}
.org-node-vice::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  height: 24px;
  width: 1px;
  background-color: #B1B8BE;
  z-index: 0;
}

.org-director {
  position: relative;
  background: #ecf3fe;
  padding: 10px 4px;
  width: 200px;
  max-width: calc(100% - 24px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #374058;
  border-radius: 10px;
}
.org-director:has(> a) {
  padding: 0;
}
.org-director > 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;
  padding: 10px 4px;
}

.org-level-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.org-level-top .org-node-citizen::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 24px;
  background: #B1B8BE;
  z-index: 1;
}

.org-center {
  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;
  position: relative;
  min-width: 80%;
}
@media only screen and (max-width: 47.99em) {
  .org-center {
    width: 100%;
  }
}

.org-level-mid {
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 47.99em) {
  .org-level-mid {
    margin-top: 20px;
  }
}
.org-level-mid .org-level-grid .col:has(> .org-side-right) {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.org-level-mid .org-level-grid .col:has(> .org-side-left) {
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.org-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background-color: #fef6ff;
  border-width: 1px;
  border-color: #d89dbf;
  padding: 12px 26px;
  font-weight: 700;
  border-color: #A50082;
  border-style: solid;
  width: 200px;
  max-width: 100%;
  color: #a0006a;
  z-index: 1;
  border-radius: 10px;
}
.org-side > a {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 47.99em) {
  .org-side {
    max-width: 200px;
    width: 100%;
  }
}

div:has(> .org-side-right),
li:has(> .org-side-right) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
div:has(> .org-side-left),
li:has(> .org-side-left) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.org-side-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.org-side-right > a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.org-side-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.org-side-left > a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.org-direct-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  justify-self: flex-end;
  position: relative;
}
.org-direct-vertical::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -24px;
  left: 0;
  width: 1px;
  height: auto;
  background: #B1B8BE;
  z-index: 1;
}

.org-directors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
  margin-top: 24px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.org-directors > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.org-directors > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #B1B8BE;
  z-index: 0;
}
.org-directors .org-director {
  width: 200px;
  text-align: center;
  border: 1px solid #8a949e;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
}

.org-level-departments {
  display: grid;
  gap: 52px;
  row-gap: 0;
  position: relative;
  padding: 24px 0;
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments {
    gap: 12px;
    row-gap: 0;
  }
}
.org-level-departments .dept {
  height: 100%;
}
.org-level-departments > .dept,
.org-level-departments > li {
  position: relative;
  background-color: #fff;
  z-index: 1;
  height: 100%;
  padding: 24px 0 0 0;
  width: 180px;
  max-width: 100%;
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments > .dept,
  .org-level-departments > li {
    width: 100%;
    max-width: 100%;
  }
}
.org-level-departments > .dept::before,
.org-level-departments > li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 50%;
  left: 50%;
  width: 1px;
  height: 24px;
  background: #B1B8BE;
  z-index: -1;
}
.org-level-departments > .dept::after,
.org-level-departments > li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(52px / -2);
  right: calc(52px / -2);
  margin: 0 auto;
  width: auto;
  height: 1px;
  background: #B1B8BE;
}
.org-basic .org-level-departments > .dept .dept,
.org-basic .org-level-departments > li .dept {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.org-basic .org-level-departments > .dept .dept .dept-title,
.org-basic .org-level-departments > li .dept .dept-title {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.org-basic .org-level-departments > .dept .dept .dept-list,
.org-basic .org-level-departments > li .dept .dept-list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  margin: 0;
}
.org-level-departments > .dept .dept-title,
.org-level-departments > li .dept-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f6f6f7;
  border-color: #8a949e;
  border-style: solid;
  border-width: 1px;
  margin: 0 0 10px 0;
  padding: 16px 4px;
  line-height: 1;
  font-weight: 700;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  border-radius: 8px;
}
.org-level-departments > .dept .dept-title:has(> a),
.org-level-departments > li .dept-title:has(> a) {
  padding: 0;
}
.org-level-departments > .dept .dept-title:has(> a) > a,
.org-level-departments > li .dept-title:has(> a) > 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%;
  padding: 16px 4px;
}
.org-level-departments > .dept .dept-list,
.org-level-departments > li .dept-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: 4px;
  background-color: #fff;
  padding: 16px 0 16px 20px;
  border-color: #bac1d4;
  border-style: solid;
  border-width: 1px;
  min-height: 140px;
  position: relative;
  border-radius: 8px;
  height: calc(100% - 70px);
}
.org-level-departments > .dept .dept-list::before,
.org-level-departments > li .dept-list::before {
  content: "";
  position: absolute;
  top: calc(24px / -2);
  bottom: 50%;
  left: 50%;
  width: 1px;
  height: 24px;
  background: #B1B8BE;
  z-index: -1;
}
.org-level-departments > .dept .dept-list > li,
.org-level-departments > li .dept-list > li {
  font-size: 15px;
  line-height: 1.25;
  color: #444;
  padding-left: 6px;
  text-align: left;
}
.org-level-departments > .dept .dept-list > li::marker,
.org-level-departments > li .dept-list > li::marker {
  content: "•";
  color: #444;
}
.org-level-departments > .dept .dept-list.cols2,
.org-level-departments > li .dept-list.cols2 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.org-level-departments > .dept .dept-list.cols2 > li,
.org-level-departments > li .dept-list.cols2 > li {
  min-width: 48%;
}
@media only screen and (min-width: 63.99em) {
  .org-level-departments > .dept.org-none::before,
  .org-level-departments > li.org-none::before {
    height: 100%;
    bottom: 0;
    top: calc(-100% + 74px);
  }
}
.org-level-departments.cols4 {
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.org-level-departments.cols4 > .dept:nth-child(4n)::after,
.org-level-departments.cols4 > li:nth-child(4n)::after {
  right: 50%;
}
.org-level-departments.cols4 > .dept:nth-child(4n+1)::after,
.org-level-departments.cols4 > li:nth-child(4n+1)::after {
  left: 50%;
}
.org-level-departments.cols4 > .dept:nth-child(n+5)::after,
.org-level-departments.cols4 > li:nth-child(n+5)::after {
  display: none;
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments.cols4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .org-level-departments.cols4 > .dept:nth-child(2n)::after,
  .org-level-departments.cols4 > li:nth-child(2n)::after {
    right: 50%;
  }
  .org-level-departments.cols4 > .dept:nth-child(2n+1)::after,
  .org-level-departments.cols4 > li:nth-child(2n+1)::after {
    left: 50%;
  }
  .org-level-departments.cols4 > .dept:nth-child(n+3)::after,
  .org-level-departments.cols4 > li:nth-child(n+3)::after {
    display: none;
  }
}
.org-level-departments.cols4 > li:nth-child(-n+4)::before {
  display: block;
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments.cols4 > li:nth-child(-n+4)::before {
    display: none;
  }
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments.cols4 > li:nth-child(-n+2)::before {
    display: block;
  }
}
.org-level-departments.cols3 {
  grid-template-columns: repeat(3, 1fr);
}
.org-level-departments.cols3 > .dept:nth-child(3n)::after,
.org-level-departments.cols3 > li:nth-child(3n)::after {
  right: 50%;
}
.org-level-departments.cols3 > .dept:nth-child(3n+1)::after,
.org-level-departments.cols3 > li:nth-child(3n+1)::after {
  left: 50%;
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments.cols3 {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .org-level-departments.cols3 > .dept:nth-child(2n)::after,
  .org-level-departments.cols3 > li:nth-child(2n)::after {
    right: 50%;
  }
  .org-level-departments.cols3 > .dept:nth-child(2n+1)::after,
  .org-level-departments.cols3 > li:nth-child(2n+1)::after {
    left: 50%;
  }
  .org-level-departments.cols3 > .dept:nth-child(n+3)::after,
  .org-level-departments.cols3 > li:nth-child(n+3)::after {
    display: none;
  }
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments.cols3 > li::before {
    display: none;
  }
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments.cols3 > li:nth-child(-n+2)::before {
    display: block;
  }
}
.org-level-departments.cols2 {
  grid-template-columns: repeat(2, 1fr);
}
.org-level-departments.cols2 > .dept:nth-child(2n)::after,
.org-level-departments.cols2 > li:nth-child(2n)::after {
  right: 50%;
}
.org-level-departments.cols2 > .dept:nth-child(2n+1)::after,
.org-level-departments.cols2 > li:nth-child(2n+1)::after {
  left: 50%;
}
.org-level-departments.cols2 > .dept:nth-child(n+3)::after,
.org-level-departments.cols2 > li:nth-child(n+3)::after {
  display: none;
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments.cols2 {
    width: 100%;
  }
}
.org-level-departments.cols2 > li::before {
  display: none;
}
.org-level-departments.cols2 > li:nth-child(-n+2)::before {
  display: block;
}
.org-level-departments.cols6 {
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  gap: 10px;
  row-gap: 0;
}
.org-level-departments.cols6 > .dept:nth-child(6n)::after,
.org-level-departments.cols6 > li:nth-child(6n)::after {
  right: 50%;
}
.org-level-departments.cols6 > .dept:nth-child(6n+1)::after,
.org-level-departments.cols6 > li:nth-child(6n+1)::after {
  left: 50%;
}
.org-level-departments.cols6 > .dept,
.org-level-departments.cols6 > li {
  width: auto;
  min-width: auto;
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments.cols6 > .dept::before,
  .org-level-departments.cols6 > li::before {
    display: none;
  }
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments.cols6 {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .org-level-departments.cols6 > .dept:nth-child(2n)::after,
  .org-level-departments.cols6 > li:nth-child(2n)::after {
    right: 50%;
  }
  .org-level-departments.cols6 > .dept:nth-child(2n+1)::after,
  .org-level-departments.cols6 > li:nth-child(2n+1)::after {
    left: 50%;
  }
  .org-level-departments.cols6 > .dept:nth-child(n+3)::after,
  .org-level-departments.cols6 > li:nth-child(n+3)::after {
    display: none;
  }
}
@media only screen and (max-width: 22.5em) {
  .org-level-departments.cols6 {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
  .org-level-departments.cols6 > .dept:nth-child(1n)::after,
  .org-level-departments.cols6 > li:nth-child(1n)::after {
    right: 50%;
  }
  .org-level-departments.cols6 > .dept:nth-child(1n+1)::after,
  .org-level-departments.cols6 > li:nth-child(1n+1)::after {
    left: 50%;
  }
}
@media only screen and (max-width: 47.99em) {
  .org-level-departments.cols6 > li:nth-child(-n+2)::before {
    display: block;
  }
}
.org-city .org-level-departments > .dept::before,
.org-city .org-level-departments > li::before {
  display: none;
  bottom: 0;
}
.org-city .org-level-departments > .dept:nth-child(7)::before, .org-city .org-level-departments > .dept:nth-child(8)::before, .org-city .org-level-departments > .dept:nth-child(10)::before,
.org-city .org-level-departments > li:nth-child(7)::before,
.org-city .org-level-departments > li:nth-child(8)::before,
.org-city .org-level-departments > li:nth-child(10)::before {
  bottom: 50%;
}

.org.org-basic .dept {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.org.org-basic .dept .dept-title {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.org.org-basic .dept .dept-list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  margin: 0;
}
.org.org-health .org-level-mid .org-level-grid.cols2 {
  gap: 56px;
  row-gap: 0;
}
@media only screen and (max-width: 47.99em) {
  .org.org-health .org-level-mid .org-level-grid.cols2 {
    gap: 20px;
  }
}
.org.org-health .org-level-mid .org-level-grid.cols2::after {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 25%;
  right: 25%;
  margin: 0 auto;
  width: auto;
  height: 1px;
  background: #B1B8BE;
}
.org.org-health .org-level-departments.cols2 {
  gap: 24px;
  row-gap: 0;
}
@media only screen and (max-width: 47.99em) {
  .org.org-health .org-level-departments.cols2 {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
  .org.org-health .org-level-departments.cols2 > .dept:nth-child(1n)::after,
  .org.org-health .org-level-departments.cols2 > li:nth-child(1n)::after {
    right: 50%;
  }
  .org.org-health .org-level-departments.cols2 > .dept:nth-child(1n+1)::after,
  .org.org-health .org-level-departments.cols2 > li:nth-child(1n+1)::after {
    left: 50%;
  }
}

.layer-popup-wrap .layer-popup.popup-organ-tree .popup-body {
  border: 0;
}
.layer-popup-wrap .layer-popup.popup-organ-tree .popup-body .board-search,
.layer-popup-wrap .layer-popup.popup-organ-tree .popup-body .inpArea {
  margin-bottom: 20px;
}
.layer-popup-wrap .layer-popup.popup-organ-tree .popup-body .ztree {
  border-radius: 12px;
  margin: 0;
  padding: 20px;
}
.layer-popup-wrap .layer-popup.popup-search-dept .popup-body {
  border: 0;
  max-height: calc(100vh - 300px);
  overflow-y: auto !important;
}

.reference-box {
  padding: 16px;
  border: 1px solid #CDD1D5;
  background-color: #F4F5F6;
  border-radius: 12px;
  margin-top: 16px;
}
.reference-box strong {
  display: block;
  color: #1E2124;
  padding-left: 28px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_reference.svg) no-repeat 0 center;
}
.reference-box span {
  display: block;
  font-size: 15px;
  color: #464C53;
  margin: 8px 0 0 28px;
}
.reference-box .detail-info {
  margin: 12px 0 0 28px;
  padding-top: 4px;
  border-top: 1px dashed #8A949E;
}
.reference-box .detail-info span {
  margin: 8px 0 0 0;
}

.normal-type {
  margin-top: 12px;
}
.normal-type > li {
  line-height: 150%;
  position: relative;
  text-align: left;
  font-size: 17px;
  word-break: break-all;
}
@media only screen and (max-width: 47.99em) {
  .normal-type > li {
    font-size: 15px;
  }
}
.normal-type > li::after {
  content: "";
  position: absolute;
}
.normal-type > li + li {
  margin-top: 12px;
}
.normal-type > ul > li + li {
  margin-top: 8px;
}
.normal-type.dot {
  margin-left: 28px;
}
@media only screen and (max-width: 63.99em) {
  .normal-type.dot {
    margin-left: 16px;
  }
}
.normal-type.dot > li {
  color: #1E2124;
}
.normal-type.dot > li::after {
  width: 6px;
  height: 6px;
  background-color: #464C53;
  border-radius: 50%;
  top: 9px;
  left: -22px;
}
@media only screen and (max-width: 63.99em) {
  .normal-type.dot > li::after {
    left: -14px;
  }
}
@media only screen and (max-width: 47.99em) {
  .normal-type.dot > li::after {
    top: 7px;
  }
}
.normal-type.dot .reference-box {
  margin-left: -28px;
}
.normal-type.dot .normal-type:not([class*=" "]) {
  padding: 0 !important;
}
.normal-type.hyphen {
  margin: 8px 0 8px 24px !important;
  padding: 0 !important;
}
@media only screen and (max-width: 63.99em) {
  .normal-type.hyphen {
    margin: 8px 0 8px 15px !important;
  }
}
.normal-type.hyphen > li {
  color: #464C53;
}
.normal-type.hyphen > li::after {
  width: 6px;
  height: 1px;
  background-color: #464C53;
  top: 12px;
  left: -23px;
}
@media only screen and (max-width: 63.99em) {
  .normal-type.hyphen > li::after {
    left: -15px;
  }
}
.normal-type.hyphen > li + li {
  margin-top: 2px;
}
.normal-type.arrow > li {
  font-size: 19px;
  font-weight: 700;
  color: #131416;
}
@media only screen and (max-width: 47.99em) {
  .normal-type.arrow > li {
    font-size: 17px;
  }
}
.normal-type.arrow > li + li {
  margin-top: 40px;
}
.normal-type.arrow > li ul, .normal-type.arrow > li ol {
  margin-top: 16px;
}
@media only screen and (max-width: 63.99em) {
  .normal-type.arrow > li ul, .normal-type.arrow > li ol {
    margin-top: 5px;
  }
}
.normal-type.arrow > li ul li, .normal-type.arrow > li ol li {
  font-weight: 400;
}
.normal-type.arrow > li p, .normal-type.arrow > li .info-block {
  font-weight: 400;
}
.normal-type.arrow > li .hyphen-type {
  margin-top: 12px;
}
.normal-type.small-dot {
  margin: 8px 0;
}
.normal-type.small-dot > li {
  padding-left: 14px;
  font-size: 15px;
  color: #6d7882;
}
.normal-type.small-dot > li::after {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #464C53;
  top: 8px;
  left: 0;
  border-radius: 50%;
}
.normal-type.small-dot > li + li {
  margin-top: 2px;
}
.normal-type.small-dot ul li {
  font-size: 15px;
  color: #6d7882;
}
.normal-type.small-dot ul li::after {
  width: 4px;
  background-color: #6d7882;
  top: 10px;
  left: -12px;
}
.normal-type .box-text,
.normal-type .table-wrapper {
  margin-top: 8px;
}
.normal-type.inline li {
  display: inline-block;
  margin-right: 60px;
}
.normal-type.inline li:last-child {
  margin-right: 0;
}
.normal-type.number {
  list-style-position: outside;
  list-style-type: decimal;
  margin-left: 20px;
  counter-reset: list-item;
}
.normal-type.number > li {
  display: list-item;
  position: relative;
}
.normal-type.number > li::marker {
  content: counter(list-item) ". ";
  font-weight: inherit;
  font-size: inherit;
}
.normal-type.number > li::after {
  display: none;
}
.normal-type.number .normal-type:not(.hyphen, .dot) {
  margin-left: 0;
}
.normal-type.upper-alpha {
  margin-left: 0;
  list-style-position: outside;
  list-style-type: upper-alpha;
  counter-reset: list-item;
}
.normal-type.upper-alpha > li {
  display: list-item;
  position: relative;
  padding-left: 28px;
}
.normal-type.upper-alpha > li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: counter(list-item, upper-alpha) ". ";
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
.normal-type.upper-alpha > li::after {
  display: none;
}
.normal-type.lower-alpha {
  margin-left: 0;
  list-style-position: outside;
  list-style-type: lower-alpha;
  counter-reset: list-item;
}
.normal-type.lower-alpha > li {
  display: list-item;
  position: relative;
  padding-left: 28px;
}
.normal-type.lower-alpha > li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: counter(list-item, lower-alpha) ". ";
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
.normal-type.lower-alpha > li::after {
  display: none;
}
.normal-type.circle-number {
  list-style: none;
  counter-reset: list-item;
}
.normal-type.circle-number > li {
  position: relative;
  padding-left: 28px;
}
.normal-type.circle-number > li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid #464C53;
  border-radius: 50%;
  background: #fff;
  color: inherit;
  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;
  font-size: 13px;
  line-height: 16px;
}
.normal-type.circle-number > li::after {
  display: none;
}
.normal-type.circle-alpha {
  margin-left: 20px;
  list-style: none;
  counter-reset: alpha;
}
.normal-type.circle-alpha > li {
  position: relative;
  padding-left: 28px;
  counter-increment: alpha;
}
.normal-type.circle-alpha > li::before {
  content: counter(alpha, lower-alpha);
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid #464C53;
  border-radius: 50%;
  background: #fff;
  color: inherit;
  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;
  font-size: 13px;
  line-height: 15px;
  text-transform: lowercase;
}
.normal-type:not([class*=" "]) ul {
  padding-left: 24px !important;
}
@media only screen and (max-width: 63.99em) {
  .normal-type:not([class*=" "]) ul {
    padding-left: 10px !important;
  }
}
.normal-type.mt > li + li {
  margin-top: 30px;
}
.normal-type.ml {
  margin-left: 16px;
}
.normal-type.ml0 {
  margin-left: 0;
}
.normal-type .content-file {
  margin-top: 8px;
}
.normal-type .content-file ul {
  padding: 0 !important;
}

.title.normal-type.dot {
  color: #464C53;
  line-height: 150%;
  padding-left: 28px;
  position: relative;
  margin-top: 12px;
}
.title.normal-type.dot::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #464C53;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 6px;
}

.bar-type {
  margin-top: 16px;
}
.bar-type > li {
  padding-left: 24px;
  position: relative;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
  font-weight: 400;
}
.bar-type > li::after {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #464C53;
  position: absolute;
  top: 12px;
  left: 0;
}
.bar-type > li + li {
  margin-top: 8px;
}
.bar-type > li .reference {
  margin-left: -28px;
}

.dl-type.is-file dt {
  width: auto;
  font-weight: 400;
  font-size: 17px;
}
.dl-type.is-file dd {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.terms-wrap {
  width: 100%;
}
.terms-wrap .terms-body {
  padding: 15px;
}
.terms-wrap .terms-body strong {
  color: #0B50D0;
  font-size: 20px;
}
.terms-wrap.is-auto .inner {
  height: auto;
}
.terms-wrap .terms-body.is-auto .inner {
  height: auto;
}

.terms-foot .checkbox-wrap .checkbox-type {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.terms-foot .checkbox-wrap .checkbox-type label {
  margin: 0 0 0 4px;
}

.process-horz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: #fff;
  border: 1px solid #B1B8BE;
  border-radius: 12px;
  padding: clamp(20px, 10px + 2.5vw, 40px);
}
.process-horz > ol,
.process-horz > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 36px;
  row-gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media only screen and (max-width: 47.99em) {
  .process-horz > ol,
  .process-horz > ul {
    padding-right: 36px;
  }
}
.process-horz > ol > li,
.process-horz > ul > li {
  min-width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  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: 0;
  position: relative;
}
.process-horz > ol > li::after,
.process-horz > ul > li::after {
  position: absolute;
  left: 100%;
  content: "";
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 36px;
  height: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_process_right.svg) no-repeat center center;
}
.process-horz > ol > li:last-child::after,
.process-horz > ul > li:last-child::after {
  display: none;
}
.process-horz > ol > li .process-step,
.process-horz > ul > li .process-step {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.process-horz > ol > li .process-step .step-no,
.process-horz > ul > li .process-step .step-no {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  border-radius: 4px;
  background-color: #063A74;
}
.process-horz > ol > li dl,
.process-horz > ul > li dl {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.process-horz > ol > li dl > dt,
.process-horz > ul > li dl > dt {
  color: #052B57;
  font-weight: 700;
}
.process-horz > ol > li dl > dt > span,
.process-horz > ul > li dl > dt > span {
  color: #1E2124;
  font-weight: 400;
  position: relative;
}
.process-horz > ol > li dl > dd,
.process-horz > ul > li dl > dd {
  color: #464C53;
  font-weight: 400;
}
.process-horz > ol:has(> li:nth-of-type(6)),
.process-horz > ul:has(> li:nth-of-type(6)) {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.process-horz > ol > li:first-child:nth-last-child(4n),
.process-horz > ol > li:first-child:nth-last-child(4n) ~ li,
.process-horz > ul > li:first-child:nth-last-child(4n),
.process-horz > ul > li:first-child:nth-last-child(4n) ~ li {
  width: calc((100% - 108px) / 4);
}
@media only screen and (max-width: 47.99em) {
  .process-horz > ol > li:first-child:nth-last-child(4n),
  .process-horz > ol > li:first-child:nth-last-child(4n) ~ li,
  .process-horz > ul > li:first-child:nth-last-child(4n),
  .process-horz > ul > li:first-child:nth-last-child(4n) ~ li {
    width: calc((100% - 36px) / 2);
  }
}
.process-horz > ol > li:first-child:nth-last-child(3n),
.process-horz > ol > li:first-child:nth-last-child(3n) ~ li,
.process-horz > ul > li:first-child:nth-last-child(3n),
.process-horz > ul > li:first-child:nth-last-child(3n) ~ li {
  width: calc((100% - 72px) / 3);
}
@media only screen and (max-width: 47.99em) {
  .process-horz > ol > li:first-child:nth-last-child(3n),
  .process-horz > ol > li:first-child:nth-last-child(3n) ~ li,
  .process-horz > ul > li:first-child:nth-last-child(3n),
  .process-horz > ul > li:first-child:nth-last-child(3n) ~ li {
    width: calc((100% - 36px) / 2);
  }
}
.process-horz.is-border {
  border-width: 0;
  padding: 0;
}
.process-horz.is-border > ol,
.process-horz.is-border > ul {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.process-horz.is-border > ol > li .process-step,
.process-horz.is-border > ul > li .process-step {
  height: 100%;
  border: 1px solid #CDD1D5;
  border-radius: 8px;
  padding: clamp(10px, 8px + 2vw, 20px);
}

.sns-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 47.99em) {
  .sns-list {
    margin-top: 20px;
  }
}
.sns-list .sns-item {
  float: left;
}
.sns-list .sns-item p {
  margin-top: 10px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sns-list .sns-item p strong {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: contain;
  margin-right: 8px;
  vertical-align: top;
}
.sns-list .sns-item p.ico1 strong {
  background-image: url(/humanframe/theme/global/assets/images/main/sns_img1.png);
}
.sns-list .sns-item p.ico2 strong {
  background-image: url(/humanframe/theme/global/assets/images/main/sns_img2.png);
}
.sns-list .sns-item p.ico3 strong {
  background-image: url(/humanframe/theme/global/assets/images/main/sns_img3.png);
}
.sns-list .sns-item p.ico4 strong {
  background-image: url(/humanframe/theme/global/assets/images/main/sns_img4.png);
}
.sns-list .sns-item p.ico5 strong {
  background-image: url(/humanframe/theme/global/assets/images/main/sns_img5.png);
}
.sns-list .sns-item p.ico6 strong {
  background-image: url(/humanframe/theme/global/assets/images/main/sns_img6.png);
}
.sns-list .sns-item p.ico7 strong {
  background-image: url(/humanframe/theme/global/assets/images/main/sns_img7.png);
}
.sns-list .sns-item a {
  display: block;
}
.sns-list .sns-item a > img {
  display: block;
  max-width: 100%;
  -webkit-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.24);
          box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.24);
  border-radius: 20px;
}
@media only screen and (max-width: 47.99em) {
  .sns-list .sns-item a > img {
    border-radius: 10px;
  }
}
.sns-list .sns-sizer,
.sns-list .sns-item {
  width: calc(25% - 15px);
  height: auto;
  margin-bottom: 24px !important;
}
@media only screen and (max-width: 29.99em) {
  .sns-list .sns-sizer,
  .sns-list .sns-item {
    width: calc(50% - 15px);
  }
}

.mt8 {
  margin-top: 8px;
}

.mt12 {
  margin-top: 12px;
}

.mt16 {
  margin-top: 16px;
}

.mt20 {
  margin-top: 20px;
}

.mt24 {
  margin-top: 24px;
}

.mt40 {
  margin-top: 40px !important;
}

.mt48 {
  margin-top: 48px;
}

.scroll {
  overflow: auto;
  padding: 5px;
}
.scroll::-webkit-scrollbar {
  display: block;
  width: 8px;
  height: 8px;
}
.scroll::-webkit-scrollbar-thumb {
  background: #bfbfbf;
  border-radius: 8px;
}
.scroll::-webkit-scrollbar-track {
  background: #efefef;
}

@media screen and (min-width: 1025px) {
  .webHide,
  .mobileShow,
  .mobileShow2,
  .mobileShow2_5,
  .mobileShow3,
  #mobileIndexOpen,
  #mobileIndexClose,
  #btnSearchTop {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .mobileShow {
    display: block !important;
  }
  .mobileShowInline {
    display: inline-block !important;
  }
  .mobileHide,
  .mobileShow2,
  .mobileShow2_5,
  .mobileShow3,
  .mHide {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  .mobileShow2, .WebHide {
    display: block !important;
  }
  .mobileHide2 {
    display: none !important;
  }
}
.pcHide {
  display: none;
}

@media screen and (max-width: 800px) {
  .pcHide {
    display: inline-block;
  }
  .mobileHide {
    display: none;
  }
}
.chatbot-wrap {
  max-width: 640px;
  width: 100%;
  height: 640px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 9999;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.chatbot-wrap .chatbot-popup-wrap {
  width: auto;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #B8369D;
  padding: 0 2.4rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-head .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-head .logo span {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  vertical-align: middle;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-head .logo a {
  color: #fff;
  border-radius: 4px;
  border: 1px solid #FFF;
  padding: 6px;
  font-size: 13px;
  font-weight: 600;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-head .popup-btn {
  position: absolute;
  right: 24px;
  top: 15px;
  z-index: 100;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-head .popup-btn a {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url(/humanframe/theme/global/assets/images/chatbot/ico_ai_close.png);
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 56px;
  bottom: 0px;
  z-index: 1;
  overflow-y: auto;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-main-body {
  padding: 0px 35px;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-main-body {
    padding: 0px 20px;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-main-body > ul {
  margin: 0 3.5rem 2.4rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-main-body > ul {
    margin: 0 2rem 2rem;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-main-body > ul li {
  display: inline-block;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-main-body > ul li + li {
  margin-top: 0.8rem;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-main-body > ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.8rem;
  color: #333;
  line-height: 150%;
  padding: 16px 24px 16px 54px;
  position: relative;
  font-size: 1.8rem;
  background-color: #F5F6F8;
  background-image: url(/humanframe/theme/global/assets/images/chatbot/chatbot_ex.svg);
  background-repeat: no-repeat;
  background-position: 24px center;
  border-radius: 60px;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-main-body > ul li a {
    font-size: 1.6rem;
    padding: 10px 24px 10px 54px;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .title {
  text-align: center;
  margin-top: 20px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .title dl {
  margin-top: 8px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .title dl dt {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1E2124;
  word-break: keep-all;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .title dl dt {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 29.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .title dl dt {
    font-size: 2.4rem;
  }
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .title dl dt br {
    display: none;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .title dl dd {
  font-size: 1.7rem;
  color: #777;
  line-height: 150%;
  word-break: keep-all;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .title dl dd.red-color {
  color: #E94232;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .title dl dd {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 29.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .title dl dd {
    font-size: 1.8rem;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .text-input {
  margin-top: 32px;
  position: relative;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .text-input input {
  width: 100%;
  height: 5.6rem;
  border-radius: 10px;
  border: 2px solid #063A74;
  padding: 0 12rem 0 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #1E2124;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .text-input input {
    height: 5.5rem;
    padding: 0 10rem 0 2rem;
    font-size: 1.7rem;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .text-input .search-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  gap: 5px;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .text-input .search-btn {
    right: 2rem;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .text-input .search-btn button {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .text-input .search-btn button.mike {
  background-image: url(/humanframe/theme/global/assets/images/chatbot/ico_mike.png);
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .text-input .search-btn button.search {
  background-image: url(/humanframe/theme/global/assets/images/chatbot/ico_ai_arrow.png);
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-tel {
  margin: 0 1.5rem 3rem 1.5rem;
  padding: 16px 32px;
  border-radius: 8px;
  background: #FFF9E7;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-tel dl dt {
  font-size: 18px;
  font-weight: 500;
  color: #E94232;
  margin-bottom: 1rem;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-tel dl dd {
  position: relative;
  padding-left: 13px;
  font-size: 16px;
  color: #444;
  font-weight: 400;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-tel dl dd strong {
  color: #222;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-tel dl dd + dd {
  margin-top: 6px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-tel dl dd::after {
  position: absolute;
  left: 4px;
  top: 9px;
  z-index: 1;
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 1px;
  background: #222;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-info {
  margin-top: 20px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-info ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 12px;
  background: #EEF2F7;
  padding: 16px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-info ul li a {
  display: block;
  height: 140px;
  font-size: 15px;
  color: #464C53;
  padding-top: 50px;
  background: url(/humanframe/theme/global/assets/images/chatbot/ico_ai_pen.png) no-repeat 0px 0px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-point {
  margin-top: 20px;
  font-size: 15px;
  color: #464C53;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-guide {
  padding: 24px 80px;
  background-color: #F4F5F6;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-guide {
    padding: 24px 40px;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-guide dl dt {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-guide dl dd {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  position: relative;
  padding-left: 15px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-guide dl dd + dd {
  margin-top: 3px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-main .inner .chatbot-guide dl dd::after {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  content: "-";
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body {
  display: none;
  padding: 24px 26px 24px 36px;
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 16rem;
  margin: 0 auto;
  overflow-y: scroll;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-body {
    padding: 0 2rem;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll {
  overflow-x: hidden;
  overflow-y: hidden;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll::-webkit-scrollbar {
  width: 2px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll::-webkit-scrollbar-thumb {
  background-color: #B1B8BE;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li {
  position: relative;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li + li {
  display: inline-block;
  width: auto;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .chatbot-img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .text {
  border-radius: 12px;
  background-color: #F4F5F6;
  color: #1E2124;
  padding: 2rem;
  display: inline-block;
  line-height: 150%;
  margin: 0 0 0 7rem;
  max-width: 53rem;
  word-break: keep-all;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .text {
    max-width: 100%;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .text p {
  word-break: break-all;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .text ul li {
  position: relative;
  padding-left: 20px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .text ul li::after {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #1E2124;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 5px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .text .chatbot-link {
  display: block;
  font-size: 1.5rem;
  padding: 0.8rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid #DADEE6;
  margin-top: 1rem;
  background: url(/humanframe/theme/global/assets/images/chatbot/chatbot_link.svg) no-repeat calc(100% - 10px) center #fff;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li.me {
  display: block;
  text-align: right;
  margin: 32px 0px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li.me:first-child {
  margin: 0 0px 32px 0px;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li.me .text {
  background-color: #B8369D;
  padding: 8px 16px;
  position: relative;
  border-radius: 12px;
  color: #fff;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li.me .text span {
  text-align: left;
  display: block;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .select {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .select span {
  color: #464C53;
  padding-right: 10px;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .select {
    position: static;
    text-align: right;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .select a {
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  background-repeat: no-repeat;
  background-position: center center;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .select a.good {
  background-image: url(/humanframe/theme/global/assets/images/chatbot/ico_good.png);
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-body .scroll > ul > li .select a.bad {
  background-image: url(/humanframe/theme/global/assets/images/chatbot/ico_bed.png);
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-input {
  display: none;
  margin-top: 4rem;
  padding: 0 4rem;
  position: fixed;
  bottom: 2rem;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-input {
    padding: 0 2rem;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-input input {
  width: 100%;
  height: 5.6rem;
  border-radius: 3rem;
  border: 2px solid #063A74;
  padding: 0 8.5rem 0 1.6rem;
  font-size: 1.9rem;
  font-weight: 500;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-input .search-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 12px;
  right: 57px;
  gap: 5px;
}
@media only screen and (max-width: 47.99em) {
  .chatbot-wrap .chatbot-popup-wrap .chatbot-input .search-btn {
    right: 3rem;
  }
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-input .search-btn button {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-input .search-btn button.mike {
  background-image: url(/humanframe/theme/global/assets/images/chatbot/ico_mike.png);
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-input .search-btn button.search {
  background-image: url(/humanframe/theme/global/assets/images/chatbot/ico_ai_arrow.png);
}
.chatbot-wrap .chatbot-popup-wrap .chatbot-input .chatbot-input-info {
  margin-top: 12px;
  padding: 8px;
  color: #464C53;
  font-weight: 400;
  text-align: center;
  line-height: 140%;
}

.board-wrap .board-body {
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .board-wrap .board-body {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body {
    margin-bottom: 0;
  }
}
.board-wrap .board-body .board-table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-table-head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .board-table-head {
    margin-bottom: 16px;
  }
}
.board-wrap .board-body .board-table-head .total {
  font-weight: 700;
  font-size: 19px;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-table-head .total {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .board-table-head .total {
    font-size: 15px;
  }
}
.board-wrap .board-body .board-table-head .total strong {
  color: #0B50D0;
}
.board-wrap .board-body .board-table-head.is-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.board-wrap .board-body .board-table-head .board-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-table-head .board-option .form-wrap {
    display: none;
  }
}
.board-wrap .board-body .board-table-head .board-option .form-wrap .select-control {
  width: 100px;
  height: 40px;
  font-size: 15px;
  color: #8A949E;
  background-size: 16px;
  font-size: 15px;
}
.board-wrap .board-body .board-table-head .board-option dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-table-head .board-option dl {
    padding: 0 80px;
  }
}
.board-wrap .board-body .board-table-head .board-option dl dt {
  font-weight: 700;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-table-head .board-option dl dt {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .board-table-head .board-option dl dt {
    font-size: 15px;
    left: 10px;
  }
}
.board-wrap .board-body .board-table-head .board-option dl dd {
  position: relative;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-table-head .board-option dl dd {
    height: 26px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
  .board-wrap .board-body .board-table-head .board-option dl dd.active {
    height: auto;
    overflow: visible;
  }
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .board-table-head .board-option dl dd {
    font-size: 15px;
  }
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-table-head .board-option dl dd .sort-title {
    padding-right: 26px;
    background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg) no-repeat right 1px #fff;
    background-size: 18px;
  }
}
.board-wrap .board-body .board-table-head .board-option dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-table-head .board-option dl dd ul {
    width: 85px;
    position: absolute;
    right: 0;
    z-index: 999;
    display: none;
    margin: 6px 0 0 -4px;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 8px 3px;
  }
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-table-head .board-option dl dd ul li + li {
    margin-top: 4px;
  }
}
.board-wrap .board-body .board-table-head .board-option dl dd ul li a {
  display: block;
  padding: 2px 4px;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-table-head .board-option dl dd ul li a {
    padding: 0 4px;
  }
}
@media only screen and (min-width: 63.99em) {
  .board-wrap .board-body .board-table-head .board-option dl dd ul li.active a {
    border-radius: 4px;
    background-color: #EEF2F7;
    text-decoration: underline;
  }
}
.board-wrap .board-body .gallery-type > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.board-wrap .board-body .gallery-type > ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc((100% - 48px) / 3);
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .gallery-type > ul > li {
    width: calc((100% - 24px) / 2);
  }
}
@media only screen and (max-width: 29.99em) {
  .board-wrap .board-body .gallery-type > ul > li {
    width: 100%;
  }
}
.board-wrap .board-body .gallery-type > ul > li:not(:has(> a)) {
  overflow: hidden;
  position: relative;
}
.board-wrap .board-body .gallery-type > ul > li > a {
  display: block;
  position: relative;
  height: 100%;
  border-radius: 12px;
}
.board-wrap .board-body .gallery-type > ul > li > a:not(:has(.card)) {
  border: 1px solid #B1B8BE;
  overflow: hidden;
}
.board-wrap .board-body .gallery-type > ul > li > .text:has(.btn-wrap) {
  border-width: 0;
}
.board-wrap .board-body .gallery-type > ul > li:has(> .img), .board-wrap .board-body .gallery-type > ul > li:has(> .text) {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #B1B8BE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.board-wrap .board-body .gallery-type .card {
  display: block;
  position: relative;
  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;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 1px solid #B1B8BE;
  border-radius: 12px;
}
.board-wrap .board-body .gallery-type .card .text {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.board-wrap .board-body .gallery-type .img {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  background-color: #8a949e;
  background-image: url(/humanframe/theme/global/assets/images/common/noImage.png);
  background-size: 100% auto;
  background-position: center;
}
.board-wrap .board-body .gallery-type .img.poster {
  padding-top: 90%;
}
.board-wrap .board-body .gallery-type .img.youtube::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: url(/humanframe/theme/mayor/assets/images/ico/ico_youtoube_play.png) no-repeat 50%/100%;
}
.board-wrap .board-body .gallery-type .img > img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}
.board-wrap .board-body .gallery-type .img .badge {
  padding: 3px 8px;
  background-color: #fff;
  border: 1px solid;
  border-radius: 4px;
  position: absolute;
  top: 30px;
  left: 30px;
}
.board-wrap .board-body .gallery-type .img .badge.type1 {
  color: #A50082;
  border-color: #A50082;
}
.board-wrap .board-body .gallery-type .img .badge.type2 {
  color: #096AB3;
  border-color: #096AB3;
}
.board-wrap .board-body .gallery-type .img .badge.type3 {
  color: #228738;
  border-color: #228738;
}
.board-wrap .board-body .gallery-type .img .badge.type4 {
  color: #fff;
  background-color: #8C006E;
  border-color: #8C006E;
}
.board-wrap .board-body .gallery-type .img .badge.type5 {
  color: #fff;
  background-color: #0B78CB;
  border-color: #0B78CB;
}
.board-wrap .board-body .gallery-type .img .badge.type6 {
  color: #fff;
  background-color: #228738;
  border-color: #228738;
}
.board-wrap .board-body .gallery-type .img .badge.type7 {
  color: #fff;
  background-color: #9E6A00;
  border-color: #9E6A00;
}
.board-wrap .board-body .gallery-type .img .badge.type8 {
  color: #fff;
  background-color: #5917B8;
  border-color: #5917B8;
}
.board-wrap .board-body .gallery-type .img .badge.type9 {
  color: #fff;
  background-color: #063A74;
  border-color: #063A74;
}
.board-wrap .board-body .gallery-type .text {
  width: 100%;
  padding: clamp(12px, 10px + 2vw, 32px);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.board-wrap .board-body .gallery-type .text .info-list {
  margin-top: 24px;
}
.board-wrap .board-body .gallery-type .text .info-list.flex li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.board-wrap .board-body .gallery-type .text .info-list.flex li .info-value {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
}
.board-wrap .board-body .gallery-type .text > dl {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.board-wrap .board-body .gallery-type .text > dl > dt {
  height: 63px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 21px;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .gallery-type .text > dl > dt {
    font-size: 19px;
  }
}
@media only screen and (max-width: 29.99em) {
  .board-wrap .board-body .gallery-type .text > dl > dt {
    height: 57px;
  }
}
.board-wrap .board-body .gallery-type .text > dl > dt a {
  font-size: 21px;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .gallery-type .text > dl > dt a {
    font-size: 19px;
  }
}
.board-wrap .board-body .gallery-type .text > dl > dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 16px;
}
.board-wrap .board-body .gallery-type .text > dl > dd + dd {
  margin-top: 5px;
}
.board-wrap .board-body .gallery-type .text .hits {
  font-weight: 400;
  font-size: 15px;
  color: #777;
  background: url(/include/mayor/image/2024_new/hits_icon.png) no-repeat 2px 50%/16px;
}
.board-wrap .board-body .gallery-type .text .date {
  color: #777;
  line-height: 1;
}
.board-wrap .board-body .gallery-type .text .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.board-wrap .board-body .gallery-type .text .tag li {
  font-size: 15px;
  padding: 4px 10px;
  border-radius: 100px;
  bordeR: 1px solid #CDD1D5;
}
.board-wrap .board-body .gallery-type .text .etc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.board-wrap .board-body .gallery-type .text .etc .receipt {
  font-size: 15px;
  padding: 1px 8px;
  border-radius: 4px;
}
.board-wrap .board-body .gallery-type .text .etc .receipt.ing {
  background-color: #FDEFEC;
  color: #BD2C0F;
}
.board-wrap .board-body .gallery-type .text .etc .receipt.end {
  background-color: #E6E8EA;
  color: #6D7882;
}
.board-wrap .board-body .gallery-type .text .etc .receipt.ep {
  background-color: #EEF2F7;
  color: #096AB3;
}
.board-wrap .board-body .gallery-type .text .etc .receipt.cc {
  background-color: #CDD1D5;
  color: #5E5E5E;
}
.board-wrap .board-body .gallery-type .text .etc .state {
  padding-left: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_state.svg) no-repeat 0 center;
  margin-left: auto;
}
.board-wrap .board-body .gallery-type .text .etc .state.d-day {
  font-weight: 700;
  background: url(/humanframe/theme/global/assets/images/ico/ico_dday.svg) no-repeat 0 center;
}
.board-wrap .board-body .gallery-type .text .etc .state.is-none {
  background: none;
}
.board-wrap .board-body .gallery-type .text.type-download > dl > dd {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.board-wrap .board-body .gallery-type .text.type-download > dl > dd .btn-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.board-wrap .board-body .gallery-type .text.type-download > dl > dd .btn-wrap a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}
.board-wrap .board-body .gallery-type.type2 > ul > li dl dt {
  font-size: 19px;
}
.board-wrap .board-body .gallery-type.type3 > ul > li {
  position: relative;
}
.board-wrap .board-body .gallery-type.type3 > ul > li dl dt {
  font-size: 19px;
}
.board-wrap .board-body .gallery-type.type3 > ul > li dl dt::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg) no-repeat 0 50%;
  vertical-align: middle;
  margin-top: -2px;
}
.board-wrap .board-body .gallery-type.type3 > ul > li dl dd {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6em;
}
.board-wrap .board-body .gallery-type.type3 > ul > li .text:has(.menu-name) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100%;
}
.board-wrap .board-body .gallery-type.type3 > ul > li .text:has(.menu-name) > dl {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.board-wrap .board-body .gallery-type.type3 > ul > li .text:has(.menu-name) .menu-name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
@media only screen and (max-width: 29.99em) {
  .board-wrap .board-body .gallery-type.type3 > ul > li .text:has(.menu-name) .menu-name {
    position: static;
  }
}
.board-wrap .board-body .gallery-type.type3 > ul > li .text:has(.menu-name) .menu-name li {
  font-size: 15px;
  position: relative;
}
.board-wrap .board-body .gallery-type.type3 > ul > li .text:has(.menu-name) .menu-name li::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_button.svg) no-repeat 0 0;
  position: absolute;
  top: 50%;
  right: -19px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.board-wrap .board-body .gallery-type.type3 > ul > li .text:has(.menu-name) .menu-name li:last-child::after {
  display: none;
}
.board-wrap .board-body .gallery-type.type3 > ul > li .btn-wrap {
  text-align: right;
  margin-top: 36px;
}
.board-wrap .board-body .gallery-type.type3 > ul > li .tag {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #CDD1D5;
}
.board-wrap .board-body .gallery-type.type3 > ul > li .etc + dl dd {
  -webkit-line-clamp: 2;
  max-height: 3em;
}
.board-wrap .board-body .gallery-type.is-apply > ul > li dl dt::after {
  display: none;
}
.board-wrap .board-body .board-banner-body > ul > li > a {
  padding: 32px;
}
@media only screen and (max-width: 29.99em) {
  .board-wrap .board-body .board-banner-body > ul > li > a {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.board-wrap .board-body .board-banner-body > ul > li > a > .text {
  padding: 0;
}
@media only screen and (max-width: 29.99em) {
  .board-wrap .board-body .board-banner-body > ul > li > a > .text {
    padding: 24px;
  }
}
.board-wrap .board-body .board-banner-body > ul > li > a > .text > strong {
  font-size: 19px;
  padding-right: 26px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg) no-repeat right center;
  line-height: 150%;
}
.board-wrap .board-body .board-banner-body > ul > li > a > .text > p {
  margin-top: 16px;
}
.board-wrap .board-body .board-banner-body > ul > li > a > .img {
  width: 100%;
  height: 142px;
  background-color: #ddd;
  margin-top: 24px;
}
@media only screen and (max-width: 29.99em) {
  .board-wrap .board-body .board-banner-body > ul > li > a > .img {
    margin: 0;
  }
}
.board-wrap .board-body .board-thumbnail-body > 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: 24px;
}
.board-wrap .board-body .board-thumbnail-body > ul > li {
  border-radius: 12px;
  border: 1px solid #B1B8BE;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: clamp(12px, 10px + 2vw, 32px);
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .board-thumbnail-body > ul > li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    gap: 0;
  }
}
.board-wrap .board-body .board-thumbnail-body > ul > li > .img {
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 410px;
  height: 231px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .board-thumbnail-body > ul > li > .img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    border-radius: 0;
    border-width: 0 0 1px;
  }
}
.board-wrap .board-body .board-thumbnail-body > ul > li > .img > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}
.board-wrap .board-body .board-thumbnail-body > ul > li > .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .board-thumbnail-body > ul > li > .text {
    padding: 24px;
  }
}
.board-wrap .board-body .board-thumbnail-body > ul > li > .text > dl dt {
  display: inline-block;
  font-weight: 700;
  line-height: 150%;
  font-size: 24px;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .board-thumbnail-body > ul > li > .text > dl dt {
    font-size: 19px;
  }
}
.board-wrap .board-body .board-thumbnail-body > ul > li > .text > dl dd {
  color: #464C53;
  margin-top: 12px;
}
.board-wrap .board-body .board-thumbnail-body > ul > li > .text .info-list {
  margin-top: 24px;
}
.board-wrap .board-body .board-thumbnail-body > ul > li > .text .info-list li {
  color: #464C53;
}
.board-wrap .board-body .board-thumbnail-body > ul > li > .text .info-list li .info-value + .info-value {
  margin-top: 6px;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .board-thumbnail-body > ul > li > .text .info-list li .info-value .box-download {
    width: 49%;
  }
}
.board-wrap .board-view .board-view-head {
  font-size: 24px;
  font-weight: 700;
  color: #131416;
  margin-bottom: 24px;
}
.board-wrap .board-view .board-view-body {
  margin: 24px 0 0;
  border-bottom: 1px solid #CDD1D5;
}
.board-wrap .board-view .board-view-body .board-view-content {
  color: #131416;
  padding: 40px;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-view .board-view-body .board-view-content {
    padding: 40px 10px;
  }
}
.board-wrap .board-view .board-view-body .board-view-content .content-slide .slide-img {
  margin: 0;
}
.board-wrap .board-view .board-view-foot {
  padding: 24px 0 0;
}
.board-wrap .board-view .board-view-foot .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-view .board-view-foot .btn-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}
.board-wrap .board-view .board-view-foot .board-list {
  border-top: 1px solid #1E2124;
  margin-top: 48px;
}
.board-wrap .board-view .board-view-foot .board-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #CDD1D5;
}
@media only screen and (max-width: 29.99em) {
  .board-wrap .board-view .board-view-foot .board-list dl {
    gap: 24px;
  }
}
.board-wrap .board-view .board-view-foot .board-list dl dt {
  color: #131416;
  font-weight: 700;
  padding: 12px 16px;
}
.board-wrap .board-view .board-view-foot .board-list dl dd {
  padding-right: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.board-wrap .board-view .replay-state {
  margin: 40px 0px 24px 0px;
  padding: 24px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: #131416;
  background-color: #F4F5F6;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.board-wrap .board-view .replay-state span {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_replay_ing.svg);
}
.board-wrap .board-view .replay-state.is-end {
  background-color: #ECF2FE;
}
.board-wrap .board-view .replay-state.is-end span {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_replay_end.svg);
}

.board-search {
  background-color: #EEF2F7;
  margin-bottom: 48px;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .board-search {
    margin-bottom: 24px;
  }
}
.board-search {
  padding: 24px 40px;
}
@media only screen and (max-width: 63.99em) {
  .board-search {
    padding: 24px 16px;
  }
}
@media only screen and (max-width: 47.99em) {
  .board-search {
    border-radius: 8px;
  }
}
.board-search > .search-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.board-search > .search-flex label {
  white-space: nowrap;
}
@media only screen and (max-width: 63.99em) {
  .board-search > .search-flex {
    display: block;
  }
}
.board-search > .search-flex + .search-flex {
  margin-top: 8px;
}
@media only screen and (max-width: 63.99em) {
  .board-search > .search-flex + .search-flex {
    margin-top: 16px;
  }
}
.board-search .flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.board-search .flex-wrap .radio-wrap {
  width: 100%;
}
.board-search .form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
}
@media only screen and (max-width: 63.99em) {
  .board-search .form-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 16px;
    gap: 16px;
  }
  .board-search .form-wrap:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 47.99em) {
  .board-search .form-wrap {
    margin-bottom: 13px;
    gap: 5px;
  }
}
.board-search .form-wrap input[type=text] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 360px;
}
@media only screen and (max-width: 63.99em) {
  .board-search .form-wrap input[type=text] {
    max-width: 100%;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.board-search .form-wrap.flex1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}
@media only screen and (max-width: 63.99em) {
  .board-search .form-wrap label {
    width: 100% !important;
    display: block;
  }
}
@media only screen and (max-width: 63.99em) {
  .board-search .form-wrap .form-search {
    top: 73%;
  }
}
.board-search .form-wrap select {
  max-width: 200px;
  width: 200px;
}
.board-search .form-wrap select.w150 {
  max-width: 150px;
}
@media only screen and (max-width: 63.99em) {
  .board-search .form-wrap select {
    max-width: 100%;
  }
  .board-search .form-wrap select.w150 {
    max-width: 100%;
  }
}
.board-search .form-wrap .btn-wrap.flex {
  margin-top: 0;
}
@media only screen and (max-width: 29.99em) {
  .board-search .form-wrap .btn-wrap.flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media only screen and (max-width: 63.99em) {
  .board-search .form-wrap .btn-wrap {
    width: 100%;
  }
}
.board-search .calender-box .form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 63.99em) {
  .board-search .calender-box .form-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 63.99em) {
  .board-search .calender-box .form-wrap label {
    width: 100%;
  }
}
.board-search .calender-etc {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
}
.board-search .btn-wrap.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 25px;
}
.board-search .btn-wrap.flex.mt0 {
  margin-top: 0px;
}
@media only screen and (max-width: 63.99em) {
  .board-search .btn-wrap.flex.mt0 {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 63.99em) {
  .board-search .btn-wrap a {
    width: 100%;
  }
}
@media only screen and (max-width: 63.99em) {
  .board-search .help-icon {
    position: absolute;
    top: 23px;
    left: 67px;
  }
}
.board-search .help-icon a {
  display: block;
  width: 24px;
  height: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_help.svg) no-repeat 0 0;
}
@media only screen and (max-width: 63.99em) {
  .board-search .radio-wrap.flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 16px;
  }
}
@media only screen and (max-width: 63.99em) {
  .board-search .radio-wrap.flex .btn-wrap {
    width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 29.99em) {
  .board-search .radio-wrap.flex .btn-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.board-search .info-find {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 24px;
}
@media only screen and (max-width: 63.99em) {
  .board-search .info-find {
    gap: 16px;
  }
}
.board-search .info-find .info-category {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.3333333333% - 16px);
          flex: 1 1 calc(33.3333333333% - 16px);
  min-width: calc(33.3333333333% - 16px);
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 12px;
}
@media only screen and (max-width: 47.99em) {
  .board-search .info-find .info-category {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.board-search .info-find .info-category > span {
  display: block;
  font-weight: 700;
  color: #052B57;
  padding: 6px 25px;
  line-height: 150%;
  text-align: center;
  background-color: #D3EBFD;
}
.board-search .info-find .info-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  padding: 24px;
}
@media (max-width: 480px) {
  .board-search .info-find .info-category ul {
    padding: 20px;
  }
}
.board-search .info-find .info-category ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 16px);
          flex: 1 1 calc(50% - 16px);
  min-width: calc(50% - 16px);
}
.board-search .info-find .info-category ul li .checkbox-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.board-search .info-find .info-category ul li .checkbox-type input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  margin-top: 2px;
}
.board-search .info-find .info-category.multi ul li {
  width: auto;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  min-width: 0;
}
.board-search .info-find + .search-flex .form-wrap label {
  min-width: auto;
}
.board-search .info-find + .search-flex .form-wrap .select-control {
  width: 150px;
}
@media only screen and (max-width: 63.99em) {
  .board-search .info-find + .search-flex .form-wrap .select-control {
    width: 100%;
  }
}
.board-search .filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 47.99em) {
  .board-search .filter {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.board-search .filter strong {
  width: 120px;
}
.board-search .filter strong span {
  color: #0B50D0;
}
.board-search .textcolor-information {
  font-size: 15px;
}

.accordion {
  margin-bottom: 48px;
}
.accordion .accordion-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 12px;
  margin-bottom: 24px;
}
.accordion .accordion-btn a {
  width: 92px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  color: #464C53;
  font-size: 15px;
  padding-left: 8px;
  border-radius: 4px;
  border: 1px solid #58616A;
  position: relative;
}
.accordion .accordion-btn a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: 90% center;
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg);
  background-size: 12px;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion .accordion-btn a:last-child::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordion .accordion-btn a.active {
  color: #0B50D0;
  border-color: #0B50D0;
}
.accordion .accordion-btn a.active::after {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_nav_active.svg);
}
.accordion .accordion-wrap {
  border-top: 2px solid #005BAD;
}
.accordion .accordion-wrap .accordion-list {
  border-bottom: 1px solid #CDD1D5;
}
.accordion .accordion-wrap .accordion-list .head a {
  display: block;
  font-size: 19px;
  color: #052B57;
  font-weight: 700;
  padding: 20px 0;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg) no-repeat right center/24px;
}
.accordion .accordion-wrap .accordion-list .body {
  display: none;
  background-color: #E6E8EA;
  padding: 16px 25px;
  color: #464C53;
  font-size: 15px;
  margin-bottom: 24px;
}
.accordion .accordion-wrap .accordion-list .body.is-white {
  background: #fff;
}
.accordion .accordion-wrap .accordion-list .body > ul > li {
  margin-bottom: 20px;
}
.accordion .accordion-wrap .accordion-list .body > ul > li ul {
  padding-left: 9px;
}

@media only screen and (max-width: 63.99em) {
  .board-table {
    border-top: 2px solid #1E2124;
  }
}
@media only screen and (max-width: 63.99em) {
  .board-table colgroup {
    display: none;
  }
}
@media only screen and (max-width: 63.99em) {
  .board-table thead {
    display: none;
  }
}
.board-table thead th {
  height: 56px;
  color: #131416;
  font-weight: 700;
  border-top: 2px solid #005BAD;
  border-bottom: 1px solid #CDD1D5;
  text-align: center;
  padding: 0 16px;
}
.board-table thead th.text-right {
  text-align: right;
}
.board-table tbody td {
  height: 50px;
  color: #464C53;
  padding: 7px 5px;
  text-align: center;
  border-bottom: 1px solid #CDD1D5;
}
@media only screen and (max-width: 63.99em) {
  .board-table tbody td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    text-align: left !important;
    border: none;
    padding: 0;
    height: auto;
  }
  .board-table tbody td:first-child {
    padding-top: 20px;
  }
  .board-table tbody td:last-child {
    border-bottom: 1px solid #CDD1D5;
    padding-bottom: 20px;
  }
  .board-table tbody td + td {
    padding-top: 12px;
  }
}
@media only screen and (max-width: 47.99em) {
  .board-table tbody td {
    font-size: 15px;
  }
  .board-table tbody td:first-child {
    padding-top: 16px;
  }
  .board-table tbody td:last-child {
    padding-bottom: 16px;
  }
  .board-table tbody td + td {
    padding-top: 8px;
  }
}
.board-table tbody td.text-left {
  text-align: left;
}
.board-table tbody td.text-right {
  text-align: right;
}
.board-table tbody td a:not(.btn-normal) {
  font-weight: 700;
}
.board-table tbody td a:not(.btn-normal):hover {
  text-decoration: underline;
}
.board-table tbody td a:not(.btn-normal).link:hover {
  color: #0B50D0;
  text-decoration: underline;
}
.board-table tbody td a:not(.btn-normal).file {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_file.svg) no-repeat center;
  vertical-align: middle;
  cursor: auto;
}
.board-table tbody td .mobile-tit {
  display: none;
}
@media only screen and (max-width: 63.99em) {
  .board-table tbody td .mobile-tit {
    display: inline-block;
    width: 90px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.board-view-table {
  border-top: 1px solid #1E2124;
}
@media only screen and (max-width: 47.99em) {
  .board-view-table {
    border-bottom: 1px solid #1E2124;
    padding-bottom: 12px;
  }
}
.board-view-table .table-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 47.99em) {
  .board-view-table .table-line {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.board-view-table .table-line dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 47.99em) {
  .board-view-table .table-line dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.board-view-table .table-line dl dt {
  width: 140px;
  height: 100%;
  color: #131416;
  padding: 12px 16px;
  background-color: #EEF2F7;
  border-bottom: 1px solid #CDD1D5;
  text-align: left;
  line-height: 150%;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 47.99em) {
  .board-view-table .table-line dl dt {
    height: auto;
    border: none;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    background-color: #fff;
    padding: 12px 16px 0 0;
  }
}
.board-view-table .table-line dl dd {
  width: calc(100% - 120px);
  padding: 13px 16px;
  border-bottom: 1px solid #CDD1D5;
  line-height: 150%;
}
@media only screen and (max-width: 47.99em) {
  .board-view-table .table-line dl dd {
    border: none;
    padding: 5px 0 0 0;
    width: 100%;
  }
}
.board-view-table .table-line dl dd.table-file {
  padding: 5px 0;
}
@media only screen and (max-width: 47.99em) {
  .board-view-table .table-line dl dd.table-file {
    width: 100%;
  }
}
.board-view-table .table-line dl dd.table-file li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2px 16px;
}
@media only screen and (max-width: 47.99em) {
  .board-view-table .table-line dl dd.table-file li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 2px 16px 2px 0;
  }
}
.board-view-table .table-line dl dd.table-file li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  position: relative;
  gap: 4px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media only screen and (max-width: 47.99em) {
  .board-view-table .table-line dl dd.table-file li p {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    display: block;
  }
}
.board-view-table .table-line dl dd.table-file li p strong {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  vertical-align: middle;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-view-table .table-line dl dd.table-file li p span {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: inline-block;
  font-size: 13px;
  color: #777;
}
.board-view-table .table-line dl dd.table-file .btn-wrap {
  margin: 0;
}
@media only screen and (max-width: 47.99em) {
  .board-view-table .table-line dl dd.table-file .btn-wrap {
    width: 100%;
    margin-top: 4px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 47.99em) {
  .board-view-table .table-line dl dd.table-file .btn-wrap .btn-normal {
    padding-left: 0;
  }
}
.board-view-table .table-line .btn-wrap a.btn-download {
  margin-right: 32px;
}
@media only screen and (max-width: 29.99em) {
  .board-view-table .table-line .btn-wrap a.btn-download {
    margin-right: 12px;
  }
}

.comment-box .comment-input .board-search {
  background-color: #F4F5F6;
  padding: 40px;
}
@media only screen and (max-width: 47.99em) {
  .comment-box .comment-input .board-search {
    padding: 20px;
  }
}
.comment-box .comment-input .board-search > .search-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.comment-box .comment-input .board-search > .search-flex .form-wrap {
  margin: 0;
  gap: 16px;
}
.comment-box .comment-input .board-search > .search-flex .form-wrap input {
  max-width: 100%;
}
.comment-box .comment-input .board-search > strong {
  display: block;
  margin-bottom: 16px;
  font-size: 19px;
  color: #131416;
}
@media only screen and (max-width: 47.99em) {
  .comment-box .comment-input .board-search > strong {
    font-size: 17px;
  }
}
.comment-box .comment-input .board-search .btn-normal {
  min-width: 76px;
}
.comment-box .commnet-list .total strong {
  color: #0B50D0;
}
.comment-box .commnet-list ul {
  margin-top: 24px;
}
.comment-box .commnet-list ul li {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid #8A949E;
}
.comment-box .commnet-list ul li + li {
  border-color: #CDD1D5;
  margin-top: 24px;
}
@media only screen and (max-width: 47.99em) {
  .comment-box .commnet-list dl dt {
    font-size: 15px;
  }
}
.comment-box .commnet-list dl dt span {
  font-size: 15px;
  color: #464C53;
  vertical-align: bottom;
  margin-left: 4px;
}
@media only screen and (max-width: 47.99em) {
  .comment-box .commnet-list dl dt span {
    font-size: 13px;
  }
}
.comment-box .commnet-list dl dd {
  margin-top: 16px;
}
@media only screen and (max-width: 47.99em) {
  .comment-box .commnet-list dl dd {
    font-size: 15px;
  }
}
.comment-box .commnet-list .control {
  position: absolute;
  top: 27px;
  right: 2px;
}
@media only screen and (max-width: 47.99em) {
  .comment-box .commnet-list .control {
    top: 23px;
  }
}
.comment-box .commnet-list .control a {
  margin-left: 10px;
}
@media only screen and (max-width: 47.99em) {
  .comment-box .commnet-list .control a {
    font-size: 15px;
    margin-left: 5px;
  }
}
.comment-box .commnet-list .control a i {
  vertical-align: text-bottom;
  margin-top: 2px;
}

.content-slide .slide-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 24px auto;
}
.content-slide .slide-btn-wrap .btn-normal.large {
  border-radius: 8px;
  font-size: 19px;
}
.content-slide .slide-btn-wrap .btn-normal.large > i {
  width: 24px;
  height: 24px;
}
.content-slide .slide-btn-wrap .btn-normal.large > i > img {
  width: 100%;
  height: 100%;
}
.content-slide .slide-thumb-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-y: auto;
  width: 100%;
  max-height: 278px;
  padding: 24px 24px 24px 2px;
}
.content-slide .slide-thumb-pager .thumb {
  display: block;
  overflow: hidden;
  position: relative;
  width: 104px;
  height: 70px;
  border-radius: 4px;
  opacity: 0.5;
}
.content-slide .slide-thumb-pager .thumb.active, .content-slide .slide-thumb-pager .thumb:hover, .content-slide .slide-thumb-pager .thumb:focus {
  border: 2px solid #0B50D0;
  outline-offset: -2px;
  opacity: 1;
}
.content-slide .slide-thumb-pager .thumb img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}

.pop-img {
  width: 560px;
  height: 345px;
}
.pop-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-btn {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery-btn > span {
  height: 51px;
  display: inline-block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 29.99em) {
  .gallery-btn > span {
    height: 47px;
  }
}
.gallery-btn .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 4px;
  margin: 0;
}
.gallery-btn .btn-wrap a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.list-type-btn .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.list-type-btn .btn-wrap .ico-view {
  padding-left: 0;
  margin-left: 16px;
  position: relative;
}
.list-type-btn .btn-wrap .ico-view::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #ddd;
  position: absolute;
  top: 3;
  left: -6px;
}

.nav-calendar-month {
  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;
  gap: 36px;
  margin-top: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #CDD1D5;
  margin-bottom: 40px;
}
@media only screen and (max-width: 29.99em) {
  .nav-calendar-month {
    gap: 12px;
  }
}
.nav-calendar-month .month-prev,
.nav-calendar-month .month-next {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  color: #6D7882;
  font-weight: 700;
}
@media only screen and (max-width: 29.99em) {
  .nav-calendar-month .month-prev,
  .nav-calendar-month .month-next {
    font-size: 19px;
  }
}
.nav-calendar-month .month-selected {
  color: #1E2124;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 29.99em) {
  .nav-calendar-month .month-selected {
    gap: 8px;
  }
}
.nav-calendar-month .month-selected .year {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  color: #131416;
}
@media only screen and (max-width: 29.99em) {
  .nav-calendar-month .month-selected .year {
    font-size: 19px;
  }
}
.nav-calendar-month .month-selected .month {
  font-size: clamp(20px, 10px + 4vw, 40px);
  font-weight: 700;
}
@media only screen and (max-width: 29.99em) {
  .nav-calendar-month .month-selected .month {
    font-size: 19px;
  }
}
.nav-calendar-month .month-selected .month .num {
  font-size: clamp(20px, 10px + 4vw, 40px);
  color: #0B50D0;
}
@media only screen and (max-width: 29.99em) {
  .nav-calendar-month .month-selected .month .num {
    font-size: 24px;
  }
}
.nav-calendar-month button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background-image: url(/humanframe/theme/apply/assets/images/ico/ico_arw_next.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}
.nav-calendar-month button:hover {
  background-color: #f8f9fa;
}
.nav-calendar-month button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.nav-calendar-month button.btn-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-calendar-month div {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
}

.event-content-head {
  border-radius: 12px;
  border: 1px solid #CDD1D5;
  background: #F4F5F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  padding: clamp(12px, 10px + 2vw, 32px);
}
@media only screen and (max-width: 63.99em) {
  .event-content-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.event-content-head .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  position: relative;
  overflow: hidden;
  width: 320px;
  height: 320px;
  border-radius: 12px;
  background-color: #ECECEC;
  background-image: url(/humanframe/theme/global/assets/images/common/noImage.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media only screen and (max-width: 29.99em) {
  .event-content-head .img {
    width: 100%;
    padding-top: 90%;
    height: auto;
  }
}
.event-content-head .img > img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.event-content-head .img .img-more {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.event-content-head .img .img-more a {
  display: block;
  width: 50px;
  height: 50px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_img_more.svg) no-repeat 0 0/100%;
}
.event-content-head .text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.event-content-head .info {
  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;
}
.event-content-head .info > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 29.99em) {
  .event-content-head .info > dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.event-content-head .info > dl > dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--width-px, 120px);
          flex: 0 0 var(--width-px, 120px); /* 부모에서 상속받음, 기본 120px */
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
  color: #131416;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
@media only screen and (max-width: 29.99em) {
  .event-content-head .info > dl > dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.event-content-head .info > dl > dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #1E2124;
  line-height: 1.6;
}
.event-content-head .info > dl > dd .file-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.event-content-head .info > dl > dd .file-group + .file-group {
  margin-top: 12px;
}
.event-content-head .info > dl > dd .file-group .tit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2px;
  max-width: 100%;
}
.event-content-head .info > dl > dd .file-group .tit .file-name {
  max-width: 320px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #1E2124;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event-content-head .info > dl > dd .file-group .tit .file-meta {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #999;
  line-height: 1;
}
.event-content-head .info > dl > dd .file-group .btn-wrap {
  margin-top: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 29.99em) {
  .event-content-head .info > dl > dd .file-group .btn-wrap {
    max-width: 100%;
  }
}
.event-content-head .info > dl > dd .file-group .btn-wrap .btn-normal {
  width: auto;
}
.event-content-head .info .point-txt {
  margin-top: 20px;
  color: #0B50D0;
}

.event-detail-title {
  margin-top: 40px;
  margin-bottom: 0;
  padding-bottom: 20px;
  color: #131416;
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  font-weight: 700;
  border-bottom: 1px solid #1E2124;
}