body.not-scroll {
  overflow-y: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

/* Text */
.txt-hide {
  line-height: 0;
  font-size: 0;
}

.block {
  display: block;
}

.color-black {
  color: #000 !important;
}

/* Button */
.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn {
  display: block;
  padding: 12px 42px;
  line-height: 30px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  border-radius: 50px;
}

.btn.cl-black {
  background-color: #000;
  color: #fff;
}

.btn-download {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  background-color: transparent;
}

.btn-download .link-txt {
  display: block;
  padding-right: 34px;
  background: url('/new/images/ico-download.png') no-repeat right center;
  background-size: 24px 24px;
}

.btn-close {
  position: relative;
  line-height: 0;
  font-size: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
}

.btn-close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  content: "";
}
.btn-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  content: "";
}
.btn-more {
  padding: 11px 152px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: #141414;
  font-size: 24px;
  font-weight: 700;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background-color: #fff;
}
.btn.line {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}


@media (max-width: 801px) {
  .btn {
    padding: 10px 26px;
    font-size: 16px;
  }

  .block {
    display: inline;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: all ease .5s;
  backdrop-filter: blur(3px);
}

header.on {
  background-color: rgba(0, 0, 0, 0.5);
}

header.on:before {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
}

header .btn-mo-menu {
  display: none;
}

.gnb-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  width: 1460px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.logo {
  margin-top: 33px;
}

.logo > a {
  display: block;
}

.gnb-inner .btn-wrap {
  margin-top: 33px;
}

.gnb {
  position: absolute;
  left: 100px;
}

.gnb .nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 40px;
  line-height: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.gnb .gnb-list {
  display: flex;
  height: 120px;
}

.gnb .gnb-list .gnb-item {
  position: relative;
  height: 100%;
}

.gnb .depth {
  position: absolute;
  top: 120px;
  width: 700px;
  padding: 40px 0 40px 40px;
  opacity: 0;
  visibility: hidden;
  color: #fff;
}

header.on .gnb .depth {
  opacity: 1;
  visibility: visible;
  transition: all ease .5s;
}

.gnb .depth > strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.gnb .depth ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gnb .depth-wrap {
  display: flex;
  gap: 30px;
}

.gnb .depth-wrap ul a {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-size: 18px;
}

.gnb .depth-wrap ul:nth-child(2) {
  grid-template-columns: 1fr;
}

.gnb .depth-wrap ul:nth-child(2) a {
  font-weight: 700;
}

.gnb .depth-wrap .nav-menu {
  padding: 0;
}


@media (max-width: 1024px) {
  header {
    height: 76px;
    overflow: hidden;
    transition: all ease .5s;
  }

  .header.menu-open {
    height: 100vh;
    background: #000;
  }

  .gnb-inner {
    position: relative;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 20px;
  }

  header .logo {
    width: 40px;
    margin-top: 0;
  }

  .logo img {
    width: 100%;
  }

  header .gnb-inner .btn-wrap {
    margin-top: 0;
  }

  header .btn-download {
    display: none;
  }

  header .btn-contact {
    line-height: 0;
    font-size: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    background: #fff url('/new/images/ico-mo-contact.png') no-repeat center center;
    background-size: 18px 18px;
  }

  header .btn-mo-menu {
    position: relative;
    display: block;
    width: 36px;
    height: 36px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: transparent;
    transition: all ease 0.3s;
  }

  header .btn-mo-menu::before {
    position: absolute;
    top: 35%;
    left: 50%;
    width: 18px;
    height: 2px;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background-color: #fff;
    transition: all ease 0.3s;
    content: "";
  }

  header .btn-mo-menu::after {
    position: absolute;
    bottom: 35%;
    left: 50%;
    width: 18px;
    height: 2px;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background-color: #fff;
    transition: all ease 0.3s;
    content: "";
  }

  header.menu-open .btn-mo-menu {
    border-color: #fff;
  }

  header.menu-open .btn-mo-menu::before {
    top: 48%;
    transform: translate(-49%, -50%) rotate(45deg);
  }

  header.menu-open .btn-mo-menu::after {
    bottom: 48%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  header .gnb {
    top: 76px;
    left: 0;
    right: 0;
    height: calc(100% - 76px);
    padding-bottom: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    overflow-y: auto;
  }

  .gnb .gnb-wrap {
    height: 100%;
    overflow-y: auto;
  }

  .gnb .nav-menu {
    justify-content: flex-start;
    height: auto;
    padding: 20px;
  }

  .gnb .gnb-list {
    display: block;
  }

  .gnb .gnb-list .gnb-item {
    width: 100%;
    height: auto;
  }

  .gnb .depth {
    position: static;
    width: 100%;
    padding: 0;
    visibility: visible;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.06);
  }

  .gnb .depth > strong {
    display: none;
  }

  .gnb .depth ul {
    grid-template-columns: 1fr;
  }

  .gnb .depth-wrap {
    flex-flow: column;
    gap: 0;
  }

  .gnb .depth-wrap ul a {
    padding: 20px;
    font-size: 16px;
  }

  .gnb .depth-wrap .nav-menu {
    padding: 20px;
  }
}

@media (max-width: 801px) {
  .port .more {
    height: auto;
    margin-bottom: 0;
  }

  .gnb {
    justify-content: flex-end;
  }
}

/* Footer */
footer {
  padding: 62px 0;
  border-top: 1px solid #686868;
}

footer p {
  font-size: 20px;
  color: #fff;
  margin-top: 8px;
}

footer p span {
  font-weight: 500;
  display: inline-block;
}

.map-wrap {
  display: none;
}

.map p {
  font-weight: 400;
  font-size: 51px;
}

.map-content {
  width: 100%;
  height: 643px;
  margin: 64px 0;
}

.map-content iframe {
  width: 100%;
  height: 100%;
}

footer .footer-info-box {
  display: flex;
  justify-content: space-between;
}

footer .address-info {
  display: flex;
  gap: 24px;
}

footer .address-info p {
  margin: 0;
}

footer .social-list {
  justify-content: center;
}

footer .directions {
  position: relative;
  color: #fcdd6a;
  font-size: 20px;
  font-weight: bold;
  background-color: transparent;
}

footer .directions::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fcdd6a;
  content: "";
}

footer .bnb {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

footer .bnb li {
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

footer .bnb li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 1px;
  height: 20px;
  background-color: #474747;
  content: "";
}

footer .bnb li:first-child {
  margin-left: 0;
  padding-left: 0;
}

footer .bnb li:first-child::before {
  display: none;
}

footer .bnb li a {
  color: #fff;
}

footer .social-list {
  display: flex;
  align-content: center;
  gap: 20px;
}

.bnb .arrow::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  margin-top: 2px;
  width: 8px;
  height: 8px;
  transform: rotate(225deg);
  border-top: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
  transform-origin: 50% 50%;
  transition: all ease 0.3s;
}

.directions.active .arrow::after {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all ease 0.3s;
}

@media (max-width: 801px) {
  footer {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    color: #fff;
    padding: 0;
  }

  footer p {
    font-size: 12px;
    color: #fff;
    margin-top: 8px;
  }

  footer p span {
    display: inline-block;
    font-weight: 500;
  }

  .map {
    padding-top: 24px;
  }

  .map-wrap {
    display: none;
  }

  .map p {
    font-weight: 400;
    font-size: 21px;
    padding: 0 0 20px 20px;
  }

  .map-content {
    width: 100%;
    height: 400px;
    margin: 0;
  }

  .map-content iframe {
    width: 100%;
    height: 100%;
  }

  footer .wrap {
    padding: 24px 20px 41.5px;
  }

  footer .footer-info-box {
    flex-flow: column-reverse;
    align-items: stretch;
    gap: 30px;
  }

  footer .address-info {
    justify-content: space-between;
  }

  footer .social-list {
    align-items: center;
  }

  footer .bnb {
    flex-wrap: wrap;
  }

  footer .bnb li {
    margin-left: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  footer .bnb li:last-child {
    flex-shrink: 0;
    width: 100%;
    margin: 8px 0 0;
    padding: 0;
  }

  footer .bnb li:last-child::before {
    display: none;
  }

  footer .bnb li::before {
    top: 3px;
    height: 12px;
  }

  footer .directions {
    position: relative;
    padding-right: 12px;
    color: #fff;
    font-size: 12px;
  }

  footer .directions::before {
    display: none;
  }

  footer .directions::after {
    position: absolute;
    display: block;
    margin: 0;
    content: "";
    width: 8px;
    height: 8px;
    background: url('/new/images/icon_arrow2.png') no-repeat center center / 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  footer .directions.open::after {
    background-image: url('/new/images/icon_arrow.png');
  }
}

/* Body */
body.sub-page header {
  background-color: #000;
}

.pc {
  display: block !important;
}

.mo {
  display: none !important;
}

.wrap {
  position: relative;
  display: block;
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  clear: both;
  content: "";
}

@media (max-width: 1440px) {
  .wrap {
    padding: 0 40px;
  }
}

@media (max-width: 801px) {
  .pc {
    display: none !important;
  }

  .mo {
    display: block !important;
  }

  .wrap {
    flex-grow: 1;
    margin: 0 auto;
    position: relative;
    max-width: 340px;
    width: auto;
    padding: 0 20px;
  }
}

@media (max-width: 320px) {
  .wrap {
    padding: 0 20px;
  }
}

/* Animation */
.cont-ani > div {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s linear;
}

.cont-ani > div.active {
  opacity: 1;
  visibility: visible;
}

/* Popup */
.dimmed {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: 640px;
  height: 640px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background-color: #fff;
}

.popup-wrap .popup-cont {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 20px;
}

.popup-wrap .popup-cont iframe {
  width: 100%;
  height: 555px;
}

.popup-wrap .popup-cont .btn-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
}

@media (max-width: 801px) {
  .popup {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}