/* ===========================================
 * rental_print use css
=========================================== */
/* 用紙設定 */
@page {
  size: A4;
  margin: 15mm 20mm;
}

@media print {

  /* =============================
   * 基本リセット（最重要）
  ============================= */

  html,
  body {
    min-width: 0 !important;      /* ← 1100px殺す */
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }

  /* box幅暴走防止 */
  #rental_entry,
  #rental_entry * {
    box-sizing: border-box !important;
  }

  /* =============================
   * 不要要素非表示
  ============================= */

  header,
  footer,
  #sub_header,
  #breadcrumb,
  #rental_search,
  #tableware_rental,
  #sub_info {
    display: none !important;
  }

  /* =============================
   * レイアウト安定化
  ============================= */

  #rental_entry {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: none !important;
  }

  #rental_entry .content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* flex無効化（超重要） */
  #rental_entryInner .block {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  #rental_entry .img_box,
  #rental_entry .text_box {
    width: 100% !important;
  }

  /* =============================
   * 画像調整
  ============================= */

  #rental_entry img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* =============================
   * テキスト改行安定
  ============================= */

  #rental_entry,
  #rental_entry * {
    white-space: normal !important;
  }

  #rental_entry p {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.8 !important;
  }

  /* =============================
   * タイポ調整（印刷最適）
  ============================= */

  #rental_entry h4 {
    font-size: 14px !important;
    color: #000 !important;
  }

  #rental_entry h3 {
    font-size: 22px !important;
    margin: 10px 0 !important;
  }

  #rental_entry p {
    font-size: 14px !important;
  }

}