﻿@charset "utf-8";
/*-------------------------------------------------
Style Sheet
Version : 1.0
Author :  Kang HyeYeon
Create date : 2024. 10. 23.
-------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 9.5rem;
    padding-top: 6.5rem;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    z-index: 150;
}
header h1 a {
    display: block;
    width: 14.9rem;
    height: 14.9rem;
    background: url(../images/logo_w.png) no-repeat center;
    background-size: contain;
}
header.black h1 a {
    background: url(../images/logo_b.png) no-repeat center;
    background-size: contain;
}
header .m_menu {
    display: none;
}
header nav {
    margin-top: -4rem;
}
header nav ul {
    display: flex;
}
header nav ul li {
    margin-left: 7.5rem;
}
header nav ul li a {
    display: block;
    font-family: "protipo-compact", sans-serif;
    font-weight: 300;
    font-size: 3rem;
    color: #fff;
}
header.black nav ul li a {
    color: #282828;
}

.visual {
    width: 100%;
    height: 100vh;
    background: url(../images/visual.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.visual h2 {
    width: 42.1rem;
    height: 43.8rem;
    background: url(../images/tit.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: calc(50% - 6rem);
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: .6;
    filter: blur(1rem);
    animation: blur 4.3s cubic-bezier(.50,.11,.85,.85) forwards;
}

@keyframes blur {
    0% {
        filter: blur(1rem);
    }
    30% {
        filter: blur(0.4rem);
    }
    65% {
        filter: blur(0.7rem);
    }
    100% {
        filter: blur(0rem);
    }
}

.about_wrap {
    width: 100%;
    height: 82rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.tit {
    font-size: 7.2rem;
    text-align: center;
    font-weight: 700;
    margin-top: -2.5rem;
    font-family: "protipo-compact", sans-serif;
}
.sub_txt {
    font-size: 2.4rem;
    line-height: 4.8rem;
    text-align: center;
}
.about {
    max-width: 102.4rem;
}
.about strong {
    display: block;
    font-size: 2.4rem;
    text-align: center;
    margin-top: 5.3rem;
    font-weight: 800;
    font-family: "protipo-compact", sans-serif;
}

.video_fix {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
.video_fix video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    display: none;
}
.fix_bg {
    width: 100%;
    height: 50rem;
}
.work_wrap {
    width: 100%;
    height: 216rem;
    background: #fff;
    position: relative;
    z-index: 30;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.work {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.work .keyword {
    display: flex;
    flex-wrap: wrap;
    max-width: 95.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 7.4rem;
}
.work .keyword li {
    height: 5rem;
    line-height: 5rem;
    padding: 0 3rem;
    font-size: 2.2rem;
    background: #eaeaea;
    margin: 0.7rem 0.75rem;
}

.work_slide {
    width: 100%;
    height: 108.7rem;
    margin: 13.2rem auto 0;
    overflow: visible;
    padding-top: 19.8rem;
    box-sizing: border-box;
}
.work_slide ul {
    height: auto;
}

.work_slide .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 48.5rem;
    transition: none;
    opacity: .6;
    position: relative;
}
.work_slide .swiper-slide p {
    font-size: 3rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.work_slide .swiper-slide img {
    width: 100%;
}
.changing,
.changed {  
    transform:translateX(-13.7rem);
    -ms-user-select: none; 
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    user-select: none;
}
.changing {
    transition:transform 0.3s;
    pointer-events:none;
}
.changed {  
    transition:none;
}
.changing.swiper-slide-active,
.changed.swiper-slide-active {
    transform:translateX(0);
    margin-left: 0.3rem;
    opacity: 1;
}
.swiper-slide-active ~ .changing,
.swiper-slide-active ~ .changed {
    transform:translateX(13.7rem);
}
.changing .img-wrap,
.changed .img-wrap {
    transform-origin:center bottom;
}
.changing .img-wrap {
    transition:transform 0.3s;
}
.changed .img-wrap {  
    transition:none;
}
.changing.swiper-slide-active .img_wrap,
.changed.swiper-slide-active .img_wrap {
    transform:scale(1.565);
}

.bottom_img {
    width: 100%;
    height: 57.7rem;
    background: url(../images/bottom_img.jpg) no-repeat center;
    background-size: cover;
}

.contact_wrap {
    width: 100%;
    height: 63.5rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.contact_wrap .sub_txt a {
    font-size: 2.4rem;
    font-weight: 700;
    border-bottom: 1px solid #000;
}
.contact_wrap .sub_txt strong {
    font-size: 2.4rem;
    font-weight: 900;
}
.contact_wrap > a {
    display: block;
    width: 9rem;
    height: 6.4rem;
    background: url(../images/youtube_i.png) no-repeat center;
    background-size: contain;
    margin: 30px auto 0;
}

footer {
    width: 100%;
    background: #fff;
    padding: 5rem 0;
}
footer .copyright {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 300;
    color: #bfbfbf;
}



#audition {
    background-size: cover;
    width: 100%;
    height: 132rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
#audition video {
    width: auto;
    height: 132rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

#audition .pc_video {
    display: block;
}
#audition .mo_video {
    display: none;
}
.audition {
    width: 106rem;
    height: 78rem;
    position: relative;
    padding-right: 5.5rem;
    z-index: 10;
}
.audition .recruit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: inherit;
    background: #282828;
    padding-left: 7.5rem;
    box-sizing: border-box;
}
.audition .recruit h4 {
    font-size: 10rem;
    line-height: 10rem;
    color: #c4b59f;
    font-family: "protipo-compact", sans-serif;
}
.audition .recruit h4 span {
    font-size: 9.5rem;
    color: #c4b59f;
    font-weight: 200;
    font-family: "protipo-compact", sans-serif;
}
.audition .recruit > p {
    font-size: 3rem;
    color: #878787;
    font-weight: 100;
}
.audition .recruit dl {
    margin-top: 42px;
}
.audition .recruit dl.inline {
    display: flex;
    margin-top: 6rem;
}
.audition .recruit dl.inline dd {
    margin-left: 0.4rem;
    padding-left: 0;
}
.audition .recruit dl dt {
    font-size: 2.4rem;
    color: #c4b59f;
    font-weight: 100;
    margin-bottom: 0.8rem;
}
.audition .recruit dl dd {
    font-size: 2.4rem;
    color: #e1e1e1;
    font-weight: 100;
    padding-left: 2rem;
    box-sizing: border-box;
}
.audition .recruit dl.indent dd {
    padding-left: 1rem;
}
.audition .recruit dl dd strong {
    font-size: 2.4rem;
    color: #e1e1e1;
    font-weight: 400;
}
.audition .recruit .rec_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25.1rem;
    height: 23.8rem;
    background: #ba401c;
    border-radius: 0.3rem;
    position: absolute;
    top: -2.6rem;
    right: 0;
    font-size: 3rem;
    color: #e1e1e1;
    font-weight: 100;
}
.audition .recruit .rec_btn  strong {
    display: block;
    font-size: 3rem;
    color: #e1e1e1;
}

.text_slide {
    width: 100%;
    height: 84rem;
    background: #fff;
}
.text_slide > div {
    width: 100%;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    font-family: "protipo-compact", sans-serif;
}
.text_slide p {
    font-family: "protipo-compact", sans-serif;
}
.text_slide .top_txt p {
    font-size: 12rem;
    font-weight: 900;
    color: rgba(0,0,0,.05);
    animation: loopLeft 7s infinite linear;
    margin-left: 2.2rem;
}
.text_slide .bottom_txt p {
    font-size: 64.6rem;
    font-weight: 900;
    color: rgba(0,0,0,.08);
    animation: loopRight 18s infinite linear;
    margin-left: 2.2rem;
    margin-top: -12rem;
}
.text_slide .bottom_txt_sm {
    margin-top: -42.8rem;
}
.text_slide .bottom_txt_sm p {
    font-size: 7.2rem;
    font-weight: 900;
    color: rgba(0,0,0,.05);
    animation: loopLeft 5s infinite linear;
    margin-left: 0.4rem;
}

@keyframes loopLeft {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}
@keyframes loopRight {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}


.layer_deem {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.7);
    z-index: 500;
    display: none;
}
.layer_wrap {
    width: 100%;
    max-width: 108rem;
    max-height: calc(100vh - 8rem);
    background: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 550;
    /*overflow: auto;*/
    display: none;
}
.layer_wrap .layer_head .layer_close {
    width: 3.9rem;
    height: 3.9rem;
    background: url(../images/layer_close.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 3.2rem;
    right: 3.4rem;
}

.audition_apply .layer_body {
    padding: 13rem 15rem 16rem;
    height: calc(100vh - 8rem);
    box-sizing: border-box;
    overflow-y: auto;
}
.audition_apply legend {
    display: flex;
    text-align: center;
    font-size: 4.6rem;
    line-height: 4.6rem;
}
.audition_apply legend strong {
    font-family: "protipo-compact", sans-serif;
    font-size: 6.1rem;
    line-height: 4.6rem;
    font-weight: 800;
    margin-right: 0.4rem;
}
.audition_apply fieldset > p {
    font-size: 1.8rem;
    font-weight: 200;
    text-align: center;
    margin-top: 1rem;
}
.audition_apply h4 {
    display: flex;
    align-items: start;
    font-size: 2.2rem;
    line-height: 2.2rem;
    margin-top: 5.4rem;
}
.audition_apply h4 span {
    color: #ff4d4f;
    margin-left: 0.7rem;
    font-size: 2.2rem;
}
.audition_apply .enter_area .radio_area {
    margin-top: 4rem;
}
input {
    display: block;
    width: 100%;
    height: 5.6rem;
    line-height: 5.5rem;
    border: 0;
    border-bottom: 1px solid #d1d1d1;
    padding-left: 2rem;
    box-sizing: border-box;
    font-size: 1.6rem;
}
input::placeholder {
    color: #c2c2c2;
}
input:focus {
    background: #f0f0f0;
    border-bottom: 2px solid #666666;
}
.audition_apply .enter_area .input_area {
    margin-top: 2.2rem;
    position: relative;
}
.audition_apply .info_txt {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #666;
    margin-top: 0.4rem;
}
.audition_apply .info_txt i {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url(../images/info_i.png) no-repeat center;
    background-size: contain;
    margin-right: 0.4rem;
}
.audition_apply .address_input {
    position: relative;
}
.audition_apply .address_input .search_btn {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    background: url(../images/search_i.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 1.8rem;
    right: 2.7rem;
}
.audition_apply .double_input {
    display: flex;
    justify-content: space-between;
}
.audition_apply .double_input p {
    position: relative;
    width: calc(50% - 0.6rem);
}
.audition_apply .double_input p span {
    font-size: 1.6rem;
    color: #666666;
    position: absolute;
    top: 1.5rem;
    right: 2.2rem;
}
.audition_apply textarea {
    width: 100%;
    height: 21rem;
    border: 1px solid #d1d1d1;
    background: #fff;
    font-size: 1.6rem;
    resize: none;
    padding: 2rem;
    box-sizing: border-box;
}
.audition_apply textarea::placeholder {
    color: #c2c2c2;
}
.audition_apply .text_area {
    position: relative;
}
.audition_apply .text_area .count {
    font-size: 1.4rem;
    color: #9c9c9c;
    position: absolute;
    top: -2.7rem;
    right: 0;
}
.audition_apply .text_area .count span {
    font-size: 1.4rem;
    color: #ff4d4f;
}
.audition_apply .plus_i {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../images/plus_i.png) no-repeat center;
    background-size: contain;
}
.file_box label .plus_i,
.file_box .minus_i {
    position: absolute;
    top: 1.6rem;
    right: 1.2rem;
    cursor: pointer
}
.audition_apply .minus_i {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../images/minus_i.png) no-repeat center;
    background-size: contain;
}
.audition_apply .link_area p {
    position: relative;
}
.audition_apply .link_area input {
    display: flex;
    width: 100%;
    height: 5.6rem;
    background: #f0f0f0;
    padding-left: 2.8rem;
    padding-right: 1.2rem;
    box-sizing: border-box;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    font-size: 1.6rem;
    color: #a5a5a5;
    position: relative;
    border: 0;
}
.audition_apply .link_area input:focus {
    border: 0;
}
.audition_apply .link_area .plus_i,
.audition_apply .link_area .minus_i {
    position: absolute;
    top: 1.6rem;
    right: 1.2rem;
}
.audition_apply .link_area p {
    margin-top: 1.2rem;
}
.audition_apply .terms_area {
    width: 100%;
    height: 27.7rem;
    border: 1px solid #d1d1d1;
    background: #fff;
    box-sizing: border-box;
    padding: 1.5rem 3rem;
}
.audition_apply .terms_area p {
    font-size: 1.6rem;
}
.audition_apply .apply_btn {
    display: block;
    width: 100%;
    height: 10rem;
    line-height: 10rem;
    text-align: center;
    background: #ba401c;
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    margin-top: 3.6rem;
}

.radio_box {
    display: inline-block;
    position: relative;
    user-select: none;
    font-size: 1.6rem;
    padding-left: 2.5rem;
    line-height: 1.6rem;
    margin-right: 4.2rem;
    cursor: pointer;
}
.radio_box input[type="radio"] {
    display: none;
}
.radio_check {
    width: 1.6rem;
    height: 1.6rem;
    background: #fff;
    border: 0.1rem solid #d1d1d1;
    border-radius: 50%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}
.radio_check:after {
    content: "";
    position: absolute;
    display: none;
    width: 0.8rem;
    height: 0.8rem;
    background: #282828;
    border-radius: 50%;
    position: absolute;
    left: 0.3rem;
    top: 0.3rem;
}
.radio_box input[type="radio"]:checked + .radio_check {
    border-color: #282828;
}
.radio_box input[type="radio"]:checked + .radio_check:after {
    display: block;
}
.file_box label {
    display: flex;
    width: 100%;
    height: 5.6rem;
    background: #f0f0f0;
    padding-left: 2.8rem;
    box-sizing: border-box;
    cursor: pointer;
    margin-top: -5.6rem;
    align-items: center;
    font-size: 1.6rem;
    color: #a5a5a5;
    position: relative;
}
.file_box label .file_i {
    display: block;
    width: 1.8rem;
    height: 2.2rem;
    background: url(../images/file_i.png) no-repeat center;
    background-size: contain;
    margin-right: 0.6rem;
}
.file_box input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}
.file_box .file_name {
    display: flex;
    width: 100%;
    height: 5.6rem;
    background: #f0f0f0;
    padding-left: 2.8rem;
    box-sizing: border-box;
    align-items: center;
    position: relative;
    margin-top: 1.2rem;
}
.file_box .file_name p {
    width: 100%;
    font-size: 1.6rem;
    color: #a5a5a5;
    position: relative;
}
.terms_radio .radio_box {
    line-height: 2.4rem;
    padding-left: 3.3rem;
    margin-left: 5.5rem;
    margin-right: 0;
}
.audition_apply .enter_area .terms_radio {
    display: flex;
    justify-content: end;
    margin-top: 2.4rem;
}
.terms_radio .radio_box .radio_check {
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid #000;
    border-radius: 0;
}
.terms_radio .radio_box input[type="radio"]:checked + .radio_check {
    border: 0;
    background: url(../images/check_i.png) no-repeat center;
    background-size: contain;
}

.contact_wrap .loop_txt {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    bottom: -5rem;
}
.contact_wrap .loop_txt p {
    font-size: 12rem;
    color: rgba(0,0,0,.05);
    font-weight: 900;
    font-family: "protipo-compact", sans-serif;
}
#audition {
    position: relative;
}
#audition::after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/pattern.png) repeat center;
    background-size: auto;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
}
#audition_confirm {
    max-width: 108rem;
}
#audition_confirm .layer_body {
    padding: 10rem 15rem;
    box-sizing: border-box;
}
#audition_confirm p {
    font-size: 2.4rem;
    text-align: center;
}
#audition_confirm a {
    display: block;
    width: 100%;
    height: 10rem;
    line-height: 10rem;
    font-size: 2.4rem;
    text-align: center;
    color: #fff;
    background: #ba401c;
    margin-top: 7.5rem;
    font-weight: 600;
}

/* partners */
.partners_wrap {
    background: #fff;
    padding: 21.5rem 0 0;
}
.partners_list {
    width: 100%;
    max-width: 164.5rem;
    margin: 14.4rem auto 18rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.partners_list li {
    width: 33.3333%;
    height: 22.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners_list li img {
    display: block;
    width: inherit;
}



@media (max-width: 768px) {
    header {
        padding: 0 21px;
        padding-top: 14px;
        padding: 0 5.8333vw;
        padding-top: 3.8889vw;
    }
    header h1 a {
        width: 48px;
        height: 48px;
        width: 13.3333vw;
        height: 13.3333vw;
        background: url(../images/mo/logo_w.png) no-repeat center;
        background-size: contain;
    }
     
    header nav {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.9);
        top: 0;
        right: -100%;
        margin-top: 0;
        z-index: 500;
        box-sizing: border-box;
        border-right: 1px solid rgba(0, 0, 0, .9);
    }
    header nav ul {
        display: flex;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    header nav ul li {
        margin-left: 0
    }
    header nav ul li a {
        font-size: 18px;
        line-height: 75px;
        font-size: 5.0000vw;
        line-height: 20.8333vw;
    }
    header.black nav ul li a {
        color: #fff;
    }
    header .nav_close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 28px;
        height: 28px;
        top: 5.5556vw;
        right: 5.5556vw;
        width: 7.7778vw;
        height: 7.7778vw;
        z-index: 550;
    }
    header .nav_close span {
        display: block;
        width: 1.5px;
        height: 34px;
        width: 0.4167vw;
        height: 9.4444vw;
        background: #fff;
        border-radius: 5em;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        right: 13px;
        right: 3.6111vw;
    }
    header .nav_close span:nth-child(2) {
        transform: rotate(-45deg);
    }
    header .m_menu {
        display: block;
        width: 63.5px;
        height: 32px;
        line-height: 30px;
        font-size: 15px;
        width: 17.6389vw;
        height: 8.8889vw;
        line-height: 8.3333vw;
        font-size: 4.1667vw;
        border: 1px solid #fff;
        color: #fff;
        border-radius: 5em;
        box-sizing: border-box;
        text-align: center;
        font-weight: 500;
        font-family: "protipo-compact", sans-serif;
    }
    header.black .m_menu {
        color: #000;
        border-color: #000;
    }
    .visual {
        background: url(../images/mo/visual_bg.jpg) no-repeat center;
        background-size: cover;
        position: fixed;
        top: 0;
        left: 0;
    }
    .spotlight {
        display: none;
    }
    .contents_wrap {
        padding-top: 100vh;
        z-index: 90;
        position: relative;
    }
    .about_wrap {
        height: 411px;
        height: 114.1667vw;
    }
    .tit {
        font-size: 36px;
        font-size: 10.0000vw;
        margin-top: -12px;
        margin-top: -3.3333vw;
    }
    .sub_txt {
        font-size: 12px;
        line-height: 24px;
        font-size: 3.3333vw;
        line-height: 6.6667vw;
    }
    .about_wrap .sub_txt {
        max-width: 300px;
        max-width: 83.3333vw;
    }
    .about strong {
        font-size: 12px;
        font-size: 3.3333vw;
        margin-top: 28px;
        margin-top: 7.7778vw;
    }
    .video_fix {
        display: none;
    }
    .fix_bg {
        height: 256px;
        height: 71.1111vw;
        background: url(../images/mo/fix_bg.jpg) no-repeat center;
        background-size: cover;
    }
    .work_wrap {
        height: 1080px;
        height: 300.0000vw;
    }
    .work_wrap .sub_txt {
        width: 270px;
        width: 75.0000vw;
    }
    .work .keyword {
        max-width: 360px;
        max-width: 100.0000vw;
        justify-content: start;
        padding: 0 6px;
        padding: 0 1.6667vw;
        margin-top: 40px;
        margin-top: 11.1111vw;
    }
    .work .keyword li {
        height: 25px;
        line-height: 25px;
        padding: 0 15px;
        font-size: 11px;
        margin: 7px;
        height: 6.9444vw;
        line-height: 6.9444vw;
        padding: 0 4.1667vw;
        font-size: 3.0556vw;
        margin: 1.9444vw;
    }
    .work_slide {
        height: 452px;
        height: 125.5556vw;
        padding-top: 55px;
        padding-top: 15.2778vw;
        margin-top: 102px;
        margin-top: 28.3333vw;
    }
    .work_slide .swiper-slide {
        width: 241px;
        width: 66.9444vw;
    }
    .changing,
    .changed {
        transform: translateX(-30px);
        transform: translateX(-8.3333vw);
    }
    .swiper-slide-active ~ .changing, .swiper-slide-active ~ .changed {
        transform: translateX(30px);
        transform: translateX(8.3333vw);
    }
    .changing.swiper-slide-active .img_wrap,
    .changed.swiper-slide-active .img_wrap {
        transform: scale(1.31);
    }
    .work_slide .swiper-slide p {
        font-size: 12.5px;
        font-size: 3.4722vw;
    }
    .bottom_img {
        height: 290px;
        height: 80.5556vw;
        background: url(../images/mo/bottom_img.jpg) no-repeat center;
        background-size: cover;
    }
    .contact_wrap {
        height: 310px;
        height: 86.1111vw;
    }
    .contact_wrap .sub_txt strong,
    .contact_wrap .sub_txt a {
        font-size: 12px;
        font-size: 3.3333vw;
    }
    .contact_wrap > a {
        display: block;
        width: 46px;
        height: 33px;
        width: 12.7778vw;
        height: 9.1667vw;
        background: url(../images/mo/youtube_i.png) no-repeat center;
        background-size: contain;
        margin: 16px auto 0;
        margin: 4.4444vw auto 0;
    }
    footer {
        padding: 28px 0;
        padding: 7.7778vw 0;
        margin-top: -1px;
        margin-top: -0.2778vw;
        position: relative;
        z-index: 99;
    }
    footer .copyright {
        font-size: 10px;
        font-size: 2.7778vw;
    }
    #audition {
        padding-bottom: 150px;
        padding-bottom: 41.6667vw;
        background: #fff;
    }
    #audition::after {
        height: calc(100% - 150px);
        height: calc(100% - 41.6667vw);
    }
    #audition,
    #audition video {
        height: 660px;
        height: 183.3333vw;
        overflow: visible;
    }
    .audition {
        width: 320px;
        height: 468px;
        width: 88.8889vw;
        height: 130.0000vw;
        padding-right: 0;
        margin-top: 245px;
        margin-top: 68.0556vw;
    }
    #audition .pc_video {
        display: none;
    }
    #audition .mo_video {
        display: block;
    }
    .audition .recruit {
        padding-left: 32.5px;
        padding-left: 9.0278vw;
    }
    .audition .recruit h4 {
        font-size: 60px;
        font-size: 16.6667vw;
        line-height: 60px;
        line-height: 16.6667vw;
    }
    .audition .recruit h4 span {
        display: block;
        font-size: 30px;
        font-size: 8.3333vw;
        margin-bottom: -15px;
        margin-bottom: -4.1667vw;
    }
    .audition .recruit > p {
        font-size: 15px;
        font-size: 4.1667vw;
    }
    .audition .recruit dl {
        margin-top: 12px;
        margin-top: 3.3333vw;
    }
    .audition .recruit dl.inline {
        margin-top: 30px;
        margin-top: 8.3333vw;
    }
    .audition .recruit dl dt {
        font-size: 15px;
        font-size: 4.1667vw;
    }
    .audition .recruit dl dd,
    .audition .recruit dl dd strong {
        font-size: 15px;
        font-size: 4.1667vw;
        font-weight: 400;
    }
    .audition .recruit .rec_btn {
        display: block;
        width: 100%;
        height: 60px;
        line-height: 60px;
        height: 16.6667vw;
        line-height: 16.6667vw;
        top: auto;
        bottom: -60px;
        bottom: -16.6667vw;
        right: 0;
        border-radius: 0;
    }
    .audition .recruit .rec_btn::after {
        content: '오디션 지원하기';
        width: 100%;
        height: 100%;
        line-height: 60px;
        line-height: 16.6667vw;
        font-size: 15px;
        font-size: 4.1667vw;
        font-weight: 700;
        background: #ba401c;
        position: absolute;
        top: 0;
        left: 0;
    }
    .audition .recruit .rec_btn strong {
        display: none;
    }
    .text_slide {
        height: 283px;
        height: 78.6111vw;
    }
    .text_slide .top_txt p {
        font-size: 60px;
        font-size: 16.6667vw;
        margin-top: 54px;
        margin-top: 15.0000vw;
        margin-left: 4px;
        margin-left: 1.1111vw;
    }
    .text_slide .bottom_txt p {
        font-size: 125px;
        font-size: 34.7222vw;
        margin-top: -44px;
        margin-top: -12.2222vw;
    }
    .text_slide .bottom_txt_sm p {
        font-size: 25px;
        font-size: 6.9444vw;
    }
    .text_slide .bottom_txt_sm {
        margin-top: -102px;
        margin-top: -28.3333vw;
    }
    .contact_wrap .loop_txt {
        bottom: -25px;
        bottom: -6.9444vw;
    }
    .contact_wrap .loop_txt p {
        font-size: 60px;
        font-size: 16.6667vw;
    }

    .layer_wrap {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        overflow: unset;
    }
    .layer_wrap .layer_head .layer_close {
        width: 19.5px;
        height: 19.5px;
        width: 5.4167vw;
        height: 5.4167vw;
        top: 16px;
        right: 16px;
        top: 4.4444vw;
        right: 4.4444vw;
        z-index: 50;
    }
    .audition_apply .layer_body {
        padding: 65px 20px 35px;
        padding: 18.0556vw 5.5556vw 9.7222vw;
        height: 100%;
        overflow: auto;
        box-sizing: border-box;
    }
    .audition_apply legend {
        font-size: 28.5px;
        font-size: 7.9167vw;
        line-height: 28.5px;
        line-height: 7.9167vw;
    }
    .audition_apply legend strong {
        font-size: 34px;
        font-size: 9.4444vw;
        line-height: 28.5px;
        line-height: 7.9167vw;
    }
    .audition_apply fieldset > p {
        font-size: 12px;
        font-size: 3.3333vw;
        margin-top: 6px;
        margin-top: 1.6667vw;
    }
    .audition_apply h4 {
        font-size: 15px;
        font-size: 4.1667vw;
        line-height: 15px;
        line-height: 4.1667vw;
        margin-top: 42px;
        margin-top: 11.6667vw;
    }
    .audition_apply h4 span {
        margin-top: 0;
    }
    .audition_apply .enter_area .radio_area {
        margin-top: 18px;
        margin-top: 5.0000vw;
    }
    .audition_apply .enter_area .input_area {
        margin-top: 18px;
        margin-top: 5.0000vw;
    }
    input {
        height: 35px;
        line-height: 35px;
        font-size: 12px;
        height: 9.7222vw;
        line-height: 9.7222vw;
        font-size: 3.3333vw;
        padding-left: 10px;
        padding-left: 2.7778vw;
    }
    .radio_box {
        font-size: 12px;
        font-size: 3.3333vw;
        padding-left: 22px;
        margin-right: 29px;
        padding-left: 6.1111vw;
        margin-right: 8.0556vw;
    }
    .audition_apply .info_txt {
        font-size: 10px;
        font-size: 2.7778vw;
    }
    .audition_apply .info_txt i {
        width: 10px;
        height: 10px;
        width: 2.7778vw;
        height: 2.7778vw;
    }
    .audition_apply .address_input .search_btn {
        width: 12px;
        height: 12px;
        top: 12px;
        right: 10px;
        width: 3.3333vw;
        height: 3.3333vw;
        top: 3.3333vw;
        right: 2.7778vw;
    }
    .audition_apply .double_input p span {
        font-size: 15px;
        top: 5px;
        right: 10px;
        font-size: 4.1667vw;
        top: 1.3889vw;
        right: 2.7778vw;
    }
    .audition_apply textarea {
        height: 102px;
        padding: 15px 10px;
        font-size: 12px;
        height: 28.3333vw;
        padding: 4.1667vw 2.7778vw;
        font-size: 3.3333vw;
    }
    .audition_apply .text_area .count {
        font-size: 10px;
        top: -18px;
        font-size: 2.7778vw;
        top: -5.0000vw;
    }
    .audition_apply .text_area .count span {
        font-size: 10px;
        font-size: 2.7778vw;
    }
    .file_box label {
        margin-top: -36px;
        height: 37.5px;
        padding-left: 10px;
        font-size: 12px;
        margin-top: -10.0000vw;
        height: 10.4167vw;
        padding-left: 2.7778vw;
        font-size: 3.3333vw;
    }
    .file_box label .file_i {
        width: 17px;
        height: 21px;
        width: 4.7222vw;
        height: 5.8333vw;
    }
    .audition_apply .plus_i {
        background: url(../images/mo/plus_i.png) no-repeat center;
        background-size: contain;
    }
    .audition_apply .minus_i {
        background: url(../images/mo/minus_i.png) no-repeat center;
        background-size: contain;
    }
    .file_box label .plus_i, .file_box .minus_i,
    .audition_apply .link_area .plus_i, .audition_apply .link_area .minus_i {
        width: 24px;
        height: 24px;
        top: 7px;
        right: 8px;
        width: 6.6667vw;
        height: 6.6667vw;
        top: 1.9444vw;
        right: 2.2222vw;
    }
    .audition_apply .link_area input,
    .file_box .file_name {
        height: 37.5px;
        height: 10.4167vw;
        padding-left: 10px;
        font-size: 12px;
        padding-left: 2.7778vw;
        font-size: 3.3333vw;
    }
    .file_box .file_name p {
        font-size: 12px;
        font-size: 3.3333vw;
    }
    .audition_apply .terms_area {
        height: 140px;
        height: 38.8889vw;
        padding: 15px;
        padding: 4.1667vw;
        overflow: auto;
    }
    .audition_apply .terms_area p {
        font-size: 12px;
    }
    .terms_radio .radio_box {
        margin-left: 25px;
        margin-left: 6.9444vw;
        padding-left: 30px;
        padding-left: 8.3333vw;
    }
    .audition_apply .apply_btn {
        height: 60px;
        line-height: 60px;
        font-size: 18px;
        margin-top: 45px;
        height: 16.6667vw;
        line-height: 16.6667vw;
        font-size: 5.0000vw;
        margin-top: 12.5000vw;
    }
    #audition_confirm {
        max-width: 100%;
        height: auto;
        max-height: auto;
        display: none;
    }
    #audition_confirm .layer_body {
        padding: 70px 20px 45px;
        padding: 19.4444vw 5.5556vw 12.5000vw;
    }
    #audition_confirm p {
        font-size: 18px;
        font-size: 5.0000vw;
    }
    #audition_confirm a {
        height: 60px;
        line-height: 60px;
        font-size: 15px;
        margin-top: 35px;
        height: 16.6667vw;
        line-height: 16.6667vw;
        font-size: 4.1667vw;
        margin-top: 9.7222vw;
    }

    .partners_wrap {
        padding-top: 80px;
        padding-top: 22.2222vw;
    }
    .partners_list {
        margin: auto;
        display: block;
    }
    .partners_list li {
        width: 100%;
        height: auto;
        margin-top: 50px;
        margin-top: 13.8889vw;
    }
    .partners_list li img {
        width: 50%;
        margin: auto;
    }
}




.spotlight {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: radial-gradient( circle, transparent 160px, rgba(0, 0, 0, 0) 600px );
}
.firefly_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
}


.list_contents .txt_title,
.list_contents .txt_dsc,
.wrap_notice .txt_notice {
    display: block;
}