@charset "UTF-8";

/* ======================================================
 * spotlight/style.css
====================================================== */


/* movie
========================================== */
#movie {
  padding-top: 140px;
  padding-bottom: 140px;
}
#movie .p-movie-contentsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#movie .p-movie-contentsList__item {
  width: 402px;
}
#movie .p-movie-contentsList__item:nth-of-type(n+3) {
  margin-top: 100px;
}
#movie .p-movie-contentsList__item .text-title {
	background: var(--color-gray5);
	padding: 20px;
}
/* PC */
@media screen and (min-width: 1201px) {
  #movie .l-section__inner {
    max-width: 900px;
  }
}
/* SP */
@media screen and (max-width: 1200px) {
  #movie {
    padding-top: 40px;
    padding-bottom: 70px;
  }
  #movie .p-movie-contentsList__item {
    width: 47.94%;
  }
  #movie .p-movie-contentsList__item:nth-of-type(n+3) {
    margin-top: 40px;
  }
	#movie .p-movie-contentsList__item .text-title {
		font-size: 1rem;
		line-height: 1.5;
		padding: 6px 8px;
	}
}