@charset "UTF-8";

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.fadeIn {
  opacity: 0;
  transition: 3s;
  transform: translate(0, 30%);
}

.fadeIn.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

.zoomIn {
  animation: zoomIn 1.5s cubic-bezier(0.42, 0, 1, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 告知動画 */
.movie {
  display: block;
  /* max-width: 960px; */
  margin: 5rem auto;
}

.movie .movieCon {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  order: 1;
}

.movie .movieCon iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* 終戦特番 */
#syusen {
  color: #333;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.br {
  display: inline-block;
}

.top {
  width: 60%;
  margin: 3rem auto;
}

.desc {
  text-align: center;
  line-height: 1.8;
  font-weight: bold;
  font-size: 1.2rem;
  /* border: 2px solid #21503c;
  border-radius: 15px;
  padding: 1rem; */
}

.desc-item {
  width: 100%;
  margin: 7rem 0;
}

.desc-img {
  display: flex;
  width: 100%;
  gap: 10px;
  margin: 1rem 0;
  justify-content: center;
}

.desc-img img {
  width: calc(100% / 2 - 5px);
}

.nar {
  margin-top: 5rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.nar h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

@media (max-width: 768px) {

  .top {
    width: 80%;
  }

  .movie {
    margin: 3rem auto;
  }

  .desc {
    font-size: 1rem;
  }
}