/* ==========================================================================
   Privacy Policy Styles
   Disclaimer Styles
   ========================================================================== */

/* mainタグ自体の設定 */
.privacy-container {
  background-color: #f2f2f2; /* bodyと同じ背景色 */
  min-height: 100vh;
  padding-bottom: 30px;
}

/* ヒーローエリア */
.privacy-hero {
  background-color: #000;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.privacy-hero h1 {
  color: #fff;
  font-size: clamp(32px, 6vw, 54px);
  letter-spacing: 0.25em;
  font-weight: 700;
  text-transform: uppercase;
}

/* コンテンツの幅を制限するコンテナ */
.privacy-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

/* テキスト要素の装飾 */
main section h2 {
  font-size: 24px;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid #000;
  display: inline-block;
  letter-spacing: 0.1em;
}

main section h3 {
  font-size: 18px;
  margin: 50px 0 20px;
  font-weight: 700;
  color: #000;
}

main section p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 24px;
}

main section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

main section li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
  padding-left: 1.5em;
  position: relative;
}

/* 箇条書きのドットをサイバーな四角に */
main section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background-color: #000;
}

main section strong {
  color: #000;
  font-weight: 700;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .privacy-hero { height: 130px; }
  .privacy-hero h1 { 
    font-size: 25px;
    letter-spacing: 0.15em;
}
  main section h2 { font-size: 20px; }
}