/*--------------------------------------------------------------
# Privacy Policy Page Specific Styles
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Privacy Policy Hero Section
--------------------------------------------------------------*/
.privacy-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 200px 0 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.privacy-hero .hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: #ffffff;
  width: 100%;
}

.privacy-hero .hero-title {
  margin-bottom: 20px;
}

.privacy-hero .title-en {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 400;
  letter-spacing: 8px;
  margin-bottom: -15px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.privacy-hero .title-jp {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 4px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.privacy-hero .hero-text {
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

/*--------------------------------------------------------------
# Privacy Policy Content Section
--------------------------------------------------------------*/
.privacy-content {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
}

.policy-wrapper {
  max-width: 1140px; /* Bootstrap5のcontainer-xlサイズ */
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.policy-section {
  margin-bottom: 50px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #00a859;
  position: relative;
}

.policy-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #28a745;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 20px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section strong {
  color: #333333;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Policy Lists
--------------------------------------------------------------*/
.policy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.policy-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #00a859;
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Contact Info Box
--------------------------------------------------------------*/
.contact-info {
  background: #f8f9fa;
  border-left: 4px solid #00a859;
  padding: 25px 30px;
  margin: 25px 0;
  border-radius: 0;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 15px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info strong {
  display: block;
  color: #333333;
  font-size: 16px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .policy-wrapper {
    max-width: 960px; /* Bootstrap5のcontainer-lgサイズ */
  }
}

@media (max-width: 991px) {
  .policy-wrapper {
    max-width: 720px; /* Bootstrap5のcontainer-mdサイズ */
    padding: 40px 30px;
  }
  
  .privacy-hero .title-en {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 60px 0;
  }
  
  .policy-wrapper {
    margin: 0 20px;
    padding: 30px 25px;
  }
  
  .policy-section .section-title {
    font-size: 20px;
  }
  
  .privacy-hero .title-en {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .policy-wrapper {
    margin: 0 15px;
    padding: 25px 20px;
  }
  
  .policy-section .section-title {
    font-size: 18px;
  }
  
  .policy-section p,
  .policy-list li {
    font-size: 14px;
  }
  
  .privacy-hero .title-en {
    font-size: 50px;
    letter-spacing: 4px;
  }
  
  .privacy-hero .title-jp {
    font-size: 18px;
  }
}