@charset "UTF-8";
body {
    font-family: "微軟正黑體", "Malgun Gothic", Dotum, Tahoma, sans-serif;
    background-color: rgb(0, 0, 0);
    color: #000;
}

body{
    overflow-y: scroll;
    overflow-x: hidden;
}

img{
    max-width: 100%;
}

ul,li,a{
    text-decoration: none;
    list-style: none;
    padding: 0px;
}

audio::-webkit-media-controls-panel ,

audio::-webkit-media-controls-mute-button ,

audio::-webkit-media-controls-play-button ,

audio::-webkit-media-controls-timeline-container ,

audio::-webkit-media-controls-current-time-display ,

audio::-webkit-media-controls-time-remaining-display ,

audio::-webkit-media-controls-timeline ,

audio::-webkit-media-controls-volume-slider-container ,

audio::-webkit-media-controls-volume-slider ,

audio::-webkit-media-controls-seek-back-button ,

audio::-webkit-media-controls-seek-forward-button ,

audio::-webkit-media-controls-fullscreen-button ,

audio::-webkit-media-controls-rewind-button ,

audio::-webkit-media-controls-return-to-realtime-button ,

audio::-webkit-media-controls-toggle-closed-captions-button ,

audio::-webkit-media-controls-panel{
	font-size: 12px;
    color: #fff;
}

audio::-webkit-media-controls-enclosure{
	background: none;
	border-radius: 10px; 
    background-color: none;    
}

video::-webkit-media-controls-overlay-play-button,
audio::-webkit-media-controls-timeline, video::-webkit-media-controls-timeline{
    display:none;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button,
audio::-webkit-media-controls-fullscreen-volume-min-button,
audio::-webkit-media-controls-volume-slider ,
audio::-webkit-media-controls-fullscreen-volume-slider,
audio::-webkit-media-controls-volume-slider-container{
    display: flex;
    background-color: transparent;
    filter:invert(80%);
}



/* 側欄選單 */
aside{
    position: fixed;
    right: 15px;
    top: 30vh;
    width: 130px;
    height: 200px;
    z-index: 999;
    display: none;
    transform: translateX(0%);
    transition: .3s all;
}
aside.on{
    transform: translateX(calc(100% + 30px));
    transition: .3s all;
}
aside ul a li{
    filter: brightness(100%);
    transition: .3s all;
    margin-top: 4px;

}
aside ul a:hover,
.arrow:hover,
.aside_btn a li:hover{
    filter: brightness(120%);
    transition: .3s all;

}
aside ul a:nth-of-type(1) li{
    position: relative;
    width: 122px;
    height: 53px;
    background-image: url('../images/aside_1.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
aside ul a:nth-of-type(2) li{
    position: relative;
    width: 122px;
    height: 44px;
    background-image: url('../images/aside_2.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
aside ul a:nth-of-type(3) li{
    position: relative;
    width: 122px;
    height: 46px;
    background-image: url('../images/aside_3.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
aside ul a:nth-of-type(4) li{
    position: relative;
    width: 122px;
    height: 46px;
    background-image: url('../images/aside_4.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
aside ul a:nth-of-type(5) li{
    position: relative;
    /* width: 122px; */
    height: 40px;
    line-height: 40px;
    margin-top: 10px;
    margin-bottom: 8px;
    background-color: #00000050;

}
aside ul a:nth-of-type(5) li audio{
    height: 100%;
    width: 110%;
}
aside ul a:hover li{
    filter: brightness(120%);
}

aside ul a:nth-of-type(6) {
    position: absolute;
    width: 70px;
    height: 66px;
    right: 0px;
    bottom: -160px;
    background-image: url('../images/aside_top.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: 0.6s all;
}
.arrow{
    position: fixed;
    width: 28px;
    height: 28px;
    right: 0px;
    top: calc(30vh - 30px);
    background-image: url('../images/aside_arrow_off.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: 0.6s all;
    z-index: 1000;
    cursor: pointer;
    display: none;
}
.arrow.on{
    transform: rotate(180deg);
    transition: .6s all;
}

.aside_btn{
    position: absolute;
    width: 135px;
    right: 0px;
    top: 30vh;
    z-index: 999;
    
}

.aside_btn a:nth-of-type(1) li{
    position: relative;
    width: 126px;
    height: 51px;
    left: 50%;
    margin-bottom: 16px;
    transform: translateX(-50%);
    background-image: url('../images/aside_reg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: 0.6s all;
}
.aside_btn a:nth-of-type(2) li{
    position: relative;
    width: 126px;
    height: 34px;
    left: 50%;
    margin-bottom: 16px;
    transform: translateX(-50%);
    background-image: url('../images/aside_home.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: 0.6s all;
}
.aside_btn a:nth-of-type(3) li{
    position: relative;
    width: 126px;
    height: 51px;
    left: 50%;
    margin-bottom: 16px;
    transform: translateX(-50%);
    background-image: url('../images/aside_dl.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: 0.6s all;
}

.aside_btn.fixed{
    position: fixed;
    right: 15px;
    top: calc(30vh + 270px);
    z-index: 999;
    display: inline-block;
    transition: .3s all;   
}
.aside_btn.fixed.on{
    transform: translateX(calc(100% + 30px));
    transition: .3s all;    
}






main, .section1, .section2, .section3, .section4{
    position: relative;
    min-height: 100vh;
    background-color: #000;
    overflow: hidden;
    z-index: 1;
}

/* 主視覺影片 */
main .video_wrapper::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background: url('../images/main_mask.png') no-repeat center;
    opacity: 1;
}
main .video_wrapper{
    position: absolute;
    min-width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}
main .video_wrapper video{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.container{
    position: relative;
    z-index: 1;
}
.container div{
    position: relative;    
}

main .title{
    top: 30vh;
    right: 100px;
    float: right;
}
main .title img{
    position: relative;
}
main .title::before{
    content: '';
    position: absolute;
    width: 1476px;
    height: 1476px;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    background: url('../images/main_title_before.png') no-repeat center; 
    background-size: contain;
}
main .char_1{
    position: absolute;
    width: 1261px;
    height: 1177px;
    left: 30%;
    top: 0%;
    margin-left: -630px;
    background-image: url('../images/main_char.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/* section1 */
.section1{
    background-color:transparent;
    background-image: url('../images/section1_bg.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    margin-top: -10%;
    padding-top: 6%;
    
}
.section1 .title,
.section2 .title,
.section3 .title,
.section4 .title{
    
    margin-top: 60px;
}

.section1 .left .char_2{
    position: absolute;
    width: 2442px;
    height: 2366px;
    max-width: 150%;
    left: -40%;
    top: -100px;
    background: url("../images/section1_char.png") no-repeat right top;
    background-size: contain;
}


.section1 .info_download{
    position: absolute;
    width: 188px;
    height: 188px;
    left: 35%;
    top: 38%;
    background-image: url('../images/section1_download.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s all;
    z-index: 2;
}
.section1 .right{
    position: absolute;
    right: 0%;
    width: 50%;
    height: 100%;
    padding-left: 100px;
    background-color: #00000060;
    top: 150px;
}
.section1 .right img{
    display: block;
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,.6));
}
/* .section1 .right img:nth-of-type(1){
    max-height: 40vh;
} */
.section1 .right img:nth-of-type(2){
    max-height: 30vh;
}

.section1 .info_download:hover{
    filter: brightness(150%);
    transition: .3s all;
}

/* section2 */
.section2,.section4{
    min-height: 100vh;
}



.section2 .video_wrapper{
    position: absolute;
    min-width: 100%;
    overflow: hidden;
    top: 0px;
    height: 100%;
}
.section2 .video_wrapper::before,
.section4 .video_wrapper::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/section2_mask.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    mix-blend-mode: soft-light;

}
.section2 .video_wrapper video{
    position: absolute;
    left: 50%;
    top: 50%;
    width:  100%;
    transform: translate(-50%,-50%);
}

.section2 .s2_play_btn{
    position: relative;
    width: 159px;
    height: 158px;
    left: 50%;
    top: calc(50vh - 159px);
    transform: translateX(-50%);
    background-color: unset;
    border: unset;
    background-image: url('../images/section2_play_btn.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: 0.3s all;
}
.section2 .s2_play_btn:active,
.section2 .s2_play_btn:focus{
    border: unset;
    background-color: unset;
    outline: unset;
}
.section2 .s2_play_btn:hover{
    filter: brightness(150%) drop-shadow(0px 0px 20px rgba(255, 182, 243,.8));
    transition: 0.3s all;
    
}
.section2 .container button{
    position: relative;
}

.modal{
    position: fixed;
    top: 0px;
    width: 80vw;
    max-width: 100vw;    
    margin: auto;
    overflow: hidden;
}
.modal.in .modal-dialog{
    width: 100%;
    margin-top: 150px;
}



.modal .video_wrapper{
    position: relative;
    min-width: unset;
    height: 70vh;
    /* padding-bottom: 55%; */
}

.modal .video_wrapper iframe{
    width: 100%;
    height: 100%;
}


.modal .btn{
    position: absolute;
    top: -80px;
    right: 0px;
    width: 80px;
    height: 80px;
    background: #0007;
    
}
.modal-dialog{
    margin-top:80px;
}
.modal .btn::before{
    content: '';
    position: absolute;
    width: 70px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    background: #fff;
    transition: 0.6s all;
}

.modal .btn::after{
    content: '';
    position: absolute;
    width: 70px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    background: #fff;
    transition: 0.6s all;
}

.modal .btn:hover::before{
    transform: translate(-50%,-50%) rotate(-45deg);
    transition: 0.6s all;
    background: rgb(189, 7, 7);
}
.modal .btn:hover::after{
    transform: translate(-50%,-50%) rotate(45deg);
    transition: 0.6s all;
    background: rgb(189, 7, 7);
}





.section3{
    
    background:transparent;
    padding-top: 120vh;
    min-height: 120vh;
}

.section3 .info{
    position: relative;
    margin-top: 100px;
}
.section3 .info .content{
    position: relative;
    width: 100%;
    height: 875px;
    margin-bottom: 100px;
    background-image: url('../images/section3_info_content.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}
.section3 .info .content::after{
    content: '';   
    position: absolute;
    width: 550px;
    height: 904px;
    right:  -500px;
    top: -150px;
    background-image: url('../images/section3_char.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.section3 .info .content .wrapper{
    position: relative;
    height: 75%;
    width: 97%;
    top: 100px;
    padding: 0px 50px 10px 80px;
    overflow-y: scroll;
}
.section3 .info .content p{
    color: #c2b5a4;
    font-size: 20px;
    line-height: 26px;
    text-align: justify;
    text-indent: 32px;
}
.section3 .info .content .wrapper::-webkit-scrollbar {
    width: 10px;   
}



  
/* Track */
.section3 .info .content .wrapper::-webkit-scrollbar-track {
    background-color:transparent;
    border: 1px solid #c2b5a4;

    
}
   
/* Handle */
.section3 .info .content .wrapper::-webkit-scrollbar-thumb {
    background-color:#c2b5a4;
    border: 1px solid #c2b5a4;
    width: 50px;
    height: 50px;
}







.section4 .video_wrapper{
    position: absolute;
    min-width: 100%;
    overflow: hidden;
    top: 0px;
    height: 100%;
}
.section4 .video_wrapper::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 45%;
    bottom: 0px;
    left: 0px;
    background-color: #000;
    opacity: .8;
}

.section4 .video_wrapper video{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
}
.section4 .container button{
    position: relative;
}

.section4 .modal{
    position: fixed;
    top: 100px;
    width: 80vw;
    max-width: 100vw;    
    margin: auto;
    overflow: hidden;
}
.section4 .modal.in .modal-dialog{
    width: 100%;
}



.section4 .modal .video_wrapper{
    position: relative;
    min-width: unset;
    height: 70vh;
    /* padding-bottom: 55%; */
}

.section4 .modal .video_wrapper iframe{
    width: 100%;
    height: 100%;
}


.section4 .modal .btn{
    position: absolute;
    top: -80px;
    right: 0px;
    width: 80px;
    height: 80px;
    background: #0007;
    
}
.section4 .s4_play_btn{
    position: relative;
    width: 159px;
    height: 158px;
    left: 50%;
    top: calc(40vh - 159px);
    transform: translateX(-50%);
    background-color: unset;
    border: unset;
    background-image: url('../images/section2_play_btn.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: 0.3s all;
}
.section4 .s4_play_btn:active,
.section4 .s4_play_btn:focus{
    border: unset;
    background-color: unset;
    outline: unset;
}
.section4 .s4_play_btn:hover{
    filter: brightness(150%) drop-shadow(0px 0px 20px rgba(255, 182, 243,.8));
    transition: 0.3s all;
    
}

.section4 .modal .btn::before{
    content: '';
    position: absolute;
    width: 70px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    background: #fff;
    transition: 0.6s all;
}

.section4 .modal .btn::after{
    content: '';
    position: absolute;
    width: 70px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    background: #fff;
    transition: 0.6s all;
}

.section4 .modal .btn:hover::before{
    transform: translate(-50%,-50%) rotate(-45deg);
    transition: 0.6s all;
    background: rgb(189, 7, 7);
}
.section4 .modal .btn:hover::after{
    transform: translate(-50%,-50%) rotate(45deg);
    transition: 0.6s all;
    background: rgb(189, 7, 7);
}

.section4 .tab-content{
    color: #fff;
}

.section4 .skill_wrapper{
    top: calc(72vh - 390px);
    width: 800px;
    max-width: 100%; 
    margin-bottom: 60vh;
}


/* 0轉使者/1轉執行者 標籤*/
.section4 .container ul{
    border: unset;
    
}
.section4 .container .grade{
    padding-top: 10px ;
}
.section4 .container .grade li{
    display: block;
    padding: 0px;
    margin: 0px;
    width: 100%;
    transition: .3s all;
}
.section4 .container .grade li a{
    background: unset;
    border: unset;
    color: unset;
    width: 100%;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 0px;
    margin-top: 6px;

}
.section4 .container .grade li:nth-child(1) a{
    background-image: url('../images/section4_skill1.png');
}
.section4 .container .grade li:nth-child(2) a{
    background-image: url('../images/section4_skill2.png');
}
.section4 .container .grade li.active,
.section4 .container .grade li:hover{
    filter: brightness(150%);
    transition: .3s all;
}
/* 0轉使者/1轉執行者 標籤 end*/

/* 0轉 技能 icon */
.section4 .container .tab-content ul li{
    padding: 4px;
}
.section4 .container .tab-content ul li a{
    background: unset;
    border: unset;
    padding: 0px;
    padding-bottom: 100%;
    margin: 0px;
    margin-top: 7px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    display: block;
}
.section4 .container .tab-content .skill_tab1 ul li:nth-of-type(1) a{
    background-image: url('../images/section4_skill1_1.png');
}
.section4 .container .tab-content .skill_tab1 ul li:nth-of-type(2) a{
    background-image: url('../images/section4_skill1_2.png');
}
.section4 .container .tab-content .skill_tab1 ul li:nth-of-type(3) a{
    background-image: url('../images/section4_skill1_3.png');
}
.section4 .container .tab-content .skill_tab1 ul li:nth-of-type(4) a{
    background-image: url('../images/section4_skill1_4.png');
}
.section4 .container .tab-content .skill_tab1 ul li:nth-of-type(5) a{
    background-image: url('../images/section4_skill1_5.png');
}
.section4 .container .tab-content .skill_tab1 ul li:nth-of-type(6) a{
    background-image: url('../images/section4_skill1_6.png');
}

/* 0轉 技能 icon end*/


/* 1轉 技能 icon */


.section4 .container .tab-content .skill_tab2 ul li:nth-of-type(1) a{
    background-image: url('../images/section4_skill2_1.png');
}
.section4 .container .tab-content .skill_tab2 ul li:nth-of-type(2) a{
    background-image: url('../images/section4_skill2_2.png');
}
.section4 .container .tab-content .skill_tab2 ul li:nth-of-type(3) a{
    background-image: url('../images/section4_skill2_3.png');
}
.section4 .container .tab-content .skill_tab2 ul li:nth-of-type(4) a{
    background-image: url('../images/section4_skill2_4.png');
}
.section4 .container .tab-content .skill_tab2 ul li:nth-of-type(5) a{
    background-image: url('../images/section4_skill2_5.png');
}
.section4 .container .tab-content .skill_tab2 ul li:nth-of-type(6) a{
    background-image: url('../images/section4_skill2_6.png');
}

/* 1轉 技能 icon end*/

/* 0轉技能介紹內容 */

.section4 .container .tab-content ul li{
    filter:brightness(70%);
    transition: .3s all;
}
.section4 .container .tab-content ul li.active,
.section4 .container .tab-content ul li:hover{
    filter:brightness(100%) drop-shadow(0px 0px 5px #d0e2af);
    transform: translate(2px,2px);
    transition: .3s all;
}

.section4 .container .tab-content .tab-content{
    position: absolute;
    left: calc(-100% / 3);
    top: 115px;
    width: calc(100% / 9 * 12);
}
.section4 .container .tab-content div.f1{
    height: 86px;
    background: url('../images/section4_skill_f1.png') no-repeat center;
    background-size: contain;
}
.section4 .container .tab-content div.f2{
    height: 86px;
    background: url('../images/section4_skill_f2.png') no-repeat center;
    background-size: contain;
}
.section4 .container .tab-content div.f3{
    height: 86px;
    background: url('../images/section4_skill_f1_before.png') no-repeat center;
    background-size: contain;
}
.section4 .container .tab-content .tab-content h3{
    margin-top: 25px;
    padding-left: 100px;
    transform: translateX(0px);
    font-size: 28px;
    font-weight: 900;
    line-height: 30px;
    color: #c2b5a4;
}
.section4 .container .tab-content .tab-content h3::after{
    content: '';
    position: absolute;
    width: calc(100% - 35px);
    height: 1.5px;
    background-color: #c2b5a4;
    left: -17px;
    bottom: -5px;
}
.section4 .container .tab-content .tab-content h3.passive::before{
    content: '';
    position: absolute;
    width: 84px;
    height: 71px;
    left: 10px;
    top: -20px;
    background: url('../images/section4_passive.png') no-repeat center;
    background-size: contain;
}
.section4 .container .tab-content .tab-content h3.initiative::before{
    content: '';
    position: absolute;
    width: 84px;
    height: 71px;
    left: 10px;
    top: -20px;
    background: url('../images/section4_initiative.png') no-repeat center;
    background-size: contain;
}


.section4 .container .tab-content .tab-content p{
    margin-top: 10px;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    padding-left: 100px;
    padding-right: 100px;
    text-align: justify;
}







@media screen and (max-width: 1200px){
    .section3 .info .content .wrapper{
        height: 68%;
    }
}


@media screen and (max-width: 768px){
 
    .section3 .info .content{
        background-image: unset;
    }
    .section3 .info .content .wrapper{
        width: 100%;
        height: 80%;
        top: 50px;
        padding: 15px;
        box-shadow: 0px 0px 15px #afd6e2;

    }
    .section4 .container .tab-content .tab-content{
        left: -100px;
        width: calc(100% + 100px);
    }

}
@media screen and (max-width: 767px){
    .section1 .info .content::after,
    .section3 .info .content::after{
        content: unset;
    }
}
@media screen and (max-width: 991px){
    .container {
        width: 100vw;
    }   
}




@media (max-width: 480px){
    .home img{
        width: 170px;
        transform: translate(-45px,5px);
    }
    .fb{
        display: none;
    }    
    .section2 .video_wrapper video,
    .section4 .video_wrapper video{
        width: unset;
    }
    .section2 .s2_play_btn,
    .section4 .s4_play_btn{
        width: 70px;
        height: 70px;
    }

    .section4::after, .section4::before{
        opacity: .4;
        pointer-events: none;
    }
    .section4 .container .grade li{
        width: 50%;
    }
    .section4 .container .tab-content .tab-content{
        width: 100%;
        left: 0px;
    }
    .section4 .container .tab-content .tab-content{
        transform: translateY(-35px);
    }
    .section4 .container .tab-content .tab-content p{
        font-size: 16px;
        line-height: 22px;
    }
    .section4 .skill_wrapper{
        top: calc(72vh - 330px);
        
    }
    .section4 .container .grade{
        margin-bottom: 30px;
    }

    .section4 .container .tab-content .tab-content h3{
        padding-right: 50px;
    }

    .fix_btn ul{
        transform: scale(.8) translate(-100px,5px);
    }
    .section1 .info .info_download{
        transform: scale(.6);
    }
    .section1 .info .info_download{
        right: -10px;
        bottom: 80px;
    }
    .section4 .modal .btn,
    .section2 .modal .btn{
        top: -50px;
        right: 10px;
        width: 50px;
        height: 50px;
    }
    .section4 .modal .btn::before,
    .section4 .modal .btn::after,
    .section2 .modal .btn::before,
    .section2 .modal .btn::after{
        width: 50px;
    }

    .aside_btn{
        width: 100%;
        height: 110px;
        display: inline-block;
        top: unset;
        bottom: 0px;
    }
    .aside_btn.fixed{
        right: unset;
        top: unset;
    }
    .aside_btn a:nth-of-type(1) li,
    .aside_btn a:nth-of-type(2) li,
    .aside_btn a:nth-of-type(3) li{
        display: inline-block;
        width: 32%;
        left: unset;
        transform: translate(0);
        vertical-align: middle;
    }
    .section1{
        min-height: unset;
    }
    .section1 .left .char_2{
        top: 80px;
    }
    .section1 .right{
        right: 0px;
        top: 450px;
        width: 100%;
        height: unset;
        padding: 15px;
    }
    .section1 .right .title{
        position: relative;
        top: -480px;
    }
    .section1 .info_download {
        left: unset;
        left: 50%;
        top: 350px;
        max-width: 25%;
        transform: translate(-50%);
    }
    .section3{
        padding-top: calc(450px + 60vh);
        min-height: 100vh;
        
    }
    .section3 .info .content{
        height: 650px;
        margin-bottom: 0px;
    }
    .section3 .info{
        margin-top: 0px;
    }

    .section4 .tab-content,
    .section4,
    .section4,
    .section4 .f1,
    .section4 .f2,
    .section4 .f3{
        padding: 0px;
    }
    .section4 .container .tab-content div.f1,
    .section4 .container .tab-content div.f2,
    .section4 .container .tab-content div.f3{
        height: 60px;
    }
    .section4 .container .tab-content .tab-content h3{
        transform: translateX(0px);
    }
    .section4 .container .tab-content .tab-content h3::after{
        left: 0px;
    }
    .section4 .container .tab-content .tab-content p{
        padding: 0px;
    }
    main .char_1{
        width: 200vw;
        height: 100vh;
        left: -75%;
        top: 5%;
    }
    main .knife{
        display: none;
    }
    main .title{
        top: calc(100vh - 500px);
        width: 100%;
        right: unset;
        max-height: 80vh;
    }

}

