.wrap { position: relative; }

.intro-wrap {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: #1B185D;
    z-index: 999999;
    overflow: hidden;
}

.intro-stage {
    position: absolute;
    inset: 0;
    width: 1300px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}

.intro-stage .text-box {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    text-align: center;
    opacity: 0;
    z-index: 4;
}

.intro-stage .text-box span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.intro-year {
    position: absolute;
    top: 50%;
    font-size: 120px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.03em;
    white-space: nowrap;
    transform: translateY(-50%) translateZ(0);
    z-index: 3;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

/* 1982 */
.intro-year-left {
    left: 0;
    opacity: 0;
}

.intro-year-left .year-text {
    display: inline-block;
    position: relative;
    z-index: 3;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

/* 2026 -> current year */
.intro-year-right {
    right: 0;
    color: #fff;
    opacity: 0;
    z-index: 3;
}

/* pin */
.intro-pin {
    position: absolute;
    top: 50%;
    left: calc(100% + 73px);
    transform: translateY(-50%) translateZ(0);
    width: 595px;
    height: 18px;
    pointer-events: none;
    z-index: 2;
}

.intro-pin-reveal {
    width: 0;
    height: 18px;
    overflow: hidden;
    transform: translateZ(0);
}

.intro-pin-reveal img {
    display: block;
    width: 595px;
    max-width: none;
}

/* logo */
.intro-logo {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%) translateZ(0);
    opacity: 0;
    z-index: 5;
}

.intro-logo img {
    display: block;
}

.intro-stage,
.intro-year,
.intro-pin,
.intro-pin-reveal,
.intro-logo,
.intro-stage .text-box,
.intro-wrap {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}



/* =========================
   HEADER
========================= */
.header {
    position: relative;
}
.header.sub .header-inner {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.6) 0%,
      rgba(255,255,255,0.3) 40%,
      rgba(255,255,255,0) 100%
    );
  }

.header .header-inner {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 18px 51px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.4s ease, background-color 0.3s ease;
}

.header.hide .header-inner {
    transform: translateY(-100%);
}

.header .header-inner .logo-box {
    width: 227px;
    height: 44px;
}

.header .header-inner .logo-box img {
    width: 100%;
    height: 100%;
    display: block;
}

.header .header-inner .nav .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header .header-inner .nav .nav-menu li {
    margin-right: 26px;
    position: relative;
}

.header.sub .header-inner .nav .nav-menu li > a { color: #000; }
.header .header-inner .nav .nav-menu li > a { color: #fff; }

.header .header-inner .nav .nav-menu li:last-child {
    margin-right: 0;
}

.header .header-inner .nav .nav-menu li.has-hover {
    position: relative;
}

/* 브릿지 역할 (끊김 방지용) */
.header .header-inner .nav .nav-menu li .hover-bg {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20px; /* 메뉴와 박스 사이 연결 */
    background: transparent;
}

/* 드롭다운 */
.header .header-inner .nav .nav-menu li .hover-box {
    position: absolute;
    left: 50%;
    top: calc(100% + 14px); /* hover-bg 아래에 자연스럽게 */
    transform: translateX(-50%);
    padding: 26px 0;
    background: #F4F4F4;
    border-radius: 12px;
    border: 1px solid #CECECE;
    width: 170px;
    text-align: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 10;
}

/* hover 시 등장 */
.header .header-inner .nav .nav-menu li.has-hover:hover .hover-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header .header-inner .nav .nav-menu li .hover-box a {
    font-size: 18px;
    font-weight: 400;
    color: #101010;
    display: block;
    margin-bottom: 18px;
}

.header .header-inner .nav .nav-menu li .hover-box a:last-child {
    margin-bottom: 0;
}

.header .header-inner .nav .nav-menu li .hover-box a.active,
.header .header-inner .nav .nav-menu li a.active {
    color: #433DE9;
    font-weight: 600;
}

/* li 전체 hover 시 hover-box 노출 */
.header .header-inner .nav .nav-menu li.has-hover:hover .hover-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.header .header-inner .nav-util {
    display: flex;
    justify-content: space-between;
}

.header .header-inner .nav-util .nav-util-box {
    margin-right: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.header .header-inner .nav-util .nav-util-box:last-child {
    margin-right: 0;
}

.header .header-inner .nav-util .nav-util-box .img-box {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
}

.header .header-inner .nav-util .nav-util-box .img-box img {
    width: 100%;
    height: 100%;
    display: block;
}

.header .header-inner .nav-util .nav-util-box span,
.header .header-inner .nav-util .nav-util-box a {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.header.sub .header-inner .nav-util .nav-util-box span,
.header.sub .header-inner .nav-util .nav-util-box a {
    color: #9D9FA9;
}


.table-header-wrap { margin-top: 200px; margin-bottom: 110px; }
.table-header-wrap .text-box .sub-title { display: inline-flex; align-items: center; padding: 6px 14px 6px 8px; border-radius: 200px; background: #28258C; margin-bottom: 22px; }
.table-header-wrap .text-box .sub-title.center { justify-content: center; }
.table-header-wrap .text-box .sub-title span { font-size: 18px; font-weight: 600; margin-left: 10px; }
.table-header-wrap .text-box .title { font-size: 46px; font-weight: 600; }
.table-header-wrap .text-box .title span.color-p-brand { color: #433DE9; }





.fix-right-menu-wrap { width: 73px; height: 266px; border: 1px solid #fff; position: fixed; top: 50%; right: 22px; transform: translateY(-50%); z-index: 100; border-radius: 200px; text-align: center; background: rgba(255, 255, 255, 0.7); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 16px; }
.fix-right-menu-wrap .right-menu-box a { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.fix-right-menu-wrap .right-menu-box .img-box { width: 40px; height: 40px; margin-bottom: 6px; display: flex; justify-content: center; align-items: center; }
.fix-right-menu-wrap .right-menu-box .img-box img { width: 100%; height: 100%; object-fit: contain; }
.fix-right-menu-wrap .right-menu-box span { font-size: 12px; font-weight: 600;}


.all-menu-wrap {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in;
    z-index: 99999;
    background: #1B185D;
    min-width: 920px;
}

.all-menu-wrap.open {
    opacity: 1;
    pointer-events: auto;
}

.all-menu-wrap .menu-inner {
    width: 100%;
    height: 100%;
    display: flex;
}

.all-menu-wrap .menu-inner > div {
    width: 50%;
    height: 100vh;
    position: relative;
    transition: all 0.3s ease-in;
}

.all-menu-wrap .menu-inner .img-box {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.all-menu-wrap .menu-inner .img-box img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.all-menu-wrap .menu-inner .img-box img.active {
    z-index: 2;
    opacity: 1;
}

.all-menu-wrap .menu-inner .right-box {
    padding: 40px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.all-menu-wrap .menu-inner .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.all-menu-wrap .menu-inner .menu-header .close-box {
    cursor: pointer;
}

.all-menu-wrap .menu-inner .sub-menu {
    padding: 0 50px;
}
.all-menu-wrap .menu-inner .sub-menu > div { margin-bottom: 33px; }
.all-menu-wrap .menu-inner .sub-menu > div:last-child {
    margin-bottom: 0;
}
.all-menu-wrap .menu-inner .sub-menu > div .flex {
    display: flex;
    align-items: center;
    margin-top: 0;

    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;

    transition:
        max-height 0.3s ease,
        opacity 0.25s ease,
        margin-top 0.3s ease;
}
.all-menu-wrap .menu-inner .sub-menu > div .flex.open,
.all-menu-wrap .menu-inner .sub-menu > div .flex.active {
    margin-top: 16px;
    max-height: 37px;
    opacity: 1;
    visibility: visible;
}
.all-menu-wrap .menu-inner .sub-menu > div .flex.active { display: flex!important; }
.all-menu-wrap .menu-inner .sub-menu > div .flex > a { font-size: 18px; font-weight: 600; color: #A19FC3; padding: 4px 16px; background: #121049; border-radius: 200px; margin-right: 8px; }
.all-menu-wrap .menu-inner .sub-menu > div .flex > a:last-child { margin-right: 0; }
.all-menu-wrap .menu-inner .sub-menu > div .flex span { font-size: 18px; font-weight: 600; color: #A19FC3; padding: 4px 16px; background: #121049; border-radius: 200px; margin-right: 8px; }
.all-menu-wrap .menu-inner .sub-menu > div .flex span:last-child { margin-right: 0; }

.all-menu-wrap .menu-inner .sub-menu a.maruburi {
    display: block;
    font-size: 36px;
    font-weight: 400;
    color: #6A66B4;
    transition: all 0.3s ease-in;
}


.all-menu-wrap .menu-inner .sub-menu a.maruburi.active,
.all-menu-wrap .menu-inner .sub-menu a.maruburi.hover-active {
    color: #fff;
}

.all-menu-wrap .menu-inner .menu-bottom {
    padding: 0 30px;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner {
    background: #34317B;
    padding: 30px 50px;
    border-radius: 16px;
    width: 100%;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner .time-box {
    display: flex;
    align-items: center;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner .time-box > div.left {
    margin-right: 30px;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner .time-box ul {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner .time-box ul:last-child {
    margin-bottom: 0;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner .time-box ul li {
    font-size: 18px;
    font-weight: 400;
    color: #D9D8FB;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner .time-box ul li:first-child {
    font-weight: 600;
    color: #fff;
    width: 71px;
    margin-right: 14px;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner .time-box ul li.last {
    font-weight: 600;
    color: #34317B;
    padding: 1px 10px;
    border-radius: 12px;
    background: #fff;
    margin-left: 10px;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner .desc-box {
    margin-top: 12px;
}

.all-menu-wrap .menu-inner .menu-bottom .menu-bottom-inner .desc-box .desc {
    font-size: 18px;
    font-weight: 400;
}







/* =========================
   SECTION1 MAIN SLIDE
========================= */
.section1 { position: relative; }
.section1 .sec-inner .main-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.section1 .sec-inner .main-slide .swiper-wrapper,
.section1 .sec-inner .main-slide .swiper-slide {
    width: 100%;
    height: 100%;
}

.section1 .sec-inner .main-slide .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* 이미지 */
.section1 .sec-inner .main-slide .img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section1 .sec-inner .main-slide .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.03);
    will-change: transform;
    transition: transform 3s linear;
}

.section1 .sec-inner .main-slide .swiper-slide-active .img-box img {
    transform: scale(1.1);
}

/* 텍스트 */
.section1 .sec-inner .main-slide .text-wrap {
    position: absolute;
    left: 120px;
    bottom: 196px;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.25s;
}

.section1 .sec-inner .main-slide .swiper-slide-active .text-wrap {
    opacity: 1;
    transform: translateY(0);
}

.section1 .sec-inner .main-slide .text-wrap .sub-title {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.section1 .sec-inner .main-slide .text-wrap .title {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
}


/* =========================
   SCROLLBAR
========================= */
.section1 .sec-inner .main-slide .swiper-scrollbar {
    position: absolute;
    left: 120px;
    bottom: 116px;
    z-index: 5;
    width: calc(100% - 240px);
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.section1 .sec-inner .main-slide .swiper-scrollbar-drag {
    width: 100% !important;
    height: 100%;
    background: #fff;
    border-radius: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 120ms linear;
}

.section1 .sec-inner .main-slide .progress-track {
    position: absolute;
    left: 120px;
    bottom: 116px;
    z-index: 5;
    width: calc(100% - 240px);
    height: 2px;
    overflow: hidden;
    background:
        linear-gradient(
            to right,
            rgba(255,255,255,0.2) 0%,
            rgba(255,255,255,0.2) 100%
        );
}


.section1 .sec-inner .main-slide .progress-fill {
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

/* =========================
   PAGINATION
========================= */
.section1 .sec-inner .main-slide .swiper-pagination {
    position: absolute;
    right: 120px;
    bottom: 196px;
    left: auto;
    z-index: 99;
    width: auto;
    color: #fff;
    font-size: 29px;
    font-weight: 300;
    font-family: 'MaruBuri', serif!important;
}

.section1 .sec-inner .main-slide .swiper-pagination-current {
    font-size: 60px;
    font-weight: 600;
}

.section1 .sec-inner .main-slide .swiper-pagination-total {
    font-size: 30px;
    font-weight: 600;
}

.section1 .sec-inner .main-slide .swiper-pagination *,
.section1 .sec-inner .main-slide .swiper-pagination-current,
.section1 .sec-inner .main-slide .swiper-pagination-total {
    font-family: 'MaruBuri', serif !important;
}



/* =========================
   SCROLL DOWN
========================= */
 .scroll-down {
    position: absolute;
    bottom: 38px;
    left: 50%;
    z-index: 99;
    width: 157px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateX(-50%);
    animation: scrollFloat 2.2s ease-in-out infinite;
    z-index: 9999;
}

 .scroll-down span {
    font-size: 16px;
    color: #fff;
}

@keyframes scrollFloat {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(3px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}




.section2 {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #433DE9;
    overflow: hidden;
}

.section2 .sec-inner {
    height: 100%;
}

.section2 .big-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.section2 .big-wrap .abs-text { position: absolute; bottom: 60px; left: -45px; font-size: 190px; font-weight: 500; color: #fff; opacity: 0.1; }

.section2 .bete-wrap {
    width: 1690px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.section2 .bete-wrap .left .text-wrap .sub-title {
    margin-bottom: 22px;
}

.section2 .bete-wrap .left .text-wrap .sub-title span {
    font-size: 18px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid #fff;
}

.section2 .bete-wrap .left .text-wrap .title {
    font-size: 50px;
    font-weight: 600;
}

.section2 .bete-wrap .left .text-wrap .title span {
    color: #FFD739;
}

.section2 .bete-wrap .left .text-wrap .desc {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
}

.section2 .bete-wrap .right {
    display: flex;
    align-items: stretch;
}

.section2 .bete-wrap .img-text-wrap {
    width: 872px;
    margin-right: 64px;
}

.section2 .bete-wrap .img-text-wrap .img-box {
    width: 100%;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.section2 .bete-wrap .img-text-wrap .img-box img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transform: translateY(100%);
    pointer-events: none;
    border-radius: 12px;
}

.section2 .bete-wrap .img-text-wrap .img-box img.active {
    transform: translateY(0);
    pointer-events: auto;
}

.section2 .bete-wrap .img-text-wrap .text-box {
    margin-top: 30px;
    padding: 0 12px;
    position: relative;
    min-height: 150px;
    overflow: hidden;
}

.section2 .bete-wrap .img-text-wrap .text-box .title {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    min-height: 34px;
    overflow: hidden;
}

.section2 .bete-wrap .img-text-wrap .text-box .desc {
    font-size: 18px;
    font-weight: 400;
    margin-top: 18px;
    position: relative;
    min-height: 60px;
    overflow: hidden;
}

.section2 .bete-wrap .img-text-wrap .text-box .title span,
.section2 .bete-wrap .img-text-wrap .text-box .desc span {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    transform: translateY(40px);
}

.section2 .bete-wrap .img-text-wrap .text-box .title span.active,
.section2 .bete-wrap .img-text-wrap .text-box .desc span.active {
    transform: translateY(0);
}

.section2 .bete-wrap .line-wrap {
    height: 100%;
    position: relative;
    width: 180px;
}

.section2 .bete-wrap .line-wrap .flex-d {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
    z-index: 2;
}

.section2 .bete-wrap .line-wrap .long-line {
    width: 1px;
    height: 95%;
    background: #8E8BF2;
    position: absolute;
    left: 8.5px;
    top: 20px;
    z-index: 1;
}

.section2 .bete-wrap .line-wrap .fill-line {
    width: 1px;
    height: 0;
    background: #fff;
    position: absolute;
    left: 8.5px;
    top: 20px;
    z-index: 2;
}

.section2 .bete-wrap .line-wrap .flex-d .flex {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.section2 .bete-wrap .line-wrap .flex-d .cir {
    width: 17px;
    height: 17px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 16px;
    background: #3A99FF;
    transition: background 0.35s ease;
    flex-shrink: 0;
}

.section2 .bete-wrap .line-wrap .flex-d .cir .inner {
    width: 5.5px;
    height: 5.5px;
    border-radius: 50%;
    background: #433DE9;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.section2 .bete-wrap .line-wrap .flex-d .title {
    font-size: 30px;
    font-weight: 300;
    color: #D9D8FB;
    transition: all 0.35s ease;
}

.section2 .bete-wrap .line-wrap .flex-d .flex.active .cir {
    background: #fff;
}

.section2 .bete-wrap .line-wrap .flex-d .flex.active .title {
    font-weight: 600;
    color: #fff;
}



.section3 { width: 100%; position: relative; margin-top: 300px; }
.section3 .his-bete-wrap {
    width: 1680px;
    margin: 0 auto;
    display: flex;
}
.section3 .his-bete-wrap .left { width: 820px; margin-right: 35px; position: relative; }

.section3 .his-bete-wrap .right {
    width: 800px;
    min-height: 740px;
    padding-top: 50px;
    position: relative;
}

.section3 .his-bete-wrap .his-slide {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.section3 .his-bete-wrap .his-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.section3 .his-bete-wrap .his-slide .swiper-slide { width: 100%; height: 820px; position: relative; border-radius: 12px; overflow: hidden; }
.section3 .his-bete-wrap .his-slide .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.section3 .his-bete-wrap .his-slide .swiper-pagination { width: 142px; height: 3px; margin: 0 auto; margin-top: 40px; position: relative; left: 0; top: 0; bottom: 0; right: 0; padding: 0; background: #CECECE; }
.section3 .his-bete-wrap .his-slide .swiper-pagination .swiper-pagination-progressbar-fill { background: #101010; }

.section3 .his-bete-wrap .click-wrap { display: flex; align-items: center; margin-bottom: 50px; position: relative; z-index: 5; }
.section3 .his-bete-wrap .click-wrap .title { font-size: 20px; font-weight: 600; color: #101010; padding: 16px 30px; border-radius: 12px; border: 1px solid #101010; margin-right: 8px; transition: all 0.3s ease-in; cursor: pointer; }
.section3 .his-bete-wrap .click-wrap .title:last-child { margin-right: 0; }
.section3 .his-bete-wrap .click-wrap .title.active,
.section3 .his-bete-wrap .click-wrap .title:hover { color: #fff; border: 1px solid #433DE9; background: #433DE9; }

.section3 .his-bete-wrap .title-box { display: flex; align-items: center; margin-bottom: 30px; }
.section3 .his-bete-wrap .title-box .title { font-size: 46px; font-weight: 600; margin-left: 12px; }
.section3 .his-bete-wrap .desc { font-size: 18px; font-weight: 400; }
.section3 .his-bete-wrap .line { width: 100%; height: 1px; background: #CECECE; margin: 50px 0; }

.section3 .his-bete-wrap .his-text-wrap .title { font-size: 20px; font-weight: 600; margin-bottom: 22px; }
.section3 .his-bete-wrap .his-text-wrap ul { display: flex; align-items: center; }
.section3 .his-bete-wrap .his-text-wrap ul li { font-size: 18px; font-weight: 400; color: #444; }
.section3 .his-bete-wrap .his-text-wrap ul li:first-child { flex: none; margin-right: 6px; font-size: 16px; }

.section3 .his-bete-wrap .right .history-panel {
    position: absolute;
    left: 0;
    top: 140px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    background: #fff;
}

.section3 .his-bete-wrap .right .history-panel.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.section3 .his-bete-wrap .right .history-panel .more-inner {
    max-height: 740px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.45s ease;
}

.section3 .his-bete-wrap .right .history-panel .fade-cover {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 97px;
    background: #fff;
    z-index: 3;
}

.section3 .his-bete-wrap .right .history-panel .fade-box {
    position: absolute;
    left: 0;
    bottom: 58px;
    width: 100%;
    height: 140px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.7) 45%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 4;
}

.section3 .his-bete-wrap .right .history-panel .more-btn {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 12px;
    background: #F4F4F4;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.section3 .his-bete-wrap .right .history-panel.open .more-inner {
    max-height: none;
}

.section3 .his-bete-wrap .right .history-panel.open .fade-cover,
.section3 .his-bete-wrap .right .history-panel.open .fade-box,
.section3 .his-bete-wrap .right .history-panel.open .more-btn {
    display: none;
}

.section4 { width: 100%; position: relative; margin-top: 200px; }
.section4 .bete-wrap-1 { width: 1640px; margin-right: auto; margin-left: calc((100% - 1920px) / 2); display: flex; }
.section4 .bete-wrap-1 .img-box { width: 1112px; position: relative; }
.section4 .bete-wrap-1 .img-box .main { width: 100%; }
.section4 .bete-wrap-1 .img-box .jang { position: absolute; right: 509px; bottom: -150px; }
.section4 .bete-wrap-1 .img-box .abs-text { display: flex; align-items: center; position: absolute; right: 209px; bottom: -123px; }
.section4 .bete-wrap-1 .img-box .abs-text .line { width: 2px; height: 62px; background: #CECECE; margin-right: 18px; }
.section4 .bete-wrap-1 .img-box .abs-text .sub-title { font-size: 24px; font-weight: 600; text-transform: uppercase; }
.section4 .bete-wrap-1 .img-box .abs-text .title { font-size: 18px; font-weight: 400; margin-top: 6px; }

.section4 .bete-wrap-1 .text-box { margin-left: 80px; padding-top: 147px; }
.section4 .bete-wrap-1 .text-box .title { font-size: 38px; font-weight: 600; }
.section4 .bete-wrap-1 .text-box .desc { font-size: 18px; margin-top: 30px; font-weight: 400; }



.section4 .bete-wrap-2 { width: 1680px; margin: 0 auto; display: flex; justify-content: space-between; margin-top: 273px; }
.section4 .bete-wrap-2.order2 { justify-content: flex-start; margin-top: 150px; }
.section4 .bete-wrap-2 .img-box { width: 860px; position: relative; }
.section4 .bete-wrap-2 .img-box .main { width: 100%; }
.section4 .bete-wrap-2 .img-box .jang { position: absolute; left: -222px; bottom: -202px; }
.section4 .bete-wrap-2.order2 .img-box .jang { left: 35px; }
.section4 .bete-wrap-2 .img-box .abs-text { display: flex; align-items: center; position: absolute; right: 348px; bottom: -123px; }
.section4 .bete-wrap-2.order2 .img-box .abs-text { right: 196px; }
.section4 .bete-wrap-2 .img-box .abs-text .line { width: 2px; height: 62px; background: #CECECE; margin-right: 18px; }
.section4 .bete-wrap-2 .img-box .abs-text .sub-title { font-size: 24px; font-weight: 600; text-transform: uppercase; }
.section4 .bete-wrap-2 .img-box .abs-text .title { font-size: 18px; font-weight: 400; margin-top: 6px; }

.section4 .bete-wrap-2 .text-box { padding-left: 100px; padding-top: 223px; }
.section4 .bete-wrap-2.order2 .text-box { order: 2; padding-left: 0; margin-left: 120px; }
.section4 .bete-wrap-2 .text-box .title { font-size: 38px; font-weight: 600; }
.section4 .bete-wrap-2 .text-box .desc { font-size: 18px; margin-top: 30px; font-weight: 400; }

.section4 .one-wrap { width: 1680px; margin: 0 auto; margin-top: 352px; }
.section4 .one-wrap .img-box { width: 100%; position: relative; }
.section4 .one-wrap .img-box .main { width: 100%; }
.section4 .one-wrap .img-box .jang { position: absolute; right: 296px; bottom: -120px; }
.section4 .one-wrap .img-box .abs-text { display: flex; align-items: center; position: absolute; right: 291px; bottom: -223px; }
.section4 .one-wrap .img-box .abs-text .line { width: 2px; height: 62px; background: #CECECE; margin-right: 18px; }
.section4 .one-wrap .img-box .abs-text .sub-title { font-size: 24px; font-weight: 600; text-transform: uppercase; }
.section4 .one-wrap .img-box .abs-text .title { font-size: 18px; font-weight: 400; margin-top: 6px; }

.section4 .one-wrap .text-box { padding-left: 160px; margin-top: 80px; }
.section4 .one-wrap .text-box .title { font-size: 38px; font-weight: 600; }
.section4 .one-wrap .text-box .desc { font-size: 18px; margin-top: 30px; font-weight: 400; }


.section5 { width: 100%; height: 100vh; position: fixed; left: 0; top: 0; opacity: 0; pointer-events: none; }
.section5 .text-wrap { width: 100%; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.section5 .text-wrap .title { font-size: 50px; font-weight: 600; margin-top: 40px; }


.section6 {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #000;
    margin-top: 170vh;
    z-index: 30;
    transform: scale(0.6);
    transform-origin: center top;
    border-radius: 40px;
    overflow: hidden;
    will-change: transform;
}

.section6 .big-wrap { width: 100%; height: 100vh; position: relative; }

.section6 .big-wrap .text-line-wrap { width: 1680px; left: 50%; transform: translate(-50%, -50%); top: 48%; position: absolute; z-index: 2; opacity: 0; }
.section6 .big-wrap .text-line-wrap .text-wrap { margin-bottom: 120px; }
.section6 .big-wrap .text-line-wrap .text-wrap .sub-title { margin-bottom: 22px; }
.section6 .big-wrap .text-line-wrap .text-wrap .sub-title span { font-size: 18px; font-weight: 600; padding: 6px 12px; border: 1px solid #fff; border-radius: 12px; }
.section6 .big-wrap .text-line-wrap .text-wrap .title { font-size: 50px; font-weight: 600; }

.section6 .big-wrap .text-line-wrap .line-wrap {
    height: 100%;
    position: relative;
    width: 290px;
}

.section6 .big-wrap .text-line-wrap .line-wrap .flex-d {
    position: relative;
    height: 100%;
    z-index: 2;
}

.section6 .big-wrap .text-line-wrap .line-wrap .long-line {
    width: 1px;
    height: 268px;
    background: #CECECE;
    position: absolute;
    left: 8.5px;
    top: 20px;
    z-index: 1;
}

.section6 .big-wrap .text-line-wrap .line-wrap .fill-line {
    width: 1px;
    height: 0;
    background: #fff;
    position: absolute;
    left: 8.5px;
    top: 20px;
    z-index: 2;
}

.section6 .big-wrap .text-line-wrap .line-wrap .flex-d .flex {
    display: flex;
    align-items: center;
    margin-bottom: 52px;
    cursor: pointer;
}
.section6 .big-wrap .text-line-wrap .line-wrap .flex-d .flex:last-child { margin-bottom: 0; }

.section6 .big-wrap .text-line-wrap .line-wrap .flex-d .cir {
    width: 17px;
    height: 17px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 16px;
    background: #FFFFFF;
    transition: background 0.35s ease;
    flex-shrink: 0;
}

.section6 .big-wrap .text-line-wrap .line-wrap .flex-d .cir .inner {
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: #999999;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.section6 .big-wrap .text-line-wrap .line-wrap .flex-d .title {
    font-size: 26px;
    font-weight: 300;
    color: #F4F4F4;
    transition: all 0.35s ease;
}

.section6 .big-wrap .text-line-wrap .line-wrap .flex-d .flex.active .inner {
    background: #433DE9;
}

.section6 .big-wrap .text-line-wrap .line-wrap .flex-d .flex.active .title {
    font-weight: 500;
    color: #fff;
}



.section6 .big-wrap .com-sec6 { width: 100%; height: 100vh; position: absolute; left: 0; top: 0; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.section6 .big-wrap .com-sec6 .img-box { width: 100%; height: 100%; position: relative; }
.section6 .big-wrap .com-sec6 .img-box img { width: 100%; height: 100%; object-fit: cover; }
.section6 .big-wrap .com-sec6.active { opacity: 1; z-index: 1; }
.section6 .big-wrap .com-sec6 .text-box { position: absolute; z-index: 2; opacity: 0; }
.section6 .big-wrap .com-sec6.first .text-box { right: 120px; bottom: 140px; }
.section6 .big-wrap .com-sec6.second .text-box { right: 557px; top: 190px; }
.section6 .big-wrap .com-sec6.second .text-box .desc:nth-child(1) { margin-bottom: 20px; margin-right: 0px; }
.section6 .big-wrap .com-sec6.third .text-box { right: 130px; bottom: 120px; }
.section6 .big-wrap .com-sec6.four .text-box { right: 220px; bottom: 140px; }
.section6 .big-wrap .com-sec6 .text-box .title-box { display: flex; align-items: center; margin-bottom: 40px; }
.section6 .big-wrap .com-sec6 .text-box .title-box .line { width: 3px; height: 24px; background: #fff; }
.section6 .big-wrap .com-sec6 .text-box .title-box .title { font-size: 24px; font-weight: 600; margin-left: 14px; }
.section6 .big-wrap .com-sec6 .text-box .flex { display: flex; }
.section6 .big-wrap .com-sec6 .text-box .desc { font-size: 20px; font-weight: 400; margin-right: 40px; }
.section6 .big-wrap .com-sec6 .text-box .desc:last-child { margin-right: 0; }




.section6 .big-wrap .text-line-wrap {
    opacity: 0;
}

.section6 .big-wrap .com-sec6 .text-box {
    opacity: 0;
    transform: translateY(30px);
}




.section7 {
    width: 100%;
    position: relative;
    padding-top: 200px;
    background: #fff;
}

.section7 .bete-wrap {
    width: 1680px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.section7 .bete-wrap .text-box {
    width: 592px;
}

.section7 .bete-wrap .text-box .sub-title {
    margin-bottom: 22px;
}

.section7 .bete-wrap .text-box .sub-title span {
    font-size: 18px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    background: #28258C;
}

/* title */
.section7 .bete-wrap .text-box .title {
    font-size: 50px;
    font-weight: 600;
    position: relative;
    min-height: 140px; /* 내용 높이에 맞게 조절 */
    overflow: hidden;
}

.section7 .bete-wrap .text-box .title span {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.section7 .bete-wrap .text-box .title span.active {
    transform: translateY(0);
    opacity: 1;
}

/* desc */
.section7 .bete-wrap .text-box .desc {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    min-height: 96px; /* 내용 높이에 맞게 조절 */
    overflow: hidden;
}

.section7 .bete-wrap .text-box .desc span {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.section7 .bete-wrap .text-box .desc span.active {
    transform: translateY(0);
    opacity: 1;
}

/* tab */
.section7 .bete-wrap .text-box .tab-menu {
    margin-top: 80px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.section7 .bete-wrap .text-box .tab-menu .j-title {
    font-size: 20px;
    font-weight: 600;
    color: #101010;
    padding: 16px 30px;
    border-radius: 12px;
    border: 1px solid #101010;
    transition: all 0.3s ease-in;
    cursor: pointer;
    margin-right: 8px;
}

.section7 .bete-wrap .text-box .tab-menu .j-title:last-child {
    margin-right: 0;
}

.section7 .bete-wrap .text-box .tab-menu .j-title.active,
.section7 .bete-wrap .text-box .tab-menu .j-title:hover {
    color: #fff;
    background: #433DE9;
    border: 1px solid #433DE9;
}

/* image */
.section7 .bete-wrap .img-wrap {
    position: relative;
    width: 820px;
    height: 820px;
}

.section7 .bete-wrap .img-box {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(60px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
}

.section7 .bete-wrap .img-box.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.section7 .bete-wrap .img-box .main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section7 .bete-wrap .img-box .jang {
    left: -269px;
    bottom: 0;
    position: absolute;
    z-index: 1;
}


.section8 { width: 100%; position: relative; background: #fff; padding-top: 200px; }
.section8 .sec-inner { width: 1680px; margin: 0 auto; }
.section8 .text-wrap { margin-bottom: 80px; }
.section8 .text-wrap .sub-title { margin-bottom: 22px; }
.section8 .text-wrap .sub-title span { font-size: 18px; font-weight: 600; padding: 6px 12px; border-radius: 12px; background: #28258C; }
.section8 .text-wrap .title { font-size: 50px; font-weight: 600; }
.section8 .text-wrap .desc { font-size: 20px; font-weight: 400; margin-top: 30px; }

.section8 .bete-wrap { display: flex; align-items: stretch; justify-content: space-between; }
.section8 .bete-wrap .img-wrap { width: 828px; }
.section8 .bete-wrap .img-wrap .img-box { width: 100%; height: 634px; position: relative; }
.section8 .bete-wrap .img-wrap .img-box img { width: 100%; height: 100%; object-fit: cover; }
.section8 .bete-wrap .img-wrap.flex { display: flex; flex-direction: column; justify-content: space-between; }
.section8 .bete-wrap .img-wrap.flex .img-box { width: 100%; height: 305px; position: relative; }


.section9 { width: 100%; position: relative; background: #fff; padding: 200px 0; }
.section9 .view-slide { width: 1680px; height: 960px; margin: 0 auto; position: relative; overflow: hidden; border-radius: 12px; }
.section9 .view-slide .swiper-slide { width: 100%; height: 100%; position: relative; }
.section9 .view-slide .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.section9 .view-slide .swiper-button-next { background: url('/theme/basic/svg/slide_next_btn.svg'); background-position: center; background-repeat: no-repeat; background-size: cover; width: 64px; height: 64px; left: auto; right: 50px; }
.section9 .view-slide .swiper-button-prev { background: url('/theme/basic/svg/slide_prev_btn.svg'); background-position: center; background-repeat: no-repeat; background-size: cover; width: 64px; height: 64px; right: auto; left: 50px; }

.section9 .view-slide .swiper-button-next svg,
.section9 .view-slide .swiper-button-prev svg,
.swiper-button-next:after,
.swiper-button-prev:after { display: none; }

.section9 .view-slide .text-wrap { position: absolute; left: 100px; bottom: 100px; z-index: 2; }
.section9 .view-slide .text-wrap .sub-title { margin-bottom: 22px; }
.section9 .view-slide .text-wrap .sub-title span { font-size: 18px; font-weight: 600; padding: 6px 12px; border-radius: 12px; background: #28258C; }
.section9 .view-slide .text-wrap .title { font-size: 50px; font-weight: 600; }

/* =========================
   PAGINATION
========================= */
.section9 .view-slide .swiper-pagination {
    position: absolute;
    right: 110px;
    bottom: 100px;
    left: auto;
    z-index: 99;
    width: auto;
    color: #fff;
    font-size: 29px;
    font-weight: 300;
    font-family: 'MaruBuri', serif!important;
}

.section9 .view-slide .swiper-pagination-current {
    font-size: 60px;
    font-weight: 600;
}

.section9 .view-slide .swiper-pagination-total {
    font-size: 30px;
    font-weight: 600;
}

.section9 .view-slide .swiper-pagination *,
.section9 .view-slide .swiper-pagination-current,
.section9 .view-slide .swiper-pagination-total {
    font-family: 'MaruBuri', serif !important;
}






.footer { background: #433DE9; width: 100%; padding: 120px 0; }
.footer .footer-inner { width: 1453px; margin: 0 auto; display: flex; justify-content: space-between; }
.footer .left { width: 770px; padding: 38px 0; background: #F5F5FF; box-shadow: 0 2px 6px rgba(0,0,0,0.1); border-radius: 16px; }
.footer .left .flex { display: flex; justify-content: center; }
.footer .left .flex .last { margin-left: 50px; }
.footer .left .flex .park-box { margin-top: 30px; }
.footer .left .flex .title { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.footer .left .flex .desc { font-size: 18px; font-weight: 400; }
.footer .left .flex ul { display: flex; align-items: center; }
.footer .left .flex ul.mt-10 { margin-top: 10px; }
.footer .left .flex ul li { font-size: 20px; font-weight: 400; }
.footer .left .flex ul li.yoill { width: 71px; font-size: 20px; font-weight: 600; margin-right: 14px; flex: none; }
.footer .left .flex ul .last-li { font-size: 18px; font-weight: 600; padding: 1px 10px; background: #28258C; border-radius: 12px; margin-left: 10px; }
.footer .left .flex .blue-text { font-size: 18px; font-weight: 400; margin-top: 10px; color: #433DE9; }

.footer .right { width: 604px; }
.footer .right .f-right-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.footer .right .f-right-head .login-box { display: flex; align-items: center; }
.footer .right .f-right-head .login-box span { font-size: 16px; font-weight: 600; margin-right: 20px; }
.footer .right .f-right-head .login-box span:last-child { margin-right: 0; }


.footer .right .link-wrap > div { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.footer .right .link-wrap > div a { width: 49.3%; }

.footer .right .link-wrap a { display: flex; align-items: center; justify-content: center; width: 100%; height: 66px; border-radius: 10px; }
.footer .right .link-wrap a.naver { background: #00BB78; }
.footer .right .link-wrap a.kakao { background: #FEDC00; }
.footer .right .link-wrap a.kakao span { color: #020303; }
.footer .right .link-wrap a.insta { background: #8581FF; }
.footer .right .link-wrap a.insta span { color: #fff; }
.footer .right .link-wrap a.call { background: #1B185D; }
.footer .right .link-wrap a span { margin-left: 10px; }

.footer .right .copy-box { margin-top: 30px; }
.footer .right .copy-box .copy { font-size: 14px; font-weight: 400; }
.footer .right .copy-box .copy.mt-12 { margin-top: 12px; }



.sub-tail-wrap { width: 100%; height: 100vh; position: relative; margin-top: 200px; }
.sub-tail-wrap .img-box { width: 100%; height: 100vh; position: relative; }
.sub-tail-wrap .img-box img { width: 100%; height: 100%; position: absolute; left: 0; object-fit: cover; }
.sub-tail-wrap .text-box { position: absolute; width: 100%; left: 0; top: 50%; transform: translateY(-50%); z-index: 1; }
.sub-tail-wrap .text-box .title { font-size: 50px; font-weight: 600; margin-top: 30px; }
.sub-tail-wrap .line { position: absolute; left: 50%; bottom: 84px; width: 1px; height: 176px; background: #fff; z-index: 1; }
.sub-tail-wrap .bg {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    bottom: 0;
    
    background: linear-gradient(
      to bottom,
      rgba(67, 61, 233, 0) 0%,
      rgba(67, 61, 233, 0.3) 40%,
      rgba(67, 61, 233, 0.7) 70%,
      rgba(67, 61, 233, 1) 100%
    );
  }




/* 게시판 페이지 */
.pg_wrap { margin-top: 80px; float: none; display: flex; }
.pg_wrap > .pg { display: flex; align-items: center; justify-content: center; margin: 0 auto; width: 100%; text-align: center; }
.pg_page { background: none; color: #222222; font-size: 20px; font-weight: 600; border: none; width: 50px; padding: 0; }
.pg_page.pg_start { background: url('../img/btn_first.gif') no-repeat 50% 50% #fff; }
.pg_page.pg_end { background: url('../img/btn_end.gif') no-repeat 50% 50% #fff; }
.pg_current { background: #28258C; display: flex; justify-content: center; align-items: center; color: #fff; font-size: 20px; font-weight: 600; width: 50px; height: 50px; border-radius: 100%; border: none; }
.pg_page:hover { background-color: #fff; }



@media(max-width: 1800px){
    .all-menu-wrap .menu-inner > div.left-box { width: 40%; }
    .all-menu-wrap .menu-inner > div.right-box { width: 60%; }
}

@media(max-width: 1500px){
    .all-menu-wrap .menu-inner > div.left-box { width: 30%; }
    .all-menu-wrap .menu-inner > div.right-box { width: 70%; }
}

@media(max-width: 1290px){
    .all-menu-wrap .menu-inner > div.left-box { width: 0%; }
    .all-menu-wrap .menu-inner > div.right-box { width: 100%; }
}