/* 印刷用css
---------------------------------*/
@media print {


    @page {
        margin: 10mm;
        size: 210mm 297mm;
        /* A4縦サイズの場合 */
    }

    /* 全体設定 */
    body {
        print-color-adjust: exact;
        /* 標準仕様 */
        -webkit-print-color-adjust: exact;
        /* WebKit系ブラウザ用 */
        /* 印刷時でも背景色や背景画像を表示 */

        zoom: 0.6;
        /* なるべく多くのブラウザで切れないようにするため */
    }

    .nav-drawer {
        display: none;
    }

    header {
        height: 90px;
    }

    .nav-header {
        position: inherit;
    }

    .top-message__container {
        position: inherit;
    }

    .top-message-item {
        display: flex;
        align-items: center;
    }

    .top-message-item__content {
        width: 50%;
        padding: 1rem;
    }

    .top-aboutus__message {
        max-height: 710px;
        background-image: url('../../img/top-aboutus_message.jpg');
        background-size: cover;

    }

    .top-aboutus-item__list {
        display: flex;
        padding: 0;
        justify-content: space-between;
    }

}