@charset "UTF-8";

body {
  background: #080808;
}

/* main */
#main {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#main .btn-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
  position: absolute;
  bottom: 148px;
  left: 50%;
  transform: translateX(-50%);
}
#main .btn-zone button {
  padding: 8px 20px;
  align-items: center;
  gap: 6px;
}
#main .btn-zone button p {
  line-height: normal;
}
#main .btn-zone button.off {
  background: rgba(34, 34, 34, 0.3);
}
#main .btn-zone a {
  padding: 10px 15px;
  gap: 10px;
  line-height: normal;
}
#main video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.pop-up {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: inherit;
  z-index: 999;
}
.pop-up.invisible {
  display: none;
}
.pop-up .pop-up-cover {
  position: absolute;
  width: 100%;
  height: inherit;
  background: rgba(0, 0, 0, 0.5);
}
.pop-up .pop-up-wrap {
  position: absolute;
  max-width: 550px;
  width: 100%;
  border-radius: 6px;
}
.pop-up .pop-up-wrap img {
  width: 100%;
}
.pop-up .pop-up-wrap .pop-up-area {
  display: flex;
  flex-direction: column;
}
.pop-up .pop-up-wrap .bottom-zone {
  display: flex;
  justify-content: space-between;
  background: #fff;
}
.pop-up .pop-up-wrap label {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}
.pop-up .pop-up-wrap label input[type="checkbox"] {
  margin-right: 7px;
  cursor: pointer;
}
.pop-up .pop-up-wrap label h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.2px;
}
.pop-up .pop-up-wrap .close {
  position: relative;
  cursor: pointer;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop-up .pop-up-wrap .close span {
  position: absolute;
  background: #3d3d3d;
  border-radius: 10px;
  height: 3px;
  width: 16px;
  cursor: pointer;
}
.pop-up .pop-up-wrap .close span:nth-child(1) {
  transform: rotate(45deg);
}
.pop-up .pop-up-wrap .close span:nth-child(2) {
  transform: rotate(-45deg);
}

@media (max-width: 1400px) {
  #main video {
    width: 115%;
    object-fit: contain;
  }
}
@media all and (max-width: 600px) {
  /*pop-up*/
  .pop-up .pop-up-wrap {
    bottom: 0;
  }
  .pop-up .pop-up-wrap .pop-up-bottom-area img {
    width: 100%;
    height: auto;
  }
  .pop-up.invisible {
    display: block;
    transition: all 0.5s ease;
    transform: translateY(100%);
  }
  .pop-up.invisible .pop-up-cover {
    background: none;
  }
}
