File size: 1,025 Bytes
f0c38e6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* =====================================================
   印刷用CSS - エンディングノート
   ===================================================== */

@media print {
  /* ページ設定 */
  @page {
    size: A4 portrait;
    margin: 20mm 15mm;
  }

  /* ヘッダー・サイドバー・印刷不要要素を非表示 */
  .site-header,
  .sidebar,
  .preview-actions,
  .no-print,
  .site-footer,
  .section-nav-btns,
  .export-section {
    display: none !important;
  }

  /* 本文リセット */
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
    line-height: 1.7;
  }

  /* メインコンテンツ全幅 */
  .main-content,
  .preview-body {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  /* セクション */
  .preview-section {
    page-break-inside: avoid;
    margin-bottom: 1.5rem;
  }

  /* リンクをテキスト表示 */
  a[href]:after {
    content: none;
  }

  /* 印刷時のカード */
  .section-card { box-shadow: none; border: 1px solid #ddd; }
}