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

    #header,.pan,.contact_box,.swiper-button-prev,.swiper-button-next,.contact_box,.tab_area,.inq_wrap,.recommend,.recommend_midashi,.company_box_tenpo,.footer_copy{
        display: none;
    }
    #slider_wrap {
        height: 370px;
    }
    .print_img_titlebox{
      width: 50%;
    }
    .print_img_title{
        display: block!important;
        text-align: center;
    }
    .like_print_btnbox,.company_box_n,.recommend_midashi{
      display: none;
    }

    /* 印刷時だけスライダー画像を大きく表示 ここから===============================*/

    /* 表示不要 */
    #footer,.contact_box .contact01{
      display: none;
    }
    /* .print_thumbs
      display: block;
    } */
    /* サムネを左づめに */
    /* .swiper-container{
      margin-left: -200px;
    } */
    /* サムネの1枚目は表示しない */
    /* #footer,#thumbs .swiper-slide:nth-child(1) {
      display: none;
    }
     */
    /* #slider_wrap {
      width: 100%;
      height: auto;
    }
    #thumbs .swiper-wrapper {
      width: 100%;
      height: 900px;
      transform: unset;
    }
    #thumbs .swiper-slide {
      width: 400px!important;
      height: 400px!important;
    }
    #thumbs .swiper-wrapper img{
      height: 400px!important;
      max-height: 400px!important;
    } */
    .print_thumbs {
      display: block!important;
    }
    .print_thumbs img{
        width: 30%;
    }

    /* 印刷時だけスライダー画像を大きく表示 ここまで=========================*/
  }