@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Hahmlet:wght@100..900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
  --min-w: 1176px;
  --min-h: 792px;
}

html {
  overflow-x: hidden;
  width: 100%;
  height: auto;
  min-width:  var(--min-w);
  min-height: var(--min-h);
}

body {
  font-family: "Hahmlet", serif;
  font-weight: 100;
  background-color: #080a0e;
  /* overflow-x: hidden; */
  width: 100%;
  height: auto;
  min-width:  var(--min-w);
  min-height: var(--min-h);
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

#intro-overlay {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw; 
  height: 100vh;
  background-image: url('../img/intro_bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;   
  background-color: #080a0e;
  display: grid;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: url('../img/custom_cursor.svg') 16 16, auto;
  opacity: 1;
  transition: opacity 0.7s ease;
  text-align: center;
  font-size: 28px;
  color: #fff;
  font-weight: 100;
  line-height: 150%;
}
#intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}
#intro-overlay .intro-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; 
}
#intro-overlay .logo {
  width: 290px;
  height: auto;
  margin-bottom: 40px;
}
#intro-overlay .intro-button {
  margin-top: 32px;
  font-size: 18px;
  height: 64px;
  background-color: #171717;
  padding-left: 24px;
  padding-right: 20px;
  gap: 12px;
  font-weight: 300;
  color: #ffffffB3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;

}
#intro-overlay .intro-button img {
  width: 16px;
  height: 16px;
}
#intro-overlay #intro-button-lottie{
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

.gnb {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 999;
}
.gnb-logo {
  width: 192px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
}
.gnb-icons {
  display: flex;
  gap: 24px;
  align-items: center;
}
.gnb-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.gnb-bar {
  width: 1px;
  height: 12px;
  background-color: #fff;
  opacity: 0.3;
}

.lnb {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
  gap: 24px;
  z-index: 998;
}
.lnb-item-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 27px;
  transition: background-color .2s ease;
}
.lnb-item {
  font-size: clamp(
    17px,
    calc(17px + (100vw - 1920px) / 240),
    25px
  ); 
  font-weight: 300;
  line-height: 160%;
  color: #fff;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.lnb-item-group.active {
  background-color: #15191e;
}
.lnb-item-group.active .lnb-item,
.lnb-item-group:hover .lnb-item {
  opacity: 1;
}
.lnb-item-group.active .lnb-subtitle,
.lnb-item-group:hover .lnb-subtitle {
  opacity: 0.9;
}
.lnb-item:last-child {
  margin-bottom: 0;
}
.lnb-subtitle {
  font-size: clamp(
    13px,
    calc(13px + (100vw - 1920px) / 240),
    19px
  ); 
  color: #fff;
  line-height: 180%;
  font-weight: 200;
  opacity: 0.7;
}
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-backdrop .modal-close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  cursor: pointer;
  z-index: 10000;
}
.video-modal-backdrop .video-modal-content {
  width: 984px;
  /* height: 77.7778vh; */
  background-color: #171719;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 40px;
}
.video-modal-backdrop .video-modal-content .video-player {
  width: 904px;
  height: 509px;
}
.video-modal-backdrop .video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal-backdrop .video-modal-content .video-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: white;
  text-align: left;
  width: 100%;
  margin-top: 40px;
}
.video-modal-backdrop .video-modal-content .video-description .video-subtitle {
  font-size: 14px;
  font-weight: 100;
  opacity: 0.7;
}
.video-modal-backdrop .video-modal-content .video-description .video-title {
  font-size: 26px;
  font-weight: 300;
}
.video-modal-backdrop .video-modal-content .video-description .video-text {
  font-size: 16px;
  font-weight: 100;
  line-height: 160%;
  opacity: 0.7;
  overflow-y: auto;
}
.fixed-button {
  all: unset;
  position: fixed;
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  z-index: 9999;
  font-weight: 100;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-family: "Pretendard", sans-serif;
}
.audio-button {
  all: unset;
  background-color: #15191e;
  color: #fff;
  height: 56px;
  padding: 0px 32px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.4s ease;
  font-family: "Pretendard", sans-serif;
}

.fixed-button.show {
  display: flex;
  opacity: 1;
}
.fixed-button.hide {
  opacity: 0;
}
.prev-next-button {
  all: unset;
  background-color: #15191e;
  color: #fff;
  height: 56px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  opacity: 1;
  gap: 16px;
  transition: opacity 0.4s ease;
  font-family: "Pretendard", sans-serif;
}
.prev-next-button .divider {
  width: 1px;
  height: 12px;
  background-color: #fff;
  opacity: 0.1;
}
.prev-next-button .prev-button, .prev-next-button .next-button {
  cursor: pointer;
}
.prev-next-button .disabled {
  opacity: .35; 
  pointer-events: none;
  cursor: none;
}
.prev-next-button.hidden { 
  opacity: 0;
  pointer-events: none;
}
.section {
  width: 100vw;
  min-height: 100vh;
  background-color: #080a0e;
}
.section .quote-mark {
  font-size: 32px;
}
.section .sticky-container {
  position: sticky;
  top: 0;
}
.section .sticky-container .section-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding-left: 15vw;
  display: flex;
  align-items: center;
  color: #fff;
  line-height: 1.6em;
  text-align: left;
  font-size: clamp(
    18px,
    calc(18px + (100vw - 1920px) / 240),
    26px
  ); 
  background-size: auto 100%;
  background-position: 50%;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  pointer-events: none;
}
.section .sticky-container .section-item.active {
  opacity: 1;
  z-index: 2;
}
.section .sticky-container .section-item .desc-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 0.8s ease;
}
.section .sticky-container .section-item .desc-line.shown {
  opacity: 1;
  transform: translateY(0);
}
.section .list-container .section-item {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: 50%;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  pointer-events: none;
  background-attachment: fixed;
}
.section .title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 64px;
  font-weight: 100;
  color: white;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.section .title-container .circle {
  width: 72px;
  height: 72px;
  position: relative;
  margin-bottom: 8px;
  z-index: 10;
}
.section .title-container .title,
.section .title-container .desc {
  position: relative;
  line-height: 150%;
  z-index: 10;
}
.section .title-container .desc {
  font-size: 20px;
  font-weight: 200;
}
.section .title-container .bg-text {
  position: absolute;
  right: 0;
  z-index: -1;
  padding-top: 40vh;
}
.section-desc .desc-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 0.8s ease;
}
.section-0 {
  background-image: url('../img/night_sky.jpg');
  background-position: 50%;
  background-size: cover;
}
/* scroll-down lottie: 화면 중앙 하단 고정 */
#scroll-down-lottie {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(env(safe-area-inset-bottom, 0px) + 32px); /* iOS 안전영역 고려 */
  width: 56px;
  z-index: 1000;
  pointer-events: none; /* 터치/클릭 방해 금지 */
  opacity: 1;
  transition: opacity .25s ease, transform .25s ease;
}
#scroll-down-lottie.is-hidden {
  opacity: 0;
  transform: translate(-50%, 12px); /* 살짝 내려가며 페이드아웃 */
}

.section-1 .effect-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.section-1 .active .effect-video {
  opacity: 1;
}
.section-1 .section-item {
  opacity: 1;
  transition: opacity 1s;
}
.section-1 .section-item.fade-out {
  opacity: 0 !important;
  pointer-events: none;
}
.section-1 .section-item-5 .section-desc {
  z-index: 4;
}

.section-2 .section-item {
  opacity: 1 !important;
  transition: opacity 0.5s !important;
  background-color: #080A0E;
  top: 0;
  background-size: cover !important;
}
.section-2 .section-item .desc {
  display: flex;
  flex-direction: column;
}
.section-2 .section-item-0{
  transform: translateY(calc(var(--tyBase0, 0px) + var(--tyPush0, 0px)));
  will-change: transform;
}
.section-2 .section-item-1 {
  transform: translateY(calc(var(--tyBase, 0px) + var(--tyPush, 0px)));
  will-change: transform;
}
.section-2 .desc {
  z-index: 1;
}
.section-2 .emperor-img {
  position: absolute;
  top: 0;
  width: 50vw;
  left: 25%;
  /* transform: translate(-50%, -50%); */
  transform: translateX(-50%);
  transform-origin: 50% 0%;   
  filter: brightness(0.5);
  transition: filter 0.2s ease-in;
  will-change: transform, filter;
}
.section-2 .sykkarad-behind-img {
  position: absolute;
  width: 100vw;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: transform 0 s ease-in;
}

.section-item-0.active .sykkarad-behind-img {
  /* 활성화 시 원래 위치로 */
  transform: translateY(0%);
}

.section-3 .desc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  padding-left: 15vw;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  line-height: 1.6em;
  text-align: left;
  font-size: clamp(
    18px,
    calc(18px + (100vw - 1920px) / 240),
    26px
  ); 
  background-size: cover;
  background-position: 50%;
  pointer-events: none;
  z-index: 11;
}
.section-3 .list-container img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-3 .list-container .section-item {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 10;
}
.section-3 .section-item {
  flex: 100vw 0 0 !important;
  height: 100vh;
  background-size: cover;
}
.section-3 .class-video.overlay {
  flex: 100vw 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  background: #000;
}
.section-3 .sticky-wrap {
  position: relative;
  height: 300vh;
}
.section-3 .sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-3 .sticky-content .list-container {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.section-3 .sticky-content .list-container .overlay-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  /* width: 100vw; */
  z-index: 10;
  overflow: hidden;
}
.section-3 .sticky-content .list-container .overlay-img img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  /* -o-object-position: left top;
     object-position: left top; */
}
.section-3 .sticky-content .list-container video.class-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.section-5 {
  position: relative;
  width: 100vw;
}
.section-5 .list-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.section-5 .list-container .section-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: 50%;
  transition: left 0.5s ease-in;
  z-index: 1;
  pointer-events: none;
}
.section-5 .list-container .section-item.active {
  z-index: 2;
}
.section-5 .list-container .bg-video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}
.section-5 .list-container .section-item .world-desc {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 16px 24px 20px 24px;
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  line-height: 160%;
}
.section-5 .list-container .section-item .world-desc .title {
  font-size: clamp(
    26px,
    calc(24px + (100vw - 1920px) / 240),
    36px
  ); 
  font-weight: 300;
  margin-bottom: 12px;
}
.section-5 .list-container .section-item .world-desc .desc-detail {
  font-size: clamp(
    18px,
    calc(16px + (100vw - 1920px) / 240),
    26px
  ); 
  font-family: 'Pretendard', sans-serif;
}

.section-sykkarad .list-container {
  text-align: center;
}
.section-sykkarad .list-container .img {
  width: 100vw;
}

.section-7 .sticky-container {
  z-index: 100;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  pointer-events: none;
}
.section-7 .sticky-container .text {
  font-size: clamp(
    18px,
    calc(16px + (100vw - 1920px) / 240),
    26px
  ); 
  font-weight: 100;
  text-align: center;
  line-height: 160%;
}
.section-7 .sticky-container .text .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 0.8s ease;
}
.section-7 .sticky-container .text.show .line {
  opacity: 1;
  transform: translateY(0);
}
.section-7 .img-list-container {
  display: flex;
  flex-direction: column;
  gap: 30vh;
  position: relative;
}
.section-7 .img-overlay {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0); /* 초기 위치 */
  will-change: transform;
  z-index: 1000;
  pointer-events: none;
}
.section-7 .video-wrapper {
  position: relative;
  display: block;
  margin: 0 auto;
  z-index: 0;
}
.section-7 .video-wrapper.right {
  left: 20%;
}
.section-7 .video-wrapper.left {
  right: 20%;
}
.section-7 .video-wrapper.to-wide {
  position: sticky;
  left: 50vw;
  top: 0;
  z-index: 10;
}
.section-7 .video-wrapper.to-wide .content-video.fixed {
  position: fixed;
  top: 0;
  left: 50vw;
  transform: translateY(-50%);
  transform-origin: left center;
  width: auto !important;
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: center center;
  z-index: 1000;
}
.section-7 .video-wrapper .content-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.section-7 .video-wrapper video.video-1 {
  position: relative;
  width: 744px;
  height: 456px;
}
.section-7 .video-wrapper video.video-2 {
  position: relative;
  width: 456px;
  height: 744px;
}
.section-7 .video-wrapper video.video-3 {
  position: relative;
  width: 648px;
  height: 552px;
}
.section-7 .video-wrapper video.video-4 {
  position: relative;
  width: 744px;
  height: 456px;
}
.section-7 .video-wrapper video.video-5 {
  position: relative;
  width: 456px;
  height: 744px;
}
.section-7 .video-wrapper video.video-6 {
  position: relative;
  width: 744px;
  height: 456px;
}
.section-7 .video-wrapper video.video-7 {
  position: relative;
  width: 648px;
  height: 552px;
  transition: all 0.4s ease-in-out;
}
.section-7 .video-wrapper .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.section-7 .video-wrapper .overlay .overlay-text {
  text-align: center;
  padding-top: 2vh;
  font-size: 30px;
  font-weight: 400;
}
.section-7 .video-wrapper .overlay .overlay-sub-text {
  text-align: center;
  padding-top: 1vh;
  font-size: 18px;
  line-height: 160%;
  font-weight: 200;
  font-family: 'Pretendard', sans-serif;
}
.section-7 .video-wrapper .overlay .overlay-icon {
  width: 22px;
  height: 22px;
  margin-top: 34px;
}
.section-7 .video-wrapper:hover .overlay {
  opacity: 1;
  pointer-events: auto;
  /* cursor: pointer; */
}

.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.section-9 .class-container {
  position: sticky;
  top: 0;
  background-color: #080a0e;
  display: flex;
  color: white;
  height: 100vh;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transition: transform 0.3s ease;
}
.section-9 .class-container .left-side {
  flex: 0 0 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  min-width: 0;
}
.section-9 .class-container .left-side .text-container {
  font-size: clamp(
    18px,
    calc(16px + (100vw - 1920px) / 240),
    26px
  );
  line-height: 160%;
  color: #fff;
  will-change: transform;
  transition: transform 0.4s ease-out;
  font-family: 'Pretendard', sans-serif;
}
.section-9 .class-container .left-side .text-container.margin-left {
  margin-left: 15%;
}
.section-9 .class-container .left-side .text-container .class-icon {
  margin-bottom: 8px;
}
.section-9 .class-container .left-side .text-container .class-icon img {
  width: 48px;
  height: 48px;
}
.section-9 .class-container .left-side .text-container .class-title {
  color: #fff;
  font-weight: 400;
  font-size: clamp(
    30px,
    calc(24px + (100vw - 1920px) / 240),
    40px
  ); 
  margin-bottom: 16px;
  font-family: 'Hahmlet', serif;
}
.section-9 .class-container .left-side .text-container .class-role {
  color: #ccccce;
  font-weight: 100;
  font-size: clamp(
    18px,
    calc(16px + (100vw - 1920px) / 240),
    26px
  ); 
  margin-top: 12px;
}
.section-9 .class-container .left-side .text-container .desc {
  color: #fff;
  font-weight: 200;
  font-size: clamp(
    18px,
    calc(18px + (100vw - 1920px) / 240),
    26px
  ); 
  text-align: center;
  font-family: 'Hahmlet', serif;
}
.section-9 .class-container .right-side {
  flex: 0 0 50%;
  height: 100%;
}
.section-9 .class-container .right-side .class-video {
  width: 100%;
}
.section-9 .class-video {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
  display: block;
}
.section-10 .desc-line {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-10 .desc-line.show {
  opacity: 1;
  transform: translateY(0);
}
.section-10 .title-container {
  opacity: 0;
  transition: opacity 0.8s ease;
  position: absolute;
  top: 10vh;
  left: 0;
  width: 100%;
  font-size: clamp(
    18px,
    calc(18px + (100vw - 1920px) / 240),
    26px
  ); 
  text-align: center;
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.9);
}
.section-10 .title-container.active {
  opacity: 1;
  position: relative;
}
.section-10 .section-item {
  position: sticky;
  top: 0;
  transition: transform 0.3s ease-out;
  will-change: transform;
}
.section-10 .section-item video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.section-10 video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  height: 984px;
  display: flex;
  flex-direction: column;
}
.footer .line {
  width: 1px;
  height: 388px;
  background-color: #fff;
  position: relative;
  left: 50%;
  top: -90px;
  transform: translateX(-50%);
}
.footer .title-container {
  font-weight: 100;
  font-size: 28px;
  height: auto;
  flex-direction: column;
  margin-bottom: 216px;
}
.footer .title-container .service-contianer {
  display: flex;
  gap: 16px;
}
.footer .title-container .service-contianer .button {
  background-color: #15191e;
  padding: 20px;
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Pretendard", sans-serif;
}
.footer .title-container .service-contianer .button img {
  width: 24px;
  height: 24px;
}
.footer .footer-container {
  display: flex;
  height: 288px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  position: relative;
  z-index: 999;
}
.footer .footer-container .left-side {
  flex: 55.625% 0 0;
  background-color: #0e1117;
  padding: 45px 54px;
  color: #b3b2b4;
  font-size: 14px;
  position: relative; 
  isolation: isolate;
}

.footer .footer-container .left-side .copy {
  margin-bottom: 112px;
}
.footer .footer-container .left-side .privacy { 
  height: auto; 
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 4px;
}
.footer .footer-container .left-side .grac {
  height: 24px;
  font-size: 16px;
}
.footer .footer-container .left-side .logo-container {
  width: 100%;
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  align-items: center;
}
.footer .footer-container .left-side .logo-container .divider {
  width: 1px;
  height: 18px;
  background-color: #56585d;
}
.footer .footer-container .right-side {
  flex: 44.375% 0 0;
  display: flex;
  padding: 45px 54px;
  align-items: flex-start;
  justify-content: flex-end;
  background-image: url("../img/footer/footer_bg.png");
  background-size: cover;
  background-position: 50%;
  flex-direction: column;
  color: white;
  font-size: 16px;
}
.footer .footer-container .right-side .official {
  height: 28px;
  margin-bottom: 4px;
}

.class-container {
  min-height: 100vh;
}

.section.world-desc-section {
  height: 50vh;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.world-desc-section .title-container {
  font-size: clamp(
    18px,
    calc(16px + (100vw - 1920px) / 240),
    26px
  ); 
  text-align: center;
  line-height: 1.6em;
}

.sykkarad-img-container {
  position: absolute;
  inset: 0;                 /* top/left/right/bottom 한 번에 */
  will-change: transform;
}

.sykkarad-img-container img {
  height: auto;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(0%);
  transition: transform 0s;
}

.section-2 .section-item {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s;
  z-index: 1;
}

.section-2 .section-item.active {
  z-index: 2; /* 항상 최상단! */
  opacity: 1;
  pointer-events: auto;
}

.section-2 .section-item.fade-out {
  opacity: 0 !important;
  pointer-events: none;
  z-index: 1; /* 뒷순위 */
}/*# sourceMappingURL=style.css.map */

.outro-video {
  width: 100%;
  height: auto;
  object-fit: cover; 
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Safari/WebKit: 리사이즈/툴바 변동 시 fixed 배경 깨짐 방지 */
html.is-safari .section .list-container .section-item {
  background-attachment: scroll !important;
}
