@charset "UTF-8";

@media screen and (min-width: 901px){
    #movie+section{
        display:none;
    }
}
.over-mv .mv_text>div{
    display:none;
}

@keyframes fadeIn {
    0% {
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}
a#con1+section .content_wrapper.fadeIn {
    opacity: 0;
    transform: translateX(-100px);
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
a#special+section .content_wrapper.fadeIn {
    opacity: 0;
    transform: translateX(100px);
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/*見出し*/
#left+section .heading.block_header_2 .h {
    background: linear-gradient(transparent 50%, var(--i_main_color) 50%);
}