/* ===========================================
   プライバシーポリシーページ専用スタイル
   privacy.css
   =========================================== */

/* パンくずリスト */
.breadcrumb {
  padding: 16px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '›';
  color: var(--slate-light);
}

.breadcrumb-list a {
  color: var(--text-medium);
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: var(--navy);
}

.breadcrumb-list li[aria-current="page"] {
  color: var(--navy);
  font-weight: 500;
}

/* ページヒーロー */
.page-hero {
  padding: 60px 0 50px;
  text-align: center;
  background: 
    radial-gradient(600px 300px at 30% 0%, rgba(201,169,97,.12), transparent 70%),
    radial-gradient(500px 300px at 70% 100%, rgba(26,35,50,.06), transparent 60%),
    var(--bg-warm);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.page-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0 0;
  letter-spacing: -0.01em;
}

/* ポリシーコンテンツ */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-intro {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.policy-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 16px;
}

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

.policy-date {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: right;
}

.policy-date p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 4px !important;
}

/* ポリシーセクション */
.policy-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

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

.policy-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
  position: relative;
}

.policy-section h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.policy-section p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 12px;
}

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

.policy-note {
  color: var(--text-medium) !important;
  font-weight: 500;
}

/* ポリシーリスト */
.policy-list {
  margin: 16px 0;
  padding-left: 24px;
}

.policy-list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}

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

/* 連絡先ブロック */
.policy-contact {
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 20px 0;
}

.policy-contact-title {
  font-weight: 700;
  color: var(--navy) !important;
  margin-bottom: 8px !important;
}

.policy-contact p {
  margin-bottom: 4px !important;
}

.policy-updated {
  margin-top: 20px !important;
  color: var(--text-light) !important;
  font-size: 13px !important;
}

/* CTAセクション */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(600px 300px at 20% 50%, rgba(201,169,97,.15), transparent 70%),
    radial-gradient(500px 300px at 80% 50%, rgba(201,169,97,.08), transparent 60%);
  pointer-events: none;
}

.cta-block {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-block h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-block p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ナビゲーション現在地表示 */
.nav a.is-current {
  color: var(--navy);
  background: var(--gold-pale);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0 36px;
  }
  
  .policy-intro,
  .policy-section {
    padding: 28px 20px;
  }
  
  .policy-section h2 {
    font-size: 16px;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* ===========================================
   フッタースタイル
   =========================================== */

.footer {
  background: var(--navy-dark);
  color: var(--slate-pale);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer h4 {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.footer p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.75;
}

.footer-tel a {
  color: inherit;
  text-decoration: none;
}

.footer-tel a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  text-align: center;
  font-size: 13px;
  color: var(--slate);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 0 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer h4 {
    margin-bottom: 16px;
  }
}
