/* ===== Privacy Policy Page ===== */

main {
  background-color: #fff;
}

/* ===== Hero ===== */
.policy-hero {
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border-bottom: 1px solid #e5e5e5;
}

.policy-hero .policy-label {
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #aaa;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.policy-hero h1 {
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(28px, calc(2.2vw + 12px), 42px);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.policy-hero .policy-sub {
  font-size: clamp(13px, calc(0.7vw + 6px), 15px);
  color: #888;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.policy-meta {
  display: flex;
  gap: 2rem;
}

.policy-meta span {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* ===== Body ===== */
.policy-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Section ===== */
.policy-section {
  padding: 60px 0 0;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 60px;
}

.policy-section__header {
  margin-bottom: 24px;
}

.policy-section__num {
  display: inline-block;
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #aaa;
  font-weight: 400;
  margin-bottom: 8px;
}

.policy-section__header h2 {
  font-size: clamp(18px, calc(1vw + 8px), 22px);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* ===== Text ===== */
.policy-text p {
  font-size: clamp(13px, calc(0.7vw + 6px), 15px);
  font-weight: 400;
  color: #555;
  line-height: 2.4;
  letter-spacing: 0.04em;
}

.policy-text p + p {
  margin-top: 1.5rem;
}

.policy-text ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.policy-text ul li {
  position: relative;
  padding-left: 1.5em;
  font-size: clamp(13px, calc(0.7vw + 6px), 15px);
  font-weight: 400;
  color: #555;
  line-height: 2.4;
  letter-spacing: 0.04em;
}

.policy-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
}

.policy-text ul li strong {
  font-weight: 500;
  color: #1a1a1a;
}

/* ===== Sub Headings (AI Policy) ===== */
.policy-text h3 {
  font-size: clamp(14px, calc(0.8vw + 6px), 16px);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

/* ===== Table (AI Policy) ===== */
.policy-table-wrap {
  margin: 1.5rem 0;
  overflow-x: auto;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(13px, calc(0.7vw + 6px), 15px);
  color: #555;
  letter-spacing: 0.04em;
}

.policy-table th,
.policy-table td {
  padding: 16px 20px;
  border: 1px solid #e5e5e5;
  text-align: left;
  line-height: 2;
  vertical-align: top;
}

.policy-table th {
  background: #f8f8f8;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
}

.policy-table td:first-child {
  white-space: nowrap;
  font-weight: 500;
  color: #1a1a1a;
  width: 180px;
}

/* ===== Address Block ===== */
.policy-address {
  margin-top: 1.5rem;
  padding: 24px 32px;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
}

.policy-address p {
  font-size: clamp(13px, calc(0.7vw + 6px), 15px);
  color: #555;
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ===== Signature ===== */
.policy-signature {
  padding: 60px 0 100px;
  text-align: right;
}

.policy-signature p {
  font-size: clamp(13px, calc(0.7vw + 6px), 15px);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.06em;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .policy-hero {
    padding-top: 60px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .policy-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .policy-section {
    padding: 40px 0;
  }

  .policy-address {
    padding: 20px 24px;
  }

  .policy-signature {
    padding: 40px 0 60px;
  }
}
