
{# -------------------------------------------------------EVENT------------------------------------------------------- #}

.eventSlide__img{
  width: 100%;
  aspect-ratio: 16/9;
}

.eventSlide__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.eventSlide__box__title {
  color: #000;
  margin-bottom: 10px;
}


.eventSlide__box__tags {
  display: flex;
  flex-wrap: wrap;
}


.eventSlide__box__tag {
  margin-right: 10px;
  margin-bottom: 10px;
}

.eventSlide__box__text {
  color: #000;
}


.eventSlide__date{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.eventSlide__date__datetime{
  color: #000;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
}





.eventSlide__date__status{
  width: 120px;
  padding: 8px 16px;
  text-align: center;
  color: #fff;
  font-weight: bold; 
  border-radius: 4px;
  background: #222;
}
.eventSlide__date__status.open{
  background: var(--secondary, #E84A35);

}


.eventSlide {
  width: 80%;
    margin: auto;
}

.no-image--text {
  color: #000;
  font-weight: bold;
}


.eventSlide__noImg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16/9;
  background: #eee;
}

.eventSlide__li {
  border-radius: 4px;
  background: #FFF;
  width: 45rem;
  flex: 0 0 40rem;
  margin: 20px; /* スライド間の間隔 */
}


.eventSlide__ul {
  list-style: none;
  margin: 0;
  display: flex;
  transition: transform 2s ease;
  padding: 4rem 0;
}


.eventSlide__li img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 500px) {
.eventSlide {
  width: 100%;
  }
}