@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.cz #contents {
  background-color: #22ac39!important;	
  background: url("../images/cz/bg.jpg") no-repeat center top;
  height: 1120px;
}

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

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

#wrapper.cz .container .content1 {
  position: absolute;
  top: 145px;
  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% - 950px);
}

