.event_card .card {
  width: 338px;
  height: 498px;
  background: white;
  border-radius: 12px;
  border: 1px solid #c6cacb;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s;
  color: #222c41;
  text-decoration: none;
}

.event_card .card:hover {
  transform: scale(1.05);
  cursor: pointer;
  transition: transform 0.3s;
}

.event_card .new-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 120px;
}

.event_card .card-thumbnail {
  width: 100%;
  height: 190px;
  border-bottom: 1px solid #c6cacb;
}

.event_card .card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event_card .card-body {
  display: flex;
  flex-direction: column;
}

.event_card .card-content {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-bottom: 24px;
}

.event_card .company {
  font-size: 12px;
  line-height: 1.6;
  color: #647397;
  margin-bottom: 12px;
}
.event_card .event-title {
  font-size: 16px;
  line-height: 1.75;
  font-weight: bold;
  margin-bottom: 16px;
  height: 85px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 表示したい行数を指定 */
  overflow: hidden;
}
.event_card .event-details {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.event_card .event-item {
  display: flex;
}

.event_card .event-label {
  width: 40px;
  color: #647397;
  font-weight: 700;
}
.event_card .detail-button-wrapper {
  display: flex;
  justify-content: flex-end;
}

.event_card .detail-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  width: 93px;
  height: 20px;
  background-color: #222c41;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1;
  font-size: 14px;
}

.event_card .detail-icon {
  width: 16px;
  height: 16px;
}
