@media screen and (max-width: 767px) {
  .p-event__nav-list {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-event__nav-list {
    position: relative;
  }
  .p-event__nav-list::before {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 4rem);
    height: 1px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    background-color: #D5CEC8;
  }
}
@media screen and (max-width: 767px) {
  .p-event__item:first-child .p-event__article-link {
    padding-top: 0;
  }
}
.p-event__article-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5rem;
  padding: 3rem 0;
  border-bottom: 1px solid #D5CEC8;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-event__article-link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .p-event__article-link {
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.p-event__article-image {
  position: relative;
  flex-shrink: 0;
  width: 34.7619047619%;
  aspect-ratio: 365/242;
}
.p-event__article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-event__article-image figcaption {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  top: auto;
  right: auto;
  bottom: 1rem;
  left: 1rem;
  padding: 0.2rem 1.2rem;
  border: 1px solid #111111;
  border-radius: 3rem;
  color: #111111;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-event__article-image figcaption {
    display: none;
  }
}
.p-event__article-category {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-event__article-category {
    margin-bottom: 0.8rem;
  }
}
.p-event__article-category > li {
  display: inline-block;
  padding: 0.2rem 1.2rem;
  border: 1px solid #887D7D;
  border-radius: 3rem;
  background-color: #fff;
  color: #887D7D;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-event__article-category > li {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.p-event__article-date {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-event__article-date {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-event__article-title {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-event__article-title {
    font-size: 1.5rem;
  }
}