/*
 * 404.css — wakayama.ninja 404ページ専用スタイル
 *
 * shared.css を先に読み込んでから重ねる。
 * CSS変数とnav/footerのスタイルは shared.css 側で定義済み。
 */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", "Avenir", "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--wa-ink);
  background-color: var(--wa-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- layout ---- */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  width: 100%;
}

.code {
  font-size: 5rem;
  font-weight: 700;
  color: var(--wa-orange);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.message {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sub {
  font-size: 0.9rem;
  color: var(--wa-gray);
  margin-bottom: 2rem;
}

.back-link {
  display: inline-block;
  color: var(--wa-orange-dark);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--wa-orange);
  padding-bottom: 1px;
}

.back-link:hover {
  color: var(--wa-orange);
}
