
.p-movie01 {
	display: flex;
  flex: 1;
  column-gap: 2%;
}

.p-movie01-item.p-movie__playlist {
  width: 33%;
}
.p-movie01-item.p-movie01__list {
  width: 65%;
}

@media screen and (max-width: 1199px) {
  .p-movie01 {
    flex-direction: column;
    column-gap: 0;
  }
  .p-movie01-item.p-movie__playlist {
    order: 2;
    width: 100%;
    margin-top: calc(2 * var(--base-unit));
  }
  .p-movie01-item.p-movie01__list {
    order: 1;
    width: 100%;
  }
}

.p-movie__playlist-title {
  font-size: 16px;
  color: #fff;
  background: #757575;
  text-align: center;
  padding: 8px 0 8px;
  border-radius: 3px 3px 0 0;
}
@media screen and (max-width: 1199px) {
}
.p-movie__playlist-content {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  overflow-y: scroll;
  background-color: #f8f8f8;
}
@media screen and (max-width: 1199px) {
  .p-movie__playlist-content {
    overflow-y: unset;
  }
}
.p-movie__playlist-scroll_inner {
  padding: 15px 40px 15px 20px;
  aspect-ratio: 380 / 486;
  width: fit-content;
  height: 100%;
  max-height: 486px;
}
@media screen and (max-width: 1199px) {
  .p-movie__playlist-scroll_inner {
    aspect-ratio: unset;
    max-height: unset;
  }
}
.p-movie__playlist-scroll_inner dl {
  padding-bottom: 10px;
}
.p-movie__playlist-scroll_inner dt,
.p-movie__playlist-scroll_inner dd {
  padding-bottom: 5px;
}
@media screen and (max-width: 1199px) {
}


/* @media screen and (max-width: 1199px) {
  .p-movie__playlist-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .p-movie__playlist-title.open + .p-movie__playlist-content {
    max-height: 500px;
  }
} */

/* ホバー処理 */
@media screen and (min-width: 1199px) {
  .chapter-link {
    padding-bottom: .3em;
    line-height: calc(29 / 16);
    background: linear-gradient(#333, #333) 0 100% / 0 1px no-repeat;
    transition: background .4s;
  }
  .chapter-link:hover {
    background-size: 100% 1px;
  }
}

.chapter-text_em {
  padding-top: 10px;
}
.chapter-text_em em {
  font-weight: 700;
}