:root {
  --pink: #ad014d;
  --poppins: "Poppins", sans-serif;
  --pretend: "Pretendard", sans-serif;
}
.mob-top {
  display: none;
}
.show-default {
  display: block !important;
}

.hide-default {
  display: none !important;
}

.afterLoad .header {
  top: 0;
}

.font-en {
  font-family: var(--poppins);
}

.is-pink {
  color: var(--pink) !important;
}

.header.sub-style {
  position: absolute;
}

.header {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  z-index: 9999;
  -webkit-transition: top 2s -1s ease;
  transition: top 2s -1s ease;
}
.header .gsnb {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #fff;
  position: absolute;
  top: calc(var(--headerHeight) + 1px);
  left: 0;
  right: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header .gsnb.on {
  height: 300px;
}
.header.K06, .header.white {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
.header.K06 .header-gnb__depth1, .header.white .header-gnb__depth1 {
  color: #161616;
}
.header.K06 .header-btn a:first-child, .header.white .header-btn a:first-child {
  color: #161616;
}
.header.K06 .header-logo, .header.white .header-logo {
  background-image: url("/en/image/common/logo02.svg");
}
.header.K06 .header-lang li a, .header.white .header-lang li a {
  color: rgba(0, 0, 0, 0.3);
}
.header.K06 .header-lang li.active a, .header.white .header-lang li.active a {
  color: #222;
}
.header.K06 .header-lang li:not(:first-child)::before, .header.white .header-lang li:not(:first-child)::before {
  background-color: rgba(0, 0, 0, 0.3);
}
.header.K06 .header-ham span, .header.white .header-ham span {
  background-color: var(--pink);
}
.header.K06.is-trans, .header.white.is-trans {
  background-color: transparent;
  border-color: transparent;
}
.header.K06.is-trans:hover, .header.white.is-trans:hover {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 96px;
  position: static;
}

.header-logo {
  display: block;
  width: 376px;
  height: 44px;
  background-image: url("/en/image/common/logo01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-size: 0;
  -webkit-transition: background ease 0.3s;
  transition: background ease 0.3s;
}

.header-btn {
  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;
}
.header-btn a {
  width: 120px;
  height: 50px;
  border-radius: 2em;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  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;
}
.header-btn a:first-child {
  border: 1px solid #ddd;
}
.header-btn a:last-child {
  background-color: #437fec;
  margin-left: 20px;
}

.header-gnb {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.header-gnb:hover .header-gnb__depth1 {
  width: 200px;
}
.header-gnb > div {
  position: relative;
  height: 100%;
}
.header-gnb > div::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header-gnb > div.on .header-gnb__depth2 {
  background-color: var(--pink);
  border-color: var(--pink) !important;
}
.header-gnb > div.on .header-gnb__depth2 a {
  color: #fff;
  opacity: 0.6;
}
.header-gnb > div.on .header-gnb__depth2 a:hover {
  opacity: 1;
}
.header-gnb > div.on::after {
  width: 150px;
}
.header-gnb > div:hover .header-gnb__depth1 {
  background-color: var(--pink);
  color: #fff;
}
.header-gnb > div:first-child .header-gnb__depth2 {
  border-left: 1px solid #ddd;
}

.header-lang {
  display: -webkit-box;
  display: -ms-flexbox;

  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: flex-end;
  gap: 36px;
  /* margin-left: auto; */
}
.header-lang li {
  position: relative;
}
.header-lang li a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
.header-lang li.active a {
  color: #fff;
}
.header-lang li:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 12px;
  position: absolute;
  left: -18px;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.header-gnb__depth1 {
  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;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 160px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
  text-align: center;
}

.header-gnb__depth2 {
  height: 301px;
  display: none;
  opacity: 0;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  padding-top: 40px;
  -webkit-transition: background 0.3s ease, border 0.3s ease;
  transition: background 0.3s ease, border 0.3s ease;
  border-right: 1px solid #ddd;
}
.header-gnb__depth2 a {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.425px;
  display: block;
  text-align: center;
  margin-bottom: 28px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footer-logo {
  width: 230px;
}

.footer {
  padding: 50px 0;
  background-color: #111;
  position: relative;
}
.footer .inner {
  position: static;
}
.footer a {
  color: #DDD;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.35px;
}
.footer .copy {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.28px;
  text-align: right;
}

.footer-top {
  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;
  margin-bottom: 20px;
}

.footer-family {
  position: relative;
}
.footer-family button {
  background-color: #222;
  padding: 0 20px;
  height: 46px;
  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;
  gap: 60px;
  font-size: 14px;
  font-weight: 500;
  color: #ddd;
}
.footer-family button svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.footer-family button.active svg {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.footer-family ul {
  display: none;
  position: absolute;
  top: 47px;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: #222;
}
.footer-family ul li {
  margin-bottom: 10px;
}
.footer-family ul li:last-child {
  margin-bottom: 0;
}
.footer-family ul li a {
  display: block;
  color: #666;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-family ul li a:hover {
  color: #ddd;
}

.footer-bottom div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid #222;
}
.footer-bottom address p, .footer-bottom address li {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.35px;
}
.footer-bottom address p span, .footer-bottom address li span {
  color: #DDD;
}
.footer-bottom address p {
  margin-bottom: 10px;
}
.footer-bottom address ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.footer-gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-gnb > div {
  margin-left: 80px;
}

.footer-gnb__depth1 {
  display: block;
  margin-bottom: 30px;
}
.footer-gnb__depth1 span {
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

.footer-gnb__depth2 a {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  font-weight: 400;
}

.common-btn a, .common-btn button {
  margin-inline: auto;
  width: 180px;
  height: 57px;
  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;
  border: 1px solid #fff;
  line-height: 1;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.common-btn a span, .common-btn button span {
  display: block;
  white-space: nowrap;
  text-align: left;
  font-size: 17px;
  font-weight: 400;
  margin-right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.common-btn a svg, .common-btn button svg {
  opacity: 0;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.common-btn a:hover, .common-btn button:hover {
  background-color: #fff;
  border-color: #fff;
}
.common-btn a:hover span, .common-btn button:hover span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.common-btn a:hover svg, .common-btn button:hover svg {
  opacity: 1;
  right: 20px;
}
.common-btn.style01 a span, .common-btn.style01 button span {
  color: #fff;
}
.common-btn.style01 a:hover span, .common-btn.style01 button:hover span {
  color: var(--pink);
}
.common-btn.style02 a, .common-btn.style02 button {
  border-color: var(--pink);
}
.common-btn.style02 a:hover, .common-btn.style02 button:hover {
  background-color: var(--pink);
  border-color: var(--pink);
}
.common-btn.style02 a:hover span, .common-btn.style02 button:hover span {
  color: #fff;
}
.common-btn.style02 a span, .common-btn.style02 button span {
  color: var(--pink);
}

.common-btn.several {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.common-btn.several a {
  margin: 0;
  background-color: var(--pink);
}
.common-btn.several a.is-white {
  background-color: #fff;
  border: 2px solid var(--pink);
}
.common-btn.several a.is-white span {
  color: var(--pink);
}
.common-btn.several a:hover {
  background-color: var(--pink);
}
.common-btn.several a:hover span {
  color: #fff;
}
.common-btn.several a.is-white:hover {
  background-color: #fff;
}
.common-btn.several a.is-white:hover span {
  color: var(--pink);
}
.common-btn.several a.is-white:hover path{
  stroke: var(--pink);
}
.header-ham {
  margin-left: 60px;
  width: 24px;
  cursor: pointer;
  position: relative;
  z-index: 90;
}

.header-ham span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.header-ham.active span {
  background: #fff !important;
}

.header-ham span:not(:first-child) {
  margin-top: 6px;
}

.header-ham span:nth-child(1),
.header-ham span:nth-child(2) {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.header-ham span:nth-child(3) {
  -webkit-transform: rotate(0deg) translate(0, 0);
          transform: rotate(0deg) translate(0, 0);
}

.header-ham.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}

.header-ham.active span:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.header-ham.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -6px);
          transform: rotate(-45deg) translate(5px, -6px);
}

.header-side {
  position: absolute;
  z-index: 20;
  width: 100vw;
  height: 100vh;
  top: -100vh;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-side .inner02 {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  opacity: 0;
  grid-gap: 0 20px;
}
.header-side .inner02:hover > div .header-side__depth1 {
  opacity: 0.4;
}
.header-side .inner02:hover > div .header-side__depth2 a {
  opacity: 0.4;
}
.header-side .inner02 > div {
  text-align: center;
}
.header-side .inner02 > div:hover .header-side__depth1 {
  opacity: 1;
}
.header-side .inner02 > div:hover .header-side__depth2 a {
  opacity: 0.4;
}
.header-side .inner02 > div:hover .header-side__depth2 a:hover {
  opacity: 1;
}

.header-side__depth1 {
  color: #FFF;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.85px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.header-side__depth2 {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
.header-side__depth2 a {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.425px;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media all and (max-width: 1440px) {
  .header-gnb,
  .gsnb{
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }
  .hide-1024 {
    display: none !important;
  }
  .header-side__depth1 {
    font-size: 26px;
  }
  .header-side__depth2 {
    margin-top: 30px;
  }
}
@media all and (max-width: 768px) {
  .show-768 {
    display: block !important;
  }
  .hide-768 {
    display: none !important;
  }
  .header-side .inner02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .header-lang {
    display: none;
  }
  .sideon .header-lang {
    display: flex;
    position: absolute;
    left: 50%;
    top: 100vh;
    transform: translate(-50%, -16.67vw);
    z-index: 99;
  }
  
  .header-lang li a {
    font-size: 20px;
  }
  .header-ham{
    margin-left: auto;
  }
  .header-side__depth1 {
    font-size: 30px;
  }
  .header-side .inner02 > div {
    width: 92.18%;
  }
  .header-side__depth2 {
    width: 100%;
    border-top: 2px solid #FFF;
    background-color: rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    display: none;
    text-align: center;
    margin-top: 20px;
  }
  .header-side__depth2 a {
    display: block;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .header-side__depth2 a:last-child {
    margin-bottom: 0;
  }
  .header-side .inner02 > div:hover .header-side__depth2 a {
    opacity: 1;
  }
  .header-logo {
    width: 45.55vw;
    height: 6.07vw;
  }
  .header .inner {
    height: 16.67vw;
  }
  .header-ham {
    width: 5.83vw;
  }
  .common-btn a, .common-btn button {
    width: 33.33vw;
    height: 10.56vw;
    display: flex;
    align-items: center;
    gap: 3.06vw;
  }
  .common-btn a span, .common-btn button span{
    font-size: 3.19vw;
  }
  .common-btn a svg, .common-btn button svg {
    opacity: 1;
    position: static;
    transform: none;
    width: 3.33vw;
    height: 2.22vw;
  }
  .common-btn a svg path, .common-btn button svg path {
    stroke: #fff;
  }
  .common-btn a:hover span, .common-btn button:hover span {
    flex: none;
  }
  .common-btn a:hover svg path, .common-btn button:hover svg path {
    stroke: var(--pink);
  }
  .footer {
    padding: 8.33vw 0 24.44vw;
  }
  .footer-logo {
    width: 56.17vw;
  }
  .footer-top{
    margin-bottom: 11.11vw;
  }
  .footer-family {
    position: absolute;
    left: 3.9063%;
    bottom: 8.33vw;
  }
  .footer-family button {
    padding: 0 4.17vw;
    height: 10.56vw;
    gap: 16.67vw;
    font-size: 3.06vw;
  }
  .footer-bottom div {
    padding-top: 8.33vw;
    margin-top: 8.33vw;
    flex-direction: column;
  }
  .footer .copy {
    text-align: left;
    margin-top: 2.78vw;
  }
  .footer .copy {
    font-size: 2.78vw;
  }
  .footer-bottom address p {
    margin-bottom: 2.78vw;
  }
  .footer a,
  .footer-bottom address p, .footer-bottom address li {
    font-size: 3.06vw;
  }
  .footer-family ul {
    display: none;
    position: absolute;
    bottom: 11.11vw;
    padding: 4.17vw;
    top: auto;
  }
  .footer-family ul li {
    margin-bottom: 2.78vw;
  } 
  .footer-family ul li a {
    color: #ddd;
    font-size: 3.33vw;
  }
  .mob-top {
    display: flex;
    width: 11.67vw;
    height: 11.67vw;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #222;
    font-family: var(--poppins);
    font-size: 3.06vw;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
    gap: 1.39vw;
    position: fixed;
    bottom: 30px;
    right: 3.90625%;
    z-index: 99;
  }
  .mob-top svg {
    max-width: 16px;
    max-height: 10px;
    width: 2.22vw;
    height: 1.39vw;
  }
  .header.K06 .header-lang li a, .header.white .header-lang li a {
    color: rgba(255, 255, 255, 0.4);
  }
  .header.K06 .header-lang li.active a, .header.white .header-lang li.active a {
    color: #fff;
  }
  .header.K06 .header-lang li:not(:first-child)::before, .header.white .header-lang li:not(:first-child)::before {
    background-color: rgba(255, 255, 255, 0.4);
  }
  .header-side .inner02:hover > div .header-side__depth1,
  .header-side .inner02 > div:hover .header-side__depth2 a,
  .header-side .inner02 > div:hover .header-side__depth2 a:hover,
  .header-side .inner02:hover > div .header-side__depth2 a {
    opacity: 1;
  }
  .header-side.open-depth .inner02 > div:not(.active) .header-side__depth1 {
    opacity: 0.4;
  }
  .common-btn.several{
    gap: 2.78vw;
  }
  .common-btn.several a svg path {
    stroke: #fff !important;
  }
  .common-btn.several a.is-white path {
    stroke: var(--pink) !important;
  }
  .common-btn.several a{
    width: 33.33vw !important;
  }
  
}
@media all and (max-width: 640px) {
  .show-640 {
    display: block !important;
  }
  .hide-640 {
    display: none !important;
  }
  .header-lang li a {
    font-size: 5vw;
  }
  .header-side .inner02 {
    gap: 11.11vw;
  }
  .header-side__depth1 {
    font-size: 6.94vw;
  }
  .header-side__depth2 {
    padding: 7.78vw 0;
    margin-top: 5.56vw;
  }
  .header-side__depth2 a {
    margin-bottom: 5.56vw;
    font-size: 4.44vw;
  }
  .header-side__depth2 a:last-child {
    margin-bottom: 0;
  }
  .header-side .inner02 > div:hover .header-side__depth2 a {
    opacity: 1;
  }
  .header-logo {
    width: 60.55vw;
    height: 6.07vw;
  }
  .header .inner {
    height: 16.67vw;
  }
  .header-ham {
    width: 5.83vw;
  }
}