:root {
  --color-main: #eed037;
  --color-sub: #00B1A1;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: 'Pretendard', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
}

.font32 {
  --fontsize: 3.2rem;
  font-size: var(--fontsize);
}

.font34 {
  --fontsize: 3.4rem;
  font-size: var(--fontsize);
  
}

.font36 {
  --fontsize: 3.6rem;
  font-size: var(--fontsize);
}

.font38 {
  --fontsize: 3.8rem;
  font-size: var(--fontsize);
}

.font42 {
  --fontsize: 4.2rem;
  font-size: var(--fontsize);
}

.font44 {
  --fontsize: 4.4rem;
  font-size: var(--fontsize);
}

.font48 {
  --fontsize: 4.8rem;
  font-size: var(--fontsize);
}

.font52 {
  --fontsize: 5.2rem;
  font-size: var(--fontsize);
}

.font64 {
  --fontsize: 6.4rem;
  font-size: var(--fontsize);
}

.font74 {
  --fontsize: 7.4rem;
  font-size: var(--fontsize);
}

.font84 {
  --fontsize: 8.4rem;
  font-size: var(--fontsize);
}

.font86 {
  --fontsize: 8.6rem;
  font-size: var(--fontsize);
}

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

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

figure {
  margin: 0;
}

#wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#wrap > main {
  flex: 1;
}

#wrap > footer {
  margin-top: 0;
}

#wrap > section {
  flex: 1;
}

.w1720 {
  width: 100%;
  height: 100%;
  max-width: 1720px;
  margin: 0 auto;
}

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

.w1400 {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.w1300 {
  width: 100%;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.w1200 {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.w1100 {
  width: 100%;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.w1000 {
  width: 100%;
  height: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.animation {
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
}

.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 {
  position: absolute;
  top: -222222px;
  left: -222222px;
}

.tabContents>div.on {
  position: relative;
  top: auto;
  left: auto;
}

.paddingBox {
  padding: 200px 0;
}

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

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

.marginTop120 {
  margin-top: 120px;
}

.light {
  font-weight: 300;
}

.bold {
  font-weight: 600;
}

/* ���̵� ��ũ�ѹ� CSS �߰� */

body::-webkit-scrollbar {
  width: 0px;
}

body::-webkit-scrollbar-thumb {
  background-color: #00b1a1;
  border-radius: 10px;
}

body::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 10px;
}

/* ���̵� ��ũ�ѹ� CSS �߰� */

.button {
  gap: 0 20px;
  background: #eeeeee;
  border-radius: 100px;
  padding: 20px 40px;
  position: relative;
  overflow: hidden;
  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;
}

.button * {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.button em,
.button .svg {
  position: relative;
  z-index: 1;
}

.button em {
  color: #aaaaaa;
  font-size: 1.8rem;
  font-weight: 500;
}

.button .svg {
  width: 8px;
  height: 8px;
}

.button .arrowCls {
  stroke: #aaaaaa;
}

.button span {
  display: block;
  width: 0;
  height: 0;
  background: var(--color-main);
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.button:hover em {
  color: var(--color-white);
}

.button:hover .arrowCls {
  stroke: var(--color-white);
}

.button:hover span {
  width: 1000px;
  height: 1000px;
  -webkit-transform: translate(-50%, -50%) scale(2.8);
  transform: translate(-50%, -50%) scale(2.8);
}

header {
  width: 100%;
  height: 120px;
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

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: 120px;
  height: 33px;
}

header .logo * {
  width: 100%;
  height: 100%;
}

header .logo a {
  display: block;
}

header nav,
header .depth1,
header .depth1>li {
  height: 100%;
}

header nav {
  margin: 0 0 0 auto;
}

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

header .depth1>li {
  position: relative;
  padding: 0 55px;
}

header .depth1>li::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

header .depth1>li>a {
  color: #111111;
  font-size: 2rem;
  /*font-size: 2.2rem;*/
  letter-spacing: 1px;
  font-weight: 500;
  position: relative;
  top: 50%;
  z-index: 2;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  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;
  transform: translateY(-50%);
}

header .depth1>li:hover::after {
  width: calc(100% - 50px);
}

header .depth2 {
  width: 100%;
  text-align: center;
  padding: 100px 0 20px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
}

header .depth2>li>a {
  display: block;
  width: 100%;
  color: #aaaaaa;
  font-size: 1.8rem;
  font-family: var(--font-pretendard);
  padding: 10px 0;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

header .depth2.on::before {
  height: 100%;
}

header .depth2.on>li>a {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: transform 0.4s 0.3s, opacity 0.4s 0.4s, color 0.4s 0s;
  transition: transform 0.4s 0.3s, opacity 0.4s 0.4s, color 0.4s 0s;
}

header .depth2>li:hover>a,
header .depth2.on>li:hover>a {
  color: var(--color-white) !important;
}

header .language.drop {
  padding: 10px 15px;
  margin: 0 40px 0 45px;
  position: relative;
}

header .language.drop * {
  font-size: 1.4rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

header .language.drop button {
  gap: 0 10px;
  color: #000;
  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 .language.drop img {
  width: 9px;
}

header .language.drop ul {
  width: 100%;
  border: 1px solid var(--color-black);
  border-radius: 20px;
  padding: 10px 15px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

header .language.drop ul li {
  overflow: hidden;
}

header .language.drop ul li a {
  display: inline-block;
  color: #111111;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

header .language.drop.on img {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

header .language.drop.on ul {
  padding: 35px 15px 10px;
}

header .language.drop.on ul li a {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

header .language.hr {
  gap: 0 15px;
  display: none;
}

header .language.hr a {
  color: var(--color-white);
  font-size: 1.6rem;
}

header .language.hr hr {
  width: 1px;
  height: 10px;
  background: var(--color-white);
  border: none;
  margin: 0;
}

header .menuButton {
  width: 36px;
  height: 36px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px 0;
  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 .menuButton span {
  display: block;
  height: 2px;
  background: var(--color-black);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

header .menuButton span:nth-child(1) {
  width: 18px;
  margin: 0 0 0 auto;
}

header .menuButton span:nth-child(2) {
  width: 100%;
}

header .menuButton span:nth-child(3) {
  width: 27px;
  margin: 0 auto 0 0;
}

header.white .logo,
header.white .language.drop img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

header.white .depth1>li>a,
header.white .language.drop * {
  color: var(--color-white);
}

header.white .language.drop ul {
  border-color: var(--color-white);
}

header.white .menuButton span {
  background: var(--color-white);
}

header.scrollOn {
  background: rgba(255, 255, 255, 1);
}

header.scrollOn .logo,
header.scrollOn .language.drop img {
  filter: inherit;
}

header.scrollOn .depth1>li>a,
header.scrollOn .language.drop * {
  color: var(--color-black);
}

header.scrollOn .language.drop ul {
  border-color: var(--color-black);
}

header.scrollOn .menuButton span {
  background: var(--color-black);
}

header.menuOn {
  background: transparent;
  z-index: 4;
}

header.menuOn .headerBox>.logo,
header.menuOn .headerBox nav {
  display: none;
}

header.menuOn .language.drop {
  display: none;
}

header.menuOn .language.hr {
  margin: 0 40px 0 auto;
  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.menuOn .menuButton {
  width: 22px;
  gap: 0;
}

header.menuOn .menuButton span {
  width: 26px;
  height: 3px;
  background: var(--color-white);
  border-radius: 100px;
  margin: 0;
}

header.menuOn .menuButton span:first-child {
  -webkit-transform: translate(0, 3px) rotate(-45deg);
  transform: translate(0, 3px) rotate(-45deg);
}

header.menuOn .menuButton span:nth-child(2) {
  width: 0;
}

header.menuOn .menuButton span:last-child {
  -webkit-transform: translate(0, -3px) rotate(45deg);
  transform: translate(0, -3px) rotate(45deg);
}

.allMenu {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(6, 6, 6, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  display: none;
}

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

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

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

.allMenu .flexBox::before {
  content: "";
  display: block;
  background-size: calc(25% - 0.25px) 100%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2) 0%, transparent 1px, transparent 100%);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.allMenu span {
  width: calc(25% - 1px);
  height: 100%;
  background: #ac9f45;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.allMenu span.on {
  opacity: 1;
}

.allMenu .depth1 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr);
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin: auto 0;
}

.allMenu .depth1 a {
  display: inline-block;
  color: var(--color-white);
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.allMenu .depth1>li>a {
  font-size: 3.2rem;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.allMenu .depth1>li>a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.allMenu .depth1>li i {
  display: none;
}

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

.allMenu .depth2 {
  padding: 55px 0 0;
}

.allMenu .depth2>li>a {
  font-size: 2.0rem;
  font-family: var(--font-pretendard);
  padding: 10px 0;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.allMenu.on .depth1>li>a {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

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

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

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

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

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

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

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

.allMenu.on .depth2>li:hover>a {
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

footer {
  background: url("../img/common/footerBg.jpg") no-repeat center/cover;
  padding: 80px 0;
}

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

footer .depth1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px 0;
}

footer .depth1 li a {
  gap: 0 20px;
  font-size: 2.8rem;
  font-weight: 500;
  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;
}

footer .depth1 img {
  width: 10px;
  height: 10px;
}

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

footer .logo {
  width: 170px;
  height: 36px;
  margin: 80px 0 40px;
  opacity: 0.2;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

footer .link a,
footer .copy {
  color: #cccccc;
  font-size: 1.5rem;
  font-weight: 300;
}

footer .link {
  gap: 0 20px;
  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;
}

footer .link hr {
  width: 1px;
  height: 10px;
  background: #cccccc;
  border: none;
  margin: 0;
}

footer .info {
  margin: 40px 0 0;
}

footer .info * {
  font-size: 1.5rem;
  font-family: var(--font-pretendard);
}

footer .info h6 {
  font-weight: 700;
}

footer .info .flexBox {
  gap: 0 40px;
  margin: 10px 0;
}

footer .info dl {
  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;
}

footer .info dl dt {
  font-weight: 600;
}

footer .info dl dd {
  font-weight: 300;
}

footer .right {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: right;
}

footer .topButton {
  width: 100px;
  height: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px 0;
  background: var(--color-main);
  font-size: 1.7rem;
  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;
}

footer .topButton img {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

footer h3 {
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1.3;
}

footer.footer_en h3 {
  font-size: 4.3rem;
  font-weight: 300;
  line-height: 1.3;
}