:root {
  --privacy-orange: #ff9635;
  --privacy-red: #ea5e53;
  --privacy-blue: #4d769c;
  --privacy-text: #222222;
  --privacy-muted: #4c4b4b;
  --privacy-bg: #f7f5f2;
  --privacy-card: #ffffff;
  --privacy-border: rgba(16, 24, 40, 0.12);
  --privacy-shadow: 0 1.25rem 2.5rem -1.25rem rgba(16, 24, 40, 0.25);
}

.privacy-policy {
  background: var(--privacy-bg);
  color: var(--privacy-text);
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}

.privacy-hero {
  background: linear-gradient(135deg, #ff9635 0%, #ea5e53 55%, rgba(234, 94, 83, 0.15) 100%);
  padding: 9rem 1.5rem 4rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.privacy-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.25), transparent 55%);
  pointer-events: none;
}

.privacy-hero__container {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.privacy-hero__eyebrow {
  font-family: 'Avenir Next', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.privacy-hero__title {
  font-family: 'Avenir Next', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.privacy-hero__lead {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 46rem;
}

.privacy-content {
  padding: 0 1.5rem 1.5rem;
  margin-top: 4rem;
}

.privacy-content__container {
  max-width: 72rem;
  margin: 0 auto;
  background: var(--privacy-card);
  border-radius: 1.5rem;
  box-shadow: var(--privacy-shadow);
  border: 1px solid rgba(255, 150, 53, 0.18);
  padding: 3rem 3rem 2.5rem;
}

.privacy-section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section__title {
  font-family: 'Avenir Next', sans-serif;
  font-size: 1.75rem;
  color: var(--privacy-text);
  margin-bottom: 1rem;
}

.privacy-section__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--privacy-muted);
  margin-bottom: 1rem;
}

.privacy-list {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
  color: var(--privacy-text);
  line-height: 1.8;
}

.privacy-list li {
  margin-bottom: 0.5rem;
}

.privacy-list--ordered {
  list-style: decimal;
}

.privacy-contact {
  background: rgba(255, 150, 53, 0.08);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 150, 53, 0.2);
  color: var(--privacy-text);
}

.privacy-contact a {
  color: var(--privacy-blue);
  text-decoration: none;
  font-weight: 600;
}

.privacy-contact a:hover {
  text-decoration: underline;
}

.privacy-date {
  margin-top: 2.5rem;
  text-align: right;
  color: var(--privacy-muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 7rem 1.25rem 3.5rem;
  }

  .privacy-content__container {
    padding: 2.25rem 1.75rem;
  }

  .privacy-section__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-hero {
    padding: 7rem 1rem 3rem;
  }

  .privacy-hero__title {
    font-size: 1.2rem;
  }

  .privacy-hero__lead {
    font-size: 1rem;
  }

  .privacy-content__container {
    padding: 2rem 1.25rem;
  }

  .privacy-section {
    padding: 1.5rem 0;
  }
}
