#bonban {
  margin-top: 130px;
  margin-bottom: 130px;
}


#bonban li:focus {
  outline: none;
}


#bonban .box-ban h2 {
  margin: 20px 0 16px 0;
}


.bonban-img-container {
  padding: 20px;
}

#bonban .img-responsive {
  width: 100%;
  height: auto;
  transition: all 0.8s linear;
}

.box-ban span,
time {
  font-size: 13px;
}

#bonban a:hover img {
  transform: scale(1.1);
}

#bonban .bonban-image {
  overflow: hidden;
  display: block;
  margin-bottom: 20px;
}

#bonban li:last-child {
  padding-left: 160px;
}

#bonban li h3 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 600;
}

#bonban li p {
  font-size: 20px;
  margin-bottom: 7px;
  line-height: 1.3;
}


#bonban .box-ban {
  padding: 20px 0 40px 70px;
  position: relative;
}

#bonban .bonbanrotate {
  position: absolute;
  left: -10%;
  top: -100%;
  animation: 10s linear 0s infinite animrotate;
}

@media screen and (min-width: 320px) and (max-width: 1880px) {
  #bonban li h3 {
    font-size: calc(20px + (32 - 20) * ((100vw - 320px) / (1880 - 320)));
  }

  #bonban li p {
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1880 - 320)));
  }

  #bonban .box-ban {
    padding-left: calc(10px + (70 - 10) * ((100vw - 320px) / (1880 - 320)));
    padding-right: calc(10px + (70 - 10) * ((100vw - 320px) / (1880 - 320)));
  }

  #bonban {
    margin-top: calc(30px + (130 - 30) * ((100vw - 577px) / (1880 - 577)));
    margin-bottom: calc(30px + (130 - 30) * ((100vw - 577px) / (1880 - 577)));
 }
}


@media screen and (min-width: 1200px) and (max-width: 1880px) {
  #bonban li:last-child {
    padding-left: calc(15px + (160 - 15) * ((100vw - 1200px) / (1880 - 1200)));
  }
}

@media (max-width: 1199px) {
  #bonban li:last-child {
    padding-left: 15px;
  }

  .bonbanrotate {
    display: none;
  }
}

@keyframes animrotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}