@keyframes fire {
  0%, 100% {
    transform: scale(1, 1.08) rotate(0deg);
  }
  50% {
    transform: scale(1, 1) rotate(-3deg);
  }
}
@keyframes fire2 {
  0%, 100% {
    transform: scale(1, 1.12) rotate(0deg);
  }
  50% {
    transform: scale(1, 1) rotate(5deg);
  }
}
@keyframes fire3 {
  0%, 100% {
    transform: scale(1, 1.05) rotate(0deg);
  }
  50% {
    transform: scale(1, 1) rotate(2deg);
  }
}
#wrapper.booklet #contents {
  height: 10160px;
  min-height: 100vh;
  background: url("../images/booklet/bg.jpg") center top ;
  background-size: cover;}



#wrapper.booklet .container .title {
  position: absolute;
  top: 0;
  left: calc(50% - 2560px / 2);
  z-index: 100;
  width: 2560px;
  height: 74px;
  opacity: 0;
  transition: all ease 0.3s 0s;
}
#wrapper.booklet .container .title.doShow {
  opacity: 1;
}

#wrapper.booklet .container .imgbox{
  position: relative;
  z-index: 100;
  opacity: 0;
  top:90px;
  left: calc(50% - 1000px / 2);
  width: 1000px
  transition: all ease 0.3s 0s;
  transform: translate(0, -50px);
}
#wrapper.booklet .container .imgbox.doShow {
　transform: translate(0px,0px);
  opacity: 1;
  transform: translate(0, -0);
}

#wrapper.booklet .container .imgbox div{ 
	vertical-align: top;
}

#wrapper.booklet .container .imgbox div img{ 
	vertical-align: top;
}


#wrapper.booklet .oizumi {
  position: absolute;
  top: 17px;
  left: 17px;
  width: 107px;
  height: 30px;
  opacity: 0;
  z-index: 1000;
  transition: all ease 300ms 0s;
}


#wrapper.booklet .oizumi.doShow {
  opacity: 1;
}

