@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes zoomout {
  0% {
    opacity: 1;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(50, 1) rotate(60deg);
  }
}
@keyframes jumpout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    margin-top: -400px;
    transform: scale(4);
  }
}

#wrapper.flow #contents {
  background-color: #0075c2!important;
  background: url("../images/flow/bg.jpg") no-repeat center top;
  height: 1020px;
}

#wrapper.flow .container .oizumi {
  position: absolute;
  top: 16px;
  left: 16px;
}

#wrapper.flow .container .title {
  position: absolute;
  top: 60px;
  left: 10px;
  z-index: 10;
}

#wrapper.flow .container .content1 {
  position: absolute;
  top: 155px;
  left: -10px;
}


.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  min-width: 1100px;
  background-color: #002870;
  padding-top: 1em;
  padding-bottom: 1em;
  min-height: calc(100% - 840px);
}

