@charset "utf-8";

.privacy-main {
  background: #fafcfe;
}

.privacy-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-accent);
  padding-top: 80px;
  color: #fff;
}

.privacy-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.privacy-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 25s infinite ease-in-out;
}

.privacy-hero-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  top: -200px;
  left: -200px;
}

.privacy-hero-shape.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  bottom: -150px;
  right: -150px;
  animation-delay: 8s;
}

.privacy-hero-shape.shape-3 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 15s;
}

.privacy-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 2rem;
  max-width: 760px;
}

.privacy-hero-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.privacy-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: 'Outfit', 'Zen Kaku Gothic New', sans-serif;
  font-weight: bold;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.privacy-hero-lead {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-weight: bold;
}

.privacy-content {
  padding: 5rem 0;
  background: #fff;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-policy {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}

.privacy-intro {
  font-size: 1.125rem;
  color: #334155;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-article-title {
  font-size: 1.375rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--color-accent);
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.privacy-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  color: #334155;
  line-height: 1.7;
}

.privacy-list li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.privacy-subsection {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(91, 181, 237, 0.03);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}

.privacy-subsection-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.privacy-subsection p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}

.privacy-contact-info {
  background: rgba(91, 181, 237, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.privacy-contact-item {
  margin-bottom: 0.75rem;
  color: #334155;
  font-size: 0.95rem;
}

.privacy-contact-item:last-child {
  margin-bottom: 0;
}

.privacy-contact-item strong {
  color: #0f172a;
  font-weight: bold;
}

.privacy-contact-item a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-contact-item a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.privacy-effective-date {
  text-align: right;
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .privacy-hero {
    min-height: 40vh;
    padding: 80px 1.5rem 60px;
  }

  .privacy-hero-title {
    font-size: 2rem;
  }

  .privacy-content {
    padding: 3rem 0;
  }

  .privacy-container {
    padding: 0 1.5rem;
  }

  .privacy-policy {
    padding: 2rem;
    border-radius: 1rem;
  }

  .privacy-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .privacy-article-title {
    font-size: 1.25rem;
  }

  .privacy-list li {
    padding-left: 1.5rem;
  }

  .privacy-subsection {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .privacy-hero {
    min-height: 35vh;
    padding: 80px 1rem 40px;
  }

  .privacy-container {
    padding: 0 1rem;
  }

  .privacy-policy {
    padding: 1.75rem;
  }

  .privacy-article-title {
    font-size: 1.125rem;
    padding-left: 0.75rem;
  }

  .privacy-list li {
    padding-left: 1.25rem;
    font-size: 0.9rem;
  }

  .privacy-contact-info {
    padding: 1.25rem;
  }
}
