:root {
  color-scheme: light dark;
  font-family:
    "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: #4a4038;
  background: #f7ecdf;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
main {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 40px 0 80px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 56px;
}
a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-underline-offset: 4px;
}
h1,
h2 {
  color: #2b2622;
  line-height: 1.2;
}
h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.1rem, 8vw, 4rem);
  letter-spacing: -0.045em;
}
h2 {
  margin: 48px 0 12px;
  font-size: 1.2rem;
}
p,
li {
  line-height: 1.75;
}
ul {
  padding-left: 1.2rem;
}
.summary {
  margin: 20px 0 48px;
  color: #5b8c7b;
  font-weight: 600;
}
.notice {
  border-left: 4px solid #c9714b;
  background: color-mix(in srgb, #fff 56%, transparent);
  padding: 16px 18px;
}
.contact {
  margin-top: 24px;
  border: 2px solid #2b2622;
  border-radius: 14px;
  padding: 18px;
}
footer {
  margin-top: 64px;
  border-top: 1px solid color-mix(in srgb, #2b2622 25%, transparent);
  padding-top: 20px;
  color: #8a7e71;
  font-size: 0.875rem;
}
@media (prefers-color-scheme: dark) {
  :root {
    color: #d9d0c4;
    background: #23201d;
  }
  h1,
  h2 {
    color: #f3ede4;
  }
  .notice {
    background: #2e2a26;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
  }
}
