@charset "UTF-8";

@media print {
  /* スクロール・表示制限解除 */
  html,
  body {
    overflow: visible !important;
  }
  /* 背景固定・演出系を解除 */
  .section-fixed__bg {
    position: static !important;
    height: auto !important;
  }

  /* transform / animation を解除（超重要） */
  * {
    animation: none !important;
  }

  /* FV制限解除 */
  .fv {
    min-height: auto !important;
  }
  /* アニメーション待ち要素を強制表示 */
  .inv_mov {
    opacity: 1 !important;
    transform: none !important;
  }
@media print {
  header {
    position: static !important;
    background-color: #b2e0f8 !important; /* ← 実際の青色に合わせてください */
  }
}
}
