/* プライバシーポリシーページ固有のスタイル */

/* ページヘッダー */
.page-header {
  background: var(--gradient-2);
  color: white;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,800 1000,1000"/><polygon fill="rgba(255,255,255,0.03)" points="0,800 1000,600 1000,800 0,1000"/></svg>');
  background-size: cover;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-subtitle {
  font-size: clamp(1rem, 3vw, 1.3rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb i {
  margin: 0 0.5rem;
  font-size: 0.8rem;
}

/* メインコンテンツ */
.main-content {
  padding: 4rem 0;
  background: white;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  padding: 3rem;
  margin-bottom: 2rem;
}

.content-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

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

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.content-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.content-list {
  list-style: none;
  margin: 1.5rem 0;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--light-color);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.content-list i {
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.list-content {
  flex: 1;
}

.list-title {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.list-description {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.highlight-box {
  background: rgba(66, 133, 244, 0.1);
  border: 2px solid rgba(66, 133, 244, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.highlight-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-title i {
  font-size: 1.1rem;
}

.table-responsive {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.info-table th,
.info-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.info-table th {
  background: var(--light-color);
  font-weight: 600;
  color: var(--dark-color);
}

.info-table tr:last-child td {
  border-bottom: none;
}

.contact-info {
  background: var(--gradient-1);
  color: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.contact-item i {
  font-size: 1.1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 60px;
  }

  .content-card {
    padding: 2rem 1.5rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .info-table th,
  .info-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .content-container {
    padding: 0 10px;
  }

  .content-card {
    padding: 1.5rem 1rem;
  }

  .content-list li {
    padding: 0.5rem;
  }

  .highlight-box {
    padding: 1rem;
  }

  .contact-info {
    padding: 1.5rem;
  }
}