@charset "UTF-8";

/* ==========================================
   プライバシーポリシー ヒーローセクション
   ========================================== */
.privacy-hero {
  width: 100%;
  padding: 0;
  /* 方眼紙風グリッド背景 */
  background-color: #fafafa;
  background-image:
    linear-gradient(#ececec 1px, transparent 1px),
    linear-gradient(90deg, #ececec 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-container {
  max-width: 100%;
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   プライバシーポリシー 本文セクション
   ========================================== */
.privacy-section {
  padding: 80px 20px 120px;
  background-color: #ffffff;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-block {
  margin-bottom: 50px;
}

.privacy-block:last-child {
  margin-bottom: 30px;
}

/* 見出しのスタイル（左側の黄色い縦線） */
.privacy-block h2 {
  position: relative;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333333;
  padding-left: 14px;
  margin-bottom: 16px;
}

.privacy-block h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 1.1rem;
  background-color: #fbd038; /* 黄色のアクセントカラー */
}

/* 本文のスタイル */
.privacy-block p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.85;
  margin-bottom: 0;
}

/* 箇条書きリスト（利用目的の部分） */
.privacy-block ul {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.privacy-block ul li {
  position: relative;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.85;
  padding-left: 15px;
}

.privacy-block ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #555555;
}

/* 制定日 */
.privacy-date {
  text-align: right;
  font-size: 0.9rem;
  color: #555555;
  margin-top: 40px;
}

/* ==========================================
   レスポンシブ対応（スマホ・タブレット）
   ========================================== */
@media (max-width: 768px) {
  .privacy-section {
    padding: 50px 20px 80px;
  }

  .privacy-block h2 {
    font-size: 1.1rem;
  }

  .privacy-block p,
  .privacy-block ul li {
    font-size: 0.9rem;
  }
}
