/* 印刷用ページの制御用 */
    /* http://shiru-web.com/2017/11/07/01-76/ */
    /* https://qiita.com/e-sato/items/68470a4203f6abfaa801 */
    /* https://omame-web.com/print_none/ */

@media print{
    .print_pages {
        /*A4縦*/
        /* width: 172mm;
        height: 251mm; */
        /*A4横*/
        width: 251mm;
        height: 172mm;
        page-break-after: always;
    }

    /*最後のページは改ページを入れない*/
    .print_pages:last-child {
        page-break-after: auto;
    }

    /* 印刷対象外 */
    .print_none {
        display: none;
    }
}
