/* ===========================
   さきほこる - privacy.css
   プライバシーポリシー専用スタイル
   =========================== */

/* ===========================  PAGE HERO  =========================== */
.pp-hero {
  position: relative;
  padding: 140px 0 72px;
  background: var(--color-forest);
  text-align: center;
  overflow: hidden;
}

.pp-hero::before {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  background: var(--color-sage);
  border-radius: 50%;
  filter: blur(72px);
  top: -120px;
  right: -80px;
  opacity: .35;
  pointer-events: none;
}

.pp-hero::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--color-sun);
  border-radius: 50%;
  filter: blur(72px);
  bottom: -60px;
  left: -60px;
  opacity: .25;
  pointer-events: none;
}

.pp-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--color-mint);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s ease both;
}

.pp-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  animation: fadeUp .8s .1s ease both;
}

/* ===========================  BODY  =========================== */
.pp-body {
  padding: 80px 0 120px;
  background: var(--color-bg);
}

.pp-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.pp-intro {
  font-size: 1rem;
  color: var(--color-mid);
  line-height: 2;
  padding: 32px 36px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-sage);
  margin-bottom: 56px;
  box-shadow: var(--shadow-soft);
}

/* ===========================  BLOCKS  =========================== */
.pp-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(42, 77, 26, .10);
}

.pp-block:last-of-type {
  border-bottom: none;
}

.pp-block h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--color-forest);
}

.pp-block p {
  font-size: .95rem;
  color: var(--color-mid);
  line-height: 2;
  margin-bottom: 12px;
}

.pp-block p:last-child {
  margin-bottom: 0;
}

.pp-block ul {
  margin: 12px 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-block ul li {
  font-size: .92rem;
  color: var(--color-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.8;
  list-style: none;
}

.pp-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-mint);
}

/* ===========================  TABLE  =========================== */
.pp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: .92rem;
}

.pp-table th,
.pp-table td {
  padding: 12px 16px;
  border: 1px solid rgba(42, 77, 26, .15);
  line-height: 1.8;
  color: var(--color-mid);
}

.pp-table th {
  background: rgba(42, 77, 26, .06);
  color: var(--color-forest);
  font-weight: 600;
  white-space: nowrap;
  width: 140px;
  text-align: left;
}

/* ===========================  CONTACT LINK  =========================== */
.pp-contact-link {
  margin-top: 12px;
}

.pp-contact-link a {
  color: var(--color-sage);
  border-bottom: 1px solid currentColor;
  transition: color var(--transition);
}

.pp-contact-link a:hover {
  color: var(--color-forest);
}

/* ===========================  DATE  =========================== */
.pp-date {
  font-size: .82rem;
  color: var(--color-light-txt);
  line-height: 2;
  text-align: right;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(42, 77, 26, .10);
}

/* ===========================  RESPONSIVE  =========================== */
@media (max-width: 768px) {
  .pp-hero { padding: 120px 0 56px; }
  .pp-intro { padding: 24px 20px; margin-bottom: 40px; }
  .pp-block { margin-bottom: 36px; padding-bottom: 36px; }
  .pp-table th { width: 100px; }
  .pp-date { text-align: left; }
}