    /* ===== 掲載申し込み（ページ固有） ===== */
    .entry-intro { max-width: 760px; margin: 0 auto; text-align: center; }
    .entry-intro__lead { color: var(--ink-soft); font-size: 14.5px; line-height: 2.1; }

    .entry-terms { display: grid; grid-template-columns: 1fr clamp(300px, 44%, 560px); gap: clamp(28px, 3.6vw, 60px); align-items: center; }
    .entry-terms__body { }
    .entry-terms__text { font-size: 13.5px; line-height: 2.05; color: var(--ink-soft); }
    .entry-terms__text + .entry-terms__text { margin-top: 18px; }
    .entry-terms__list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
    .entry-terms__item { display: flex; align-items: flex-start; gap: 11px; font-size: 13.5px; line-height: 1.75; color: var(--ink); }
    .entry-terms__item svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--brown); }
    .entry-terms__img { overflow: hidden; aspect-ratio: 4 / 3; }
    .entry-terms__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
    .entry-terms:hover .entry-terms__img img { transform: scale(1.04); }

    .form-lead { max-width: 720px; margin: 0 auto clamp(24px, 3vw, 34px); text-align: center; color: var(--ink-soft); font-size: 13.5px; line-height: 2; }

    @media (max-width: 768px) {
      .entry-terms { grid-template-columns: 1fr; gap: 20px; }
      .entry-terms__img { order: -1; }
    }
