@media print {
    .print_page {
        top: 0 !IMPORTANT;
        left: 0 !IMPORTANT;
        /* width:172mm !IMPORTANT; */
        /* height:251mm !IMPORTANT; */
        page-break-after: always;
    }

    .print_page:last-child {
        /* 最後のページの改ページを防ぐ */
        page-break-after: auto;
    }

    .TopBar {
        z-index: 6;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 64px;
        background: linear-gradient(to bottom, rgba(225, 225, 225, 0.7), rgba(225, 225, 225, 0.7));
        /* background: #E3E3E3 0% 0% no-repeat padding-box; */
        display: flex;
        justify-content: space-between;
        transition: all 0.1s;
        /* opacity: 0.7; */
    }

    .SideNav,.SideNav--Opened{
        display:none;
    }

    body {
        print-color-adjust: exact;
        zoom: 0.68;
    }
}