/* ========================================
   プライバシーポリシー　設定
======================================== */
.privacy-policy {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
}

.page-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.policy-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.9;
  font-size: 1.05rem;
}

.policy-section ul {
  margin-top: 10px;
  padding-left: 1.5em;
  list-style: disc;
}

.policy-section ul li {
  margin-bottom: 0.6em;
}



.policy-list {
  counter-reset: policy;
  list-style: none;
  padding-left: 0;
  margin: 0 0 40px;
}

.policy-list>li {
  counter-increment: policy;
  margin-bottom: 30px;
  line-height: 1.9;
  font-size: 1.05rem;
  position: relative;
  padding-left: 2.5em;
}

.policy-list>li::before {
  content: counter(policy) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-color, #333);
}

.policy-list ul {
  margin-top: 1em;
  padding-left: 1.5em;
  list-style: disc;
}

.policy-list ul li {
  margin-bottom: 0.5em;
}

.policy-update {
  text-align: right;
  font-size: 0.85rem;
  color: #888;
  margin-top: 60px;
}

.policy-list a,
.policy-list a:visited {
  color: #e02020;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy-list a:hover {
  color: #a60000;
}