/* media query */
header.headStd > div {
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 960px) {
  header.headStd > div {
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
}
header.headStd > div p.logo {
  margin-right: 0;
}

#contents > div.pageName > section > h1 {
  text-align: center;
  font-size: 2.5em;
  letter-spacing: 1px;
  line-height: 140%;
}

@media screen and (max-width: 960px) {
  #contents > div.pageName > section > h1 {
    font-size: 1.8em;
  }
}
.movieArea {
  margin-bottom: 50px;
}
.movieArea section.inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  .movieArea section.inner {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .movieArea section.inner {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
.movieArea section.inner {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}
@media all and (max-width: 1200px) {
  .movieArea section.inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.movieArea__main {
  text-align: center;
}
.movieArea__main iframe {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 900px;
  height: auto;
}
.movieArea__related {
  container-type: inline-size;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}
.movieArea__related ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.movieArea__related ul li figure {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
}
@media all and (max-width: 1200px) {
  .movieArea__related ul li figure {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }
}
@media (width <= 480px) {
  .movieArea__related ul li figure {
    grid-template-columns: clamp(100px, 30cqw, 160px) 1fr;
    gap: 15px;
  }
}
.movieArea__related ul li figure img {
  max-width: 100%;
}
.movieArea__related ul li figure figcaption {
  display: grid;
  align-content: center;
}
.movieArea__related ul li figure figcaption span {
  line-height: 1.4;
}

.headline_small {
  font-size: 1.1em;
  font-weight: bold;
  width: 100%;
  margin-bottom: 20px;
  letter-spacing: 1px;
  padding: 0.2rem 1rem;
  border-left: 8px solid #000;
  background-color: #f0f0f0;
}

.fixedbanner {
  display: none;
}

.footerMenu {
  display: none;
}

footer {
  margin-top: 100px;
}
@media screen and (max-width: 668px) {
  footer {
    margin-top: 60px;
  }
}