#pass_area {background-color: #111; height: 850px;}
#pass {position: relative; margin: auto; width: 100%; max-width: 1630px;}
#pass_img {position: absolute; left: 0px; top: 150px; z-index: 1;}
#pass_txt {position: absolute; right: 0; width: 840px; z-index: 2;}
#pass_txt #pass_scroll {overflow: hidden; width: 840px; height: 570px;}
#pass_txt li {float: left; font: normal 14px /20px Pretendard; color: #fff; text-align: center; text-shadow: 1px 0 1px rgba(0, 0, 0, 0.3);}
#pass_txt .pass_list {padding: 0 10px;}
#pass_txt .pass_list li {clear: both; width: 100%;}
#pass_txt .pass_list li span {font: normal 12px Pretendard;}
#pass_txt .pass_list .pass_line {height: 1px; margin: 10px 0; background-color: rgba(0, 255, 255, 0.8);}
#pass_txt .pass_list li.university {padding: 40px 0 10px; font-size: 18px; color: rgba(0 , 255, 255, 1);}
#pass_txt .pass_list li.university span {font: normal 14px NanumSquareR;}
#pass_txt .pass_list li.final {color: rgba(0, 255, 255, 1);}

#pass_video {margin: auto; width: 1390px; overflow-x: visible; text-align: center; padding: 40px 0 0;}

#pass_lnb {position: absolute; top: 30px; right: 0px;  padding-right:20px; text-align: center; z-index: 200;}
#pass_lnb li {float: left; height: 20px;}
#pass_lnb li a {font: normal 14px/ 20px NanumSquareB; letter-spacing: -0.08em; color: rgba(255, 255, 255, .7);}
#pass_lnb li span {padding: 0 15px; font: normal 12px/ 20px Pretendard;  color: rgba(255, 255, 255, .3);}

#pass_scroll {
  overflow: hidden;
  height: 1080px;
  position: relative;
}

#slideInner {
  transition: all 0.5s ease;
}

.slide {
  width: 840px;
}

.pass_list {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.5;
}

.pass_list .university {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}

.pass_list .final {
  color: #f5e945;
}

.pass_line {
  border-bottom: 1px dashed #666;
  margin: 10px 0;
}

/* 롤링 4열 스타일 */
#pass_area {
  background: url('../banner/img/banner_bg.png') repeat-x;
  color: #fff;
  font-family: 'Pretendard', sans-serif;
  overflow: hidden;
}

#pass_scroll {
  overflow: hidden;
  height: 600px;
  position: relative;
}

#slideInner {
  display: flex;
  width: 100%;
  animation: rollUp 12s linear infinite;
}

.slide {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.width-25 {
  width: 25%;
  box-sizing: border-box;
  padding: 0 10px;
}

.pass_list {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}

.pass_list li {
  line-height: 1.6em;
  font-size: 14px;
}

.pass_list .university {
  font-weight: bold;
  font-size: 18px;
  color: #00d9ff;
}

.pass_list span {
  color: #ccc;
  font-size: 13px;
  margin-left: 5px;
}
@media (max-width: 768px) {

  #pass_img {
    display: none;
  }

  /* pass_title 이미지 반응형 처리 */
  #pass_txt > div:first-child img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  #pass_area {
    height: auto;
    padding: 20px 0;
  }

  #pass {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #pass_img {
    position: static;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    text-align: center;
  }

  #pass_img img {
    width: 100%;
    height: auto;
  }

  #pass_txt {
    position: static;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  #pass_txt #pass_scroll {
    width: 100%;
    height: 600px;
  }

  #slideInner {
    flex-wrap: wrap;
    flex-direction: row;
    animation: none;
  }

  .slide {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
  }

  .width-25 {
    width: 50%;  /* 2열 배치 */
    padding: 10px;
    box-sizing: border-box;
  }

  .pass_list {
    padding: 10px 15px;
  }

  .pass_list li {
    font-size: 13px;
  }

  .pass_list .university {
    font-size: 16px;
  }

  .pass_list span {
    font-size: 12px;
  }


  /* 슬라이드 영역 */
#slideInner {
  display: block; /* 세로 스크롤용 */
  animation: rollUp 10s linear infinite;
}


}


@keyframes rollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); } /* 전체 길이 절반만큼 */
}

