li.el_movieIndex.no-link {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 5px #d3d3d3;
    overflow: hidden;
    background-color: #d5d5d5;
    
    text-align: center;
    transition: background-color var(--transidion);
}

li.el_movieIndex.no-link .no-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    padding-inline: 5px;
    padding-block: 10px;
    font-size: clamp(13px, -1.971px + 1.462vw, 18px);
    letter-spacing: 0.04em;
    line-height: 1.12;
    color: #f1f1f1;;
    transition: min-height 0.5s ease;
}
li.el_movieIndex.no-link {
  pointer-events: none; /* マウスイベント無効 */
  cursor: default; /* カーソルを通常に */
  color: inherit; /* テキスト色変更を防ぐ（必要なら） */
  text-decoration: none;
}

li.el_movieIndex.no-link:hover {
  background: none !important;  /* 背景色の変化防止（必要なら） */
  color: inherit !important;    /* 色の変化防止 */
  text-decoration: none !important; /* 下線など無効化 */
}

/* 作品一覧のボタン------------- */
.el_iconButton {
    max-height: 55px;
}
.bl_movies .el_movieList_buttons {
    align-content: space-evenly;
}