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

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

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

.font55 {
  --fontsize: 5.5rem;
  font-size: var(--fontsize);
}

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

.font40 {
  --fontsize: 4.0rem;
  font-size: var(--fontsize);
}

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

.font30 {
  --fontsize: 3.0rem;
  font-size: var(--fontsize);
}

input,
input:focus,
textarea,
textarea:focus,
button,
button:focus,
select {
  border: none;
  outline: none;
  resize: none;
}
input.border,
input:focus.border,
textarea.border,
textarea:focus.border,
button.border,
button:focus.border,
select.border {
  border: 1px solid #e0e0e0;
}

* {
  color: #111111;
  line-height: 1.3;
}
*.cursorOff {
  cursor: none !important;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
html.scrollX,
body.scrollX {
  overflow: hidden;
}

sup,
sub {
  font-size: 0.8em !important;
}

#wrap {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  overflow: hidden;
}

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

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

.flexBox {
  display: flex;
}
.flexBox.column {
  flex-direction: column;
}

.pBox {
  display: flex;
  flex-direction: column;
}

.tabContents > div {
  max-width: 100%;
  position: absolute;
  top: -222222px;
  left: -222222px;
}
.tabContents > div.on {
  position: relative;
  top: auto;
  left: auto;
}

.animation {
  transition: all 0.68s;
}
.animation.down {
  transform: translateY(-80px);
}
.animation.up {
  transform: translateY(80px);
}
.animation.left {
  transform: translateX(80px);
}
.animation.right {
  transform: translateX(-80px);
}
.animation.opacity {
  opacity: 0;
}
.animation.on.down, .animation.on.up {
  transform: translateY(0);
}
.animation.on.left, .animation.on.right {
  transform: translateX(0);
}
.animation.on.opacity {
  opacity: 1;
}

.floating,
.floating > * {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating {
  row-gap: 5px;
  position: fixed;
  top: 50%;
  right: 10px;
  z-index: 3;
  transform: translateY(-50%);
}
.floating * {
  color: #ffffff;
}
.floating > * {
  justify-content: center;
  border-radius: 50%;
}
.floating .inquiry {
  width: 78px;
  height: 78px;
  row-gap: 5px;
  background: #e72410;
}
.floating .inquiry span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align:center;
}
.floating .topButton {
  width: 55px;
  height: 55px;
  row-gap: 8px;
  background: #000000;
  display: none;
}
.floating .topButton .icon {
  height: 3px;
}
.floating .topButton span {
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.topButtons {
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.topButtons .langBox {
  width: 40px;
  height: 40px;
  background: #e72410;
  border-radius: 50%;
  margin: 0 30px 0 0;
  position: relative;
}
.topButtons .langBox a {
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  font-family: "Pretendard", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.topButtons .langBox a.on {
  opacity: 1;
  z-index: 2;
}
.topButtons .menuButton {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  row-gap: 6px;
}
.topButtons .menuButton.white span {
  background: #ffffff;
}
.topButtons .menuButton.black span {
  background: #111111;
}
.topButtons .menuButton span {
  display: block;
  width: 100%;
  height: 2px;
  transition: all 0.4s;
}
.topButtons .menuButton span:first-child {
  width: 20px;
}

.scrollBox .white {
  width: 7px;
  height: 22px;
  background: #ffffff;
  border-radius: 3.5px;
  position: relative;
}
.scrollBox .white span {
  width: 5px;
  height: 5px;
  background: #e72410;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
  animation: scroll 1.6s infinite;
}
@keyframes scroll {
  0% {
    top: 1px;
  }
  40% {
    top: 16px;
  }
  100% {
    top: 1px;
  }
}

.line {
  width: 1px;
  height: 100px;
  position: relative;
  overflow: hidden;
}
.line span {
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  transition: all 0.6s;
}
.line.color {
  background: #dddddd;
}
.line.color span {
  background: #e72410;
}
.line.black span {
  background: #111111;
}
.line.on span {
  height: 100%;
}

header {
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  transition: all 0.4s;
}
header .headerBox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .logo {
  width: 400px;
  width: 187px;
  height: 45px;
}
header nav {
  display: none;
}
header.allMenuOn {
  height: auto;
  position: fixed;
  top: 100px !important;
  z-index: 5;
}
header.allMenuOn .topButtons .langBox {
  width: auto;
  height: auto;
  display: flex;
  column-gap: 25px;
  background: transparent;
  border-radius: 0;
  margin: 0 100px 0 auto;
}
header.allMenuOn .topButtons .langBox a {
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  opacity: 1;
  top: auto;
  left: auto;
  transform: translate(0, 0);
  transition: all 0.4s;
  font-family: "Orbitron", sans-serif;
}
header.allMenuOn .topButtons .langBox a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #e72410;
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  transition: all 0.4s;
}
header.allMenuOn .topButtons .langBox a:hover, header.allMenuOn .topButtons .langBox a:not(.on) {
  color: #e72410;
}
header.allMenuOn .topButtons .langBox a:hover::after, header.allMenuOn .topButtons .langBox a:not(.on)::after {
  width: 100%;
}
header.allMenuOn .topButtons .menuButton {
  row-gap: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
header.allMenuOn .topButtons .menuButton span {
  width: 100%;
}
header.allMenuOn .topButtons .menuButton span:first-child {
  transform: translate(0, 2px) rotate(-45deg);
}
header.allMenuOn .topButtons .menuButton span:nth-child(2) {
  width: 0;
}
header.allMenuOn .topButtons .menuButton span:last-child {
  transform: translate(0, -2px) rotate(45deg);
}

.allMenu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: none;
}
.allMenu * {
  color: #ffffff;
}
.allMenu .inner,
.allMenu .flexBox {
  width: 100%;
  height: 100%;
}
.allMenu .inner {
  background-image: url("/img/common/allMenuBg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.allMenu .flexBox {
  padding: 16% 0 100px;
}
.allMenu br {
  display: none;
}
.allMenu #snb {
  display: flex;
  column-gap: 75px;
  justify-content: center;
  text-align: center;
}
.allMenu #snb li > a {
  transition: all 0.4s;
}
.allMenu #snb li:hover > a {
  color: #e72410;
}
.allMenu #snb > li > a {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.allMenu .depth2 {
  padding: 45px 0 0;
}
.allMenu .depth2 > li > a {
  column-gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.allMenu .depth2 .plus {
  width: 8px;
  height: 8px;
  position: relative;
}
.allMenu .depth2 .plus span {
  display: block;
  background: #ffffff;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.allMenu .depth2 .plus span:first-child {
  width: 100%;
  height: 2px;
}
.allMenu .depth2 .plus span:last-child {
  width: 2px;
  height: 100%;
}
.allMenu .depth2 > li:hover > a .plus span {
  background: #e72410;
}
.allMenu .depth2 > li:hover > a .plus span:last-child {
  height: 0;
}
.allMenu .depth3 {
  display: none;
}
.allMenu .depth3 > li > a {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.09em;
  padding: 10px 0;
}
.allMenu .bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: auto 0 0;
}
.allMenu .bottom p,
.allMenu .bottom h6 {
  font-size: 12px;
}
.allMenu .bottom p {
  color: #999999;
  font-weight: 300;
  letter-spacing: 0.075em;
}
.allMenu .bottom h6,
.allMenu .bottom ul {
  text-align: right;
}
.allMenu .bottom h6 {
  color: #e72410;
  letter-spacing: 0.1em;
  margin: 0 0 25px;
}
.allMenu .bottom ul,
.allMenu .bottom ul li {
  justify-content: flex-end;
}
.allMenu .bottom ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 20px;
}
.allMenu .bottom ul li {
  column-gap: 5px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Pretendard", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.allMenu .bottom ul li.address {
  width: 100%;
}
.allMenu .bottom ul i {
  color: #ffffff;
  font-size: 14px;
}

footer .top, footer .bottom {
  display: flex;
  justify-content: space-between;
  position: relative;
}
footer .top::before, footer .bottom::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .top {
  padding: 95px 0 65px;
}
footer .top::before {
  background: #111111;
}
footer .info {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 50px;
  margin: 95px 0 80px;
}
footer .info * {
  font-family: "Pretendard", sans-serif;
}
footer .info li {
  color: rgba(255,255,255,0.8);
  font-size: 1.5rem;
  font-weight: 300;
}
footer .info li.address {
  width: 100%;
}
footer .info li em {
  color: #ffffff;
}
footer .contact {
  width: 250px;
  height: 55px;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .contact em {
  color: #ffffff;
  font-family: "Noto Sans KR", sans-serif;
}
footer #fnb {
  display: flex;
  flex-shrink: 0;
  column-gap: 75px;
  padding: 25px 0 0;
}
footer #fnb * {
  color: #ffffff;
}
footer #fnb br {
  display: none;
}
footer #fnb a {
  letter-spacing: 0.07em;
}
footer #fnb > li > a {
  font-size: 1.8rem;
  font-weight: 700;
}
footer #fnb .depth2 {
  padding: 30px 0 0;
}
footer #fnb .depth2 > li > a {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 10px 0;
  opacity: 0.3;
}
footer .bottom {
  height: 90px;
  align-items: center;
}
footer .bottom::before {
  background: #000000;
}
footer .bottom ul {
  display: flex;
  column-gap: 30px;
}
footer .bottom ul * {
  color: #ffffff;
}
footer .bottom ul a {
  column-gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .bottom ul i {
  opacity: 0.3;
}
footer .bottom p {
  color: #999999;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
footer .bottom p em {
  font-family: "Pretendard", sans-serif;
}