:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: #24333a;
  background: #f5f2eb;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.notice {
  width: min(100%, 560px);
  padding: clamp(28px, 8vw, 56px) clamp(20px, 7vw, 48px);
  border: 1px solid #ddd6c8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 40px rgb(63 58 48 / 8%);
}

.brand,
.status {
  margin: 0 0 12px;
  color: #48677a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status { font-size: 1rem; }

h1 {
  margin: 0;
  font-size: clamp(1.55rem, 7vw, 2.35rem);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.notice > p:last-child {
  margin: 20px 0 0;
  color: #58666d;
  font-size: 1rem;
  line-height: 1.8;
}

@media print {
  body { display: block; padding: 0; background: #fff; }
  .notice { max-width: none; border: 0; box-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
