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

.chart-container {
  position: relative;
}
.chart-container .chart-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.chart-container .chart-wrap .chart-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.chart-container .chart-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.chart-container .chart-center-text .score {
  font-size: clamp(16px, 10px + 3.2vw, 32px);
  font-weight: 700;
  color: #1E2124;
  line-height: 1.2;
  margin-bottom: 4px;
}
.chart-container .chart-center-text .count {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 400;
  color: #464C53;
  line-height: 1;
}
.chart-container .chart-label {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.chart-container .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  color: #B1B8BE;
}
.chart-container .label i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* 바 차트 CSS 애니메이션 */
@-webkit-keyframes barFillAnimation {
  from {
    width: 0%;
  }
}
@keyframes barFillAnimation {
  from {
    width: 0%;
  }
}
.bar-wrapper {
  display: block;
  position: relative;
  width: 618px;
  max-width: 100%;
  height: 8px;
  background-color: #cdd1d5;
  border-radius: 4px;
  margin: 24px 0;
}
.bar-wrapper .bar-fill {
  display: block;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #063A74;
  border-radius: 4px;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  -webkit-animation: barFillAnimation 1s ease-out forwards;
          animation: barFillAnimation 1s ease-out forwards;
}
.bar-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: auto;
  height: 24px;
  background: url(/humanframe/theme/mayor/assets/images/chart/chart-bar-percent-x.svg) no-repeat;
  background-size: 100% auto;
}
@media only screen and (max-width: 29.99em) {
  .bar-wrapper::after {
    background-image: url(/humanframe/theme/mayor/assets/images/chart/chart-bar-percent-x_mobile.svg);
  }
}

/* 총괄현황 */
.status_graph {
  margin: 45px 0 90px;
  text-align: center;
}
.status_graph img {
  max-width: 100%;
}

.bar {
  -webkit-transition: height 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: height 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.type_graph > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.type_graph > ul > li {
  margin-left: 40px;
  width: calc(50% - 20px);
  padding: 1em 0;
  background: #f2f3f4;
  border-radius: 20px;
}
.type_graph > ul > li:nth-child(n+3) {
  margin-top: 40px;
}
.type_graph > ul > li:nth-child(2n+1) {
  margin-left: 0;
}
.type_graph > ul > li .on_chart_wrap h3 {
  font-size: 19px;
  color: #1a237e;
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.type_graph > ul > li .on_chart_wrap > ul {
  text-align: center;
}
.type_graph > ul > li .on_chart_wrap > ul > li {
  display: inline-block;
  width: 22%;
}
.type_graph > ul > li .on_chart_wrap > ul > li .bar {
  border-radius: 20px 20px 0 0;
}
.type_graph > ul > li:nth-child(1) .on_chart_wrap > ul > li .bar {
  background: #473595 !important;
}
.type_graph > ul > li:nth-child(2) .on_chart_wrap > ul > li .bar {
  background: #772c91 !important;
}
.type_graph > ul > li:nth-child(3) .on_chart_wrap > ul > li .bar {
  background: #b52581 !important;
}
.type_graph > ul > li:nth-child(4) .on_chart_wrap > ul > li .bar {
  background: #ee354c !important;
}
.type_graph .on_chart_wrap .on_bar_chart > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.type_graph .on_chart_wrap .on_bar_chart > ul > li {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}
.type_graph .on_chart_wrap .on_bar_chart > ul > li:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 180px;
}
.type_graph .on_chart_wrap .on_bar_chart > ul > li:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 auto;
  padding: 5px 0 0;
  width: 100%;
  line-height: 1.5;
  font-size: 16px;
  color: #333;
  border-top: 1px solid #999;
  font-weight: 600;
}
.type_graph .on_chart_wrap .on_bar_chart .bar {
  position: absolute !important;
  overflow: visible !important;
  bottom: 0;
  margin: 0 calc((100% - 75px) / 2);
  width: 75px;
  height: 0%;
  background: #f00;
}
.type_graph .on_chart_wrap .on_bar_chart .bar .data.count {
  position: relative;
  top: -35px;
  font-size: 18px;
  color: #333;
  font-weight: 600;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .type_graph > ul > li {
    margin-left: 0;
    width: 100%;
  }
  .type_graph > ul > li:nth-child(n+2) {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .type_graph .on_chart_wrap h3 {
    font-size: 17px;
  }
  .type_graph .on_chart_wrap > ul > li {
    width: 28%;
  }
  .type_graph .on_chart_wrap .on_bar_chart > ul > li:first-child {
    height: 200px;
  }
  .type_graph .on_chart_wrap .on_bar_chart > ul > li:last-child {
    font-size: 14px;
  }
  .type_graph .on_chart_wrap .on_bar_chart .bar {
    margin: 0 calc((100% - 65px) / 2);
    width: 65px;
  }
  .type_graph .on_chart_wrap .on_bar_chart .bar .data.count {
    font-size: 16px;
  }
}

.icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  position: relative;
  width: 36px;
  height: 36px;
  background: none;
  margin-right: 0;
}
.icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain !important;
  -webkit-transition: -webkit-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-sns {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.icon-sns.facebook {
  content: url(/humanframe/theme/mayor/assets/images/ico/ico_sns_facebook.svg);
}
.icon-sns.instagram {
  content: url(/humanframe/theme/mayor/assets/images/ico/ico_sns_instagram.svg);
}
.icon-sns.naverblog {
  content: url(/humanframe/theme/mayor/assets/images/ico/ico_sns_naverblog.svg);
}
.icon-sns.youtube {
  content: url(/humanframe/theme/mayor/assets/images/ico/ico_sns_youtube.svg);
}

.icon.icon-pledge01::before {
  background-image: url("/humanframe/theme/mayor/assets/images/ico/ico_mayor_status_pledge01.svg");
}

.icon.icon-pledge02::before {
  background-image: url("/humanframe/theme/mayor/assets/images/ico/ico_mayor_status_pledge02.svg");
}

.icon.icon-pledge03::before {
  background-image: url("/humanframe/theme/mayor/assets/images/ico/ico_mayor_status_pledge03.svg");
}

.icon.icon-pledge04::before {
  background-image: url("/humanframe/theme/mayor/assets/images/ico/ico_mayor_status_pledge04.svg");
}

.icon.icon-pledge05::before {
  background-image: url("/humanframe/theme/mayor/assets/images/ico/ico_mayor_status_pledge05.svg");
}

a:hover .icon.icon-pledge01::before, a:focus .icon.icon-pledge01::before,
button:hover .icon.icon-pledge01::before,
button:focus .icon.icon-pledge01::before {
  background-image: url("/humanframe/theme/mayor/assets/images/ico/ico_mayor_status_pledge01_on.svg");
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
a:hover .icon.icon-pledge02::before, a:focus .icon.icon-pledge02::before,
button:hover .icon.icon-pledge02::before,
button:focus .icon.icon-pledge02::before {
  background-image: url("/humanframe/theme/mayor/assets/images/ico/ico_mayor_status_pledge02_on.svg");
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
a:hover .icon.icon-pledge03::before, a:focus .icon.icon-pledge03::before,
button:hover .icon.icon-pledge03::before,
button:focus .icon.icon-pledge03::before {
  background-image: url("/humanframe/theme/mayor/assets/images/ico/ico_mayor_status_pledge03_on.svg");
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
a:hover .icon.icon-pledge04::before, a:focus .icon.icon-pledge04::before,
button:hover .icon.icon-pledge04::before,
button:focus .icon.icon-pledge04::before {
  background-image: url("/humanframe/theme/mayor/assets/images/ico/ico_mayor_status_pledge04_on.svg");
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
a:hover .icon.icon-pledge05::before, a:focus .icon.icon-pledge05::before,
button:hover .icon.icon-pledge05::before,
button:focus .icon.icon-pledge05::before {
  background-image: url("/humanframe/theme/mayor/assets/images/ico/ico_mayor_status_pledge05_on.svg");
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-item-data-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.form-item-data-wrap.line {
  padding: clamp(10px, 8px + 2vw, 20px);
  border-width: 1px;
  border-style: solid;
  border-radius: 10px;
  border-color: #B1B8BE;
}

.img-target-wrap + .form-item-data-wrap {
  margin-top: 16px;
}

.form-item-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.form-item-data .item {
  -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;
  line-height: 1.6;
  word-break: break-all;
}
.form-item-data .data {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #1E2124;
  font-weight: 400;
  line-height: 1.6;
  word-break: break-all;
}
.form-item-data.is-input .item {
  padding: 9px 0 7px 0;
}

.content-table tbody td.p_name {
  font-weight: 700;
  word-break: break-all;
  word-wrap: normal;
}
.content-table tbody td.p_desc {
  word-break: break-all;
  word-wrap: normal;
}
.content-table tbody td.has-num {
  text-align: right;
}

.layer-popup-wrap {
  display: none;
}
.layer-popup-wrap.active {
  display: block;
}
.layer-popup-wrap .layer-popup .popup-body {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.layer-popup-wrap .layer-popup .popup-body .img-target-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 600px;
  max-height: 360px;
  text-align: center;
  border-radius: 10px;
  background-color: #F4F5F6;
}
.layer-popup-wrap .layer-popup .popup-body .img-target-wrap > img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
.layer-popup-wrap .layer-popup .popup-body:has(.dl-type), .layer-popup-wrap .layer-popup .popup-body:has(.form-item-data) {
  border: 0;
}

.sms-mayor-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border: 1px solid #B1B8BE;
  border-radius: 12px;
  padding: 24px 86px;
}
@media only screen and (max-width: 47.99em) {
  .sms-mayor-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
    text-align: center;
  }
}
.sms-mayor-wrap .sms-mayor-head {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 100%;
}
.sms-mayor-wrap .sms-mayor-foot {
  width: 443px;
  max-width: 45%;
}
@media only screen and (max-width: 47.99em) {
  .sms-mayor-wrap .sms-mayor-foot {
    max-width: 100%;
  }
}
.sms-mayor-wrap .sms-mayor-foot {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  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;
}

.sms-mayor-head .sms-mayor-title {
  font-size: clamp(18px, 12px + 3vw, clamp(16px, 10px + 3.2vw, 32px));
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}
.sms-mayor-head .sms-mayor-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  background: #A50082;
  border-radius: 40px;
  padding: 16px clamp(18px, 12px + 3vw, 58px);
  margin-bottom: 40px;
  font-weight: 700;
  gap: 16px;
  white-space: nowrap;
  line-height: 1;
}
@media only screen and (max-width: 47.99em) {
  .sms-mayor-head .sms-mayor-number {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    border-radius: 40px;
    margin: 0 auto 20px;
    text-align: center;
  }
}
.sms-mayor-head .sms-mayor-number i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 28px;
  height: 28px;
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 47.99em) {
  .sms-mayor-head .sms-mayor-number i {
    width: 16px;
    height: 16px;
  }
}
.sms-mayor-head .sms-mayor-number i > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sms-mayor-head .sms-mayor-number > a strong {
  color: #fff;
  font-size: clamp(16px, 12px + 2vw, 28px);
  line-height: 1;
}
.sms-mayor-head .sms-mayor-desc-list > li {
  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;
  gap: 16px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 20em) {
  .sms-mayor-head .sms-mayor-desc-list > li {
    -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;
    text-align: center;
    margin: 0 auto 20px;
  }
}
.sms-mayor-head .sms-mayor-desc-list > li i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 64px;
  height: 64px;
}
.sms-mayor-head .sms-mayor-desc-list > li > dl > dt {
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  color: #1E2124;
  font-weight: 700;
}
.sms-mayor-head .sms-mayor-desc-list > li > dl > dd {
  color: #464C53;
}

.sms-mayor-circle-bg {
  position: relative;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, #b36dbf 0%, #940074 100%);
  border-radius: 50%;
  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;
}
.sms-mayor-circle-bg .sms-mayor-phoneimg {
  position: relative;
  z-index: 2;
}
.sms-mayor-circle-bg .sms-mayor-bell {
  position: absolute;
  left: 60px;
  top: 180px;
  width: 60px;
  z-index: 3;
}
.sms-mayor-circle-bg .sms-mayor-bubble {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 48px;
  z-index: 3;
}
.sms-mayor-circle-bg .sms-mayor-plane {
  position: absolute;
  right: 30px;
  bottom: 40px;
  width: 48px;
  z-index: 3;
}

.pledge-modal-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
}

.pledge-modal-pop .innerWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 40px 40px;
  width: 85%;
  max-width: 650px;
  height: 80%;
  max-height: 600px;
  min-height: 400px;
  text-align: center;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.pledge-modal-pop button {
  display: block;
  cursor: pointer;
}

.pledge-modal-pop button:nth-of-type(1) {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  font-size: 0;
  background: url(../../image/od/pledge/ico-pop-close.png) no-repeat center;
}

.pledge-modal-pop button:nth-of-type(2) {
  margin: 35px auto 0;
  width: 100%;
  max-width: 190px;
  height: 47px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  background: #2f22a8;
  border-radius: 5px;
}

.pledge-modal-pop h5 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.4;
  font-size: 25px;
  color: #180d7e;
  font-weight: 400;
}

.pledge-modal-pop h5 span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 5px;
  text-align: left;
}

.pledge-modal-pop .cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 15px;
  background: #eceef7;
  overflow: auto;
}

@media (max-width: 1024px) {
  .pledge-modal-pop h5 {
    font-size: 22px;
  }
  .pledge-modal-pop button:nth-of-type(2) {
    height: 45px;
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .pledge-modal-pop .innerWrap {
    padding: 50px 30px 30px;
  }
  .pledge-modal-pop button:nth-of-type(2) {
    margin-top: 25px;
  }
}
@media (max-width: 600px) {
  .pledge-modal-pop .innerWrap {
    padding: 50px 25px 25px;
  }
  .pledge-modal-pop h5 {
    font-size: 18px;
  }
  .pledge-modal-pop button:nth-of-type(2) {
    max-width: 160px;
    height: 40px;
    font-size: 16px;
  }
}
@media (max-width: 424px) {
  .pledge-modal-pop .innerWrap {
    padding: 50px 20px 20px;
  }
  .pledge-modal-pop h5 {
    font-size: 17px;
  }
}
.implement-section {
  padding: 60px 0;
  background: #fff;
}

.content-table.is-border {
  border-spacing: 0;
  border-top: 1px solid #CDD1D5;
}
.content-table.is-border tr th {
  border-width: 0 1px 1px 0;
  padding: 12px 10px;
  text-align: center;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
}
.content-table.is-border tr th:last-child {
  border-right: 0;
}
.content-table.is-border tr td {
  border-width: 0 1px 1px 0;
  padding: 12px 10px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
}
.content-table.is-border tr td:last-child {
  border-right: 0;
}
.content-table.is-border tr td.alignC {
  text-align: center;
}

.pledgeWrap .key_pledge,
.pledgeWrap .badge-key-pledge {
  height: 24px;
  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: 124px;
  gap: 4px;
  background-color: #fff;
  border: 1px solid #A50082;
  border-radius: 4px;
  padding: 8px;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  color: #A50082;
  letter-spacing: 0;
  line-height: 1;
}
.pledgeWrap .key_pledge::before,
.pledgeWrap .badge-key-pledge::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 16px;
  background: url(/humanframe/theme/mayor/assets/images/ico/lets-icons_check-fill.svg) no-repeat;
  background-size: contain;
  position: relative;
  left: auto;
  top: auto;
}
.pledgeWrap .key_pledge + a,
.pledgeWrap .badge-key-pledge + a {
  display: block;
}
.pledgeWrap .acco-wrap .acco-head {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eef2f7;
  border-width: 0;
  border-radius: 10px;
  padding: 24px 48px 24px 24px;
  position: relative;
  gap: 16px;
  width: 100%;
}
@media only screen and (max-width: 47.99em) {
  .pledgeWrap .acco-wrap .acco-head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4px;
  }
}
.pledgeWrap .acco-wrap .acco-head::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 24px;
  top: 50%;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_bottom.svg) no-repeat;
}
.pledgeWrap .acco-wrap .acco-head.on::after, .pledgeWrap .acco-wrap .acco-head.is-active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pledgeWrap .acco-wrap .acco-head h5 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin: 0;
}
@media only screen and (max-width: 47.99em) {
  .pledgeWrap .acco-wrap .acco-head h5 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4px;
  }
}
.pledgeWrap .acco-wrap .acco-head h5 > strong,
.pledgeWrap .acco-wrap .acco-head h5 .category {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  color: #1E2124;
  font-weight: 700;
  white-space: nowrap;
}
.pledgeWrap .acco-wrap .acco-head h5 > span,
.pledgeWrap .acco-wrap .acco-head h5 .slogan {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 400;
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  word-break: keep-all;
  word-wrap: break-word;
  text-align: left;
}
@media only screen and (max-width: 47.99em) {
  .pledgeWrap .acco-wrap .acco-head h5 > span,
  .pledgeWrap .acco-wrap .acco-head h5 .slogan {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.pledgeWrap .acco-wrap .acco-head h5 .num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  color: #6D7882;
  font-weight: 700;
}
.pledgeWrap .acco-wrap .acco-body {
  display: none;
}
.pledgeWrap .acco-wrap .acco-body.is-active {
  display: block;
  margin-top: 16px;
}
.pledgeWrap .acco-wrap .acco-body .content-table .col-number {
  width: 90px;
}
.pledgeWrap .acco-wrap .acco-body .content-table .col-subject {
  width: auto;
}
.pledgeWrap .acco-wrap .acco-body .content-table .col-manager {
  width: 120px;
}
.pledgeWrap .acco-wrap .acco-body .content-table .col-status {
  width: 120px;
}
.pledgeWrap .acco-wrap .acco-body .content-table .col-chart {
  width: 618px;
}
@media only screen and (max-width: 80em) {
  .pledgeWrap .acco-wrap .acco-body .content-table .col-chart {
    width: 40%;
  }
}
.pledgeWrap .acco-wrap .acco-body .content-table .td-subject {
  text-align: left;
}
@media only screen and (max-width: 63.99em) {
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card td:has(.bar-wrapper) .bar-wrapper {
    width: 100%;
    height: 6px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 63.99em) {
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card {
    min-width: auto;
    width: 100%;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card colgroup,
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card thead {
    display: none;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tbody {
    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;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border: 1px solid #CDD1D5;
    border-radius: 4px;
    padding: clamp(10px, 8px + 2vw, 20px);
    gap: 6px;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tr th {
    border-bottom: 0;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tr td {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    border-bottom: 0;
    padding: 0;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tr td.td-num {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
    font-size: 12px;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tr td.td-subject {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    text-align: left;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tr td.td-subject > a {
    font-size: clamp(16px, 10px + 1.9vw, 19px);
    font-weight: 700;
    color: #131416;
    word-break: keep-all;
    word-wrap: break-word;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tr td.td-subject > a br {
    display: none;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tr td.td-manager {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tr td.td-status {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card tr td.td-chart {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card th, .pledgeWrap .acco-wrap .acco-body .content-table.table-to-card td {
    font-size: clamp(10px, 8px + 1.5vw, 15px);
  }
}

.pledge_map .map_wrap {
  text-align: center;
}

.pledge_map .map_wrap .img {
  text-align: center;
}
.pledge_map .map_wrap .img .img_pc {
  display: inline-block;
}
.pledge_map .map_wrap .img .img_mobile {
  display: none;
}
@media only screen and (max-width: 63.99em) {
  .pledge_map .map_wrap .img .img_pc {
    display: none;
  }
  .pledge_map .map_wrap .img .img_mobile {
    display: inline-block;
  }
}

.pledge_map .map_wrap .img_expand_btn {
  display: none;
  margin: 50px auto 0;
  width: 100%;
  max-width: 220px;
  height: 45px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#bc3374), to(#2f22a8));
  background: linear-gradient(90deg, #bc3374, #2f22a8);
  border-radius: 10px;
  font-weight: 400;
}
@media (max-width: 650px) {
  .pledge_map .map_wrap .img_expand_btn {
    display: block;
  }
}

/* 20231107 start */
.map_wrap .img_popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
}

.map_wrap .img_popup .inner_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 90%;
  max-height: 90vh;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.map_wrap .img_popup .img {
  padding: 0;
  width: 100%;
  max-height: calc(90vh - 120px);
  overflow-x: auto;
}

.map_wrap .img_popup .img img {
  display: block;
  width: auto;
  max-width: none !important;
}

.map_wrap .img_popup button {
  display: block;
  margin: 20px auto 0;
  width: 80%;
  max-width: 190px;
  height: 45px;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  background: #2f22a8;
  border-radius: 5px;
}

/* 20231107 end */
.pledge_map .map_wrap .cont ul li h6 i {
  display: none;
  font-style: normal;
}

@media (max-width: 1024px) {
  .pledge_map .map_wrap .cont ul li h6 {
    position: relative;
    padding-left: 32px;
  }
  .pledge_map .map_wrap .cont ul li h6 i {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 15px;
    color: #fff;
    text-align: center;
    background: linear-gradient(100deg, #b72e79, #d34064, #e44a57);
    border-radius: 50%;
    font-family: "S-Core Dream 7";
  }
  .pledge_map .map_wrap .cont ul li p {
    padding-left: 32px;
  }
  .pledge_map .map_wrap .cont ul li {
    -webkit-box-shadow: 0 5px 13px rgba(9, 28, 110, 0.1);
            box-shadow: 0 5px 13px rgba(9, 28, 110, 0.1);
  }
  .pledge_map .map_wrap .cont ul li + li {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .pledge_map .map_wrap .cont ul li h6 {
    padding-left: 30px;
  }
  .pledge_map .map_wrap .cont ul li h6 i {
    top: 1px;
    width: 23px;
    height: 23px;
    line-height: 23px;
    font-size: 14px;
  }
  .pledge_map .map_wrap .cont ul li p {
    padding-left: 30px;
  }
}
.pledge_map .map_1 .cont ul li.box_2 {
  top: 5px;
}

.pledge_map .map_3 .cont ul li.box_3 .line {
  top: 70%;
}

.pledge_map .map_3 .cont ul li.box_8 {
  top: 0;
  right: 0;
  top: -80px;
  right: 30px;
}

.pledge_map .map_3 .cont ul li.box_8 .line {
  top: 100%;
  left: 35%;
  width: 1px;
  height: 70px;
}

.pledge_map .map_3 .cont ul li.box_8 .line:after {
  bottom: 0;
  right: 0;
  width: 70px;
  height: 1px;
}

.pledge_map {
  text-align: center;
}
.pledge_map .tabMenu {
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  width: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 80em) {
  .pledge_map .tabMenu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
  }
}
@media only screen and (max-width: 47.99em) {
  .pledge_map .tabMenu {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
.pledge_map .tabMenu li {
  width: 160px;
  height: 211px;
  text-align: center;
}
@media only screen and (max-width: 80em) {
  .pledge_map .tabMenu li {
    width: 100%;
    height: auto;
  }
}
.pledge_map .tabMenu li.on, .pledge_map .tabMenu li.active, .pledge_map .tabMenu li:hover {
  position: relative;
  background: #fff;
  border: 1px solid #A50082;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(182, 170, 255, 0.08);
          box-shadow: 0 4px 12px rgba(182, 170, 255, 0.08);
  z-index: 1;
}
.pledge_map .tabMenu li.on::after, .pledge_map .tabMenu li.active::after, .pledge_map .tabMenu li:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 16px solid #fff;
  z-index: 2;
}
.pledge_map .tabMenu li.on::before, .pledge_map .tabMenu li.active::before, .pledge_map .tabMenu li:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 16px solid #A50082;
  z-index: 1;
}
@media only screen and (max-width: 47.99em) {
  .pledge_map .tabMenu li.on::after, .pledge_map .tabMenu li.active::after, .pledge_map .tabMenu li:hover::after {
    left: -15px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 16px solid #fff;
    border-left: 0;
    width: 0;
    height: 0;
  }
  .pledge_map .tabMenu li.on::before, .pledge_map .tabMenu li.active::before, .pledge_map .tabMenu li:hover::before {
    left: -16px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 16px solid #A50082;
    border-left: 0;
    width: 0;
    height: 0;
  }
}
.pledge_map .tabMenu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  height: 100%;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  position: relative;
}
@media only screen and (max-width: 47.99em) {
  .pledge_map .tabMenu li a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 16px;
    gap: 12px;
    text-align: left;
  }
}
.pledge_map .tabMenu li a .icon {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 47.99em) {
  .pledge_map .tabMenu li a .icon {
    width: 48px;
    height: 48px;
  }
}
.pledge_map .tabMenu li a h6 {
  line-height: 1.5;
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  color: #1E2124;
  font-weight: 700;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 47.99em) {
  .pledge_map .tabMenu li a h6 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.pledge_map .tabMenu li a h6 span {
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  line-height: 1.5;
  color: #1E2124;
  font-weight: 400;
}
@media only screen and (max-width: 47.99em) {
  .pledge_map .tabMenu li a h6 span {
    text-align: left;
  }
}
@media only screen and (max-width: 47.99em) {
  .pledge_map .tabMenu li a h6 br {
    display: none;
  }
}
.pledge_map .tabMenu li.on {
  position: relative;
}
.pledge_map .tabCont > div {
  display: none;
}
.pledge_map .tabCont > div:first-child {
  display: block;
}
.pledge_map .map_wrap {
  position: relative;
  margin-top: 160px;
}
.pledge_map .map_wrap .img {
  padding: 0 40px;
  text-align: center;
}
.pledge_map .map_wrap .img img {
  max-width: 100%;
}
.pledge_map .map_wrap .cont h4 {
  display: none;
}
.pledge_map .map_wrap .cont ul > li {
  position: absolute;
  padding: 15px;
  text-align: center;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0 8px 10px rgba(185, 185, 185, 0.45);
          box-shadow: 0 8px 10px rgba(185, 185, 185, 0.45);
}
.pledge_map .map_wrap .cont ul > li .line {
  position: absolute;
  background: #333;
}
.pledge_map .map_wrap .cont ul > li .line:after {
  content: "";
  position: absolute;
  background: #333;
}
.pledge_map .map_wrap .cont ul > li h6 {
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 500;
}
.pledge_map .map_wrap .cont ul > li p {
  font-size: 14px;
  color: #333;
  font-weight: 300;
}
.pledge_map .map_1 .cont ul li.box_1 {
  top: -87px;
  right: 25px;
}
.pledge_map .map_1 .cont ul li.box_1 .line {
  top: 50%;
  right: 100%;
  width: 136px;
  height: 1px;
}
.pledge_map .map_1 .cont ul li.box_1 .line:after {
  top: 0;
  left: 0;
  width: 1px;
  height: 125px;
}
.pledge_map .map_1 .cont ul li.box_2 {
  top: 25px;
  left: 150px;
}
.pledge_map .map_1 .cont ul li.box_2 .line {
  top: 100%;
  left: 50%;
  width: 1px;
  height: 110px;
}
.pledge_map .map_1 .cont ul li.box_2 .line:after {
  bottom: 0;
  left: 50%;
  width: 210px;
  height: 1px;
}
.pledge_map .map_1 .cont ul li.box_3 {
  top: 100px;
  right: 30px;
}
.pledge_map .map_1 .cont ul li.box_3 .line {
  top: 100%;
  left: 50%;
  width: 1px;
  height: 35px;
}
.pledge_map .map_1 .cont ul li.box_3 .line:after {
  bottom: 0;
  right: 0;
  width: 245px;
  height: 1px;
}
.pledge_map .map_1 .cont ul li.box_4 {
  bottom: 280px;
  left: 20px;
}
.pledge_map .map_1 .cont ul li.box_4 .line {
  top: 100%;
  left: 50%;
  width: 1px;
  height: 100px;
}
.pledge_map .map_1 .cont ul li.box_4 .line:after {
  bottom: 0;
  left: 0;
  width: 190px;
  height: 1px;
}
.pledge_map .map_1 .cont ul li.box_5 {
  bottom: 202px;
  right: 0;
}
.pledge_map .map_1 .cont ul li.box_5 .line {
  top: 50%;
  right: 100%;
  width: 50px;
  height: 1px;
}
.pledge_map .map_1 .cont ul li.box_6 {
  bottom: 45px;
  right: 180px;
}
.pledge_map .map_1 .cont ul li.box_6 .line {
  top: 50%;
  right: 100%;
  width: 50px;
  height: 1px;
}
.pledge_map .map_1 .cont ul li.box_6 .line:after {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 85px;
}
.pledge_map .map_1 .cont ul li h6 {
  color: #1a237e;
}
.pledge_map .map_2 .cont h5 {
  display: none;
}
.pledge_map .map_2 .cont ul li {
  display: none;
}
@media (max-width: 1024px) {
  .pledge_map .map_2 .cont h5 {
    display: block;
    margin-top: 50px;
    font-size: 20px;
    color: #3d3d3d;
    font-weight: 700;
  }
  .pledge_map .map_2 .cont h5:nth-of-type(1) {
    margin-top: 0;
    color: #e1227e;
  }
  .pledge_map .map_2 .cont h5:nth-of-type(2) {
    color: #3a50e2;
  }
  .pledge_map .map_2 .cont ul li {
    position: relative;
    display: block;
    padding-left: 32px;
  }
  .pledge_map .map_2 .cont ul li:before {
    content: "";
    position: absolute;
    top: 24px;
    left: 15px;
    width: 8px;
    height: 8px;
    background: linear-gradient(100deg, #b72e79, #d34064, #e44a57);
    border-radius: 50%;
  }
}
.pledge_map .map_3 .cont ul li .line, .pledge_map .map_3 .cont ul li .line:after {
  background: #fb744a;
}
.pledge_map .map_3 .cont ul li.box_1 {
  top: -70px;
  left: 458px;
}
.pledge_map .map_3 .cont ul li.box_1 .line {
  top: 50%;
  left: 100%;
  width: 100px;
  height: 1px;
}
.pledge_map .map_3 .cont ul li.box_1 .line:after {
  top: 0;
  right: 0;
  width: 1px;
  height: 62px;
}
.pledge_map .map_3 .cont ul li.box_2 {
  top: 60px;
  left: 304px;
}
.pledge_map .map_3 .cont ul li.box_2 .line {
  top: 100%;
  left: 50%;
  width: 1px;
  height: 40px;
}
.pledge_map .map_3 .cont ul li.box_2 .line:after {
  bottom: 0;
  left: 0;
  width: 200px;
  height: 1px;
}
.pledge_map .map_3 .cont ul li.box_3 {
  top: 80px;
  right: 35px;
}
.pledge_map .map_3 .cont ul li.box_3 .line {
  top: 50%;
  right: 100%;
  width: 120px;
  height: 1px;
}
.pledge_map .map_3 .cont ul li.box_4 {
  top: 175px;
  right: 40px;
}
.pledge_map .map_3 .cont ul li.box_4 .line {
  top: 50%;
  right: 100%;
  width: 130px;
  height: 1px;
}
.pledge_map .map_3 .cont ul li.box_5 {
  top: 300px;
  right: 140px;
}
.pledge_map .map_3 .cont ul li.box_5 .line {
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 40px;
}
.pledge_map .map_3 .cont ul li.box_5 .line:after {
  top: 0;
  right: 0;
  width: 210px;
  height: 1px;
}
.pledge_map .map_3 .cont ul li.box_6 {
  left: 0;
  bottom: 160px;
}
.pledge_map .map_3 .cont ul li.box_6 .line {
  top: 50%;
  left: 100%;
  width: 205px;
  height: 1px;
}
.pledge_map .map_3 .cont ul li.box_7 {
  bottom: 55px;
  right: 275px;
}
.pledge_map .map_3 .cont ul li.box_7 .line {
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 140px;
}
.pledge_map .map_3 .cont ul li.box_7 .line:after {
  top: 0;
  right: 0;
  width: 150px;
  height: 1px;
}
.pledge_map .map_3 .cont ul li h6 {
  color: #c54402;
}
.pledge_map .map_4 .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 47.99em) {
  .pledge_map .map_4 .img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.pledge_map .map_4 .img li {
  margin-left: 50px;
}
@media only screen and (max-width: 47.99em) {
  .pledge_map .map_4 .img li {
    margin-left: 0;
    margin-top: 0;
  }
}
.pledge_map .map_4 .img li:last-child {
  margin-left: auto;
  margin-top: 200px;
}
@media only screen and (max-width: 47.99em) {
  .pledge_map .map_4 .img li:last-child {
    margin-left: 0;
    margin-top: 0;
  }
}
.pledge_map .map_4 .img li img {
  max-width: 100%;
}
.pledge_map .map_5 .cont ul li .line, .pledge_map .map_5 .cont ul li .line:after {
  background: #f6c394;
}
.pledge_map .map_5 .cont ul li.park .line, .pledge_map .map_5 .cont ul li.park .line:after {
  background: #a6d794;
}
.pledge_map .map_5 .cont ul li.park h6 {
  color: #297711;
}
.pledge_map .map_5 .cont ul li.box_1 {
  top: -10px;
  left: 222px;
}
.pledge_map .map_5 .cont ul li.box_1 .line {
  top: 100%;
  left: 50%;
  width: 1px;
  height: 120px;
}
.pledge_map .map_5 .cont ul li.box_1 .line:after {
  bottom: 0;
  left: 0;
  width: 170px;
  height: 1px;
}
.pledge_map .map_5 .cont ul li.box_2 {
  top: -71px;
  right: 10px;
}
.pledge_map .map_5 .cont ul li.box_2 .line {
  top: 50%;
  right: 100%;
  width: 120px;
  height: 1px;
}
.pledge_map .map_5 .cont ul li.box_2 .line:after {
  top: 0;
  left: 0;
  width: 1px;
  height: 120px;
}
.pledge_map .map_5 .cont ul li.box_3 {
  top: 160px;
  right: 18px;
}
.pledge_map .map_5 .cont ul li.box_3 .line {
  top: 50%;
  right: 100%;
  width: 100px;
  height: 1px;
}
.pledge_map .map_5 .cont ul li.box_4 {
  bottom: 305px;
  left: 0px;
}
.pledge_map .map_5 .cont ul li.box_4 .line {
  top: 100%;
  left: 50%;
  width: 1px;
  height: 120px;
}
.pledge_map .map_5 .cont ul li.box_4 .line:after {
  bottom: 0;
  left: 0;
  width: 300px;
  height: 1px;
}
.pledge_map .map_5 .cont ul li.box_5 {
  top: 305px;
  right: 113px;
}
.pledge_map .map_5 .cont ul li.box_5 .line {
  top: 50%;
  right: 100%;
  width: 120px;
  height: 1px;
}
.pledge_map .map_5 .cont ul li.box_6 {
  right: 125px;
  bottom: 100px;
}
.pledge_map .map_5 .cont ul li.box_6 .line {
  top: 50%;
  right: 100%;
  width: 200px;
  height: 1px;
}
.pledge_map .map_5 .cont ul li.box_6 .line:after {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 25px;
}
.pledge_map .map_5 .cont ul li h6 {
  color: #824a19;
}
.pledge_map .map_5 .cont ul li p {
  color: #824a19;
  font-weight: 500;
}
.pledge_map .pledge_3 ul.field_rate + h4.htitle {
  margin-top: 150px;
}
.pledge_map .pledge_3 ul.field_rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 50px;
}
.pledge_map .pledge_3 ul.field_rate li {
  width: 100%;
}
.pledge_map .pledge_3 ul.field_rate canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.pledge_map .pledge_3 .on_col_rate {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 180px;
  height: 180px;
}
.pledge_map .pledge_3 .on_col_rate .chart_percent {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  color: #333;
  font-weight: 700;
  z-index: 9;
}
.pledge_map .pledge_3 .on_col_rate .chart_percent span {
  line-height: 1.2;
  font-size: 22px;
}
.pledge_map .pledge_3 .on_col_rate .chart_percent span:after {
  content: "%";
}
.pledge_map .pledge_3 .on_col_rate .chart_percent i {
  display: block;
  font-size: 14px;
  font-style: normal;
}
.pledge_map .pledge_3 .on_col_rate p {
  margin-top: 20px;
  font-size: 24px;
  color: #333;
  font-weight: 700;
  text-align: center;
}
.pledge_map .pledge_3 .on_col_rate:before, .pledge_map .pledge_3 .on_col_rate:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pledge_map .pledge_3 .on_col_rate:before {
  width: 89%;
  height: 89%;
  border: 3px dashed #c9c8c8;
}
.pledge_map .pledge_3 .on_col_rate:after {
  width: 60%;
  height: 60%;
  background: #f3f3f3;
}
.pledge_map .pledge_3 .on_col_chart {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 200px;
  text-align: center;
}
.pledge_map .pledge_3 .on_col_chart .on_col_chart_percent {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  color: #333;
  font-weight: 700;
  z-index: 9;
}
.pledge_map .pledge_3 .on_col_chart .on_col_chart_percent span {
  line-height: 1.2;
  font-size: 23px;
}
.pledge_map .pledge_3 .on_col_chart .on_col_chart_percent span:after {
  content: "%";
}
.pledge_map .pledge_3 .on_col_chart .on_col_chart_percent i {
  display: block;
  font-size: 15px;
  font-style: normal;
}
.pledge_map .pledge_3 .on_col_chart .on_col_chart_text_box {
  margin-top: 15px;
  line-height: 1.5;
  font-size: 18px;
  color: #333;
  font-weight: 700;
}
.pledge_map .pledge_3 .on_col_chart .on_col_chart_text_box span {
  display: block;
  font-size: 14px;
}
.pledge_map .pledge_3 .on_col_chart:before, .pledge_map .pledge_3 .on_col_chart:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pledge_map .pledge_3 .on_col_chart:before {
  width: 89%;
  height: 89%;
  border: 3px dashed #c9c8c8;
}
.pledge_map .pledge_3 .on_col_chart:after {
  width: 60%;
  height: 60%;
  background: #f3f3f3;
}
.pledge_map .pledge_3 .on_col_rate1 {
  width: 280px;
  height: 280px;
}
.pledge_map .pledge_3 .on_col_rate1 .chart_percent span {
  font-size: 30px;
}
.pledge_map .pledge_3 .on_col_rate1 .chart_percent i {
  font-size: 18px;
}

@media (max-width: 1024px) {
  .pledge_map .tabMenu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pledge_map .map_wrap {
    margin-top: 40px;
    min-width: auto;
  }
  .pledge_map .map_wrap.map_2 .cont ul li {
    position: relative;
    padding-left: 32px;
    text-align: left;
  }
  .pledge_map .map_wrap .cont {
    margin-top: 50px;
  }
  .pledge_map .map_wrap .cont h4 {
    display: block;
    margin-top: 50px;
  }
  .pledge_map .map_wrap .cont h4:nth-of-type(1) {
    margin-top: 0;
  }
  .pledge_map .map_wrap .cont ul {
    margin-top: 10px;
  }
  .pledge_map .map_wrap .cont ul li {
    position: static;
    text-align: left;
    -webkit-box-shadow: 0 2px 5px rgba(185, 185, 185, 0.45);
            box-shadow: 0 2px 5px rgba(185, 185, 185, 0.45);
  }
  .pledge_map .map_wrap .cont ul li + li {
    margin-top: 10px;
  }
  .pledge_map .map_wrap .cont ul li .line {
    display: none;
  }
}
@media (max-width: 767px) {
  .pledge_map .map_wrap .cont ul li h6 {
    font-size: 15px;
  }
  .pledge_map .map_wrap .cont ul li p {
    font-size: 13px;
  }
  .pledge_3 ul.field_rate.rate2 li {
    width: 50%;
  }
  .pledge_3 ul.field_rate.rate2 li:nth-child(n+3) {
    margin-top: 100px;
  }
}
@media (max-width: 600px) {
  .pledge_map .map_wrap .img {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .pledge_3 ul.field_rate {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pledge_3 ul.field_rate li {
    width: auto;
  }
  .pledge_3 ul.field_rate:nth-of-type(1) li {
    margin: 0;
    width: 25%;
  }
  .pledge_3 ul.field_rate:nth-of-type(1) li:first-child {
    width: 100%;
  }
  .pledge_3 ul.field_rate:nth-of-type(1) li:nth-child(n+2) {
    margin-top: 80px;
  }
  .pledge_3 ul.field_rate.rate2 li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0;
    width: 33.3333333333%;
  }
  .pledge_3 ul.field_rate.rate2 li:nth-child(n+4) {
    margin-top: 100px;
  }
  .pledge_3 .on_col_rate p {
    margin-top: 10px;
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .pledge_3 ul.field_rate + h4.htitle {
    margin-top: 100px;
  }
  .pledge_3 ul.field_rate:nth-of-type(1) li {
    width: 50%;
  }
  .pledge_3 ul.field_rate:nth-of-type(1) li:nth-child(n+2) {
    margin-top: 70px;
  }
}
@media (max-width: 424px) {
  .pledge_3 ul.field_rate:nth-of-type(1) li {
    width: 100%;
  }
  .pledge_3 ul.field_rate.rate2 li {
    width: 100%;
  }
  .pledge_3 ul.field_rate.rate2 li:nth-child(n+2) {
    margin-top: 110px;
  }
}
.plan_box {
  display: block;
  text-align: center;
}
.plan_box .sn-slogan-wrap img {
  max-width: 100%;
}
.plan_box .sn-slogan-plan {
  margin-top: 12px;
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  color: #1E2124;
  font-weight: 700;
}
.plan_box .sn-slogan-plan br {
  display: none;
}
@media only screen and (max-width: 29.99em) {
  .plan_box .sn-slogan-plan {
    display: inline;
  }
}
.plan_box .sn-slogan-plan strong {
  font-size: inherit;
  color: #0B50D0;
}
.plan_box .btn-wrap {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
@media only screen and (max-width: 29.99em) {
  .plan_box .btn-wrap {
    width: 100%;
  }
}
.plan_box .btn-wrap .btn-normal {
  width: 360px;
  max-width: 46%;
  word-break: keep-all;
  word-wrap: break-word;
}
@media only screen and (max-width: 29.99em) {
  .plan_box .btn-wrap .btn-normal {
    width: 100%;
    max-width: 100%;
  }
}

.plan_file {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  height: 30px;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  background: #6969e6;
  border-radius: 5px;
  text-decoration: none !important;
}
.plan_file:after {
  content: "";
  display: block;
  margin-left: 8px;
  width: 17px;
  height: 16px;
  background: url(/humanframe/theme/mayor/assets/images/od/pledge/ico-download-w.png) no-repeat;
  background-size: 100%;
}

@media (max-width: 1024px) {
  .plan_box div {
    margin-top: 5px;
    font-size: 32px;
  }
  .plan_box div span {
    font-size: 48px;
  }
  .plan_box ul li a {
    min-width: 220px;
  }
  .plan_box ul li span {
    font-size: 19px;
  }
  .plan_box ul li span i {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .plan_box img.pc {
    display: none;
  }
  .plan_box img.mobile {
    display: block;
    margin: 0 auto;
  }
  .plan_box div {
    margin-top: 30px;
    line-height: 1.3;
    font-size: 30px;
  }
  .plan_box div span {
    font-size: 42px;
  }
  .plan_box div br {
    display: block;
  }
  .plan_box ul {
    margin-top: 30px;
  }
  .plan_box ul li span {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .plan_box ul {
    display: block;
    margin: 30px auto 0;
    max-width: 250px;
  }
  .plan_box ul li + li {
    margin-left: 0;
    margin-top: 10px;
  }
}
.pledge_1 .vision.info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 44px;
  border: 0;
  border-radius: 16px;
  background-color: #F4F5F6;
}
@media only screen and (max-width: 47.99em) {
  .pledge_1 .vision.info_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: clamp(10px, 8px + 2vw, 20px);
  }
}
@media only screen and (max-width: 47.99em) {
  .pledge_1 .vision.info_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: clamp(10px, 8px + 2vw, 20px);
  }
}
.pledge_1 .vision.info_box .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pledge_1 .vision.info_box .img img {
  margin: 0 auto;
}
@media only screen and (max-width: 47.99em) {
  .pledge_1 .vision.info_box .img img {
    max-width: 80%;
  }
}
.pledge_1 .vision.info_box .bul-dot {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.pledge_1 {
  /* 공약 5대 목표별 9대 전략 */
}
.pledge_1 .objective {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-top: 50px;
}
.pledge_1 .objective > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: clamp(20px, 16px + 2vw, 90px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
}
@media only screen and (max-width: 80em) {
  .pledge_1 .objective > div {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media only screen and (max-width: 47.99em) {
  .pledge_1 .objective > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.pledge_1 .objective > div .img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  display: block;
  width: 410px;
  height: 100%;
  min-height: 100%;
  max-width: 32%;
}
@media only screen and (max-width: 80em) {
  .pledge_1 .objective > div .img-wrap {
    width: 32%;
    max-width: none;
  }
}
@media only screen and (max-width: 47.99em) {
  .pledge_1 .objective > div .img-wrap {
    width: 100%;
  }
}
.pledge_1 .objective > div .img-wrap img {
  width: 100%;
  min-height: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 100px 0 0;
}
@media only screen and (max-width: 80em) {
  .pledge_1 .objective > div .img-wrap img {
    height: 100%;
    width: auto;
    border-radius: 0 60px 0 0;
  }
}
@media only screen and (max-width: 47.99em) {
  .pledge_1 .objective > div .img-wrap img {
    width: 100%;
    max-width: none;
    border-radius: 0;
  }
}
.pledge_1 .objective > div .img-wrap .icon {
  position: absolute;
  width: 64px;
  height: 64px;
  top: 50%;
  right: -32px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media only screen and (max-width: 47.99em) {
  .pledge_1 .objective > div .img-wrap .icon {
    top: 100%;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.pledge_1 .objective > div .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: clamp(20px, 10px + 2.5vw, 40px);
  text-align: center;
}
.pledge_1 .objective > div .txt .vision-title {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  font-weight: 700;
  margin-top: 0;
}
@media only screen and (max-width: 47.99em) {
  .pledge_1 .objective > div .txt .vision-title {
    margin-top: 16px;
    text-align: center;
  }
}
.pledge_1 .objective > div .txt .vision-title > strong {
  color: #A50082;
}
.pledge_1 .objective > div .txt .vision-title {
  margin-bottom: 16px;
}
@media only screen and (max-width: 47.99em) {
  .pledge_1 .objective > div .txt .vision-title {
    font-size: clamp(15px, 10px + 2.4vw, 24px);
  }
}
.pledge_1 .objective h4 {
  margin-top: 0;
  line-height: 1.4;
  font-size: 20px;
  color: #333;
  font-weight: 700;
}
.pledge_1 .objective .normal-type.strategy-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
}
.pledge_1 .objective .normal-type.strategy-list > li {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #1E2124;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.pledge_1 .objective .normal-type.strategy-list > li .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 11px;
  background-color: #EEF2F7;
  padding: 4px 10px;
  color: #052b57;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  line-height: 1;
}
.pledge_1 .objective .normal-type.strategy-list > li > span strong {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
}
.pledge_1 .objective .bul-dot {
  margin-top: 15px;
}
.pledge_1 .objective .bul-dot li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  color: #333;
  font-weight: 200;
  letter-spacing: -0.5px;
}
.pledge_1 .objective .bul-dot li::before {
  top: 8px;
  background: #fbaab1;
}
.pledge_1 .objective .bul-dot li + li {
  margin-top: 8px;
}
.pledge_1 .objective .bul-dot li > strong {
  font-weight: 700;
}
.pledge_1 .objective .bul-dot li span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 10px;
}

.progress-section {
  padding: 40px 62px;
  background: #fff;
  border: 1px solid #D6E0EB;
  border-radius: 16px;
}
@media only screen and (max-width: 47.99em) {
  .progress-section {
    padding: clamp(20px, 10px + 2.5vw, 40px) clamp(10px, 8px + 2vw, 20px);
  }
}
.progress-section .progress-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
@media only screen and (max-width: 22.5em) {
  .progress-section .progress-header {
    -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: 12px;
  }
}
.progress-section .progress-header .progress-title {
  font-weight: 700;
  color: #000;
  margin: 0;
  margin-right: 20px;
  white-space: nowrap;
}
.progress-section .progress-header .progress-date {
  font-size: 18px;
  font-weight: 400;
  color: #999;
  margin: 0;
}
.progress-section .progress-charts {
  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: 63.99em) {
  .progress-section .progress-charts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    grid-row-start: 32px;
  }
}
.progress-section .progress-charts .has-chart-total {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 230px;
}
.progress-section .progress-charts .has-chart-total .chart-item {
  text-align: center;
}
.progress-section .progress-charts .has-chart-total .chart-item .chart-container .chart-wrap {
  width: 230px;
  height: 230px;
}
.progress-section .progress-charts .has-chart-total .chart-item .chart-container .chart-center-text .score {
  font-size: clamp(16px, 10px + 3.2vw, 32px);
}
.progress-section .progress-charts .has-chart-total .chart-item .chart-label {
  margin-top: 10px;
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  color: #1E2124;
  font-weight: 700;
}
.progress-section .progress-charts .divider {
  width: 1px;
  height: 268px;
  background: #EFEFEF;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 63.99em) {
  .progress-section .progress-charts .divider {
    width: 100%;
    height: 1px;
  }
}
.progress-section .progress-charts .has-charts {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-top: 16px;
  width: 740px;
  width: calc(100% - 300px);
  max-width: 740px;
  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;
  row-gap: 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 63.99em) {
  .progress-section .progress-charts .has-charts {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 47.99em) {
  .progress-section .progress-charts .has-charts {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 22.5em) {
  .progress-section .progress-charts .has-charts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.progress-section .progress-charts .has-charts .chart-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.progress-section .progress-charts .has-charts .chart-item .chart-label {
  margin-top: 10px;
  font-size: 20px;
  color: #1E2124;
  font-weight: 700;
}
.progress-section .progress-charts .has-charts .chart-item .chart-container .chart-wrap {
  width: 180px;
  height: 180px;
}
.progress-section .progress-charts .has-charts .chart-item .chart-container .chart-center-text .score {
  font-size: clamp(16px, 10px + 1.9vw, 19px);
}

.category-section {
  margin-top: 40px;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 47.99em) {
  .category-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media only screen and (max-width: 29.99em) {
  .category-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.category-cards .category-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  padding: 16px 24px;
  background: #FFF5FB;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 63.99em) {
  .category-cards .category-card {
    row-gap: 16px;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }
}
@media only screen and (max-width: 47.99em) {
  .category-cards .category-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}
.category-cards .category-card .card-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  height: 64px;
  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;
}
@media only screen and (max-width: 63.99em) {
  .category-cards .category-card .card-icon {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 22.5em) {
  .category-cards .category-card .card-icon {
    width: 40px;
    height: 40px;
  }
}
.category-cards .category-card .card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.category-cards .category-card .card-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  position: relative;
  padding: 0 40px;
}
@media only screen and (max-width: 63.99em) {
  .category-cards .category-card .card-content {
    padding: 0;
  }
}
@media only screen and (max-width: 47.99em) {
  .category-cards .category-card .card-content {
    padding: 0 24px;
  }
}
.category-cards .category-card .card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 100%;
  background: #F5D6D9;
}
@media only screen and (max-width: 63.99em) {
  .category-cards .category-card .card-content::before {
    display: none;
  }
}
.category-cards .category-card .card-title {
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  font-weight: 700;
  color: #464C53;
  word-break: keep-all;
  word-wrap: break-word;
}
.category-cards .category-card .card-subtitle {
  font-size: clamp(8px, 6px + 1.3vw, 13px);
  font-weight: 400;
  line-height: 1.5;
  color: #464C53;
}
.category-cards .category-card .card-percent {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  font-weight: 700;
  color: #1E2124;
  line-height: 1.2;
  margin-top: 8px;
}

.pledge_5 .linkWrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  gap: 40px;
}
@media only screen and (max-width: 80em) {
  .pledge_5 .linkWrap {
    gap: 24px;
  }
}
@media only screen and (max-width: 63.99em) {
  .pledge_5 .linkWrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 29.99em) {
  .pledge_5 .linkWrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pledge_5 .linkWrap > li .sotong-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 20px 20px;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.pledge_5 .linkWrap > li .sotong-card:hover {
  border-color: #333;
}
.pledge_5 .linkWrap > li .sotong-card.pledge_sms p {
  text-align: center;
}
.pledge_5 .linkWrap > li .sotong-card .i-sotong {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
}
.pledge_5 .linkWrap > li .sotong-card .i-sotong.sotong01 {
  background-image: url(/humanframe/theme/mayor/assets/images/ico/ico_sotong01.svg);
}
.pledge_5 .linkWrap > li .sotong-card .i-sotong.sotong02 {
  background-image: url(/humanframe/theme/mayor/assets/images/ico/ico_sotong02.svg);
}
.pledge_5 .linkWrap > li .sotong-card .i-sotong.sotong03 {
  background-image: url(/humanframe/theme/mayor/assets/images/ico/ico_sotong03.svg);
}
.pledge_5 .linkWrap > li .sotong-card .i-sotong.sotong04 {
  background-image: url(/humanframe/theme/mayor/assets/images/ico/ico_sotong04.svg);
}
.pledge_5 .linkWrap > li .sotong-card p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 15px 0 30px;
  color: #1E2124;
  font-weight: 400;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  letter-spacing: -0.5px;
  line-height: 1.5;
  word-break: keep-all;
  word-wrap: break-word;
}
.pledge_5 .linkWrap > li .sotong-card p strong {
  font-weight: 700;
}
.pledge_5 .linkWrap > li .sotong-card .btn-normal {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pledge_5 .linkWrap > li .sotong-card .btn-normal .i-go {
  width: 20px;
  height: 20px;
  content: url(/humanframe/theme/mayor/assets/images/ico/ico_btn_go.svg);
}
.pledge_5 .snsWrap {
  margin-top: 40px;
  padding: 50px;
  text-align: center;
  border-radius: 8px;
  background-color: #F4F5F6;
}
.pledge_5 .snsWrap > p {
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  color: #333;
  font-weight: 700;
}
.pledge_5 .snsWrap > p strong {
  font-weight: 700;
  color: #0B50D0;
}
.pledge_5 .snsWrap > p span {
  color: #e54b55;
}
.pledge_5 .snsWrap > p br {
  display: none;
}
.pledge_5 .snsWrap .sns-btn-wrap {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.pledge_5 .snsWrap .sns-btn-wrap > a {
  width: 40px;
  height: 40px;
}

.info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F4F5F6;
  padding: clamp(20px, 10px + 2.5vw, 40px);
  border-top: 1px solid #ebe8e8;
  border-bottom: 1px solid #ebe8e8;
}

.btn-wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap.is-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap:has(a:only-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.manifesto_box {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.manifesto_box.info_box {
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.manifesto_link {
  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;
  margin: 100px auto 0;
  max-width: 380px;
  height: 70px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#bb3374), to(#3622a1));
  background: linear-gradient(90deg, #bb3374, #3622a1);
  border-radius: 10px;
}
.manifesto_link:after {
  content: "";
  display: block;
  margin-left: 20px;
  width: 49px;
  height: 12px;
  background: url(/humanframe/theme/mayor/assets/images/od/pledge/ico-manifesto-arrow.png) no-repeat;
  background-size: 100%;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.manifesto_desc {
  margin-bottom: 24px;
}
.manifesto_desc p {
  margin-top: 20px;
}

/* 선거공약 및 공약확정 */
.campaign {
  position: relative;
  margin-top: 30px;
}
.campaign .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.campaign .cont li {
  margin-left: 25px;
  width: 100%;
  border: 1px solid #ededed;
  border-radius: 10px;
  overflow: hidden;
}
.campaign .cont li:first-child {
  margin-left: 0;
}
.campaign .cont li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 767px) {
  .camp_btn {
    margin-left: 5px;
    padding: 0 10px;
    height: 35px;
    font-size: 14px;
  }
  .campaign .cont li {
    margin-left: 40px;
    width: calc(50% - 20px);
  }
  .campaign .cont li:nth-child(2n+1) {
    margin-left: 0;
  }
  .campaign .cont li:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .campaign .cont li {
    margin-left: 20px;
    width: calc(50% - 10px);
  }
  .campaign .cont li:nth-child(n+3) {
    margin-top: 15px;
  }
}
/*########## 매니페스토 ##########*/
/* 매니페스토실천본부 */
/* 선거공약 및 공약확정 */
.campaign {
  position: relative;
  margin-top: 30px;
}

.pledge_camp .stitle {
  background-position: 0 14px;
}

.camp_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
  padding: 0 15px;
  height: 37px;
  font-size: 15px;
  color: #333;
  letter-spacing: -0.5px;
  border: 1px solid #cbcaca;
  border-radius: 8px;
  background: #f3f3f3;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.camp_btn:before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 16px;
  height: 14px;
  background: url(/humanframe/theme/mayor/assets/images/od/pledge/ico-download.png) no-repeat;
}

.campaign .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.campaign .cont li {
  margin-left: 25px;
  width: 100%;
  border: 1px solid #ededed;
  border-radius: 10px;
  overflow: hidden;
}

.campaign .cont li:first-child {
  margin-left: 0;
}

.campaign .cont li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 767px) {
  .camp_btn {
    margin-left: 5px;
    padding: 0 10px;
    height: 35px;
    font-size: 14px;
  }
  .campaign .cont {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .campaign .cont li {
    margin-left: 40px;
    width: calc(50% - 20px);
  }
  .campaign .cont li:nth-child(2n+1) {
    margin-left: 0;
  }
  .campaign .cont li:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .campaign .cont li {
    margin-left: 20px;
    width: calc(50% - 10px);
  }
  .campaign .cont li:nth-child(n+3) {
    margin-top: 15px;
  }
}
@media (max-width: 375px) {
  .pledge_camp .stitle {
    background-position: 0 12px;
    font-size: 15px;
    letter-spacing: -1px;
  }
  .camp_btn {
    margin-left: 0px;
    padding: 0 8px;
    font-size: 12px;
    letter-spacing: -1px;
  }
  .camp_btn:before {
    margin-right: 5px;
    width: 14px;
    height: 12px;
    background-size: 100%;
  }
}
.greeting-exVersion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #333;
}
.greeting-exVersion .imgArea {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 413px;
}
.greeting-exVersion .imgArea .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 35px 0 0;
  font-size: 17px;
}
.greeting-exVersion .imgArea .name span {
  margin-left: 15px;
  font-weight: 600;
  font-size: 30px;
  font-weight: 700;
}
.greeting-exVersion .txtArea {
  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-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: calc(100% - 413px);
}
.greeting-exVersion .txtArea > p {
  position: relative;
  margin: 22px 0 20px;
}
.greeting-exVersion .txtArea > p::after {
  content: "";
  position: absolute;
  left: 77px;
  right: 0;
  top: 50%;
  height: 3px;
  margin-top: -1px;
  background-color: #ffeff0;
  z-index: -1;
}
.greeting-exVersion .txtArea > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-right: 35px;
  letter-spacing: -1px;
}
.greeting-exVersion .txtArea > div p {
  padding-right: 10px;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.9;
}
.greeting-exVersion .txtArea > div p span {
  position: relative;
  font-weight: 600;
}
.greeting-exVersion .txtArea > div p.txt2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 13px;
  background-color: #ffeff0;
  z-index: -1;
}
.greeting-exVersion .txtArea > div p.txt1,
.greeting-exVersion .txtArea > div p.txt3,
.greeting-exVersion .txtArea > div p.txt4 {
  width: 100%;
}
.greeting-exVersion .txtArea > div p.txt1 {
  margin-bottom: 15px;
  font-size: 41px;
}
.greeting-exVersion .txtArea > div p.txt3 {
  margin-top: 35px;
}

@media screen and (max-width: 710px) {
  /* 인사말 asis style */
  .greeting-exVersion {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .greeting-exVersion .imgArea {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 280px;
  }
  .greeting-exVersion .imgArea .name {
    display: none;
  }
  .greeting-exVersion .txtArea {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  .greeting-exVersion .txtArea > p {
    margin: 20px 0 10px;
  }
  .greeting-exVersion .txtArea > div {
    padding-right: 0;
  }
  .greeting-exVersion .txtArea > div p {
    font-size: 18px;
  }
  .greeting-exVersion .txtArea > div p.txt2 span::after {
    height: 8px;
  }
  .greeting-exVersion .txtArea > div p.txt1 {
    font-size: 30px;
  }
  .greeting-exVersion .txtArea > div p.txt3 {
    margin-top: 15px;
  }
}
@media screen and (max-width: 640px) {
  /* 인사말 asis style */
  .greeting-exVersion .txtArea > div p {
    font-size: 17px;
  }
  .greeting-exVersion .txtArea > div p.txt1 {
    font-size: 28px;
  }
}
.mayorProfile-exVersion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #333;
}
.mayorProfile-exVersion .imgArea {
  width: 432px;
}
.mayorProfile-exVersion .infoArea {
  width: calc(100% - 470px);
}
.mayorProfile-exVersion .infoArea .name {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}
.mayorProfile-exVersion .infoArea .name span {
  margin-right: 20px;
  font-weight: 600;
  font-size: 36px;
}
.mayorProfile-exVersion .infoArea .profile {
  position: relative;
  letter-spacing: -1px;
}
.mayorProfile-exVersion .infoArea .profile::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #f0efef;
  z-index: -1;
}
.mayorProfile-exVersion .infoArea .profile .profileList + .profileList {
  margin-top: 32px;
}
.mayorProfile-exVersion .infoArea .profile .profileList p {
  position: relative;
  margin-bottom: 15px;
  padding-left: 25px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
}
.mayorProfile-exVersion .infoArea .profile .profileList p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background-color: #333;
}
.mayorProfile-exVersion .infoArea .profile .profileList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 25px;
}
.mayorProfile-exVersion .infoArea .profile .profileList ul li {
  position: relative;
  width: 100%;
  padding-left: 16px;
  font-size: 17px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mayorProfile-exVersion .infoArea .profile .profileList ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 3px;
  height: 3px;
  background-color: #333;
  border-radius: 100%;
}
.mayorProfile-exVersion .infoArea .profile .profileList ul.col-2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 194px;
}
.mayorProfile-exVersion .infoArea .profile .profileList ul.col-2 li {
  width: calc(50% - 5px);
}
.mayorProfile-exVersion .infoArea .profile .profileList ul.col-2 li:nth-child(n+7) {
  margin-left: 10px;
}
.mayorProfile-exVersion .infoArea .profile .profileList .jcsb-c2 > li {
  width: calc(50% - 5px);
}

@media screen and (max-width: 640px) {
  /* 프로필 asis style */
  .mayorProfile-exVersion {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mayorProfile-exVersion .imgArea {
    width: 280px;
    margin-bottom: 20px;
  }
  .mayorProfile-exVersion .infoArea {
    width: 100%;
  }
  .mayorProfile-exVersion .infoArea .name {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .mayorProfile-exVersion .infoArea .name span {
    font-size: 30px;
  }
  .mayorProfile-exVersion .infoArea .profile .profileList + .profileList {
    margin-top: 15px;
  }
  .mayorProfile-exVersion .infoArea .profile .profileList p {
    padding-left: 17px;
    font-size: 19px;
  }
  .mayorProfile-exVersion .infoArea .profile .profileList ul {
    padding-left: 17px;
  }
  .mayorProfile-exVersion .infoArea .profile .profileList ul li {
    font-size: 14px;
    line-height: 1.6;
  }
}
.mayorInaugural-exVersion > p {
  margin-bottom: 50px;
}

.inauguralBox-exVersion {
  position: relative;
  font-size: 17px;
  color: #555;
}
.inauguralBox-exVersion strong {
  color: #000;
}
.inauguralBox-exVersion + .inauguralBox-exVersion {
  margin-top: 50px;
  padding-top: 45px;
  border-top: 1px solid #e0e0e0;
}
.inauguralBox-exVersion + .inauguralBox-exVersion::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  width: 20px;
  height: 19px;
  background: url("/humanframe/theme/mayor/assets/images/content/ico_inaugural.png") no-repeat 0 0;
}
.inauguralBox-exVersion .txt1 {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.4;
  color: #333;
}
.inauguralBox-exVersion .txt2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #333;
}
.inauguralBox-exVersion .txt3 {
  margin-top: 20px;
}
.inauguralBox-exVersion .txt3 + .txt2 {
  margin-top: 30px;
}
.inauguralBox-exVersion .sign {
  position: absolute;
  right: 0;
  bottom: 0;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.inauguralBox-exVersion .sign p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.inauguralBox-exVersion .sign p span {
  margin-left: 10px;
  font-weight: 600;
  font-size: 30px;
}

@media screen and (max-width: 800px) {
  /* 취임사 asis style */
  .mayorInaugural > p {
    margin-bottom: 30px;
  }
  .inauguralBox-exVersion {
    font-size: 15px;
    line-height: 1.4;
  }
  .inauguralBox-exVersion + .inauguralBox-exVersion {
    margin-top: 35px;
    padding-top: 30px;
  }
  .inauguralBox-exVersion .txt1 {
    font-size: 24px;
  }
  .inauguralBox-exVersion .txt2 {
    font-size: 24px;
  }
  .inauguralBox-exVersion .sign p span {
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  /* 인사말 asis style */
  /* 취임사 asis style */
  .mayorInaugural > p {
    margin-bottom: 20px;
  }
  .inauguralBox-exVersion {
    font-size: 14px;
  }
  .inauguralBox-exVersion + .inauguralBox-exVersion {
    margin-top: 30px;
    padding-top: 25px;
  }
  .inauguralBox-exVersion .txt1 {
    font-size: 20px;
  }
  .inauguralBox-exVersion .txt2 {
    font-size: 20px;
  }
  .inauguralBox-exVersion .txt3 {
    margin-top: 10px;
  }
  .inauguralBox-exVersion .txt3 + .txt2 {
    margin-top: 20px;
  }
  .inauguralBox-exVersion .sign {
    position: relative;
    right: auto;
    bottom: auto;
  }
  .inauguralBox-exVersion .sign p span {
    font-size: 22px;
  }
}