:root {
  --main-color: #1494CA;
  --bg-color: #F9F9F9;
  --black-color: #1A1A1A;
  --bg-black-color: #0B0B0B;
  --bg-sub-color: #111111;
  --black-sub-color: #202020;
  --sub-txt-color: #BBBBBB;
  --border-color: rgba(255, 255, 255, 0.2);
  --header-height: 100px;
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
*::-webkit-scrollbar-thumb {
  height: 10%;
  background: var(--border-color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, .1);
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Pretendard", "Open Sans";
  position: relative;
  background-color: var(--bg-black-color);
}
main {
  min-height: calc(100dvh - var(--header-height));
}

/*공통*/
.wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.top-btn {
  position: fixed;
  bottom: 4px;
  right: 4px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  cursor: pointer;
  z-index: 98;
  border-radius: 8px;
}
.top-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.floating-side {
  position: fixed;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.floating-side a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 64px;
    height: 64px;
    background-color: var(--bg-black-color);
    transition: all .2s ease-in-out;
}
.floating-side a:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.floating-side a:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.floating-side a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.floating-side a span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.btn-default {
  width: 200px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 100px;
  background-image: linear-gradient(var(--black-sub-color), var(--black-sub-color)), linear-gradient(90deg,rgba(20, 148, 202, 1) 0%, rgba(2, 71, 99, 1) 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: .2s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-default::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg,rgba(20, 148, 202, 1) 0%, rgba(2, 71, 99, 1) 100%);
  transition: .2s ease-in-out;
}
.btn-default:hover::before {
  width: 100%;
  transition: .2s ease-in-out;
}

.support-btn {
    display: inline-block;
  width: max-content;
  border: 1px solid #fff;
  padding: 12px 36px;
  transition: .2s ease-in-out;
  position: relative;
  z-index: 1;
  background-color: transparent;
}
.support-btn.sm {
  padding: 16px 70px;
  font-size: 14px;
  color: #fff;
}
.support-btn span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 2;
}
.support-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  z-index: 0;
  height: 100%;
  transition: .2s ease-in-out;
  background-color: rgba(255, 255, 255, 0.2);
}
.support-btn:hover::before {
  width: 100%;
  transition: .2s ease-in-out;
}
.support-btn img {
  width: 24px;
}

/*스크롤 프로그레스*/
.scroll-progress-bar {
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

/*header*/
.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
  position: relative;
  display: block;
  width: 42px;
  height: 26px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#ham_btn + label > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 300ms;
}
#ham_btn + label > span:nth-child(2) {
    width: 50%;
}
#ham_btn:checked + label > span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(45deg);
}
#ham_btn + label > span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
#ham_btn:checked + label > span:nth-child(2) {
  opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
  bottom: 0;
  background-color: var(--main-color) !important;
}
#ham_btn:checked + label > span:nth-child(3) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(-45deg);
}
.rt-area {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  transition: .2s ease-in-out;
}
.header-wrap.half-bg {
  background-color: rgba(0, 0, 0, 0.5);
}
.header-wrap.on {
  background-color: var(--black-color);
  transition: .2s ease-in-out;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3);
}
.header-wrap .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: block;
}
.logo img {
  height: 40px;
}

.gnb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 80px;
}
.gnb > li.mobile {
    display: none;
}
.gnb > li > a {
    width: 120px;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: .2s ease-in-out;
    overflow: hidden;
    position: relative;
    text-align: center;
  
}
.gnb > li > a:hover {
  color: var(--sub-txt-color);
  transition: .2s ease-in-out;
}

.hover-text span {
    width: 100%;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.4s ease;
  text-align: center;
}

.hover-text > .en {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateX(-100%);
}

.hover-text:hover > .kr {
  transform: translateX(100%);
  opacity: 0;
}

.hover-text:hover > .en {
  opacity: 1;
  transform: translateX(0);
}

/*footer*/
footer {
  background-color: var(--black-color);
}
.footer-wrap .tb {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--border-color);
}
.footer-wrap .tb .txt {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.footer-wrap .bb {
  padding: 60px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-wrap .bb .info {
  display: flex;
  gap: 100px;
}
.footer-wrap .bb .info .txt {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-wrap .bb .info .txt ul {
  display: flex;
  gap: 48px;
}
.footer-wrap .bb .info .txt ul li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-wrap .bb .info .txt ul li span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}
.copy {
  font-size: 13px;
  font-weight: 400;
  color: var(--sub-txt-color);
}
.footer-terms {
  display: flex;
  gap: 24px;
}
.footer-terms a {
  font-size: 16px;
  font-weight: 400;
  color: var(--sub-txt-color);
  transition: .2s ease-in-out;
}
.footer-terms a:hover {
  opacity: .8;
  transition: .2s ease-in-out;
}

/*Scorll Down*/
.scroll-downs {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-downs p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 300;
}
.mousey {
  width: 2px;
  padding: 2px 6px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  opacity: 0.75;
  box-sizing: content-box;
  margin: 0 auto 8px;
}
.scroller {
  width: 2px;
  height: 4px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(6px); opacity: 0;}
}

/*main*/
.intro-area {
  width: 100%;
  height: 100dvh;
  position: relative;
}
.intro-area .video-bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.intro-area .video-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(360deg,rgba(11, 11, 11, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.intro-area .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-area .txt {
  width: 100%;
  max-width: 1600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.intro-area .txt .txt-01 {
  font-size: 100px;
  font-weight: 900;
  color: #fff;
}
.intro-area .txt .txt-02 {
  font-size: 100px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.intro-area .txt .typing-txt {
  display: flex;
  align-items: center;
  gap: 24px;
}
.intro-area .txt .typing-txt span {
  font-size: 100px;
  font-weight: 900;
  color: var(--main-color);
  padding-bottom: 14px;
}

.intro-area .typing-txt-sub {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 36px;
}
.intro-area .txt-03 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.intro-area .cursor {
  border-left: 2px solid #fff;
  animation: blink 0.7s infinite;
  display: inline-block;
  margin-left: 2px;
  height: 20px;
  vertical-align: middle;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.main-area {
  display: flex;
  flex-direction: column;
  gap: 200px;
}
.portfolio-slider {
  overflow: hidden;
  position: relative;
}
.portfolio-slider .swiper-slide {
  border: 1px solid var(--border-color);
  position: relative;
}
.portfolio-box {
    display: block;
    position: relative;
}
.portfolio-box .img-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.portfolio-box .img-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.portfolio-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.portfolio-box .cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 16px;
  opacity: 0;
  transition: .2s ease-in-out;
}
.portfolio-slider .swiper-slide.swiper-slide-active .cover {
  opacity: 1;
  transition: .2s ease-in-out;
}
.portfolio-box:hover .cover {
  opacity: 1;
  transition: .2s ease-in-out;
}
.portfolio-slider .swiper-slide.swiper-slide-active .cover::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.8);
  transition: .2s ease-in-out;
}
.portfolio-box:hover .cover::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.8);
  transition: .2s ease-in-out;
}
.portfolio-box .cover .name {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}
.portfolio-box .cover .tag {
  display: flex;
  gap: 12px;
}
.portfolio-box .cover .tag span {
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 100px;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
}
.portfolio-box .cover .year {
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color);
}

.portfolio-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 5px;
  opacity: 0;
  transition: .2s ease-in-out;
}
.portfolio-slider:hover .portfolio-navigation {
  opacity: 1;
  transition: .2s ease-in-out;
}
.portfolio-navigation:hover {
  color: var(--sub-txt-color);
}
.portfolio-navigation img {
  width: 60px;
}
.portfolio-navigation.prev {
  left: 16px;
}
.portfolio-navigation.next {
  right: 16px;
}

.review-area {
  padding: 150px 0;
}

.review-slider {
  position: relative;
  overflow: hidden;
}
.review-slider .swiper-slide {
  height: 300px;
  background-color: var(--black-color);
  overflow: hidden;
  border-radius: 24px;
}
.review-slider .swiper-slide .img-box {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  transition: .2s ease-in-out;
}
.review-slider .swiper-slide.swiper-slide-active .img-box {
  opacity: 1;
  transition: .2s ease-in-out;
  background-color: var(--black-color);
}
.review-slider .swiper-slide .img-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.review-slider .swiper-slide .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.review-slider .swiper-slide .txt {
  width: 100%;
  height: 100%;
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.review-slider .swiper-slide .txt > img {
  width: 50px;
}
.review-slider .swiper-slide .txt .content {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  word-break: keep-all;
}
.review-slider .swiper-slide .txt .name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 16px;
}
.review-slider .swiper-slide .txt span {
  display: inline-flex;
  font-size: 16px;
  font-weight: 400;
  color: var(--sub-txt-color);
  gap: 12px;
}
.review-slider .swiper-slide .txt span:first-child::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: var(--sub-txt-color);
}


.main-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}
.main-tit .tit-sm {
  font-size: 16px;
  font-weight: 500;
  color: var(--main-color);
  letter-spacing: 4px;
}
.main-tit .tit {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.main-tit .tit-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--sub-txt-color);
  line-height: 1.3;
}

.mi-area {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
}
.mi-area .bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.mi-area .bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.mi-area .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
  transition: all .5s ease-in-out;
}
.mi-area:hover .bg img {
  opacity: 1;
}
.mi-area .txt {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.mi-area .txt.rt {
  transform: translate(0, -50%);
}
.mi-area .txt p:first-child {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.mi-area .txt p:nth-child(2) {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 24px;
}


.main-portfolio {
  position: relative;
  padding: 0 36px;
  margin-top: 100px;
}
.main-portfolio .fixed-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    mix-blend-mode: difference;
    pointer-events: none;
}
.main-portfolio .fixed-txt a {
  pointer-events: auto;
}
.main-portfolio .fixed-txt p:first-child {
    font-size: 18px;
    font-weight: 600;
    color: var(--sub-txt-color);
}
.main-portfolio .fixed-txt p:nth-child(2) {
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.725vw;
    margin: 16px 0 48px;
}
.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}
.portfolio-list .double {
    display: flex;
    gap: 48px;
}
.portfolio-list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: center center;
}
.portfolio-list .item.is-visible {
    transform: scale(1);
    opacity: 1;
}
.portfolio-list .item.first {
    margin: 0 0 0 auto;
}
.portfolio-list .item.first .img-box {
    max-width: 60vw;
    aspect-ratio: 16 / 9;
}
.portfolio-list .item.second .img-box {
    max-width: 70vw;
    aspect-ratio: 16 / 9;
}
.portfolio-list .item.third .img-box {
    max-width: 30vw;
    aspect-ratio: 1 / 1;
}
.portfolio-list .item.fourth .img-box {
    max-width: 40vw;
    aspect-ratio: 16 / 9;
}
.portfolio-list .item.fifth .img-box {
    max-width: 60vw;
    aspect-ratio: 16 / 9;
}
.portfolio-list .item .img-box {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.portfolio-list .item .img-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.portfolio-list .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-list .item .txt p:first-child {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 8px;
}
.portfolio-list .item .txt p:nth-child(2) {
    font-size: 18px;
    font-weight: 500;
    color: var(--sub-txt-color);
    line-height: 1.3;
    text-align: center;
}


/*pages*/
.page-area {
    padding-top: 200px;
    display: flex;
    flex-direction: column;
    gap: 200px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.portfolio-banner {
    position: relative;
}
.portfolio-banner .bg {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.portfolio-banner .bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(360deg,rgba(11, 11, 11, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.portfolio-banner .content {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.portfolio-banner .content .portfolio-logo {
    width: 200px;
    height: auto;
    margin-bottom: 48px;
}
.portfolio-banner .content .portfolio-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.portfolio-banner .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: center;
    gap: 60px;
}
.portfolio-banner .info .item p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 12px;
}
.portfolio-banner .info .item p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}

.portfolio-expl {
    padding: 200px;
}
.portfolio-expl > p {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}
.portfolio-expl .content {
    white-space: pre-line;
    font-size: 18px;
    font-weight: 600;
    color: var(--sub-txt-color);
    word-break: keep-all;
    margin-bottom: 48px;
    line-height: 1.5;
}
.portfolio-content-img {
    width: 100%;
    border-radius: 24px;
    padding: 200px;
    background-color: var(--black-color);
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.portfolio-content-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
}


.contact-area {
    padding: 100px 0 150px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}
.contact-area .lt {
    width: 100%;
    max-width: 600px;
    height: calc(100vh - (100px + 200px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 120px;
    left: 0;
}
.contact-area .lt .tp p:first-child {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}
.contact-area .lt .tp p:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color);
    line-height: 1.5;
}
.contact-area .lt .bt {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-area .lt .bt .box {
    display: flex;
    gap: 24px;
}
.contact-area .lt .bt .box span {
    font-size: 18px;
    color: var(--sub-txt-color);
    line-height: 1.5;
    display: inline-block;
}
.contact-area .lt .bt .box span:first-child {
    font-weight: 700;
    width: 70px;
}

.contact-area .rt {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.contact-item .hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 36px;
}
.contact-item .hd span:first-child {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
.contact-item .hd span:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.contact-item .hd span:nth-child(2)::before {
    content: "*";
    margin-right: 5px;
    color: var(--main-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 16px;
}
.col-span-2 {
    grid-column: 1 / -1;
}
.form-grid .item p {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
}
.form-grid .item p.st::after {
    content: "*";
    margin-left: 5px;
    color: var(--main-color);
}
.form-grid .item p span {
    color: var(--main-color);
}
.form-grid .item input {
    width: 100%;
    height: 60px;
    padding: 0 16px;
    background-color: var(--black-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
}
.form-grid .item textarea {
    width: 100%;
    height: 200px;
    padding: 16px;
    background-color: var(--black-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
}

.radio-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.radio-grid .box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2px 0 24px;
}
.radio-grid .box input[type="radio"] {
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
    padding: 0;
    border: none;
    font-size: 0;
}
.radio-grid .box label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.radio-grid .box:has(input[type="radio"]:checked + label) {
    border: 1px solid var(--main-color);
}
.radio-grid .box label img {
    width: 36px;
}
.radio-grid .box label span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-upload input[type="text"] {
  flex: 1;
  padding: 0 16px;
  border: 1px solid var(--border-color);
}

.file-upload .file-btn {
    width: 100%;
    max-width: 150px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: all .2s ease-in-out;
}

.file-upload .file-btn:hover {
    opacity: .8;
}

.contact-terms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.contact-terms label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.contact-terms label input[type="checkbox"] {
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-appearance: none;
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
    outline: none !important;
    border-radius: 2px;
    background: #fbfbfb;
    background: var(--black-color);
    margin: 0;
    width: 20px;
    height: 20px;
}
.contact-terms label input[type="checkbox"]::before {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: scale(0) translate(-50%, -50%);
    line-height: 1;
}

.contact-terms label input[type="checkbox"]:hover {
    border-color: rgba(170, 170, 170, 0.5);
}

.contact-terms label input[type="checkbox"]:checked {
    color: var(--main-color);
}

.contact-terms label input[type="checkbox"]:checked::before {
    border-radius: 2px;
    transform: scale(1) translate(-50%, -50%)
}
.contact-terms label span {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color);
}
.contact-terms button {
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color);
    text-decoration: underline;
    transition: all .2s ease-in-out;
}
.contact-terms button:hover {
    color: #fff;
}
.btn-wrap {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 200px;
}


.price-intro {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.price-intro .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.price-intro .bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(360deg, rgba(11, 11, 11, 1) 0%, rgba(0, 0, 0, .5) 100%);
}
.price-intro .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    animation: zoomIn 5s forwards;
}
@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.price-intro .txt {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.price-intro .txt p:first-child {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}
.price-intro .txt p:nth-child(2) {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  word-break: keep-all;
}
.price-intro .txt a {
    margin-top: 36px;
}
.price-info {
    width: 100%;
    height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;
}
.price-info .video-bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.price-info .video-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg ,rgba(11, 11, 11, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.price-info .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.price-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.price-slider .swiper-slide {
    padding: 150px 0;
    height: 100%;
    display: flex;
    justify-content: center;
}
.price-slider .txt {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
}
.price-slider .txt .tp p:first-child {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.price-slider .txt .tp p:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color);
}
.price-slider .txt .bt {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.price-slider .txt .bt .box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-slider .txt .bt .box p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.price-slider .txt .bt .box p:first-child {
    color: var(--main-color);
}
.price-slider .txt .sale-price {
    display: flex;
    align-items: center;
    gap: 16px;
}
.price-slider .txt .sale-price .before {
    font-size: 80px;
    font-weight: 400;
    color: var(--sub-txt-color);
    text-decoration: line-through;
}
.price-slider .txt .sale-price img {
    width: 38px;
}
.price-slider .txt .sale-price .after {
    font-size: 36px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.price-slider .txt .sale-price .after b {
    font-size: 80px;
    font-weight: 700;
    color: #fff;
}
.price-pagination {
    width: 100%;
    max-width: 1600px !important;
    position: absolute;
    bottom: 150px !important;
    left: 50% !important;
    top: unset;
    transform: translateX(-50%) !important;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end !important;
    gap: 16px;
}
.price-pagination .swiper-pagination-bullet {
    color: var(--sub-txt-color);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    opacity: 1;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    transition: all .2s ease-in-out;
}
.price-pagination .swiper-pagination-bullet::before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #fff;
    display: inline-block;
    transition: all .2s ease-in-out;
}
.price-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #fff;
}
.price-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    width: 40px;
    transition: all .2s ease-in-out;
}

.fc-area {
    width: 100%;
    overflow: hidden;
    padding: 150px 0;
    position: relative;
}
.fc-slider .swiper-slide {
    padding: 48px 24px;
    background-color: var(--bg-sub-color);
    border-radius: 16px;
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
}
.fc-slider .swiper-slide::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
}
.fc-slider .swiper-slide.swiper-slide-active::after {
    display: none;
}
.fc-slider .swiper-slide .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.fc-slider .swiper-slide .item .img-box {
    width: 48px;
}
.fc-slider .swiper-slide .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.fc-slider .swiper-slide .item .txt p:first-child {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}
.fc-slider .swiper-slide .item .txt p:nth-child(2) {
    min-height: 48px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 24px;
    word-break: keep-all;
}
.fc-slider .swiper-slide .item .txt p:nth-child(3) {
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color);
    line-height: 1.5;
    text-align: center;
    word-break: keep-all;
}
.fc-slider .swiper-slide .item .txt p:nth-child(3) span {
    color: var(--main-color);
}
.page-tit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}
.page-tit.left {
    align-items: flex-start;
}
.page-tit p:first-child {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.page-tit p:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color);
}

.info-area {
    padding-bottom: 150px;
}
.info-flex {
    display: flex;
    gap: 4px;
}
.info-flex .item {
    height: 600px;
    flex: 1;
    transition: all .2s ease-in-out;
    position: relative;
}
.info-flex .item:hover {
    flex: 3;
}
.info-flex .item .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.info-flex .item .bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.info-flex .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-flex .item .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 16px;
}
.info-flex .item:hover .txt {
    opacity: 0;
    transition: .5s ease-in-out;
}
.info-flex .item .txt p:first-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--sub-txt-color);
}
.info-flex .item .txt p:nth-child(2) {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}
.info-flex .item .txt p:nth-child(3) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.5;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    transition: all .5s ease-in-out;
}
.info-flex .item:hover .txt p:nth-child(3) {
    height: auto;
    opacity: 1;
    transition: all .5s ease-in-out;
}

.info-flex .item .visible-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 16px;
    opacity: 0;
}
.info-flex .item:hover .visible-txt {
    opacity: 1;
    transition: all 1s ease-in-out;
}
.info-flex .item .visible-txt p:first-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--sub-txt-color);
}
.info-flex .item .visible-txt p:nth-child(2) {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.info-flex .item .visible-txt p:nth-child(3) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.5;
}

.process-intro {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.process-intro .bg {
    width: 100%;
    height: 100%;
}
.process-intro .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.process-intro .bg canvas {
  width: 100%;
  height: 100%;
}
.process-intro .txt {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.process-intro .txt p:first-child {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.process-intro .txt p:nth-child(2) {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.process-intro .txt p:nth-child(3) {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 24px;
}

.main-tit {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.main-tit.center {
  text-align: center;
}
.me-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 48px;
}
.me-area .main-tit {
  position: sticky;
  top: 124px;
  left: 0;
}
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}
.emergency-grid .item {
  position: relative;
}
.emergency-grid .item:last-child {
  grid-column: span 2;
}
.emergency-grid .item:last-child .bg {
  aspect-ratio: 2 / 1;
}
.emergency-grid .item .bg {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.emergency-grid .item .bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.emergency-grid .item .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.emergency-grid .item .txt {
  position: absolute;
  top: 0;
  left: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.emergency-grid .item .txt p:first-child {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.emergency-grid .item .txt p:last-child {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

.mm-grid {
  width: 100%;
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mm-grid .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: 48px;
  border-radius: 8px;
  background-color: var(--bg-sub-color);
}
.mm-grid .item .txt p:first-child {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
}
.mm-grid .item .txt p:last-child {
  font-size: 16px;
  font-weight: 500;
  color: var(--sub-txt-color);
  line-height: 1.5;
  word-break: keep-all;
}
.mm-grid .item img {
  width: 36px;
  height: 36px;
}


/*new pages*/
.mt-01 .box {
    display: flex;
    align-items: center;
    gap: 96px;
}
.mt-01 .box ul {
    width: 50%;
}
.mt-01 .box ul li {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border-color);
}
.mt-01 .box ul li:first-child {
    border-top: 1px solid var(--border-color);
}
.mt-01 .box ul li p:first-child {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.mt-01 .box ul li p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.5;
    word-break: keep-all;
}
.mt-01 .box .img-box {
    width: 50%;
    aspect-ratio: 1 / 1;
    position: relative;
}
.mt-01 .box .img-box .txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

.mt-03-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
}
.mt-03-grid .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.mt-03-grid .item .img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
}
.mt-03-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mt-03-grid .item .bt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.mt-03-grid .item .bt .circle {
    display: flex;
    align-items: center;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: var(--main-color);
}
.mt-03-grid .item .bt .tit {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    margin-top: 12px;
}
.mt-03-grid .item .bt .tit-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color);
    text-align: center;
    line-height: 1.5;
}
.mt-03-grid .line {
    position: absolute;
    left: 50%;
    bottom: 97px;
    transform: translateX(-50%);
    z-index: -1;
    width: calc(100% - 350px);
    height: 1px;
    background-color: var(--border-color);
}

.mt-04-grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 36px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.mt-04-grid .item {
    padding: 24px;
}
.mt-04-grid .item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}
.mt-04-grid .item > p {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 36px;
}
.mt-04-grid .item .sub {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mt-04-grid .item .sub p {
    display:flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--sub-txt-color);
    line-height: 1.3;
}
.mt-04-grid .item .sub p::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--sub-txt-color);
    margin-right: 8px;
}
.mt-04-warning {
    width: 100%;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color);
    margin-top: 16px;
}

.mt-04-sub-grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 36px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    gap: 24px 0;
}
.mt-04-sub-grid .item {
    padding: 24px;
}
.mt-04-sub-grid .item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}
.mt-04-sub-grid .item > p {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 36px;
}
.mt-04-sub-grid .item .sub {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mt-04-sub-grid .item .sub p {
    display:flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--sub-txt-color);
    line-height: 1.3;
}
.mt-04-sub-grid .item .sub p::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--sub-txt-color);
    margin-right: 8px;
}
.mt-04-warning {
    width: 100%;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color);
    margin-top: 16px;
}

.nav-banner {
    width: 100%;
    height: 550px;
    position: relative;
}
.nav-banner .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.nav-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-banner .content {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    padding: 0 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.nav-banner .content .txt p:first-child {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 24px;
}
.nav-banner .content .txt p:last-child {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}
.nav-banner .content .nav-link {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ps-01-grid {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.ps-01-grid .item {
    padding: 36px 16px;
    position: relative;
}
.ps-01-grid .item .num {
    font-size: 16px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 8px;
}
.ps-01-grid .item .tit {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 24px;
}
.ps-01-grid .item .tit-sub {
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color);
    line-height: 1.5;
    word-break: keep-all;
}
.ps-01-grid .item:first-child::after {
    content: "";
    display: block;
    position: absolute;
    right: -24px;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
}
.ps-01-grid .item:nth-child(3)::after {
    content: "";
    display: block;
    position: absolute;
    right: -24px;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
}
.ps-01-grid .item:nth-child(3)::before {
    content: "";
    display: block;
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}
.ps-01-grid .item:nth-child(4)::before {
    content: "";
    display: block;
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.ps-02-grid {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.ps-02-grid .item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}
.ps-02-grid .item .bg {
    width: 100%;
    height: 100%;
}
.ps-02-grid .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ps-02-grid .item .txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 36px;
}
.ps-02-grid .item .txt p:first-child {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 24px;
}
.ps-02-grid .item .txt p:last-child {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    word-break: keep-all;
}

.ps-03-grid {
    border-radius: 8px;
    background-color: var(--bg-sub-color);
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
}
.ps-03-grid .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.ps-03-grid .item .num {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.ps-03-grid .item .circle {
    display: flex;
    align-items: center;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: var(--main-color);
    position: relative;
    z-index: 3;
}
.ps-03-grid .item .tit {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    margin-top: 12px;
}
.ps-03-grid .item .tit-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color);
    text-align: center;
    line-height: 1.5;
}
.ps-03-grid .line {
    position: absolute;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: calc(100% - 415px);
    height: 1px;
    background-color: var(--border-color);
}


.ps-04-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 36px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.ps-04-grid .item {
    padding: 24px 48px;
}
.ps-04-grid .item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}
.ps-04-grid .item > p {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 36px;
}
.ps-04-grid .item .sub {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ps-04-grid .item .sub p {
    display:flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--sub-txt-color);
    line-height: 1.3;
    padding-left: 16px;
}
.ps-04-grid .item .sub p::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--sub-txt-color);
    margin-right: 8px;
}
.ps-04-warning {
    width: 100%;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color);
    margin-top: 16px;
}

.terms-content {

}


.terms-area {
    padding: 200px 0;
}
.terms-area .content {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.terms-area .content p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    white-space: pre-line;
}
.terms-area .content p.lg {
    font-size: 20px;
    font-weight: 700;
}

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}


/*모달*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 102;
  display: none;
}
.modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}
.modal.terms .modal-box {
  max-width: 1270px;
}
.modal.culture .modal-box {
    max-width: 900px;
}
.modal.floating-01 .modal-box, .modal.floating-02 .modal-box {
  max-width: 500px;
}
.modal .modal-box .modal-tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background-color: var(--black-sub-color);
}
.modal .modal-box .modal-tit-box span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.modal .modal-box .modal-tit-box button {
  display: inline-block;
}
.modal .modal-box .modal-tit-box img {
  width: 24px;
  height: 24px;
}
.modal .modal-box .content {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  height: auto;
  overflow-y: auto;
  padding: 24px;
  white-space: pre-line;
}
.modal .modal-box .content.terms {
  min-height: 500px;
  max-height: 700px;
}

.modal .modal-box .modal-content {
    padding: 24px;
    display: flex;
    gap: 24px;
}
.modal .modal-box .modal-content .img-box {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1.41;
}
.modal .modal-box .modal-content .txt {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.modal .modal-box .modal-content .txt > .txt-tit {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
    cursor: pointer;
}
.modal .modal-box .modal-content .txt .box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.modal .modal-box .modal-content .txt .box > div {
    display: flex;
    gap: 12px;
}
.modal .modal-box .modal-content .txt .box > div span:first-child {
    display: inline-block;
    color: var(--black-color);
    min-width: 80px;
    white-space: nowrap;
    line-height: 1.3;
}
.modal .modal-box .modal-content .txt .box > div span:nth-child(2) {
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}


.error-area {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow: hidden;
    position: relative
}
.error-area .error-404 {
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 20px;
    margin: 0;
}
.error-area .error-404 b {
    color: var(--main-color);
}
.error-area .error-expl {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}
.error-area .error-expl b {
    display: block;
    font-size: 28px;
    margin-bottom: 16px;
}