:root {
  --trust-color-background: #ffffff;
  --trust-color-surface: rgba(255, 255, 255, 0.94);
  --trust-color-surface-soft: #f6f6f3;
  --trust-color-border: rgba(17, 24, 39, 0.08);
  --trust-color-text: #1f2937;
  --trust-color-muted: #667085;
  --trust-display-font: "DIN Alternate", "DIN 2014", "Arial Narrow",
    "Helvetica Neue", Arial, sans-serif;
  --trust-body-font: Inter, "Helvetica Neue", "Hiragino Sans", "Meiryo",
    sans-serif;
  --trust-shell: 960px;
  --trust-shell-narrow: 760px;
}

.page-trust,
.page-trust * {
  box-sizing: border-box;
}

body.page-trust {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf9f5 52%, #ffffff 100%);
  color: var(--trust-color-text);
  font-family: var(--trust-body-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-trust a {
  color: inherit;
}

.page-trust .trust-shell {
  max-width: var(--trust-shell);
  margin: 0 auto;
}

.page-trust .trust-shell--narrow {
  max-width: var(--trust-shell-narrow);
}

.page-trust .trust-hero,
.page-trust .trust-section {
  padding-left: 30px;
  padding-right: 30px;
}

.page-trust .trust-hero {
  padding-top: 40px;
  padding-bottom: 22px;
}

.page-trust .trust-section {
  padding-top: 22px;
  padding-bottom: 28px;
}

.page-trust .trust-section--compact {
  padding-top: 8px;
  padding-bottom: 36px;
}

.page-trust h1,
.page-trust h2 {
  margin: 0;
  font-family: var(--trust-display-font);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.page-trust h1 {
  font-size: clamp(34px, 4.8vw, 50px);
  line-height: 1.06;
}

.page-trust h2 {
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.12;
}

.page-trust p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--trust-color-muted);
}

.page-trust p + p {
  margin-top: 14px;
}

.page-trust .trust-lead {
  margin-top: 14px;
}

.page-trust .trust-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(246, 246, 243, 0.92);
}

.page-trust .trust-grid {
  display: grid;
  gap: 18px;
}

.page-trust .trust-grid--stack {
  grid-template-columns: 1fr;
}

.page-trust .trust-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--trust-color-border);
  background: var(--trust-color-surface);
}

.page-trust .trust-card h2 {
  margin-bottom: 12px;
}

.page-trust .trust-definition-list {
  margin: 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.page-trust .trust-definition-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.page-trust .trust-definition-row dt {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--trust-color-muted);
}

.page-trust .trust-definition-row dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--trust-color-text);
}

.page-trust .trust-definition-row dd a,
.page-trust .trust-link-list a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-trust .trust-link-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 4px;
}

.page-trust .trust-link-list a {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(31, 41, 55, 0.82);
}

@media (max-width: 820px) {
  .page-trust .trust-hero,
  .page-trust .trust-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-trust .trust-hero {
    padding-top: 30px;
    padding-bottom: 18px;
  }

  .page-trust p {
    font-size: 15px;
    line-height: 1.85;
  }

  .page-trust .trust-card {
    padding: 20px;
  }

  .page-trust .trust-definition-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
