* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --ink: #1a1a2e;
  --body: #333;
  --muted: #777;
  --faint: #aaa;
  --line: #eee;
  --soft: #f7faff;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
}
body {
  background: #fff;
  font-family: Hiragino Mincho ProN, Yu Mincho, Georgia, serif;
  color: var(--ink);
  font-size: 17px;
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 48px 80px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--accent);
  font-family: Helvetica Neue, sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h1 {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.8;
  margin-bottom: 32px;
}
.rule {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 40px;
}
.date {
  font-size: 15px;
  color: var(--faint);
  font-family: Helvetica Neue, sans-serif;
  margin-bottom: 32px;
  line-height: 1.8;
}
.p {
  font-size: 17px;
  line-height: 2.2;
  color: var(--body);
  margin-bottom: 20px;
}
.p a,
td a {
  color: var(--accent);
  text-decoration: none;
}
.p a:hover,
td a:hover { text-decoration: underline; }
h2 {
  font-size: 18px;
  font-weight: normal;
  color: var(--ink);
  line-height: 1.8;
  margin: 38px 0 14px;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}
.highlight {
  background: var(--soft);
  border-left: 2px solid var(--accent);
  border-radius: 0 4px 4px 0;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 2.1;
  color: var(--ink);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  border-top: 0.5px solid var(--line);
}
th,
td {
  padding: 16px 0;
  border-bottom: 0.5px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  width: 32%;
  color: var(--muted);
  font-weight: normal;
  font-family: Helvetica Neue, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  padding-right: 18px;
}
td {
  color: var(--body);
  font-size: 16px;
  line-height: 2;
}
.sub-note {
  display: inline-block;
  font-size: 14px;
  color: var(--faint);
  line-height: 1.8;
  margin-top: 4px;
}
.legal-footer {
  border-top: 0.5px solid var(--line);
  margin-top: 48px;
  padding-top: 28px;
  text-align: center;
}
.back {
  display: inline-block;
  font-size: 14px;
  color: var(--accent);
  font-family: Helvetica Neue, sans-serif;
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.back:hover { color: var(--accent-dark); }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 13px;
  color: var(--faint);
  font-family: Helvetica Neue, sans-serif;
}
.footer-links a {
  color: var(--faint);
  text-decoration: none;
}
.footer-links a:hover { color: var(--accent); }
.lang-switcher {
  position: fixed;
  top: 12px;
  right: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 3px;
  z-index: 100;
  max-width: 120px;
}
.lang-btn {
  font-size: 10px;
  letter-spacing: 0.05em;
  padding: 4px 7px;
  border: 1px solid #ddd;
  background: rgba(255,255,255,0.92);
  color: #aaa;
  cursor: pointer;
  border-radius: 2px;
  font-family: Helvetica Neue, sans-serif;
}
.lang-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.lang-btn:hover:not(.active) {
  color: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 560px) {
  .wrap { padding: 40px 20px 72px; }
  h1 { font-size: 22px; }
  .p,
  .highlight { font-size: 16px; line-height: 2.05; }
  h2 { font-size: 17px; }
  table,
  tbody,
  tr,
  th,
  td { display: block; width: 100%; }
  tr {
    border-bottom: 0.5px solid var(--line);
    padding: 14px 0;
  }
  th,
  td {
    border-bottom: 0;
    padding: 0;
  }
  th {
    font-size: 12px;
    margin-bottom: 6px;
    padding-right: 0;
  }
  td { font-size: 16px; line-height: 1.95; }
}
