html, body {
  margin: 0;
  height: 100%;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  color: red;
}

.pchide {
  display: none;
  overflow:hidden;
}

.sphide {
  display: block;
  overflow:hidden;
}

@media screen and (max-width: 700px) {
  .pchide {
    display: block;
  }

  .sphide {
    display: none;
  }
}

.pcVox {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow:hidden;
}
.voxA {
  margin: 0 auto;
  width: 90%;
  height: auto;
  padding: 0;
  overflow:hidden;
}

.voxAs {
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 0;
  overflow: hidden;
}

.voxB {
  background-color: #e20913;
  margin: 0 auto;
  width: 90%;
  height: auto;
  padding: 0;
}

.voxBs {
  background-color: #e20913;
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 0;
}

.voxC {
  background-color: #ffc6c9;
  margin: 0 auto;
  width: 90%;
  height: auto;
  padding: 0;
}

.voxCs {
  background-color: #ffc6c9;
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 0;
}

.voxD {
  background-color: #fff;
  margin: 0 auto;
  width: 90%;
  height: auto;
  padding: 0;
}

.voxDs {
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 0;
}

.voxE {
  background-color: #e20913;
  margin: 0 auto;
  width: 90%;
  height: auto;
  padding: 0;
}

.voxEs {
  background-color: #e20913;
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 0;
}

.voxF {
  background-color: #e20913;
  margin: 0 auto;
  width: 90%;
  height: auto;
  padding: 0;
}

.voxFs {
  background-color: #e20913;
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 0;
}

.stageB {
  margin: 0 auto;
  padding: 0;
  width: 90vw;
  height: 109vw;
  position: relative;
}

.stageBs {
  margin: 0 auto;
  padding: 0;
  width: 100vw;
  height: 525vw;
  position: relative;
}

.stageC {
  margin: 0 auto;
  padding: 0;
  width: 90vw;
  height: 95vw;
  position: relative;
}

.stageCs {
  margin: 0 auto;
  padding: 0;
  width: 90vw;
  height: 287vw;
  position: relative;
}

.stageD {
  margin: 0 auto;
  padding: 0;
  width: 90vw;
  height: 160vw;
  position: relative;
}

.stageDs {
  margin: 0 auto;
  padding: 0;
  width: 90vw;
  height: 750vw;
  position: relative;
}

.stageE {
  margin: 0 auto;
  padding: 0;
  width: 90vw;
  height: 40vw;
  position: relative;
}

.stageEs {
  margin: 0 auto;
  padding: 0;
  width: 100vw;
  height: 195vw;
  position: relative;
}

.stageF {
  margin: 0 auto;
  padding: 0;
  width: 92vw;
  height: 98vw;
  position: relative;
}

.stageFs {
  margin: 0 auto;
  padding: 0;
  width: 100vw;
  height: 300vw;
  position: relative;
}
.mainImg {
  margin: 0 auto;
  padding: 0;
  width: 90vw;
  height: 39.1vw;
  position: relative;
}

.mainImgs {
  margin: 0 auto;
  padding: 0;
  width: 100vw;
  height: 161vw;
  position: relative;
}

#viewer {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  text-align: left;
  overflow: hidden;
  position: relative;
}

#viewer img {
  top: 0;
  left: 0;
  position: absolute;
}

.top-nav {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #000;
  height: 65px;
  padding: 1.5em;
  width: 90%;
  margin: 0 auto;
  z-index: 10000 !important;
}

.logo {
  width: 12em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin-right: 1em;
  padding: 0;
}

.menu>li {
  margin: 0 1rem;
  overflow: hidden;
  font-size: 0.72rem;
  display:block;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button, .menu-button::before, .menu-button::after {
  display: block;
  background-color: #0071be;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

.catch {
  position: absolute;
  left: 6%;
  top: 7%;
  width: 30%;
  z-index: 100;
}

.catchs {
  position: absolute;
  left: 6%;
  top: 4%;
  width: 88%;
  z-index: 100;
}

.pack {
  position: absolute;
  left: 62%;
  top: 14%;
  width: 26%;
  z-index: 100;
}

.packs {
  position: absolute;
  left: 15%;
  top: 30%;
  width: 70%;
  z-index: 100;
}

.b01 {
  position: absolute;
  left: 23%;
  top: 2%;
  width: 53%;
}
.b01s {
  position: absolute;
  left: 12%;
  top: 1.2%;
  width: 80%;
}

.b02 {
  position: absolute;
  left: 28.6%;
  top: 20%;
  width: 46%;
}

.b02s {
  position: absolute;
  left: 11%;
  top: 20%;
  width: 80%;
}

.b03 {
  position: absolute;
  left: 14.5%;
  top: 26.8%;
  width: 15%;
  z-index: 100;
}

.b03s {
  position: absolute;
  left: 9%;
  top: 40%;
  width: 45%;
  z-index: 100;
}


.b04 {
  position: absolute;
  left: 72.5%;
  top: 21%;
  width: 15%;
}

.b04s {
  position: absolute;
  left: 50%;
  top: 38.05%;
  width: 42%;
}

.b05 {
  position: absolute;
  left: 13%;
  top: 36.8%;
  width: 75%;
}

.b05s {
  position: absolute;
  left: 3%;
  top: 46.6%;
  width: 94%;
}

.c01 {
  position: absolute;
  left: 27%;
  top: 3%;
  width: 53%;
}

.c01s {
  position: absolute;
  left: 6%;
  top: 1.5%;
  width: 90%;
}

.c02 {
  position: absolute;
  left: 14%;
  top: 48%;
  width: 43%;
}

.c02s {
  position: absolute;
  left: 3%;
  top: 40%;
  width: 93%;
}

.c03 {
  position: absolute;
  left: 26%;
  top: 57%;
  width: 60%;
  z-index: 100;
}

.c03s {
  position: absolute;
  left: 3%;
  top: 52%;
  width: 95%;
}

.c04 {
  position: absolute;
  left: 14%;
  top: 81%;
  width: 59%;
}

.c04s {
  position: absolute;
  left: 3%;
  top: 74%;
  width: 93%;
}

.d01 {
  position: absolute;
  left: 13%;
  top: 1.5%;
  width: 72%;
}

.d01s {
  position: absolute;
  left: 8%;
  top: 0.8%;
  width: 90%;
}

.d02 {
  position: absolute;
  left: 12.5%;
  top: 36%;
  width: 25.5%;
}
.d02s {
  position: absolute;
  left: 12.5%;
  top: 38.5%;
  width: 75%;
}
.d02bs {
  position: absolute;
  left: 12.5%;
  top: 61.6%;
  width: 75%;
}

.d03 {
  position: absolute;
  left: 12%;
  top: 18.5%;
  width: 37%;
}
.d03s {
  position: absolute;
  left: 1.2%;
  top: 18%;
  width: 98%;
}
.d04 {
  position: absolute;
  left: 51%;
  top: 18.5%;
  width: 37%;
}
.d04s {
  position: absolute;
  left: 1.2%;
  top: 27.7%;
  width: 98%;
}

.d05 {
  position: absolute;
  left: 12%;
  top: 40.5%;
  width: 37%;
}

.d05s {
  position: absolute;
  left: 1.2%;
  top: 41.3%;
  width: 98%;
}

.d06 {
  position: absolute;
  left: 51%;
  top: 40.5%;
  width: 37%;
}
.d06s {
  position: absolute;
  left: 1.2%;
  top: 51%;
  width: 98%;
}

.d07 {
  position: absolute;
  left: 12%;
  top: 58%;
  width: 37%;
}
.d07s {
  position: absolute;
  left: 1.2%;
  top: 65%;
  width: 98%;
}

.d08 {
  position: absolute;
  left: 51%;
  top: 58%;
  width: 37%;
}
.d08s {
  position: absolute;
  left: 1.2%;
  top: 74.8%;
  width: 98%;
}
.d09 {
  position: absolute;
  left: 30%;
  top: 76%;
  width: 59%;
}
.d09s {
  position: absolute;
  left: 1.2%;
  top: 84%;
  width: 98%;
}

.e01 {
  position: absolute;
  left: 12.5%;
  top: 5%;
  width: 75%;
}

.e01s {
  position: absolute;
  left: 3%;
  top: 3%;
  width: 94%;
}

.e02 {
  position: absolute;
  left: 17%;
  top: 1%;
  width: 64%;
}

.e02s {
  position: absolute;
  left: 3%;
  top: 2%;
  width: 94%;
}

.e03 {
  position: absolute;
  left: 17%;
  top: 48%;
  width: 64%;
}

.e03s {
  position: absolute;
  left: 3%;
  top: 50%;
  width: 94%;
}

.e04 {
  position: absolute;
  left: 26%;
  top: 57%;
  width: 17%;
}

.e04s {
  position: absolute;
  left: 7.6%;
  top: 61%;
  width: 42%;
}

.e05 {
  position: absolute;
  left: 54%;
  top: 57%;
  width: 17%;
}

.e05s {
  position: absolute;
  left: 51%;
  top: 61%;
  width:42%;
}

.copyright {
  position: absolute;
  color:#fff;
  font-size: 0.7rem;
  text-align: center;
  left: 0%;
  top: 95%;
  width: 100%;
}


.menuBtn a {
  display: block;
  transform: scale(1);
  transition: all .3s ease-in-out;
}

.menuBtn a:hover {
  transform: scale(1.03);
  transition: .3s;
}


@media (max-width: 990px) {
  .top-nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    color: #000;
    height: 65px;
    padding: 0 1.5em 0 1.5em;
    width: 100%;
    margin: 0 auto;
    z-index: 10000 !important;
  }
  .menu {
    margin-right: 0.2em;
  }
  .menu>li {
    margin: 0 0.5rem;
    overflow: hidden;
    font-size: 0.72rem;
  }
  .voxA {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .voxB {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .voxC {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .voxD {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .voxE {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .voxF {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .mainImg {
    margin: 0 auto;
    padding: 0;
    width: 100vw;
    height: 43.5vw;
    position: relative;
  }
}

@media (max-width: 900px) {
  .logo {
    width: 8em;
  }
  .menu {
    margin-right: 0em;
  }
  .menu>li {
    margin: 0 0.5rem;
    overflow: hidden;
    font-size: 0.65rem;
  }
}

@media (max-width: 700px) {
  .menu-button-container {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 0;
    margin-top: 60px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  #menu-toggle~.menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  #menu-toggle:checked~.menu li {
    border: 1px solid #eee;
    height: 3em;
    font-size: 100%;
    padding-top: 0.7em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu>li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1em 0;
    width: 100%;
    color: white;
    background-color: #fff;
  }

  .menu>li:not(:last-child) {
    border-bottom: 1px solid #eee;
  }

  .top-nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    color: #000;
    height: 65px;
    padding: 1.5em;
    width: 100%;
    margin: 0 auto;
    z-index: 10000 !important;
  }
}

.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }

  10% {
    opacity: 0;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.fadeIn2 {
  animation-name: fadeIn2;
  -webkit-animation-name: fadeIn2;
  animation-duration: 3.5s;
  -webkit-animation-duration: 3.5s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes fadeIn2 {
  0% {
    opacity: 0;
    transform: translateY(40%);
  }

  50% {
    opacity: 0;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.fadeIn3 {
  animation-name: fadeIn3;
  -webkit-animation-name: fadeIn3;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes fadeIn3 {
  0% {
    opacity: 0;
    transform: translateX(-20%);
  }

  50% {
    opacity: 0;
    transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.fadeIn4 {
  animation-name: fadeIn4;
  -webkit-animation-name: fadeIn4;
  animation-duration: 3.5s;
  -webkit-animation-duration: 3.5s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes fadeIn4 {
  0% {
    opacity: 0;
    transform: translateX(20%);
  }

  60% {
    opacity: 0;
    transform: translateX(20%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.fadeIn5 {
  animation-name: fadeIn4;
  -webkit-animation-name: fadeIn4;
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes fadeIn5 {
  0% {
    opacity: 0;
    transform: translateY(15%);
  }

  60% {
    opacity: 0;
    transform: translateY(15%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.fadeIn6 {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes fadeIn6 {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }

  10% {
    opacity: 0;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.slidein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.0s;

  &.slidein-left {
    transform: translate(-10%, 0);
  }

  &.slidein-right {
    transform: translate(10%, 0);
  }

  &.slidein-up {
    transform: translate(0, -12%);
  }

  &.slidein-bottom {
    transform: translate(0, 12%);
  }

  &.scrollin {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
  }
}
