/* ============================================================
   PRIVACY PAGE — プライバシーポリシー
   ============================================================ */

/* Hero band */
.privacy-hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 200px 0 100px;
  overflow: hidden;
}
.privacy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(155,123,85,0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(45,74,62,0.15) 0%, transparent 100%);
  pointer-events: none;
}
.privacy-hero-text {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.privacy-hero-text .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.privacy-hero-text .label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.privacy-hero h1 {
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}
.privacy-hero p {
  font-family: var(--font-ja);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Content area */
.privacy-content {
  padding: var(--sp-xl) 0;
  background: var(--bg);
}
.privacy-content .container {
  max-width: var(--container-sm);
}
.privacy-content .intro {
  font-family: var(--font-ja);
  font-size: 0.95rem;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto 80px;
  max-width: 720px;
}

.privacy-article {
  position: relative;
  padding: 48px 0 48px 96px;
  border-bottom: 1px solid var(--border-light);
}
.privacy-article:last-of-type { border-bottom: none; }

.privacy-num {
  position: absolute;
  left: 0;
  top: 52px;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.privacy-article h2 {
  font-family: var(--font-ja);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 0 0 20px;
}
.privacy-article p {
  font-family: var(--font-ja);
  font-size: 0.9rem;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.privacy-article p:last-child { margin-bottom: 0; }

.privacy-article ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.privacy-article li {
  font-family: var(--font-ja);
  font-size: 0.9rem;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.privacy-article li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.privacy-date {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-align: right;
  color: var(--text-muted);
  margin-top: 64px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .privacy-hero { padding: 140px 0 60px; }
  .privacy-content { padding: 80px 0; }
  .privacy-content .intro { margin-bottom: 56px; }
  .privacy-article { padding: 36px 0 36px 64px; }
  .privacy-num { top: 38px; font-size: 1.2rem; }
}
