.movie-nav {
  background-color: #ff8100;
}

.movie-nav > ul {
  display: flex;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  list-style: none;
  justify-content: space-around;
}

.movie-nav_item {
  display: block;
  width: 33.33%;
  height: 50px;
  margin: 5px 0;
}

.movie-nav_item > a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 50px;
  letter-spacing: 1px;
  color: whitesmoke;
  text-align: center;
  text-decoration: none;
}

.movie-nav_item + .movie-nav_item {
  border-left: 2px solid whitesmoke;
}

.movie-top {
  background-color: #f67a09;
}

.movie-top_img {
  margin: 0 auto;
  max-width: 1024px;
  width: 100%;
}

.movie-top_img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.movie-top > h1 {
  display: none;
}

.movie-top_txt {
  text-align: center;
  color: white;
  background: #ff8100;
  font-size: 16px;
  padding: 20px 3%;
  margin: 0 0 40px;
}

.movie-top_txt > p {
  margin: 0 0 10px;
}

.movie-sec_ttl {
  font-size: 20px;
  text-align: center;
  line-height: 24px;
  color: #ff8100;
  margin: 0 0 10px;
}

.movie-sec_ttl::before, .movie-sec_ttl::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-bottom: 6px;
}
.movie-sec_ttl::before {
  background-image: url(../img/movie-ico-eishaki.svg);
  margin-right: 5px;
}

.movie-sec_ttl::after {
  background-image: url(../img/movie-ico-kachinko.svg);
  margin-left: 5px;
}

.movie-wrapper {
  margin: 0 0 40px;
}

.movie-sec {
  margin: 0 0 80px;
}

.movie-festival_items {
  display: flex;
  flex-wrap: wrap;
  width: 98%;
  justify-content: space-between;
  margin: 0 auto;
}

.movie-festival_item {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 0 20px;
}

.movie-festival_img {
  display: block;
  position: relative;
  width: 100%;
}

.movie-festival_img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.movie-festival_img > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-festival_item > p {
  position: absolute;
  bottom: 0;
  font-size: 18px;
  line-height: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  color: whitesmoke;
  width: 100%;
  text-align: center;
}

.movie-link {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  margin: 16px 0 0;
}

.movie-link > a {
  color: #ff8100;
}

.movie-introduction_ttl {
  display: inline-block;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 20px;
  padding: 8px;
  background-color: #333;
  color: whitesmoke;
  border-radius: 8px 8px 0 0;
}

.movie-introduction_items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  align-items: stretch;
  padding: 0 8px 16px;
  background-color: #333;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
}

.movie-introduction_item {
  max-width: 49%;
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  position: relative;
}

#release-movie .movie-introduction_item {
  padding-bottom: 30px;
}

.movie-introduction_item-link {
  position: relative;
  display: flex;
  max-width: 100%;
}

.movie-introduction_item-ttl {
  position: absolute;
  width: 100%;
  padding: 8px 8px;
  bottom: 0;
  color: whitesmoke;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  font-size: 16px;
  opacity: 0;
  transition: all 0.5s;
}

.movie-introduction_item:hover .movie-introduction_item-ttl {
  opacity: 1;
}

.movie-introduction_item-link > img {
  object-fit: contain;
}

.movie-introduction_item-date {
  color: #333;
  padding: 4px 0;
  font-size: 16px;
	    position: absolute;
    bottom: 0px;
}

.movie-introduction_item-badge {
  position: absolute;
  display: inline-block;
  top: -30px;
  left: -10px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background-color: #E95A38;
  color: #fff;
  text-align: center;
  transform: rotate(-20deg);
  z-index: 50;
}

@media screen and (min-width: 520px) {
  .movie-nav_item > a {
    font-size: 20px;
  }

  .movie-top_txt {
    font-size: 20px;
  }
  
  .movie-sec_ttl {
    font-size: 48px;
    line-height: 56px;
    margin: 0 0 24px;
  }
  
  .movie-sec_ttl::before, .movie-sec_ttl::after {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  .movie-sec_ttl::before {
    margin-right: 40px;
  }
  
  .movie-sec_ttl::after {
    margin-left: 40px;
  }

  .movie-introduction_item {
    max-width: 18%;
  }

  .movie-link {
    font-size: 14px;
  }

  .movie-festival_item {
    width: 33%;
    margin: 0;
  }
}