@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--kr-bg);
  color: var(--kr-ink);
  min-height: 100vh;
  line-height: 1.8;
}
main {
  max-width: 840px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}
.legal-kicker {
  color: var(--kr-accent);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 4px;
}
h1 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.lead {
  color: var(--kr-ink-dim);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.note {
  background: rgba(250,204,21,.12);
  border: 1px solid rgba(250,204,21,.36);
  color: #854d0e;
  border-radius: var(--kr-radius-md);
  padding: 12px 14px;
  font-size: 0.88rem;
  margin-bottom: 28px;
}
section {
  border-top: 1px solid var(--kr-hair);
  padding-top: 22px;
  margin-top: 22px;
}
h2 {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2em;
  line-height: 1.45;
  margin-bottom: 10px;
}
h3 {
  font-size: 0.96rem;
  margin: 18px 0 6px;
}
.about-story p {
  color: var(--kr-ink);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.05em;
  line-height: 1.95;
  margin-bottom: 1.2em;
}
.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 12px;
}
.about-card {
  min-width: 0;
  background: var(--kr-surface);
  border: 1px solid var(--kr-hair);
  border-radius: var(--kr-radius-md);
  padding: 16px;
}
.about-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--kr-accent) 12%, transparent);
  color: var(--kr-accent);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}
.about-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.4;
}
.about-card p {
  color: var(--kr-ink-dim);
  font-size: 0.88rem;
  margin-bottom: 0;
}
p, li, td, th {
  font-size: 0.92rem;
}
p, ul, ol, table {
  margin-bottom: 12px;
}
ul, ol {
  padding-left: 1.4em;
}
a {
  color: var(--kr-accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--kr-surface);
  border: 1px solid var(--kr-hair);
  border-radius: var(--kr-radius-md);
  overflow: hidden;
}
th, td {
  border-bottom: 1px solid var(--kr-hair);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
tr:last-child th,
tr:last-child td { border-bottom: none; }
th {
  width: 32%;
  color: var(--kr-ink-dim);
  font-weight: 600;
  background: var(--kr-surface-2);
}
.legal-footer {
  max-width: 840px;
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid var(--kr-hair);
  color: var(--kr-ink-dim);
  font-size: 0.84rem;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 6px;
}
.placeholder {
  color: #854d0e;
  font-weight: 600;
}
@media (max-width: 560px) {
  main { padding: 28px 16px 44px; }
  .about-card-grid {
    grid-template-columns: 1fr;
  }
  .about-story p {
    font-size: 1em;
    line-height: 1.85;
    margin-bottom: 0.9em;
  }
  th, td {
    display: block;
    width: 100%;
  }
  th { border-bottom: none; padding-bottom: 4px; }
  td { padding-top: 4px; }
}
