.main-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 30px;
}

.main-contents::after{
    content:"";
    display: block;
    width:30%;
}

.movie {
    width: 30%;
    margin: 20px 0;
	box-sizing: border-box;
}

.movie_title{
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width:959px){

    .main-contents::after{
        width:50%;
    }

    .movie{
        width: 50%;
        box-sizing: border-box;
        padding: 10px;
    }
    
    .long_title_addoneline {
		margin: 10px 30px !important;
	}
}


@media screen and (max-width:650px){

    .main-contents::after{
        width:100%;
    }

    .movie{
        width: 100%;
    }
}