@charset "UTF-8";
.event-cardWrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 80px;
}
.event-cardWrap .c-card__image {
  aspect-ratio: 480/270;
}
.event-cardWrap .c-card__title {
  margin-bottom: 16px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "MS PMincho", "MS 明朝", serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 140%;
}
.event-cardWrap .c-card__date {
  margin-bottom: 16px;
  color: #0081A0;
  font-family: "Cormorant Infant", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 120%;
}
.event-cardWrap .c-card p {
  line-height: 1.4;
}
.l-content:has(.event-article) {
  padding-top: 64px;
}

.event-article__header {
  margin-bottom: 24px;
}
.event-article__title {
  margin-bottom: 16px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "MS PMincho", "MS 明朝", serif;
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 140%;
}
.event-article__date {
  color: #0081A0;
  font-family: "Cormorant Infant", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, sans-serif;
  font-weight: 600;
  line-height: 120%;
}
.event-article__body > :where(*) + :where(*) {
  margin-top: 64px;
}

/* ▼hover挙動 */
/* ▼タブレット用デザインとして付け足すデザイン */
/* ▼モバイルのみ付け足すデザイン */
@media screen and (max-width: 767.98px) {
  .l-pagetitle__inner {
    align-self: start;
  }
  .event-cardWrap {
    grid-template-columns: minmax(0, 1fr);
  }
  .l-content:has(.event-article) {
    padding-top: 32px;
  }
  .event-article__title {
    font-size: 3.2rem;
  }
  .event-article__body > :where(*) + :where(*) {
    margin-top: 48px;
  }
}