/*-------------------------------
---section
-------------------------------*/

.section_title {
  margin-top: 6rem;
}

.section_title.b_border::after {
  margin-top: 6rem;
}


/*-------------------------------
---..event_contents
-------------------------------*/

.event_contents {
  display: grid;
  grid-gap: 9rem;
  margin-bottom: 12rem;
}

.event_contents .item.b_border::after {
  margin-top: 6rem;
}

.event_contents .item a {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  grid-gap: 6rem;
}

.event_contents .item .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event_contents .item .image::after {
  content: '';
  display: block;
  width: 100%;
  padding-top: 100%;
}

.event_contents .item .image img {
  position: absolute;
  object-fit: cover;
  width: auto;
  max-width: 100%;
  height: inherit;
  max-height: 100%;
  transition: all 0.3s;
}

@media screen and (min-width: 1025px) {
  .event_contents .item a:hover .image img {
    opacity: 0.7;
  }
}

.event_contents .item .event_date {
  font-size: var(--font-size-date);
  font-weight: 500;
}

.event_contents .item .event_area {
  display: inline-block;
  min-width: 8rem;
  font-size: var(--font-size-tag-area);
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background-color: var(--main-color);
  padding: 0.15rem;
  margin-left: 1rem;
}

.event_contents .item .event_title {
  font-size: var(--font-size-xxl);
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.event_contents .item .event_body {
  font-weight: revert;
  line-height: revert;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /* webkit以外のフォールバック */
  max-height: calc(1.92em * 3);
  margin-bottom: 6rem;
}



