    /* コンテンツエリア */
    .content-section { padding: 64px 0 80px; }
    .content-wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

    /* ポリシーカード */
    .policy-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 52px 52px; box-shadow: var(--shadow-md); }
    .policy-card-title { font-size: 17px; font-weight: 800; color: var(--navy); padding-bottom: 16px; border-bottom: 2px solid var(--border); margin-bottom: 32px; display: flex; align-items: center; gap: 10px; }
    .policy-card-title::before { content: ''; display: inline-block; width: 4px; height: 20px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }

    /* 条文リスト */
    .policy-list { display: flex; flex-direction: column; gap: 0; }
    .policy-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
    .policy-item:last-child { border-bottom: none; padding-bottom: 0; }
    .policy-num { flex-shrink: 0; width: 28px; height: 28px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; margin-top: 2px; }
    .policy-text { font-size: 14px; color: var(--text); line-height: 1.85; }

    /* お問い合わせ先ボックス */
    .contact-box { margin-top: 36px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; }
    .contact-box-title { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
    .contact-box-title::before { content: '📋'; font-size: 14px; }
    .contact-box-body { font-size: 13px; color: var(--text); line-height: 2; }
    .contact-box-body strong { color: var(--navy); font-weight: 700; }
    .contact-box-body a { color: var(--navy-light); text-decoration: underline; }
    .contact-box-body a:hover { color: var(--navy); }

    /* 戻るリンク */
    .back-link-wrap { text-align: center; margin-top: 36px; }
    .back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--navy); padding: 12px 24px; border: 1.5px solid var(--border-solid); border-radius: 8px; background: var(--white); transition: all 0.22s var(--ease); }
    .back-link:hover { background: var(--off-white); border-color: var(--navy); transform: translateY(-1px); }

    @media (max-width: 768px) {
      .policy-card { padding: 32px 24px 36px; }
    }
