@charset "UTF-8";
/*
AUTH : ssooya
VERSION : version 2
*/
/**********
펑션
***********/
/**********
텍스트 자간
***********/
/**********
텍스트 말줄임
***********/
/**********
아이콘
***********/
main.container {
  min-height: 100%;
  margin: 0 auto;
  position: relative;
  background: #0c0c0c;
}

.inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1080px) {
  .inner {
    padding: 0 20px;
  }
}

@media (max-width: 1080px) {
  .mobile-enter {
    display: block;
  }
}

header {
  position: fixed;
  max-width: 874px;
  width: 100%;
  z-index: 100;
  left: 50%;
  top: 45px;
  transform: translateX(-50%);
}
@media (max-width: 1080px) {
  header {
    top: 18px;
    max-width: 100%;
    width: auto;
  }
}
header.is-header-hidden .header-wrap {
  transform: translateY(-150%);
  opacity: 0;
  pointer-events: none;
}
header.is-header-hidden .sub-nav {
  top: 0;
}
header .sub-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  top: 96px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22.5px);
  padding: 12px;
  gap: 6px;
  display: flex;
  transition: top 0.3s ease;
}
@media (max-width: 1080px) {
  header .sub-nav {
    display: none;
  }
}
header .sub-nav .sub-nav-item {
  min-width: 0;
}
header .sub-nav .sub-nav-item.is-selected .sub-nav-btn {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
}
header .sub-nav .sub-nav-item .sub-nav-btn {
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  width: max-content;
}
header .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22.5px);
  padding: 18px 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 1080px) {
  header .header-wrap {
    padding: 19px 21px 19px 15px;
  }
}
@media (max-width: 1080px) {
  header .header-wrap .contact-box {
    display: none;
  }
}
header .header-wrap .contact-box .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  height: 43px;
  color: #fff;
  background-color: #000;
  padding: 0 15px;
}
@media (max-width: 1080px) {
  header .header-wrap .header-info {
    display: inline-flex;
    align-items: center;
    gap: 26px;
  }
}
header .header-wrap .header-info .gnb-btn {
  display: none;
  background: url("../img/common/mobile_gnb.svg") no-repeat center/cover;
  width: 24px;
  height: 24px;
}
header .header-wrap .header-info .gnb-btn.is-active {
  background: url("../img/common/mobile_gnb_close.svg") no-repeat center/cover;
}
@media (max-width: 1080px) {
  header .header-wrap .header-info .gnb-btn {
    display: inline-flex;
  }
}
header .header-wrap .header-info .logo-box {
  display: inline-flex;
  position: relative;
}
@media (max-width: 1080px) {
  header .header-wrap .header-info .logo-box:after {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.24);
  }
}
header .header-wrap .header-info .logo-box .logo {
  background: url("../img/common/logo.svg") no-repeat center/cover;
  width: 118px;
  aspect-ratio: 118/21;
}
@media (max-width: 1080px) {
  header .header-wrap .header-info .logo-box .logo {
    width: 84px;
  }
}
header .header-wrap nav {
  display: inline-flex;
  gap: 6px;
}
@media (max-width: 1080px) {
  header .header-wrap nav {
    display: none;
  }
}
header .header-wrap nav .nav-item {
  display: inline-flex;
  min-width: 0;
}
header .header-wrap nav .nav-item.is-selected .nav-btn {
  background-color: #fff;
  color: #000;
}
header .header-wrap nav .nav-item .nav-btn {
  border-radius: 12px;
  padding: 0 15px;
  color: #fff;
  font-weight: 600;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-gnb {
  background-color: #0c0c0c;
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.mobile-gnb.is-active {
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-direction: column;
}
.mobile-gnb .nav-list {
  padding: 102px 0 40px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-gnb .nav-list .nav-item .nav-btn {
  padding: 12px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.mobile-gnb .nav-list .nav-item .sub-list {
  display: flex;
  flex-direction: column;
}
.mobile-gnb .nav-list .nav-item .sub-list .sub-btn {
  width: 100%;
  padding: 9px 36px;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #9393B0;
}

footer {
  padding: 90px 0;
}
@media (max-width: 1080px) {
  footer {
    padding: 40px 0;
  }
}
footer .footer-head-box {
  display: flex;
  justify-content: space-between;
  padding: 12px;
}
footer .footer-head-box .with-box .with-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #121212;
  background: radial-gradient(100% 100% at 50% 0%, rgba(90, 41, 217, 0.15) 0%, rgba(90, 41, 217, 0) 100%);
  height: 42px;
  padding: 0 24px 0 9px;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
footer .footer-head-box .with-box .with-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(to right, #121212 0%, #3A3E6D 50%, #121212 100%);
}
@media (max-width: 1080px) {
  footer .footer-head-box .with-box .with-btn {
    height: 32px;
    padding: 0 12px;
  }
}
footer .footer-head-box .with-box .with-btn .with-img {
  background: url("../img/common/footer_poppin.png") no-repeat center/cover;
  width: 128px;
  aspect-ratio: 128/24;
}
@media (max-width: 1080px) {
  footer .footer-head-box .with-box .with-btn .with-img {
    width: 80px;
  }
}
footer .footer-head-box .with-box .with-btn .ic.ic-link {
  background: url("../img/common/footer_link.svg") no-repeat center/cover;
  width: 18px;
  height: 18px;
}
@media (max-width: 1080px) {
  footer .footer-head-box .with-box .with-btn .ic.ic-link {
    width: 14px;
    height: 14px;
  }
}
footer .footer-head-box .logo-box {
  display: flex;
}
footer .footer-head-box .logo-box .footer-logo {
  background: url("../img/common/footer_logo.svg") no-repeat center/100% 100%;
  width: 135px;
  display: inline-flex;
  aspect-ratio: 135/24;
}
@media (max-width: 1080px) {
  footer .footer-head-box .logo-box .footer-logo {
    width: 110px;
  }
}
footer .footer-head-box .logo-box img {
  max-width: 100%;
}
footer .footer-body-box {
  padding: 18px 0;
}
@media (max-width: 1080px) {
  footer .footer-body-box {
    padding: 12px 0;
  }
}
footer .footer-body-box .tag-list .tag-item {
  overflow: hidden;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 24px 0 9px;
  border-radius: 100px;
  border: 1px solid #121212;
  background: radial-gradient(100% 100% at 50% 0%, rgba(90, 41, 217, 0.15) 0%, rgba(90, 41, 217, 0) 100%);
  gap: 6px;
}
footer .footer-body-box .tag-list .tag-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(to right, #121212 0%, #3A3E6D 50%, #121212 100%);
}
@media (max-width: 1080px) {
  footer .footer-body-box .tag-list .tag-item {
    height: 32px;
    padding: 0 10px 0 6px;
    gap: 4px;
  }
}
footer .footer-body-box .tag-list .tag-item .ic {
  width: 24px;
  height: 24px;
}
@media (max-width: 1080px) {
  footer .footer-body-box .tag-list .tag-item .ic {
    width: 20px;
    height: 20px;
  }
}
footer .footer-body-box .tag-list .tag-item .ic.ic-place {
  background: url("../img/common/footer_place.svg") no-repeat center/cover;
}
footer .footer-body-box .tag-list .tag-item .ic.ic-tel {
  background: url("../img/common/footer_tel.svg") no-repeat center/cover;
}
footer .footer-body-box .tag-list .tag-item .ic.ic-email {
  background: url("../img/common/footer_email.svg") no-repeat center/cover;
}
footer .footer-body-box .tag-list .tag-item .item-txt {
  color: #9393B0;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.02em;
  font-weight: 600;
}
@media (max-width: 1080px) {
  footer .footer-body-box .tag-list .tag-item .item-txt {
    font-size: 12px;
  }
}
footer .footer-foot-box {
  border-radius: 24px;
  border: 1px solid #121212;
  background: radial-gradient(26.36% 50% at 50% 0%, rgba(90, 41, 217, 0.06) 0%, rgba(90, 41, 217, 0.03) 100%);
  backdrop-filter: blur(12px);
  padding: 30px 45px;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}
footer .footer-foot-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(to right, #121212 0%, #3A3E6D 50%, #121212 100%);
}
@media (max-width: 1080px) {
  footer .footer-foot-box {
    padding: 20px 24px;
    border-radius: 18px;
  }
}
footer .footer-foot-box .foot-info-box {
  display: inline-flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 1080px) {
  footer .footer-foot-box .foot-info-box {
    gap: 6px;
  }
}
footer .footer-foot-box .foot-info-box .txt-box {
  display: flex;
  gap: 13px;
}
@media (max-width: 1080px) {
  footer .footer-foot-box .foot-info-box .txt-box {
    gap: 6px;
  }
}
footer .footer-foot-box .foot-info-box .txt-box .txt-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9393B0;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
@media (max-width: 1080px) {
  footer .footer-foot-box .foot-info-box .txt-box .txt-item {
    font-size: 11px;
  }
}
footer .footer-foot-box .foot-link-box {
  display: none;
}
footer .footer-foot-box .foot-link-box .foot-link-btn {
  color: #9393B0;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 1080px) {
  footer .footer-foot-box .foot-link-box .foot-link-btn {
    font-size: 11px;
  }
}

section.section {
  padding: 150px 0;
}
@media (max-width: 1080px) {
  section.section {
    padding: 80px 0;
  }
}

article.section-information .information-label-box {
  display: flex;
  justify-content: center;
}
article.section-information .information-label-box .label-box {
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #121212;
  background: radial-gradient(100% 100% at 50% 0%, rgba(90, 41, 217, 0.15) 0%, rgba(90, 41, 217, 0) 100%);
  padding: 0 12px;
  position: relative;
  overflow: hidden;
}
article.section-information .information-label-box .label-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(to right, #121212 0%, #3A3E6D 50%, #121212 100%);
}
@media (max-width: 1080px) {
  article.section-information .information-label-box .label-box {
    height: 42px;
    padding: 0 15px;
  }
}
article.section-information .information-label-box .label-box .label-txt {
  background: linear-gradient(90deg, #A0C8FF 0%, #1EEB7C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}
article.section-information .information-head-box {
  padding-top: 72px;
  position: relative;
}
@media (max-width: 1080px) {
  article.section-information .information-head-box {
    padding-top: 40px;
  }
}
article.section-information .information-head-box:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 36px;
  width: 30px;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 1080px) {
  article.section-information .information-head-box:after {
    top: 20px;
  }
}
article.section-information .information-head-box .subject-box {
  display: flex;
  justify-content: center;
  position: relative;
  gap: 25px;
}
@media (max-width: 1080px) {
  article.section-information .information-head-box .subject-box {
    gap: 12px;
  }
}
article.section-information .information-head-box .subject-box .subject-txt {
  color: #fff;
  font-size: 45px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.03em;
  font-weight: 600;
}
@media (max-width: 1080px) {
  article.section-information .information-head-box .subject-box .subject-txt {
    font-size: 24px;
  }
  article.section-information .information-head-box .subject-box .subject-txt.m-small {
    font-size: 20px;
  }
}
article.section-information .information-head-box .subject-box .dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
}
@media (max-width: 1080px) {
  article.section-information .information-head-box .subject-box .dot {
    width: 4px;
    height: 4px;
  }
}
article.section-information .information-head-box .desc-box {
  padding-top: 36px;
}
@media (max-width: 1080px) {
  article.section-information .information-head-box .desc-box {
    padding-top: 18px;
  }
}
article.section-information .information-head-box .desc-box .desc-txt {
  text-align: center;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (max-width: 1080px) {
  article.section-information .information-head-box .desc-box .desc-txt {
    font-size: 14px;
  }
}
article.section-information .information-link-box {
  padding-top: 36px;
}
@media (max-width: 1080px) {
  article.section-information .information-link-box {
    padding: 20px;
  }
}
article.section-information .information-link-box .link-box {
  display: flex;
  justify-content: center;
}
article.section-information .information-link-box .link-box .link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(90deg, #1EEB7D 20%, #A0C8FF 70.01%, #FFF 100.01%);
  gap: 9px;
  height: 57px;
  padding: 0 30px;
}
@media (max-width: 1080px) {
  article.section-information .information-link-box .link-box .link-btn {
    height: 46px;
    padding: 0 20px;
  }
}
article.section-information .information-link-box .link-box .link-btn .btn-txt {
  color: #000;
  font-size: 21px;
  line-height: 130%;
  font-weight: 600;
  letter-spacing: -0.02em;
}
@media (max-width: 1080px) {
  article.section-information .information-link-box .link-box .link-btn .btn-txt {
    font-size: 17px;
  }
}
article.section-information .information-link-box .link-box .link-btn .ic.ic-link {
  background: url("../img/common/link_arrow.svg") no-repeat center/cover;
  width: 18px;
  height: 18px;
}
@media (max-width: 1080px) {
  article.section-information .information-link-box .link-box .link-btn .ic.ic-link {
    width: 14px;
    height: 14px;
  }
}

article.more-button {
  display: flex;
  justify-content: center;
}
article.more-button .more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px 0 30px;
  height: 57px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(90deg, #1EEB7D 20%, #A0C8FF 70.01%, #FFF 100.01%);
  gap: 9px;
}
@media (max-width: 1080px) {
  article.more-button .more-btn {
    height: 46px;
    padding: 0 12px 0 16px;
  }
}
article.more-button .more-btn .btn-txt {
  font-size: 21px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.02em;
}
@media (max-width: 1080px) {
  article.more-button .more-btn .btn-txt {
    font-size: 17px;
  }
}
article.more-button .more-btn .ic.ic-link {
  background: url("../img/common/link_arrow.svg") no-repeat center/cover;
  width: 18px;
  height: 18px;
}
@media (max-width: 1080px) {
  article.more-button .more-btn .ic.ic-link {
    width: 14px;
    height: 14px;
  }
}

.mobile-enter {
  display: none;
}
@media (max-width: 1080px) {
  .mobile-enter {
    display: block;
  }
}

.pc-enter {
  display: block;
}
@media (max-width: 1080px) {
  .pc-enter {
    display: none;
  }
}

/*# sourceMappingURL=common.css.map */
