/* 
 * プライバシーポリシーページ専用スタイルシート
 * FIVE STAR CLUB - 高級感あふれるデザイン
 */

/* ===== 基本設定 ===== */
:root {
  --primary-color: #b8860b; /* ゴールド */
  --secondary-color: #1a1a1a; /* 濃いグレー */
  --accent-color: #d4af37; /* 明るいゴールド */
  --text-color: #333333;
  --light-color: #f9f9f9;
  --dark-color: #0a0a0a;
  --gradient-gold: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #b8860b 100%);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ===== プライバシーポリシーページ全体のスタイル ===== */
.privacy-policy-page {
  background-color: var(--light-color);
  color: var(--text-color);
  font-family: 'Noto Serif JP', serif;
  line-height: 1.8;
}

/* ページヘッダー */
.page-header {
  background: var(--gradient-gold);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/pattern.png');
  background-repeat: repeat;
  opacity: 0.1;
}

.page-header h1 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 3.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-header p {
  font-size: 1.2rem;
  color: var(--dark-color);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* コンテンツセクション */
.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.privacy-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
  color: var(--text-color);
}

/* セクションスタイル */
.privacy-section {
  margin-bottom: 60px;
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.privacy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-gold);
}

.privacy-section h2 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.privacy-section p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.privacy-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-section li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.privacy-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* 最終更新日 */
.last-updated {
  text-align: right;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 40px;
  font-size: 0.9rem;
}

/* お問い合わせ窓口 */
.contact-info {
  background-color: rgba(184, 134, 11, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
}

.contact-info h3 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ページナビゲーション */
.page-navigation {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

.page-navigation a {
  display: inline-block;
  padding: 12px 25px;
  background-color: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(184, 134, 11, 0.2);
}

.page-navigation a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-navigation .prev::before {
  content: '←';
  margin-right: 8px;
}

.page-navigation .next::after {
  content: '→';
  margin-left: 8px;
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
  .page-header h1 {
    font-size: 3rem;
  }
  
  .privacy-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .page-header {
    padding: 100px 0 60px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .privacy-section {
    padding: 30px;
  }
  
  .privacy-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 50px;
    margin-bottom: 50px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .privacy-section {
    padding: 25px;
    margin-bottom: 40px;
  }
  
  .privacy-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .privacy-section p,
  .privacy-section li {
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 20px;
  }
  
  .contact-info h3 {
    font-size: 1.3rem;
  }
  
  .page-navigation {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-navigation a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .privacy-section {
    padding: 20px;
  }
  
  .privacy-section h2 {
    font-size: 1.3rem;
  }
  
  .privacy-intro {
    font-size: 1rem;
  }
}
