/* privacy-policy ページ固有CSS（静的privacy-policy/index.htmlのインライン<style>から抽出） */
/* ===== 上部の帯（バナー） ===== */
  .pbanner {
    position: relative; padding: clamp(150px,18vw,230px) 0 clamp(48px,6vw,80px);
    background: linear-gradient(120deg, #2e9e5b 0%, #27884d 60%, #1f7d57 100%);
    color: #fff; overflow: hidden;
  }
  .pbanner::after {
    content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px;
    border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.14), transparent 70%);
    pointer-events: none;
  }
  .pbanner__inner { width: min(1180px, 100% - 48px); margin-inline: auto; position: relative; z-index: 1; }
  .pbanner__en { font-family: var(--en); font-weight: 300; font-size: clamp(34px,5vw,58px); line-height: 1; letter-spacing: .04em; }
  .pbanner__jp { margin-top: 14px; font-size: clamp(16px,2vw,22px); font-weight: 500; letter-spacing: .06em; }

  /* ===== パンくず ===== */
  .crumb { width: min(1180px, 100% - 48px); margin: 22px auto 0; font-size: 13px; color: #78857e; }
  .crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; }
  .crumb a { color: #78857e; transition: color .2s; }
  .crumb a:hover { color: var(--green); }
  .crumb li:not(:last-child)::after { content: "›"; margin-left: 8px; color: #b8c2bc; }
  .crumb [aria-current="page"] { color: var(--ink); }

  /* ===== ポリシー本文 ===== */
  .policy { width: min(880px, 100% - 48px); margin: clamp(40px,5vw,64px) auto clamp(80px,10vw,128px); }
  .policy__lead { font-size: 16px; line-height: 2; color: var(--ink); margin: 0 0 clamp(28px,3.5vw,44px); }
  .policy__sec { margin-top: clamp(30px,3.6vw,48px); }
  .policy__sec h2 {
    font-family: var(--jp); font-size: clamp(18px,1.6vw,21px); font-weight: 700; color: var(--ink);
    line-height: 1.5; margin: 0 0 .8em; padding-left: 14px; border-left: 4px solid var(--green);
  }
  .policy__sec p { font-size: 15px; line-height: 1.95; color: var(--ink); margin: 0 0 1em; }
  .policy__sec p:last-child { margin-bottom: 0; }
  .policy__sec a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
  .policy__sec a:hover { color: var(--green-dark); }
  .policy__sec ol { margin: .4em 0 1em; padding-left: 1.5em; }
  .policy__sec ol li { font-size: 15px; line-height: 1.9; margin-bottom: .4em; padding-left: .2em; }
  .policy__sec ol li::marker { color: var(--green); font-weight: 700; }
  .policy__info {
    margin-top: 1em; padding: clamp(20px,2.4vw,28px); background: #f4f8f5; border-radius: 8px;
    font-size: 15px; line-height: 1.95; color: var(--ink);
  }
  .policy__date { margin-top: clamp(30px,4vw,48px); text-align: right; font-size: 13px; color: #8b968f; }
