/* ============================================================
   recruit-privacy.css — 採用 プライバシーポリシーページ
   ============================================================ */


/* ============================
   ヒーロー（背景画像）
============================ */
.rv-hero--privacy {
  background: center center / cover no-repeat;
  position: relative;
}

.rv-hero--privacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(224, 240, 244, 0.5);
  border-radius: inherit;
}

.rv-hero--privacy .rv-hero-title {
  position: relative;
  z-index: 1;
}
.rc-breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
}

.rc-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: #999;
}

.rc-breadcrumb ol li:not(:last-child)::after {
  content: '>';
  margin-left: 4px;
  color: #ccc;
}

.rc-breadcrumb ol li a {
  color: #666;
  text-decoration: none;
}

.rc-breadcrumb ol li a:hover {
  text-decoration: underline;
}

/* ============================
   本文セクション
============================ */
.rp-section {
  background: #fff;
  padding: 64px 0 80px;
}

.rp-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 14px;
  color: #333;
  line-height: 1.9;
}

.rp-container p {
  margin: 0 0 20px;
}


/* ============================
   見出し
============================ */
.rp-heading {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px;
  line-height: 1.5;
}

.rp-heading--mt {
  margin-top: 64px;
}

.rp-subheading {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 12px;
  line-height: 1.5;
}


/* ============================
   リスト
============================ */
.rp-list {
  margin: 0 0 20px;
  padding-left: 1.5em;
}

.rp-list li {
  margin-bottom: 4px;
  line-height: 1.9;
}

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


/* ============================
   小さいテキスト（URL等）
============================ */
.rp-small {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
  word-break: break-all;
  margin-bottom: 24px;
}


/* ============================
   お問い合わせボックス
============================ */
.rp-contact {
  background: #fff;
  padding: 0 0 96px;
}

.rp-contact-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  border: 1px solid #ccc;
  background: #f5f5f5;
  padding: 28px 48px;
}

.rp-contact-label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  flex-shrink: 0;
  padding-top: 2px;
}

.rp-contact-info p {
  font-size: 13px;
  color: #333;
  line-height: 1.85;
  margin: 0;
}


/* ============================
   RESPONSIVE — Tablet (≤ 1024px)
============================ */
@media (max-width: 1024px) {
  .rp-section {
    padding: 48px 0 64px;
  }

  .rp-heading {
    font-size: 18px;
  }

  .rp-subheading {
    font-size: 14px;
  }

  .rp-container {
    font-size: 13px;
  }
}


/* ============================
   RESPONSIVE — Mobile (≤ 640px)
============================ */
@media (max-width: 640px) {
  .rp-section {
    padding: 40px 0 48px;
  }

  .rp-container {
    padding: 0 16px;
    font-size: 13px;
  }

  .rp-heading {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .rp-heading--mt {
    margin-top: 48px;
  }

  .rp-subheading {
    font-size: 13px;
    margin-top: 24px;
  }

  .rp-contact {
    padding: 0 16px 64px;
  }

  .rp-contact-inner {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .rp-small {
    font-size: 11px;
  }
}
