@import url('reset.css');

:root {
  --bk: #000;
  --wh: #E4E4E4;
  --p: #FF719B;
  --g: #75DAB8;
}

@media screen and (max-width: 1024px) {
  :root {

  }
}

html,
body {
  background: var(--bk);
  color: var(--wh);
  font-family: 'IBM Plex Sans', 'Noto Sans KR', sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.14px;
  line-height: normal;
  background: var(--bk);

  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}

#wrap {
  position: relative;
  background: var(--bk);
}

.container {
  position: relative;
  padding: 30px 40px;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0;
  }
}

.bg {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
  transition: opacity 200ms linear;
}

.bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 300ms linear;

}

.bg:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.terminal-wrapper {
  position: fixed;
  z-index: 99;
  top: 30px;
  left: 40px;
  line-height: 150%;
  width: 270px;
  pointer-events: none;
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .bg:after {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .terminal-wrapper {
    width: 0;
    height: 0;
    opacity: 0 !important;
    overflow: hidden;
  }
}

.terminal-top {
  margin-bottom: 21px;
  min-height: 21px;
}

.color-p {
  color: var(--p);
}

.color-g {
  color: var(--g);
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--wh);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.frame {
  position: relative;
  z-index: 97;
  margin: 0 auto;
  padding: 108px 78px 0;
  width: 588px;
  height: 960px;
  transition: width 250ms linear, height 250ms linear;
}

.screen {
  position: relative;
  z-index: 5;
  width: 431px;
  height: 323px;
  background: var(--bk);
}

.frame-intro + .screen {
  z-index: 15;
}

.frame-m {
  display: none;
}

@media screen and (max-width: 1024px) {
  .frame {
    position: relative;
    z-index: 9999;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100svh;

    display: flex;
    flex-direction: column;
  }

  .screen {
    width: 100%;
    height: auto;
    flex: 1;
    background: transparent;
  }

  .frame-m {
    position: relative;
    z-index: 999;
    display: block;
    width: 100%;
  }
}

.screen:before {
  content: " ";
  display: block;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

.screen:after {
  content: " ";
  display: block;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, .1);
  opacity: 0;
  pointer-events: none;
  animation: flicker .15s infinite;

  will-change: opacity;
  transform: translateZ(0); /* GPU 레이어 생성 */
}

/* 애니메이션 최적화 */
@media (prefers-reduced-motion: reduce) {
  .screen:after {
    animation: none !important;
  }
}

@keyframes flicker {
  0% {
    opacity: 0.87;
  }
  5% {
    opacity: 0.22;
  }
  10% {
    opacity: 0.61;
  }
  15% {
    opacity: 0.38;
  }
  20% {
    opacity: 0.94;
  }
  25% {
    opacity: 0.51;
  }
  30% {
    opacity: 0.76;
  }
  35% {
    opacity: 0.12;
  }
  40% {
    opacity: 0.65;
  }
  45% {
    opacity: 0.47;
  }
  50% {
    opacity: 0.89;
  }
  55% {
    opacity: 0.33;
  }
  60% {
    opacity: 0.71;
  }
  65% {
    opacity: 0.18;
  }
  70% {
    opacity: 0.56;
  }
  75% {
    opacity: 0.97;
  }
  80% {
    opacity: 0.41;
  }
  85% {
    opacity: 0.68;
  }
  90% {
    opacity: 0.29;
  }
  95% {
    opacity: 0.83;
  }
  100% {
    opacity: 0.5;
  }
}

.screen-inner {
  position: relative;
  z-index: 7;
  width: 100%;
  height: 100%;
}

.screen-inner:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  box-shadow: 0 0 6px 0 #000 inset;
  pointer-events: none;
}

/*intro*/
.intro {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: var(--bk);
  pointer-events: none;
}

.intro * {
  opacity: 0;
}

.intro.ready {
  pointer-events: visible;
}

.intro.ready * {
  opacity: 1;
}

.intro-video-cover {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: var(--bk);

  display: flex;
  justify-content: center;
  align-items: center;

  pointer-events: visible;
}

.intro-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.intro-text {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--wh);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.32px;
  animation: blink 1s infinite;

  display: none;
}

.intro.ready .intro-text {
  display: block;
}

@media screen and (max-width: 1024px) {
  .intro-text {
    bottom: 40px;
  }
}

.intro.set .intro-text {
  display: none;
}

.frame-intro {
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  width: 588px;
  height: 960px;
}

.frame-intro video {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .frame-intro {
    display: none;
  }
}

/*main*/
.header {
  position: relative;
  width: 100%;

}

.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 60px;
}

.header .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.time {
  height: 19px;
}

.time,
.time * {
  font-weight: 500;
}

.colon {
  display: inline-block;
  opacity: 1;
  transition: opacity 100ms;
}

.colon.blink {
  opacity: 0;
}

.gnb {
  display: flex;
  column-gap: 12px;
  height: 19px;
}

.menu-wrapper {
  padding: 16px 20px 20px;
  width: 100%;
  overflow: hidden;
}

.menu-wrapper .menu-item {
  position: relative;
  padding-bottom: 20px;
  width: 180px;
  text-align: center;
}

.menu-item span {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 500;
  line-height: 150%;
}

.menu-item-img {
  padding: 8px;
  border: 2px solid var(--bk);

  cursor: pointer;
}

.menu-item img {
  width: 160px;
}

.menu-item-img img:first-child {
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.menu-item.on .menu-item-img {
  border: 2px solid var(--g);
}

.menu-item.on span {
  color: var(--g);
}

.menu .swiper-pagination {
  display: none;
}

@media screen and (max-width: 1024px) {
  .main {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .menu-wrapper {
    padding: 0;
    height: calc(100% - 60px);
  }

  .menu-wrapper .menu-item {
    padding-bottom: 0;
    width: 260px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .menu-item span {
    display: inline-flex;
    margin-top: -59px;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 135%;
  }

  .menu-item-img {
    padding: 0;
    border: 0;

    transform: scale(1);

    transition: transform 150ms linear;
  }

  .swiper-slide.menu-item:not(.swiper-slide-active) .menu-item-img {
    transform: scale(0.75);
  }

  .menu-item img {
    width: 260px;
  }

  .menu .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;

    top: 50%;
    transform: translateY(168px);
  }

  .menu .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    width: 6px;
    height: 6px;
    opacity: 0.3;
  }

  .menu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    opacity: 1;
  }

  .menu-item.on .menu-item-img {
    border: 0;
  }

  .menu-item.on span {
    color: var(--wh);
  }
}

/*cont*/
.pages {
  width: 100%;
  height: 100%;
}

.header--m {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pages {
    position: relative;
    z-index: 1;
  }

  .header--m {
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
  }

  .frame-zoom-in .header--m {
    display: flex;
  }
}

.page-cont {
  display: none;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.page-cont::-webkit-scrollbar {
  display: none;
}

.page-cont-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.page-cont-cover {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 1;
  pointer-events: none;
  transition: opacity 300ms linear;
}

.page-cont-cover-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.page-cont-cover.fade-out {
  opacity: 0;
}

.page-cont.show .page-cont-cover {
  opacity: 1;
}

.page-cont.show .page-cont-cover.fade-out {
  opacity: 0;
}

.page-cont-top {
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 0 0;
}

.cont-back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  cursor: pointer;
}

.page-cont-logo {
  margin: auto;
  width: fit-content;
}

.vision .page-cont-logo {
  width: 210px;
}

.service .page-cont-logo {
  width: 264px;
}

.page-cont-text {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--g);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.32px;
  animation: blink 1s infinite;
}

.page-cont-inner .page-cont-text,
.page-cont-cover-inner .page-cont-text {
  bottom: 57px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  animation: none;
}

@media screen and (max-width: 1024px) {
  .page-cont-inner {
    height: 100%;
  }

  .page-cont-inner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service .page-cont-inner {
    overflow: hidden;
  }

  .page-cont-top {
    padding: 20px 0 0;
  }

  .page-cont-logo {
    display: none;
  }

  .vision .page-cont-logo {
    display: block;
    width: 84px;
  }

  .service .page-cont-logo {
    display: block;
    width: 124px;
  }

  .cont-back-btn {
    display: none;
    top: 5px;
    left: 10px;
  }

  /*.back-btn svg {*/
  /*    width: 60px;*/
  /*    height: 61px;*/
  /*}*/
  .page-cont-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.32px;
  }

  .page-cont-inner .page-cont-text,
  .page-cont-cover-inner .page-cont-text {
    bottom: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.32px;
    animation: none;
  }
}

.page-cont-bottom {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.page-cont-bottom-inner {
  position: relative;
  z-index: 12;
  width: 100%;
  height: 100%;
}

.pcb-bg {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pcb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*works*/
.works-back-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.cont-top {
  padding: 40px;
}

.cont-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.2px;
  white-space: pre-wrap;
}

.cont-info {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.12px;
  white-space: pre-wrap;
}

.cont-desc {
  line-height: 140%;
  white-space: pre-wrap;
}

@media screen and (max-width: 1024px) {
  .works-back-btn {
    display: none;
  }

  .cont-top {
    padding: 80px 20px 40px;
  }

  .cont-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.12px;
  }
}

.work-list-wrapper {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  padding: 0 0 20px 40px;
  height: 100svh;

  opacity: 0;
  pointer-events: none;
}

.work-list {
  padding-top: 50svh;
  height: 100%;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.work-list::-webkit-scrollbar {
  display: none;
}

.work-item {
  position: relative;
  opacity: 0.2;

  transform: translateX(-100%);
  transition: transform 300ms linear;
}

.work-item.slide-in {
  transform: translateX(0);
}

.work-item.adjacent {
  opacity: 0.7;
}

.work-item + .work-item {
  margin-top: 20px;
}

.work-thumb-wrapper {
  position: relative;
  width: 280px;
}

.work-thumb {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.work-item-title {
  flex: 1;
  margin-top: 8px;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.12px;
}

.work-item.on {
  padding-left: calc(24px + 10px);
  opacity: 1;
}

.work-item.on:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-right: 10px;
  width: 24px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 20.5L16 12.5L8 4.5V20.5Z' fill='white'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: translateY(-50%);
}

.work-item.on .work-thumb {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .work-list-wrapper {
    display: none;
  }
}

/*zoom-in*/
#wrap.frame-zoom-in .main {
  display: none;
}

#wrap.frame-zoom-in .page-cont.show {
  display: block;
}

#wrap.active-works .work-list-wrapper {
  opacity: 1;
  pointer-events: visible;
}

@media screen and (min-width: 1025px) {
  #wrap.frame-zoom-in {
    height: 100svh;
    overflow: hidden;
  }

  #wrap.frame-zoom-in .container {
    display: block;
  }

  #wrap.frame-zoom-in .frame {
    padding: 195px 142px 0;
    width: 1070px;
    height: 1750px;
  }

  #wrap.frame-zoom-in .frame .screen {
    opacity: 0;
    width: 786px;
    height: 590px;
  }

  .screen.hide {
    opacity: 0;
  }

  #wrap.frame-zoom-in .screen.popup {
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  #wrap.active-works .screen {
    height: calc(100svh - var(--frame-h));
  }

  #wrap.active-works.layer-open .frame {
    pointer-events: visible;
  }

  #wrap.active-works.layer-open .screen {
    opacity: 1;
  }

  .page-cont.works {
    background: var(--bk);
    overflow-y: hidden;
  }

  #wrap.active-works .work-list-wrapper {
    display: none;
  }
}

.work-list-cover {
  display: none;
}

@media screen and (max-width: 1024px) {
  .work-list-cover {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100svh - var(--frame-h));
    display: block;
    background: var(--bk);
  }

  .work-list-cover-inner {
    width: 100%;
    height: 100%;
  }

  .work-list-cover-inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-right: 0;
    margin-top: -20px;
    width: 24px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 20.5L16 12.5L8 4.5V20.5Z' fill='white'/%3E%3C/svg%3E%0A");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: translateY(-50%);
  }

  .work-list-m-wrapper {
    width: 100%;
    height: 100%;
  }

  .work-item-m {
    width: 100%;
    height: 206px;
    opacity: 0.7;
  }

  .work-item-m .work-thumb-wrapper {
    margin: auto;
    width: 280px;
  }

  .work-item-m .work-item-title {
    margin: 8px auto 0;
    width: 280px;
  }

  .work-item-m.swiper-slide-active {
    position: relative;
    opacity: 1;
  }

  .work-item-m:first-child:before {
    display: none !important;
  }

  .work-item-m.swiper-slide-active .work-thumb-wrapper .work-cover {
    opacity: 0;
  }

  .work-item-m.swiper-slide-active .work-thumb-wrapper .work-thumb {
    opacity: 1;
  }

  .works-title--m {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 206px;
  }

  .works-title--m img {
    width: 170px;
  }

  .work-cont-wrapper {
    height: 100%;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .work-cont-wrapper::-webkit-scrollbar {
    display: none;
  }
}

/*vision*/
.vision-cont-wrapper {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vision-cont-item {
  display: none;
  width: 100%;
}

.vision-cont-item.on {
  display: block;
}

.vision-cont-char {
  width: 360px;
}

.cont-text {
  position: relative;
  padding: 20px 50px 20px 24px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #75DAB8;
  background: rgba(41, 41, 41, 0.50);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.cont-text:after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 20L16 12L8 4V20Z' fill='white'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  animation: posCh 650ms ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes posCh {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  100% {
    transform: translateY(-50%) translateX(4px);
  }
}

.cont-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.cont-text p strong {
  display: inline;
  color: var(--g);
}

@media screen and (max-width: 1024px) {
  .cont-text p {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.14px;
  }
}

.vision-cont-item:last-child .cont-text:after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='6' fill='white'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  animation: scaleCh 650ms ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes scaleCh {
  0% {
    transform: translateY(-50%) scale(1);
  }
  100% {
    transform: translateY(-50%) scale(0.75);
  }
}

/*service*/
.service-cont-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-cont-cover-inner {
  padding: 0 40px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.scc .service-cont-char {
  width: 360px;
}

.service-cont-wrapper .service-cont-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-cont-wrapper.service-step--1 .service-cont-cover {
  opacity: 1;
  pointer-events: visible;
}

.service-cont-wrapper.service-step--1 .service-cont-inner {
  opacity: 0;
  pointer-events: none;
}

.service-cont-wrapper.service-step--2 .service-cont-cover {
  opacity: 0;
  pointer-events: none;
}

.service-cont-wrapper.service-step--2 .service-cont-inner {
  opacity: 1;
  pointer-events: visible;
}

.service .page-cont-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 40px 40px;
}

.service-char-list {
  width: 100%;
}

.service-char-list-inner {
  display: flex;
  align-items: flex-end;
  column-gap: 40px;
  width: 100%;
}

.service-char-item {
  cursor: pointer;
}

.service-char-item.on {

}

.service-char-name {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.14px;
  text-align: center;
}

.service-char-text {
  margin-top: 32px;
}

.service-cont-text:after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 20L16 12L8 4V20Z' fill='white'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-char-img {
  position: relative;
}

.service-char-img .char-on {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.service-char-img .char-off {
  opacity: 1;
}

.service-char-item .service-char-name {
  opacity: 0.2;
}

.service-char-item.on .service-char-name {
  opacity: 1;
}

.service-char-item.on .service-char-img .char-on {
  opacity: 1;
}

.service-char-item.on .service-char-img .char-off {
  opacity: 0;
}

.pc-img {
  display: block;
}

.m-img {
  display: none;
}

@media screen and (max-width: 1024px) {
  .page-cont-cover-inner {
    background: var(--bk);
  }

  .etc .page-cont-inner {
    background: var(--bk);
  }

  .pc-img {
    display: none;
  }

  .m-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .vision-cont-wrapper {
    padding: 0 16px 24px;
  }

  .vision-cont-char {
    /*margin: auto;*/
    width: 288px;
  }

  .vision .cont-text {
    min-height: 137px;
  }

  .service .service-cont-cover-inner {
    padding: 24px 20px;
  }

  .scc .service-cont-char {
    margin: auto;
    width: 288px;
  }

  .service .page-cont-bottom-inner {
    padding: 0 20px 24px;
  }
}

.service-cont-inner--pc {
  display: block;
}

.service-cont-inner--m {
  display: none;
}

@media screen and (max-width: 1024px) {
  .service-cont-wrapper {
    width: 100%;
  }

  .service-cont-inner--pc {
    display: none;
  }

  .service-cont-inner--m {
    display: block;
  }

  .service-cont-inner--m .swiper-slide {
    width: 200px;
  }

  .service-char-list--m {
    align-items: flex-end;
  }

  .cont-text {
    padding: 16px 53px 16px 16px;
  }

  .vision .page-cont-logo,
  .service .page-cont-logo {
    display: none !important;
  }

  .service-char-text {
    margin-top: 18px;
  }

  .etc .page-cont-inner {
    height: calc(100svh - var(--frame-h));
  }
}

/*add*/
.sound-btn {
  cursor: pointer;
}

.sound-btn .icon-sound-on {
  display: block;
}

.sound-btn .icon-sound-off {
  display: none;
}

.sound-btn--m {
  display: none;
}

@media screen and (max-width: 1024px) {
  .time {
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .sound-btn--m {
    display: flex;
    align-items: center;
    column-gap: 4px;
  }

  .gnb-item.sound-btn {
    display: none;
  }
}

/*frame*/
.clickable-area {
  pointer-events: all;
}

.frame-m img {
  position: relative;
  z-index: 1;
}

.frame-m-cover {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.frame-pc-cover svg *,
.frame-m-cover * {
  opacity: 0;
}

.frame-m-img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.frame-m-img img {
  display: none;
}

.frame-m-img img.on {
  display: block;
}

.frame-pc {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

.frame-pc-inner {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.frame-pc-inner > img {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.frame-pc-img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.frame-pc-img img {
  display: none;
}

.frame-pc-img img.on {
  display: block;
}

.frame-pc-cover {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .frame-pc {
    display: none;
  }
}

.crt-effect {
  position: absolute;
  z-index: 0;
  top: 100px;
  width: 100%;
  height: 338px;
  background: var(--bk);
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: height 400ms linear;
}

.frame-zoom-in .crt-effect {
  height: 818px;
  opacity: 1;
}

.crt-effect-top,
.crt-effect-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--bk);
}

.crt-effect-top {
  top: 0;
  transform-origin: center bottom;
}

.crt-effect-bottom {
  bottom: 0;
  transform-origin: center top;
}

.crt-turn-on .crt-effect-top {
  animation: crtOpenTop 400ms cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

.crt-turn-on .crt-effect-bottom {
  animation: crtOpenBottom 400ms cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

.crt-turn-off .crt-effect-top {
  animation: crtCloseTop 350ms cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

.crt-turn-off .crt-effect-bottom {
  animation: crtCloseBottom 350ms cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

@keyframes crtOpenTop {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}

@keyframes crtOpenBottom {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}

@keyframes crtCloseTop {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes crtCloseBottom {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

/* turn-on 시 라인 - 중앙에서 양쪽으로 확장되며 사라짐 */
.crt-effect.crt-turn-on::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--wh);
  transform: translate(-50%, -50%);
  animation: crtLineOpen 400ms ease-out forwards;
}

/* turn-off 시 라인 - 양쪽에서 중앙으로 수축 */
.crt-effect.crt-turn-off::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--wh);
  transform: translate(-50%, -50%);
  animation: crtLineClose 350ms ease-in forwards;
}

/* turn-on 라인 애니메이션 - 0에서 100%로 */
@keyframes crtLineOpen {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

/* turn-off 라인 애니메이션 - 100%에서 0으로 */
@keyframes crtLineClose {
  0% {
    width: 100%;
    opacity: 0;
  }
  50% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 0;
    opacity: 1;
  }
}

#wrap.sq .screen {
  pointer-events: none;
}

.lang-btn {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.gnb-item {
  cursor: pointer;
}

.lang-btn a {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.lang-btn a.is-active {
  display: none;
}

.gnb-item > a {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.gnb-item > a.is-active {
  display: none;
}
