/**************************************************************************************/
/* 印刷用CSS*/
/**************************************************************************************/
/* 用紙サイズの指定（A4） */
@page {
    margin: 10mm;
    size: 210mm 297mm; /* A4縦サイズの場合 */
  }
  @media print {
    /* 全体設定 */
    body {
      -webkit-print-color-adjust: exact; /* 印刷時でも背景色や背景画像を表示 */
      width: 1190px; /* 印刷時の全ページ幅を統一（px数値はお好みで） */
      zoom: 0.8; /* なるべく多くのブラウザで切れないようにするため */
    }
    /* 改ページをいれる場合 */
    section {
      page-break-before: always; /* 各セクションで改ページが行われるようにしています */
    }
    section + section.new-none:not(:root) {
      page-break-before: avoid; /* 特定のセクションでは改ページを入れない場合の指定 */
    }
    .new-page {
      page-break-before: always; /* 特定の場所で改ページを入れたいときの指定 */
    }

    #header,.pan,#thumbs,.contact_box,.swiper-button-prev,.swiper-button-next,.tab_area,.inq_wrap,.recommend,.recommend_midashi,.company_box_tenpo,.footer_copy{
        display: none;
    }
    #slider_wrap {
        height: 370px;
        /* width: 40%; */
    }
    /* .detail_text {
        width: 60%;
    } */
    .print_img_titlebox{
      width: 50%;
    }
    .print_img_title{
        display: block!important;
        text-align: center;
    }
    /* .swiper-slide::after{
      content: '外観画像'
    } */
    .like_print_btnbox{
      display: none;
    }
  }