@charset "utf-8";

#movieSection {
    background-image: url(/_assets/img/character/movie/movie_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#movieSection .movieList dl {
    margin-bottom: 70px;
}

#movieSection .movieList dl:last-of-type {
    margin-bottom: 0px;
}

#movieSection .movieList dl dt {
    width: 50%;
    float: left;
}

#movieSection .movieList dl dt > div {
    padding-top: 56.25%;
    position: relative;
}

#movieSection .movieList dl dt > div iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#movieSection .movieList dl dd {
    width: 46%;
    float: right;
    position: relative;
}

#movieSection .movieList dl dd > img {
    position: absolute;
}

#movieSection .movieList dl dd > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#movieSection .movieList dl dd h3 {
    color: #009481;
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

#movieSection .movieList dl dd h3 span {
    border-bottom: 3px solid #f7ff27;
}

#movieSection .movieList dl dd p {
    line-height: 1.7;
}

#movieSection .movieList dl.movie01 dd > img {
    top: 0;
    right: 0;
}

#movieSection .movieList dl.movie02 dd > img {
    top: 20px;
    right: 0;
}


/* PC */
@media screen and (min-width: 768px) {
    #movieSection .movieList dl:nth-of-type(even) dt {
        float: right;
    }
    
    #movieSection .movieList dl:nth-of-type(even) dd {
        float: left;
    }
}

/* SP */
@media screen and (max-width: 767px){
    #movieSection .movieList dl {
        margin-bottom: 60px;
    }
    
    #movieSection .movieList dl dt {
        width: 100%;
        float: none;
    }
    
    #movieSection .movieList dl dd {
        width: 100%;
        float: none;
        padding-top: 20px;
    }
    
    #movieSection .movieList dl dd > img {
        position: absolute;
    }
    
    #movieSection .movieList dl dd > div {
        position: static;
        transform: translateY(0);
    }
    
    #movieSection .movieList dl dd h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    #movieSection .movieList dl dd h3 span {
        border-bottom: 3px solid #f7ff27;
    }
    
    #movieSection .movieList dl.movie01 dd > img {
        width: 68px;
        top: 10px;
        right: 10px;
    }
    
    #movieSection .movieList dl.movie02 dd > img {
        width: 43px;
        top: 10px;
        right: 10px;
    }    
}