html {
  -ms-touch-action: none;
      touch-action: none;
}

* {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 0;
  font-family: "A-OTF UD Shin Go Pr6N";
}

*:focus {
  outline: none;
}

div.item {
  z-index: 10;
  position: absolute;
  top: calc((100vh - 1440px) / 2);
  left: calc((100% - 800px) / 2);
  width: 800px;
  height: 0;
  border: 2px solid #666666;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  -webkit-transition: height 0.2s, opacity 0.2s;
  transition: height 0.2s, opacity 0.2s;
  overflow: hidden;
  opacity: 0;
}

div.item.active {
  height: 1440px;
  opacity: 1.0;
}

div.item > img {
  width: 800px;
  height: 154px;
  display: block;
}

div.item > div.main {
  margin: 0;
  background-color: #f2f2f2;
  height: calc(100% - 154px);
  padding-top: 120px;
  position: relative;
}

div.item > div.main > img {
  width: 672px;
  display: block;
  margin: 0 auto 0 auto;
}

div.item > div.main > video {
  position: absolute;
  width: 768px;
  height: 432px;
  left: 16px;
}

div.item > div.main::before {
  content: '';
  display: block;
  position: absolute;
  width: 136px;
  height: 36px;
  top: 15px;
  left: 644px;
  background: url(../images/close.svg) 50% 50% no-repeat;
}

div.item > div.main video {
  top: 804px;
}
/*# sourceMappingURL=main.css.map */