/* 下のバナーのビン消す */

#fbnr.show.min ul li:nth-child(1) a:after {
  content: '';
  background: url("") no-repeat;
  width: 48px;
  height: 94px;
  display: block;
  background-size: cover;
  position: absolute;
  top: -22px;
  right: 18px;
  transition: .6s cubic-bezier(0.33, 1, 0.68, 1);
  /*		animation: bin 1s infinite ease-in-out .8s alternate;*/
}

@media (min-width: 767px) {
  #fbnr.show ul li:nth-child(1) a:after {
    content: '';
    background: url("") no-repeat;
    width: 64px;
    height: 126px;
    display: block;
    background-size: cover;
    position: absolute;
    top: -22px;
    right: 30px;
    transition: .6s cubic-bezier(0.33, 1, 0.68, 1);
    /* animation: bin 1s infinite ease-in-out .8s alternate; */
  }
}

@media (max-width: 767px) {
  #fbnr ul li:nth-child(1) a:after {
    content: '';
    background: url("") no-repeat;
    width: 36px;
    height: 71px;
    display: block;
    background-size: cover;
    position: absolute;
    top: -8px;
    right: 18px;
    /* animation: bin 1s infinite ease-in-out .8s alternate; */
  }
}

/* バナーがふたつあるから一つ消して右に寄せる */

#fbnr ul {
  display: flex;
  justify-content: right;
}
