:root {
  color-scheme: light;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  color: #222222;
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.site-directory {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 64px 0;
}

.site-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #dddddd;
}

.site-header__eyebrow {
  margin: 0 0 4px;
  color: #767676;
  font-size: 0.85rem;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.2;
}

h2 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.site-header p:last-child {
  margin-bottom: 0;
  color: #666666;
}

.event-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-list a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  color: inherit;
  border-top: 1px solid #dddddd;
  text-decoration: none;
}

.event-list li:last-child a {
  border-bottom: 1px solid #dddddd;
}

.event-list a:hover .event-list__title,
.event-list a:focus-visible .event-list__title {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.event-list__title {
  font-weight: 700;
}

.event-list__description {
  color: #767676;
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 520px) {
  .site-directory {
    padding-top: 40px;
  }

  .event-list a {
    flex-direction: column;
    gap: 4px;
  }

  .event-list__description {
    text-align: left;
  }
}
