@charset "utf-8";

.swp_slide2 {
    position: relative;
    height: 100%;
}

#visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.swp_slide2 .swiper-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.swp_slide2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
}

.swp_slide2 .swiper-container .swiper-wrapper .swiper-slide .swp_bg {
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transition: transform 12s;
    z-index: -1;
}

.swp_slide2 > .swiper-container > .swiper-wrapper > .swiper-slide.swiper-slide-active > .swp_bg {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swp_slide2 .swp_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .4;
}

.swp_slide2 .swp_txt {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    color: #fff;
}

.swp_slide2 .swiper-slide .swp_txt {
    display: block;
    top: 39%;
    height: 100%;
    margin: 0 auto;
    max-width: 1280px;
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: left;
}

.sec1 .swp_slide2 .swiper-slide .swp_txt {
    top: auto;
    height: auto;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    text-align: center;
}

.sec1 .swp_slide2 .swiper-slide .anim p {
    text-align: center;
}

.swp_slide2 .swiper-slide .anim p:nth-child(1) {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.swp_slide2 .swiper-slide-active .anim p:nth-child(1) {
    margin-bottom: 20px;
}

.swp_slide2 .swiper-slide-active .anim p {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.swp_slide2 .swiper-slide .anim p:nth-child(1) .anim_txt {
    font-size: 70px;
    font-weight: 700;
}

.swp_slide2 .swiper-slide .anim p:nth-child(2) .anim_txt {
    font-size: 24px;
    font-weight: 400;
}

.swp_slide2 .swiper-slide-active .anim p:nth-child(1) .anim_txt {
    font-size: 70px;
    font-weight: 700;
}

.swp_slide2 .swiper-slide-active .anim p:nth-child(2) .anim_txt {
    font-size: 24px;
    font-weight: 400;
}

.swp_slide2 .swiper-slide-active .anim p .anim_txt {
    display: block;
    animation: textanimation 1s backwards;
    animation-delay: 400ms;
}

.anim p:nth-child(1) .anim_txt {
    animation-delay: 400ms;
}

.anim p:nth-child(2) .anim_txt {
    animation-delay: 600ms;
}

@keyframes textanimation {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.swp_slide2 .swp-navi {
    position: absolute;
    bottom: 35%;
    left: 50%;
    z-index: 1;
    margin: 0;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.swp_slide2 .swp-navi__current,
.swp_slide2 .swp-navi__total {
    min-width: 22px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
}

.swp_slide2 .swiper-progress-bar {
    position: relative;
    z-index: 10;
    width: 120px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.swp_slide2 .swiper-progress-bar .stick {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
}

@media screen and (min-width: 1201px) {
    .swp_slide2 .swp-navi {
        left: 50%;
    }
}

@media screen and (max-width: 1200px) {
    .swp_slide2 .swp-navi {
        left: 50%;
    }

    .swp_slide2 .swiper-slide .swp_txt {
        padding-left: 30px;
    }

    .sec1 .swp_slide2 .swiper-slide .swp_txt {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 1024px) {
    #visual {
        margin-top: 60px;
    }

    .swp_slide2 .swiper-container .swiper-wrapper .swiper-slide .swp_txt h2 {
        font-size: 40px;
    }

    .swp_slide2 .swiper-container .swiper-wrapper .swiper-slide .swp_txt p {
        width: 80%;
        word-break: keep-all;
        line-height: 1.4;
    }

    .sec1 .swp_slide2 .swiper-container .swiper-wrapper .swiper-slide .swp_txt p {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@keyframes scroll {
    0% {
        transform: translate3d(0, -100%, 0);
    }

    100% {
        transform: translate3d(0, 100%, 0);
    }
}

.scr_wrap {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    z-index: 10;
}

.scr_wrap .scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0;
    width: auto;
    height: auto;
    transform: rotate(0deg);
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.scr_wrap .scroll i {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 1px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.scr_wrap .scroll i:before {
    display: block;
    content: "";
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, -100%, 0);
    animation-name: scroll;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
}

/* section2 — 회사소개 2분할 */
.sec2 {
    height: 100vh;
    min-height: 100vh;
}

.sec2-split {
    display: flex;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

.sec2-split__content {
    position: relative;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 56px;
    box-sizing: border-box;
    text-align: center;
    background-color: #f7f7f7;
    overflow: hidden;
}

.sec2-split__deco {
    position: absolute;
    left: 0px;
    bottom: 10px;
    z-index: 0;
    max-width: 308px;
    width: auto;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    transform: scale(1.68);
    transform-origin: left bottom;
}

.sec2-split__content > :not(.sec2-split__deco) {
    position: relative;
    z-index: 1;
}

.sec2-split__tag {
    margin: 0 0 24px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #E6770C;
}

.sec2-split__title {
    margin: 0 0 28px;
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #111827;
    word-break: keep-all;
}

.sec2-split__desc {
    margin: 0 0 40px;
    max-width: 420px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #666666;
    word-break: keep-all;
}

.sec2-split__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    min-width: 240px;
    padding: 16px 28px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    background-color: #111827;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.sec2-split__btn:hover,
.sec2-split__btn:focus {
    background-color: #000;
    border-color: #fff;
    color: #fff;
}

.sec2-split__btn-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
}

.sec2-split__btn-arrow {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.sec2-split__visual {
    flex: 0 0 50%;
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.sec2-visual,
.sec2-visual .swiper-container {
    width: 100%;
    height: 100%;
}

.sec2-visual .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.sec2-visual__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sec2-visual__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.sec2-visual__label {
    position: absolute;
    left: 48px;
    right: 48px;
    bottom: 88px;
    z-index: 2;
    margin: 0;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.sec2-navi {
    position: absolute;
    left: 48px;
    bottom: 36px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.sec2-navi__current,
.sec2-navi__total {
    min-width: 22px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: left;
}

.sec2-navi__bar {
    position: relative;
    width: 120px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.35);
}

.sec2-navi__stick {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
}

@media screen and (max-width: 1024px) {
    .sec2-split {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .sec2-split__content,
    .sec2-split__visual {
        flex: 1 1 auto;
        width: 100%;
        min-height: 50vh;
    }

    .sec2-split__content {
        padding: 48px 24px;
    }

    .sec2-split__deco {
        left: 0;
        bottom: 10px;
        max-width: 252px;
    }

    .sec2-split__desc br {
        display: none;
    }

    .sec2-visual__label {
        left: 24px;
        right: 24px;
        bottom: 72px;
        font-size: 32px;
    }

    .sec2-navi {
        left: 24px;
    }
}

/* section3 — 3열 호버 배경 전환 */
.sec3 {
    height: 100vh;
    min-height: 100vh;
}

.sec3-panel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.sec3-panel__bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sec3-panel__bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.55s ease;
    will-change: opacity;
}

.sec3-panel__bg.is-active {
    opacity: 1;
}

.sec3-panel__bg-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.sec3-head {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: calc(10vh + 80px) 24px 0;
    box-sizing: border-box;
    text-align: center;
    pointer-events: none;
}

.sec3-head__label {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #E6770C;
}

.sec3-head__title {
    margin: 0 0 20px;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
}

.sec3-head__desc {
    margin: 0;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    word-break: keep-all;
}

.sec3-panel__cols {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100vh;
}

.sec3-col {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 10%;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.sec3-col:hover,
.sec3-col:focus,
.sec3-col:focus-visible {
    color: #fff;
    outline: none;
}

.sec3-col:last-child {
    border-right: 0;
}

.sec3-col__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(238, 117, 0, 0) 42.12%, #EE7500 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.sec3-col.is-active .sec3-col__overlay,
.sec3-col:hover .sec3-col__overlay {
    opacity: 1;
}

.sec3-col__inner {
    position: relative;
    z-index: 1;
    max-width: 280px;
}

.sec3-col__dot {
    display: block;
    width: 8px;
    height: 8px;
    margin-bottom: 18px;
    border-radius: 50%;
    background-color: var(--color-brand-600, #f77971);
}

.sec3-col__title {
    margin: 0 0 14px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: inherit;
}

.sec3-col__desc {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    word-break: keep-all;
}

@media screen and (max-width: 1024px) {
    .sec3-head {
        position: relative;
        padding: 128px 20px 32px;
    }

    .sec3-head__label {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .sec3-head__title {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .sec3-head__desc {
        font-size: 15px;
    }

    .sec3-panel__cols {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .sec3-col {
        flex: 1;
        min-height: calc(100vh / 3);
        padding: 32px 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .sec3-col:last-child {
        border-bottom: 0;
    }

    .sec3-col__title {
        font-size: 28px;
    }

    .sec3-col__desc {
        font-size: 14px;
    }
}

/* section5 — footer (fullPage auto height) */
.sec5 {
    height: auto !important;
    min-height: 0 !important;
}

.sec5 .site-footer {
    width: 100%;
}

/* section4 — 문의 */
.sec4 {
    height: 100vh;
    min-height: 100vh;
}

.sec4-inquiry {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.sec4-inquiry__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.08);
    filter: blur(6px);
}

.sec4-inquiry__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.sec4-inquiry__inner {
    position: relative;
    z-index: 2;
    max-width: 1520px;
    height: 100%;
    margin: 0 auto;
    padding: 72px 72px 56px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sec4-inquiry__head {
    margin-bottom: 56px;
    text-align: center;
}

.sec4-inquiry__label {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
}

.sec4-inquiry__title {
    margin: 0;
    font-size: clamp(32px, 2.8vw, 52px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #fff;
    word-break: keep-all;
}

.sec4-inquiry__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.sec4-inquiry__fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.sec4-inquiry__fields > .sec4-field {
    flex: 1;
    min-height: 68px;
}

.sec4-inquiry__side {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.sec4-field {
    display: flex;
    align-items: stretch;
    min-height: 68px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.sec4-field--textarea {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    min-height: 280px;
    padding: 20px 22px;
    overflow: hidden;
}

.sec4-field__label {
    flex: 0 0 148px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    box-sizing: border-box;
}

.sec4-field--textarea .sec4-field__label {
    flex: 0 0 auto;
    align-self: flex-start;
    padding: 0 0 14px;
}

.sec4-field__req {
    color: #E6770C;
}

.sec4-field__control {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.sec4-field--textarea .sec4-field__control {
    flex: 1;
    align-items: stretch;
}

.sec4-field__control select,
.sec4-field__control input {
    width: 100%;
    height: 100%;
    min-height: 68px;
    padding: 0 22px;
    border: 0;
    border-radius: 0 10px 10px 0;
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    font-size: 17px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
}

.sec4-field--textarea textarea {
    flex: 1;
    width: 100%;
    min-height: 168px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 17px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    resize: vertical;
}

.sec4-field__control select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
    padding-right: 48px;
    cursor: pointer;
}

.sec4-field__control select option {
    color: #111827;
    background: #fff;
}

.sec4-field__control input::placeholder,
.sec4-field--textarea textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.sec4-privacy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sec4-privacy__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
}

.sec4-privacy__label input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #E6770C;
}

.sec4-privacy__link {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sec4-privacy__link:hover {
    color: #fff;
}

.sec4-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 72px;
    margin-top: auto;
    padding: 0 28px;
    border: 0;
    border-radius: 10px;
    background: #E6770C;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.sec4-submit:hover,
.sec4-submit:focus {
    background: #cf6a0a;
}

.sec4-submit__arrow {
    font-size: 22px;
    line-height: 1;
}

@media screen and (max-width: 1024px) {
    .sec4-inquiry__inner {
        padding: 64px 24px 40px;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .sec4-inquiry__grid {
        grid-template-columns: 1fr;
    }

    .sec4-inquiry__fields,
    .sec4-inquiry__side {
        height: auto;
    }

    .sec4-inquiry__fields > .sec4-field {
        flex: none;
    }

    .sec4-field {
        flex-direction: column;
        min-height: 0;
    }

    .sec4-field__label {
        flex: 0 0 auto;
        width: 100%;
        padding: 14px 16px 0;
    }

    .sec4-field__control select,
    .sec4-field__control input {
        min-height: 52px;
        border-radius: 0 0 8px 8px;
    }

    .sec4-field--textarea {
        min-height: 200px;
        padding: 14px 16px;
    }

    .sec4-field--textarea textarea {
        min-height: 120px;
    }
}
