/* ===== プライバシーポリシーページ ===== */

.privacy-main-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 24px 16px 0;
  margin: 0;
  color: #333;
}

.privacy-container {
  background-color: #EDEDED;
  min-height: calc(100vh - 200px);
  padding: 5rem 0 8rem;
}

.privacy-inner {
  max-width: 86rem;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ---- 更新日 ---- */
.privacy-date {
  text-align: right;
  font-family: Inter_Regular, "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  color: #707070;
  margin-bottom: 2.4rem;
}

/* ---- イントロ ---- */
.privacy-intro {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3.6rem 4.8rem;
  margin-bottom: 3.2rem;
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.5rem;
  color: #312F2E;
  line-height: 2;
  border-left: 5px solid #A5387F;
}

/* ---- 各条項 ---- */
.privacy-section {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3.2rem 4.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.privacy-section-title {
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #A5387F;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3dded;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.privacy-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  background: #A5387F;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  font-family: Inter_Regular, sans-serif;
  font-weight: bold;
  flex-shrink: 0;
}

.privacy-section p {
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.5rem;
  color: #312F2E;
  line-height: 2;
  margin-bottom: 1.2rem;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.privacy-list li {
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.5rem;
  color: #312F2E;
  line-height: 1.8;
  padding-left: 1.8rem;
  position: relative;
}

.privacy-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #A5387F;
}

/* ---- 事業者情報 ---- */
.privacy-company-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.5rem;
  margin-top: 1.6rem;
}

.privacy-company-table th,
.privacy-company-table td {
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.privacy-company-table th {
  color: #A5387F;
  font-weight: 700;
  width: 14rem;
  white-space: nowrap;
}

.privacy-company-table td {
  color: #312F2E;
}

.privacy-company-table tr:last-child th,
.privacy-company-table tr:last-child td {
  border-bottom: none;
}

/* ---- 制定日 ---- */
.privacy-enactment {
  text-align: center;
  font-family: "Noto Sans JP", Inter_Regular, sans-serif;
  font-size: 1.4rem;
  color: #707070;
  margin-top: 3.2rem;
}

/* ===== Responsive ===== */

@media screen and (max-width: 768px) {
  .privacy-container {
    padding: 3rem 0 6rem;
  }

  .privacy-inner {
    padding: 0 1.6rem;
  }

  .privacy-intro,
  .privacy-section {
    padding: 2.4rem 2rem;
    border-radius: 1.2rem;
  }

  .privacy-section-title {
    font-size: 1.6rem;
  }

  .privacy-section p,
  .privacy-list li {
    font-size: 1.4rem;
  }

  .privacy-company-table th {
    width: 10rem;
    font-size: 1.3rem;
  }

  .privacy-company-table td {
    font-size: 1.4rem;
  }
}
