/* プライバシーポリシーページのスタイル */
.privacy {
  padding: 120px 0 80px;
  background-color: #fff;
}

.privacy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy__header {
  text-align: center;
  margin-bottom: 80px;
}

.privacy__title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-top: 20px;
}

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

.privacy__section {
  margin-bottom: 48px;
}

.privacy__intro {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

.privacy__section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1a1a1a;
}

.privacy__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

.privacy__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.privacy__list-item {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.privacy__list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #666;
}

.privacy__sublist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  padding-left: 20px;
}

.privacy__sublist-item {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.privacy__sublist-item::before {
  content: "◦";
  position: absolute;
  left: 0;
  top: 0;
  color: #666;
}

.privacy__contact {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin-top: 20px;
}

.privacy__contact-item {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
}

.privacy__contact-item:last-child {
  margin-bottom: 0;
}

.privacy__contact-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy__contact-link:hover {
  color: #666;
}

.privacy__date {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  text-align: right;
  margin-bottom: 0;
  font-style: italic;
}

/* スマートフォン対応 */
@media screen and (max-width: 560px) {
  .privacy {
    padding: 21.429vw 0 14.286vw;
  }

  .privacy__container {
    padding: 0 3.571vw;
  }

  .privacy__header {
    margin-bottom: 14.286vw;
  }

  .privacy__title {
    font-size: 8.571vw;
    margin-top: 3.571vw;
  }

  .privacy__content {
    max-width: 100%;
  }

  .privacy__section {
    margin-bottom: 8.571vw;
  }

  .privacy__intro {
    font-size: 2.857vw;
    line-height: 1.8;
  }

  .privacy__section-title {
    font-size: 3.571vw;
    margin-bottom: 3.571vw;
    padding-bottom: 1.429vw;
  }

  .privacy__text {
    font-size: 2.857vw;
    line-height: 1.8;
  }

  .privacy__list {
    margin: 3.571vw 0 0;
  }

  .privacy__list-item {
    font-size: 2.857vw;
    line-height: 1.8;
    margin-bottom: 2.143vw;
    padding-left: 3.571vw;
  }

  .privacy__sublist {
    margin: 2.143vw 0 0;
    padding-left: 3.571vw;
  }

  .privacy__sublist-item {
    font-size: 2.857vw;
    line-height: 1.8;
    margin-bottom: 1.429vw;
    padding-left: 3.571vw;
  }

  .privacy__contact {
    padding: 4.286vw;
    border-radius: 1.429vw;
    margin-top: 3.571vw;
  }

  .privacy__contact-item {
    font-size: 2.857vw;
    line-height: 1.8;
    margin-bottom: 1.429vw;
  }

  .privacy__date {
    font-size: 2.857vw;
    line-height: 1.8;
  }
} 