/* ============================================================
   プライバシーポリシー専用スタイル
   ============================================================ */

/* ---------- Page Hero ---------- */
.policy-hero {
  background: var(--charcoal);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.policy-hero .section-label {
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.policy-hero-en {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin: 0;
}

.policy-hero-jp {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.4em;
  margin-top: 0.5rem;
}

.policy-hero-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 1.5rem;
  opacity: 0.6;
}

/* ---------- Main Content ---------- */
.policy-main {
  padding: 100px 0 120px;
}

.policy-article {
  max-width: 800px;
  margin: 0 auto;
}

.policy-lead {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--text-sub);
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

/* ---------- Policy Sections ---------- */
.policy-section {
  margin-bottom: 3.5rem;
}

.policy-section h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.policy-section h2::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: var(--gold);
  flex-shrink: 0;
}

.policy-section p {
  font-size: 0.9rem;
  line-height: 2.1;
  color: var(--text-sub);
  margin-bottom: 1rem;
}

.policy-section ul {
  padding: 0;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.policy-section ul li {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-sub);
  padding-left: 1.4em;
  position: relative;
}

.policy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Table ---------- */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.policy-table tr {
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.policy-table th {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-align: left;
  padding: 0.9rem 1.5rem 0.9rem 0;
  width: 8em;
  vertical-align: top;
  white-space: nowrap;
}

.policy-table td {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-sub);
  padding: 0.9rem 0;
}

.policy-table td a {
  /* color: var(--gold); */
  transition: opacity 0.2s ease;
}

.policy-table td a:hover {
  opacity: 0.7;
}

/* ---------- Footer: current page indicator ---------- */
.footer-privacy-current {
  color: var(--gold) !important;
  opacity: 0.9;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .policy-hero { padding: 140px 0 80px; }
  .policy-main { padding: 60px 0 80px; }
  .policy-table th {
    width: 6em;
    font-size: 0.68rem;
    padding-right: 1rem;
  }
}
