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

@media print {
/* 全体設定 */
    body {
      -webkit-print-color-adjust: exact; /* 印刷時でも背景色や背景画像を表示 */
      width: 100%; /* 印刷時の全ページ幅を統一（px数値はお好みで） */
      zoom: 0.8; /* なるべく多くのブラウザで切れないようにするため */
    }

    header {
        position: relative!important;
    }

    #pagetop {
        position: relative!important;
    }

    .mvHeight, .pgttlHeight {
        height: 0!important;
    }

    #main-visual, #page-ttl {
        position: relative!important;
    }

    .__fadein-animation {
        opacity: 1!important;
        transform: translateY(0)!important;
    }

    .__layer-animation span.__en.__2nd {
        margin-top: -0.4em!important;
    }

    .__layer-animation span.__en.__3rd {
        margin-top: -0.8em!important;
    }

    .__slideup-animation span.__en, .__slideup-animation div.__en {
        transform: translateY(0)!important;
    }
}