#active-event-carousel {
  position: relative;
  max-width: 1200px;
  height: 280px;
  margin: 10px auto 0;
  overflow: hidden;
  background-color: #1a1a1a; /* 濃いグレー */
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.active-event-carousel-inner {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.active-event-carousel-item {
  display: flex;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.active-event-carousel-item img {
  width: 40%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.active-event-carousel-caption {
  width: 60%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  position: relative;
}

.active-event-carousel-caption .meta {
  margin: -0.5rem 0;
  font-size: 0.9rem;
  color: #e0e0e0;
}
.active-event-meta {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.4;
}

.active-event-event-title {
  color: #fff;
  font-size: 1.8rem; /* 強調 */
  font-weight: 700;
  margin-bottom: 10px;
}

a {
  color: #4da6ff; /* 青リンク */
  text-decoration: underline;
}

a:hover {
  color: #ff4d4d; /* アクセントの赤 */
}

.entry-button {
  position: absolute;
  bottom: 16px;
  right: 50px;
  padding: 10px 40px;
  background-color: #ff3b3f;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.entry-button:hover {
  background-color: #ff4d4d;
  border-color: #ff4d4d;
  color: #fff;
}

.active-event-botton-meta {
  margin: 4px 0;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.4;
}

.active-event-carousel-control {
  position: absolute;
  top: 50%; /* コンテナの縦中央 */
  transform: translateY(-50%); /* 中央揃え */
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.active-event-carousel-control.prev {
  left: 10px;
}

.active-event-carousel-control.next {
  right: 10px;
}

.active-event-arrow {
  font-size: 24px;
}