/* =========================================
   print.css
   印刷共通
========================================= */

@media print {
  html,
  body {
    background: #fff;
  }

  .site-header,
  .site-footer,
  .site-nav,
  .header-search,
  .cart-actions,
  .checkout-submit,
  .back-link,
  .btn-main,
  .btn-sub,
  .btn-light {
    display: none;
  }

  .main,
  .section,
  .page-box,
  .mypage-card,
  .print-page {
    background: #fff;
    box-shadow: none;
    border: 0;
    border-radius: 0;
  }

  .main {
    max-width: none;
    padding: 0;
  }

  .print-page {
    padding: 0;
  }
}