@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
  background: #F8FAFC;
  font-family: 'Noto Sans JP', sans-serif;
}

.privacy-hero {
  background-color: #F8FAFC;
  padding: 80px 1.5rem 60px;
  text-align: center;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #000;
}

.hero-subtitle {
  font-size: 2rem;
  color: #333;
}

.privacy-content {
  background: #fff;
  width: 90%;
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
}

.privacy-content h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  font-weight: 600;
  color: #3B82F6;
}

.update-date {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
  text-align: right;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .privacy-content {
    padding: 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
    .privacy-content h2{
        font-size: .9rem;
    }

    .privacy-content p{
        font-size: .75rem;
    }

}