@font-face {
  font-family: "MPLUS1m";
  src: url("mplus-1m-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #d9d9d6;
  --fg: #4a4a4a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "MPLUS1m", monospace;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

main {
  width: 100%;
  max-width: 420px;
  padding: 3rem 1.5rem;
}

.logo {
  margin: 0;
  font-weight: 400;
  line-height: 1.1;
}

.logo-line {
  display: flex;
  justify-content: space-between;
  width: 100%;
  -webkit-text-stroke: 0.04em var(--fg);
}

.logo-large {
  font-size: clamp(2.25rem, 12vw, 3.25rem);
  font-weight: 700;
  margin: 0.25em 0;
}

.logo-word {
  display: flex;
}

.logo-small {
  font-size: clamp(0.9rem, 4.5vw, 1.2rem);
}

.menu {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.item {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1rem;
  row-gap: 0.35rem;
}

.item-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.item-en {
  font-size: 1.05rem;
}

.item-jp {
  font-size: 1.05rem;
  opacity: 0.75;
}

.item-desc {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.45;
}

.item-tags {
  align-self: baseline;
  justify-self: end;
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.6;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
