/* ========================================
   Privacy Policy Page
   ======================================== */

/* ── Hero ── */
.pp-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  overflow: hidden;
}

.pp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(180, 0, 0, 0.18) 0%, transparent 70%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.pp-hero__overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.015) 2px,
    rgba(255, 255, 255, 0.015) 4px
  );
  pointer-events: none;
}

.pp-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pp-hero__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  letter-spacing: 0.3em;
  color: #e53935;
  margin-bottom: 12px;
}

.pp-hero__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

/* ── Body ── */
.pp-body {
  background: #f5f5f5;
  padding: 80px 0 100px;
}

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

/* ── Intro ── */
.pp-intro {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

/* ── Section ── */
.pp-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid #e0e0e0;
}

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

.pp-section__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e53935;
}

.pp-section__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #e53935;
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Table ── */
.pp-table {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.pp-table__row {
  display: flex;
  border-bottom: 1px solid #e8e8e8;
}

.pp-table__row:last-child {
  border-bottom: none;
}

.pp-table__label {
  width: 140px;
  flex-shrink: 0;
  padding: 14px 18px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pp-table__value {
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

/* ── Text & List ── */
.pp-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 14px;
}

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

.pp-text--note {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fff3f3;
  border-left: 3px solid #e53935;
  border-radius: 0 4px 4px 0;
  color: #333;
  font-weight: 700;
}

.pp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
}

.pp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: #e53935;
}

/* ── Link ── */
.pp-link {
  color: #e53935;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.pp-link:hover {
  opacity: 0.7;
}

/* ── Contact Box ── */
.pp-contact {
  background: #111;
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.pp-contact__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.pp-contact__tel,
.pp-contact__line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.pp-contact__tel i { color: #66bb6a; }
.pp-contact__line i { color: #06c755; font-size: 1.2rem; }

.pp-contact__tel:hover { color: #aaa; }
.pp-contact__line:hover { color: #aaa; }

.pp-contact__hours {
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.05em;
}

/* ── Date ── */
.pp-date {
  text-align: right;
  font-size: 0.8rem;
  color: #999;
  margin-top: 48px;
  letter-spacing: 0.05em;
}

/* ── Mobile ── */
@media (max-width: 599px) {
  .pp-hero {
    height: 260px;
  }

  .pp-body {
    padding: 48px 0 72px;
  }

  .pp-table__row {
    flex-direction: column;
  }

  .pp-table__label {
    width: 100%;
    padding: 10px 14px;
  }

  .pp-table__value {
    padding: 10px 14px;
  }

  .pp-contact {
    padding: 20px;
  }
}
