/* トップイベント */
@media screen and (max-width: 768px) {
  .event-article {
    padding-top: 10%;
  }
}

.event-article h1 {
  padding-left: 10px;
  position: relative;
  color: #333;
  text-shadow: 0 0 2px white;
}

.event-article h1:before {
  content: "";
  position: absolute;
  background: rgba(0, 217, 255, 1);
  opacity: 0.6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 45%;
  /* border: dashed 1px white; */
  left: -5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

@media screen and (max-width: 400px) {
  .event-article h1 {
    font-size: 20px;
  }

  .event-article h1:before {
    width: 35px;
    height: 35px;
  }
}

/* swiperスタート */
.event-article{
  max-width: 1500px;
  margin: auto;
}

.swiper {
  padding-top: 5%;
  padding-bottom: calc(5% + 50px);
}

.swiper-slide {
}

.swiper-slide img {
  width: 100%;
}

.slide-invisible {
  opacity: 0;
}

.swiper-slide-active div {
  transform: scale(1.05);
  background-color:#eaf8ff;
}

/* swiperエンド */

.event-title {
  line-height: 1.5;
  color: black;
  font-weight: lighter;
}
.event-title.event-3size {
  font-size: 1.4rem;
}
.event-title.event-element {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-top: 8px;
  height: 7em+8px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}