@media screen and (max-width:768px) {
    body {
        overflow: auto !important;
    }
}

.section {
    position: relative;
}

.sc_inner {
    transition: padding 0.5s ease;
}

.btn_scroll {
    position: fixed;
    bottom: 70px;
    right: 58px;
    z-index: 2;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #0080B9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}

.btn_scroll .ico_scrDown {
    width: 38px;
    height: 30px;
    background: url(/kor/img/ico_mainScrDown2.svg) center center/100% no-repeat;
}

.btn_scroll.show {
    opacity: 1;
    visibility: visible;
}

.btn_scroll.top {
    transform: rotate(180deg);
}

.btn_scroll.top .ico_scrDown {
    background: url(/kor/img/ico_mainScrDown.svg) center center/100% no-repeat;
}


@media screen and (max-width:1020px) {
    .btn_scroll {
        display: none;
    }
}

.visual {
    position: relative;
}

.visual .sc_inner {
    position: relative;
    height: 100vh;
}

.visual .visualSwiper {
    height: 100%;
}

.visual .visualSwiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    visibility: visible;
}

.visual .visualSwiper .swiper-slide img {
    /* animation: image-zoom-out 6s 0s forwards; */
    /* transform: scale(1.1); */
    /* transition: 7s ease; */
}

.visual .visualSwiper .swiper-slide-active img,
.visual .visualSwiper .swiper-slide-duplicate-active img {
    animation: image-zoom-out 6s 0s forwards;
    /* transform: scale(1); */
}

.visual .visualSwiper .img_box {
    /* position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%; */
    height: 100%;
}

.visual .visualSwiper .img_box img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.visual .visualSwiper .txt_box {
    z-index: 1;
    max-width: 840px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    padding-left: 106px;
    color: var(--dark-blue-gray-00-white, #FFF);
}

.visualSwiper .swiper-slide-active .visual_txt1,
.visualSwiper .swiper-slide-active .visual_txt2,
.visualSwiper .swiper-slide-active .visual_txt3 {
    animation: text-active-animation 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    /* opacity: 1.0;
    transform: translateY(0);
    transition: 1.5s ease; */
}

.swiper-slide-duplicate-active .visual_txt1,
.swiper-slide-duplicate-active .visual_txt2,
.swiper-slide-duplicate-active .visual_txt3 {
    animation: text-active-animation 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    /* opacity: 1.0;
    transform: translateY(0);
    transition: 1.5s ease; */
}

.visualSwiper .swiper-slide-active .visual_txt1 {
    transition-delay: 0.1s;
}

.visualSwiper .swiper-slide-active .visual_txt2 {
    transition-delay: 0.3s;
}

.visualSwiper .swiper-slide-active .visual_txt3 {
    transition-delay: 0.5s;
}


.visualSwiper .swiper-slide-duplicate-active .visual_txt1 {
    transition-delay: 0.1s;
}

.visualSwiper .swiper-slide-duplicate-active .visual_txt2 {
    transition-delay: 0.3s;
}

.visualSwiper .swiper-slide-duplicate-active .visual_txt3 {
    transition-delay: 0.5s;
}

.visualSwiper .splitting .char {
    /* opacity: 0;
    transform: translateY(50px);
    transition: 1.5s ease; */
    animation: text-fade-out 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.visualSwiper .swiper-slide-active .splitting .char {
    animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    /* opacity: 1.0;
    transform: translateY(0);     */
}

.visualSwiper .swiper-slide-duplicate-active .splitting .char {
    animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    /* opacity: 1.0;
    transform: translateY(0);     */
}

.visualSwiper .bullet_wrap {
    cursor: pointer;
}

.visual .visualSwiper .swiper-slide:first-child img {
    transform: scale(1.1);
}

@keyframes image-zoom-out {
    from {
        transform: scale(1.1, 1.1)
    }

    to {
        transform: scale(1.0, 1.0)
    }
}

@keyframes text-active-animation {
    from {
        opacity: 0;
        filter: Alpha(opacity=0);
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    to {
        opacity: 1.0;
        filter: Alpha(opacity=100);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes text-active-animation02 {
    from {
        opacity: 0;
        filter: Alpha(opacity=0);
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }

    to {
        opacity: 1.0;
        filter: Alpha(opacity=100);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes text-fade-out {
    from {
        opacity: 1.0;
        filter: Alpha(opacity=100);
    }

    to {
        opacity: 0;
        filter: Alpha(opacity=0);
    }
}

.visual .visual_txt1 {
    font-size: 50px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: -1px;
    padding-bottom: 12px;
}

.visual .visual_txt2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -1.28px;
    padding-bottom: 50px;
}

.visual .visual_txt3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.48px;
    opacity: 0;
}

.visual .progress_box {
    position: absolute;
    bottom: 100px;
    left: 0;
}

.visual .thumb_box {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.visual .thumb_box {
    display: flex;
    background: #fff;
    border-radius: 26px 0px 0px 26px;
    overflow: hidden;
    cursor: pointer;
}

.visual .thumb_box .left {
    padding: 54px 22px;
}

.visual .thumb_box .thumb_tit {
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    padding-bottom: 28px;
}

.visual .thumb_box .img {
    max-width: 130px;
    height: 100%;
}


.visual .thumb_box .img img {
    object-fit: cover;
    object-position: left;
    height: 100%;
}


.visual .swiper-horizontal .swiper-pagination-bullets {
    /* width: auto; */
    display: flex;
    margin: 0 auto;
    bottom: 100px;
    left: 106px;
}

.visual .swiper-horizontal .swiper-pagination-bullet {
    width: 58px;
    position: relative;
    height: 3px;
    border-radius: 0;
    position: relative;
    margin: 0;
    margin-right: 6px;
    overflow: hidden;
}


.visual .swiper-horizontal .swiper-pagination-bullet:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.visual .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
}

.visual .swiper-pagination-bullets .num {
    width: auto;
    color: var(--neutral-gray-00-white, #FFF);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 16px;
    text-align: left;
}

.visual .swiper-horizontal .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.5);
    width: 100px;

}

.visual .swiper-horizontal .swiper-pagination-bullet-active:before {
    background: rgba(255, 255, 255, 1);
    animation: slide-progress 7s cubic-bezier(.3, 0, .3, 1) forwards;
}


.visual .swiper-horizontal .swiper-pagination-bullet-active:before .swiper-paused {
    animation-play-state: paused;
}

.visual .visualThumbSwiper {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    overflow: hidden;
    width: 340px;
    display: none;
    height: 304px;
}

.visual .visualThumbSwiper .swiper-slide {
    display: flex;
    z-index: 10;
    background: #fff;
    border-radius: 26px 0px 0px 26px;
    align-items: center;
    cursor: pointer;
}


.visual .visualThumbSwiper .img_box {
    width: 30%;
    z-index: 10;
    flex: 1;
    height: 100%;
}

.visual .visualThumbSwiper .img_box img {
    object-fit: cover;
    height: 100%;
}

.visual .visualThumbSwiper .txt_box {
    padding: 44px 22px;
    width: 60%;
}

.visual .visualThumbSwiper .txt_box .c {
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 28px;
}

.ico_next {
    margin-top: 18px;
    width: 24px;
    height: 24px;
    background-image: url(/img/ico_visual_next.png);
}

.visual .visualThumbSwiper .visual_txt1,
.visual .visualThumbSwiper .visual_txt2 {
    color: var(--neutral-gray-800, #262626);
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.36px;
    padding-bottom: 0;
}


@keyframes slide-progress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@media screen and (min-width: 1351px) {
    .visual .visualThumbSwiper {
        display: block;
    }
}

@media screen and (max-width: 1350px) {

    .visual .thumb_box {
        display: none;
    }

    .visual .visualSwiper .txt_box {
        padding: 0 5%;
    }

    .visual .swiper-pagination {
        position: relative;
    }

    .visual .swiper-horizontal .swiper-pagination-bullets {
        width: calc(90%);
        display: flex;
        margin: 0 auto;
        left: unset;
        /* bottom: unset; */
    }
}


@media screen and (max-width: 768px) {
    .visual .visualSwiper .txt_box {
        top: 50%;
        transform: unset;
        padding: 0 16px;
    }

    .visual .visual_txt1 {
        font-size: 25px;
        letter-spacing: -0.5px;
    }

    .visual .visual_txt2 {
        font-size: 30px;
        line-height: 100%;
        letter-spacing: -0.6px;
    }

    .visual .visual_txt3 {
        font-size: 17px;
        line-height: 160%;
        letter-spacing: -0.34px;
    }

    .visual .swiper-horizontal .swiper-pagination-bullets {
        width: calc(100% - 8px);
        padding: 0 16px;
    }

    .visual .swiper-horizontal .swiper-pagination-bullets.fade-up {
        transition: none;
    }
    .visual .swiper-pagination {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .visual .swiper-pagination .bullet_wrap {
        width: 40%;
    }

    .visual .swiper-pagination .bullet_wrap.on {
        width: 100%;
    }

    .visual .swiper-horizontal .swiper-pagination-bullet-active {
        width: 100%;
    }

    .visual .swiper-horizontal .swiper-pagination-bullet {
        width: 100%;
    }

    .visual .swiper-horizontal .swiper-pagination-bullet:before {}
}

@media screen and (max-width: 768px) {
    .visual .visualSwiper .txt_box {
        top: 46%;
    }
}

/* sc2 : No.1 */
.sc2 {
    background: url(/kor/img/bg_sc2.png) center center/cover no-repeat;
    overflow: hidden;
}

@media screen and (max-width:768px) {
    .sc2 {
        background: url(/kor/img/m_bg_sc2.png) center center/cover no-repeat;
    }
}

.sc2 .sc_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.sc2 .left {
    /* flex-shrink: 0; */
    flex: 1;
    position: relative;
}

.sc2 .img_box {
    /* width: 50%; */
    position: relative;
    height: 100%;
    width: 90%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.sc2 .box_circle {
    position: absolute;
    top: 50%;
    left: 50%;
    /* width: 100%;
    height: 100%; */
    transform: translate(-50%, -50%);
    /* transform-origin: center; */
}

.sc2 .img_circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    margin: 0 auto;
}

.sc2 .img_circle:nth-child(1) {
    min-width: 820px;
    height: 820px;
    animation: rotate 50s linear infinite;
}

.sc2 .img_circle:nth-child(2) {
    min-width: 880px;
    height: 880px;
    animation: rotate-reverse 50s linear infinite;
}

.sc2 .img_circle:nth-child(3) {
    min-width: 950px;
    animation: rotate 50s linear infinite;
}

.sc2 .img_circle:nth-child(4) {
    min-width: 1000px;
    animation: rotate-reverse 50s linear infinite;
}


@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


@keyframes rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}


.sc2 .img {
    width: 100%;
    max-width: 650px;
    min-width: 650px;
    position: absolute;
    top: 50%;
    left: 50%;
    flex-shrink: 0;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 80px 0px #000;
    /* margin-top: 28px; */
    border-radius: 50%;
}


.sc2 .right {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.sc2 .right .sc2_txt1 {
    color: var(--neutral-gray-50002, #737373);
    padding-bottom: 10px;
}


.sc2 .right .sc2_txt2 {
    line-height: 140%;
    padding-bottom: 80px;
}

.ico_quotes {
    width: 22px;
    height: 17px;
    background-image: url(/img/ico_quotes_b.png);
    margin-bottom: 24px;
}

.w .ico_quotes {
    background-image: url(/img/ico_quotes_w.png);
}

.ico_quotes.bl,
.w .ico_quotes.bl {
    background-image: url(/img/ico_quotes_bl.png);
}

.sc2 .right .sc2_txt3 {
    padding-bottom: 60px;
    color: #e5e5e5;
}

.link_more {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    width: fit-content;
    overflow: hidden;
}

.link_more p {
    /* position: relative; */
    height: 100%;
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.48px;
}

.link_more p:before {
    content: '';
    display: block;
    background: #262626;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
}

.w .link_more p:before {
    background: #fff;
}

.ico_more {
    width: 40px;
    height: 40px;
    background-image: url(/img/ico_more.png);
}



@media screen and (max-width: 1600px) {

    .sc2 .left {
        flex: 1;
    }

    .sc2 .img_box {
        width: 70%;
    }

    .sc2 .img {
        min-width: 486px;
    }

    .sc2 .img_circle:nth-child(1) {
        min-width: 620px;
        height: 620px;
        animation: rotate 50s linear infinite;
    }

    .sc2 .img_circle:nth-child(2) {
        min-width: 680px;
        height: 680px;
        animation: rotate-reverse 50s linear infinite;
    }

    .sc2 .img_circle:nth-child(3) {
        min-width: 750px;
        animation: rotate 50s linear infinite;
    }

    .sc2 .img_circle:nth-child(4) {
        min-width: 800px;
        animation: rotate-reverse 50s linear infinite;
    }
}


@media screen and (max-width: 1350px) {
    .sc2 .sc_inner {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .sc2 .left {}

    .sc2 .right {
        max-width: unset;
    }

    .sc2 .right .tit_box {
        padding-bottom: 40px;
    }

    .sc2 .right .sc2_txt2 {
        padding-bottom: 40px;
    }

    .sc2 .right .sc2_txt2 br {
        display: none;
    }

    .sc2 .right .m_img {
        max-width: fit-content;
        max-height: 30vh;
        width: 100%;
    }

    .sc2 .right .sc2_txt3 {
        padding-bottom: 40px;
    }

    .sc2 .box_circle {
        display: none;
    }
}

@media screen and (max-width: 1020px) {
    .sc2 .sc_inner {
        padding: 60px 0;
    }
}

@media screen and (max-width:980px) {
    .ico_more {
        width: 36px;
        height: 36px;
    }

    .link_more {
        font-size: 18px;
    }

    .link_more p {
        font-size: 18px;
        font-weight: 500;
        line-height: 36px;
        letter-spacing: -0.36px;
    }
}


@media screen and (max-width: 768px) {
    .sc2 .sc_inner {
        padding: 50px 16px;
    }

    .ico_quotes {
        width: 16px;
        height: 12px;
        margin-bottom: 18px;
    }

    .sc2 .right .m_img {
        max-height: unset;
    }
}

/* sc3 : 제품소개 */
.sc3 .sc_inner {
    display: flex;
    padding: 0 86px;
    flex-direction: column;
    gap: 80px;
    justify-content: space-between;
}

.sc3 .sc_inner>.top {
    display: flex;
    gap: 140px;
}

.sc3 .txt_box {
    max-width: 556px;
    align-self: flex-start;
}

.sc3 .bottom {
    display: flex;
    gap: 40px;
    flex-grow: 0;
}


.sc3 .gallery .swiper-slide {
    display: flex;
    flex-wrap: nowrap;
}

.sc3 .gallery .img_box {
    /* max-width: 960px; */
    overflow: hidden;
    border-radius: 50px;
    flex: 1;
}

.sc3 .gallery .img_box img {
    object-fit: cover;
    height: 100%;
    object-position: top;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.sc3 .gallery .txt_box {
    max-width: 465px;
    border-radius: 50px;
    background: linear-gradient(329deg, rgba(200, 229, 217, 0.70) 0%, rgba(161, 204, 223, 0.70) 100%);
    padding: 70px 48px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.sc3 .gallery .txt_box h3 {
    color: var(--dark-blue-gray-800, #1F2937);
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.6px;
    padding-bottom: 30px;
}

.sc3 .gallery .txt_box i {
    font-style: italic;
}

.sc3 .gallery .txt_box h3 .num {
    display: none;
}

.sc3 .gallery .txt_box p {
    color: var(--dark-blue-gray-700, #374151);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.36px;
}


.sc3 .gallery .txt_box a p {
    font-size: 24px;
    position: relative;
    line-height: 40px;
    letter-spacing: -0.48px;
    color: var(--neutral-gray-800, #262626);
}

.sc3 .gallery .txt_box a p:before {
    content: '';
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: var(--neutral-gray-800, #262626);
}

.sc3 .swiper-container {
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-height: 320px;
}

.sc3 .swiper-container-wrapper {
    display: flex;
    flex-flow: row nowrap;
    /* height: 100%; */
    position: relative;
    align-self: stretch;
    height: 100%;
    width: 100%;
    max-height: 500px;
}


.sc3 .gallery {
    position: relative;
    width: 80%;
    /* height: 100%; */
    margin-right: 10px;
    max-height: 500px;
    align-self: stretch;
}

.sc3 .gallery-thumbs {
    width: 20%;
    max-width: 240px;
    /* height: 100%; */
    padding: 0;
    overflow: hidden;
}

.sc3 .gallery-thumbs .img_box {
    position: relative;
}

.sc3 .gallery-thumbs .img_box img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.sc3 .gallery-thumbs .img_box .num {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Gmarket Sans";
    color: var(--a-accent, #005D86);
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.36px;
    opacity: 0;
}

.sc3 .gallery-thumbs .swiper-wrapper {
    flex-direction: column;
}

.sc3 .gallery-thumbs .swiper-slide {
    width: 100%;
    /* height: 33.333%; */
    min-width: 100%;
    opacity: 0.75;
    cursor: pointer;
    flex-flow: column nowrap;
}

.sc3 .gallery-thumbs .swiper-slide-active .img_box img {
    opacity: 1;
}

.sc3 .gallery-thumbs .swiper-slide-active .num {
    opacity: 1;
}

/* .gallery-thumbs, .gallery-thumbs .swiper-wrapper, .gallery-thumbs .swiper-slide {
    height: 100% !important;
} */

@media screen and (min-width:1600px) {
    .sc3 .sc_inner {
        gap: 60px;
    }
}

@media screen and (max-width: 1350px) {
    .sc3 .sc_inner {
        padding: 0 0;
    }

    .sc3 .gallery-thumbs {
        width: 15%;
    }

    .sc3 .gallery .txt_box {
        max-width: 320px;
        padding: 50px 40px;
    }
}

@media screen and (max-width: 1020px) {
    .sc3 .sc_inner {
        padding: 0 0;
        gap: 50px;
        justify-content: flex-start;
    }

    .sc3 .swiper-container {
        min-height: auto;
    }

    .sc3 .swiper-container-wrapper {
        flex-flow: column nowrap;
        max-height: unset;
    }

    .sc3 .gallery {
        width: 100%;
        height: 75vh;
    }

    .sc3 .gallery-thumbs {
        width: 100%;
        max-width: unset;
        /* height: 25vh; */
        padding-top: 10px;
    }

    .sc3 .gallery-thumbs .swiper-wrapper {
        flex-direction: row;
    }

    .sc3 .gallery-thumbs .swiper-slide {
        /* width: 33.333%; */
        flex-flow: row nowrap;
        min-width: unset;
    }


    .sc3 .gallery .swiper-slide {
        flex-direction: column;
    }

    .sc3 .gallery {
        order: -1;
        height: auto;
    }

    .sc3 .gallery .txt_box {
        order: -1;
        width: 100%;
        background: none;
        flex-direction: row;
        align-items: center;
        max-width: unset;
        padding: 0;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .sc3 .gallery .txt_box h3 {
        padding-bottom: 0;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: -0.36px;
    }

    .sc3 .gallery .txt_box h3 .num {
        display: inline-block;
        padding-right: 4px;
    }

    .sc3 .gallery .txt_box p {
        display: none;
    }

    .sc3 .gallery .img_box {
        max-height: 40vh;
    }
}

@media screen and (max-width: 1020px) {
    .sc3 .sc_inner>.top {
        flex-direction: column;
        gap: 40px;
    }

    .sc3 .sc_inner {
        padding: 60px 16px;
    }

    .sc3 .gallery .img_box {
        max-height: 50vh;
    }
}

@media screen and (max-width: 768px) {
    .sc3 .sc_inner {
        padding: 50px 16px;
        /* height: 100%; */
    }

    .sc3 .gallery-thumbs .img_box .num {
        font-size: 12px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.24px;
    }

    .sc3 .gallery .img_box {
        border-radius: 26px;
    }
}

/* sc4 : PR */
.sc4 {
    background: #f6f6f6;
    /* background: url(/img/bg_sc4.png) center center/cover no-repeat; */
}

.sc4 .sc_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 100px;
    padding: 0 86px;
}

.sc4 .left {
    flex: 1;
    max-width: 740px;
    position: relative;
    /* height: 100%; */

}

.sc4 .right {
    flex: 1;
    width: 50%;
    max-width: 844px;
    /* height: 50vh; */
    /* height: 100%; */
}

.sc4 .tit_box {
    padding-bottom: 40px;
}

.sc4 .left .txt_box {
    top: 0;
    position: absolute;
    left: 300px;
    padding-bottom: 60px;
}

.sc4 .txt_box .txt_list p {
    display: none;
}

.sc4 .txt_box .txt_list p.on {
    display: block;
}

.sc4 .btn_group {
    display: flex;
    z-index: 3;
    position: relative;
    gap: 20px;
    height: 320px;
}

.sc4 .btn_group .bar {
    width: 3px;
    height: 100%;
    background: #D4d4d4;
    position: relative;
    overflow: hidden;
}

.sc4 .btn_group .bar .active {
    position: absolute;
    top: 0;
    width: 100%;
    height: 40px;
    background: #005D86;
    display: block;
    transition: top 0.6s, left 0.6s;
}

.sc4 .btn_group .bar .active.idx0 {
    top: 0;
}

.sc4 .btn_group .bar .active.idx1 {
    top: calc(50% - 20px);
}

.sc4 .btn_group .bar .active.idx2 {
    top: calc(100% - 40px);

}

.sc4 .btn_box {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.sc4 .btn_box .btn_tab {
    border-radius: 999px;
    padding: 0;
    height: 40px;
}

.sc4 .btn_box .btn_tab p {
    color: #A3A3A3;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.6s;
}

.sc4 .btn_box .btn_tab p:after {
    transition: opacity 0.6s;
    content: '';
    position: relative;
    display: block;
    background: #005D86;
    width: 6px;
    height: 6px;
    opacity: 0;
}


.sc4 .btn_box .btn_tab.on p:after {
    opacity: 1;
}

.sc4 .btn_box .btn_tab.on p {
    color: #262626;

    /* color: var(--neutral-gray-00-white, #FFF); */
}

.sc4 .img_group {
    position: absolute;
    bottom: -130px;
    left: 0;
    background: #f6f6f6;
    padding-top: 68%;
    width: 800px;
}

.sc4 .img_group .img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: 100%;
    padding-top: 0;
    object-fit: contain;
    opacity: 0;
    transition: 0.6s;
    /* display: none; */
    mix-blend-mode: multiply;
}

.sc4 .img_group .img.on {
    opacity: 1;
    /* display: flex; */
}

.sc4 .con_list {
    display: none;
    height: 100%;
    position: relative;
    flex-direction: column;
    gap: 24px;
}

.sc4 .con_list.on {
    display: flex;
    animation: fade-up .6s ease;
}

@keyframes fade-up {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.sc4 .con_item {
    flex: 1;
    position: relative;
    box-sizing: border-box;
    border-radius: 30px;
    transition: transform 0.6s ease;
}

.sc4 .con_item a {
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 50px;
}

.sc4 .con_item .txt_box {
    background: var(--neutral-gray-00-white, #FFF);
    /* min-width: 468px; */
    padding: 40px 36px;
    box-sizing: border-box;
    position: relative;
    width: 70%;
    transition: all .6s ease;
}

.sc4 .con_item .swiper-slide-active .txt_box {
    background: var(--neutral-gray-800, #262626);
}


.sc4 .con_item .txt_box .type {
    color: var(--a-accent, #005D86);
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.32px;
    padding-bottom: 8px;
}

.sc4 .con_item .txt_box .txt1 {
    overflow: hidden;
    color: var(--neutral-gray-800, #262626);
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    min-height: 60px;
    letter-spacing: -0.4px;
}

.sc4 .con_item .txt_box .date {
    color: var(--neutral-gray-40001, #A3A3A3);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.32px;
}

@media screen and (min-width: 1350px) {

    .sc4 .con_item:hover {
        transform: translateX(-50px);
    }

    .sc4 .con_item:hover .txt_box {
        background: var(--neutral-gray-800, #262626);
    }

    .sc4 .con_item:hover .txt1 {
        color: var(--neutral-gray-00-white, #FFF);
    }

    .sc4 .con_item:hover .date {
        color: var(--neutral-gray-40001, #A3A3A3);
    }
}

@media screen and (max-width: 1350px) {
    .sc4 .sc_inner {
        padding: 0 0;
    }
}

@media screen and (max-width: 1020px) {
    .sc4 .sc_inner {
        padding: 60px 0;
    }
}

.sc4 .con_item .img_box {
    position: relative;
    flex: 1;
    overflow: hidden;
    flex-shrink: 0;
}

.sc4 .con_item .img_box img {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 0;
    object-fit: cover;
}

@media screen and (max-width:1350px) {
    .sc4 .left .txt_box {
        left: 246px;
        min-width: 230px;
    }

    .sc4 .img_group {
        bottom: -68px;
    }
}

@media screen and (max-width:980px) {
    .sc4 .left .txt_box {
        position: relative;
        top: unset;
        left: unset;
        min-width: unset;
        padding-bottom: 44px;
    }

    .sc4 .btn_group {
        height: auto;
        gap: 0;
        flex-direction: column;
    }

    .sc4 .btn_group .bar {
        order: 1;
        width: 100%;
        height: 2px;
    }

    .sc4 .btn_group .bar .active {
        width: calc(100%/3);
        height: 100%;
    }

    .sc4 .btn_group .bar .active.idx0 {
        top: unset;
        left: 0;
    }

    .sc4 .btn_group .bar .active.idx1 {
        top: unset;
        left: calc(100%/3);
    }

    .sc4 .btn_group .bar .active.idx2 {
        left: calc(100% - (100% / 3));
        top: unset;
    }

    .sc4 .img_group {
        display: none;
    }

    .sc4 .btn_box .btn_tab {
        height: auto;
        flex: 1;
        padding: 16px;
    }

    .sc4 .btn_box .btn_tab p:after {
        display: none;
    }

    .sc4 .btn_box .btn_tab p {
        justify-content: center;
    }



}

@media screen and (max-width: 980px) {
    .sc4 {
        background: var(--neutral-gray-10001, #F5F5F5);
    }

    .sc4 .sc_inner {
        flex-direction: column;
        gap: 20px;
        justify-content: start;
    }

    .sc4 .left {
        max-width: unset;
        height: unset;
    }

    .sc4 .right {
        height: unset;
        flex: unset;
        max-width: unset;
        width: unset;
    }

    .sc4 .btn_box {
        gap: 6px;
        flex-direction: row;
    }

    .sc4 .btn_box .btn_tab {
        padding: 9px 16px;
    }

    .sc4 .btn_box .btn_tab p {
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .sc4 .link_box {
        position: relative;
        margin-bottom: 0;
    }

    .sc4 .con_list {
        gap: 12px;
    }

    .sc4 .con_item {
        max-width: 100%;
    }

    .sc4 .con_item a {
        border-radius: 15px;
    }

    .sc4 .con_item .txt_box {
        min-width: 60vw;
        padding: 15px 16px;
    }

    .sc4 .con_item .txt_box .type {
        font-size: 12px;
        line-height: 150%;
        letter-spacing: -0.24px;
    }

    .sc4 .con_item .txt_box .txt1 {
        font-size: 15px;
        line-height: 140%;
        letter-spacing: -0.3px;
    }

    .sc4 .con_item .txt_box .date {
        font-weight: 500;
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .sc4 .sc_inner {
        padding: 50px 16px;
    }
}


/* sc5 : RECRUIT */
.sc5 {
    position: relative;
}

.sc5 .btn_group {
    justify-content: center;
    display: flex;
    width: 100%;
    position: relative;
    margin-bottom: 16px;
    display: none;
}

.sc5 .btn_group button {
    color: var(--neutral-gray-00-white, #FFF);
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    padding: 4px 0;
    letter-spacing: -0.32px;
    flex: 1;
}


.sc5 .btn_group .btn_list.on {
    color: var(--a-accent, #005D86);
    line-height: 120%;
    letter-spacing: -0.32px;
}

.sc5 .bg {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.sc5 .bg .bg_item {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.sc5 .sc_inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 86px;
    gap: 170px;
    /* height: 100%; */
}

.sc5 .bg_item {
    opacity: 0;
    visibility: hidden;
    height: 100%;
}

.sc5 .bg_item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sc5 .bg_item.on {
    opacity: 1;
    visibility: visible;
}

.sc5 .infoSwiper .item_wrap {
    display: flex;
    height: 100%;
    gap: 80px;
    /* align-items: center; */
}

.sc5 .infoSwiper .img_box {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    max-width: 500px;
    /* cursor: pointer; */
}

.sc5 .infoSwiper .img_box img {
    height: 100%;
    object-fit: cover;
}

.sc5 .infoSwiper .link_box {
    align-self: center;
    flex-shrink: 0;
}

.sc5 .infoSwiper .txt_box {
    /* margin: 45px 0; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 520px;
}

.sc5 .infoSwiper .sc5_text1 {
    color: var(--neutral-gray-50002, #737373);
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.48px;
    position: relative;
    top: 0;
    padding-bottom: 10px;
    /* padding-bottom: 248px; */
}

.sc5 .infoSwiper .sc5_text2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.72px;
    padding-bottom: 40px;
}

.sc5 .infoSwiper .sc5_text3 {
    color: var(--neutral-gray-00-white, #FFF);
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.4px;
    padding-bottom: 35px;
}

.sc5 .infoSwiper {
    /* height: 56.6rem; */
    /* overflow: hidden; */
    position: relative;
    /* max-width: 1270px; */
    /* border-radius: 30px; */
    z-index: 2;
    /* max-width: 111.6rem; */
}

.sc5 .infoThumbSwiper {
    /* height: 100%; */
    /* height: 56.6rem; */
    overflow: hidden;
    /* margin-left: -13%; */
    position: relative;
    z-index: 1;
}

.sc5 .infoThumbSwiper .swiper-slide {
    cursor: pointer;
}

.sc5 .infoThumbSwiper .img_box {
    overflow: hidden;
    border-radius: 50px;
}

.sc5 .infoThumbSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


@media screen and (min-width: 1600px) {
    .sc5 .infoSwiper .txt_box {
        margin: 45px 0;
    }

}

@media screen and (max-width: 1350px) {
    .sc5 .sc_inner {
        padding: 0;
        width: 90%;
    }

    .sc5 .infoSwiper .item_wrap {
        flex-wrap: wrap;
        gap: 20px 80px;
    }

    .sc5 .infoSwiper .img_box {
        width: 30%;
    }

    .sc5 .infoSwiper .txt_box {
        width: 70%;
    }

    .sc5 .infoSwiper .link_box {
        margin-left: auto;
    }

    .sc5 .infoSwiper .txt_box {
        justify-content: space-between;
    }

    .sc5 .infoSwiper .sc5_text1 {
        padding-bottom: 30px;
    }

    .sc5 .infoSwiper .sc5_text3 {
        padding-bottom: 30px;
    }

}

@media screen and (max-width: 1020px) {
    .sc5 .sc_inner {
        padding: 60px 16px;
        width: 90%;
    }

    .sc5 .infoSwiper .item_wrap {
        flex-direction: column;
        gap: 70px;
    }

    .sc5 .infoSwiper .img_box,
    .sc5 .infoSwiper .txt_box {
        width: 100%;
    }

    .sc5 .infoSwiper .link_box {
        margin-left: unset;
    }
}


@media screen and (max-width: 980px) {
    .sc5 .sc_inner {
        flex-direction: column;
        justify-content: start;
        gap: 0;
        padding: 60px 16px;
        width: unset;
    }

    .sc5 .btn_group {
        display: flex;
    }

    .sc5 .infoSwiper {
        border-radius: 0;
        width: calc(100% - 8px);
    }

    .sc5 .infoSwiper .swiper-slide {
        display: none;
    }

    .sc5 .infoSwiper .swiper-slide.on {
        display: flex;
        justify-content: center;
    }

    .sc5 .infoSwiper .item_wrap {
        flex-direction: column;
        gap: 53px;
    }

    .sc5 .infoSwiper .sc5_text1 {
        display: none;
    }

    .sc5 .infoSwiper .txt_box {
        margin: 0;
    }

    .sc5 .infoSwiper .sc5_text2 {
        font-size: 23px;
        font-weight: 700;
        line-height: 140%;
        letter-spacing: -0.46px;
        padding-bottom: 18px;
    }

    .sc5 .infoSwiper .sc5_text3 {
        color: var(--neutral-gray-30002, #D4D4D4);
        font-size: 17px;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: -0.34px;
        padding: 0;
    }

    .sc5 .infoSwiper .img_box {
        border-radius: 16px;
        aspect-ratio: 16/ 9;
    }

    .sc5 .infoSwiper .img_box img {
        width: 100%;
    }
}


/* INTRO */

body {
    overflow: hidden;
    position: relative;
}

body.scrollable {
    overflow: auto;
}

.intro {
    position: fixed;
    z-index: 99999;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    bottom: 0;
    height: 100vh;
    top: 0;
    /* overflow: hidden; */
    padding-top: 100%;
}

.intro video {
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    width: 100%;
    bottom: 0;
    padding-top: 0;
    top: 0;
    object-fit: cover;
}

#fullpage {
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

header {
    opacity: 0;
    transform: translateY(-100%);
}

.intro_ended .intro {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: transform 1s ease;
}

.intro_removed .intro {
    opacity: 0;
    visibility: hidden;
    transition: unset;
}

.intro_ended #fullpage,
.intro_removed #fullpage {
    opacity: 1;
}


.intro_ended header,
.intro_removed header {
    opacity: 1;
    transform: translateY(0);
}




/* CONTACT */
.contact {
    /* background: url(/img/bg_contact.png) center center/100% 100% no-repeat; */
}

.contact .bg_video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.contact .bg_video video {
    position: absolute;
    pointer-events: none;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    /* width: auto;
    height: auto; */
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.contact .sc_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 60px 86px;
    justify-content: space-between;
}

.contact .tit_area {
    display: flex;
    flex-direction: column;
    max-width: 360px;
    gap: 10px;
}

.contact .tit_area strong {
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.48px;
}

.contact .tit_area h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
}

.contact .contact_list {
    display: flex;
    gap: 20px;
}

.contact .contact_item {
    flex: 1;
}

.contact .contact_item .right {
    /* flex-shrink: 0; */
}

.contact .contact_item a {
    flex: 1;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    background: #FFF;
    transition: all .3s ease;
    height: 100%;
    align-items: stretch;
}

.contact .contact_item .left {
    padding: 29px 36px;
}


.contact .contact_item strong {
    color: var(--neutral-gray-800, #262626);
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.48px;
}

.contact .contact_item p {
    color: var(--neutral-gray-700, #404040);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.4px;
}

.contact .contact_item .right {
    width: 30%;
}

.contact .contact_item .img_box {
    width: 100%;
    padding-top: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
}

.contact .contact_item .img_box img {
    transition: all .3s ease;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 0;
    object-fit: cover;
}


@media screen and (min-width: 1351px) {
    .contact .contact_item a:hover {
        background: #0080B9;
    }

    .contact .contact_item a:hover * {
        color: #fff;
    }

    .contact .contact_item a:hover img {
        transform: scale(1.1);
    }
}

.contact .contact_item [class*="ico"] {
    width: 80px;
    height: 80px;
}

.contact .ico_product {
    background-image: url(/img/ico_product.png);
}


.contact .ico_ir {
    background-image: url(/img/ico_ir.png);
}

.contact .ico_recruit {
    background-image: url(/img/ico_recruit.png);
}

@media screen and (max-width: 1350px) {
    .contact .sc_inner {
        padding: 60px 0;
    }

    .contact .contact_item .right {
        width: 46%;
    }

    .contact .contact_item .left {
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;

    }

    .contact .contact_item strong {
        font-size: 22px;
    }

    .contact .contact_item p {
        font-size: 16px;
    }
}

@media screen and (max-width: 1020px) {
    .contact .sc_inner {
        height: 80vh !important;
    }

    .contact .contact_list {
        max-width: 380px;
        margin: 0 auto;
    }

    .contact .contact_item {
        position: relative;
        flex: 1;
    }

    .contact .contact_item .left {
        position: absolute;
        padding: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .contact .contact_item p {
        display: none;
    }

    .contact .contact_item .right {
        flex-shrink: unset;
        width: 100%;
    }

    .contact .contact_item .img_box {
        max-width: unset;
    }

    .contact .contact_item strong {
        border-radius: 749.25px;
        background: var(--a-accent, #005D86);
        color: var(--neutral-gray-00-white, #FFF);
        font-size: 14px;
        font-weight: 600;
        line-height: 100%;
        display: block;
        letter-spacing: -0.28px;
        padding: 7px 16px;
    }
}

@media screen and (max-width: 980px) {
    .contact {
        /* background: url(/img/bg_contact.png) center center/100% 100% no-repeat */
    }

    .contact .tit_area strong {
        font-size: 16px;
        line-height: 120%;
        /* 19.2px */
        letter-spacing: -0.32px;
    }

    .contact .tit_area h2 {
        font-size: 23px;
        line-height: 140%;
        /* 32.2px */
        letter-spacing: -0.46px;
    }


}



@media screen and (max-width: 768px) {
    .contact .sc_inner {
        padding: 50px 16px;
    }

    .contact .sc_inner {
        height: 800px !important;
    }
}


form .form_wrap input[type="text"],
form .form_wrap select,
form .form_wrap textarea {
    border: 1px solid #f5f5f5;
    transition: 0.6s;
    border-radius: 0 !important;
}

form .form_wrap input[type="text"]:focus,
form .form_wrap input[type="text"]:hover,
form .form_wrap select:focus,
form .form_wrap select:hover,
form .form_wrap textarea:focus,
form .form_wrap textarea:hover {
    border: 1px solid var(--a-accent, #568BE5);
    background-color: var(--neutral-gray-5002, #FAFAFA);
}

.modal .btn_qna.completed {
    background: #005D86;
}