.c-modal {
  display: flex;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.4s ease, transform 0.4s ease;
  overflow-y: auto;
  padding: 20px;
}

.c-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.c-modal-content {
  position: relative;
  background: transparent;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding-top: 30px;
}

.c-modal__official-movie iframe {
  width: 1013px;
  height: 570px;
  max-width: 100%;
  display: block;
}

.c-modal-close-001 {
  position: sticky;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 100%;
  z-index: 100;
}
.c-modal-close-001 img {
  width: 50px;
  display: block;
  margin-left: auto;
  background: rgba(0, 0, 0, 0.9);
  padding: 8px;
  border-radius: 50%;
  position: relative;
  right: 10px;
}

@media (max-width: 767px) {
  .c-modal-close-001 {
    position: sticky;
    top: 0;
    right: 0;
    cursor: pointer;
  }

  .c-modal-close-001 img {
    width: 40px;
    display: block;
    margin-left: auto;
  }
  .c-modal__official-movie iframe {
    width: 375px;
    height: 192px;
  }
  .c-modal-content {
    max-height: 80vh;
  }
}

.c-modal-content {
  scrollbar-width: none; /* Firefox */
}

.c-modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.c-modal-content {
  -ms-overflow-style: none;  /* IE, Edge */
  scrollbar-width: none; /* Firefox */
}

.c-modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}


