@charset "UTF-8";
/* media-query */
/* ---------------임시 setting (개발 끝나고 제거)--------------- */
/* ---------------공통 스타일 START--------------- */
.section-heading {
  text-align: center;
}

.section-heading .opacity-text {
  transition-delay: 0.2s;
}

.ci img {
  width: 4.6rem;
}
@media screen and (max-width: 767px) {
  .ci img {
    width: 4.2rem;
  }
}

.slogan {
  font-size: 1rem;
  display: block;
  letter-spacing: 0.5em;
  color: #333;
  white-space: nowrap;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .slogan {
    font-size: 7.5px;
  }
}

.ci + .slogan {
  margin: 3.8rem 0 0;
}

.section-title {
  font-size: 4rem;
}
.section-title:has(.ani-text):has(.ani-inner) {
  line-height: 1;
}
.slogan + .section-title {
  margin: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .slogan + .section-title {
    margin: 3rem 0 0;
  }
}
@media screen and (max-width: 450px) {
  .slogan + .section-title {
    font-size: 26px;
  }
}

.section-title + .section-desc {
  margin: 2.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .section-title + .section-desc {
    text-wrap: balance;
  }
  .section-title + .section-desc br {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .section-title + .section-desc {
    margin: 2rem 0 0;
  }
}

.content-title + .content-desc {
  margin: 2.4rem 0 0;
}
@media screen and (max-width: 450px) {
  .content-title + .content-desc {
    margin: 2rem 0 0;
  }
}

/* ---------------공통 스타일 END--------------- */
/* ---------------body.scroll START--------------- */
body.scroll .project-header {
  background-color: #fff;
  box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.05);
}
body.scroll .project-header .header-inner {
  border-bottom: 0px solid rgba(255, 255, 255, 0.05);
}
body.scroll .project-header .header-inner h1 a img.logo-origin {
  opacity: 1;
}
body.scroll .project-header .header-inner h1 a img.logo-white {
  opacity: 0;
}
body.scroll .project-header .header-inner .gnb .gnb-menu li a {
  color: #191919;
}
body.scroll .project-header .header-inner .gnb .gnb-menu li a::after {
  background: linear-gradient(90deg, #0a275f, #133a85, #bbe3f6);
  background-size: 200% auto;
}
body.scroll .project-header .header-inner .btn-mega .bar {
  background-color: #666;
}
body.scroll .quick {
  transform: translateY(-50%) translateX(0px);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1150px) {
  body.scroll .project-header .header-inner .gnb .gnb-menu li a {
    color: #fff;
  }
  body.scroll .project-header .header-inner .gnb .gnb-menu li a::after {
    bottom: 0;
    background: linear-gradient(90deg, #34a8df, #59c2f4, #bbe3f6);
  }
}
@media screen and (max-width: 1023px) {
  body.scroll .quick {
    transform: translateX(-50%);
    opacity: 1;
  }
}
/* ---------------body.scroll END--------------- */
/* ---------------project-header START--------------- */
.project-header {
  width: 100%;
  position: fixed;
  z-index: 100;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100px;
}
.project-header .header-inner {
  max-width: 1650px;
  height: 100%;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.project-header .header-inner h1 {
  height: 70%;
  width: 225px;
}
.project-header .header-inner h1 a {
  position: relative;
  display: block;
  height: 100%;
}
.project-header .header-inner h1 a img {
  position: absolute;
  display: block;
  height: 100%;
  width: auto;
  transition: opacity 0.3s;
}
.project-header .header-inner h1 a img.logo-origin {
  opacity: 0;
}
.project-header .header-inner h1 a img.logo-white {
  opacity: 1;
}
.project-header .header-inner .gnb .gnb-menu {
  display: flex;
  gap: 4.2rem;
}
.project-header .header-inner .gnb .gnb-menu li {
  display: flex;
  align-items: center;
}
.project-header .header-inner .gnb .gnb-menu li a {
  height: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  transition: color 0.3s ease-in-out 0s;
  line-height: 1.8;
}
.project-header .header-inner .gnb .gnb-menu li a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #4facfe, #00f2fe, #fff);
  background-size: 200% auto;
  transition: all 0.5s;
  transform: translateX(-103%);
}
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .project-header .header-inner .gnb .gnb-menu li a:hover::after {
    transform: translateX(0%);
    animation: gradient-89 3s linear infinite;
  }
}
.project-header .header-inner .gnb .gnb-menu li a.active::after {
  transform: translateX(0%);
  animation: gradient-89 3s linear infinite;
}
.project-header .header-inner .btn-mega {
  width: 25px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.project-header .header-inner .btn-mega .bar {
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
}
.project-header .header-inner .btn-mega .bar.top {
  top: 0px;
  transform: rotate(0deg);
  will-change: transform;
  transform-origin: center;
  transition-delay: 0.3s, 0s, 0.3s;
  transition-duration: 0.3s, 0.3s, 0.3s;
  transition-property: top, transform, background-color;
}
.project-header .header-inner .btn-mega .bar.center {
  margin: 7px 0;
  opacity: 1;
  transition-delay: 0.3s, 0.3s;
  transition-property: opacity, background-color;
  transition-duration: 0.3s, 0.3s;
}
.project-header .header-inner .btn-mega .bar.bottom {
  bottom: 0px;
  transform: rotate(0deg);
  will-change: transform;
  transform-origin: center;
  transition-delay: 0.3s, 0s, 0.3s;
  transition-duration: 0.3s, 0.3s, 0.3s;
  transition-property: bottom, transform, background-color;
}
.project-header .header-inner .btn-mega .bar.no-scroll {
  background-color: #fff !important;
}
.project-header .header-inner .btn-mega.active .bar {
  background-color: #fff !important;
}
.project-header .header-inner .btn-mega.active .bar.top {
  top: 9px;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.3s;
}
.project-header .header-inner .btn-mega.active .bar.center {
  opacity: 0;
}
.project-header .header-inner .btn-mega.active .bar.bottom {
  bottom: 9px;
  transform: rotate(45deg);
  transition-delay: 0s, 0.3s;
}

@media (max-width: 1650px) {
  .project-header .header-inner {
    width: 95%;
  }
  .project-header .header-inner h1 {
    width: 200px;
  }
  .project-header .header-inner .gnb .gnb-menu {
    gap: 1.8vw;
  }
  .project-header .header-inner .gnb .gnb-menu li a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1279px) {
  .project-header .header-inner {
    width: 97%;
    gap: 30px;
  }
  .project-header .header-inner h1 {
    width: 200px;
  }
  .project-header .header-inner .gnb .gnb-menu {
    gap: 1.5vw;
  }
  .project-header .header-inner .gnb .gnb-menu li a {
    font-size: 1.7rem;
    text-align: center;
    line-height: 1.5;
  }
}
@media (max-width: 1150px) {
  .project-header {
    height: 85px;
  }
  .project-header .header-inner {
    width: calc(100% - 60px);
    gap: 0px;
  }
  .project-header .header-inner h1 {
    width: 200px;
  }
  .project-header .header-inner .gnb {
    position: fixed;
    width: 50%;
    max-width: 325px;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #152453;
    transition: transform 0.6s cubic-bezier(0.425, 0.05, 0, 1), opacity 0.6s cubic-bezier(0.425, 0.05, 0, 1);
    border-radius: 30px 0 0 30px;
    transform: translateX(100%);
  }
  .project-header .header-inner .gnb.active {
    transform: translateX(0%);
  }
  .project-header .header-inner .gnb.active .gnb-menu li {
    opacity: 1;
    transform: translateX(0px);
  }
  .project-header .header-inner .gnb .gnb-menu {
    gap: 25px;
    flex-direction: column;
    padding: 16.5dvh 30px 0;
  }
  .project-header .header-inner .gnb .gnb-menu li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .project-header .header-inner .gnb .gnb-menu li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .project-header .header-inner .gnb .gnb-menu li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .project-header .header-inner .gnb .gnb-menu li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .project-header .header-inner .gnb .gnb-menu li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .project-header .header-inner .gnb .gnb-menu li:nth-child(5) {
    transition-delay: 0.25s;
  }
  .project-header .header-inner .gnb .gnb-menu li:nth-child(6) {
    transition-delay: 0.3s;
  }
  .project-header .header-inner .gnb .gnb-menu li:nth-child(7) {
    transition-delay: 0.35s;
  }
  .project-header .header-inner .gnb .gnb-menu li:nth-child(8) {
    transition-delay: 0.4s;
  }
  .project-header .header-inner .gnb .gnb-menu li:nth-child(9) {
    transition-delay: 0.45s;
  }
  .project-header .header-inner .gnb .gnb-menu li:nth-child(10) {
    transition-delay: 0.5s;
  }
  .project-header .header-inner .gnb .gnb-menu li a {
    font-size: 19px;
    text-align: center;
    line-height: 1.5;
    font-weight: 800;
  }
  .project-header .header-inner .btn-mega {
    display: flex;
    position: relative;
  }
  .project-header .header-inner .btn-mega.active .bar {
    width: 24px;
    height: 3px;
    border-radius: 10px;
  }
  .project-header .header-inner .btn-mega.active .bar.top {
    top: 10px;
  }
  .project-header .header-inner .btn-mega.active .bar.bottom {
    bottom: 10px;
  }
  .project-header .header-inner .btn-mega.active::after {
    content: "";
    display: block;
    position: absolute;
    width: 42px;
    height: 42px;
    left: 50%;
    top: 50%;
    transform: translate(-52%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  }
}
@media screen and (max-width: 767px) {
  .project-header {
    height: 60px;
  }
  .project-header .header-inner {
    width: calc(100% - 30px);
  }
  .project-header .header-inner h1 {
    width: 170px;
  }
  .project-header .header-inner .gnb {
    width: 60%;
  }
  .project-header .header-inner .gnb .gnb-menu {
    padding: 14.5dvh 25px 0;
  }
  .project-header .header-inner .gnb .gnb-menu li a {
    font-size: 17px;
  }
  .project-header .header-inner .btn-mega {
    width: 20px;
    height: 20px;
  }
  .project-header .header-inner .btn-mega .bar.center {
    margin: 5px 0;
  }
  .project-header .header-inner .btn-mega.active .bar.bottom {
    bottom: 6px;
  }
  .project-header .header-inner .btn-mega.active::after {
    width: 38px;
    height: 38px;
    left: calc(50% + 2px);
    top: calc(50% + 2px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  }
}
/* ---------------project-header END--------------- */
/* ---------------project-footer START--------------- */
.project-footer {
  padding: 0 0 6.7rem;
}
.project-footer ul {
  position: relative;
  padding: 7.2rem 0 0;
  display: flex;
  gap: 5.7rem;
}
.project-footer ul li {
  position: relative;
}
.project-footer ul li a {
  color: #fff;
  font-weight: 700;
}
.project-footer ul li button {
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.project-footer ul li:not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 80%;
  top: 45%;
  transform: translateY(-50%);
  right: -2.85rem;
  background-color: #fff;
}
.project-footer ul::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  background-color: rgba(222, 222, 222, 0.2);
  height: 1px;
  top: 0;
  left: 0;
  max-width: 1522px;
}
.project-footer address {
  padding: 3rem 0 0;
  color: #fff;
  opacity: 0.5;
  font-size: 1.5rem;
  line-height: 1.8;
  text-transform: uppercase;
}

@media screen and (max-width: 1279px) {
  .project-footer {
    padding: 0 0 18rem;
  }
  .project-footer address {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 767px) {
  .project-footer ul {
    gap: 5rem;
    padding: 6rem 0 0;
    justify-content: center;
  }
  .project-footer ul li a {
    font-size: 14px;
  }
  .project-footer ul li button {
    font-size: 14px;
  }
  .project-footer ul li:not(:last-child)::before {
    right: -2.5rem;
  }
  .project-footer address {
    padding: 4.5rem 0 0;
    text-align: center;
    text-wrap: balance;
  }
  .project-footer address br {
    display: none;
  }
}
/* ---------------project-footer END--------------- */
/* ---------------quick START--------------- */
.quick {
  opacity: 0;
  width: 90px;
  position: fixed;
  right: 23px;
  top: 50%;
  transform: translateY(-50%) translateX(30px);
  border-radius: 20px;
  background-color: #133a85;
  overflow: hidden;
  z-index: 97;
  box-sizing: border-box;
  transition: opacity 0.5s ease-in-out 0s, transform 0.5s ease-in-out 0s, border-color 0.3s ease-in-out;
}
.quick ul {
  width: 70px;
  margin: 0 auto;
  padding: 8px 0 0;
}
.quick ul li {
  padding: 25px 0;
}
.quick ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.quick ul li a .quick-menu {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.quick ul li:not(:last-child) {
  border-bottom: 1px solid rgba(222, 222, 222, 0.1);
}
.quick .go-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #152453;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  height: 55px;
}
.quick.white-border {
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.3), 0 4px 16px rgba(255, 255, 255, 0.15);
}

@media screen and (max-width: 1023px) {
  .quick {
    opacity: 0;
    width: calc(100% - 20px);
    pointer-events: none;
    background-color: #152453;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    border-radius: 20px;
    right: unset;
    top: unset;
    transition: opacity 0.5s ease-in-out 0.3s;
  }
  .quick ul {
    width: auto;
    margin: unset;
    padding: 0;
    display: flex;
  }
  .quick ul li {
    flex: 1;
    padding: 10px 0;
  }
  .quick ul li a {
    gap: 8px;
  }
  .quick ul li a .icon {
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .quick ul li a .quick-menu {
    font-weight: 700;
  }
  .quick ul li:not(:last-child) {
    border-bottom: none;
  }
  .quick ul li:nth-child(1) a .icon img {
    height: 34px;
  }
  .quick ul li:nth-child(3) a .icon img {
    height: 32px;
  }
  .quick .go-top {
    display: none;
  }
  .quick.white-border {
    box-shadow: none;
  }
}
@media screen and (max-width: 767px) {
  .quick {
    bottom: 5px;
    width: calc(100% - 12px);
  }
  .quick ul li a {
    gap: 5px;
  }
  .quick ul li a .icon {
    height: 30px;
  }
  .quick ul li a .quick-menu {
    font-size: 13.5px;
  }
  .quick ul li:nth-child(1) a .icon img {
    height: 30px;
  }
  .quick ul li:nth-child(2) a .icon img {
    height: 26px;
  }
  .quick ul li:nth-child(3) a .icon img {
    height: 27px;
  }
  .quick ul li:nth-child(4) a .icon img {
    height: 28px;
  }
  .quick ul li:nth-child(5) a .icon img {
    height: 25px;
  }
}
/* ---------------quick END--------------- */
/* ---------------nopay START--------------- */
.nopay {
  pointer-events: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 10003;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px;
  width: calc(100% - 40px);
  opacity: 0;
  transition: opacity 0.35s;
  height: calc(100dvh - 40px);
  cursor: not-allowed;
}
.nopay img {
  display: block;
  margin: 0 auto;
  max-width: 1100px;
}
.nopay.show {
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}
.nopay.hide {
  opacity: 0;
  pointer-events: none;
}
.nopay::-webkit-scrollbar {
  width: 10px;
}
.nopay::-webkit-scrollbar-track {
  background: transparent; /* 트랙 투명 */
  margin: 8px 0;
}
.nopay::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.22); /* 기본 색 */
  border-radius: 999px; /* 둥근 핸들 */
  border: 2px solid transparent; /* ‘통통한’ 느낌 */
  background-clip: content-box;
}
.nopay::-webkit-scrollbar-corner {
  background: transparent;
}

@media screen and (max-width: 1023px) {
  .nopay {
    padding: 40px 20px 0px 20px;
  }
  .nopay img {
    max-width: unset;
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .nopay {
    padding: 20px 10px 0px 10px;
    width: calc(100% - 20px);
  }
  .nopay img {
    max-width: unset;
    width: 100%;
  }
}
/* ---------------nopay END--------------- */
/* btn-bubble */
.btn-bubble {
  position: relative;
  z-index: 0;
  transition: color 0.5s, border-color 0.75s;
  box-sizing: border-box;
  overflow: hidden;
}
.btn-bubble .bubble-inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.btn-bubble .bubble-inner .bubble-itembox {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#bubble-start");
}
.btn-bubble .bubble-inner .bubble-itembox .bubble-item {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.6);
  background-color: #133a85;
  transition: transform, 0.5s;
}
.btn-bubble .bubble-inner .bubble-itembox .bubble-item:nth-of-type(1) {
  left: 0%;
  transition-delay: 0s;
}
.btn-bubble .bubble-inner .bubble-itembox .bubble-item:nth-of-type(2) {
  left: 30%;
  transition-delay: 0.08s;
}
.btn-bubble .bubble-inner .bubble-itembox .bubble-item:nth-of-type(3) {
  left: 60%;
  transition-delay: 0.16s;
}
.btn-bubble .bubble-inner .bubble-itembox .bubble-item:nth-of-type(4) {
  left: 90%;
  transition-delay: 0.24s;
}
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .btn-bubble:hover {
    border-color: #133a85 !important;
    color: #fff !important;
  }
  .btn-bubble:hover .bubble-inner .bubble-itembox .bubble-item {
    transform: translate3d(0, 0, 0) scale(1.6);
  }
}

.tab-button {
  width: 24.8rem;
  isolation: isolate;
  height: 6.9rem;
  border-radius: 3.5rem;
  box-sizing: border-box;
  border: 1px solid #f1f1f1;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .tab-button:hover {
    color: #fff;
    font-weight: 900;
  }
}

/* swiper-control */
.swiper-control {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.swiper-control button {
  position: unset;
  color: #fff;
  width: unset;
  height: unset;
  padding: 0;
  margin: 0;
  font-weight: 900;
  font-size: 1.3rem;
  width: 2.6rem;
  height: 2.6rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  line-height: 1;
}
.swiper-control button.swiper-button-prev::after {
  content: none;
}
.swiper-control button.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.swiper-control button.swiper-button-next::after {
  content: none;
}
.swiper-control button.swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.swiper-control .swiper-pagination {
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  position: unset;
  width: unset;
  display: inline-block;
  border-radius: 1.3rem;
  background-color: rgba(0, 0, 0, 0.2);
  width: 6.4rem;
  height: 2.6rem;
  display: flex;
  justify-content: center;
  letter-spacing: 0.15em;
  line-height: 2.6rem;
}
.swiper-control.main-swiper-control {
  left: 50%;
  transform: translateX(-50%);
  bottom: 32.5%;
}
.swiper-control.manual-swiper-control {
  bottom: 3%;
  right: 3%;
}
.swiper-control.exercise-swiper-control {
  bottom: 3%;
  right: 3%;
}
.swiper-control.interior-swiper-control {
  bottom: 3%;
  right: 2.2%;
}

@media screen and (max-width: 767px) {
  .swiper-control {
    gap: 0.5rem;
  }
  .swiper-control button {
    font-size: 10.5px;
  }
  .swiper-control .swiper-pagination {
    width: auto;
    font-size: 10.5px;
    letter-spacing: 0.05em;
    padding: 0 8px;
  }
  .swiper-control.main-swiper-control {
    bottom: 27.5%;
  }
  .swiper-control.interior-swiper-control {
    bottom: 6px;
    right: 6px;
  }
}
/* ---------------sticky-button START--------------- */
.sticky-buttons {
  position: sticky;
  top: 101px;
  z-index: 99;
}
.sticky-buttons li button.active {
  background-color: #133a85;
  font-weight: 900;
  color: #fff;
  border-color: #133a85;
}

@media screen and (max-width: 1150px) {
  .sticky-buttons {
    top: 86px;
  }
}
@media screen and (max-width: 767px) {
  .sticky-buttons {
    top: 61px;
  }
}
/* ---------------sticky-button END--------------- */
/* ---------------gnb-dim START--------------- */
.gnb-dim {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  z-index: 99;
  transition: opacity 0.6s cubic-bezier(0.425, 0.05, 0, 1);
}
.gnb-dim.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------gnb-dim END--------------- *//*# sourceMappingURL=components.css.map */