:root {
  --color-main: #146EB8;
  --color-sub: #B81463;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: 'Pretendard', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --gradient-light1: linear-gradient(180deg, #146EB8 0%, #0F416E 100%);
  --gradient-light2: linear-gradient(180deg, #146EB8 0%, #0A2A44 100%);
  --gradient-middle: linear-gradient(180deg, #111B31 0%, #081022 100%);
  --gradient-dark1: linear-gradient(180deg, #070D1B 0%, #0A1327 100%);
  --gradient-dark2: linear-gradient(180deg, #050A15 0%, #0A1327 100%);
  --gradient-opacity: linear-gradient(180deg,  #0A1327 0%, rgba(7, 13, 27, 0.70) 100%);
  --gradient-purple: linear-gradient(180deg, #B81463 0%, #9A1455 44.79%, #731542 100%);
}

.font35 {
  --fontsize: 3.5rem;
  font-size: var(--fontsize);
}

.font45 {
  --fontsize: 4.5rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

.font70 {
  --fontsize: 7.0rem;
  font-size: var(--fontsize);
}

.font80 {
  --fontsize: 8.0rem;
  font-size: var(--fontsize);
}

.font100 {
  --fontsize: 10.0rem;
  font-size: var(--fontsize);
}

* {
  line-height: 1;
  letter-spacing: -0.020em;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  height: auto !important;
  background: #050A15;
}

body * {
  color: var(--color-white);
}

body.scrollX {
  overflow: hidden;
}

figure {
  margin: 0;
}

#wrap,
footer {
  font-size: 1.6rem;
}

#wrap {
  width: 100%;
  max-width: 100%;
}

.w1800 {
  width: 100%;
  height: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.w1500 {
  width: 100%;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.colorM {
  color: var(--color-main);
}

.colorS {
  color: var(--color-sub);
}

.animation {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.animation.down {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.animation.up {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.animation.left {
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
}

.animation.right {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
}

.animation.opacity {
  opacity: 0;
}

.animation.on.down, .animation.on.up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animation.on.left, .animation.on.right {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.animation.on.opacity {
  opacity: 1;
}

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

.flexBox.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flexBox.end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flexBox.space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tabContents > div {
  display: none;
}

.tabContents > div.on {
  display: block;
}

.paddingBox {
  padding: 150px 0;
}

.paddingBox.topX {
  padding: 0 0 150px;
}

.paddingBox.bottomX {
  padding: 150px 0 0;
}

.marginTop120 {
  margin-top: 120px;
}

.light {
  font-weight: 300;
}

.bold {
  font-weight: 700;
}

.more {
  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;
}

.more * {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.more span {
  display: block;
  color: var(--color-main);
  font-size: 13px;
  white-space: nowrap;
  margin: 0 -18px 0 0;
}

.more svg {
  width: 42px;
  height: 42px;
}

.more circle {
  fill: transparent;
  stroke: var(--color-main);
  stroke-dasharray: 125.6;
  stroke-dashoffset: 25.6;
  -webkit-transform: rotate(215deg);
          transform: rotate(215deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.more:hover span {
  color: var(--color-white);
}

.more:hover circle {
  -webkit-animation: more 0.2s forwards;
          animation: more 0.2s forwards;
}

@-webkit-keyframes more {
  0% {
    stroke: var(--color-white);
    stroke-dashoffset: 125.6;
  }
  100% {
    stroke-dashoffset: 25.6;
    stroke: var(--color-white);
  }
}

@keyframes more {
  0% {
    stroke: var(--color-white);
    stroke-dashoffset: 125.6;
  }
  100% {
    stroke-dashoffset: 25.6;
    stroke: var(--color-white);
  }
}

header {
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
}

header .headerBox {
  width: 100%;
  height: 100%;
  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;
}

header .logo {
  width: 217px;
  height: 32px;
}

header .language {
  position: relative;
  margin: 0 30px 0 auto;
}

header .language ul {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  text-align: center;
  padding: 3px;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

header .language ul * {
  transition: all 0.4s;
}

header .language ul li {
  border-radius: 4px;
  padding: 5px 6px;
}

header .language ul li:hover {
  background: #146eb8;;
}

header .language ul li a {
  display: block;
  font-size: 1.5rem;
}

header .language ul li:hover a {
  /* color: #146eb8; */
}

header .menuButton {
  width: 25px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5px 0;
}

header .menuButton * {
  height: 2px;
  display: block;
}

header .menuButton span {
  width: 100%;
  position: relative;
}

header .menuButton em {
  background: #D9D9D9;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

header .menuButton .dot {
  width: 2px;
}

header .menuButton span:nth-child(1) .dot {
  left: 0;
}

header .menuButton span:nth-child(1) .line {
  width: 20px;
  right: 0;
}

header .menuButton span:nth-child(2) .dot {
  right: 0;
}

header .menuButton span:nth-child(2) .line {
  width: 15px;
  right: 5px;
}

header .menuButton span:nth-child(3) em {
  width: 14px;
  right: 0;
}

header .menuButton.on .dot {
  width: 0;
}

header .menuButton.on span:nth-child(1) .line {
  width: 6px;
  right: calc(100% - 6px);
  -webkit-transition: width 0.4s 0.1s, right 0.4s 0.2s;
  transition: width 0.4s 0.1s, right 0.4s 0.2s;
}

header .menuButton.on span:nth-child(2) .line {
  width: 25px;
  right: 0;
  -webkit-transition: right 0.4s 0.1s, width 0.4s 0.2s;
  transition: right 0.4s 0.1s, width 0.4s 0.2s;
}

header .menuButton.on span:nth-child(3) em {
  width: 6px;
}

.allMenu {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: none;
}

.allMenu :root {
  --vh: 100%;
}

@supports (-webkit-touch-callout: none) {
  .allMenu {
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
  }
}

.allMenu::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: #050A15;
  z-index: -1;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
  -webkit-filter: opacity(0.2);
          filter: opacity(0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.allMenu .flexBox {
  padding: 100px 0 0;
  position: relative;
  width: 100%;
  height: 100%;
}

.allMenu .depth1 a {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.allMenu .depth1 > li {
  gap: 0 120px;
  padding: 18px 0;
  padding-left: 60px;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  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;
}

.allMenu .depth1 > li:not(:last-child)::before, .allMenu .depth1 > li:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  background: white;
  position: absolute;
  left: -3.125vw;
  bottom: 0;
}

.allMenu .depth1 > li:not(:last-child)::before {
  width: 100vw;
  background: rgba(255, 255, 255, 0.3);
}

.allMenu .depth1 > li:not(:last-child)::after {
  width: 0;
  background: var(--color-main);
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
}

.allMenu .depth1 > li > a {
  font-size: 5.0rem;
  letter-spacing: -0.010em;
}

.allMenu .depth1 > li:hover {
  padding-left: 60px;
}

.allMenu .depth1 > li:hover::after {
  width: 100vw;
}

.allMenu .depth1 > li.off > a {
  opacity: 0.5;
}

.allMenu .depth2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
}

.allMenu .depth2 > li > a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 2.0rem;
  opacity: 0;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.allMenu .depth2 > li:hover > a {
  color: #1980D6;
  font-weight: 700;
  -webkit-transition: color 0.4s 0s !important;
  transition: color 0.4s 0s !important;
}

.allMenu .depth2.on > li > a {
  opacity: 0.9;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.allMenu .depth2.on > li:nth-child(1) > a {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.allMenu .depth2.on > li:nth-child(2) > a {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.allMenu .depth2.on > li:nth-child(3) > a {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.allMenu .depth2.on > li:nth-child(4) > a {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.allMenu .depth2.on > li:nth-child(5) > a {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.allMenu .depth2.on > li:nth-child(6) > a {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.allMenu.on::before {
  height: 100%;
  opacity: 1;
  -webkit-filter: opacity(1);
          filter: opacity(1);
}

.allMenu.on .depth1 > li {
  padding-left: 0;
  opacity: 1;
}

.allMenu.on .depth1 > li:nth-child(1) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.allMenu.on .depth1 > li:nth-child(2) {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

.allMenu.on .depth1 > li:nth-child(3) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

.allMenu.on .depth1 > li:nth-child(4) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}

.allMenu.on .depth1 > li:nth-child(5) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.allMenu.on .depth1 > li:nth-child(6) {
  -webkit-transition-delay: 0.72s;
          transition-delay: 0.72s;
}

.allMenu.on .depth1 > li:nth-child(7) {
  -webkit-transition-delay: 0.84s;
          transition-delay: 0.84s;
}

.allMenu.on .depth1 > li:nth-child(8) {
  -webkit-transition-delay: 0.96s;
          transition-delay: 0.96s;
}

.allMenu.on .depth1 > li:nth-child(9) {
  -webkit-transition-delay: 1.08s;
          transition-delay: 1.08s;
}

.allMenu.on .depth1 > li:nth-child(10) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

footer {
  padding: 100px 0 80px;
  position: relative;
}

footer .topButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
  position: absolute;
  right: 30px;
  bottom: 140px;
}

footer .topButton span {
  display: block;
  overflow: hidden;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

footer .topButton:hover span img {
  -webkit-animation: topArrow 1.2s infinite;
          animation: topArrow 1.2s infinite;
}

@-webkit-keyframes topArrow {
  50% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}

@keyframes topArrow {
  50% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}

footer .footerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .logo {
  display: block;
  width: 375px;
  height: 56px;
}

footer .logo .logoCls1 {
  fill: #ffffff;
}

footer .logo .logoCls2 {
  fill: #9DA0AC;
}

footer .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 60px;
  margin: 90px 0 35px;
}

footer .contact * {
  font-family: var(--font-pretendard);
}

footer .contact li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}

footer .contact li.width100 {
  width: 100%;
}

footer .contact p {
  color: #777777;
}

footer .copy {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.0825rem;
}

footer .link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 120px 50px 0;
}

footer .link * {
  line-height: 2.2;
}

footer .link a {
  gap: 0 15px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05625rem;
  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;
}
