.inner {
  width: var(--inner-width);
  margin: 0 auto;
}

.main-visual {
  position: relative;
  height: 925px;
  background: linear-gradient(135deg, #0a1628 0%, #0d2348 60%, #0a1e3d 100%);
  overflow: hidden;
}

#intro-stage {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 50;
}
#intro-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 1;
  -webkit-transition: opacity 6s ease;
  transition: opacity 6s ease;
  pointer-events: none;
  z-index: 2;
}
#intro-stage.bg-blue::before {
  opacity: 0;
}
#intro-stage.no-transition::before {
  -webkit-transition: none !important;
  transition: none !important;
}
#intro-stage.bg-blue::after {
  opacity: 1;
  -webkit-animation: zoomIn 40s linear infinite;
          animation: zoomIn 40s linear infinite;
}
#intro-stage .intro-bg-blue {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a6e 0%, #1e4d8c 60%, #1a3d6e 100%);
  opacity: 0;
  -webkit-transition: opacity 4s ease 3s;
  transition: opacity 4s ease 3s;
  pointer-events: none;
  z-index: 3;
}
#intro-stage.bg-blue .intro-bg-blue {
  opacity: 0.7;
}
#intro-stage .intro-map {
  position: absolute;
  inset: 0;
  background: url("/humanframe/theme/kuic/assets/images/main/visual.png") center bottom/cover no-repeat;
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 2s ease;
  -webkit-animation: zoomIn 40s linear infinite;
          animation: zoomIn 40s linear infinite;
}
#intro-stage .intro-map.visible {
  opacity: 1;
}
#intro-stage .intro-map2,
#intro-stage .intro-map3 {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
  pointer-events: none;
  z-index: 1;
  -webkit-animation: zoomIn 40s linear infinite;
          animation: zoomIn 40s linear infinite;
}
#intro-stage .intro-map2.visible,
#intro-stage .intro-map3.visible {
  opacity: 1;
}
#intro-stage .intro-map2 {
  background: url("/humanframe/theme/kuic/assets/images/main/visual3.png") center bottom/cover no-repeat;
}
#intro-stage .intro-map3 {
  background: url("/humanframe/theme/kuic/assets/images/main/visual2.png") center bottom/cover no-repeat;
}

@-webkit-keyframes zoomIn {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes zoomIn {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
.slide {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 170px 20px 40px;
  text-align: center;
  z-index: 3;
}

.anim-item {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  will-change: opacity, transform;
}

.anim-item.fade-in-up {
  -webkit-animation: fadeInUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: fadeInUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.slide.fade-out-down .anim-item {
  -webkit-animation: fadeOutDown 0.6s cubic-bezier(0.55, 0, 0.55, 0.2) forwards !important;
          animation: fadeOutDown 0.6s cubic-bezier(0.55, 0, 0.55, 0.2) forwards !important;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
.s1-letters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.s1-letter {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #1a2f5e;
  letter-spacing: 0.05em;
  -webkit-transition: color 1.4s ease;
  transition: color 1.4s ease;
}
#intro-stage.bg-blue .s1-letter {
  color: #ffffff;
}

.s1-launched {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  color: rgba(26, 47, 94, 0.65);
  margin-bottom: 36px;
  text-transform: uppercase;
  -webkit-transition: color 1.4s ease;
  transition: color 1.4s ease;
}
#intro-stage.bg-blue .s1-launched {
  color: rgb(255, 255, 255);
}

.s1-title {
  color: #1a2f5e;
  -webkit-transition: color 1.8s ease;
  transition: color 1.8s ease;
}
#intro-stage.bg-blue .s1-title {
  color: #ffffff;
}

.s1-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 140%;
  word-break: keep-all;
}

.s2-title,
.s3-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.8;
  word-break: keep-all;
  text-align: center;
  margin-bottom: 40px;
  line-height: 140%;
}

.date-line {
  color: rgb(26, 47, 94);
  -webkit-transition: color 1.8s ease;
  transition: color 1.8s ease;
  font-size: clamp(32px, 3.5vw, 45px);
  font-weight: 700;
  position: absolute;
  bottom: 100px;
}
#intro-stage.bg-blue .date-line {
  color: rgb(255, 255, 255);
}
.date-line::before, .date-line::after {
  background: rgba(26, 47, 94, 0.35);
  -webkit-transition: background 1.8s ease;
  transition: background 1.8s ease;
}
#intro-stage.bg-blue .date-line::before, #intro-stage.bg-blue .date-line::after {
  background: rgba(255, 255, 255, 0.35);
}

#progress-wrap {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  height: 2px;
  background: #A0C2E9;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#progress-bar {
  height: 4px;
  width: 0%;
  background: #003874;
  -webkit-transition: background 3s ease;
  transition: background 3s ease;
}

section .inner {
  width: 100%;
  max-width: 1600px;
}
section .title h3 {
  color: #003875;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 140%;
  word-break: keep-all;
}
section .title p {
  color: #000;
  font-size: 18px;
  line-height: 140%;
  word-break: keep-all;
}

.future {
  padding: 140px 24px;
}
.future h2 {
  color: #1E1E1E;
  font-size: 48px;
  font-weight: 700;
  line-height: 140%;
}

.notice {
  background-color: #F4F7FC;
  padding: 80px 24px;
}
.notice .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.notice .title ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.notice .title ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.notice .title ul li a {
  display: block;
  color: #454545;
  font-weight: 700;
  line-height: 140%;
  border-radius: 80px;
  border: 1px solid #454545;
  padding: 6px 16px;
}
.notice .title ul li a span {
  padding-right: 14px;
  background: url(/humanframe/theme/kuic/assets/images/icons/ico_arrow_tab.svg) no-repeat right center;
  white-space: nowrap;
}
.notice .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  margin: 36px 0 40px;
}
.notice .list li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  min-width: 0;
}
.notice .list li + li::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #d9d9d9;
  position: absolute;
  top: 0;
  left: -50px;
}
.notice .list .category {
  border-radius: 4px;
  background: #F42F2F;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 140%;
  padding: 4px 6px;
}
.notice .list dl {
  margin-top: 21px;
}
.notice .list dl dt {
  height: 66px;
  color: #222;
  font-size: 24px;
  font-weight: 700;
  line-height: 136%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 21px;
}
.notice .list dl dd {
  color: #222;
  font-size: 18px;
  line-height: 140%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.notice .list .date {
  display: block;
  margin-top: 35px;
  color: #73707D;
  font-weight: 500;
  line-height: 140%;
}
.notice .apply {
  text-align: center;
  padding: 37px 24px 40px;
  background: url(/humanframe/theme/kuic/assets/images/main/apply_bg.png) no-repeat center/cover;
}
.notice .apply p {
  margin-bottom: 6px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 136%;
}
.notice .apply a {
  color: #fff;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding-right: 14px;
  background: url(/humanframe/theme/kuic/assets/images/icons/ico_arrow_tab_white.svg) no-repeat right center;
  border-bottom: 1px solid #fff;
}

#intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 0;
  margin-top: -200px;
  z-index: 4;
}

.who {
  padding: 160px 24px;
}
.who .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 125px;
  max-width: 1440px;
}
.who .title {
  width: 340px;
  margin-top: 24px;
}
.who .title p {
  letter-spacing: -0.5px;
}
.who .title span {
  color: #F42F2F;
  font-weight: 700;
  line-height: 140%;
}
.who .title h3 {
  font-size: 32px;
  margin: 24px 0;
}
.who .kuic-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.who .kuic-txt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 975px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(var(--kuic-scale, 1));
          transform: scale(var(--kuic-scale, 1));
}
.who .kuic-txt ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  height: 448px;
  color: #FFF;
  font-size: 162px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
}
.who .kuic-txt ul li span {
  display: inline-block;
}
.who .kuic-txt ul li:nth-child(1) {
  background-image: url(/humanframe/theme/kuic/assets/images/main/kuic_k.png);
  margin-top: 77px;
}
.who .kuic-txt ul li:nth-child(1) span {
  padding-top: 75px;
}
.who .kuic-txt ul li:nth-child(2) {
  background-image: url(/humanframe/theme/kuic/assets/images/main/kuic_u.png);
  margin-top: 155px;
}
.who .kuic-txt ul li:nth-child(3) {
  background-image: url(/humanframe/theme/kuic/assets/images/main/kuic_i.png);
}
.who .kuic-txt ul li:nth-child(3) span {
  padding-top: 155px;
}
.who .kuic-txt ul li:nth-child(4) {
  background-image: url(/humanframe/theme/kuic/assets/images/main/kuic_c.png);
  margin-top: 127px;
}
.who .kuic-txt ul li:nth-child(4) span {
  padding-top: 28px;
}

.field {
  padding: 100px 24px 164px;
  background: url(/humanframe/theme/kuic/assets/images/main/field_bg.png) no-repeat center/cover;
  overflow: hidden;
}
.field .inner {
  position: relative;
}
.field .title {
  text-align: center;
}
.field .title h3 {
  color: #fff;
}
.field .title p {
  color: #fff;
  margin-top: 10px;
}
.field .swiper {
  margin-top: 60px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.field .swiper .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.field .swiper .swiper-slide {
  width: 345px;
  border-radius: 10px;
  background-color: #fff;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.field .swiper .swiper-slide > div {
  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;
}
.field .swiper .swiper-slide .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.field .swiper .img {
  height: 354px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.field .swiper .text {
  padding: 16px 16px 16px 28px;
  word-break: keep-all;
}
.field .swiper .text dl dt {
  color: #001C42;
  font-size: 24px;
  font-weight: 700;
  line-height: 136%;
}
.field .swiper .text dl dd {
  color: #011C43;
  font-size: 18px;
  line-height: 140%;
  margin-top: 8px;
}
.field .swiper-btn {
  width: 64px;
  height: 64px;
  background-color: #fff;
  border: 1px solid #ddd;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100px;
  position: absolute;
  top: 59%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
}
@media (max-width: 1024px) {
  .field .swiper-btn {
    width: 45px;
    height: 45px;
    background-size: 10px;
  }
}
.field .swiper-btn.swiper-button-prev {
  background-image: url(/humanframe/theme/kuic/assets/images/icons/ico_prev.svg);
  left: -40px;
}
.field .swiper-btn.swiper-button-prev::after {
  display: none;
}
.field .swiper-btn.swiper-button-next {
  background-image: url(/humanframe/theme/kuic/assets/images/icons/ico_next.svg);
  right: -40px;
}
.field .swiper-btn.swiper-button-next::after {
  display: none;
}

.company {
  padding: 160px 0;
  margin: 160px 24px;
  background: url(/humanframe/theme/kuic/assets/images/main/company_bg.png) no-repeat center/cover;
}
.company .inner {
  padding: 0 132px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.company .title h3 {
  color: #fff;
}
.company .title p {
  color: #fff;
  margin: 20px 0;
  font-size: 24px;
  line-height: 160%;
}
.company .title a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #FFF;
}
.company .list {
  margin-top: 27px;
}
.company .list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.company .list ul li {
  width: 180px;
  height: 180px;
}
.company .list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 160%;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14.1999998093px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.company .list ul li a span {
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.company .list ul li a span::after {
  content: "";
  width: 9px;
  height: 9px;
  background: url(/humanframe/theme/kuic/assets/images/icons/ico_arrow_tab_white.svg) no-repeat center bottom;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
  opacity: 0;
}
.company .list ul li a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #2B6AD1;
  border-color: #2B6AD1;
}
.company .list ul li a:hover span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-bottom: 27px;
}
.company .list ul li a:hover span::after {
  display: block;
  opacity: 1;
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
}
.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-down {
  opacity: 0;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
}
.fade-down.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 1600px) {
  .who .inner {
    gap: 50px;
  }
  .field .swiper {
    margin-left: calc(50% - 51vw);
  }
  .field .swiper-btn.swiper-button-prev {
    left: -10px;
  }
  .field .swiper-btn.swiper-button-next {
    right: -10px;
  }
  .company .inner {
    padding: 0 80px;
  }
}
@media (max-width: 1024px) {
  .s1-title br,
  .s2-title br,
  .s3-title br {
    display: none;
  }
  .future h2 {
    font-size: 40px;
  }
  .future h2 br {
    display: none;
  }
  .notice .list {
    gap: 60px;
  }
  .notice .list li + li::after {
    left: -37px;
  }
  .who {
    padding: 120px 24px;
  }
  .who .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .who .title {
    width: 100%;
  }
  .company {
    padding: 60px 40px;
    margin: 0;
  }
  .company .inner {
    display: block;
    padding: 0;
  }
  .company .list ul li {
    width: auto;
  }
}
@media (max-width: 768px) {
  .future {
    padding: 100px 24px;
  }
  .future h2 {
    font-size: 32px;
  }
  .notice .title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .notice .title ul li a {
    padding: 4px 14px;
    font-size: 14px;
  }
  .notice .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px 30px;
  }
  .notice .list li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  .notice .list li + li::after {
    left: -20px;
  }
  .notice .list li:nth-child(n+3)::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
    position: absolute;
    top: -20px;
    left: 0;
  }
  .notice .list li:nth-child(3)::after {
    display: none;
  }
  .notice .list dl dt {
    height: 50px;
    font-size: 20px;
  }
  .notice .list dl dd {
    font-size: 16px;
  }
  .notice .list .date {
    font-size: 14px;
    margin-top: 24px;
  }
  .notice .apply p {
    font-size: 20px;
  }
  .who {
    padding: 60px 24px 80px;
  }
  .field {
    padding: 80px 24px 120px;
  }
  .field .swiper {
    width: auto;
    margin: 40px 0 0;
  }
  .field .swiper .img {
    height: 0;
    padding-top: 97%;
    position: relative;
  }
  .field .swiper .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .field .swiper .text dl dt {
    font-size: 20px;
  }
  .field .swiper .text dl dd {
    font-size: 18px;
  }
  .company .title p {
    font-size: 18px;
  }
  .company .list ul li a {
    font-size: 18px;
  }
}
.en .s1-title,
.en .s2-title,
.en .s3-title {
  font-size: clamp(30px, 2.5vw, 63px);
}