.popup {
   display: none;
}
.popup.show {
   display: flex;
   flex-flow: column nowrap;
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 75%;
   max-width: 600px;
   height: auto;
   max-height: 60%;
   background: #fff;
   z-index: 999;
   border-radius: 40px;
   overflow: hidden;
}

.popup .title {
   flex-shrink: 0;
   background: #f67979;
   color: #fff;
   font-size: 24px;
   text-align: center;
   padding: 20px;
   font-family: var(--theme-font-700);
}
.popup .contents {
   height: 100%;
   overflow-y: scroll;
}
.popup .contents ul {
   padding: 10px 0;
}
.popup .contents li {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px;
   font-size: 1.5rem;
   border-bottom: 1px solid #acb0c1;
}
.popup .contents li button {
   flex-shrink: 0;
   width: 120px;
   height: 40px;
   background-color: gray;
   color: #fff;
   font-family: var(--theme-font-700);
   border: 0 none;
   border-radius: 40px;
}
.stopPlay {
   font-style: normal;
}

.popup_close {
   flex: none;
   position: absolute;
   right: 40px;
   top: calc(80px / 2);
   height: 40px;
   width: 40px;
   transform: translateY(-50%);
   background: transparent;
   border: 0 none;
}
.popup_close img {
   height: 32px;
}

.popup.show + .newDimmed {
   display: block;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.3);
   z-index: 998;
}
