/* ===== Page Header (下層ページ共通) ===== */
.page-header {
  padding: 100px 0 32px;
  border-bottom: 1px solid var(--cream-deep);
}

.page-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.page-updated {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* ===== Policy Content ===== */
.policy-content {
  padding: 48px 0 80px;
}

.policy-intro {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 40px;
}

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

.policy-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.policy-text {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--text-light);
}

.policy-list {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--text-light);
  padding-left: 1.5em;
  margin-top: 8px;
}

/* ===== Bear Paw Divider ===== */
.paw-divider {
  text-align: center;
  padding: 16px 0;
  opacity: 0.15;
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(165,194,58,0.3);
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}
