#home {
  background-image: url(image/common/Bg.jpg);
}

#home-logo {
  position: absolute;
  z-index: 2;
}

#home-hero {
  position: absolute;
  background-image: url(image/common/Hero_33001.webp);
  background-repeat: no-repeat;
}

#home-open-popup-btn {
  background-image: url(image/common/Btn_Play.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  cursor: pointer;
}

#close-popup-yt-btn {
  top: calc(50% - 35vw);
  right: 2%;
  width: 7vw;
  height: 7vw;
}

#home-open-registration-btn {
  background-image: url(image/MainBtn_PreRegistration.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  cursor: pointer;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 1400px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: scale(0.7);
  /* transform: scale(1); */
  opacity: 0;
  /* opacity: 1; */
  transition: all 0.3s ease;
}

.modal-overlay.show .modal {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 5%;
  right: 2%;
  z-index: 1010;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-image: url(image/common/Btn_Close.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}