/* ============================================================
   privacy-policy.css — プライバシーポリシー
   ============================================================ */

.privacy-policy-page {
  background-color: var(--color-white);
}

.privacy-policy-hero {
  padding-block: 0;
  background-color: var(--color-brand);
  color: var(--color-white);
}

.privacy-policy-hero__inner {
  padding-block: clamp(1.5rem, 3vw, 3rem);
}

.privacy-policy-hero__panel {
  display: grid;
  gap: var(--space-4);
  max-width: 58rem;
  margin-inline: auto;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  border-radius: var(--radius-xl);
  background-color: var(--color-brand);
  box-shadow: 0 22px 56px rgb(0 0 0 / 0.18);
}

.privacy-policy-hero__content {
  display: grid;
  gap: var(--space-4);
  align-content: end;
}

.privacy-policy-hero__eyebrow {
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.34);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 10px rgb(0 0 0 / 0.16);
}

.privacy-policy-hero__title {
  max-width: 11em;
  margin-block-end: 0;
  font-size: clamp(1.6rem, calc(0.8rem + 4vw), 2.8rem);
  font-weight: 900;
  line-height: 1.16;
  text-shadow: 0 1px 12px rgb(0 0 0 / 0.18);
}

.privacy-policy-hero__meta {
  width: fit-content;
  margin: 0;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background-color: rgb(255 255 255 / 0.12);
  color: rgb(255 255 255 / 0.95);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.5;
}

.privacy-policy-section__stack {
  display: grid;
  gap: var(--space-5);
}

.privacy-policy-section__head {
  display: grid;
  gap: 0.25rem;
}

.privacy-policy-section__head .section-head__en {
  justify-content: center;
}

.privacy-policy-copy {
  display: grid;
  gap: var(--space-4);
}

.privacy-policy-copy p {
  margin: 0;
  line-height: 1.95;
}

.privacy-policy-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: privacy-policy;
}

.privacy-policy-list > li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 3rem;
  border-radius: var(--radius-md);
  background-color: rgb(var(--color-brand-rgb) / 0.04);
  line-height: 1.8;
}

.privacy-policy-list > li::before {
  counter-increment: privacy-policy;
  content: counter(privacy-policy) ".";
  position: absolute;
  inset-block-start: 0.95rem;
  inset-inline-start: 1rem;
  color: var(--color-brand);
  font-weight: 900;
}

.privacy-policy-bullets {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-policy-bullets > li {
  position: relative;
  padding-inline-start: 1.05rem;
  line-height: 1.85;
}

.privacy-policy-bullets > li::before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background-color: var(--color-brand-mid);
}

.privacy-policy-contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.privacy-policy-contact-list > div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background-color: rgb(var(--color-brand-rgb) / 0.04);
}

.privacy-policy-contact-list dt {
  color: var(--color-brand);
  font-weight: 900;
  line-height: 1.5;
}

.privacy-policy-contact-list dd {
  margin: 0;
  line-height: 1.85;
}

.privacy-policy-contact-list a {
  color: inherit;
}

.privacy-policy-page .section-head__ja[id] {
  scroll-margin-block-start: calc(var(--header-height) + 1rem);
}

@media (width >= 768px) {
  .privacy-policy-hero__content {
    padding-block-end: 0.25rem;
  }

  .privacy-policy-contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width < 768px) {
  .privacy-policy-page .section-head__ja[id] {
    scroll-margin-block-start: calc(3.5rem + 1rem);
  }
}
