/*----------------------------------------
 lineup
----------------------------------------*/

.lineup_slide{
width: 100%;
display: flex;
justify-content: flex-start;
padding: 0 0 40px 0;
}

.lineup_slide div.slide_box{
padding: 0 20px;
}

.lineup_slide .slide-arrow {
bottom: 0;
position: absolute;
width: 40px;
height: 40px;
font-size: 2rem;
line-height: 40px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #fff;
border: 1px solid #32a9b7;
border-radius: 50%;
color: #32a9b7;
transition : all 0.5s ease 0s;
}

.lineup_slide .slide-arrow:hover {
background-color: #32a9b7;
color: #fff;
}

.lineup_slide .prev-arrow {
left: 50%;
transform: translateX(calc(-50% - 30px));
}

.lineup_slide .next-arrow {
left: 50%;
transform: translateX(calc(-50% + 30px));
}


div.slick-track>:has(.slide_none){
display: none !important;
}