/* 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%;
  word-break: keep-all;
}

@media screen and (max-width: 960px) {
  #contents > div.pageName > section > h1 {
    font-size: 1.8em;
  }
}
.movieArea {
  margin-bottom: 50px;
}
.movieArea section.inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  @media (width <= 480px) {
    gap: 10px;
  }
}
@media all and (max-width: 1100px) {
  .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__main {
  text-align: center;
}
.movieArea__main iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.movieArea__related {
  container-type: inline-size;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}
.movieArea__related > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  @media (width <= 1100px) {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (width <= 768px) {
    grid-template-columns: repeat(1, 1fr);
  }
  @media (width <= 480px) {
    gap: 15px;
  }
}
.movieArea__related > ul li figure {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
}
@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 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
  padding: 0;
  list-style: none;
}
.movieArea__related > ul li figure figcaption ul li {
  font-size: 0.8em;
  padding: 3px 5px;
  border-radius: 2px;
  color: #fff;
  line-height: 1.2;
}
.movieArea__related > ul li figure figcaption ul li.members {
  background-color: #964B6E;
}
.movieArea__related > ul li figure figcaption ul li.guests {
  background-color: #0070c0;
}
.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;
  }
}

/* モーダル */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.35s ease;
  font-weight: 500;
}
.modal-content {
  position: relative;
  background: #fff;
  border-radius: 5px;
  color: #111;
  padding: 60px 75px;
  max-width: 960px;
  width: 100%;
  transform: scale(0.9);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}
@media (width <= 960px) {
  .modal-content {
    width: calc(100% - 20px);
  }
}
@media all and (max-width: 896px) {
  .modal-content {
    padding: 40px 5px;
  }
}
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: #222;
  border-radius: 0 5px 0 5px;
  outline: none;
  cursor: pointer;
  border-width: 0;
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
}
@media all and (max-width: 480px) {
  .modal-close {
    width: 35px;
    height: 35px;
  }
  .modal-close img {
    width: 20px;
  }
}
.modal.is-open {
  visibility: visible;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
}
.modal.is-open .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}