/* kv */
.kv-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 545px;
  background-image: url("../images/event_bg.jpg");
  background-position: center;
  background-size: cover;
}
.kv-wrapper {
  color: #fff;
  text-align: center;
}
.kv-subtitle {
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0px 0px 4px #000000;
}
.kv-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0px 4px 30px #000000;
}

@media (max-width: 767px) {
  .kv-section {
    height: 240px;
    background-image: url("../images/event_bg_sp.jpg");
  }
  .kv-wrapper {
    text-align: center;
  }
  .kv-subtitle {
    margin: 0 0 8px;
    font-size: 0.75rem;
  }
  .kv-title {
    font-size: 1.25rem;
  }
}

/* イベントセクション*/
.event-section {
  padding: 120px 30px;
}
.event-section-inner {
  max-width: 1080px;
  padding: 0;
  margin: 0 auto;
}
.event-title-wrapper {
  margin: 0 0 48px;
}
.event-subtitle {
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #0f3e8f;
}
.event-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.article-list {
  padding: 0;
  list-style: none;
}
.article-list-item {
  border-bottom: solid 1px #cecece;
}
.article-list-item:first-child {
  border-top: solid 1px #cecece;
}
.article-list-item > a {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 0;
  text-decoration: none;
}
.article-list-item > a:hover {
  /* 少し暗く */
  background-color: #f0f0f0;
}
.article-image {
  flex: 0 1 284px;
  height: 100%;
}
.article-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-content {
  display: flex;
  flex: 0 1 60%;
  flex-direction: column;
  justify-content: center;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 18px;
}
.article-meta .article-date {
  font-size: 1rem;
  font-weight: bold;
  color: #232323;
}
.article-meta .article-category {
  padding: 0 0.5em;
  font-size: 0.9rem;
  font-weight: normal;
  color: #1c1d1f;
  background-color: #fff;
  border: 1px solid #0000001f;
}
.article-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 0 0 24px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0f3e8f;
  text-align: justify;
}
.article-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 1rem;
  font-weight: bold;
  color: #5f6b7d;
  text-align: justify;
}
@media (max-width: 767px) {
  .event-section {
    padding: 60px 20px 10px;
  }
  .event-title-wrapper {
    margin: 0 0 16px;
  }
  .event-subtitle {
    margin: 0 0 7px;
    font-size: 1rem;
  }
  .event-title {
    font-size: 1.25rem;
  }
  .article-list-item > a {
    padding: 30px 0;
  }
  .article-image {
    flex: 0 1 38%;
    padding: 1rem 0 0;
  }
  .article-content {
    flex: 0 1 60%;
  }
  .article-meta {
    margin: 0 0 10px;
  }
  .article-meta .article-date {
    font-size: 0.8rem;
  }
  .article-meta .article-category {
    font-size: 0.75rem;
  }
  .article-title {
    margin: 0 0 16px;
    margin: 0 0 5px;
    font-size: 1rem;
    font-weight: normal;
  }
  .article-description {
    -webkit-line-clamp: 4;
    line-clamp: 4;
    font-size: 0.75rem;
    font-weight: normal;
    color: #b0b0b1;
  }
}
