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

.scrollbar::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}
.scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #ECF2FE;
  border-radius: 4px;
  opacity: 0.3;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #ECF2FE;
  opacity: 0.4;
}
.scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #ECF2FE transparent;
}

.s-tit {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: clamp(16px, 10px + 3.2vw, 32px);
  color: #1E2124;
  font-weight: 700;
}

.s-tit-sub {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  color: #1E2124;
  font-weight: 700;
}
.content-section .s-tit-sub:first-of-type {
  margin-top: 0;
}

.content-section {
  margin-bottom: 64px;
}
.content-section .section-body:has(.course-info) .course-info {
  margin-top: 20px;
}
.content-section .section-body:has(.course-info) .course-info:first-of-type {
  margin-top: 0;
}
.content-section .section-body:has(.grid-box) .grid-box {
  margin-top: 40px;
}
.content-section .section-body:has(.intro-content) .intro-content {
  margin-top: 64px;
}
.content-section .section-body:has(.intro-content) .intro-content:first-of-type {
  margin-top: 0;
}
.content-section .section-body:has(.traffic-list) .location-map {
  overflow: hidden;
  margin-top: 0;
  border-radius: 10px;
}
.content-section .section-body:has(.traffic-list) .location-map > img {
  width: 100%;
}
.content-section .section-body:has(.traffic-list) .ico {
  width: 24px;
  height: 24px;
  background-color: #ECF2FE;
  border-radius: 50%;
}
.content-section .section-body:has(.traffic-list) .grid-box {
  margin-top: 40px;
}
.content-section .section-body .grid-group {
  padding: 0;
}
.content-section .section-body .desc {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
}
.content-section .section-body .section-box {
  padding: clamp(20px, 10px + 2.5vw, 40px);
  border: 1px solid #CDD1D5;
  border-radius: 12px;
}
@media only screen and (max-width: 47.99em) {
  .content-section .section-body .section-box {
    padding: clamp(10px, 8px + 2vw, 20px);
  }
}
.content-section .section-body .section-box.is-bg {
  background-color: #ECF2FE;
}
.content-section .section-body .section-box h4:first-of-type,
.content-section .section-body .section-box .s-tit-sub:first-of-type {
  margin-top: 0;
}

.btn-black {
  background: #000000;
  color: #ffffff;
}
.btn-black:hover {
  background: #333333;
}

.location-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  background-color: #FFF2FC;
  padding: 4px 12px;
  border: 1px solid #A50082;
  border-radius: 8px;
  color: #A50082;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.location-link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(/humanframe/theme/apply/assets/images/ico/ico_open-new.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-normal.bg-btn-secondary:has(.ico) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
.btn-normal.bg-btn-secondary:has(.ico) .ico {
  width: 16px;
  height: 16px;
  position: relative;
}
.btn-normal.bg-btn-secondary:has(.ico) .ico::before {
  display: none;
}
.btn-normal.bg-btn-secondary:has(.ico) .ico::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.btn-normal.bg-btn-secondary:has(.ico) .ico.ico-link-view::after {
  background-image: url(/humanframe/theme/tour/assets/images/ico/btn/ico_link_view.svg);
}
.btn-normal.bg-btn-secondary:has(.ico) .ico.ico-link-external::after {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_link_blue.svg);
}
.btn-normal.bg-btn-secondary:has(.ico) .ico.ico-download::after {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_download_blue.svg);
}
.btn-normal.bg-btn-secondary:has(.ico) .ico.ico-link-download::after {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_download_blue.svg);
}
.btn-normal.bg-btn-secondary:has(.ico) .ico.ico-link-download.is-white::after {
  color: #fff;
  background-image: url(/humanframe/theme/tour/assets/images/ico/btn/ico_link_external_white.svg);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.btn-normal.bg-btn-primary .ico {
  width: 20px;
  height: 20px;
}
.btn-normal.bg-btn-primary .ico.ico-link-external::after {
  background-image: url(/humanframe/theme/tour/assets/images/ico/btn/ico_link_external_white.svg);
}

.traffic-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.traffic-list .traffic-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.traffic-list .traffic-item .item-key {
  min-width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-item-align: self-start;
      align-self: self-start;
  gap: 16px;
  white-space: nowrap;
}
.traffic-list .traffic-item .item-value {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  row-gap: 24px;
}
@media only screen and (max-width: 63.99em) {
  .quick-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    row-gap: 12px;
  }
}
.quick-list .quick-item {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
}
.quick-list .quick-item .ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
}
.quick-list .quick-item p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
  color: #1E2124;
}
.quick-list .quick-item a,
.quick-list .quick-item button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #1E2124;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 400;
  text-align: left;
}

.dict-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 63.99em) {
  .dict-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.dict-list > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
@media only screen and (max-width: 63.99em) {
  .dict-list > li {
    width: 100%;
  }
}
.dict-list.dict-list {
  margin-top: 24px;
}
.dict-list .dict-item {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
  background-color: #EEF2F7;
  border-radius: 10px;
  gap: 24px;
}
@media only screen and (max-width: 63.99em) {
  .dict-list .dict-item {
    padding: clamp(10px, 8px + 2vw, 20px);
    gap: 16px;
  }
}
.dict-list .dict-item > .ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.dict-list .dict-item dl {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #1E2124;
  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;
}
.dict-list .dict-item dl > .tit {
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  font-weight: 700;
}
.dict-list .dict-item dl > dd {
  font-size: clamp(10px, 8px + 1.5vw, 15px);
  font-weight: 400;
}

.dict-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 63.99em) {
  .dict-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
}
.dict-box .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  position: relative;
  display: block;
  background-color: #EEF2F7;
  border-radius: 10px;
  padding: 24px clamp(12px, 10px + 2vw, 32px);
}
@media only screen and (max-width: 63.99em) {
  .dict-box .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 8px);
    padding: clamp(10px, 8px + 2vw, 20px);
  }
}
@media only screen and (max-width: 29.99em) {
  .dict-box .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
.dict-box .item > dl > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dict-box .item > dl > dt img {
  position: relative;
  width: 48px;
  height: 48px;
}
.dict-box .item > dl > dt {
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  font-weight: 700;
  color: #1E2124;
}
.dict-box .item > dl > dd {
  margin-top: 24px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #1E2124;
}

.box {
  padding: 24px;
  border: 1px solid #ddd;
  border-color: getLineColor(secondary_light);
  border-radius: 12px;
  color: getTextColor(basic);
  font-size: getTextSize(body_large);
}

.file-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: getGap(5);
  padding: 12px;
  border: 1px solid #ddd;
  border-color: getLineColor(secondary_light);
  border-radius: 12px;
  color: getTextColor(basic);
  font-size: getTextSize(body_large);
}
@media only screen and (max-width: 47.99em) {
  .file-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.file-box .file-name {
  color: getTextColor(text_basic);
  font-size: getTextSize(label_small);
}
.file-box .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.file-box .btn-wrap .btn-normal {
  margin-right: 0;
}
@media only screen and (max-width: 29.99em) {
  .file-box .btn-wrap {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media only screen and (max-width: 20em) {
  .file-box .btn-wrap {
    width: 100%;
    -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;
  }
}

.ico-xs {
  width: 12px;
  height: 12px;
}

.ico-sm {
  width: 24px;
  height: 24px;
}

.ico-md {
  width: 32px;
  height: 32px;
}

.ico-lg {
  width: 48px;
  height: 48px;
}

.ico-xl {
  width: 72px;
  height: 72px;
}

.ico-xxl {
  width: 120px;
  height: 120px;
}

.ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
  width: 24px;
  height: 24px;
  text-indent: -9999999px;
}
.ico::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.content-section .section-body:has(.traffic-list) .traffic-list .ico.arrow {
  width: 12px;
  height: 12px;
  background-color: transparent !important;
}
.content-section .section-body:has(.traffic-list) .traffic-list .ico.arrow::before {
  content: "";
  width: 12px;
  height: 12px;
}
.content-section .section-body:has(.traffic-list) .traffic-list .ico.arrow.ico-arrow-next::before {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_button.svg);
}
.content-section .section-body:has(.traffic-list) .traffic-list .ico.arrow.ico-arrow-prev::before {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_arrow_left.svg);
}
.ico.ico-link, .ico.ico-external {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  background-color: transparent;
}
.ico.ico-link::before {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_link_black.svg);
}
.ico.ico-link-external::before {
  content: "";
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_link_black.svg);
}
.info-list .ico.ico-link-external::before {
  width: 16px;
  height: 16px;
  background-color: transparent;
  background-size: 100% auto;
  -ms-flex-item-align: center;
      align-self: center;
}
.section-body .ico, .place-item .ico {
  width: 24px;
  height: 24px;
}
.section-body .ico::before, .place-item .ico::before {
  background-size: 100% auto;
}
.section-body .ico.ico-location::before, .place-item .ico.ico-location::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_spot_location.svg);
}
.section-body .ico.ico-location-blue::before, .place-item .ico.ico-location-blue::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_spot_location_blue.svg);
}
.section-body .ico.ico-tel::before, .place-item .ico.ico-tel::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_spot_tel.svg);
}
.section-body .ico.ico-homepage::before, .place-item .ico.ico-homepage::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_spot_homepage.svg);
}
.section-body .ico.ico-open-new::before, .place-item .ico.ico-open-new::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_open-new.svg);
}
.section-body .ico.ico-time::before, .place-item .ico.ico-time::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_time.svg);
}
.ico a, button .ico {
  width: 24px;
  height: 24px;
}
.ico a::before, button .ico::before {
  background-size: 100% auto;
}
.ico a.ico-go::before, button .ico.ico-go::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_go.svg);
}
.ico a.ico-link::after, button .ico.ico-link::after {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_link_black.svg);
}
.ico a.ico-map-big::before, button .ico.ico-map-big::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico-map-big.svg);
}
.quick-list .ico {
  width: 32px;
  height: 32px;
  background-color: #ECF2FE;
  background-size: 50%;
  border-radius: 50%;
}
.quick-list .ico::before {
  background-size: 70% auto;
}
.quick-list .ico.ico-map::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/quick/ico-map.svg);
}
.quick-list .ico.ico-route::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/quick/ico-route.svg);
}
.quick-list .ico.ico-walking::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/quick/ico-walking.svg);
}
.quick-list .ico.ico-bike::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/quick/ico-bike.svg);
}
.quick-list .ico.ico-date-big::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/quick/ico-date-big.svg);
}
.quick-list .ico.ico-date-chk::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/quick/ico-date-chk.svg);
}
.quick-list .ico.ico-bus::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/quick/ico-bus.svg);
}
.quick-list .ico.ico-subway::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/quick/ico-subway.svg);
}
.ico.sns::before {
  background-size: 100% 100%;
}
.ico.sns.ico-facebook::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/quick/ico-facebook.png);
}
.ico.sns.ico-weibo::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/quick/ico-weibo.png);
}
.traffic-list .ico, .info-list .ico {
  width: 24px;
  height: 24px;
}
.traffic-list .ico::before, .info-list .ico::before {
  background-color: #ECF2FE;
  background-size: 70% auto;
}
.traffic-list .ico.ico-bookmark::before, .info-list .ico.ico-bookmark::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-bookmark.svg);
}
.traffic-list .ico.ico-calendar::before, .info-list .ico.ico-calendar::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-calendar.svg);
}
.traffic-list .ico.ico-label::before, .info-list .ico.ico-label::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-label.svg);
}
.traffic-list .ico.ico-location::before, .info-list .ico.ico-location::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-location.svg);
}
.traffic-list .ico.ico-tel::before, .info-list .ico.ico-tel::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-tel.svg);
}
.traffic-list .ico.ico-home::before, .info-list .ico.ico-home::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-home.svg);
}
.traffic-list .ico.ico-clock::before, .info-list .ico.ico-clock::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-clock.svg);
}
.traffic-list .ico.ico-parking::before, .info-list .ico.ico-parking::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-parking.svg);
}
.traffic-list .ico.ico-info::before, .info-list .ico.ico-info::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-info.svg);
}
.traffic-list .ico.ico-building::before, .info-list .ico.ico-building::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-building.svg);
}
.traffic-list .ico.ico-docs::before, .info-list .ico.ico-docs::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-docs.svg);
}
.traffic-list .ico.ico-bed::before, .info-list .ico.ico-bed::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-bed.svg);
}
.traffic-list .ico.ico-mountain::before, .info-list .ico.ico-mountain::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-mountain.svg);
}
.traffic-list .ico.ico-places::before, .info-list .ico.ico-places::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-places.svg);
}
.traffic-list .ico.ico-industry::before, .info-list .ico.ico-industry::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-industry.svg);
}
.traffic-list .ico.ico-subway::before, .info-list .ico.ico-subway::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-subway.svg);
}
.traffic-list .ico.ico-bus::before, .info-list .ico.ico-bus::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-bus.svg);
}
.traffic-list .ico.ico-settings::before, .info-list .ico.ico-settings::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-settings.svg);
}
.traffic-list .ico.ico-syringe::before, .info-list .ico.ico-syringe::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-syringe.svg);
}
.traffic-list .ico.ico-depth::before, .info-list .ico.ico-depth::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-depth.svg);
}
.traffic-list .ico.ico-document::before, .info-list .ico.ico-document::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-document.svg);
}
.traffic-list .ico.ico-translation::before, .info-list .ico.ico-translation::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-translation.svg);
}
.traffic-list .ico.ico-children::before, .info-list .ico.ico-children::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-children.svg);
}
.traffic-list .ico.ico-card::before, .info-list .ico.ico-card::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-card.svg);
}
.traffic-list .ico.ico-shape::before, .info-list .ico.ico-shape::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-shape.svg);
}
.traffic-list .ico.ico-store::before, .info-list .ico.ico-store::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-store.svg);
}
.traffic-list .ico.ico-seat::before, .info-list .ico.ico-seat::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-seat.svg);
}
.traffic-list .ico.ico-book::before, .info-list .ico.ico-book::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-book.svg);
}
.traffic-list .ico.ico-pentagon::before, .info-list .ico.ico-pentagon::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/info/ico-pentagon.svg);
}
.dict-item .ico {
  width: 72px;
  height: 72px;
}
.dict-item .ico::before {
  background-color: #fff;
  background-size: 70% auto;
  border-radius: 50%;
}
.dict-item .ico.ico-service-onestop::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/dict/ico_service_onestop.svg);
}
.dict-item .ico.ico-service-translation::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/dict/ico_service_translation.svg);
}
.dict-item .ico.ico-service-preferential::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/dict/ico_service_preferential.svg);
}
.dict-item .ico.ico-bird::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/dict/ico-bird.svg);
}
.dict-item .ico.ico-fish::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/dict/ico-fish.svg);
}
.dict-item .ico.ico-plant::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/dict/ico-plant.svg);
}
.ico.ico-link-location {
  width: 24px;
  height: 24px;
}
.ico.ico-link-location::before {
  display: none !important;
}
.ico.ico-link-location::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_spot_location_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.ico.ico-link-external {
  width: 24px;
  height: 24px;
}
.ico.ico-link-external::before {
  display: none !important;
}
.ico.ico-link-external::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_link_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

.picto {
  display: inline-block;
  position: relative;
  margin-right: 8px;
  margin-bottom: 4px;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background-color: transparent;
  vertical-align: middle;
}
.picto:last-child {
  margin-right: 0;
}
.picto::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center center;
}
.picto.picto-wheelchair::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair.png);
}
.picto.picto-people::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_people.png);
}
.picto.picto-ear::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_ear.png);
}
.picto.picto-lactation::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_lactation.png);
}
.picto.picto-wheelchair-bus::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_bus.png);
}
.picto.picto-wheelchair-card::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_card.png);
}
.picto.picto-wheelchair-car::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_car.png);
}
.picto.picto-wheelchair-elevator::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_elevator.png);
}
.picto.picto-wheelchair-guardian::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_guardian.png);
}
.picto.picto-wheelchair-p::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_p.png);
}
.picto.picto-wheelchair-rental-car::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_rental_car.png);
}
.picto.picto-wheelchair-slope::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_slope.png);
}
.picto.picto-wheelchair-subway-car::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_subway_car.png);
}
.picto.picto-wheelchair-tablecar::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_tablecar.png);
}
.picto.picto-wheelchair-wc::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_wheelchair_wc.png);
}
.picto.picto-stroller::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/pictogram/picto_stroller.png);
}

.info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media only screen and (max-width: 47.99em) {
  .info-list {
    gap: 16px;
  }
}
.info-list > li {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  gap: 12px;
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr;
}
@media only screen and (max-width: 47.99em) {
  .info-list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
}
@media only screen and (max-width: 29.99em) {
  .info-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.info-list > li > p {
  -ms-flex-item-align: start;
      align-self: start;
}
.info-list > li .info-key {
  -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;
  gap: 12px;
  min-width: 96px;
  padding-left: 0;
  -ms-word-break: keep-all;
  word-break: keep-all;
  word-wrap: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
}
.info-list > li .info-key .ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background-color: #D6EDFF;
  border-radius: 50%;
}
@media only screen and (max-width: 47.99em) {
  .info-list > li .info-key .ico {
    display: none;
  }
}
.info-list > li .info-key strong {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #1E2124;
}
.info-list > li .info-value {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
  white-space: normal;
  word-break: break-all;
  overflow-wrap: break-word;
}
.info-list > li .info-value a:not(.btn-normal) {
  color: #096AB3;
  text-decoration: underline;
}
.info-list > li .info-value a:has(.ico) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-list > li .info-value a:has(> .ico-link-location),
.info-list > li .info-value span:has(> .ico-link-location) {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.grid-group-list .info-list > li .info-value a:has(> .ico-link-location),
.grid-group-list .info-list > li .info-value span:has(> .ico-link-location) {
  display: inline;
}
@media only screen and (max-width: 29.99em) {
  .info-list > li .info-value a:has(> .ico-link-location),
  .info-list > li .info-value span:has(> .ico-link-location) {
    display: inline;
  }
}
.info-list > li .info-value a:has(> .ico-link-location).is-long-text,
.info-list > li .info-value span:has(> .ico-link-location).is-long-text {
  display: inline;
  word-break: break-all;
}
.info-list > li .info-value a:has(> .ico-link-location) > span,
.info-list > li .info-value span:has(> .ico-link-location) > span {
  color: #464C53;
  text-decoration: none;
}
.info-list > li .info-value a:has(> .ico-link-location):hover,
.info-list > li .info-value span:has(> .ico-link-location):hover {
  text-decoration: underline;
  color: #096AB3;
}
.info-list > li .info-value a:has(> .ico-link-location):hover > span,
.info-list > li .info-value span:has(> .ico-link-location):hover > span {
  color: inherit;
}
.info-list > li .info-value a:has(> .ico-link-location) > .ico-link-location,
.info-list > li .info-value span:has(> .ico-link-location) > .ico-link-location {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: transparent;
}
.grid-group-list .info-list > li .info-value a:has(> .ico-link-location) > .ico-link-location,
.grid-group-list .info-list > li .info-value span:has(> .ico-link-location) > .ico-link-location {
  margin-bottom: -4px;
}
.info-list > li .info-value .textcolor-danger,
.info-list > li .info-value > em {
  color: #BD2C0F;
}
.info-list > li .info-value a:has(.ico-link-external):not(.btn-normal) {
  display: inline;
}
.info-list > li .info-value a:has(.ico-link-external):not(.btn-normal) .ico-link-external {
  display: inline-block;
  margin-left: 2px;
  width: 18px;
  height: 19px;
  background-color: transparent;
  margin-bottom: -4px;
}

.grid-group-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.grid-group-list.cols2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 47.99em) {
  .grid-group-list.cols2 {
    grid-template-columns: 1fr;
  }
}
.grid-group-list.cols3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 63.99em) {
  .grid-group-list.cols3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 47.99em) {
  .grid-group-list.cols3 {
    grid-template-columns: 1fr;
  }
}

.grid-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(24px, 12px + 1vw, 56px);
}
.grid-group-list .grid-group {
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 0;
}
.grid-group-list .grid-group:not(.cols2) {
  padding: clamp(12px, 10px + 2vw, 32px);
}
@media only screen and (max-width: 47.99em) {
  .grid-group-list .grid-group:not(.cols2) {
    padding: clamp(10px, 8px + 2vw, 20px);
  }
}
.grid-group-list .grid-group[onclick] .desc, .grid-group-list .grid-group:has(> .grid-image[onclick]) .desc {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.grid-group-list .grid-group[onclick] .desc.line2, .grid-group-list .grid-group:has(> .grid-image[onclick]) .desc.line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.grid-group-list .grid-group[onclick] .desc.line3, .grid-group-list .grid-group:has(> .grid-image[onclick]) .desc.line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.grid-group-list .grid-group[onclick] .desc.line4, .grid-group-list .grid-group:has(> .grid-image[onclick]) .desc.line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.grid-group-list .grid-group[onclick]:hover, .grid-group-list .grid-group[onclick]:focus, .grid-group-list .grid-group:has(> .grid-image[onclick]):hover, .grid-group-list .grid-group:has(> .grid-image[onclick]):focus {
  cursor: pointer;
}
.grid-group-list .grid-group[onclick]:hover .tit,
.grid-group-list .grid-group[onclick]:hover .desc, .grid-group-list .grid-group[onclick]:focus .tit,
.grid-group-list .grid-group[onclick]:focus .desc, .grid-group-list .grid-group:has(> .grid-image[onclick]):hover .tit,
.grid-group-list .grid-group:has(> .grid-image[onclick]):hover .desc, .grid-group-list .grid-group:has(> .grid-image[onclick]):focus .tit,
.grid-group-list .grid-group:has(> .grid-image[onclick]):focus .desc {
  text-decoration: underline;
}
.grid-group-list .grid-group[onclick]:hover .info-list > li, .grid-group-list .grid-group[onclick]:focus .info-list > li, .grid-group-list .grid-group:has(> .grid-image[onclick]):hover .info-list > li, .grid-group-list .grid-group:has(> .grid-image[onclick]):focus .info-list > li {
  text-decoration: none;
}
@media only screen and (max-width: 63.99em) {
  .grid-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.grid-group .grid-image {
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 410px;
  height: 231px;
  background-color: #d9d9d9;
  border-radius: 10px;
}
@media only screen and (max-width: 63.99em) {
  .grid-group .grid-image {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  }
}
.grid-group .grid-image > span {
  display: none !important;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 16px 0 0 0;
  padding: 0;
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  color: #fff;
  line-height: 1;
}
.grid-group .grid-image > span > strong {
  padding-left: 0;
  background-image: none;
  font-weight: 700;
}
.grid-group .grid-image img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
}
.grid-group .grid-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.grid-group .grid-info .tit {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: 24px;
  color: #1E2124;
}
@media only screen and (max-width: 29.99em) {
  .grid-group .grid-info .tit {
    font-size: 20px;
  }
}
.grid-group .grid-info .etc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}
.grid-group .grid-info .etc span {
  display: inline-block;
  background-color: #FDEFEC;
  border-radius: 4px;
  padding: 6px 8px;
  color: #BD2C0F;
  font-size: 15px;
  line-height: 1;
}
.grid-group .grid-info .badge-category {
  min-width: 42px;
  display: inline-block;
  background-color: #FDEFEC;
  border-radius: 4px;
  padding: 6px 8px;
  color: #BD2C0F;
  font-size: 15px;
  line-height: 1;
  margin-top: -2px;
}
.grid-group .grid-info .desc {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
  font-weight: 400;
}
.grid-group .grid-info .desc.line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.grid-group .grid-info .desc.line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.grid-group .grid-info .desc.line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.grid-group .grid-info .info-list {
  margin-top: 24px;
}
.grid-group.vert {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-bottom: 0;
  padding: 0;
}
.grid-group-list .grid-group.vert {
  padding: 0;
}
.grid-group.vert .grid-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 0;
  max-width: 100%;
  padding-top: 56.25%;
  border-radius: 0 !important;
}
.grid-group.vert .grid-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: clamp(12px, 10px + 2vw, 32px);
}
@media only screen and (max-width: 47.99em) {
  .grid-group.vert .grid-info {
    padding-bottom: clamp(10px, 8px + 2vw, 20px);
  }
}

.grid-group-list.has-detail .grid-group .grid-info .desc {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.grid-group-list.has-detail .grid-group .grid-info .desc.line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.grid-group-list.has-detail .grid-group .grid-info .desc.line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.grid-group-list.has-detail .grid-group .grid-info .desc.line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.grid-group-list .grid-group.vert .grid-info .desc {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.intro-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 64px;
  gap: 36px;
}
@media only screen and (max-width: 63.99em) {
  .intro-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
@media only screen and (max-width: 63.99em) {
  .content-section .section-body:has(.intro-content) .intro-content {
    margin-top: 40px;
  }
}
.intro-content:first-of-type {
  margin-top: 0;
}
.intro-content > .img-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  overflow: hidden;
  width: 410px;
  max-height: 231px;
  max-width: 40%;
  border-radius: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 63.99em) {
  .intro-content > .img-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
  }
}
.intro-content > .img-box > img {
  width: 100%;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-content > .img-box > img:only-child {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 추가 스타일 필요시 여기에 작성 */
}
.intro-content > .img-box > img:first-child:nth-last-child(2),
.intro-content > .img-box > img:first-child:nth-last-child(2) ~ img {
  width: calc(50% - 4px);
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-content > .img-box > img:first-child:nth-last-child(3),
.intro-content > .img-box > img:first-child:nth-last-child(3) ~ img {
  width: calc((100% - 16px) / 3);
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-content > .img-box > img:first-child:nth-last-child(4),
.intro-content > .img-box > img:first-child:nth-last-child(4) ~ img {
  width: calc(50% - 4px);
  height: calc(50% - 4px);
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}
.intro-content > .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 63.99em) {
  .intro-content > .item {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.intro-content > .item > .icon-info {
  margin-top: 8px;
  font-size: 18px;
}
.intro-content > .item > .icon-info::before {
  top: 14px;
}
.intro-content > .item .tit {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  color: #1E2124;
  font-weight: 700;
}
.intro-content > .item > .tit {
  position: relative;
}
.intro-content > .item > .item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 24px;
  padding-bottom: 16px;
}
@media only screen and (max-width: 63.99em) {
  .intro-content > .item > .item-head {
    padding-top: 0;
  }
}
.intro-content > .item > .item-head .tit {
  display: inline;
  margin: 0;
  padding-bottom: 0;
}
.intro-content > .item > .item-head .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.intro-content > .item > .item-head .location .ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.intro-content > .item > .item-head .location strong {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 700;
  color: #1E2124;
}
.intro-content > .item .desc {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
  font-weight: 400;
}
.intro-content > .item > .cont.txt {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 400;
}
.intro-content > .item.bi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  gap: 24px;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 63.99em) {
  .intro-content > .item.bi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.intro-content > .item.bi > .bi-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 350px;
  background-color: #e4f2ff;
  text-align: center;
}
.intro-content > .item.bi > .text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.intro-content > .item.bi > .text > .tit {
  font-weight: 700;
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  color: #1E2124;
}
.intro-content > .item.bi > .text > p {
  color: #464C53;
  font-size: clamp(16px, 10px + 1.9vw, 19px);
}
.intro-content.is-center {
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro-content.is-center > .item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.intro-content.is-center > .item > .tit {
  text-align: center;
}
.intro-content.is-center > .item > .tit.em::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.intro-content.is-center > .img-box {
  width: 68%;
  max-width: 68%;
  max-height: none;
}
@media only screen and (max-width: 63.99em) {
  .intro-content.is-center > .img-box {
    width: 100%;
    max-width: 100%;
  }
}

.location-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 47.99em) {
  .location-map {
    height: 280px;
  }
}
.location-map > img {
  height: 100%;
  width: auto;
}
.location-map.root {
  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%;
  height: auto;
  margin-bottom: 70px;
}
.location-map.root > .map {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 0;
}
.location-map.root > .map > img {
  width: 100%;
  height: 100%;
}
.location-map.root > .cont {
  width: 100%;
  height: calc(100% - 600px);
  border: 1px solid #d9d9d9;
  border-radius: 0 0 20px 20px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.board-wrap .board-search.is-center {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.board-wrap .board-search .search-flex > .btn-wrap {
  margin-top: 0;
}
.board-wrap .board-search .form-wrap > .btn-wrap {
  margin-top: 0;
}
.board-wrap .board-body .board-multi-body > ul > li .img {
  height: 216px;
  background-color: #cdd1d5;
}
.board-wrap .board-body .board-multi-body > ul > li .text {
  padding: 32px;
}
@media only screen and (max-width: 29.99em) {
  .board-wrap .board-body .board-multi-body > ul > li .text {
    padding: 24px;
  }
}
.board-wrap .board-body .board-multi-body > ul > li .text .etc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.board-wrap .board-body .board-multi-body > ul > li .text .etc .receipt {
  font-size: 15px;
  padding: 1px 8px;
  border-radius: 4px;
}
.board-wrap .board-body .board-multi-body > ul > li .text .etc .receipt.ing {
  background-color: #fdefec;
  color: #bd2c0f;
}
.board-wrap .board-body .board-multi-body > ul > li .text .etc .receipt.end {
  background-color: #e6e8ea;
  color: #6d7882;
}
.board-wrap .board-body .board-multi-body > ul > li .text .etc .receipt.ep {
  background-color: #eef2f7;
  color: #096ab3;
}
.board-wrap .board-body .board-multi-body > ul > li .text .etc .state {
  padding-left: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_state.svg) no-repeat 0 center;
}
.board-wrap .board-body .board-multi-body > ul > li .text .etc .state.d-day {
  font-weight: 700;
  background: url(/humanframe/theme/global/assets/images/ico/ico_dday.svg) no-repeat 0 center;
}
.board-wrap .board-body .board-multi-body > ul > li .text dl dt {
  font-size: 19px;
  font-weight: 700;
}
.board-wrap .board-body .board-multi-body > ul > li .text dl dd {
  margin-top: 16px;
}
.board-wrap .board-body .board-multi-body > ul > li .text .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.board-wrap .board-body .board-multi-body > ul > li .text .tag li {
  font-size: 15px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid #cdd1d5;
}
.board-wrap .board-body .board-multi-body.type-multi > ul > li dl dt {
  font-size: 24px;
}
.board-wrap .board-body .board-multi-body.type-multi > ul > li dl dt::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/humanframe/theme/global/assets/images/ico/ico_arrow_right.svg) no-repeat 0 0;
  vertical-align: middle;
  margin-top: -3px;
}
.board-wrap .board-body .board-multi-body.type-multi > ul > li dl dd {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6em;
}
.board-wrap .board-body .board-multi-body.type-multi > ul > li .btn-wrap {
  text-align: right;
  margin-top: 36px;
}
.board-wrap .board-body .board-multi-body.type-multi > ul > li .tag {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #cdd1d5;
}
.board-wrap .board-body .board-multi-body.type-multi > ul > li .etc + dl dd {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  max-height: 3em;
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .text {
  padding: clamp(12px, 10px + 2vw, 32px);
}
@media only screen and (max-width: 29.99em) {
  .board-wrap .board-body .board-gallery-body.gallery-type > ul > li .text {
    padding: clamp(10px, 8px + 2vw, 20px);
  }
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .text > dl > dt {
  color: #1E2124;
  font-size: 21px;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .board-gallery-body.gallery-type > ul > li .text > dl > dt {
    font-size: 19px;
  }
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .text > dl > dd {
  color: #1E2124;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: rgba(5, 43, 87, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item {
    display: none !important;
  }
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .tit-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .tit-box > .tit {
  font-size: clamp(15px, 10px + 2.4vw, 24px);
}
@media only screen and (max-width: 63.99em) {
  .board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .tit-box > .tit {
    font-size: clamp(16px, 10px + 1.9vw, 19px);
  }
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .tit-box > .tit {
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .tit-box > .tit-bub {
  color: #fff;
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 4px;
  border: 0;
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item {
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 50%;
  gap: 10px;
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item .ico {
  display: inline-block;
  width: 108px;
  height: 108px;
}
@media only screen and (max-width: 80em) {
  .board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item .ico {
    width: clamp(72px, 24px + 2vw, 64px);
    height: clamp(72px, 24px + 2vw, 64px);
  }
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item .ico {
  border-radius: 50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item .ico::before {
  content: "";
  display: inline-block;
  background-size: 60%;
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item .ico.ico-unique-largest::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/unique/ico_unique_largest.svg);
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item .ico.ico-unique-sum::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/unique/ico_unique_sum.svg);
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item > small,
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item .item-key {
  color: #fff;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  line-height: 1.25;
  font-weight: 400;
  white-space: nowrap;
}
@media only screen and (max-width: 80em) {
  .board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item > small,
  .board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item .item-key {
    font-size: clamp(12px, 10px + 2vw, clamp(10px, 8px + 1.5vw, 15px));
  }
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item > strong,
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item .item-value {
  color: #fff;
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  font-weight: 700;
  line-height: 1.25;
}
@media only screen and (max-width: 80em) {
  .board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item > strong,
  .board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .box > .item .item-value {
    font-size: clamp(16px, 14px + 3vw, clamp(16px, 10px + 1.9vw, 19px));
  }
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li .hover-item > .icon-box {
  width: 95%;
  padding: 5% 0;
  margin: 0 auto 10px auto;
  border-radius: 20px;
  background-color: rgba(13, 53, 88, 0.6588235294);
}
.board-wrap .board-body .board-gallery-body.gallery-type > ul > li > a:hover > .hover-item {
  height: 100%;
  padding: clamp(20px, 10px + 2.5vw, 40px) clamp(10px, 8px + 2vw, 20px);
}
.board-wrap .board-body .board-gallery-body.gallery-type.tour-info-search > ul > li .img img {
  height: 100%;
}
.board-wrap .board-body .section-group {
  margin-bottom: 64px;
}
.board-wrap .board-body .section-group + .section-group {
  margin-top: 64px;
}
.board-wrap .board-body .section-group .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #131416;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1e2124;
}
.board-wrap .board-body .data-box {
  background-color: #eef2f7;
  border-radius: 12px;
  border: 1px solid #b1b8be;
  padding: 24px;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .data-box {
    padding: 20px;
  }
}
.board-wrap .board-body .data-box .file-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.board-wrap .board-body .data-box .file-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .data-box .file-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.board-wrap .board-body .data-box .file-item .file-name {
  color: #464c53;
  font-size: 17px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
}
.board-wrap .board-body .data-box .file-item .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .data-box .file-item .btn-wrap {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.board-wrap .board-body .data-box .file-item .btn-wrap .btn-normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.board-wrap .board-body .data-box .file-item .btn-wrap .btn-normal img {
  width: 16px;
  height: 16px;
}
.board-wrap .board-body .btn-center-wrap {
  text-align: center;
  margin: 80px 0 60px;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .btn-center-wrap {
    margin: 60px 0 40px;
  }
}
.board-wrap .board-body .btn-center-wrap .btn-normal {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.board-wrap .board-body .btn-center-wrap .btn-normal img {
  width: 20px;
  height: 20px;
}
.board-wrap .board-body .survey-section {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .survey-section {
    padding: 32px 20px;
  }
}
.board-wrap .board-body .survey-section .survey-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #131416;
  margin-bottom: 24px;
}
.board-wrap .board-body .survey-section .survey-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .survey-section .survey-buttons {
    gap: 12px;
  }
}
.board-wrap .board-body .survey-section .survey-buttons .btn-survey {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 20px 32px;
  background-color: #fff;
  border: 1px solid #cdd1d5;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media only screen and (max-width: 47.99em) {
  .board-wrap .board-body .survey-section .survey-buttons .btn-survey {
    padding: 16px 24px;
  }
}
.board-wrap .board-body .survey-section .survey-buttons .btn-survey img {
  width: 32px;
  height: 32px;
}
.board-wrap .board-body .survey-section .survey-buttons .btn-survey span {
  font-size: 17px;
  color: #464c53;
}
.board-wrap .board-body .survey-section .survey-buttons .btn-survey:hover {
  border-color: #096ab3;
}
.board-wrap .board-body .survey-section .survey-buttons .btn-survey.active {
  background-color: #096ab3;
  border-color: #096ab3;
}
.board-wrap .board-body .survey-section .survey-buttons .btn-survey.active span {
  color: #fff;
}
.board-wrap .board-body .survey-section .survey-footer {
  border-top: 1px solid #cdd1d5;
  padding-top: 24px;
}
.board-wrap .board-body .survey-section .survey-footer p {
  font-size: 15px;
  color: #6d7882;
  line-height: 1.6;
}
.board-wrap .board-body .survey-section .survey-footer p + p {
  margin-top: 4px;
}
.board-wrap .board-body .survey-section .survey-footer p .link-text {
  color: #096ab3;
  text-decoration: underline;
}

.card-list-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.card-list-grid > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.card-list-grid.cols2 > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc((100% - 24px) / 2);
          flex: 1 1 calc((100% - 24px) / 2);
}
.card-list-grid.cols3 > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc((100% - 48px) / 3);
          flex: 1 1 calc((100% - 48px) / 3);
}
.card-list-grid.cols4 > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc((100% - 72px) / 4);
          flex: 1 1 calc((100% - 72px) / 4);
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #b1b8be;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 29.99em) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.card.compact {
  padding: 12px;
  border-radius: 4px;
}
.card.large {
  padding: clamp(16px, 10px + 3vw, 32px);
  border-radius: 12px;
}
.card.card-type.col {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.card.card-type.col .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 320px;
  max-width: 40%;
}
@media only screen and (max-width: 29.99em) {
  .card.card-type.col .img {
    max-width: 100%;
    width: 100%;
  }
}
.card.card-type.col .img > a:has(.thumb-wrap) {
  display: block;
}
.card.card-type.col .text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 160px;
  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;
}
.card .thumb-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 67.5%;
  background-color: #8a949e;
  border-radius: 8px;
}
.card .thumb-wrap .thumb {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.card .card-title {
  font-size: clamp(16px, 12px + 2vw, clamp(15px, 10px + 2.4vw, 24px));
  font-weight: 700;
  color: #1E2124;
}
.card .card-title > a:has(.ico) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.card .card-title > a:has(.ico) .ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.card .card-desc {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
  font-weight: 400;
  color: inherit;
}
.card .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.card .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.card .list > li .ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.board-search .info-find .info-category.multi ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(10% - 16px);
          flex: 1 1 calc(10% - 16px);
}

.step-wrap > .crs-list > .crs-item,
.step-wrap > .crs-list > li,
.step-wrap > ul > .crs-item,
.step-wrap > ul > li {
  position: relative;
}
.step-wrap > .crs-list > .crs-item:hover > .msg, .step-wrap > .crs-list > .crs-item:focus > .msg,
.step-wrap > .crs-list > li:hover > .msg,
.step-wrap > .crs-list > li:focus > .msg,
.step-wrap > ul > .crs-item:hover > .msg,
.step-wrap > ul > .crs-item:focus > .msg,
.step-wrap > ul > li:hover > .msg,
.step-wrap > ul > li:focus > .msg {
  display: block;
}
.step-wrap > .crs-list > .crs-item.check::after,
.step-wrap > .crs-list > li.check::after,
.step-wrap > ul > .crs-item.check::after,
.step-wrap > ul > li.check::after {
  background-image: url(/humanframe/theme/global/assets/images/ico/ico_step_active.svg);
}
.step-wrap > .crs-list > .crs-item > dl,
.step-wrap > .crs-list > li > dl,
.step-wrap > ul > .crs-item > dl,
.step-wrap > ul > li > dl {
  padding-right: 10px;
}
.step-wrap > .crs-list > .crs-item > dl dt,
.step-wrap > .crs-list > li > dl dt,
.step-wrap > ul > .crs-item > dl dt,
.step-wrap > ul > li > dl dt {
  white-space: nowrap;
}
.step-wrap > .crs-list > .crs-item > dl dd,
.step-wrap > .crs-list > li > dl dd,
.step-wrap > ul > .crs-item > dl dd,
.step-wrap > ul > li > dl dd {
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.step-wrap > .crs-list > .crs-item > .msg,
.step-wrap > .crs-list > li > .msg,
.step-wrap > ul > .crs-item > .msg,
.step-wrap > ul > li > .msg {
  min-width: 100px !important;
  z-index: 10;
  display: none;
  position: absolute;
  left: 10px;
  bottom: calc(100% + 16px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  height: auto;
  padding: 12px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: center;
  -webkit-animation: FadeIntabdot 0.5s ease 1 normal both;
          animation: FadeIntabdot 0.5s ease 1 normal both;
}
.step-wrap > .crs-list > .crs-item > .msg::after,
.step-wrap > .crs-list > li > .msg::after,
.step-wrap > ul > .crs-item > .msg::after,
.step-wrap > ul > li > .msg::after {
  content: "";
  z-index: -1;
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%) rotate(314deg);
          transform: translateX(-50%) rotate(314deg);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: -2px 2px 2px 0px rgba(213, 213, 213, 0.3);
          box-shadow: -2px 2px 2px 0px rgba(213, 213, 213, 0.3);
}
.step-wrap > .crs-list > .crs-item:first-child > .msg, .step-wrap > .crs-list > .crs-item:last-child > .msg,
.step-wrap > .crs-list > li:first-child > .msg,
.step-wrap > .crs-list > li:last-child > .msg,
.step-wrap > ul > .crs-item:first-child > .msg,
.step-wrap > ul > .crs-item:last-child > .msg,
.step-wrap > ul > li:first-child > .msg,
.step-wrap > ul > li:last-child > .msg {
  left: 10px;
}

.spot-msg {
  min-width: 100px !important;
  z-index: 10;
  display: inline-block;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  border-width: 0 !important;
  height: auto;
  padding: 12px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: center;
  -webkit-animation: FadeIntabdot 0.5s ease 1 normal both;
          animation: FadeIntabdot 0.5s ease 1 normal both;
}
.spot-msg > div:first-of-type {
  display: none !important;
}
.spot-msg::after {
  content: "";
  z-index: -1;
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%) rotate(314deg);
          transform: translateX(-50%) rotate(314deg);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: -2px 2px 2px 0px rgba(213, 213, 213, 0.3);
          box-shadow: -2px 2px 2px 0px rgba(213, 213, 213, 0.3);
}

:root {
  --vh: 100%;
  --color-main: #005BAC;
  --color-point: #067F77;
  --color-line: #D9D9D9;
  --font-family01: "WavvePADO";
  --font-size-40: 40px;
  --font-size-36: 36px;
  --font-size-32: 32px;
  --font-size-28: 28px;
  --font-size-25: 25px;
  --font-size-26: 26px;
  --font-size-24: 24px;
  --font-size-22: 22px;
  --font-size-20: 20px;
  --font-size-18: 18px;
  --font-size-16: 16px;
}
@media screen and (max-width: 1000px) {
  :root {
    --font-size-40: 36px;
    --font-size-36: 32px;
    --font-size-32: 28px;
    --font-size-28: 24px;
    --font-size-26: 22px;
    --font-size-25: 21px;
    --font-size-24: 20px;
    --font-size-22: 18px;
    --font-size-20: 16px;
    --font-size-16: 14px;
  }
}
@media screen and (max-width: 800px) {
  :root {
    --font-size-40: 32px;
    --font-size-36: 28px;
    --font-size-32: 24px;
    --font-size-28: 20px;
    --font-size-28: 19px;
    --font-size-25: 19px;
    --font-size-24: 18px;
    --font-size-20: 16px;
    --font-size-18: 14px;
  }
}

/* button group */
.btn-wrap {
  margin-top: 50px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap.btn-left {
  text-align: left;
}
.btn-wrap.is-right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  min-width: 180px;
  padding: 15px 0;
  border-radius: 35px;
  border: 2px solid #D9D9D9;
  font-size: var(--font-size-20);
  text-align: center;
  cursor: pointer;
}
.btn:hover {
  font-weight: 600;
  background: #D9D9D9;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn:not(:first-child) {
  margin-left: 24px;
}
.btn.btn-primary {
  background: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
}
.btn.btn-primary:hover {
  color: #fff;
  font-weight: 600;
  background: var(--color-main);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn.btn-outline-primary {
  border-color: var(--color-main);
  color: var(--color-main);
}
.btn.btn-outline-primary:hover {
  color: #fff;
  font-weight: 600;
  background: var(--color-main);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-diagonal {
  min-width: 200px;
  padding: 8px 10px;
  color: #fff;
  font-size: var(--font-size-18);
  background: var(--color-main);
  border-radius: 20px 0 20px 0;
}

.btn-quick {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background: none;
  color: #1E2124;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 400;
}
.btn-quick::after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
}
.btn-quick::after {
  width: 20px;
  height: 20px;
  background-size: contain;
}
.btn-quick.dw::after {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_download.svg);
}
.btn-quick.search::after {
  background-image: url(/humanframe/theme/tour/assets/images/icon/button/search.png);
}
.btn-quick.move::after {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_move.svg);
}
.btn-quick.link::after {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_link.svg);
}
.btn-quick.enter::after {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_user_check.svg);
}
.btn-quick.write::after {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_user_check.svg);
}

.btn-sub {
  position: relative;
  padding: 6px 16px 6px 44px;
  background-color: #F3F9FF;
  border: 1px solid #E4F2FF;
  font-weight: 500;
  font-size: 16px;
  border-radius: 4px;
}
.btn-sub:hover {
  background-color: #D6EDFF;
  border: 1px solid #005BAC;
}
.btn-sub.dw {
  margin: 0px 5px 0px 5px;
}
.btn-sub.dw::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  width: 20px;
  height: 20px;
  background: url(https://www.seongnam.go.kr/include/tour2/img/icon/download-icon.png) no-repeat 50%/16px;
}
.btn-sub.vw::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  width: 20px;
  height: 20px;
  background: url(https://www.seongnam.go.kr/include/tour2/img/icon/search-icon.png) no-repeat 50%/16px;
}

h3.tit.typ01 {
  font-size: 70px;
  font-family: var(--font-family01);
  line-height: 4rem;
}

.big-tit {
  font-size: 44px;
  font-weight: 700;
}

.sub-tit {
  font-size: 30px;
  font-weight: 600;
}

.pcHide {
  display: none;
}

@media screen and (max-width: 1000px) {
  .big-tit {
    font-size: 34px;
  }
}
@media screen and (max-width: 800px) {
  .wrap {
    position: relative;
  }
  h3.tit.tit.typ01 {
    padding-top: 14px !important;
    font-size: 24px;
    line-height: 30px !important;
  }
  .big-tit {
    font-size: 30px;
  }
  .sub-tit {
    margin-top: 8px !important;
    font-size: 14px;
  }
  .inner.typ01 {
    padding: 0 14px;
  }
  .sub-inner {
    padding: 10px 0;
  }
  .pcHide {
    display: inline-block;
  }
  .mobileHide {
    display: none;
  }
  .bullet.typ01 .tit {
    font-size: 15px;
  }
}
.c-active {
  color: var(--color-main);
}

.c-cancel {
  color: #C00030;
}

.c-default {
  color: #111;
}

.hover {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-position: under;
}
.hover > a {
  color: var(--color-main);
}
.hover:hover {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-position: under;
}
.hover:hover > a {
  color: var(--color-main);
}

.sub-inner {
  padding: 20px;
}
.sub-inner.bg {
  background-color: #FBFBFB;
  border-radius: 20px;
  padding: 60px 50px;
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.fl-l {
  float: left !important;
}

.fl-r {
  float: right !important;
}

.w-full {
  width: 100% !important;
}

.w-half {
  width: 50% !important;
}

.ib {
  display: inline-block;
  vertical-align: middle;
}

.line_on {
  width: 100%;
  height: 1px;
  background-color: #D9D9D9;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px !important;
}

sup.important {
  color: #E80512;
}

.bg-w {
  background-color: #fff !important;
}
.bg-w > textarea {
  background-color: #fff;
}

.bg-d {
  background-color: #D9D9D9;
}

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

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

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

table > thead > tr > th.th_accent_01 {
  background: #A50082;
  color: #fff;
}
table > thead > tr > th.th_accent_02 {
  background: #860082;
  color: #fff;
}
table > thead > tr > th.th_accent_03 {
  background: #560078;
  color: #fff;
}
table > thead > tr > th.th_accent_04 {
  background: #8957A3;
  color: #fff;
}
table > thead > tr > th.th_accent_05 {
  background: #7057A3;
  color: #fff;
}
table > thead > tr > th.th_accent_06 {
  background: #5F57A3;
  color: #fff;
}
table > thead > tr > th.th_accent_02_pa {
  background: #A50082;
  color: #fff;
}
table > thead > tr > th.th_accent_03_pa {
  background: #7057A3;
  color: #fff;
}

/* Default Base - temp*/
.scroll-bar {
  display: none;
}

.tbl-tit {
  margin-bottom: 30px;
}
.tbl-tit .t-tit {
  font-size: var(--font-size-28);
  font-family: var(--font-family01);
}
.tbl-tit.tbl-tit-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tbl-tit.tbl-tit-flex.f-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.tbl-tit.tbl-tit-flex .t-desc {
  text-align: right;
  font-size: var(--font-size-16);
}

.table-scroll-info {
  width: 100%;
  padding: 5px;
  margin-top: 10px;
  border-radius: 5px;
  background-color: #f0f0f0;
}

.table-base {
  border-top: 2px solid #444444;
  width: 100%;
  font-size: 18px;
}
.table-base tr.textarea {
  height: 170px;
}
.table-base tr.textarea textarea {
  width: 100%;
  height: 170px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  resize: none;
  font-size: 14px;
}
.table-base tr.textarea td p {
  height: 480px;
  overflow: auto;
}
.table-base tr input[type=date] {
  width: 144px;
}
.table-base th {
  padding: 10px 0;
  text-align: center;
  background: #F8F8F8;
  border: 1px solid var(--color-line);
  font-weight: 600;
}
.table-base td {
  background: #fff;
  padding: 10px 20px;
  border: 1px solid var(--color-line);
}
.table-base td.ell {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.table-base td .un {
  padding: 0 5px;
}

.table-left th {
  text-align: left;
  padding-left: 30px;
}
.table-left td {
  text-align: left;
}

.table-center th {
  text-align: center;
}
.table-center td {
  text-align: center;
}
.table-center .la {
  text-align: left;
}
.table-center .ca {
  text-align: center;
}
.table-center .ra {
  text-align: right;
}

td > .active {
  color: #005BAC;
}

td > .cancell {
  color: #C00030;
}

.table-layout .scrollerDesc {
  font-size: 0;
}

.write-grid:has(.phone-number) {
  max-width: unset !important;
}
.write-grid:has(.phone-number) .phone-number {
  display: unset !important;
}

.contact-info {
  margin-bottom: 48px;
}
.content-body .contact-info {
  margin-top: 80px;
}
.contact-info {
  background-color: #EEF2F7;
  padding: clamp(20px, 10px + 2.5vw, 40px);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.contact-info .contact {
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  color: #131416;
  font-weight: 700;
}
.contact-info .contact-depart {
  color: #1E2124;
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  font-weight: 400;
}
.contact-info .contact-num {
  color: #096AB3;
  font-size: clamp(16px, 10px + 1.9vw, 19px);
  text-decoration: underline;
}

.tour-foot.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-bottom: 40px;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tour-foot.btn-wrap.right-only {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.tour-foot.btn-wrap.left-only {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.tour-foot.btn-wrap:has(.btn-normal:only-child) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.section-box .location-map {
  margin-top: 0;
}
.section-box .location-map:has(> img) {
  display: block;
  position: relative;
  height: auto;
}
.section-box .location-map:has(> img) > img {
  display: block;
  width: 100%;
  height: auto;
}

.root_daum_roughmap .cont {
  display: none !important;
}

.content-slide .slide-img .swiper-wrapper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.process {
  background-color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 47.99em) {
  .data-box .program-file {
    gap: 16px;
  }
}
.data-box .program-file .btn-wrap {
  margin-top: 0;
  gap: 16px;
}

.nearby-info-section .section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.nearby-info-section .nearby-content {
  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;
}
.nearby-info-section .nearby-content .map-area {
  width: 100%;
  height: 523px;
  background-color: #E6E8EA;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid #D6E0EB;
}
.nearby-info-section .nearby-content .map-area > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nearby-info-section .nearby-content .place-list-area {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 566px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #CDD1D5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 29.99em) {
  .nearby-info-section .nearby-content .place-list-area {
    padding: 16px 8px;
  }
}
.nearby-info-section .nearby-content .place-list-area::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.nearby-info-section .nearby-content .place-list-area .place-list {
  overflow: hidden;
  overflow-y: auto;
  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;
}
.nearby-info-section .nearby-content .place-list-area .place-list:has(.place-img) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  row-gap: 9px;
}
@media only screen and (max-width: 63.99em) {
  .nearby-info-section .nearby-content .place-list-area .place-list:has(.place-img) {
    grid-template-columns: 1fr;
  }
}
.nearby-info-section .nearby-content .place-list-area .place-list > a:focus {
  border-radius: 10px;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 15px 24px;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item:focus::after, .nearby-info-section .nearby-content .place-list-area .place-list .place-item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #ECF2FE;
  opacity: 0.7;
  border-radius: 10px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item.is-active {
  background-color: #ECF2FE;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item:has(.place-img) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  padding: 15px 24px;
}
@media only screen and (max-width: 63.99em) {
  .nearby-info-section .nearby-content .place-list-area .place-list .place-item:has(.place-img) {
    padding: 16px 0 8px;
  }
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item:has(.place-img) .place-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  position: relative;
  overflow: hidden;
  width: 120px;
  height: 97px;
  background-color: #f8f8f8;
  border-radius: 4px;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item:has(.place-img) .place-img img {
  position: absolute;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item:has(.place-img) .place-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .badge-wrap span.type1 {
  background-color: #FDEFEC;
  color: #BD2C0F;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .badge-wrap span.type2 {
  background-color: #E6E8EA;
  color: #6D7882;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .badge-wrap span.type3 {
  background-color: #D7E1EC;
  color: #2866AA;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .badge-wrap span.type4 {
  background-color: #fff;
  color: #0B50D0;
  border: 1px solid #0B50D0;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .badge-wrap span.type4 i {
  margin-right: 4px;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-header {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-header .place-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #0B78CB;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-header .place-index {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #256EF4;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #FFFFFF;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-header .place-name {
  font-size: 17px;
  font-weight: 700;
  color: #1E2124;
  margin: 0;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-details {
  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;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-details .place-address,
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-details .place-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: #464C53;
  line-height: 1.5;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-details .icon-location,
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-details .icon-tel {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-details .icon-location {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_spot-location.svg);
}
.nearby-info-section .nearby-content .place-list-area .place-list .place-item .place-details .icon-tel {
  background-image: url(/humanframe/theme/tour/assets/images/ico/ico_spot-tel.svg);
}
.nearby-info-section .nearby-content .place-list-area .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 0;
  margin-top: auto;
  border-top: 1px solid #D6E0EB;
}
.nearby-info-section .nearby-content .place-list-area .pagination .page-input {
  width: 60px;
  padding: 8px 12px;
  border: 1px solid #B1B8BE;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
  background: #fff;
  color: #1E2124;
}
.nearby-info-section .nearby-content .place-list-area .pagination .page-input:focus {
  outline: none;
  border-color: #A50082;
}
.nearby-info-section .nearby-content .place-list-area .pagination .page-total {
  font-size: 15px;
  color: #464C53;
}
.nearby-info-section .nearby-content .place-list-area .pagination .btn-move {
  padding: 8px 20px;
  border: 1px solid #F5CCE9;
  border-radius: 8px;
  font-size: 15px;
  background: #FFF2FC;
  color: #A50082;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nearby-info-section .nearby-content .place-list-area .pagination .btn-move:hover {
  background: #FFE5F8;
  border-color: #F0B8DE;
}

.course-section {
  margin-top: 40px;
}
.course-section .section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

@media only screen and (max-width: 47.99em) {
  .course-info .course-tit {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media only screen and (max-width: 29.99em) {
  .course-info .course-tit {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.course-info .course-tit dt {
  white-space: nowrap;
}

.record-wrap {
  margin-top: 24px;
  height: auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media only screen and (max-width: 47.99em) {
  .record-wrap {
    grid-template-columns: 1fr;
  }
}
.record-wrap .img-wrap {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.record-wrap .img-wrap > img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.record-wrap .record-cell {
  display: block;
  width: 100%;
  position: relative;
}
.record-wrap .record-cell .img-wrap {
  top: 0;
}
.record-wrap .record-cell .img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(214, 158, 102, 0.18);
  border-radius: 10px;
}
.record-wrap .record-cell .txt-wrap {
  position: absolute;
  padding: clamp(20px, 10px + 2.5vw, 40px);
  left: 0;
  top: 0;
  z-index: 1;
}
.record-wrap .record-cell .txt-wrap .txt01 {
  margin: 12px 0;
  font-size: clamp(16px, 10px + 3.2vw, 32px);
  font-weight: 700;
  color: #1E2124;
}
.record-wrap .record-cell .txt-wrap .txt01 > strong {
  color: #052b57;
}
.record-wrap .record-cell .txt-wrap .txt02 {
  margin-top: 12px;
  color: #464C53;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  font-weight: 400;
}
.record-wrap .record-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}
.record-wrap .record-img-grid .img-wrap {
  height: calc(50% - 6px);
}

.container > .inner:has(.sn-record-wrap) .content-body {
  position: relative;
  height: 665px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 80em) {
  .container > .inner:has(.sn-record-wrap) .content-body {
    height: auto;
  }
}

.sn-record-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 1920px;
  height: 625px;
  margin: 0 auto;
  margin-top: 48px;
  background: url(/humanframe/theme/tour/assets/images/content/yesterday/sn_background.png) no-repeat center;
  background-size: cover;
}
@media only screen and (max-width: 80em) {
  .sn-record-wrap {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.sn-record-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 220px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
}
@media only screen and (max-width: 47.99em) {
  .sn-record-wrap::before {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
  }
}
.sn-record-wrap .record-wrap {
  height: 100%;
}
.sn-record-wrap {
  text-align: center;
}
.sn-record-wrap .sn-record-slogan {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  margin: 0 auto;
  padding: 20px 16px 48px;
}
@media only screen and (max-width: 80em) {
  .sn-record-wrap .sn-record-slogan {
    position: relative;
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 47.99em) {
  .sn-record-wrap .sn-record-slogan {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.sn-record-wrap .sn-record-slogan img {
  margin: 0 auto;
  max-width: 100%;
}
.sn-record-wrap .sn-record-slogan {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
}
.sn-record-wrap .btn-wrap {
  margin-top: 30px;
}
.sn-record-wrap .btn-wrap a {
  width: 236px;
  height: 48px;
  background-color: #083891;
  color: #fff;
}
.sn-record-wrap .btn-wrap .btn-go-exhibit {
  display: inline-block;
  width: 236px;
  height: 48px;
  background: url(/humanframe/theme/tour/assets/images/content/yesterday/btn-go-exhibit.svg) no-repeat center;
}
.sn-record-wrap .btn-wrap .btn-go-exhibit:hover, .sn-record-wrap .btn-wrap .btn-go-exhibit:focus {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.sn-record-wrap .btn-wrap .ico-exhibit {
  width: 20px;
  height: 20px;
  background: url(/humanframe/theme/tour/assets/images/content/yesterday/ico-exhibit.svg);
}
.sn-record-wrap .btn-wrap .ico-link-external {
  margin-left: 8px;
}
.sn-record-wrap .record-img-grid {
  width: 1350px;
  max-width: 100%;
  height: 100%;
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(7, 1fr);
  margin: 0 auto;
}
@media only screen and (max-width: 63.99em) {
  .sn-record-wrap .record-img-grid {
    width: 100%;
    gap: 0;
  }
}
@media only screen and (max-width: 47.99em) {
  .sn-record-wrap .record-img-grid {
    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;
  }
}
.sn-record-wrap .record-img-grid > li {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.sn-record-wrap .record-img-grid > li:first-of-type {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.sn-record-wrap .record-img-grid > li .year {
  margin-bottom: 180px;
  display: block;
  height: 40px;
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  font-weight: 700;
  line-height: 40px;
  padding-top: 16px;
}
@media only screen and (max-width: 63.99em) {
  .sn-record-wrap .record-img-grid > li .year {
    font-size: clamp(16px, 10px + 1.9vw, 19px);
  }
}
@media only screen and (max-width: 47.99em) {
  .sn-record-wrap .record-img-grid > li .year {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-bottom: 0;
    position: absolute;
    top: calc(50% - 40px);
  }
}
.sn-record-wrap .record-img-grid > li .year::before {
  content: "";
  display: inline-block;
  position: Absolute;
  left: 50%;
  top: -8px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.sn-record-wrap .record-img-grid > li .year::after {
  content: "";
  display: block;
  position: Absolute;
  left: 50%;
  top: -4px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 2;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.8;
}
.sn-record-wrap .record-img-grid > li .img {
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 47.99em) {
  .sn-record-wrap .record-img-grid > li .img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    position: relative;
    margin: 0 0 auto;
  }
  .sn-record-wrap .record-img-grid > li .img img {
    margin: 0 auto;
  }
}
.sn-record-wrap .record-img-grid .sn-1960 .img {
  bottom: 40px;
}
.sn-record-wrap .record-img-grid .sn-1970 .img {
  bottom: 120px;
}
.sn-record-wrap .record-img-grid .sn-1980 .img {
  bottom: 76px;
}
.sn-record-wrap .record-img-grid .sn-2000 .img {
  bottom: 0px;
}
.sn-record-wrap .record-img-grid .sn-2010 .img {
  bottom: 120px;
}
.sn-record-wrap .record-img-grid .sn-2020 .img {
  bottom: 156px;
}
.sn-record-wrap .record-img-grid .sn-now .img {
  bottom: 90px;
}
@media only screen and (max-width: 47.99em) {
  .sn-record-wrap .record-img-grid .sn-1960 .img {
    bottom: auto;
  }
  .sn-record-wrap .record-img-grid .sn-1970 .img {
    bottom: auto;
  }
  .sn-record-wrap .record-img-grid .sn-1980 .img {
    bottom: auto;
  }
  .sn-record-wrap .record-img-grid .sn-2000 .img {
    bottom: auto;
  }
  .sn-record-wrap .record-img-grid .sn-2010 .img {
    bottom: auto;
  }
  .sn-record-wrap .record-img-grid .sn-2020 .img {
    bottom: auto;
  }
  .sn-record-wrap .record-img-grid .sn-now .img {
    bottom: auto;
  }
}

.dong-content {
  background-color: #F4F5F6;
  border-radius: 10px;
  padding: 32px;
  margin-top: 40px;
}
@media only screen and (max-width: 47.99em) {
  .dong-content {
    padding: 24px 16px;
  }
}

.dong-title {
  margin-top: 0;
  font-size: clamp(15px, 10px + 2.4vw, 24px);
  color: #1E2124;
  font-weight: 700;
}

.dong-desc {
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #464C53;
}

.dong-info-list {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.dong-info-list > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc((100% - 48px) / 4);
}
@media only screen and (max-width: 63.99em) {
  .dong-info-list > li {
    width: calc((100% - 32px) / 3);
  }
}
@media only screen and (max-width: 47.99em) {
  .dong-info-list > li {
    width: calc((100% - 16px) / 2);
  }
}
@media only screen and (max-width: 29.99em) {
  .dong-info-list > li {
    width: 100%;
  }
}

.dong-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 16px 24px;
  background-color: #FFFFFF;
  border: 1px solid #CDD1D5;
  border-radius: 12px;
  height: 100%;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
.dong-info .key {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  font-size: clamp(13px, 10px + 1.7vw, 17px);
  color: #1E2124;
}
.dong-info .ico {
  width: 32px;
  height: 32px;
}
.dong-info .ico-hill::before,
.dong-info .ico-mountain::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/local/ico_mountain.svg);
}
.dong-info .ico-stream::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/local/ico_stream.svg);
}
.dong-info .ico-tombhill::before {
  background-image: url(/humanframe/theme/tour/assets/images/ico/local/ico_tombhill.svg);
}
.dong-info .ico-well {
  background-image: url(/humanframe/theme/tour/assets/images/ico/local/ico_well.svg);
}
.dong-info .ico-valley {
  background-image: url(/humanframe/theme/tour/assets/images/ico/local/ico_valley.svg);
}
.dong-info .ico-reservoir {
  background-image: url(/humanframe/theme/tour/assets/images/ico/local/ico_reservoir.svg);
}
.dong-info .ico-default {
  background-image: url(/humanframe/theme/tour/assets/images/ico/local/ico_default.svg);
}

.content-top-info .start-before > strong.guidebook {
  background-image: url(/humanframe/theme/tour/assets/images/content/guidebook/ico_guidebook_start.svg);
}

.guidebook-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.guidebook-list.cols4 > li {
  width: calc((100% - 72px) / 4);
}
@media only screen and (max-width: 63.99em) {
  .guidebook-list.cols4 > li {
    width: calc((100% - 24px) / 2);
  }
}
@media only screen and (max-width: 47.99em) {
  .guidebook-list.cols4 > li {
    width: 100%;
  }
}
.guidebook-list > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc((100% - 48px) / 3);
}
@media only screen and (max-width: 63.99em) {
  .guidebook-list > li {
    width: calc((100% - 24px) / 2);
  }
}
@media only screen and (max-width: 47.99em) {
  .guidebook-list > li {
    width: 100%;
  }
}
.guidebook-list > li .guidebook {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #B1B8BE;
  background-color: #fff;
}
.guidebook-list > li .guidebook .img {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.guidebook-list > li .guidebook .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}
.guidebook-list > li .guidebook .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 24px;
  padding: 32px;
}
.guidebook-list > li .guidebook .detail .title {
  font-size: 21px;
  color: #1E2124;
}
@media only screen and (max-width: 47.99em) {
  .guidebook-list > li .guidebook .detail .title {
    font-size: 19px;
  }
}
.guidebook-list > li .guidebook .detail > span {
  color: #464C53;
  margin-top: 16px;
}
@media only screen and (max-width: 47.99em) {
  .guidebook-list > li .guidebook .detail > span {
    font-size: 15px;
  }
}
.guidebook-list > li .guidebook .detail .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 8px;
  margin-top: 12px;
}
.guidebook-list > li .guidebook .detail .btns a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: clamp(10px, 8px + 1.5vw, 15px);
}

.btn-wrap.guidebook-btns {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 8px;
}
.btn-wrap.guidebook-btns .btn-normal {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 100%;
}
@media only screen and (max-width: 47.99em) {
  .btn-wrap.guidebook-btns .btn-normal {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.btn-normal .ico-link-view {
  width: 16px;
  height: 16px;
}
.btn-normal .ico-link-view::after {
  background-image: url(/humanframe/theme/tour/assets/images/ico/btn/ico_link_view.svg);
}
.btn-normal .ico-link-download {
  width: 16px;
  height: 16px;
}
.btn-normal .ico-link-download::after {
  background-image: url(/humanframe/theme/tour/assets/images/ico/btn/ico_link_download.svg);
}
.btn-normal .ico-link-download.is-white::after {
  color: #fff;
  background-image: url(/humanframe/theme/tour/assets/images/ico/btn/ico_link_external_white.svg);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}