@charset "utf-8";
#layerpop>div {
  position: absolute;
  top: var(--header);
  left: 0.5rem;
  border: 0.1rem solid #111;
  box-shadow: 0.1rem 0.1rem 0.6rem rgba(0, 0, 0, 0.5);
  z-index: 99999;
}

#layerpop .pop_con {
  font-size: 0;
  background: #222;
}

#layerpop .pop_con.moviePop {
  width: 600px;
}

#layerpop div.close_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1rem;
  height: 4.7rem;
  background: #222;
  font-weight: 500;
}

#layerpop div.close_box input[type=checkbox] {
  border: none;
  border-radius: 0.5rem;
}

#layerpop div.close_box label {
  padding-left: 0.5rem;
  color: #fff;
  font-size: 1.4rem;
}

#layerpop div.close_box input[type=button] {
  margin-left: 2rem;
  padding: 0.8rem 2rem;
  color: #222;
  font-size: 1.4rem;
  font-weight: 500;
  border: none;
  background: #fff;
  cursor: pointer;
}

@media all and (max-width:840px) {
  #layerpop {
    max-width: 100%;
  }

  #layerpop>div {
    left: 5px !important;
    top: var(--header) !important;
    right: 5px !important;
  }

  #layerpop img {
    width: 100%;
  }

  #layerpop .pop_con.moviePop {
    position: relative;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.2%;
    overflow: hidden;
  }

  #layerpop .pop_con.moviePop iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}