﻿
@media all{
    .print-display {
        display: none;
    }
}
@media print{
    .print-display {
        display: block !important;
        overflow: visible !important;
        font-family: "Meiryo UI","Segoe UI", Verdana, Helvetica, Sans-Serif !important;
        white-space: pre !important;
        white-space: pre-wrap !important;
        word-break: break-all !important;
    }

    .screen-display {
        display: none !important;
    }
}