/* 用紙サイズの指定（A4） */
/* @page {
    margin: 10mm;
    size: 210mm 297mm; /* A4縦サイズの場合 
} */

@media print {
/* 全体設定 */
body {
    -webkit-print-color-adjust: exact !important;
    /* 印刷時でも背景色や背景画像を表示 */
    max-width: 1440px !important;
    /* 印刷時の全ページ幅を統一（px数値はお好みで） */
    zoom: 0.8 !important;
    /* なるべく多くのブラウザで切れないようにするため */
    
    font-size: 16px !important;
    header {
        position: relative!important;
    }
    #hamburger{
        display: none!important;
    }
    .pc-nav-wrapper{
        display: block!important;
    }
    .nav-item a{
        padding: 0 10px!important;
    }
    .top-news-list ul li {
        display: flex !important;
    }
    .pagetopInner{
        display: none !important;
    }
}
}



