/* Policy Pages Styles */

/* sectionタグのリセット */
.policy-page section {
  all: initial;
  display: block;
}

.policy-page {
  background-color: var(--dark-bg);
  color: var(--light);
  min-height: 100vh;
  padding-top: 100px;
}

.policy-content {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

.policy-container {
  width: 100%;
  max-width: 800px;
  text-align: left;
  box-sizing: border-box;
  padding: 0 1rem;
}

.policy-container h1 {
  font-family: "Noto Sans", sans-serif;
  font-size: 3em;
  font-weight: 800;
  line-height: 1.2;
  color: var(--light);
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-container section {
  margin-bottom: 3rem;
  text-align: left;
}

.policy-container h2 {
  font-size: 1.2em;
  color: var(--light);
  opacity: 0.8;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.6;
}

.policy-container p {
  font-size: 1.2em;
  line-height: 1.6;
  color: var(--light);
  opacity: 0.8;
  margin-bottom: 1rem;
  text-transform: none;
}

.policy-container ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-container li {
  font-size: 1.2em;
  line-height: 1.6;
  color: var(--light);
  opacity: 0.8;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: none;
}

.policy-container li::before {
  content: "•";
  color: var(--primary-light);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ナビゲーションのアクティブ状態 */
.nav-links a.active {
  color: var(--primary-light);
  font-weight: 700;
}

/* ポリシーページ用のナビゲーション背景調整 */
.policy-page nav {
  background-color: rgba(10, 10, 26, 0.9);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .policy-content {
    padding: 2rem 1rem;
  }
  
  .policy-container {
    padding: 0;
  }
  
  .policy-container h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }
  
  .policy-container h2 {
    font-size: 1.1rem;
  }
  
  .policy-container p,
  .policy-container li {
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .policy-container section {
    padding: 0 1rem;
  }
}