@charset "utf-8";
.mvArea{
	width: 100%;
	height: 240px;
	background: url("../../img/movie/mv.jpg") top center / cover;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mvArea img{
	max-width: 375px;
}
.movie{
	padding: 120px 5% 200px;
	background: #fff url("../../img/movie/movie_bg.png") no-repeat top right / 60% auto;
	color: #000;
}
.movie_contents{
  max-width:1000px;
  width:100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.movie_contents_item{
  width: 30%;
  margin: 0 1.6% 40px;
}
.movie_contents_item .movie_contents_video{
  padding-top: 56.25%;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
.movie_contents_item .movie_contents_video iframe{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.movie_contents_txt{
  font-size: 16px;
}
.movie_contents_item:first-child{
  position: relative;
}
.movie_contents_item:first-child::before{
  position: absolute;
  content: 'New';
  top: 5px;
  left: 5px;
  color: white;/*文字色*/
  padding: 0 0.2em;/*余白*/
  background: red;/*背景色*/
  z-index: 999;
}

@media screen and (max-width: 1024px) { 
	.sale{
		background: -o-linear-gradient(top, #fff 0%, #fff 23%, #f0f0f0 23%, #f0f0f0 100%);
		background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(23%, #fff), color-stop(23%, #f0f0f0), to(#f0f0f0));
		background: linear-gradient(180deg, #fff 0%, #fff 23%, #f0f0f0 23%, #f0f0f0 100%); /* Firefox *//* safari Chrome */
		background:linear-gradient(180deg, #fff 0%, #fff 23%, #f0f0f0 23%, #f0f0f0 100%); /* IE */
	}
	.award{
		padding: 60px 5%;
	}
}
@media screen and (max-width: 750px) { 
	.mvArea{
		height: 200px;
	}
	.movie{
		padding: 60px 5%;
		background: #fff url(../../img/brand/brand_bg.png) no-repeat top right / 80% auto;
	}
  .movie_contents{
    max-width:100%;
    width:100%;
    margin: 0 auto;
    display: block;
  }
  .movie_contents_item {
    width: 100%;
  }
	
}