*,
:after,
:before {
    box-sizing: border-box;
    outline: none;
}

@font-face {
    font-display: swap;
    font-family: "codec";
    font-style: normal;
    src: url(../fonts/codec.woff2) format("woff2"), url(../fonts/codec.woff) format("woff")
}


:root {
    --color-text: #212529;
    --color-bg: #000;
    --color-link: #ffffff80;
    --color-link-hover: #09bf41;

    --color-bg-slide: #171719;
}

html {
    width: 100%;
    height: 100%;
    scrollbar-arrow-color: #efefef;
    scrollbar-arrow-color: #efefef;
    scrollbar-Track-Color: #efefef;
    scrollbar-base-color: #dfdfdf;
    scrollbar-Face-Color: #dfdfdf;
    scrollbar-3dLight-Color: #dfdfdf;
    scrollbar-DarkShadow-Color: #dfdfdf;
    scrollbar-Highlight-Color: #dfdfdf;
    scrollbar-Shadow-Color: #dfdfdf
}

html.screen_active {
    height: auto
}

html.fixed {
    position: fixed
}

html.company {
    height: auto
}

html.hiring {
    height: auto
}

img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

/* Chrome, Safari용 스크롤 바 */
::-webkit-scrollbar {
    width: 6px;
    height: 12px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: block;
    width: 6px;
    height: 12px;
    background: url() rgba(192, 192, 192, 1);
}

::-webkit-scrollbar-track {
    background: url()rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar-thumb {
    background: url() rgba(192, 192, 192, 1);
}

::selection {
    color: #fff;
    background: url() rgba(132, 114, 255, .5);
}

::-moz-selection {
    color: #fff;
    background: url() rgba(132, 114, 255, .5);
}

.screen_active body {
    background: #000;
    overflow-x: hidden;
    height: auto;
    overflow-y: scroll;

}



.company body {
    overflow-y: scroll;
    overflow-x: hidden;
    background: #f3f3f1;
    height: auto;
}

.hiring body {
    overflow-y: scroll;
    overflow-x: hidden;

    height: auto;
}

.game .d-link.game,
.game .d-link.game i {
    color: #00ff4e;
}

.game .header.acting .d-link.game,
.game .header.acting .d-link.game i {
    color: #00ff4e;
}

.company .d-link.company,
.company .d-link.company i {
    color: #00ff4e;
}

.company .header.acting .d-link.company,
.company .header.acting .d-link.company i {
    color: #00ff4e;
}

.hiring .d-link.hiring,
.hiring .d-link.hiring i {
    color: #00ff4e;
}

.hiring .header.acting .d-link.hiring,
.hiring .header.acting .d-link.hiring i {
    color: #00ff4e;
}



a {

    cursor: pointer;
    outline: none;
    text-decoration: none
}

a:hover {

    outline: none;
    color: inherit;
}

a:focus {

    outline: none
}



@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.unbutton {
    font: inherit;
    cursor: pointer;
    color: var(--color-link);
    background: 0 0;
    border: 0;
    margin: 0;
    padding: 0
}

.unbutton:focus {
    outline: none
}


.header {
    width: 100%;
    z-index: 201;

    position: fixed;
    top: 0;
    padding: 3em 3em;
    transition: 1s ease;

    opacity: 1;

}

.header h1 {}

.header.up {
    top: -100%
}

.header.acting {
    background: rgba(0, 0, 0, 0.8);
    padding: 2em 2em 1em;
    color: #fff;
}

.header.acting i {
    color: #fff
}

.header.acting .navigation li a {
    color: #fff;
}

.header.acting .navigation li a i {
    color: #fff;
}



.header::after {
    content: none;
    background: #fff;
    height: 1px;
    display: block;
    clear: both;
    transition: all 1s ease-in-out;
    margin-top: 3em;
    width: 100%;
    opacity: .8;
    transform-origin: left;

}

.header.acting::after {
    width: 0
}

.company .header::after {
    opacity: 0
}

.header.acting .LogoArea {
    margin-bottom: 0;
}

.LogoArea {
    position: relative;

    transition: all 0.5s ease;
    float: left;
    margin-bottom: 24px;

}

.LogoArea .bl {
    display: none;
}

.LogoMark {
    float: left;
    padding: 4px 0;
}

.LogoMark img {
    display: block;
    max-width: 100%;
    height: 36px;
    width: auto;
    transition: all 0.5s ease;
}

.header.acting .LogoMark img {
    height: 28px;
}

.LogoArea h1 {
    margin-left: 0px !important;
    transition: all 0.3s ease
}

.LogoArea h1 img {
    max-width: 100%;
    height: 32px;
    width: 158px;
    transition: all 0.5s ease;
}

.header.acting .LogoArea h1 img {
    height: 32px;
    width: 158px;
}

.header.acting .LogoArea h1 {
    margin-left: 40px
}

.navigation {
    display: block;
    float: right;

}

.navigation ul {
    display: flex;
    margin-top: 8px
}

.navigation li {

    margin-left: 64px;
}

.navigation li a {
    text-align: center;
    width: 100%;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0;
    font-family: 'Pretendard';
    font-weight: 700;
    text-transform: uppercase;
    transition: all .5s ease;

}



.header.acting .navigation li a {
    font-size: 14px
}

.navigation li:hover a {
    color: #09bf41
}

.navigation li i {
    font-size: 12px;
    margin-left: 8px;
    color: #fff;
    opacity: .7
}



.navigation li:hover a i {
    color: #09bf41
}

main:-webkit-scrollbar {
    display: none;
}

main {
    overflow: hidden;
    -ms-overflow-style: none;
    /* 인터넷 익스플로러 */
    scrollbar-width: none;
    /* 파이어폭스 */
}

.page-load {
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: none;
    z-index: 999;
    top: 0;

}

.page-load.active {
    z-index: 999;
}

.bgarea {
    background: linear-gradient(to right, rgb(0, 0, 0) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to top, rgb(0 0 0) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to left, rgb(0, 0, 0) 0, rgba(0, 0, 0, 0) 56%);
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 2;

    transition: all 1s ease;

}

.bgarea2 {
    background: linear-gradient(to right, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to top, rgb(55 0 34) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to left, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;

}

.bgarea3 {
    background: linear-gradient(to right, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to top, rgb(0 55 15) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to left, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;

}

.bgarea4 {
    background: linear-gradient(to right, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to top, rgb(0 55 15) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to left, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;

}

.slides::before {
    content: none;
    position: absolute;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .4), transparent 75%);
    height: 20%;
    z-index: 1;
    top: 0;
}

.frame {
    width: 100%;
    padding: 10em 3em;
    height: 100vh;
    z-index: 100;
    pointer-events: none;
    position: fixed
}

.frame a {
    pointer-events: auto
}

.frame__title {
    max-width: 30vw;
    position: absolute;
    right: 3em;
    bottom: 5em;
    text-align: right;
    z-index: 101;
    transition: all 1s ease;
    opacity: 0;
}

.frame__title h2 {
    color: #fff;
    font-size: 100px;
    opacity: 0;
    transition: all 2s ease;
    transform: translateY(400px);
    text-transform: uppercase;
}

.frame__title h3 {
    font-size: 16px;
    transition: all 2s ease;
    color: #fff;
    transform: translateY(300px);
    opacity: 0;
}

.swiper-slide-active .frame__title {
    opacity: 1
}

.swiper-slide-active .frame__title h2 {
    transform: translateY(0px);
    opacity: .5
}

.swiper-slide-active .frame__title h3 {
    transform: translateY(0px);
    opacity: .6
}

.section .swiper {
    padding-bottom: 48px
}

.section .swiper .swiper-pagination {
    bottom: 0px
}

.swiper-pagination-bullet {
    background: #666;
}

.swiper-pagination-bullet-active {
    background: #528150
}

.mySwiper2 .swiper-pagination-bullet {
    background: #fff;
    border-radius: 25px;
    transition: all 0.4s ease
}

.mySwiper2 .swiper-pagination-bullet-active {
    background: #09bf41;
    height: 20px;
}

.slide_contents {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: end;
    transform: translateX(100%);
    transform-origin: left;
    opacity: 0;
    transition: all 1s ease;
    z-index: 999;
    padding: 0;
}

.modal_contents {
    position: relative;
    width: 100%;

    display: flex;
    justify-content: end;
    transform: translateX(100%);
    transform-origin: left;
    opacity: 0;
    transition: all 1s ease;
    z-index: 999;
    top: 0;
    padding: 0;
}

.modal_contents.active {
    transform: translate(0);
    opacity: 1;



}

.slide_contents.active {
    transform: translate(0);
    opacity: 1;



}

.frame__title-main {
    margin: 0 0 0 1rem;
    font-size: 1rem;
    font-weight: 400
}

.frame__title-back {
    align-items: flex-end;
    margin-bottom: .15rem;
    display: flex;
    position: relative
}

.frame__title-back span {
    font-size: 1.25rem;
    line-height: 1;
    transform: rotate(-45deg)
}

.frame__title-back svg {
    fill: currentColor
}

.mySwiper2 {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
}

.frame__info {
    color: #fff;
    display: block;
    position: absolute;
    left: 0;
    bottom: 5em;
    width: 100%;
    z-index: 102;
    text-align: center;
    grid-area: info;
    align-self: end;
    text-transform: uppercase;
    transition: all 0.5s ease;
    opacity: 1;
    font-size: 14px;
    pointer-events: none;
}

.frame__nav {
    position: absolute;
    right: 3em;
    bottom: 5em;
    grid-gap: .5rem;
    text-align: right;
    grid-area: nav;
    grid-auto-flow: row;
    align-content: end;
    place-items: start;
    display: grid;

}

.frame__nav.onpop {
    z-index: 12;
    color: #eee;
    font-size: 16px;
    font-weight: 700;
    display: block;
    bottom: 3em;
    font-family: 'Pretendard'
}

.frame__nav .swiper-slide {
    text-transform: uppercase;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: .8;
    overflow: visible;
    padding-bottom: 8px;
    font-family: 'Pretendard';
    font-weight: 900
}

.frame__nav-button {
    text-transform: uppercase;
    pointer-events: auto;
    transition: color .3s;
    position: relative
}

.frame__nav-button:not(.frame__nav-button--current):hover {
    color: var(--color-link-hover)
}

.frame__nav-button--current {
    color: var(--color-text)
}

.swiper-thumbs {
    overflow: visible
}

.frame__nav-button::after {
    content: "";
    width: 3rem;
    height: 2px;
    transform-origin: 100%;
    background-color: currentColor;
    transition: transform .8s ease-in-out;
    position: absolute;
    top: 50%;
    left: calc(100% + 4px);
    transform: scaleX(0)
}

.frame__nav-button--current::after {
    transform: scaleX(1)
}

.swiper-slide-thumb-active .frame__nav-button::after {
    transform: scaleX(1)
}

.swiper-slide-thumb-active .frame__nav-button {
    color: #fff;
}

h1.rollingTxt_Main {
    width: 100%;

    position: absolute;
    z-index: 4;

    bottom: 0;
    height: 20px;

    overflow: hidden;

}


h1.rollingTxt_Main span {
    display: block;
    font-size: 16px;
    letter-spacing: 1px;
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    opacity: .2;
    font-family: 'Pretendard';
    font-weight: 500;
    position: absolute;



    animation: rolling 35s linear infinite;


}

.frame__back {
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    grid-area: back;
    justify-self: start;
    background: #262625;

    color: #fff;
    padding: 16px;
    position: fixed;
    right: 0em;
    top: -100%;
    height: 120px;
    z-index: 9999;
    font-size: 24px;
    transition: all 0.5s ease;


}

.frame__back i {
    color: #fff;
    margin: 0;
}

.frame__back--show {
    opacity: 1;
    pointer-events: auto
}

.screen_active .frame__back {
    opacity: 1;
    top: 0;
    pointer-events: auto
}

.screen_active .frame__back:hover {
    height: 200px;

}

.slides {
    width: 100%;
    height: 100vh;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
    place-items: center;
    display: grid;
    overflow: hidden
}

.slide {
    width: 100%;
    height: 104%;
    pointer-events: none;
    opacity: 0;
    will-change: transform;
    grid-area: 1/1/-1/-1;
    position: relative;
    overflow: hidden
}

.slide--current {
    pointer-events: auto;
    opacity: 1
}

.slide__inner {
    width: 100%;
    height: 100%;
    will-change: transform;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
    display: grid;
    position: relative;
    overflow: hidden
}

.slide__img {
    cursor: pointer;
    z-index: 1;
    grid-area: 1/1/-1/-1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.slide__img-inner {
    width: 100%;
    height: 100%;
    opacity: 1;

    overflow: hidden
}

.swiper-slide {
    overflow: hidden
}

.slide__img-inner video {
    transform: scaleX(1.2);

    transition: all 1s ease-out;
    transform-origin: left;
    opacity: .1
}

.swiper-slide-active .slide__img-inner video {
    transform: scaleX(1);
    opacity: 1
}

.frame_inner_title {
    color: #fff;
    position: absolute;
    z-index: 100;
    left: 3em;
    width: 50vh;
    height: 100%;
    opacity: 0;
    transition: all 1s ease;
    transition-delay: 0.5s;
    max-width: 700px;
    padding-top: 10em;
    text-transform: uppercase;
}

.swiper-slide-active .frame_inner_title {
    opacity: 1;
}

.frame_inner_title h2 {
    font-size: 5vw;
    opacity: 0;
    transition: 1s cubic-bezier(0.45, 0.17, 0, 1.32);
    text-decoration: none;
    transform: translateX(-100%);
    cursor: pointer;
}

.screen_active .frame_inner_title h2 {
    pointer-events: none;
}

.prob-pop_y {
    background: #fff;
    overflow-y: scroll
}

.prob-pop {
    font-family: 'Pretendard'
}

.prob-pop .pic {
    width: 100%;
}

.prob-pop h3 {
    font-size: 14px;
    font-weight: bold;
    text-align: center
}

.prob-pop h4 {
    font-size: 14px;
    font-weight: bold;
}

.prob-pop p {
    font-size: 14px;
}

.prob-pop table {
    font-size: 14px;
}

.swiper-slide-active .frame_inner_title h2 {
    transform: translateX(0px);

    opacity: 1;
    transition-delay: .5s;
}

.frame_inner_title h2 span {
    display: table;
    position: relative;
    line-height: 0.9;
    opacity: 1;
    transition: all 0.3s ease-out;
    white-space: nowrap;

}

.frame_inner_title h2 span::after {
    content: "";
    display: block;
    width: 0%;
    height: 8px;
    position: absolute;
    left: 0;
    bottom: 4px;
    background: #fff;
    transition: all 0.3s ease-out;
}

.frame_inner_title h2:hover span::after {
    width: 100%
}

.frame_inner_title h2:hover .Descover-btn {
    margin-top: -48px
}

.swiper-slide-active .frame_inner_title h2:hover {}

.frame_inner_title h3 {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 16px;
    font-weight: 600;
    opacity: 0;
    transition: 1s cubic-bezier(0.45, 0.17, 0, 1.91);
    overflow: hidden;
    margin-bottom: 24px;
    transform: translateX(-100%);
}

.swiper-slide-active .frame_inner_title h3 {
    transform: translateX(0px);
    opacity: 1;
    color: #aaa;
    transition-delay: 0.2s;
}

.DescoverLink {
    background-color: rgb(31 171 68 / 90%);
    border: 2px solid #09bf41;
    border-radius: 2000em;
    box-shadow: .1em .1em .2em rgba(0, 0, 0, .2);
    color: #fff;

    font-weight: 700;
    opacity: 0;
    pointer-events: auto;
    display: block;
    width: 100%;

    height: 50px;

    text-align: center;
    max-width: 180px;
    font-size: 16px;
    line-height: 50px;
    margin-top: 24px;
    transform: translateY(70px);
    transition: 1s cubic-bezier(0.45, 0.17, 0, 1.91);
    opacity: 0;
}

.swiper-slide-active .DescoverLink {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.4s;
}

.slide__content {
    background: var(--color-bg-slide);
    grid-column-gap: 2rem;
    grid-template: "img title" "img text" "img." /1fr 1fr;
    grid-area: 1/1/-1/-1;
    place-content: center;
    padding: 1rem;
    display: grid
}

.slide__content-img {
    height: 300px;
    will-change: transform;
    background-position: 50%;
    background-size: cover;
    grid-area: img
}

.slide__content h2 {
    text-transform: none;
    grid-area: title;
    margin: 0 0 3rem;
    font-size: max(3rem, min(2vw, 3rem));
    font-weight: 200;
    line-height: 1
}

.slide__content p {
    max-width: 260px;
    color: #ffffff80;
    grid-area: text;
    margin: 0;
    line-height: 1.5
}

.cursor {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0
}

.LogoMark img {
    animation: Logo 1s ease-in-out infinite;
}

.page-load .blank {
    height: 100%;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    background: #528150;
    position: absolute;
    transform: translateX(-100%);
    opacity: 1;
    left: 0;
    top: 0;


}

.page-load.active .blank {
    transform: translateX(0%);
    opacity: 1;

}

.footer {
    text-align: center;

}

.footer .content__title {
    font-size: 84px;
    line-height: 1;
    height: 50vh;
    text-transform: uppercase
}

.footer .info-wrap {}

.footer .info-wrap li {
    margin-bottom: 24px;
    font-family: 'Pretendard';
}

.footer .info-wrap h4 {
    font-size: 16px;
    font-weight: 400;
}

.footer .info-wrap li a {
    display: block;
    font-weight: 800;
    font-size: 24px
}

.footer .info-wrap li a.hire {
    font-weight: 600;
    color: #09bf41;
    font-size: 16px
}

.footer .copy {
    border-top: solid 1px #bdbdbd;
    padding: 5vw 0px;


    text-align: left;
}

.footer .copy p {
    text-align: left;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer .copy .address {
    margin-top: 48px
}

.footer .copy .address p {

    font-weight: 400
}

.footer p {

    font-family: 'Pretendard';
    font-size: 24px;
}

.footer p a {}

.footer .address p {
    font-family: 'Pretendard';
    font-size: 16px;
    color: #222;
    text-align: left;

}

.loaderbar {
    width: 100%;
    transform: scaleX(0);
    transform-origin: right;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    display: block;
    transition: all 0.4s ease;
    transition-delay: 0.2s;
}

.page-load.active .loaderbar {
    transform: scaleX(100%);
}

.LoadLogo {
    position: absolute;
    display: flex;
    height: 100%;
    width: 100%;
    opacity: 1;
    z-index: 1000;
    transition: all 0.2s ease-in;
}

.LoadLogo img {
    width: 80px;
    animation: Logo 1s ease-in-out infinite;
    margin: auto;
}

.off .LoadLogo {
    opacity: 0;
}

.cHeader__menu {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: var(--z-header);
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    overflow: hidden;
    display: none;
    z-index: 102;
}


.cHeader__menu_line {
    position: absolute;
    width: 100%;
    height: 2px
}

.cHeader__menu_line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all.48s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.cHeader__menu_line01 {
    transform: translateY(-5px);
    transition: transform .24s cubic-bezier(0.47, 0, 0.745, 0.715) .48s
}

.cHeader__menu_line02 {
    transform: translate(-61px, 61px);
    transition: transform .32s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.cHeader__menu_line02::before {
    transform: rotate(135deg)
}

.cHeader__menu_line03 {
    transform: translateY(5px);
    transition: transform .24s cubic-bezier(0.47, 0, 0.745, 0.715) .48s, opacity .24s cubic-bezier(0.47, 0, 0.745, 0.715) .48s
}

.menu-open .cHeader__menu_line::before {
    background-color: #212529
}

.menu-open .cHeader__menu_line01 {
    transform: translateY(0);
    transition: transform .24s cubic-bezier(0.47, 0, 0.745, 0.715)
}

.menu-open .cHeader__menu_line01::before {
    transform: rotate(405deg);
    transition: transform .48s cubic-bezier(0.39, 0.575, 0.565, 1) .32s
}

.menu-open .cHeader__menu_line02 {
    transform: translate(0, 0);
    transition: transform .32s cubic-bezier(0.39, 0.575, 0.565, 1) .8s
}

.menu-open .cHeader__menu_line03 {
    transform: translateY(0);
    opacity: 0;
    transition: transform .24s cubic-bezier(0.47, 0, 0.745, 0.715), opacity .24s cubic-bezier(0.47, 0, 0.745, 0.715)
}

.nav-btn {
    display: inline-block;
    background-color: rgb(31 171 68 / 90%);
    border: 2px solid #09bf41;
    border-radius: 2000em;
    box-shadow: .1em .1em .2em rgba(0, 0, 0, .2);
    color: #fff;
    font-weight: 700;

    line-height: 1;
    font-size: 32px;

    padding: 4px 16px 0;
    margin-left: -24px;
    vertical-align: top;
    margin-top: -10px;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    opacity: 0;
    transition: all 0.2s ease;
    transition-delay: 0s;

}

.menu-open .nav-btn {
    opacity: 1;
    transition-delay: 0.7s
}

.menu-open .LogoArea .wl {
    display: none
}

.cMenu {
    color: #212529
}

.cMenu__inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    margin: auto;
    z-index: 200;
    pointer-events: none
}

.cMenu__wrapper {
    width: 100%;
    height: 100%;

}

.cMenu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color .32s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.cMenu__background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .90;

    transform: translateX(100%);
    transition: all .5s ease-in-out;
    transition-delay: 0.5s;
}

.cMenu__background_top,
.cMenu__background_bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    transition: transform .16s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.cMenu__background_top img,
.cMenu__background_bottom img {
    height: 100%
}

.cMenu__background_top {
    transform: translate(101%, -101%)
}

.cMenu__background_bottom {
    transform: translate(-101%, 101%);
    transition-delay: .24s
}

.cMenu__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    margin-left: auto;

}

.cMenu__nav {
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-left: 16px
}

.cMenu__nav_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20vw
}

.cMenu__nav_item {
    position: relative;
    display: inline-block;
    font-size: 64px;
    letter-spacing: -1px;
    padding-right: 10px;
    padding-top: 10px;
    word-spacing: 0;
    line-height: 1.2;
    font-weight: 500;
    overflow: hidden
}

.cMenu__nav_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: #212529;
    transform: translateX(-101%);
    transition: transform .32s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.cMenu__nav_item i {
    font-size: 16px;
    opacity: .5;
    margin-left: 6px
}

.cMenu__nav_item a {
    position: relative;
    padding-left: 16px;
    text-transform: uppercase;
    --pointer01: 0% 0%;
    --pointer02: 0% 0%;
    --pointer03: 0% 100%;
    --pointer04: 0% 100%;
    -webkit-clip-path: polygon(var(--pointer01), var(--pointer02), var(--pointer03), var(--pointer04));
    clip-path: polygon(var(--pointer01), var(--pointer02), var(--pointer03), var(--pointer04));
    transition: transform .32s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-clip-path .32s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: transform .32s cubic-bezier(0.39, 0.575, 0.565, 1), clip-path .32s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: transform .32s cubic-bezier(0.39, 0.575, 0.565, 1), clip-path .32s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-clip-path .32s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.cMenu__nav_item span {
    font-size: 12px;
    display: inline-block;
    opacity: 0;
    vertical-align: top;
    margin-top: 16px;
    transition-delay: 0
}

.cMenu__nav_item--home {
    margin-bottom: min(13px, 3.47vw)
}

.cMenu__nav_item+.cMenu__nav_item {
    /*    margin-top: min(17px, 4.53vw)*/
}

.cMenu__corporate {

    font-size: calc(14rem / 16);
    line-height: 1.29;
    margin-top: min(44px, 11.73vw);
    margin-right: 6vw;

    transform: translateY(5px);
    opacity: 0;
    transition: transform .32s cubic-bezier(0.39, 0.575, 0.565, 1), opacity .32s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.cMenu__corporate a {
    display: block;
    text-align: right;
    align-items: baseline;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #806ef7;
}

.cMenu__entry {
    margin-top: 6.93vw;
    margin-bottom: 30px;
    padding: 16px;
    transform: translateY(5px);
    opacity: 0;
    transition: transform .32s cubic-bezier(0.39, 0.575, 0.565, 1), opacity .32s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.cMenu__entry_inner {
    width: 100%;
    height: 16vw
}

.cMenu__entry_link {
    display: flex;

    width: 100%;
    height: 100%;

}

.cMenu__entry_text {
    display: flex;
    align-items: baseline;
    font-size: 14px;
    line-height: 3;
    font-weight: 300
}

.cMenu__entry_text_main {
    font-weight: 800;
    color: #111;
    font-family: 'Pretendard'
}

.cMenu__entry_text_period {
    font-size: 20px;
    color: #56B772;
}



.menu-open {
    min-height: 101vh;
    min-height: 101lvh
}

.menu-open .cMenu__inner {
    pointer-events: all
}

.menu-open .cMenu__overlay {
    background-color: rgba(0, 0, 0, .2)
}

.menu-open .cMenu__background {
    transform: translateX(0);
    transition-delay: 0s;
}

.menu-open .cMenu__background_top {
    transition-delay: .24s
}

.menu-open .cMenu__background_bottom {
    transition-delay: 0s
}

.menu-open .cMenu__background_top,
.menu-open .cMenu__background_bottom {
    transform: translate(0)
}

.menu-open .cMenu__nav_item::before {
    transform: translateX(101%)
}

.menu-open .cMenu__nav_item span {
    opacity: .5;
    transition-delay: 0.7s
}

.menu-open .cMenu__nav_item a {
    --pointer01: 0% 0%;
    --pointer02: 100% 0%;
    --pointer03: 100% 100%;
    --pointer04: 0% 100%;
    transition-delay: .24s
}

.menu-open .cMenu__nav_item:nth-of-type(1)::before {
    transition-delay: .56s
}

.menu-open .cMenu__nav_item:nth-of-type(1) a {
    transition-delay: .56s
}

.menu-open .cMenu__nav_item:nth-of-type(2)::before {
    transition-delay: .64s
}

.menu-open .cMenu__nav_item:nth-of-type(2) a {
    transition-delay: .64s
}

.menu-open .cMenu__nav_item:nth-of-type(3)::before {
    transition-delay: .72s
}

.menu-open .cMenu__nav_item:nth-of-type(3) a {
    transition-delay: .72s
}

.menu-open .cMenu__nav_item:nth-of-type(4)::before {
    transition-delay: .8s
}

.menu-open .cMenu__nav_item:nth-of-type(4) a {
    transition-delay: .8s
}

.menu-open .cMenu__nav_item:nth-of-type(5)::before {
    transition-delay: .88s
}

.menu-open .cMenu__nav_item:nth-of-type(5) a {
    transition-delay: .88s
}

.menu-open .cMenu__nav_item:nth-of-type(6)::before {
    transition-delay: .96s
}

.menu-open .cMenu__nav_item:nth-of-type(6) a {
    transition-delay: .96s
}

.menu-open .cMenu__nav_item:nth-of-type(7)::before {
    transition-delay: 1.04s
}

.menu-open .cMenu__nav_item:nth-of-type(7) a {
    transition-delay: 1.04s
}

.menu-open .cMenu__corporate {
    transition-delay: 1.2s
}

.menu-open .cMenu__entry {
    transition-delay: 1.36s
}

.menu-open .cMenu__corporate,
.menu-open .cMenu__entry {
    transform: translateY(0);
    opacity: 1
}

@media screen and (min-width: 769px) {
    .cMenu {
        display: none;
        pointer-events: none
    }
}

@keyframes Logo {
    0% {
        transform: scaleX(1.1)
    }

    25% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleY(1.1)
    }

    75% {
        transform: scaleY(1)
    }

    100% {
        transform: scaleX(1.1)
    }
}



@keyframes Color2 {
    0% {

        background: linear-gradient(to right, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to top, rgb(0 55 15) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to left, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%);
    }

    25% {

        background: linear-gradient(to right, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to top, rgb(55 0 34) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to left, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%);
    }

    50% {

        background: linear-gradient(to right, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to top, rgb(0 39 55) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to left, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%);
    }

    75% {

        background: linear-gradient(to right, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to top, rgb(99 52 3) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to left, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%);
    }

    100% {

        background: linear-gradient(to right, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to top, rgb(0 55 15) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to left, rgb(32, 33, 36) 0, rgba(0, 0, 0, 0) 56%);
    }
}


@keyframes rolling {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes rolling-rtl {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0%)
    }
}

@media screen and (min-width:53em) {
    .frame {
        grid-template: "back.sponsor" "nav info title" /auto auto auto;
        align-content: space-between
    }

    .frame__info {
        justify-self: center
    }

    .slide__content {
        grid-column-gap: 2rem;
        grid-template: "img title" "img text" "img." /220px 300px
    }
}

.splitting .word,
.splitting .char {
    display: inline-block
}

.splitting .char {
    position: relative
}

.splitting .char:before,
.splitting .char:after {
    content: attr(data-char);
    visibility: hidden;
    -webkit-user-select: none;
    user-select: none;
    transition: inherit;
    position: absolute;
    top: 0;
    left: 0
}

.splitting {
    --word-center: calc((var(--word-total) - 1)/2);
    --char-center: calc((var(--char-total) - 1)/2);
    --line-center: calc((var(--line-total) - 1)/2)
}

.splitting .word {
    --word-percent: calc(var(--word-index)/var(--word-total));
    --line-percent: calc(var(--line-index)/var(--line-total))
}

.splitting .char {
    --char-percent: calc(var(--char-index)/var(--char-total));
    --char-offset: calc(var(--char-index) - var(--char-center));
    --distance: calc((var(--char-offset)*var(--char-offset))/var(--char-center));
    --distance-sine: calc(var(--char-offset)/var(--char-center));
    --distance-percent: calc((var(--distance)/var(--char-center)))
}

.splitting.cells img {
    width: 100%;
    display: block
}


.video.asset {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    display: block;
}


@supports (display: grid) {
    .splitting.cells {
        visibility: hidden;
        background-size: cover;
        position: relative;
        overflow: hidden
    }

    .splitting .cell-grid {
        background: inherit;
        width: 100%;
        height: 100%;
        grid-template: repeat(var(--row-total), 1fr)/repeat(var(--col-total), 1fr);
        display: grid;
        position: absolute;
        top: 0;
        left: 0
    }

    .splitting .cell {
        background: inherit;
        position: relative;
        overflow: hidden
    }

    .splitting .cell-inner {
        background: inherit;
        visibility: visible;
        width: calc(100%*var(--col-total));
        height: calc(100%*var(--row-total));
        left: calc(-100%*var(--col-index));
        top: calc(-100%*var(--row-index));
        position: absolute
    }

    .splitting .cell {
        --center-x: calc((var(--col-total) - 1)/2);
        --center-y: calc((var(--row-total) - 1)/2);
        --offset-x: calc(var(--col-index) - var(--center-x));
        --offset-y: calc(var(--row-index) - var(--center-y));
        --distance-x: calc((var(--offset-x)*var(--offset-x))/var(--center-x));
        --distance-y: calc((var(--offset-y)*var(--offset-y))/var(--center-y))
    }
}





.wrapper {
    height: 100vh;
    text-align: center;
}

.wrapper button {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.loader {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 0vh;
    opacity: 0;
    transition-delay: 2s;


}

.loader .GridBack_col__KXCzv {
    background: #171719;
    opacity: 1;
    transition: all 1s ease;
    transform-origin: top;
    border-right: 0;
}

.loader .GridBack_row__6C1nT:before {
    content: none
}

.loader .GridBack_col__KXCzv:first-child {
    transform: scaleY(0);

}

.loader .GridBack_col__KXCzv:nth-child(2) {
    transition-delay: 0.1s;
    transform: scaleY(0);

}

.loader .GridBack_col__KXCzv:nth-child(3) {
    transition-delay: 0.2s;
    transform: scaleY(0);

}

.loader .GridBack_col__KXCzv:nth-child(4) {
    transition-delay: 0.3s;
    transform: scaleY(0);

}

.loader .GridBack_col__KXCzv:nth-child(5) {

    transform: scaleY(0);

    transform-origin: bottom;
}

.loader .GridBack_col__KXCzv:nth-child(6) {
    transition-delay: 0.1s;
    transform: scaleY(0);

    transform-origin: bottom;
}

.loader .GridBack_col__KXCzv:nth-child(7) {
    transition-delay: 0.2s;
    transform: scaleY(0);

    transform-origin: bottom;
}

.loader .GridBack_col__KXCzv:nth-child(8) {
    transition-delay: 0.3s;
    transform: scaleY(0);

    transform-origin: bottom;
}

.loader .GridBack_col__KXCzv:nth-child(9) {
    transition-delay: 0.4s;
    transform: scaleY(0);

    transform-origin: bottom;
}

.loader.loader--active .GridBack_col__KXCzv {
    background: #171717;
    opacity: 1;
    transition: all 1s ease;
    transform: scaleY(1);


}

.loader .Grid_row__NqHRm {
    display: grid;

    column-gap: 0;
}

.loader.loader--active {
    height: 100vh;
    opacity: 1;
}



.container {
    position: relative;

}

.contents_thum {
    position: absolute;
    right: 0
}

.slide_contents p {
    color: #262625;
    font-size: 18px;
    font-family: 'Pretendard'
}

.slide_contents .section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.slide_contents img {
    max-width: 100%;
    border-radius: 13px;
}

.slide_contents .section h1 {
    font-weight: 400;
    line-height: 1.7;
    font-size: 20px;
}

.get-button-arrea {
    margin-top: 8px
}

.get-button-arrea a {
    display: inline-block;
    background-color: rgb(31 171 68 / 90%);
    border: 2px solid #09bf41;
    color: #fff;
    border-radius: 2000em;
    box-shadow: .1em .1em .2em rgba(0, 0, 0, .2);
    font-size: 18px;
    border-radius: 50px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    width: 47%;
    max-width: 230px;
}

.Descover-btn {
    display: inline-block;
    background-color: rgb(31 171 68 / 90%);
    border: 2px solid #09bf41;
    border-radius: 2000em;
    box-shadow: .1em .1em .2em rgba(0, 0, 0, .2);
    color: #fff;
    font-weight: 700;
    line-height: 0;
    font-size: 32px;
    padding: 8px 24px;
    margin-left: -32px;
    margin-top: -16px;
    vertical-align: top;
    z-index: 0;


    transition: all 0.2s ease;

}

.get-button-arrea a:hover {
    color: #fff
}

.get-button-arrea a+a {
    margin-left: 16px
}

.info-area {
    position: absolute;
    bottom: 5em;
    width: 100%;
}

.info-area h4 {
    font-size: 24px;
    ;
    position: relative;
    margin-bottom: 8px;
    font-family: 'Pretendard';
    font-weight: 900;
    color: #fff;
}

.info-area .pic {
    overflow: hidden;
    max-width: 800px;
    opacity: 0;
    transition: all 1s ease;
    transform: translateX(-100%);
    transition-delay: 1s;
    border: solid 4px #ffffff42;
}

.swiper-slide-active .info-area .pic {
    opacity: 1;
    transform: translateX(0)
}

.info-area .pic {
    position: relative;
    background: #349f2fe3;
    border-radius: 16px;
    overflow: hidden;

}

.screen_active .info-area .pic a {
    pointer-events: none
}

.info-area .pic img {
    display: block;
    transition: all 0.5s ease;
}

.info-area .pic span {
    color: #fff;
    text-align: center;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
}

.info-area .pic:hover img {
    opacity: .1
}

.info-area .pic:hover span {
    opacity: 1
}


.inner {

    width: 90%;
    position: relative;
    min-height: 100vh;
    transform: translateX(0);
    background: rgba(255, 255, 255, .9);
}

.inner-tit {
    color: #262625;
    line-height: 1;
    font-size: 8em;
    text-transform: uppercase;
    margin-top: 100px;
}

.inner-sub-tit {
    color: #528150;
    font-size: 30px;

}

.history-ui {
    padding-left: 24px;
    font-family: 'Pretendard';
    border-left: solid 1px #111;
    color: #333;
    margin-top: 24px;
    padding-bottom: 48px
}

.cate-tit {
    font-size: 18px;
}

#content {

    opacity: 1;

    width: 100%;
    height: 100%;
    position: relative;

}

.screen_active #content {
    overflow: hidden
}

.screen_load #content {}

.menu-open body {
    overflow: hidden;

}

.menu-open .cMenu__wrapper {
    overflow-y: scroll
}


.slide_contents.active .Grid_row__NqHRm {
    opacity: .3;
    z-index: 0;
}

.screen_active .mySwiper2,
.screen_active .mySwiper5 {
    pointer-events: none;
}

.screen_active #content {}

.screen_active .Grid_row__NqHRm {
    opacity: 0
}

.screen_active .bgarea {

    transition: all 0.4s ease;
    opacity: 0;

}


.screen_active .slide__img-inner video {
    opacity: 0.3;
    width: 100%;
    transition-delay: 0.5s;
    overflow: hidden;
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.screen_active .header::after {
    width: 0;
    transition: all 0.4s ease
}

.screen_active .header {
    top: -20%;
    opacity: 0
}

.screen_active .slide__img-inner .frame_inner_title {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.6s ease
}

.screen_load .header::after {
    width: 0;
    transition: all 0.4s ease
}

.screen_load .header {
    top: -20%;
    opacity: 0
}

.screen_load .slide__img-inner .frame_inner_title {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.4s ease;
    transition-delay: 0
}

.screen_active .frame__nav {
    opacity: 0
}

.screen_active .frame__info {
    opacity: 0;
    bottom: -5em
}

.screen_active .frame__title {
    opacity: 0
}

.fa-xmark {
    display: none !important
}

@media(min-width: 1930px) {


    .frame_inner_title h2 {
        font-size: 110px
    }




}



@media(max-width: 1650px) {
    .header {
        padding: 2em;
    }

    .frame__info {
        bottom: 3em;
    }

    .frame_inner_title {
        padding-top: 6em;
        left: 2em
    }

    .frame_inner_title h2 span .frame_inner_title h2 {
        font-size: 64px
    }

    .LogoArea h1 img {
        height: 25px;
        width: auto;
    }

    .header.acting .LogoArea h1 img {
        height: 25px;
        width: auto;
    }

    .frame_inner_title h3 {
        font-size: 14px;
        line-height: 1.4
    }

    .inner-tit {
        font-size: 6em
    }

    .screen_active .slide__img-inner video {}

    .info-area {
        bottom: 3em;
    }

    .inner-sub-tit {
        font-size: 24px
    }

    .get-button-arrea a {

        font-size: 14px;
        height: 45px;
        line-height: 40px
    }

    .get-button-arrea a+a {
        margin-left: 8px
    }

    .inner {
        width: 100%
    }

    .slide_contents p {
        font-size: 16px
    }

    .get-button-arrea {
        margin-bottom: 48px;
    }

    .footer .content__title {
        font-size: 64px;
        height: auto;
        min-height: 500px
    }


    .frame__title h2 {
        font-size: 48px;
    }

    .navigation li a {
        font-size: 14px;
    }

    .navigation li {
        margin-left: 32px;
    }

    .frame__title h3 {
        font-size: 13px;
    }

    .inner-tit {
        font-size: 6em
    }

    .info-area .pic {
        max-width: 360px
    }

    .Descover-btn {
        font-size: 18px;
        padding: 4px 12px;
        margin: 0px;
    }

    .frame_inner_title h2:hover .Descover-btn {
        margin-top: -18px
    }
}

@media(max-width: 769px) {

    body.screen_active {
        background: #000
    }


    .game .d-link.game,
    .game .d-link.game i {
        color: #212529;
        opacity: .2
    }

    .company .d-link.company,
    .company .d-link.company i {
        color: #212529;
        opacity: .2
    }


    .hiring .d-link.hiring,
    .hiring .d-link.hiring i {
        color: #212529;
        opacity: .2
    }

    .navigation {
        display: none
    }

    .frame_inner_title h2 {
        font-size: 13vw;
        line-height: 100%;
        bottom: 127px;
        position: absolute;

        font-size: 13vw;
        line-height: 100%;
    }



    .header {

        padding: 16px
    }

    .header::after {
        content: none;
    }

    .frame__info {
        display: none;
    }

    h1.rollingTxt_Main {
        display: none
    }

    .fa-xmark {
        display: block !important
    }

    .fa-arrow-left {
        display: none !important
    }

    .bgarea {
        background: linear-gradient(to top, rgb(0 0 0) 20%, rgba(0, 0, 0, 0.0) 57%), linear-gradient(to bottom, rgb(0 0 0) 0%, rgba(0, 0, 0, 0.0) 57%);
        opacity: .8
    }

    .Descover-btn {
        font-size: 18px;
        padding: 4px 12px;
        margin: 0px
    }

    .frame_inner_title {
        top: 0;
        left: 0;
        width: 100%;
        padding: 24px;
        padding-top: 6em;
    }

    .info-area {
        bottom: 0;
        left: 0;
        padding: 32px 24px;
        display: flex;
        flex-direction: column;
    }

    .info-area .pic {
        width: 90%;
        border-radius: 8px;
        display: none;
        margin-bottom: 16px;
        border: solid 2px #fff;
        order: 1;
    }

    .info-area h4 {
        order: 2;
        color: #09bf41;
        font-size: 18px
    }

    .info-area h3 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        order: 3
    }

    .swiper-slide-active .slide__img-inner video {
        opacity: .9;
        -webkit-filter: brightness(1.2);
        -moz-filter: britghtness(1.2);
        -o-filter: brightness(1.2);
        -ms-filter: brightness(1.2);
        filter: brightness(1.2);

    }

    .info-area .pic span {
        font-size: 18px
    }

    .inner {
        padding: 16px;
        border-radius: 10px 10px 0 0;

        transform: translateY(0);
        background: #f3f3f1;
        width: 100%;
    }

    .frame_inner_title h2 span::after {
        height: 2px;
    }

    .slide_contents p {
        font-size: 16px;
    }

    .navigation {
        display: none
    }

    .frame__back span {
        display: none
    }

    .frame_inner_title h2 {
        font-size: 64px;
        line-height: 100%;
    }

    .frame_inner_title h3 {
        font-size: 16px;
        margin-top: 0px;
        opacity: 1;
        margin-bottom: 0;
        font-weight: 400;
        line-height: 1.4;
    }

    .header {

        padding: 16px 24px;

    }

    .header::after {
        content: none;
    }


    .frame__back {
        right: 0;
        height: 50px;
    }

    .screen_active .frame__back:hover {
        height: 80px;
    }

    .LogoArea {
        margin-bottom: 0
    }

    .LogoArea h1 {
        margin-left: 42px;
        width: 120px;
        padding: 4px 0;
    }

    .LogoArea h1 img {
        height: auto
    }

    .LogoMark {
        width: 36px
    }

    .LogoMark img {
        height: auto
    }

    .slide_contents {
        padding: 0;
        padding-top: 300px;
        transform: translateY(100%);
        transform-origin: bottom;
    }

    .inner-tit {
        font-size: 4em;
        line-height: 1;
        margin-top: 36px;
    }

    .screen_active .slide__img-inner video {
        margin: 0;
        width: 100%;
        border-radius: 0;
        height: 360px;
        filter: none;
        -webkit-filter: none;
        opacity: 1;
    }

    .header.acting {
        background: rgba(0, 0, 0, 0.8);
        padding: 16px;
    }

    .menu-open .header.acting {
        background-color: transparent
    }

    .header.acting::after {
        width: 0
    }

    .company .header::after {
        opacity: 0
    }

    .header.acting .LogoArea {
        margin-bottom: 0;
    }

    .header.acting .LogoMark img {
        height: auto
    }

    .LogoArea h1 {
        margin-left: 42px;
        width: 120px;
    }

    .header.acting .LogoArea h1 img {
        height: auto;
    }

    .footer .content__title {
        font-size: 40px;
        padding: 0 24px;
    }

    .footer p {
        font-size: 16px;
    }

    .footer {
        padding: 0;
    }

    .content__title p {
        font-size: 16px;
    }

    .footer .address p {
        font-size: 14px
    }

    .footer .copy .address {
        margin-bottom: 48px
    }

    .copy .col-md-8 {
        order: 2
    }

    .copy .col-md-4 {
        order: 1
    }

    .footer .info-wrap {
        margin-top: 48px
    }

    .footer .copy p {
        opacity: .5
    }

    .cHeader__menu {
        display: flex;
    }

    .footer .copy {
        padding: 5vw 24px
    }
}

@media(max-width: 640px) {

    .frame__back {
        font-size: 24px;
        top: 0;
        padding: 12px 16px;
        line-height: 1;
    }


    .frame__back i {
        margin: 0;
        color: #fff;
    }

    .LogoArea {
        margin-bottom: 0
    }

    .LogoArea h1 {
        margin-left: 42px;
        width: 100px;
    }

    .LogoArea h1 img {
        height: auto
    }

    .LogoMark {
        width: 36px
    }

    .LogoMark img {
        height: auto
    }


    .screen_active .slide__img-inner video {
        margin: 0;
        width: 100%;
        border-radius: 0;
        height: 250px;
        filter: none;
        -webkit-filter: none;
        opacity: 1;
    }

    .inner {
        transform: translateY(0px);
    }

    .inner-tit {
        font-size: 3em;
        line-height: 1;
        margin-bottom: 16px;
        margin-top: 24px;
    }

    .inner-sub-tit {
        font-size: 18px;
        font-weight: 500;
    }


    .get-button-arrea {
        margin-bottom: 48px
    }

    .get-button-arrea a {
        max-width: calc(50% - 16px);
    }

    .slide_contents {
        padding-top: 200px
    }

    .slide_contents .section {
        padding-top: 64px;
        padding-bottom: 64px
    }

    .frame__nav {
        height: 180px
    }

    .frame__title h2 {
        font-size: 36px;
    }

    .frame__title h3 {
        font-size: 11px;
    }

    .frame__nav .swiper-slide {
        font-size: 12px;

    }

    .frame_inner_title h2 {
        font-size: 48px;
        line-height: 100%;
    }

    .swiper-slide-thumb-active .frame__nav-button {}

    .frame__nav-button::after {
        left: auto;
        right: calc(100% + 4px);
    }

    .frame__title {
        max-width: 70%;
        right: 0;
        bottom: 2em;
        padding: 16px;
        padding-bottom: 0
    }

    .DescoverLink {
        font-size: 16px;
        height: 50px;
        line-height: 46px;
        max-width: 160px
    }

    .swiper-thumbs {
        padding: 24px;
        right: auto;
        top: 4em;
        left: 0;
        text-align: left;

    }

    .frame__nav.onpop {
        font-size: 12px;
        margin-top: 0;
        display: inline-block;
        height: 18px;
        bottom: auto;
        top: 18em;
        padding: 0 2em;
    }

    .frame__info {
        display: none
    }





}

@media(max-width: 380px) {
    .cMenu__nav_item {
        position: relative;
        display: inline-block;
        font-size: 52px;
        letter-spacing: 0;
        word-spacing: 0;
        line-height: 1.2;
        font-weight: 500;
        overflow: hidden
    }
}


/* Swiper Progress Bar 스타일 */
.swiper-progress-container {
    position: absolute;
    bottom: 230px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 1000;
    overflow: hidden;
}

.swiper-progress-fill {
    width: 0%;
    height: 100%;
    /* background: linear-gradient(90deg, #4CAF50, #2196F3); */
    background-color: #172038;
    border-radius: 2px;
    transition: width 0.1s ease;
}

.swiper-slide.company_sheet {
    width: 100% !important;
    height: 100% !important;
    padding: 0;
    background: #f3f3f1;

}
.swiper-slide.company_sheet .intro.sub-body{
    width: 100%;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .swiper-progress-container {
        width: 150px;
        bottom: 20px;
    }
}