/* CSS Document */
.sub_page_pop {
  position: fixed;
  z-index: 9998;
  width: 100vw;
  margin: auto;
  height: 100vh;
  padding: 0;
  left: 0;
  top: 200vh;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  -webkit-transition: top 0.5s cubic-bezier(0.8, 0, 0.2, 1);
  -moz-transition: top 0.5s cubic-bezier(0.8, 0, 0.2, 1);
  transition: top 0.5s cubic-bezier(0.8, 0, 0.2, 1);
  display: flex;
}
.sub_page_pop_content {
  padding: 50px;
  text-align: left;
  margin: 0 auto;
  width: 100%;
  max-height: 100vh;
  box-sizing: border-box;
  padding-left: 10%;
  padding-right: 10%;
  overflow-y: auto;
  display: block;
}
.sub_page_pop_content img.size-full {
  width: 100%;
}
.sub_page_pop_content .wp-video {
  margin: 0 auto;
  width: 100% !important;
}
.sub_page_pop_content video {
  width: 100%;
  background-color: #000000;
}
.sub_page_pop_content img {
  max-width: 100%;
}
.sub_page_pop_content h2 {
}
.button-close {
  position: fixed;
  z-index: 9999;
  top: 200vh;
  right: 0;
  margin: 20px;
  margin-top: 10px;
  float: right;
  font-size: 30px;
  cursor: pointer;
  color: #000;
}
