<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#movie #main .main-visual {
  display: block;
  width: 100%;
  position: relative;
  background: url(../images/movie_main.jpg) no-repeat center top;
  background-size: cover;
}
#movie #main .contentsWrapper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}
#movie #main .contents-title {
  font-size: 32px;
  color: #FF5000;
}
#movie .movie-contents {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 120px auto 0;
}
#movie .movie-item {
  width: calc((100% - 80px)/3);
  margin: 0 40px 0 0;
}
#movie .movie-item p {
  font-size: 18px;
  line-height: 1.75;
}
#movie .movie-item:nth-of-type(3n) {
  margin: 0;
}
#movie .movie-item .img-wrap {
  width: 100%;
  position: relative;
  background: #181818;
  margin-bottom: 9px;
}
#movie .movie-item .img-wrap .movie-thum {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#movie .movie-item .img-wrap .movie-thum:hover {
  opacity: 0.7;
}
#movie .movie-icon {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


/* ================================================== */
@media screen and (max-width: 1280px) {

#movie #main .contentsWrapper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
}



}


/* ================================================== */
@media screen and (max-width: 768px) {

#movie #main .contentsWrapper {
  position: relative;
  max-width: inherit;
  margin: 0 auto;
  padding: 0 10px;
}

#movie .movie-contents {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto;
}

#movie .movie-item {
  width: auto;
  margin: 0 30px 24px;
}
#movie .movie-item:nth-of-type(3n) {
  margin: 0 30px 0;
}

#movie .movie-item p {
  font-size: 14px;
  line-height: 1.75;
}

}</pre></body></html>