@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.ending #contents {
  height: 1400px;
  min-height: 100vh;
  background: url("../images/ending/bg.jpg") center top ;
  background-size: cover;}


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


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

#wrapper.ending .header {
  background: url("../images/ending/bg-header.jpg") center top ;
  background-repeat: repeat-x;
  width: 100%;
  height: 114px;
  opacity: 0;
  transition: all ease 300ms 0s;
}

#wrapper.ending .header.doShow {
  opacity: 1;
}

#wrapper.ending .header .title {
  position: absolute;
  top: 10px;
  left: calc(50% - 1071px / 2);
  width: 1071px;
  height: 114px;
  opacity: 0;
  z-index: 1000;
  transition: all ease 300ms 0s;
}


#wrapper.ending .header .title.doShow {
  opacity: 1;
}

#wrapper.ending .container .img1 {
  position: absolute;
  top:20px;
  left: calc(50% - 709px / 2);
  z-index: 120;
  width: 709px;
  opacity: 0;
  transition: all ease 0.5s 0.6s;
  transform: translate(-0, -30px);
}
#wrapper.ending .container .img1.doShow {
  opacity: 1;
  transform: translate(0, 0);
}

#wrapper.ending .container .img2 {
  position: absolute;
  top:94px;
  left: calc(50% - 940px / 2);
  z-index: 100;
  width: 940px;
  opacity: 0;
  transition: all ease 0.5s 0.8s;
  transform: translate(0, 30px);
}
#wrapper.ending .container .img2.doShow {
  opacity: 1;
  transform: translate(0, 0);
}


