.poster-list{
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    /* gap: 12px; */

    /* justify-content: space-between; */
}
.poster-item{
    width: 100%;
    display: flex;
    align-items: center;
    /* flex-direction: column; */
    justify-content: space-between;
    border-bottom: 1px solid #666;
    gap: 10px;
    padding: 16px 0;
}
.poster-item img{
    width: 100%;
}
/* .poster-heading{
  font-size: 1.2rem;
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
} */
.poster-number{
    font-size: 1.2rem;
    position: relative;
  font-size: 2.5rem;
  color: var(--poster);
padding: 0 10px;
font-weight: 500;
}
.poster-number:after{
    position: absolute;
  content: "";
  display: inline-block;
  background-color: var(--poster);
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}
.poster-title{
    display: flex;
    flex-direction: column;
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}
.poster-pdf a{
    width: 44px;  /* クリックしやすいサイズを確保 */
    height: 44px;
    transition: background-color 0.2s;
    /* display: block; */
}
.poster-pdf a:hover{
    opacity: 0.6;
}
.poster .material-symbols-outlined{
    padding: 0 10px;
}


@media (max-width: 992px) {
   .poster-item{
    width: 100%;
} 
}