﻿@charset "utf-8";

/* print
-------------------------------------------------------------------*/
/*============================================
全般的なスタイル
============================================*/
@media print, screen and (min-width: 1200px) {
@page { size: A4 } /* A4縦 */
	body {
			-webkit-print-color-adjust: exact;
		color:#000000; 
		zoom:50%;
		}
	header {
			background-color: #fff!important;
		}

	main{
		width:100%;		/*幅の指定*/
	}
	#fix_menu.fixedMenu{
		position: relative;
	}
	section{
		 size: A4 landscape;
	}
	#print{
		page-break-after: always;
	}
	#pageTop {
		position: absolute;
		right: 0;
		bottom: 125px;
	}
	.gmnoprint{
	  display:none;
	}
}
@media print, screen and (max-width: 767px) {

}