/* オーバーレイ背景 */
.pop-filter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 0, 0, .5);
  z-index: 110;
  display: none;
}

.pop-filter.is-active {
  display: block;
}

/* ポップアップ本体 */
.popup {
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  background: #fff;
  width: calc(100% - 100px);
  padding: 4% 3% 5%;
  margin: 0 auto;
  border-radius: 15px;
  transform: translate(-50%, -50%);
  z-index: 120;
  display: none;
}

.popup.is-active {
  display: block;
}

/* 内部レイアウト */
.popup__inner {
  width: auto;
  margin: 0 auto;
}

.popup__ttl {
  font-size: 3.75vw;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  margin-bottom: 3%;
  color: #333;
  line-height: 160%;
  letter-spacing: 0;
  width: 100%;
  margin-left: 2%;
  font-family: "Noto Sans Medium", sans-serif;
}

/* リスト */
.popup ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.popup ul li {
  margin: 0;
  padding: 0;
}

.popup ul li a,
.popup ul li .movie__popup-link {
  position: relative;
  background: #fff;
  height: 156px;
  padding: 3% 8% 3% 6%;
  border: 1px solid #dcdcdc;
  border-left: none;
  border-right: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-decoration: none;
  gap: 6%;
}

.popup ul li a,
.popup ul li .movie__popup-link.movie__popup-link-2 {
  padding-left: 3.5%;
  gap: 3%;
  padding-bottom: 5%;
}

.popup ul li a:hover,
.popup ul li .movie__popup-link:hover {
  opacity: 1;
  background: #f7f7f7;
}

.popup ul li a::after,
.popup ul li .movie__popup-link::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 3%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #5c5c5c;
  border-right: 2px solid #5c5c5c;
  transform: translateY(-50%) rotate(45deg);
}

.popup__box--text {
  text-align: left;
  font-size: 2.96875vw;
  display: flex;
  justify-content: center;
}

.popup ul li:last-of-type a,
.popup ul li:last-of-type .movie__popup-link {
  border-top: none;
}

/* アイコン画像 */
.popup__img {
  max-width: 11.718vw;
  width: 100%;
  margin-top: 1%;
}

.popup__img-2 {
  max-width: 15.625vw;
  width: 100%;
  margin-top: 1%;

}

.popup__img img {
  width: 100%;
  height: auto;
}

/* ×ボタン */
.popup__switch {
  position: absolute;
  top: -23px;
  right: -30px;
  background: #01b3cd;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__switch span {
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-size: 32px;
}

.popup__switch button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}


.popup__box--text {
  font-family: "Noto Sans Medium", sans-serif;
  color: #000000;
}

.popup__box--text span {
  border-bottom: 2px solid #ff4a8a;
  color: #000000;
}

.popup__box--img {
  max-width: 280px;
  width: 100%;
  display: inline-block;
  margin-inline: auto;
  padding-inline: 25px;
  padding-top: 30px;
}

.popup__box--img img {
  width: 100%;
}

.movie-list__dewo {
  position: relative;
}

.movie-list__dewo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 45.5%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 84%;
  border-left: 2px dotted #a0a0a0;
}