/* transparency ページ固有CSS（静的transparency/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スタイル踏襲） ===== */
  .policy { width: min(880px, 100% - 48px); margin: clamp(40px,5vw,64px) auto clamp(80px,10vw,128px); }
  .policy__formal { font-size: clamp(17px,1.7vw,21px); font-weight: 700; color: var(--ink); line-height: 1.5; margin: 0 0 .9em; }
  .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__subhead { font-size: clamp(16px,1.4vw,18px); font-weight: 700; color: var(--ink); margin: 1.8em 0 .6em; }
  .policy__items { list-style: none; margin: .2em 0 1.2em; padding: 0; }
  .policy__items li { padding: 13px 2px; border-bottom: 1px solid #eef2f0; font-size: 15px; line-height: 1.85; color: var(--ink); }
  .policy__items li:first-child { border-top: 1px solid #eef2f0; }
  .policy__items strong { display: inline-block; font-weight: 700; color: var(--ink); }
  .policy__items span { color: #46514b; }
  .policy__notes { list-style: none; counter-reset: note; margin: .4em 0 0; padding: 14px clamp(16px,2vw,22px); background: #f4f8f5; border-radius: 8px; }
  .policy__notes li { position: relative; padding-left: 2.6em; font-size: 14px; line-height: 1.85; color: #46514b; margin-bottom: .5em; }
  .policy__notes li:last-child { margin-bottom: 0; }
  .policy__notes li::before { counter-increment: note; content: "※" counter(note); position: absolute; left: 0; color: var(--green); font-weight: 700; }
  .policy__end { margin-top: clamp(30px,4vw,48px); text-align: right; font-size: 15px; color: var(--ink); }
  /* ===== 年度別 公開情報（PDFリンク一覧） ===== */
  .disclosure { margin-top: clamp(34px,4.5vw,56px); }
  .disclosure__lead { font-size: 15px; line-height: 1.95; color: var(--ink); margin: 0 0 clamp(14px,1.8vw,20px); }
  .disclosure__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #e3e9e6; }
  .disclosure__list li { border-bottom: 1px solid #e3e9e6; }
  .disclosure__link { display: flex; align-items: center; gap: 12px; padding: 16px 8px; font-size: 15px; font-weight: 700; color: var(--ink); transition: color .2s, background .2s; }
  .disclosure__link:hover { color: var(--green); background: #f6faf7; }
  .disclosure__ic { flex: 0 0 auto; width: 20px; height: 24px; }
  .disclosure__ext { margin-left: auto; font-size: 14px; color: #8b968f; }
  .disclosure__prep { display: flex; align-items: center; justify-content: center; padding: clamp(30px,4.5vw,48px); border: 1px dashed #cfd8d3; border-radius: 10px; background: #f6faf7; color: #8b968f; font-size: 15px; font-weight: 700; letter-spacing: .06em; text-align: center; }
