@charset "utf-8";

@media screen and (width >= 1200px) {
    .header_blur {
        transition-delay: 0s;
    }

    

    /*common*/
    .article_category{
        padding-top: 200px;
        margin-bottom: 150px;
    }
    /*movie_poster*/
    #movie_poster>.full_inner {
        width: 100%;
        height: 100vh;
        background: url('../img/sub/movie_poster.png') no-repeat center/cover;
        position: relative;
    }
    #movie_poster .material-icons {
        font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 48;

    }
    #movie_poster .inner{
        position: absolute;
        top:0;
        left:50%;
        transform: translateX(-50%);
        height: 100vh;
    }
    #movie_poster .movie_title {
        font-size: 16em;
        display: flex;
        align-items: center;
        justify-content: space-around;
        line-height: 120%;
        background-color:#00B6FF;
        color:#fff;
        width:768px;
        height:102px;
        font-family: 'Nanum Gothic', sans-serif;
        font-weight: 800;
        position: absolute;
        bottom:200px;
        right: 0px;
    }
    #movie_poster .movie_title span{
        font-size: 1.2em;
        color:#fff;
        cursor:pointer;
    }
    #movie_poster .movie_description {
        width: 400px;
        height: 48px;
        background-color: #fff;
        color:#00B6FF;
        font-size: 6em;
        text-align: center;
        line-height: 48px;
        position: absolute;
        bottom: 140px;
        right:0;
        font-weight: 600;
    }

    /*movie_video*/
    #movie_video .full_inner{
        width:95%;
        height:0;
        position: absolute;
        left:50%;
        transform: translate(-50%);
        bottom:0;
        border-radius: 30px 30px 0 0;
        background-color: #F2FBFF;
        z-index: 1;
        overflow: hidden;
        transition: height 0.6s, width 0.8s;
    }
    #movie_video .full_inner.active{
        height:92vh;
        width:100%;
    }

      #movie_video .player_box{
       position: absolute;
       width: calc(1920px*0.5);
       height:calc(1080px*0.5);
       left:50%;
       top:45%;
       transform: translate(-50%, -50%);
       background-color: #fff;
    }  
    #movie_video #player{
        width: 100%;
        height:100%;
    }
    #movie_video  #close{
        position: absolute;
        right:40px;
        top:40px;
        font-size: 9rem;
        color:#00B6FF;
        cursor: pointer;
        opacity: 1;
        }
    #movie_video .full_inner .article_title{
        left:50%;
        bottom:0%;
        width:100%;
        transform: translate(-50%, -50%);
        opacity: 0;
        position: absolute;
        text-align: center;
        color:#333;
        font-size: 5.5em;
        
    }
    #movie_video .full_inner.active .article_title{
        opacity: 1;
        bottom:16%;    
    }

    /*movie_profile*/
    #movie_profile .profile_box{
       padding: 56px 25px;
       border-radius: 20px;
       background-color: #F2FBFF;
       min-width: 274px;
    }
    .profile_box .titletop{
        padding-top:36px;
    }
    #movie_profile .box_align{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    /*Synopsis*/

    #synopsis .full_inner{
        overflow: hidden;
    }
    #synopsis section{
        display: flex;
        margin-left:30%;
        width:calc(450px*6);
    }
    #synopsis .synGroup{
        display: flex;
    }
    .synopsis_box{
        width:450px;
        min-width: 450px;
        height: 430px;
        border-radius:20px;
        overflow: hidden;
        padding:45px;
    }
    .synopsis_box h1{
        color:#00B6FF;
        font-size:16rem;
        font-weight: 800;
        font-family: 'Nanum Gothic', sans-serif;
        position: relative;
    }
    .synopsis_box h1::after{
        content:'';
        width:200px;
        height: 2px;
        position: absolute;
        bottom:-10px;
        left:0;
        background-color: #00B6FF;
    }
    .synopsis_box h4{
        color:#00B6FF;
        font-size:7rem;
        font-weight: 800;
        margin-top:30px;
        font-family: 'Nanum Gothic', sans-serif;
    }
    
    .synGroup:nth-of-type(1) .synopsis_img{
        background: url('../img/sub/synopsis_1.jpg') center/cover;
    }
    .synGroup:nth-of-type(2) .synopsis_img{
        background: url('../img/sub/synopsis_2.jpg') center/cover;
    }
    .synGroup:nth-of-type(3) .synopsis_img{
        background: url('../img/sub/synopsis_3.jpg') center/cover;
    }
    .synGroup:nth-of-type(4) .synopsis_img{
        background: url('../img/sub/synopsis_4.jpg') center/cover;
    }

    /*scrollbar*/
    #scrollbar{
        width: 900px;
        height: 40px;
        margin: 0 auto;
        margin-top:120px;
        margin-bottom:120px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content:center;
    }
    input[type="range"]{
        position: absolute;
        appearance: none;
        display: block;
        width:98%;
        background-color: #eee;
        height: 6px;
        outline:none;
        cursor:pointer;
    }
    input[type="range"]::after{
        content:'';
        position: absolute;
        appearance: none;
        display: block;
        width:98%;
        height: 6px;
        outline:none;
        cursor:pointer;
        padding-top:18px;
        padding-bottom: 18px;
        transform: translate(6px, -18px);
    }
    input[type="range"]::-webkit-slider-runnable-track{
        appearance: none;
        height: 6px;
    }
    input[type="range"]::-moz-track{
        -moz-appearance: none;
        height: 6px;
    }
    input[type="range"]::-ms-tranck{
        appearance: none;
        height: 6px;
    }
    input[type="range"]::-webkit-slider-thumb{
        appearance: none;
        height: 50px;
        width: 50px;
        background-color: #fff;
        border:10px solid #00B6FF;
        border-radius: 50%;
        pointer-events:auto;
        cursor:pointer;
        margin-top:-22px;
    }
    input[type="range"]::-moz-range-thumb{
        appearance: none;
        height: 50px;
        width: 50px;
        background-color: #fff;
        border:10px solid #00B6FF;
        border-radius: 50%;
        pointer-events:auto;
        cursor:pointer;
        margin-top:-22px;
    }
    input[type="range"]::-ms-thumb{
        appearance: none;
        height: 50px;
        width: 50px;
        background-color: #fff;
        border:10px solid #00B6FF;
        border-radius: 50%;
        pointer-events:auto;
        cursor:pointer;
        margin-top:-22px;
    }

    .circle_box{
        width: 98%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .circle{
        width:50px;
        height: 50px;
        background-color: #eee;
        border-radius: 50%;
    }
    .circle.active{
        background-color: #00B6FF;
    }
    .circle.small{
        width:30px;
        height: 30px;
    }
    .circle.small.active{
        background-color: #00B6FF;
    }

    /*music*/
    #music .article_category{
        margin-bottom: 100px;
    }
    #music .article_content{
        padding-top: 0px;
        width:40%;
        margin: 0 auto;
        text-align: center;
    }
    .music_box{
        margin-top:80px;
        width:1200px;
        height: 675px;
        background-color: red;
        overflow: hidden;
        border-radius: 20px;
    }
    .music_box #music_img{
        width: 100%;
        height: 100%;
    }
    #music .music_name{
        width: 100%;
        text-align: right;
        padding-top:16px;
    }
    .music_box a{
        display: block;
        position: absolute;
        width: 60px;
        height: 60px;
        background-color: #fff;
        border-radius: 60px;
        bottom:40px;
        right:40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .music_box a:hover > span{
        color:#00B6FF;
    }
    .music_box span{
        line-height: 60px;
        color:#bbb;
        font-size: 7rem;
    }


    /*character_background_setting*/
    .character_1 .main_thumbnail{
        background: url('../img/sub/ch1-1.jpg') center/cover no-repeat;
    }
    .character_1 .sub_thumbnail div:nth-child(1){
        background: url('../img/sub/ch1-1.jpg') center/cover no-repeat;
    }
    .character_1 .sub_thumbnail div:nth-child(2){
        background: url('../img/sub/ch1-2.jpg') center/cover no-repeat;
    }
    .character_1 .sub_thumbnail div:nth-child(3){
        background: url('../img/sub/ch1-3.jpg') center/cover no-repeat;
    }

    .character_2 .main_thumbnail{
        background: url('../img/sub/ch2-1.jpg') center/cover no-repeat;
    }
    .character_2 .sub_thumbnail div:nth-child(1){
        background: url('../img/sub/ch2-1.jpg') center/cover no-repeat;
    }
    .character_2 .sub_thumbnail div:nth-child(2){
        background: url('../img/sub/ch2-2.jpg') center/cover no-repeat;
    }
    .character_2 .sub_thumbnail div:nth-child(3){
        background: url('../img/sub/ch2-3.jpg') center/cover no-repeat;
    }

    .character_3 .main_thumbnail{
        background: url('../img/sub/ch3-1.jpg') center/cover no-repeat;
    }
    .character_3 .sub_thumbnail div:nth-child(1){
        background: url('../img/sub/ch3-1.jpg') center/cover no-repeat;
    }
    .character_3 .sub_thumbnail div:nth-child(2){
        background: url('../img/sub/ch3-2.jpg') center/cover no-repeat;
    }
    .character_3 .sub_thumbnail div:nth-child(3){
        background: url('../img/sub/ch3-3.jpg') center/cover no-repeat;
    }

    .character_4 .main_thumbnail{
        background: url('../img/sub/ch4-1.jpg') center/cover no-repeat;
    }
    .character_4 .sub_thumbnail div:nth-child(1){
        background: url('../img/sub/ch4-1.jpg') center/cover no-repeat;
    }
    .character_4 .sub_thumbnail div:nth-child(2){
        background: url('../img/sub/ch4-2.jpg') center/cover no-repeat;
    }
    .character_4 .sub_thumbnail div:nth-child(3){
        background: url('../img/sub/ch4-3.jpg') center/cover no-repeat;
    }

    .character_5 .main_thumbnail{
        background: url('../img/sub/ch5-1.jpg') center/cover no-repeat;
    }
    .character_5 .sub_thumbnail div:nth-child(1){
        background: url('../img/sub/ch5-1.jpg') center/cover no-repeat;
    }
    .character_5 .sub_thumbnail div:nth-child(2){
        background: url('../img/sub/ch5-2.jpg') center/cover no-repeat;
    }
    .character_5 .sub_thumbnail div:nth-child(3){
        background: url('../img/sub/ch5-3.jpg') center/cover no-repeat;
    }


    .character_6 .main_thumbnail{
        background: url('../img/sub/ch6-1.png') center/cover no-repeat;
    }
    .character_6 .sub_thumbnail div:nth-child(1){
        background: url('../img/sub/ch6-1.png') center/cover no-repeat;
    }
    .character_6 .sub_thumbnail div:nth-child(2){
        background: url('../img/sub/ch6-2.png') center/cover no-repeat;
    }
    .character_6 .sub_thumbnail div:nth-child(3){
        background: url('../img/sub/ch6-3.jpg') center/cover no-repeat;
    }


    /*character_box*/

    #character .full_inner{
        margin-top:150px;
        background-color: rgba(0, 0, 0, 0.3);
        height: 1200px;
        position: relative;
    }
    #character .full_inner::before{
        content:'';
        background-image: url('../img/sub/character.png');
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: absolute;
        top:0;
        left:0;
        z-index:-1;
        width:100%;
        height: 100%;
    }
    #character .character_box{
        overflow: hidden;
    }
    #character .inner{
        height: auto;
    }
    #character section>div{
        display: flex;
        flex-direction: column;
        gap:60px;
        position: relative;
    }
    #character .article_category{
       padding-top:200px;
    }
    /*basic*/
         #character section{
            display: flex;
            flex-flow: row;
            justify-content: space-between;
        }
        #character .character_box{
            width: 570px;
            height: 150px;
            background-color: #ffff;
            border-radius: 200px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-left:calc(25px/2);
            cursor: pointer;
        }
        .character_box .main_thumbnail{
            border-radius: 50%;
            width: 125px;
            height: 125px;
            overflow: hidden;
        }
        .character_box .main_thumbnail img{
            height: 100%;
            transform: translateX(-20%);
        }
        .character_box .actor,
        .character_box .introduce,
        .character_box .talk,
        .character_box .ch_close,
        .character_box .ch_button,
        .character_box .sub_thumbnail,
        .character_box .more,
        .character_box .short{
            display: none;
        }
        .character_box .name{
            font-size: 8rem;
            margin-right: 66px;
            font-weight: 600;
        } 

    /*hover*/
     #character section.second{
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        row-gap:30px;
        height:570px;
        overflow: hidden;
        }
        
        #character .character_box.second {
            width: 570px;
            height: 570px;
            background-color: #ffff;
            border-radius: 20px;
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            padding-left: 0px;
            flex-grow:1;
            gap:0px;
            position: relative;
        }
        
        /*other*/
        #character section>div.second{
            display: flex;
            flex-direction: column;
            gap:0px;
        }
        #character .character_box.other {
            height: 0px;
        }

    .character_box.second .main_thumbnail{
        border-radius: 50%;
        width: 220px;
        height: 220px;
        overflow: hidden;
        position:relative;
        margin-top:70px;
    }
    .character_box.second .ch_left::before{
        content:'';
        width:230px;
        height:230px;
        border-radius:50%;
        border: 3px solid #eee;    
        position: absolute;
        top:62px;
        transform:translateX(-8px);
        z-index:0;
    }
    .character_box.second .main_thumbnail img{
        height: 100%;
        transform: translateX(-22%);
    }
    .character_box.second .actor,
    .character_box.second .introduce,
    .character_box.second .talk,
    .character_box.second .ch_button,
    .character_box.second .sub_thumbnail{
        display: none;
    }
    .character_box.second .ch_close{
        width: 40px;
        height: 40px;
        background-color: #fff;
        border:none;
        outline: none;
        position: absolute;
        top:40px;
        right:40px;
        cursor: pointer;
        display:block;
    }
    .character_box.second .ch_close span{
        font-size: 10rem;
        line-height: 10rem;
        text-align: center;
        color:#bbb;
    }
    .character_box.second .ch_close span:hover{
        color:#00B6FF;
    }
    .character_box.second .name{
        font-size: 12rem;
        font-weight: 800;
        margin-bottom:10px;
        margin-right: 0px;
    }
    .character_box.second .short{
        font-size: 5rem;
        font-weight: 600;
        margin-bottom:35px;
        display: block;
    }
    .character_box.second .more{
        cursor: pointer;
        border: 2px solid #eee;
        outline:none;
        background-color:#eee;
        padding: 11px 28px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 5rem;
        margin-bottom:70px;
           display: block;
    }
    .character_box.second .more:hover{
        border: 2px solid #00B6FF;
    }
    .character_box.second .ch_right{
        display:flex;
        flex-direction: column;
        align-items: center;
    } 

    /*click*/
    #character section.third{
        flex-flow:column;
    }
    #character .character_box.third{
        width:1200px;
        height:760px;
        background-color: #fff;
        border-radius: 20px;
        align-items:normal;
        transform: translateY(-100px);
        position:absolute;
        top:0;
        z-index:1;
    }

    .character_box.third .main_thumbnail{
        border-radius: 10px;
        width: 100%;
        height: 366px;
        overflow: hidden;
    }

    .character_box.third .main_thumbnail img{
        height: 100%;
        transform:translateX(0px);
    }
    .character_box.third .sub_thumbnail{
        display: flex;
        width:100%;
        justify-content: space-between;
        align-items: center;
        margin-top:20px;
    }
    .character_box.third .sub_thumbnail div{
        cursor: pointer;
        width: 184px;
        height: 184px;
        overflow: hidden;
        border-radius: 10px;
    } 
    .character_box.third .sub_thumbnail img{
        height:100%;
        transform: translateX(-20%);
    }

    .character_box.third .character_box{
        position: absolute;
        top:0;
    }
    .character_box.third .ch_left{
        width:54%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left:55px;
    }
    .character_box.third .ch_right{
        display: flex;
        flex-flow: column;
        align-items: flex-start;
        width:46%;
        padding:110px 80px 50px 50px;
        position: relative;
    }
    .character_box.third .name{
        font-weight: 800;
        font-size: 12rem;
        margin-right: 0px;
        line-height: 120%;
    }
    .character_box.third .actor{
        padding: 12px 22px;
        background-color: #eee;
        border-radius: 50px;
        font-size: 4rem;
        margin-top:16px;
        display: block;
    }
    .character_box.third .introduce{
        font-size: 4rem;
        margin-top:25px;
        line-height: 160%;
        display: block;
    }
    .character_box.third .ch_close{
        width: 40px;
        height: 40px;
        background-color: #fff;
        border:none;
        outline: none;
        position: absolute;
        top:50px;
        right:50px;
        display: block;
        cursor: pointer;
    }
    .character_box.third .ch_close span{
        font-size: 10rem;
        line-height: 10rem;
        text-align: center;
        color:#bbb;
    }
    .character_box.third .ch_close span:hover{
        color:#00B6FF;
    }
    .character_box.third .next,
    .character_box.third .prev{
        width: 60px;
        height: 60px;
        border-radius: 60px;
        outline: none;
        border: 2px solid #bbb;
        background-color: #fff;
        cursor: pointer;
            display: block;
    }
    .character_box.third .next span,
    .character_box.third .prev span{
        font-size: 8rem;
        line-height: 8rem;
        color:#bbb;
        margin-top:4px;
        }
    .character_box.third .next:hover,
    .character_box.third .prev:hover{
        border: 2px solid #00B6FF;
    }
    .character_box.third .next:hover span,
    .character_box.third .prev:hover span{
        color:#00B6FF;
    }
    .character_box.third .ch_button{
        position: absolute;
        display: flex;
        gap:40px;
        right:50px;
        bottom:50px;
    }
    .character_box.third .talk{
        display: block;
    }
    .character_box.third .talk p{
        position: absolute;
        font-size: 10rem;
        background-color: #00B6FF;
        color:#fff;
        margin-top:10px;
        bottom:35%;
        line-height:10rem;
        padding: 14px 22px 12px;
    }
    .character_box.third .talk p:nth-child(1){
        left:-30px;
    }
    .character_box.third .talk p:nth-child(2){
        bottom:25%;
        left:60px;
    } 
    .character_box.third .more,
    .character_box.third .short{
        display:none;
    }
    /*character_talk_setting*/
    .character_1.third .talk p:nth-child(2){
        left:110px;
    }
    .character_4.third .talk p:nth-child(2){
        left:120px;
    }
    .character_5.third .talk p:nth-child(2){
        left:30px;
    }
    /*chracter_img_setting*/
    .character_box.third .main_thumbnail img{
        transform: translateX(-45px);
    }
    .character_6.third .main_thumbnail img{
        transform:translateX(0);
    }
    /*award*/
    #award .article_category{
        margin-bottom: 150px;
    }
    .award_box{
        width:100%;
        display: flex;
        flex-wrap: wrap;
        gap:45px;
        align-content: center;
        justify-content: center;
    }
    .award_box div{
        width:280px;
        height:280px;
        background: url('../img/sub/award.svg') center/cover ;
        position: relative;
    }
    .award_name,
    .year{
        color:#00B6FF;
        font-size: 5em;
        font-weight: 700;
        line-height: 125%;
    }
    .award_name{
        width: 60%;
        text-align: center;
        position: absolute;
        top:40%;
        left:50%;
        transform: translate(-50%, -50%);
    }
    .year{
        text-align: center;
        position: absolute;
        bottom:32%;
        left:50%;
        transform: translateX(-50%);
    }
    #award .inner>p{
        text-align: center;
        color:#bbb; 
    }

    /*image*/
    #image .full_inner{
        height: 80vh;
        background: url('../img/sub/image.png');
        margin-top:300px;
        background-attachment:fixed;
        background-size: cover;
        position: relative;
    }
    #image p{
        position: absolute;
        left:50%;
        top:50%;
        transform: translate(-50%,-50%);
        color: #fff;
        font-size: 6rem;
    }
    /*footer*/
    footer{
        margin-top:0px;
    }
}