> ## Documentation Index
> Fetch the complete documentation index at: https://adcp-docs-ja.pier1.co.jp/llms.txt
> Use this file to discover all available pages before exploring further.

# プリント広告

> AdCP のプリント広告フォーマットは、物理寸法、ブリード、DPI、CMYK 色空間要件を伴う新聞、雑誌、業界誌広告をカバーする。

このガイドは、AdCP が新聞、雑誌、インサート、業界誌のプリント広告フォーマットをどう表現するかをカバーします。

## AdCP でプリントがどう機能するか

プリントは他のすべてのチャネルと同じビルディングブロックを使います:

* **コレクション** が出版物をモデル化（Vogue、Bergedorfer Zeitung、Ad Age）
* **インストールメント** が号をモデル化（2026 年 3 月号、Issue #47）
* **インストールメント締切** がブッキング、キャンセル、素材締切日を運ぶ
* **クリエイティブフォーマット** が物理寸法、ブリード、DPI、ファイル要件を定義
* **プレースメント** がポジションを定義（フルページ、ハーフページ、アイランド、インサイドフロントカバー）

プリント固有のスキーマは不要です。標準製品モデルは、セラーがフォーマットに物理単位を、インストールメントに締切を宣言するときプリントを処理します。

## プリントフォーマット特性

プリントフォーマットはいくつかの方法でデジタルと異なります:

* **物理単位** — ピクセルではなくインチまたはセンチメートルの寸法
* **DPI 要件** — 標準プリントは最小 300 DPI、新聞は 150 DPI
* **ブリード** — 裁断後の白い縁を防ぐトリムを超えた追加画像領域
* **色空間** — フルカラープリントは CMYK、白黒はグレースケール
* **ファイル形式** — JPG/PNG ではなくプレス対応 PDF、TIFF、または EPS

## 標準プリントフォーマット

### フルページ（雑誌）

```json theme={null}
{
  "format_id": {
    "agent_url": "https://ads.publisher.example.com",
    "id": "full_page"
  },
  "name": "Full Page",
  "renders": [{
    "role": "primary",
    "dimensions": {
      "width": 8.375,
      "height": 10.875,
      "unit": "inches"
    }
  }],
  "assets": [
    {
      "item_type": "individual",
      "asset_id": "artwork",
      "asset_type": "image",
      "asset_role": "print_artwork",
      "required": true,
      "requirements": {
        "min_width": 8.375,
        "max_width": 8.375,
        "min_height": 10.875,
        "max_height": 10.875,
        "unit": "inches",
        "min_dpi": 300,
        "bleed": { "uniform": 0.125 },
        "color_space": "cmyk",
        "formats": ["pdf", "tiff", "eps"]
      },
      "overlays": [
        { "id": "safe_left", "description": "Left trim margin — keep headlines, logos, and CTAs inside", "bounds": { "x": 0, "y": 0, "width": 0.25, "height": 10.875, "unit": "inches" } },
        { "id": "safe_right", "description": "Right trim margin", "bounds": { "x": 8.125, "y": 0, "width": 0.25, "height": 10.875, "unit": "inches" } },
        { "id": "safe_top", "description": "Top trim margin", "bounds": { "x": 0, "y": 0, "width": 8.375, "height": 0.25, "unit": "inches" } },
        { "id": "safe_bottom", "description": "Bottom trim margin", "bounds": { "x": 0, "y": 10.625, "width": 8.375, "height": 0.25, "unit": "inches" } }
      ]
    }
  ]
}
```

### ハーフページ縦（新聞）

```json theme={null}
{
  "format_id": {
    "agent_url": "https://ads.publisher.example.com",
    "id": "half_page_portrait"
  },
  "name": "1/2 Seite Hochformat",
  "renders": [{
    "role": "primary",
    "dimensions": {
      "width": 130,
      "height": 185,
      "unit": "mm"
    }
  }],
  "assets": [
    {
      "item_type": "individual",
      "asset_id": "artwork",
      "asset_type": "image",
      "asset_role": "print_artwork",
      "required": true,
      "requirements": {
        "min_width": 130,
        "max_width": 130,
        "min_height": 185,
        "max_height": 185,
        "unit": "mm",
        "min_dpi": 150,
        "bleed": { "uniform": 3 },
        "color_space": "cmyk",
        "formats": ["pdf", "tiff"]
      }
    }
  ]
}
```

### インサート/サプリメント

複数ページのインサートはページに繰り返し可能グループを使います:

```json theme={null}
{
  "format_id": {
    "agent_url": "https://ads.publisher.example.com",
    "id": "insert_4page"
  },
  "name": "4-Page Insert",
  "renders": [{
    "role": "primary",
    "dimensions": {
      "width": 8.375,
      "height": 10.875,
      "unit": "inches"
    }
  }],
  "assets": [
    {
      "item_type": "repeatable_group",
      "asset_group_id": "pages",
      "required": true,
      "min_count": 4,
      "max_count": 4,
      "selection_mode": "sequential",
      "assets": [
        {
          "asset_id": "page",
          "asset_type": "image",
          "asset_role": "insert_page",
          "required": true,
          "requirements": {
            "min_width": 8.375,
            "max_width": 8.375,
            "min_height": 10.875,
            "max_height": 10.875,
            "unit": "inches",
            "min_dpi": 300,
            "bleed": { "uniform": 0.125 },
            "color_space": "cmyk",
            "formats": ["pdf"]
          }
        }
      ]
    }
  ]
}
```

## 出版物と号

出版物は [コレクション](/docs/media-buy/product-discovery/collections-and-installments) にマップされます。各号は締切を伴うインストールメントにマップされます。

### 出版物（コレクション）

```json theme={null}
{
  "collection_id": "bergedorfer_zeitung",
  "name": "Bergedorfer Zeitung",
  "kind": "publication",
  "description": "Regional daily newspaper for Hamburg-Bergedorf",
  "genre": ["IAB12"],
  "genre_taxonomy": "iab_content_3.0",
  "language": "de",
  "cadence": "daily",
  "status": "active",
  "deadline_policy": {
    "booking_lead_days": 4,
    "cancellation_lead_days": 3,
    "material_stages": [
      { "stage": "final", "lead_days": 2, "label": "Druckfertige PDF" }
    ],
    "business_days_only": true
  }
}
```

`deadline_policy` で、コレクションはリードタイムルールを一度宣言します。エージェントは各インストールメントの `scheduled_at` から絶対締切を計算します。日刊新聞はもはやすべての号の締切を列挙する必要はありません — ポリシーが一般的なケースをカバーし、個別のインストールメントは必要なとき上書きできます（例: より早い締切の休日版）。

### 号（締切を伴うインストールメント）

```json theme={null}
{
  "installment_id": "2026-03-28",
  "name": "Freitag, 28. März 2026",
  "scheduled_at": "2026-03-28T05:00:00+01:00",
  "status": "scheduled",
  "deadlines": {
    "booking_deadline": "2026-03-24T17:00:00+01:00",
    "cancellation_deadline": "2026-03-25T12:00:00+01:00",
    "material_deadlines": [
      {
        "stage": "draft",
        "due_at": "2026-03-25T17:00:00+01:00",
        "label": "Entwurf zur Prüfung"
      },
      {
        "stage": "final",
        "due_at": "2026-03-26T17:00:00+01:00",
        "label": "Druckfertige PDF mit Beschnitt (3mm)"
      }
    ]
  }
}
```

より長いリードタイムを持つ月刊誌には:

```json theme={null}
{
  "installment_id": "2026-05",
  "name": "Mai 2026",
  "season": "2026",
  "installment_number": "5",
  "scheduled_at": "2026-05-01T00:00:00+02:00",
  "status": "scheduled",
  "deadlines": {
    "booking_deadline": "2026-03-15T17:00:00+01:00",
    "cancellation_deadline": "2026-03-22T17:00:00+01:00",
    "material_deadlines": [
      {
        "stage": "draft",
        "due_at": "2026-03-29T17:00:00+01:00",
        "label": "Raw artwork for review and color proofing"
      },
      {
        "stage": "final",
        "due_at": "2026-04-05T17:00:00+02:00",
        "label": "Press-ready PDF/X-4, CMYK, 300 DPI, 3mm bleed"
      }
    ]
  }
}
```

## 完全な製品例

今後の号全体でプリント広告在庫を販売する地域新聞:

```json theme={null}
{
  "products": [
    {
      "product_id": "bz_display_april",
      "name": "Bergedorfer Zeitung — Display Ads, April 2026",
      "channels": ["print"],
      "collections": [{
        "publisher_domain": "bergedorfer-zeitung.de",
        "collection_ids": ["bergedorfer_zeitung"]
      }],
      "publisher_properties": [{
        "publisher_domain": "bergedorfer-zeitung.de",
        "selection_type": "all"
      }],
      "installments": [
        {
          "installment_id": "2026-04-01",
          "name": "Mittwoch, 1. April 2026",
          "scheduled_at": "2026-04-01T05:00:00+02:00",
          "status": "scheduled",
          "deadlines": {
            "booking_deadline": "2026-03-26T17:00:00+01:00",
            "cancellation_deadline": "2026-03-27T12:00:00+01:00",
            "material_deadlines": [
              { "stage": "final", "due_at": "2026-03-28T17:00:00+01:00", "label": "Druckfertige PDF" }
            ]
          }
        },
        {
          "installment_id": "2026-04-02",
          "name": "Donnerstag, 2. April 2026",
          "scheduled_at": "2026-04-02T05:00:00+02:00",
          "status": "scheduled",
          "deadlines": {
            "booking_deadline": "2026-03-27T17:00:00+01:00",
            "cancellation_deadline": "2026-03-28T12:00:00+01:00",
            "material_deadlines": [
              { "stage": "final", "due_at": "2026-03-29T17:00:00+01:00", "label": "Druckfertige PDF" }
            ]
          }
        }
      ],
      "placements": [
        { "kind": "seller_inline", "placement_id": "full_page", "name": "Ganze Seite", "mode": "targetable" },
        { "kind": "seller_inline", "placement_id": "half_page", "name": "1/2 Seite", "mode": "targetable" },
        { "kind": "seller_inline", "placement_id": "quarter_page", "name": "1/4 Seite", "mode": "targetable" }
      ],
      "format_ids": [
        { "agent_url": "https://ads.bergedorfer-zeitung.de", "id": "full_page" },
        { "agent_url": "https://ads.bergedorfer-zeitung.de", "id": "half_page_portrait" },
        { "agent_url": "https://ads.bergedorfer-zeitung.de", "id": "quarter_page" }
      ],
      "delivery_type": "guaranteed",
      "delivery_measurement": {
        "provider": "IVW (Informationsgemeinschaft zur Feststellung der Verbreitung von Werbeträgern)",
        "notes": "Verified circulation figures, updated quarterly"
      },
      "pricing_options": [
        {
          "pricing_option_id": "full_page_rate",
          "pricing_model": "flat_rate",
          "fixed_price": 2400,
          "currency": "EUR"
        },
        {
          "pricing_option_id": "half_page_rate",
          "pricing_model": "flat_rate",
          "fixed_price": 1350,
          "currency": "EUR"
        }
      ]
    }
  ]
}
```

## プリント固有の画像要件

### 物理寸法

プリントフォーマットは、ピクセルではなく物理単位（`inches` または `cm`）で寸法を宣言します。フォーマットレンダーと画像アセット要件の両方の `unit` フィールドが解釈を制御します:

```json theme={null}
{
  "dimensions": {
    "width": 8.375,
    "height": 10.875,
    "unit": "inches"
  }
}
```

`unit` が不在のとき、寸法はピクセルにデフォルトします（デジタルフォーマットと後方互換）。

### ブリード

ブリードはトリムサイズを超えた追加画像領域です。印刷後、ページはトリム寸法に裁断されます — ブリードは、白い境界なしにインクカバレッジが縁まで延びることを保証します。

ブリードは辺ごとまたは均一に指定できます:

```json theme={null}
"bleed": { "uniform": 0.125 }
```

```json theme={null}
"bleed": { "top": 0.125, "right": 0.125, "bottom": 0.25, "left": 0.125 }
```

値は親寸法と同じ単位を使います。

### 総画像寸法の計算

8.375 x 10.875 インチのフルページ雑誌広告、300 DPI で 0.125" 均一ブリードの場合:

1. **総物理サイズ**: (8.375 + 0.125 + 0.125) x (10.875 + 0.125 + 0.125) = 8.625 x 11.125 インチ
2. **ピクセル寸法**: 8.625 x 300 = 幅 2588 ピクセル、11.125 x 300 = 高さ 3338 ピクセル
3. **提出画像**: 2588 x 3338 px、CMYK、PDF または TIFF

130 x 185 mm のヨーロッパ新聞、150 DPI で 3 mm 均一ブリードの場合:

1. **総物理サイズ**: (130 + 3 + 3) x (185 + 3 + 3) = 136 x 191 mm
2. **インチに変換**: 136 / 25.4 = 5.354"、191 / 25.4 = 7.520"
3. **ピクセル寸法**: 5.354 x 150 = 幅 803 px、7.520 x 150 = 高さ 1128 px

### DPI

`min_dpi` は許容可能なプリント品質のための最小ドット/インチを指定します:

| Use case   | Typical min\_dpi |
| ---------- | ---------------- |
| 雑誌（コート紙）   | 300              |
| 新聞（非コート）   | 150              |
| 大判 / ビルボード | 72-150           |

### 色空間

プリント制作は CMYK 色分解を要求します。RGB のデジタル画像はプレス前に変換されなければなりません。`color_space` フィールドはパブリッシャーが受け入れるものを宣言します:

* `cmyk` — オフセットとデジタルプリントの標準
* `rgb` — パブリッシャーが変換を処理するとき受け入れられる
* `grayscale` — 白黒プレースメント用

### ファイル形式

| Format | Use case                |
| ------ | ----------------------- |
| `pdf`  | プレス対応コンポジット（PDF/X-4 推奨） |
| `tiff` | ラスタライズされたアートワーク、ロスレス    |
| `eps`  | 埋め込みフォント付きベクターアートワーク    |

### セーフエリア（トリムマージン）

プリント制作はページを最終サイズに裁断し、カットはわずかにシフトしうる。トリム縁に近すぎて配置された重要なコンテンツ（ヘッドライン、ロゴ、CTA）は切り取られるリスクがあります。

パブリッシャーは標準の [オーバーレイ](/docs/creative/formats#overlays) パターンを使ってトリムマージンを宣言します — CTV プレイヤーコントロールと DOOH ベゼルに使われるのと同じメカニズム。各オーバーレイは、クリエイティブエージェントが重要なコンテンツの配置を避けるべきゾーンをマークします:

```json theme={null}
"overlays": [
  { "id": "safe_left", "description": "Left trim margin", "bounds": { "x": 0, "y": 0, "width": 6, "height": 185, "unit": "mm" } },
  { "id": "safe_right", "bounds": { "x": 124, "y": 0, "width": 6, "height": 185, "unit": "mm" } },
  { "id": "safe_top", "bounds": { "x": 0, "y": 0, "width": 130, "height": 6, "unit": "mm" } },
  { "id": "safe_bottom", "bounds": { "x": 0, "y": 179, "width": 130, "height": 6, "unit": "mm" } }
]
```

6mm マージンはヨーロッパ新聞制作の標準です。オーバーレイ境界は `px` と `fraction` と並んで物理単位（`mm`、`cm`、`inches`）をサポートするため、パブリッシャーはプリプレスワークフローが使うどの単位でもセーフエリアを表現できます。

## プリントを超えた締切

インストールメント締切はプリント固有ではありません。事前素材要件を持つ任意のチャネルが同じパターンを使います。ポッドキャスト、インフルエンサーホストリード、ライブイベントの締切については [コレクションとインストールメント](/docs/media-buy/product-discovery/collections-and-installments) を参照してください。

## 関連ドキュメント

* [コレクションとインストールメント](/docs/media-buy/product-discovery/collections-and-installments) — コレクション/インストールメントモデルと締切
* [クリエイティブフォーマット](/docs/creative/formats) — フォーマット構造とアセットディスカバリー
* [メディアチャネル分類](/docs/reference/media-channel-taxonomy) — プリントを含む全 20 チャネル
