.wrap { min-width: 1600px; margin: 0 auto; }
.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        -webkit-backdrop-filter 0.35s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 65px;
}

/* 스크롤 내려서 숨길 때 */
.header.hide {
    transform: translateY(-100%);
}

/* 스크롤 되었을 때 배경 + 블러 + 하단 그라디언트 */
/* .header.bg {
    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.65) 0%,
            rgba(255, 255, 255, 0.35) 28%,
            rgba(255, 255, 255, 0.18) 55%,
            rgba(255, 255, 255, 0) 100%
        );
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
} */

/* 최상단일 때는 완전 투명 */
/* .header:not(.bg) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
} */

.intro-wrap {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    background: #3777CC;
    opacity: 1;
    transition: opacity 1s ease;
}

.intro-wrap.is-hide {
    opacity: 0;
    pointer-events: none;
}

.intro-wrap .intro-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.intro-wrap .text-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.intro-wrap .title {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    height: 220px;
}

.intro-wrap .title .line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: block;
    font-size: 71px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #fff;
    opacity: 0;
    filter: blur(18px);
    transition: opacity 2.2s ease, filter 2.2s ease;
    will-change: opacity, filter;
}

.intro-wrap .title .line.is-show {
    opacity: 1;
    filter: blur(0);
}

.intro-wrap .logo-box {
    margin-top: 80px;
    opacity: 0;
    filter: blur(14px);
    transition: opacity 2.2s ease, filter 2.2s ease;
    will-change: opacity, filter;
}

.intro-wrap .logo-box.is-show {
    opacity: 1;
    filter: blur(0);
}




.right-fixed-wrap { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); z-index: 9999; }
.right-fixed-wrap .right-inner { display: flex; flex-direction: column; justify-content: center; padding: 30px 12px; border-radius: 200px; background: #F4F4F4; }
.right-fixed-wrap .right-inner a { display: block; margin-bottom: 14px; cursor: pointer; }
.right-fixed-wrap .right-inner a:last-child { margin-bottom: 0; }
.right-fixed-wrap .right-inner a .desc { margin-top: 4px; font-size: 14px; font-weight: 500; }












.section1 { width: 100%; height: 100vh; position: fixed; left: 0; top: 0; }
.section1 .img-box { width: 100%; height: 100vh; position: relative; }
.section1 .img-box img { width: 100%; height: 100%; object-fit: cover; }
.section1 .text-box { position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 1553px; padding: 65px 0; z-index: 1; }
.section1 .text-box .right { margin-bottom: 200px; padding-right: 20px; }
.section1 .text-box .right span { font-size: 18px; font-weight: 500; color: #fff; }
.section1 .text-box .sub-title { font-size: 34px; font-weight: 300; color: #fff; }
.section1 .text-box .title { font-size: 176px; font-weight: 900; color: #fff; }

.section1 .scroll-indicator {
    position: absolute; /* 필요에 따라 fixed 가능 */
    right: 80px;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section1 .scroll-indicator span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.section1 .scroll-indicator .line {
    width: 1px;
    height: 80px;
    background: #B6B6B6;
    position: relative;
    overflow: hidden;
}

.section1 .scroll-indicator .line i {
    position: absolute;
    top: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: #fff;
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

.section2 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

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

.section2 .three-wrap {
    width: 100%;
    height: 100%;
    display: flex;
}

.section2 .three-wrap > div {
    width: 33.3333%;
    height: 100%;
    flex-shrink: 0;
    will-change: transform;
    background: #E6F2FC;
}

.section2 .text-wrap {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 5;
    opacity: 0;
}

.section2 .title {
    font-size: 90px;
    font-weight: 700;
    color: #5094B8;
    line-height: 1.1;
}

.section2 .desc {
    font-size: 31px;
    margin-top: 25px;
}

.inline-anchor {
    display: inline-block;
    width: 76px;
    height: 118px;
    margin: 0 8px;
    vertical-align: middle;
    position: relative;
    top: -0.08em;
}

.fix-video-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 76px;
    height: 118px;
    z-index: 20;
    pointer-events: auto;
    transform-origin: center center;
    opacity: 0;
    will-change: transform, width, height, opacity;
}

.fix-video-box > img,
.fix-video-box > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 17px;
    pointer-events: none;
}

.fix-video-box .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    cursor: pointer;
}

.section3 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section3 .sec-inner,
.section3 .img-box,
.section3 .img-box img {
    width: 100%;
    height: 100%;
}

.section3 .sec-inner {
    position: relative;
}

.section3 .img-box {
    position: relative;
}

.section3 .img-box img {
    object-fit: cover;
    display: block;
}

.section3 .bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.section3 .left-logo {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 6;
}

.section3 .right-logo {
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 6;
}

.video-box-static {
    position: absolute;
    left: 0;
    top: 0;
    width: 506px;
    height: 848px;
    transform: none;
    z-index: 5;
    opacity: 0;
    pointer-events: auto;
}

.video-box-static > img,
.video-box-static > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 17px;
    pointer-events: none;
}

.video-box-static .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
}

.svg-write-wrap {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    width: 821px;
    max-width: 90vw;
    pointer-events: none;
    opacity: 0;
}

.svg-reveal-box {
    width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.svg-text {
    display: block;
    width: 821px;
    height: auto;
}

.life-sequence {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #fffffb;
}

.section4,
.section5 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
}

.section4 {
    z-index: 1;
    background: #fffffb;
    overflow: hidden;
}

.section5 {
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.section4 .sec-inner,
.section5 .sec-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

/* =========================
   section4
========================= */

.section4 .sun-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.section4 .sun {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1100px;
    height: 1100px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 191, 0, 1) 0%,
        rgba(255, 191, 0, 0.5) 100%
    );
    filter: blur(200px);
    will-change: transform, left, bottom;
    transform-origin: center center;
}

.section4 .text-wrap {
    position: absolute;
    left: 0;
    top: 160px;
    width: 100%;
    z-index: 2;
    text-align: center;
    will-change: opacity, transform;
}

.section4 .text-wrap .sub-title {
    position: relative;
    height: 60px;
    font-size: 41px;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    margin-bottom: 18px;
}

.section4 .text-wrap .time-box {
    position: relative;
    height: 120px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section4 .text-wrap .time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 120px;
    font-size: 106px;
    font-weight: 700;
    line-height: 1;
}

.section4 .time .digit-slot {
    position: relative;
    width: 72px;
    height: 120px;
    overflow: hidden;
}

.section4 .time .digit-window {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.section4 .time .digit-reel {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    will-change: transform;
}

.section4 .time .digit-reel span {
    display: block;
    width: 100%;
    height: 120px;
    line-height: 120px;
    text-align: center;
    opacity: 1;
}

.section4 .time .colon {
    width: 38px;
    height: 120px;
    line-height: 110px;
    text-align: center;
    flex: 0 0 auto;
    padding-top: 6px;
    animation: blink 1.2s infinite ease-in-out;
}

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

.section4 .text-wrap .title {
    position: relative;
    height: 180px;
    font-size: 74px;
    font-weight: 700;
    line-height: 1.15;
    overflow: hidden;
    margin-bottom: 28px;
}

.section4 .text-wrap .desc {
    position: relative;
    height: 145px;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.45;
    overflow: hidden;
}

.section4 .sub-title span,
.section4 .title span,
.section4 .desc span {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    transform: translateX(-50%);
    opacity: 0;
    will-change: opacity;
}

.section4 .sub-title span.active,
.section4 .title span.active,
.section4 .desc span.active {
    transform: translateX(-50%);
    opacity: 1;
}

/* =========================
   section5
========================= */

.section5 {
    width: 100%;
    height: 100vh;
    position: absolute;
    inset: 0;
}

.section5 .three-wrap {
    display: flex;
    width: 100%;
    height: 100vh;
}

.section5 .three-wrap > div {
    width: 33.3333%;
    height: 100%;
    will-change: transform;
}

.section5 .three-wrap > div.first { background: #EBF4FF; }
.section5 .three-wrap > div.second { background: #DDECFF; }
.section5 .three-wrap > div.third { background: #D0E5FF; }

.section5 .three-wrap > div .fade-box {
    padding: 0 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}

.section5 .three-wrap .text-wrap { margin-bottom: 30px; }
.section5 .three-wrap .text-wrap .sub-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: #3777cc; }
.section5 .three-wrap .text-wrap .title { font-size: 43px; font-weight: 700; color: #2e2e2e; }
.section5 .three-wrap .img-box { width: 100%; border-radius: 10px; overflow: hidden; }
.section5 .three-wrap .img-box img { width: 100%; display: block; }
.section5 .three-wrap .desc { margin-top: 30px; font-size: 20px; font-weight: 500; color: #2e2e2e; }
.section5 .three-wrap ul { display: flex; align-items: center; }
.section5 .three-wrap ul.mt-30 { margin-top: 30px; }
.section5 .three-wrap ul li { font-size: 20px; font-weight: 500; color: #2e2e2e; }


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

.section6 .sec-inner {
    width: 100%;
    height: 100%;
}

.compare-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    user-select: none;
}

.compare-wrap .ray-icon { position: absolute; left: 120px; top: 50%; transform: translateY(-50%); z-index: 10; }
.compare-wrap .ray-icon img { width: 159px; }

.compare-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.compare-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* 아래 이미지는 그냥 전체 */
.compare-back {
    z-index: 1;
}

/* 위 이미지도 실제 크기는 100% 전체 */
.compare-front {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    -webkit-clip-path: inset(0 50% 0 0);
}

/* 세로 라인 */
.compare-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    z-index: 3;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,1) 50%,
        rgba(255,255,255,0) 100%
    );
}

/* 드래그 핸들 */
.compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 116px;
    height: 116px;
    border: none;
    border-radius: 50%;
    background: none;
    cursor: ew-resize;
    pointer-events: auto;
    padding: 0;
}

/* 화살표 */
.compare-handle .arrow {
    position: absolute;
    top: 50%;
}

.compare-handle .arrow.left {
    left: 0;
    transform: translateY(-50%);
}

.compare-handle .arrow.right {
    right: 0;
    transform: translateY(-50%);
}
.compare-handle .arrow.right svg { rotate: 180deg; }

.compare-handle .mal-box {
    position: absolute;
    left: -260px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity 0.5s ease;
    animation: malBlink 2s ease-in-out infinite;
    pointer-events: none;
}

.compare-handle .mal-box.hide {
    opacity: 0;
    animation: none;
}

@keyframes malBlink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
    100% {
        opacity: 1;
    }
}




.section7 {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #FFFFFB;
    overflow: hidden;
}

.section7 .sec-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.section7 .logo-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.section7 .h-scroll {
    width: max-content;
    height: 100%;
    position: relative;
    z-index: 2;
}

.section7 .flex-box {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
}

.section7 .left-text-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50vw;
    height: 100%;
    flex-shrink: 0;
}

.section7 .left-text-wrap .title {
    font-size: 74px;
    font-weight: 700;
    color: #F07F58;
    line-height: 1.2;
}

.section7 .pyo-wrap {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    min-width: 5600px;
    position: relative;
    flex-shrink: 0;
    padding-right: 100px;
    height: 100%;
}

.section7 .pyo-head {
    position: relative;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
    will-change: transform;
    box-shadow: 11px 5px 22px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.section7 .pyo-head img {
    display: block;
    max-width: 280px;
    height: 100%;
}

.section7 .pyo-img {
    flex-shrink: 0;
    height: 100%;
}

.section7 .pyo-img img {
    display: block;
    max-width: none;
    width: auto;
    height: 100%;
}

.section7 .naver-wrap {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.section7 .naver-wrap .title {
    font-size: 74px;
    font-weight: 700;
    line-height: 1.2;
}

.section7 .naver-wrap .title span {
    color: #00C73D;
}

.section7 .naver-wrap > a {
    width: 280px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00C73D;
    margin-top: 100px;
}

.section7 .naver-wrap > a span {
    font-size: 23px;
    font-weight: 700;
    margin-left: 7px;
}

.section7 .bg {
    width: 30%;
    height: 30vh;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fffffb;
    z-index: 5;
    pointer-events: none;
    will-change: opacity;
}

/* 다시 section7 내부 소속 */
.section7 .section7-moving {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.section7 .section7-moving .img-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    will-change: left, top, width, height;
}

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

.section7 .section7-moving .text-box {
    position: absolute;
    left: 228px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.section7 .section7-moving .text-box > div {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.section7 .section7-moving .text-box > div:last-child {
    margin-bottom: 0;
}

.section7 .section7-moving .text-box .num {
    font-size: 120px;
    font-weight: 200;
    color: #C2DEF8;
}

.section7 .section7-moving .text-box .desc {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-left: 30px;
    margin-top: 20px;
}

.section8 {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url('/theme/basic/img/sec8_bg.jpg') center / cover no-repeat;
    overflow: hidden;
}

.section8 .sec-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section8 .bete-wrap {
    width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section8 .bete-wrap .text-box .sub-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 3px;
}

.section8 .bete-wrap .text-box .title {
    font-size: 74px;
    font-weight: 700;
    line-height: 1.15;
}

.section8 .bete-wrap .text-box .desc {
    font-size: 34px;
    font-weight: 400;
    margin-top: 28px;
}

.section8 .bete-wrap .text-box .link-box { margin-top: 75px; display: flex; align-items: center; }
.section8 .bete-wrap .text-box .link-box .link { width: 248px; height: 69px; display: flex; align-items: center; justify-content: center; background: #36B6E0; border-radius: 16px; margin-right: 12px; }
.section8 .bete-wrap .text-box .link-box .link span { font-size: 23px; font-weight: 700; }





.section8 .bete-wrap .right-img-wrap {
    width: 620px;
    height: 700px;
    position: relative;
}

.section8 .bete-wrap .right-img-wrap .img-box {
    position: absolute;
    bottom: 0;
    will-change: transform, opacity;
}

.section8 .bete-wrap .right-img-wrap .img-box.one {
    right: 0;
    z-index: 2;
}

.section8 .bete-wrap .right-img-wrap .img-box.two {
    left: 0;
    z-index: 1;
}

.section8 .bete-wrap .right-img-wrap .img-box img {
    display: block;
    width: auto;
    max-width: none;
    height: auto;
    box-shadow: 4px 4px 43px rgba(0, 0, 0, 0.18);
}
.section8 .bete-wrap .right-img-wrap .img-box.one img { border-radius: 36px; }
.section8 .bete-wrap .right-img-wrap .img-box.two img { border-radius: 20px; }



.section9 {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #FFFFFB;
    overflow: hidden;
}

.section9 .sec-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.section9 .text-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.section9 .text-wrap .text-scale {
    will-change: transform;
    transform: scale(1.2);
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section9 .text-wrap .sub-title {
    font-size: 26px;
    font-weight: 700;
    color: #FF826A;
    margin-bottom: 16px;
}

.section9 .text-wrap .title {
    font-size: 74px;
    font-weight: 700;
    color: #FF826A;
    line-height: 1.2;
}

.section9 .card-group {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    height: 320px;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.section9 .abs-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}
.section9 .abs-box.abs-1,
.section9 .abs-box.abs-5 { width: 220px; height: 254px; }

.section9 .abs-box img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}


.section10 {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #fffffb;
    overflow: hidden;
}

.section10 .sec-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.section10 .text-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section10 .text-wrap .title-item {
    position: relative;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.section10 .text-wrap .title-item:last-child {
    margin-bottom: 0;
}

.section10 .text-wrap .title {
    font-size: 93px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    position: relative;
    cursor: pointer;
    will-change: transform, filter, opacity;
    transition:
        opacity 0.45s ease,
        filter 0.45s ease,
        transform 0.45s ease;
}

.section10 .text-wrap .title.color-1 { color: #9CC9F5; }
.section10 .text-wrap .title.color-2 { color: #5DA4EF; }
.section10 .text-wrap .title.color-3 { color: #3777CC; }
.section10 .text-wrap .title.color-4 { color: #1F499C; }

.section10 .text-wrap .title-item .img-box {
    position: absolute;
    left: -300px;
    bottom: -30px;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transform-origin: left bottom;
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 10;
    will-change: opacity, transform;
}

.section10 .text-wrap .title-item:nth-child(2) .img-box {
    bottom: -50px;
}

.section10 .text-wrap .title-item.active .img-box {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section10 .text-wrap .title-item.dim .title {
    opacity: 0.22;
    filter: blur(6px);
}

.section10 .text-wrap .title-item .img-box > div {
    position: relative;
}

.section10 .text-wrap .title-item .img-box .title-box {
    display: flex;
    align-items: center;
    width: 178px;
    height: 64px;
    border-radius: 200px;
    margin-left: 10px;
    margin-bottom: 10px;
    box-shadow: 0 6px 18px rgba(31, 73, 156, 0.08);
}

.section10 .text-wrap .title-item .img-box .title-box.bg1 { background: #9CC9F5; }
.section10 .text-wrap .title-item .img-box .title-box.bg2 { background: #5DA4EF; }
.section10 .text-wrap .title-item .img-box .title-box.bg3 { background: #3777CC; }
.section10 .text-wrap .title-item .img-box .title-box.bg4 { background: #1F499C; }

.section10 .text-wrap .title-item .img-box .title-box .wonjang {
    width: 48px;
    height: 48px;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    margin-left: 8px;
    flex: 0 0 auto;
}

.section10 .text-wrap .title-item .img-box .title-box .wonjang img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.section10 .text-wrap .title-item .img-box .title-box .name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0 12px;
    line-height: 1;
}

.section10 .text-wrap .title-item .img-box .answer {
    position: relative;
    width: 506px;
    padding: 28px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 20px;
    text-align: left;
    line-height: 1.4;

    background: rgba(214, 232, 255, 1);
    border: 1px solid rgba(156, 201, 245, 1);
    box-shadow:
        0 14px 34px rgba(31, 73, 156, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section10 .text-wrap .title-item .img-box .answer .desc {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 160%;
    color: #1F499C;
    word-break: keep-all;
}




.section11 {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url('/theme/basic/img/sec11_bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.section11 .sec-inner {
    width: 100%;
    height: 100%;
}

.section11 .flex-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-top: 60px;
}

.section11 .flex-wrap .text-wrap {
    margin-bottom: 50px;
}

.section11 .flex-wrap .text-wrap .title {
    font-size: 55px;
    font-weight: 700;
}

.section11 .flex-wrap .blur-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section11 .flex-wrap .blur-wrap .naver-blur {
    width: 505px;
    padding: 23px 33px;
    border-radius: 10px;
    background: rgba(203, 225, 255, 0.2);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
}

.section11 .flex-wrap .blur-wrap .naver-blur:last-child {
    margin-bottom: 0;
}

.section11 .flex-wrap .blur-wrap .naver-blur .desc-title {
    font-size: 16px;
    font-weight: 700;
}

.section11 .flex-wrap .blur-wrap .naver-blur .desc {
    font-size: 16px;
    font-weight: 400;
}

.section11 .flex-wrap .blur-wrap .naver-blur .logo {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.section11 .flex-wrap .blur-wrap .naver-blur .logo .name {
    font-size: 16px;
    font-weight: 300;
    margin-left: 10px;
}

/* 초기 애니메이션 상태 */
.section11 .text-wrap,
.section11 .naver-blur {
    opacity: 0;
    transform: translateY(60px);
    will-change: transform, opacity;
}


.section12 { width: 100%; padding: 110px 0; position: relative; background: #3759B7; }
.section12 .text-wrap { margin-bottom: 50px; }
.section12 .text-wrap .title { font-size: 55px; font-weight: 700; }

.section12 .qna-wrap { width: 850px; margin: 0 auto; }
.section12 .qna-wrap .qna-item { margin-bottom: 14px; }
.section12 .qna-wrap .qna-item:last-child { margin-bottom: 0; }

.section12 .qna-wrap .qna-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 34px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.section12 .qna-wrap .qna-question:hover {
    background: #1B398B;
}

.section12 .qna-wrap .qna-item.active .qna-question {
    background: #1B398B;
}

.section12 .qna-wrap .qna-question li {
    font-size: 24px;
    font-weight: 600;
}

.section12 .qna-wrap .desc {
    font-size: 16px;
    font-weight: 500;
    color: #BFD2F7;
    padding: 0 34px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}

.section12 .qna-wrap .qna-item.active .desc {
    max-height: 500px;
    padding-top: 18px;
    padding-bottom: 10px;
}

.section12 .qna-wrap .svg-box {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.section12 .qna-wrap .qna-item.active .svg-box {
    transform: rotate(180deg);
}

.section13 { width: 100%; height: 100vh; position: relative; }
.section13 .sec13-slide { width: 100%; height: 100vh; position: relative; overflow: hidden; }
.section13 .sec13-slide .swiper-slide { width: 100%; height: 100vh; position: relative; }
.section13 .sec13-slide .swiper-slide .img-box { width: 100%; height: 100vh; position: relative; }
.section13 .sec13-slide .swiper-slide .img-box img { width: 100%; height: 100%; position: absolute; left: 0; object-fit: cover; }
.section13 .sec13-slide .swiper-slide .text-box { position: absolute; left: 50%; top: 36%; transform: translate(-50%, -50%); z-index: 1; }
.section13 .sec13-slide .swiper-slide .text-box .title { font-size: 55px; font-weight: 700; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }

.section13 .sec13-slide .swiper-button-next { background: url('/theme/basic/svg/w_slide_next_btn.svg'); background-position: center; background-repeat: no-repeat; background-size: cover; width: 46px; height: 46px; left: auto; right: 70px; }
.section13 .sec13-slide .swiper-button-prev { background: url('/theme/basic/svg/w_slide_prev_btn.svg'); background-position: center; background-repeat: no-repeat; background-size: cover; width: 46px; height: 46px; right: auto; left: 70px; }
.swiper-button-prev:after, 
.swiper-button-next:after,
.section13 .sec13-slide .swiper-button-next svg,
.section13 .sec13-slide .swiper-button-prev svg { display: none; }



.section14 { width: 100%; padding: 200px 0; position: relative; background: #fffffb; }
.section14 .bete-wrap { width: 1460px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.section14 .bete-wrap .left .title { font-size: 55px; font-weight: 700; }
.section14 .bete-wrap .left .desc { font-size: 19px; font-weight: 400; color: #232323; margin-top: 24px; }
.section14 .bete-wrap .right a { width: 306px; height: 69px; position: relative; border-radius: 16px; background: #36B6E0; display: flex; align-items: center; justify-content: center; }
.section14 .bete-wrap .right a span { font-size: 23px; font-weight: 700; }



.footer { width: 100%; background: #fffffb; position: relative; padding-bottom: 100px; }
.footer .bete-wrap { display: flex; justify-content: center; width: 100%; position: relative; }
.footer .bete-wrap > div { width: 50%; }
.footer .bete-wrap > div.abs-img-wrap { width: 100%; position: absolute; left: 0; top: 0; z-index: 3; }
.footer .bete-wrap > div.abs-img-wrap .abs-img-box { position: relative; width: 100%; padding-bottom: 38.3%; overflow: hidden; }
.footer .bete-wrap > div.abs-img-wrap .abs-img-box .map { width: 100%; height: 100%; position: absolute; left: 0; object-fit: cover; }

.footer .bete-wrap .img-box { width: 100%; padding-bottom: 76.25%; position: relative; overflow: hidden; margin-bottom: 50px; }
.footer .bete-wrap .img-box img,
.footer .bete-wrap .img-box .map { width: 100%; height: 100%; position: absolute; left: 0; object-fit: cover; transition: all 0.4s ease-in; }

.footer .bete-wrap .img-box img { opacity: 0; }
.footer .bete-wrap .img-box img.default { opacity: 1; }
.footer .bete-wrap .img-box:hover img.hover { z-index: 2; opacity: 1; }


.map_overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: transparent;
    cursor: pointer;
  }

.footer .bete-wrap .root_daum_roughmap .wrap_controllers,
.footer .bete-wrap .root_daum_roughmap .cont { display: none; }
.footer .bete-wrap .root_daum_roughmap .wrap_map { height: 100%; }


.footer .bete-wrap .text-wrap { padding-left: 64px; }

.footer .bete-wrap .inline-flex { display: inline-flex; }
.footer .bete-wrap .flex { display: flex; align-items: center; }
.footer .bete-wrap .flex.start { align-items: flex-start; }
.footer .bete-wrap .flex.mt-20 { margin-top: 20px; }
.footer .bete-wrap .flex.pl-50 { padding-left: 50px; }
.footer .bete-wrap .flex.mt-8 { margin-top: 8px; }
.footer .bete-wrap .flex li { font-size: 27px; font-weight: 600; }
.footer .bete-wrap .flex li.svg-box { margin-right: 9px; flex: none; height: 39px; }
.footer .bete-wrap .flex.call li { font-size: 28px; font-weight: 800; }
.footer .bete-wrap .flex li.w93 { width: 93px; margin-right: 50px; }
.footer .bete-wrap .flex li.w168 { width: 168px; }
.footer .bete-wrap .flex li.last { font-size: 18px; font-weight: 600; color: #fff; padding: 6px 14px; border-radius: 15px; background: #3D65B5; margin-left: 25px; }
.footer .bete-wrap .flex li.blue { color: #308BD1; }
.footer .bete-wrap .desc-box { margin-top: 12px; padding-left: 50px; }
.footer .bete-wrap .desc-box .desc { font-size: 20px; font-weight: 600; color: #C73F3F; }
.footer .bete-wrap .link-box { display: flex; align-items: center; margin-top: 50px; }
.footer .bete-wrap .link-box a { margin-right: 10px; }
.footer .bete-wrap .link-box a:last-child { margin-right: 0; }

.footer .footer-of-footer { margin-top: 100px; }
.footer .footer-of-footer .login-box { display: flex; align-items: center; justify-content: center; margin-top: 44px; }
.footer .footer-of-footer .login-box span { margin-right: 20px; }
.footer .footer-of-footer .login-box span:last-child { margin-right: 0; }
.footer .footer-of-footer .copy-box { margin-top: 44px; }
.footer .footer-of-footer span,
.footer .footer-of-footer span a { font-size: 16px; font-weight: 400; color: #4e4e4e; }






