/* ===== PRIVACY POLICY ===== */
.privacy-section {
  padding: 140px 0;
  background-color: #000;
  color: #fff;
}

.privacy-content {
  max-width: 800px;
  margin: 60px auto 0;
  line-height: 2;
  color: #ccc;
}

.privacy-content h3 {
  color: #ff5722; /* オレンジのアクセント */
  font-size: 1.3rem;
  margin: 50px 0 20px;
  border-left: 3px solid #ff5722;
  padding-left: 15px;
}

.privacy-content p, 
.privacy-content ul {
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.privacy-content ul {
  padding-left: 20px;
}

.privacy-content ul li {
  list-style: disc;
  margin-bottom: 10px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 4px;
  margin-top: 60px;
}

.contact-info p {
  margin-bottom: 5px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .privacy-section {
    padding: 80px 0;
  }
  .privacy-content h3 {
    font-size: 1.1rem;
  }
}