#side.set-fixed{
  position: fixed;
  top: 74px;

  z-index: 101;
}
#side {
  position: absolute;
  top: 1040px;
  left: 0;
  right: 0;
  z-index: 2;
}
#side .content {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
#side .content .side-banners {
  position: absolute;
  right: 50px;
  top: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#side .content .side-banners img {
  margin-bottom: 10px;
  cursor: pointer;
}
#side .content .side-banners .side03 {
  display: none;
}

/*******************************/
/* 반응형 */
/*******************************/

/* 모바일 */
@media screen and (max-width: 450px) {
  #side {
    display: none;
    display: none !important;
  }
}
/* 테블릿 */
@media screen and (min-width: 451px) and (max-width: 1023px) {
  #side {
    display: none !important;
  }
}

/* PC */
@media screen and (min-width: 1024px) and (max-width: 1454px) {
  #side .content {
    max-width: 1024px;
  }
  #side .content .side-banners {
    right: -202px;
  }
}

/* floating */
@media screen and (min-width: 1455px) {
  
}