@charset "utf-8";
@import "reset.css";
body {
  background-color: rgba(242,242,232,0.3);
  scroll-behavior: smooth;
  animation: fadein 3s ease-in forwards;
}
#wrapper {
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px;
  box-sizing: border-box;
}
#wrap {
  width: 960px;
  margin: 0 auto;
  animation: fadein 5s ease-in forwards;
}
#wrap p {
  margin-top: 1em;
}
#wrap a {
  color: #618AB0;
}
#wrap a:visited {
  color: #788DA0;
}
#wrap a:hover {
  text-decoration: underline;
  opacity: 0.7;
  transition-duration: .3s;
}
#wrap a:active {
  text-decoration: underline;
  opacity: 0.7;
  transition-duration: .3s;
}
#movie {
  width: 920px;
  margin: 2em auto;
}
#movie .movie-list li {
  float: left;
    margin: 0 20px 15px 0;
}
#movie .movie-list img {
  width: 450px;
}
#movie .movie-list li:nth-child(2n) {
 margin-right: 0;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
footer {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
}
header {
  padding-top: 50px;
}
/* Animation */
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bound {
  animation: bound 1.8s linear 5s 1;
}
@keyframes bound {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-1em);
  }
  50% {
    transform: translateY(0) scaleY(0.5);
  }
  75% {
    transform: translateY(-0.5em) scaleY(1);
  }
  95% {
    transform: translateY(0.3em) scaleY(0.5);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}
@keyframes bluelight{
0%{background-color:rgba(212,220,239,1);box-shadow: 0 0 10px #fff;}
100%{background-color:#fff;box-shadow: 0 0 0 transparent;}
}
@keyframes greenlight{
0%{background-color: rgba(204,231,227,1);box-shadow: 0 0 10px #fff;}
100%{background-color:#fff;box-shadow: 0 0 0 transparent;}
}
@keyframes yellowlight{
0%{background-color:rgba(248,240,155,1);box-shadow: 0 0 10px #fff;}
100%{background-color:#fff;box-shadow: 0 0 0 transparent;}
}
@media screen and (max-width:925px) {
  #movie {
  width: 620px;
}
#movie .movie-list img {
  width: 300px;
}
  #wrap {
  width: 80%;
}
}
@media screen and (max-width:770px) {
  header {
    margin: 10% auto;
  }
}
@media screen and (max-width:625px) {
    #movie {
  width: auto;
}
#movie .movie-list li {
  float: none;
    margin: 20px auto;
}
#movie .movie-list img {
  width: 300px;
}
}
@media screen and (max-width:420px) {
  #header-img {
    width: 70%;
  }
  .line-1 {
    font-size: 50%;
    letter-spacing: 0.15em;
    margin: 10% auto;
  }
}
@media screen and (max-width:330px) {
  .line-1 {
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width:300px) {
  .line-1 {
    letter-spacing: 0em;
  }
}