
/* ── プライバシーポリシー ── */
.privacy-container {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.privacy-page-title {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #888;
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 20px;
  position: relative;
}

.privacy-page-title::after {
  content: 'プライバシーポリシー';
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: #bbb;
  margin-top: 6px;
}

.privacy-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #e0d8d0;
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-heading {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #555;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 2px solid #03AFCD;
}

.privacy-container p {
  font-size: 0.82rem;
  line-height: 1.95;
  color: #777;
  margin-bottom: 10px;
}

.privacy-container p:last-child {
  margin-bottom: 0;
}

.privacy-container a {
  color: #03AFCD;
  text-decoration: none;
  border-bottom: 1px solid #03AFCD;
  transition: color 0.2s, border-color 0.2s;
}

.privacy-container a:hover {
  color: #888;
  border-color: #aaa;
}

@media (max-width: 600px) {
  .privacy-container {
    padding: 40px 16px 60px;
  }
}

