.tit-wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 14px;
}
.tit-wrap .en-tit {
  font-size: 20px;
  font-weight: 700;
  color: #aaa;
  line-height: 1;
}
.tit-wrap > h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}
.tit-wrap > h1 > em {
  font-size: 50px;
  font-weight: 600;
  color: #707070;
}
.tit-wrap > p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  color: #3D3D3D;
}
.tit-wrap.center {
  align-items: center;
}
.tit-wrap.center .en-tit, .tit-wrap.center > h1, .tit-wrap.center > p {
  text-align: center;
}

@media (max-width: 1024px) {
  .tit-wrap > h1 {
    font-size: 40px;
  }
  .tit-wrap > h1 > em {
    font-size: 30px;
  }
  .tit-wrap > p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .tit-wrap .en-tit {
    font-size: 18px;
  }
  .tit-wrap > h1 {
    font-size: 28px;
  }
  .tit-wrap > h1 > em {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .tit-wrap .en-tit {
    font-size: 16px;
  }
  .tit-wrap > h1 {
    font-size: 22px;
  }
  .tit-wrap > h1 > em {
    font-size: 18px;
  }
}
.mobile-outside {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 700;
  display: none;
}
.mobile-outside.active {
  display: block;
}

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 320px;
  background: white;
  display: flex;
  flex-direction: column;
  z-index: 701;
  display: none;
}
.m-menu.active {
  display: block;
}
.m-menu .top {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.m-menu .top .m-menu-close {
  width: 45px;
  height: 45px;
}
.m-menu .top .m-menu-close > svg {
  width: 100%;
  height: 100%;
}
.m-menu .bot {
  width: 100%;
}
.m-menu .bot .m-global-nav {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .bot .m-global-nav .depth1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .bot .m-global-nav .depth1 > span, .m-menu .bot .m-global-nav .depth1 > a {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: black;
  cursor: pointer;
}
.m-menu .bot .m-global-nav .depth1 > span > svg, .m-menu .bot .m-global-nav .depth1 > a > svg {
  transition: 0.2s all ease-in-out;
}
.m-menu .bot .m-global-nav .depth1 .depth2 {
  width: 100%;
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}
.m-menu .bot .m-global-nav .depth1 .depth2 > a {
  width: 100%;
  height: 40px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #464646;
}
.m-menu .bot .m-global-nav .depth1.active > span > svg {
  transform: rotate(180deg);
}
.m-menu .bot .m-global-nav .depth1.active .depth2 {
  max-height: 350px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 600;
  transition: 0.2s all ease-in-out;
}
.header .container {
  width: 100%;
  height: 100px;
  max-width: 1520px;
  padding: 0 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.2s all ease-in-out;
}
.header .container > a {
  width: auto;
  height: 60%;
}
.header .container > a > img {
  width: auto;
  height: 100%;
}
.header .container .right {
  display: flex;
  flex-direction: row;
}
.header .container .right .h-global-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 70px;
}
.header .container .right .h-global-nav > a {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: white;
  text-shadow: 0 0 5px rgb(0, 0, 0);
}
.header .container .right .m-menu-open {
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: none;
  cursor: pointer;
}
.header .container .right .m-menu-open > svg {
  width: 100%;
  height: auto;
  fill: black;
}
.header.change {
  padding-top: 0;
}
.header.change .container {
  max-width: 2500px;
}

@media (max-width: 1520px) {
  .header {
    padding-top: 0;
  }
  .header .container {
    padding: 0 16px;
  }
  .header .container .right .h-global-nav {
    grid-gap: 50px;
  }
  .header .container .right .h-global-nav > a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .header .container {
    height: 50px;
    background: white;
  }
  .header .container .right .h-global-nav {
    display: none;
  }
  .header .container .right .m-menu-open {
    display: block;
  }
}
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footer .top {
  width: 100%;
  height: 550px;
  display: flex;
  flex-direction: row;
}
.footer .top .top-inner {
  position: relative;
  padding: 50px 120px;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-gap: 18px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.footer .top .top-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.footer .top .top-inner .eng-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #aaa;
}
.footer .top .top-inner .kr-title {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.footer .top .top-inner .desc {
  position: relative;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  color: white;
}
.footer .top .top-inner .desc > br {
  display: none;
}
.footer .top .top-inner > a {
  position: relative;
  width: 220px;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  grid-gap: 16px;
  background-color: white;
  border-radius: 500px;
}
.footer .top .top-inner > a > span {
  font-size: 18px;
  line-height: 1;
  color: #006eff;
}
.footer .top .top-inner > a > svg {
  width: auto;
  height: 20px;
  fill: #006eff;
}
.footer .bottom {
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
.footer .bottom .container {
  width: 100%;
  max-width: 1520px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  grid-gap: 50px;
}
.footer .bottom .container .left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
.footer .bottom .container .left > a {
  width: auto;
  height: 60px;
}
.footer .bottom .container .left > a > img {
  width: auto;
  height: 100%;
}
.footer .bottom .container .left .simple-info {
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
}
.footer .bottom .container .left .simple-info > span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: white;
}
.footer .bottom .container .left .law-nav {
  display: flex;
  flex-direction: row;
  grid-gap: 50px;
}
.footer .bottom .container .left .law-nav > a {
  font-size: 14px;
  line-height: 1;
  color: #818181;
}
.footer .bottom .container .right {
  flex: 0 1 auto;
}
.footer .bottom .container .right .f-global-nav {
  display: flex;
  flex-direction: row;
  grid-gap: 80px;
}
.footer .bottom .container .right .f-global-nav .depth1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 45px;
}
.footer .bottom .container .right .f-global-nav .depth1 > em {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: white;
  text-align: center;
}
.footer .bottom .container .right .f-global-nav .depth1 .depth2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;
}
.footer .bottom .container .right .f-global-nav .depth1 .depth2 > li > a {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  color: white;
}

@media (max-width: 1520px) {
  .footer .top .top-inner {
    padding: 50px 80px;
  }
  .footer .bottom {
    padding: 50px 0;
  }
  .footer .bottom .container {
    padding: 0 16px;
  }
  .footer .bottom .container .right .f-global-nav {
    grid-gap: 40px;
  }
}
@media (max-width: 1024px) {
  .footer .top {
    height: 320px;
  }
  .footer .top .top-inner {
    padding: 20px 16px;
    grid-gap: 14px;
  }
  .footer .top .top-inner .eng-title {
    font-size: 16px;
  }
  .footer .top .top-inner .kr-title {
    font-size: 32px;
  }
  .footer .top .top-inner .desc {
    font-size: 14px;
  }
  .footer .top .top-inner > a {
    width: 150px;
    height: 40px;
  }
  .footer .top .top-inner > a > span {
    font-size: 14px;
  }
  .footer .top .top-inner > a > svg {
    height: 16px;
  }
  .footer .bottom .container {
    flex-direction: column;
    align-items: center;
  }
  .footer .bottom .container .left {
    grid-gap: 20px;
    align-items: center;
  }
  .footer .bottom .container .left > a {
    width: -moz-fit-content;
    width: fit-content;
    height: 45px;
  }
  .footer .bottom .container .left .simple-info {
    align-items: center;
  }
  .footer .bottom .container .left .simple-info > span {
    font-size: 12px;
  }
  .footer .bottom .container .left .law-nav {
    grid-gap: 30px;
  }
  .footer .bottom .container .right .f-global-nav {
    grid-gap: 30px;
  }
  .footer .bottom .container .right .f-global-nav .depth1 {
    grid-gap: 20px;
  }
  .footer .bottom .container .right .f-global-nav .depth1 > em {
    font-size: 14px;
  }
  .footer .bottom .container .right .f-global-nav .depth1 .depth2 {
    grid-gap: 14px;
  }
  .footer .bottom .container .right .f-global-nav .depth1 .depth2 > li > a {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .footer .top {
    height: auto;
    flex-direction: column;
  }
  .footer .top .top-inner {
    height: 250px;
    flex: unset;
  }
}/*# sourceMappingURL=common.css.map */