* {
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    background: #F0F0F0;
    background-size: cover;
    width: 100%;
    height: 100%;
    color: #111111;
}
:root {
  --accent: #203E4B;
  --muted: #6b7280;
  --border: #e5e7eb;
}

main {
  font-family: "DotGothic16", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 760px;
  padding: 8vh 24px 10vh;
  margin: 0 auto;
}

header {
  margin-bottom: 6vh;
}

.brand {
  font-size: clamp(18px, 2vw, 20px);
  letter-spacing: .04em;
  color: var(--muted);
}

h1 {
  margin: .25rem 0 0;
  font-size: clamp(32px, 64px, 64px);
  line-height: 1.2;
  letter-spacing: 0.5em;
}

.list {
  margin-top: 6vh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.entry {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 8px 0;
  outline: none;
  transition: color .2s ease, letter-spacing .2s ease;
}

.entry .meta {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
}

.entry .title {
  display: block;
  margin-top: 4px;
  font-size: clamp(16px, 32px, 32px);
  line-height: 1.5;
  position: relative;
}

.entry .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.96);
  transform-origin: left;
  transition: opacity .2s ease, transform .2s ease;
}

.entry:hover, .entry:focus-visible {
  color: var(--accent);
  letter-spacing: .01em;
}

.entry:hover .title::after, .entry:focus-visible .title::after {
  opacity: .85;
  transform: scaleX(1);
}

.entry:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 15%, transparent);
  border-radius: 8px;
}

.row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
}

footer {
  margin-top: 8vh;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
