/* =============================================
   SP base（〜767px）
   ============================================= */

.policy-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16vh 6vw 6vh;
}

.policy-hero h1 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 6vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--warm-black);
}

.policy-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 6vw 14vh;
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-gray);
}

.policy-section p,
.policy-section li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--warm-black);
  letter-spacing: 0.02em;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.policy-section ul li {
  padding-left: 1.2em;
  position: relative;
}

.policy-section ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--muted);
}

.policy-section p + p {
  margin-top: 12px;
}

.policy-date {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-align: right;
  margin-bottom: 48px;
}

.policy-link {
  color: var(--warm-black);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 1px;
  transition: border-color 0.3s ease;
  word-break: break-all;
}

.policy-link:hover {
  border-color: var(--warm-black);
}

/* =============================================
   PC / Tablet: min-width: 768px 以上
   ============================================= */
@media (min-width: 768px) {
  .policy-hero {
    min-height: 50vh;
    padding: 20vh 6vw 8vh;
  }

  .policy-hero h1 {
    font-size: clamp(28px, 4vw, 44px);
  }

  .policy-body {
    padding: 0 6vw 20vh;
  }

  .policy-section {
    margin-bottom: 64px;
  }

  .policy-section p,
  .policy-section li {
    font-size: 14px;
  }
}
