@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../images/sky/dark-sky.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 30px #dfdaeb
}

.title h1 {
  font-family: "Train One", system-ui;
  font-size: 32px;
}

.title p {
  font-size: 20px;
  margin-top: 15px;
}


.feature-text h2 {
  font-size: 60px ;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 3px;
}

.feature-text h3 {
  margin-top: 100px;
  text-align: center;
  font-size: 60px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.feature-text p {
  line-height: 40px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}

.feature-text {
  max-width: 1200px;
  margin: 60px auto;
}

.movie {
  width: 930px;
  max-width: 90%;
  background-color: #f8f8f8;
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 60px;
}
.movie img {
  width: 100%;
  height: 456px;
  margin-top: 30px;
}

.movie img:hover{ 
	opacity:0.5;
	transition:0.3s;
}

.movie h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.movie h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #a3d6cc;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  margin-top: 100px;
}

/* mediaここから */
@media (max-width: 800px) {
  .feature {
    display: block;
    width: 500px;
    margin-top: 45px;
  }

  .feature-text {
    margin-right: 0;
    margin-left: 0;
  }

  .movie {
    width: 500px;
    padding: 30px 25px;
  }

  .movie img {
    height: 240px;
  }

}




