body {
  font-family:
    "Pretendard Variable",
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    Roboto,
    "Helvetica Neue",
    "Segoe UI",
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    "Malgun Gothic",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    sans-serif;
}

.sound_only {
  display: none;
}

/* 인트로 */
#intro {
  width: 100%;
  height: 100vh;
  min-height: 80rem;
  overflow: hidden;
  position: relative;
}
.intro_bg,
.intro_over,
.intro_over2,
.introVis,
.introBoxWrap {
  position: absolute;
}
.intro_bg {
  top: 0;
  width: 100%;
  height: 100%;

  img {
    object-position: right;
    transform: scale(1.1);
    animation: introZoomOut 7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}
@keyframes introZoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.intro_over {
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 22, 25, 0.35);
}
.intro_over2 {
  bottom: 0;
  width: 100%;
  height: min(30%, 33rem);
  background: linear-gradient(to top, black, rgba(0, 0, 0, 0));
}
.introVis {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: min(144rem, 96%);

  .symbol {
    width: min(20rem, 50%);
    margin: 0 auto;
  }
  .symbol svg {
    width: 100%;
    height: auto;
  }
  .logo {
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
    width: min(70rem, 96%);
    margin: var(--m30) auto;
  }
  p {
    color: white;
    font-weight: 400;
    text-shadow: 0 0 8px var(--shadow);
    text-transform: uppercase;
  }
}
.introBoxWrap {
  width: min(144rem, 96%);
  bottom: var(--m60);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--m30);
}
.introBox {
  flex: 1;
}
.introBox a {
  transition: var(--ease);
  border-radius: var(--border-sm);
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  padding: var(--m40);
  gap: var(--m20);

  h2 {
    font-size: var(--subTit);
    font-weight: 700;
    margin-bottom: var(--m20);
  }
  h2 span {
    font-size: var(--text);
    font-weight: 500;
  }
  button {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    font-size: var(--subTit);
    color: white;
    text-align: center;
    background: var(--black100);
    border-radius: 100%;
  }
}
.introBox a:hover {
  transform: translateY(-10px);
  background: white;
}

/* 헤더 및 전체메뉴 */
header.pre {
  background: none;
  box-shadow: none;

  > * {
    color: white;
  }
  .logo img {
    filter: brightness(0) invert(1);
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 0 0 4%;
  height: clamp(6rem, 7vw, 8rem);
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 1.6s ease;

  .logo {
    padding: 2px 0;
    width: clamp(20rem, 23vw, 25rem);

    img {
      width: 100%;
    }
  }
  #menu {
    display: flex;
    gap: var(--m40);
    height: 100%;
  }
  #menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
  #menu > li > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: var(--text);
  }
  #menu > li:hover a {
    color: var(--main-s);
  }
  #menu .depth2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-s);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: none;
    z-index: 99;
  }
  #menu .depth2 li a {
    display: block;
    padding: 0.8rem 3rem;
    font-size: var(--subText);
    color: white;
    opacity: 0.8;
    transition: all 0.3s;
  }
  #menu .depth2 li a:hover {
    opacity: 1;
  }
}
.hd_add {
  gap: var(--m20);
  height: 100%;
}
.navDropdown {
  position: relative;
}
.navDropdownToggle {
  background: none;
  border: none;
  font-size: var(--subText);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  height: 100%;
}
.navDropdownToggle .arrow {
  font-size: 1rem;
  transition: var(--ease);
}
.navDropdown.open .arrow {
  transform: rotate(180deg);
}
.navDropdownMenu {
  position: absolute;
  top: 160%;
  left: -10%;
  min-width: 16rem;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--ease);
}
.navDropdown.open .navDropdownMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navDropdownMenu a {
  display: block;
  padding: 1.2rem 2rem;
  color: var(--black80);
  font-size: var(--subText);
  text-decoration: none;
}
.navDropdownMenu a:hover {
  background: var(--base);
  color: var(--main-s);
}
#hd_iq {
  background: var(--main-s);
  color: white;
  padding: 6px 18px;
  border-radius: 99px;
  font-weight: 600;
  font-size: var(--subText);
}

#mb_menuBtn {
    height: 100%;
    aspect-ratio: 1;
    border-left: 1px solid var(--border);
    font-size: var(--subTit);
    cursor: pointer;
}
#mobileMenu {
  display: none;
}

.hd_login {
  display: flex;
  gap: 1rem;
}
.hd_registerBtn,
.hd_loginBtn {
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  font-size: var(--label);
  font-weight: 700;
  transition: var(--ease);
}
.hd_loginBtn {
  background: white;
  color: var(--main-s);
  border: 1px solid white;
}
.hd_registerBtn {
  background: var(--main);
  color: white;
  border: 1px solid white;
}
.hd_registerBtn:hover,
.hd_loginBtn:hover {
  background: white;
  color: var(--main-s);
  border: 1px solid var(--main-s);
}

/* 사이드 퀵메뉴 및 푸터 */
footer {
  border-top: 1px solid var(--border);
  padding-top: var(--m40);
  font-size: var(--label);
  color: var(--black60);

  .logo {
    width: 20rem;
    img {
      width: 100%;
    }
  }
  p {
    font-size: var(--label);
    color: var(--black60);
    margin: var(--m20) 0;
  }
  .ft_sns li a {
    display: block;
    width: 36px;
    aspect-ratio: 1;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.ft_con_right {
  display: flex;
  gap: var(--m60);
}
.ft_con_right > ul li {
  padding-bottom: var(--m10);
}
.ft_con_right > ul li:first-of-type {
  color: var(--black80);
  font-weight: 600;
}
#ft_bt {
  margin-top: var(--m40);
  padding: var(--m20) 0;
  border-top: 1px solid var(--border);
}
.ft_btn {
  font-weight: 600;

  button.active {
    color: var(--main-s);
  }
}

#aside {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 999;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background: white;
  border-top-left-radius: var(--border-sm);
  border-bottom-left-radius: var(--border-sm);
  box-shadow: 0 0 20px var(--shadow);
  overflow: hidden;
}
#aside ul {
  text-align: center;
  padding: var(--m20);

  li a {
    display: block;
    padding: 1rem;
    font-size: var(--label);
    line-height: 1.2;
    color: var(--black60);
    transition: var(--ease);
    i {
      font-size: var(--subTit);
      color: var(--main-dark);
    }
  }
  li a:hover {
    i {
      color: var(--main-s);
    }
  }
}
.to-top {
  padding: 8px;
  background: var(--main-s);
  color: white;
  font-size: var(--label);
  transition: var(--ease);
  width: 100%;
}

/* 노블스튜디오 메인======================================================= */
.main-visual {
  position: relative;
  width: 100%;
  height: max(100vh, 56rem);
  overflow: hidden;
}
.mainSwiper {
  width: 100%;
  height: 100%;
}
.mainSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainSwiper .swiper-slide:first-of-type img {
  object-position: right;
}
.fixed-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
  pointer-events: none;

  h2.title {
    font-size: var(--display);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: var(--m30);
  }
  p.desc {
    color: inherit !important;
  }
  .pagination-num {
    font-size: var(--subText);
  }
}
.fixed-content * {
  pointer-events: auto;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.control-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.progress-bar {
  position: relative;
  width: 10rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.progress-bar .bar {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: white;
}
.btn-toggle-autoplay {
  font-size: var(--lead);
}

.main-v-over {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  z-index: 1;
  pointer-events: none;
}
.scrollIndicator {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  transform: translateX(-50%);
  z-index: 1;
  font-size: var(--label);
  color: white;
}
.mouse {
  width: 3rem;
  height: 4.2rem;
  border: 1px solid white;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  padding-top: 0.8rem;
  margin: 0.8rem auto;
}
.wheel {
  width: 0.4rem;
  height: 0.6rem;
  background: white;
  border-radius: 100px;
  animation: scrollWheel 1.6s infinite;
}
@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(1rem);
  }
}

#main_ab {
  width: 100%;
  height: max(100vh, 80rem);
  padding: var(--m80);
  position: relative;
  transition: var(--ease);
}
#main_ab .just-center {
  height: 100%;
  border-radius: var(--border-lg);
  overflow: hidden;
  background: url(../img/noblestudio/main_bg1.jpg) no-repeat center / cover;
}
.main_ab_list {
  display: flex;
  flex-direction: column;
  gap: var(--m20);
}
.main_ab_list li {
  padding: var(--m30);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-sm);
  backdrop-filter: blur(10px) brightness(80%);
  -webkit-backdrop-filter: blur(10px) brightness(80%);
  box-shadow: 0 0 16px var(--shadow);

  i {
    font-size: var(--tit);
  }
}
#main_ab.is-full {
  padding: 0;
}
#main_ab.is-full .just-center {
  border-radius: 0;
}

#main_pg {
  width: 100%;
  overflow: hidden;
  padding-top: var(--inPd);
}
.main_pg_con {
  display: flex;
  justify-content: center;
  width: 100%;
  isolation: isolate;
  position: relative;
  margin-top: var(--inPd);
}
.main_pg_con .con {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25%;

  h3 {
    color: var(--main-s);
    font-size: var(--display);
    font-weight: 700;
    background: white;
    padding: 0 2rem;
    margin-bottom: var(--m20);
  }
  > div {
    font-size: var(--lead);
    font-weight: 700;
    margin-bottom: var(--m10);
  }
}
.main_pg_con .con-div {
  border-bottom: 1px solid #d8dae6;
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 50px;
}
.main_pg_con .crown {
  position: absolute;
  top: 50px;
  right: 5%;
  width: 30vw;
  mix-blend-mode: multiply;
  transform: translate(40%, -100%);
  pointer-events: none;
}
.main_pg_div {
  position: relative;
  width: 100%;
  aspect-ratio: 3.8/1;
  margin-top: var(--inPd);
}
.main_pg_bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(100% - 9rem);
  background: url(../img/noblestudio/main_bg2.jpg) no-repeat center / cover;
  background-attachment: fixed;
  z-index: -1;
}
.main_pg_theme {
  background: var(--main-s);
  width: var(--in);
  margin: auto;
  border-radius: var(--border-md);
  padding: 0 var(--m100);
  height: 20rem;
  gap: var(--m40);

  h3 {
    font-size: var(--subTit);
    font-weight: 600;
    margin-top: -1rem;
    line-height: 1.3;
  }
}
.main_pg_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--m40);

  li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  div {
    background: var(--sub);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    aspect-ratio: 1;
    border-radius: 100%;
    font-size: 160%;
    margin-bottom: var(--m10);
  }
}

#main_fa {
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--m100);
}
.visual-col {
  position: relative;
}
.visual-sticky {
  position: sticky;
  top: 10rem;
  height: min(68rem, 50vw);
  border-radius: var(--border-md);
  overflow: hidden;
}
.visual-sticky img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.7s ease,
    transform 1s ease;
}
.visual-sticky img.active {
  opacity: 1;
  transform: scale(1);
}
.visual-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(16, 22, 18, 0.65) 0%,
    rgba(16, 22, 18, 0) 80%
  );
  pointer-events: none;
}
.visual-t {
  position: absolute;
  bottom: 10%;
  left: 7%;
  z-index: 1;
  color: white;
}
.visual-index {
  letter-spacing: 0.08em;
  margin-bottom: var(--m30);
  opacity: 0.8;
}
.visual-label {
  font-weight: 700;
  font-size: var(--display);
}
.progress-rail {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black40);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.progress-dot.active {
  background: var(--black80);
  transform: scale(1.3);
}
.text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.story-block {
  min-height: 68rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.35;
  transition: opacity 0.5s ease;
}
.story-block.active {
  opacity: 1;
}
.story-tagline {
  font-weight: 700;
  color: var(--main-s);
}
.story-desc {
  width: min(50rem, 100%);
  padding-top: var(--m20);
}
.story-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: var(--m40);
}
.story-tag {
  font-size: var(--label);
  font-weight: 500;
  color: var(--main-s);
  border: 1px solid var(--main-s);
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
}

#mq_wrap {
  width: 100%;
  overflow: hidden;
  font-size: clamp(6rem, 10vw, 12rem);
  font-weight: 700;
  text-transform: capitalize;
  color: var(--base);

  img {
    height: clamp(8rem, 6vw, 12rem);
    width: auto;
  }
}
.concernRow {
  display: flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

#main_fi {
  background: url(../img/noblestudio/main_bg3.jpg) no-repeat center / cover;

  .sec-btn {
    display: flex;
    gap: var(--m20);
  }
}
.main_fi_bf {
  padding: var(--m50) var(--m30);
  backdrop-filter: blur(10px) brightness(80%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-md);
  box-shadow: 0 0 16px var(--shadow);
  width: fit-content;
  margin: 0 auto;
}
.main_fi_bf li {
  padding: 0 var(--m50);
  gap: var(--m10);
  text-align: center;

  div {
    font-size: var(--tit);
    margin-bottom: var(--m10);
  }
}
.main_fi_bf li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

#directions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 54rem;
}
.directionsContent {
  background: var(--main-s);
  color: white;
  padding: var(--inPd);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.directionsAddress {
  font-size: var(--lead);
  padding-bottom: var(--m40);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.directionsInfo {
  display: flex;
  gap: 4rem;
  padding: var(--m40) 0;
}
.infoBox {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.infoLabel {
  align-self: flex-start;
  background: white;
  color: var(--main-s);
  border-radius: var(--border-xs);
  padding: 4px 10px;
  font-size: var(--label);
  font-weight: 600;
  margin-bottom: var(--m20);
}
.infoMain {
  font-size: var(--text);
}
.infoNum {
  font-size: var(--subTit);
  font-weight: 700;
}
.infoMain strong {
  display: inline-block;
  min-width: 8rem;
  font-weight: 700;
}
.infoSub {
  font-size: var(--subText);
  opacity: 0.9;
}
.directionsBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 1.4rem 2.4rem;
  color: white;
  font-size: var(--subText);
  font-weight: 600;
  text-decoration: none;
  transition: var(--ease);
}
.directionsBtn:hover {
  background: var(--sub);
}
.directionsBtn span:first-child {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.camIcon {
  font-size: var(--lead);
  font-weight: 400;
}
.directionsMap {
  position: relative;
  overflow: hidden;
}
.directionsMap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 노블스튜디오 서브============================================================ */
#subDisplay {
  position: relative;
  width: 100%;
  height: max(100vh, 56rem);
  overflow: hidden;
}
.subDisplayBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  animation: scaleDown 3s ease-out;
}
@keyframes scaleDown {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.subDisplayOver {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: black;
  opacity: 0.5;
  z-index: -1;
}
#subCate {
  color: white;
  text-shadow: 0 0 10px var(--shadow);
  margin-top: var(--m30);
}
.sdp-tit {
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 700;
  line-height: 1.6;
}
.sdp-add {
  font-size: var(--lead);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--subText);
  color: white;
  width: fit-content;
  margin: 0 auto;
}
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.5);
}

.reveal-wrap {
  margin-bottom: var(--m10);
}
.reveal-text {
  font-size: var(--tit);
  font-weight: 700;
  background: linear-gradient(to right, #000 50%, #e0e0e0 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.as_about_con {
  align-items: center;
}
.as_about_con .left {
  padding: var(--m60) var(--m20) 0 0;
  padding-right: var(--m20);

  img {
    margin: inherit;
  }
  h3 {
    font-size: var(--subTit);
    font-weight: 700;
    margin-top: var(--m30);
  }
  p {
    margin-top: var(--m30);
  }
}
.as_about_con .right {
  padding-left: var(--m20);
  margin-top: var(--m100);
  display: flex;
  gap: var(--m30);

  > div {
    border-radius: var(--border-sm);
    overflow: hidden;
  }
  > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .con_img_left {
    width: calc(75% - var(--m30));
    aspect-ratio: 1;
  }
  .con_img_right {
    width: 25%;
    transform: translateY(-15%);
  }
}

#as_goal {
  background: var(--base);
}
.as_goal_con {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--m60);
}
.as_goal_con .con {
  gap: var(--m30);
  align-items: center;
}
.as_goal_con .left {
  width: 18rem;
  aspect-ratio: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100%;
  padding: 3rem;
}
.as_goal_con .right h4 {
  font-size: var(--lead);
  font-weight: 700;
  margin-bottom: var(--m10);
}

#as_pm .sec-text {
  width: 96%;
  margin: 2rem auto;
}
.as_pm_con {
  position: relative;
  height: clamp(36rem, 30vw, 42rem);
}
.as_pm_con .con {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-md);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.as_pm_con .con_bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.as_pm_con .con_text {
  color: white;
  width: 100%;

  h4 {
    width: 40%;
    font-size: var(--display);
    font-weight: 800;
    text-align: center;
  }
  .right .core {
    font-size: var(--subTit);
    font-weight: 700;
    margin-bottom: var(--m20);
  }
  .right p {
    color: white;
    width: 85%;
  }
}

#sticky_tit_con {
  background: url(../img/noblestudio/about_bg4.jpg) no-repeat center / cover;
  background-attachment: fixed;
}
#sticky_tit_con .inner {
  align-items: flex-start;
}
#sticky_tit_con .sec-hd {
  margin-bottom: 0;
  position: sticky;
  top: var(--inPd);
}
.sticky_con li {
  padding: var(--m60) 0;
  color: white;

  .num {
    width: 4rem;
    aspect-ratio: 1;
    font-size: var(--label);
    font-weight: 600;
    color: white;
    border: 1px solid white;
    border-radius: 100%;
    transition: var(--ease);
  }
  .num.active {
    background: white;
    color: var(--main-s);
  }
  .core {
    font-size: var(--lead);
    font-weight: 700;
    margin-top: var(--m30);
  }
  p {
    margin-top: var(--m20);
    color: white;
  }
}
.sticky_con li:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.ageTabNav {
  display: flex;
  align-items: flex-end;
}
.ageTabNav .ageTabBtn {
  border-radius: var(--border-sm) var(--border-sm) 0 0;
  border: 1px solid var(--border);
  border-bottom: 0;
  padding: 1.2rem 3.6rem;
  color: var(--black40);
  font-weight: 600;
  transition: var(--ease);
}
.ageTabNav .ageTabBtn.active {
  background: var(--main-s);
  color: white;
  padding: 2rem 4rem;
}
.ageTabBody {
  position: relative;
}
.ageTabPanel {
  display: none;
  border: 1px solid var(--border);
  border-radius: 0 var(--border-lg) var(--border-lg) var(--border-lg);
  padding: var(--m40);
  gap: var(--m50);
  align-items: center;
}
.ageTabPanel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ageTabImg {
  border-radius: var(--border-sm);
  overflow: hidden;
}
.ageTabContent {
  padding: 0 var(--m30);

  .ageBadge {
    font-weight: 600;
    color: var(--main-s);
    margin-bottom: var(--m30);
  }
  .ageBadge span {
    background: var(--main-s);
    color: white;
    padding: 5px 10px;
    border-radius: 99px;
  }
  h3 {
    font-size: var(--display);
    font-weight: 800;
    line-height: 1;
  }
  ul {
    font-size: var(--text);
    font-weight: 500;
    margin-top: var(--m20);
  }
  ul li {
    margin-top: 8px;
  }
  ul li i {
    color: var(--main-s);
    font-weight: 400;
  }
}
.ageTabArrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: clamp(4rem, 5vw, 6rem);
  height: clamp(4rem, 5vw, 6rem);
  font-size: var(--lead);
  border-radius: 100%;
  border: 1px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
}
.ageTabArrow:hover {
  background: var(--main-s);
  border-color: var(--main-s);
  color: white;
}

.pg_theme_wrap {
  display: flex;
  gap: var(--m20);
  overflow-x: auto;
  overflow-y: hidden;
}
.pg_theme_wrap li {
  flex: 1;
  aspect-ratio: 1;
  min-width: 26rem;
  border-radius: var(--border-sm);
  overflow: hidden;
  position: relative;
  padding: var(--m30);

  img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
  }
  .pg_theme_text {
    color: white;
    text-shadow: 0 0 2rem rgba(0, 0, 0, 0.65);
  }
  .pg_theme_text h4 {
    font-size: var(--lead);
    font-weight: 700;
    margin-bottom: 0.8rem;
  }
}
.pg_theme_info {
  margin-top: var(--m40);
  border-radius: var(--border-sm);
  box-shadow: 0 0 16px var(--shadow);
  padding: var(--m30);

  .core {
    font-size: var(--lead);
    font-weight: 600;
    margin-bottom: var(--m10);
  }
  .core i {
    color: var(--main-s);
  }
}

#pg_pc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--m20);
}
.pg_pc_con {
  background: var(--base);
  border-radius: var(--border-sm);
  padding: 0 var(--m30) var(--m40);

  .label {
    background: var(--main-s);
    color: white;
    font-size: var(--subTit);
    width: 6rem;
    height: 6rem;
    line-height: 6rem;
    text-align: center;
    border-radius: 0 0 1rem 1rem;
  }
  h4 {
    font-size: var(--lead);
    font-weight: 700;
    margin-top: var(--m40);
    margin-bottom: var(--m20);
  }
}
.co_work {
  border: 1px solid var(--border);
  border-radius: var(--border-md);
  padding: var(--m30);
  align-items: center;
  margin-top: var(--m40);
  gap: var(--m80);

  .img {
    width: 50%;
    border-radius: var(--border-sm);
    overflow: hidden;
  }
  .text h4 {
    font-size: var(--lead);
    font-weight: 700;
    margin-bottom: var(--m30);
  }
  .text_con {
    padding: var(--m30) 0;
  }
  .text_con:first-of-type {
    border-bottom: 1px solid var(--border);
  }
  .text_con .core {
    font-weight: 700;
    margin-bottom: var(--m10);
  }
  .text_con .core > span {
    font-size: var(--label);
    background: var(--main-s);
    color: white;
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    line-height: 2.6rem;
    text-align: center;
    border-radius: 100%;
    margin-right: 6px;
  }
  .ex {
    width: min(46rem, 100%);
  }
}

.sd_if_con_wrap {
  display: flex;
  flex-direction: column;
  gap: var(--m50);
}
.sd_if_con {
  display: flex;
  align-items: center;
  gap: var(--m40);
}
.sd_if_con .left {
  width: 53%;
  border-radius: var(--border-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.sd_if_con .right {
  width: calc(47% - var(--m40));
  padding: var(--m40);

  .ex {
    color: var(--black60);
    font-weight: 500;
    margin-bottom: var(--m20);
  }
  .core {
    font-size: var(--subTit);
    font-weight: 700;
    margin-bottom: var(--m30);
  }
}
.sd_if_con:nth-of-type(2) {
  flex-direction: row-reverse;
}

#sd_ad_bn {
  background: #d4e9fb;

  .inner {
    padding: var(--m100) 20px;
    position: relative;
  }
  .core {
    font-size: var(--subTit);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: var(--m30);
    width: 60%;
  }
  .ex {
    width: 60%;
    opacity: 0.8;
  }
  .img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34%;
  }
}

.thumbSliderWrap {
  position: relative;
}
.mainThumbSwiper {
  border-radius: var(--border-md);
  overflow: hidden;
  margin-bottom: var(--m20);
  width: min(108rem, 100%);
  aspect-ratio: 16/9;
}
.mainThumbSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainThumbSwiper .swiper-slide .label {
  position: absolute;
  top: var(--m30);
  left: var(--m30);
  background: var(--black100);
  color: white;
  border: 1px solid white;
  border-radius: 99px;
  padding: 0.8rem 1.8rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}
.thumbSwiperPrev,
.thumbSwiperNext {
  position: absolute;
  top: 50%;
  transform: translateY(-150%);
  z-index: 10;
}
.thumbSwiperPrev {
  left: var(--m20);
}
.thumbSwiperNext {
  right: var(--m20);
}
.thumbSwiperPrev.swiper-button-disabled,
.thumbSwiperNext.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.subThumbSwiper {
  box-sizing: border-box;
  padding: 0.4rem 0;
  width: min(108rem, 100%);
}
.subThumbSwiper .swiper-slide {
  width: 20%;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--ease);
  border-radius: 0.8rem;
  overflow: hidden;
  border: 2px solid transparent;
}
.subThumbSwiper .swiper-slide img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  display: block;
}
.subThumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--main-s);
}

#fi_about .as_about_con {
  align-items: flex-start;
}
#fi_about .as_about_con .left {
  position: sticky;
  top: 10rem;
  padding: var(--m80) 0;

  .ex {
    margin-top: var(--m30);
    width: min(48rem, 100%);
  }
}
#fi_about .as_about_con .right {
  margin-top: 0;
  padding-left: 0;
  display: block;

  .img {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: var(--m20);
  }
  h4 {
    font-size: var(--lead);
    font-weight: 700;
    margin-top: 700;
    margin-bottom: var(--m10);
  }
  p {
    margin-bottom: var(--m80);
  }
}
#fi_about #pg_pc {
  grid-template-columns: repeat(3, 1fr);
}

#fi_tab {
  display: flex;
  gap: var(--m80);
  align-items: flex-start;
}
#fi_tab .left {
  width: 33%;
  flex-shrink: 0;
  padding-right: var(--m30);
}
.fi_tab_menu li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  font-size: var(--text);
  font-weight: 700;
  color: var(--black40);
  cursor: pointer;
  border-radius: var(--border-sm);
  transition: var(--ease);
}
.fi_tab_menu li .dot {
  display: none;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  border: 3px solid var(--main-s);
  flex-shrink: 0;
}
.fi_tab_menu li.active {
  background: #eff1fb;
  color: var(--main-s);
  padding: 2rem;
}
.fi_tab_menu li.active .dot {
  display: block;
}
.fi_tab_wrap {
  position: relative;
  flex: 1;
  width: calc(67% - var(--m80));
}
.fiMenuSwiper .slideImg {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--border-md);
  overflow: hidden;
}
.fiMenuSwiper .slideText {
  padding: var(--m30);
}
.fiMenuSwiper .slideText h4 {
  font-size: var(--lead);
  font-weight: 700;
  margin-bottom: var(--m10);
}
.fi_tab_wrap .ageTabArrow {
  position: absolute;
  top: 33%;
  right: 0;
  transform: translateX(50%);
  z-index: 10;
}

#fi_rc {
  padding-bottom: var(--inPd);
  display: flex;
  gap: var(--m80);
}
#fi_rc .sec-hd {
  width: 33%;
  padding-right: var(--m30);
}
.fi_rc_list {
  display: flex;
  flex-direction: column;
  gap: var(--m20);
  flex: 1;
}
.fi_rc_list li {
  background: var(--base);
  padding: var(--m30);
  border-radius: 999px;
  font-weight: 500;

  span {
    background: var(--main-s);
    color: white;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    margin-right: 1rem;
  }
}

#fi_pc {
  background: var(--base);
}
.fi_pc_con {
  display: flex;
  gap: var(--m40);
  font-size: var(--lead);
  font-weight: 700;
}
#fi_pc .num_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--m20);
}
#fi_pc .num_wrap::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  background: var(--main-s);
}
#fi_pc .num_wrap li {
  background: white;
  border: 2px solid var(--main-s);
  color: var(--main-s);
  width: 8rem;
  height: 8rem;
  line-height: 8rem;
  border-radius: 100%;
  text-align: center;
  z-index: 1;
}
#fi_pc .text_wrap {
  display: flex;
  flex-direction: column;
  gap: var(--m20);
  flex: 1;
}
#fi_pc .text_wrap .align-center {
  background-color: white;
  border: 1px solid var(--border);
  height: 8rem;
  border-radius: var(--border-sm);
  padding: 6px var(--m30);
  gap: var(--m20);
  transition: var(--ease);

  i {
    color: var(--black40);
  }
  p {
    font-weight: 400;
  }
}
#fi_pc .text_wrap .align-center.active {
  background: var(--main-s);
  color: white;

  p {
    color: inherit;
  }
}

#fi_cta .sec-btn {
  display: flex;
  gap: var(--m10);
  justify-content: center;

  .lineBtn_b {
    border: 1px solid var(--main-s);
    color: var(--main-s);
  }
  .lineBtn_b:hover {
    background: var(--base);
  }
}

/* 개인정보 및 약관 */
#use {
  padding-top: 8rem;
}
.use-tab {
  display: flex;
  gap: 2rem;
  font-size: var(--tit);
  font-weight: 700;
  color: var(--black40);
  margin-bottom: 6rem;

  li.active {
    color: var(--main-s);
  }
}
.use-detail {
  h2 {
    font-size: var(--subTit);
    font-weight: 700;
    margin-bottom: 2rem;
  }
  h3 {
    font-size: var(--lead);
    font-weight: 600;
    margin-top: var(--m40);
  }
  hr {
    margin: 3rem 0;
    opacity: 0.3;
    display: block !important;
  }
  ul {
    padding-left: 1rem;
    line-height: 180%;
    list-style: disc inside !important;
  }
}

/* 모바일 전용 메뉴 */
#menu,
#menuBtn,
#menuAll,
.hd_login_pc {
  display: none;
}
#mobileMenu {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(50rem, 85%);
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 9999;
  pointer-events: none;
}
#mobileMenu.active {
  right: 0;
  opacity: 1;
  pointer-events: auto;
}
.m-menu-modal {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  transition: opacity 0.3s ease;
}
.m-menu-modal.active {
  display: block;
  opacity: 1;
}
.m-menu-wrap {
  background: var(--main-s);
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  box-shadow: -5px 0 15px var(--shadow);
  overflow-y: auto;
}
.mobileMenuHead {
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4%;
  margin-bottom: var(--margin-md);
}
#m_menuClose {
  font-size: var(--subTit);
  color: white;
}
.m-gnb {
  padding: 0 10%;
  margin-top: var(--m20);

  > li {
    border-bottom: 1px solid #ffffff5e;
  }
}
.m-depth1 {
  font-size: clamp(16px, 1.4vw, 2rem);
  font-weight: 600;
  padding: clamp(2rem, 2.4vw, 3rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m-depth2 {
  display: none;
  padding: 0 1.6rem 1.6rem;
}
.m-depth2 li a {
  padding: 8px 4px;
  display: block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  color: rgba(255, 255, 255, 0.8);
}
.m-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.m-depth1.active .m-arrow {
  transform: rotate(180deg);
}
/* 모바일 전용 메뉴 끝 */

/* 반응형1024 */
@media screen and (max-width: 1024px) {
  header {
    padding: 0 0 0 4%;

    #menu,
    #hd_iq {
      display: none;
    }
    .hd_add {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  }

  .main_pg_con {
    justify-content: space-around;
  }
  .main_pg_con .con-div {
    top: 36px;
  }
  .main_pg_con .crown {
    display: none;
  }

  .ageTabNav .ageTabBtn {
    padding: 1.2rem 2.4rem;
    font-size: var(--text);
  }
  .ageTabNav .ageTabBtn.active {
    padding: 1.6rem 2.8rem;
  }
  .ageTabPanel {
    padding: var(--m30);
    gap: var(--m30);
  }
  .ageTabContent {
    padding: 0 var(--m20);
  }

  #fi_tab {
    gap: var(--m50);
  }
  #fi_tab .left {
    width: 38%;
    padding-right: var(--m20);
  }
  .fi_tab_wrap {
    width: calc(62% - var(--m50));
  }
  .fi_tab_menu li {
    padding: 1rem 1.6rem;
  }
  .fi_tab_menu li.active {
    padding: 1.6rem;
  }
}

/* 반응형768 */
@media screen and (max-width: 768px) {
  #aside {
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    border-top-right-radius: var(--border-md);
    border-top-left-radius: var(--border-md);
    border-bottom-left-radius: 0;
  }
  #aside ul {
    display: flex;
    justify-content: space-around;

    i {color: var(--main-s) !important;}
  }

  .scrollIndicator {
    bottom: 10rem;
  }
  #main_ab {
    padding: var(--m40);
    padding-bottom: 0;
  }
  .main_ab_list {
    margin-top: var(--m30);
  }

  .main_pg_con {
    margin-top: var(--m100);
  }
  .main_pg_div {
    margin-top: var(--m100);
  }
  .main_pg_theme {
    height: fit-content;
    padding: var(--m60);
    width: 100%;
    border-radius: 0;
  }
  .main_pg_list {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }

  .story {
    grid-template-columns: 1fr;
  }
  .story .text-col {
    gap: var(--m80);
  }
  .story-block {
    min-height: auto;
  }
  .story-block .mbOnly {
    aspect-ratio: 16/9;
    border-radius: var(--border-md);
    overflow: hidden;
    margin-bottom: var(--m30);
  }

  #directions {
    grid-template-columns: 1fr;
  }
  .directionsContent {
    padding: var(--inPd) var(--m60);
  }
  .directionsMap {
    aspect-ratio: 4/3;
  }

  .ft_con_right {
    margin-top: var(--m40);
  }
  footer {
    margin-bottom: 9rem;
  }

  .as_about_con .right {
    padding-left: 0;
  }
  .as_pm_con .con_text {
    flex-direction: column;
    gap: var(--m80);

    .right {
      text-align: center;
      width: 85%;
    }
  }
  #sticky_tit_con .sec-hd {
    position: static;
  }

  .ageTabNav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ageTabNav::-webkit-scrollbar {
    display: none;
  }
  .ageTabNav .ageTabBtn {
    padding: 1rem 2rem;
    font-size: var(--text-sm, 1.4rem);
    flex-shrink: 0;
  }
  .ageTabNav .ageTabBtn.active {
    padding: 1.4rem 2.4rem;
  }

  .ageTabPanel.active {
    grid-template-columns: 1fr;
    gap: var(--m30);
  }
  .ageTabImg {
    aspect-ratio: 16 / 9;
  }
  .ageTabContent {
    padding: 0;
  }
  #pg_pc {
    grid-template-columns: 1fr;
  }
  .co_work .img {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .sd_if_con, .sd_if_con:nth-of-type(2) {
    flex-direction: column;
    
    .left, .right {
      width: 100%;
    }
  }
  #sd_ad_bn {
    .core, .ex {
      width: 100%;
    }
  }

  #fi_about .as_about_con .left {
    position: static;
  }
  #fi_about #pg_pc {
    grid-template-columns: 1fr;
  }
  #fi_tab {
    flex-direction: column;
    gap: var(--m30);
  }
  #fi_tab .left {
    width: 100%;
    padding-right: 0;
  }
  .fi_tab_menu {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.8rem;
  }
  .fi_tab_menu::-webkit-scrollbar {
    display: none;
  }
  .fi_tab_menu li {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 1rem 1.6rem;
    font-size: var(--text-sm, 1.4rem);
  }
  .fi_tab_menu li.active {
    padding: 1.2rem 1.8rem;
  }
  .fi_tab_wrap {
    width: 100%;
  }
  .fi_tab_wrap .ageTabArrow {
    top: 30%;
    right: 0;
    transform: translate(50%, 50%);
    width: 4rem;
    height: 4rem;
  }
  #fi_rc {
    flex-direction: column;
    gap: 0;
  }
  #fi_rc .sec-hd {
    width: 100%;
  }
  #fi_pc .text_wrap .align-center {
    flex-direction: column;
    gap: 0;
    justify-content: center;
    align-items: baseline;

    i {display: none;}
  }
}

/* 반응형500 */
@media screen and (max-width: 500px) {
  .introBox a {
    h2 span {
      display: block;
      margin-top: var(--m20);
    }
  }

  .directionsInfo {
    flex-direction: column;
  }
  .infoBox {
    width: 100%;
  }

  .as_goal_con {
    grid-template-columns: 1fr;
  }
  .as_goal_con .con {
    flex-direction: row;
  }
}

/* 반응형425 */
@media screen and (max-width: 425px) {
}
