@import url(common.css);

/* ================================
   共通スタイル
   ================================ */

.policy-page {
  padding: 5vw 10vw;
  background-color: #f9f9f9;
}

.lower-contents-title {
  margin-top: 4vw;
  margin-bottom: 2vw;
}

.lower-contents-title h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: bold;
  letter-spacing: 0.5vw;
  text-align: center;
}

.lower-contents-title h2 span {
  display: block;
  font-size: clamp(16px, 1.5vw, 24px);
  color: var(--primary-c);
  margin-bottom: 0.5em;
}

.policy-section {
  margin-bottom: 6vw;
}

.policy-section .inner {
  background: #fff;
  border-radius: 8px;
  padding: 2vw 3vw;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.policy-section h3 {
  font-size: clamp(18px, 1.8vw, 28px);
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  font-weight: bold;
  letter-spacing: 0.3vw;
}

.policy-section p {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  margin-bottom: 1em;
}

.policy-section ul {
  margin: 1em 0;
  padding-left: 1.5em;
}

.policy-section ul li {
  margin-bottom: 0.8em;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.5;
}

.policy-section .inner p a {
  color: var(--primary-c) ;
}

/* ================================
     レスポンシブ（768px以下）
     ================================ */

@media (max-width: 768px) {
  .policy-page {
    padding: 10vh 5vw 5vh;
  }

  .lower-contents-title {
    margin-top: 6vw;
    margin-bottom: 3vw;
  }

  .lower-contents-title h2 {
    font-size: clamp(20px, 4vw, 28px);
    letter-spacing: 0.3vw;
  }

  .lower-contents-title h2 span {
    font-size: clamp(14px, 3vw, 20px);
    margin-bottom: 0.4em;
  }

  .policy-section .inner {
    padding: 4vw 4vw;
  }

  .policy-section h3 {
    font-size: clamp(18px, 3.5vw, 24px);
    margin-top: 1em;
    margin-bottom: 0.6em;
  }

  .policy-section p {
    font-size: clamp(13px, 3vw, 16px);
    line-height: 1.5;
    margin-bottom: 0.8em;
  }

  .policy-section ul {
    padding-left: 1.2em;
  }

  .policy-section ul li {
    font-size: clamp(13px, 3vw, 16px);
    margin-bottom: 0.6em;
    line-height: 1.4;
  }
}
