@charset "utf-8";

/* CSS Document */

/* ======================================================
	[print]
	@import"../css/test_line.css";
	------------------------------------------------------
	min-width　→　○px以上だと??という設定にする
	max-width　→　○px以下だと??という設定にする
====================================================== */

/* データの途中で改ページ禁止 */
th,
td,
li,
img,
.PageBreakNo,
.Item,
.Chang
{
	page-break-inside: avoid;
}

/* ======================================================
	A4・タテ(210×297mm)
------------------------------------------------------ */

@page {
	margin: 0 auto;
	size: 210mm auto;
}

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

iframe
{
	display: block;
	break-inside: avoid;
}

section,
.WrapM,
#Footer
{
	max-width: initial;
	min-width: initial;
	width: initial;
}

#Header
{
	position: static;
}

#Contents
{
	padding-top: 0;
}

.Main
{
	min-height: initial;
}

.FooterBtn
{
	display: none;
	opacity: 0;
	width: 0;
	height: 0;
	overflow: hidden;
}

#Footer
{
}


/* -----------------------------------------------------
	custom */

.Gallery.Slider .slider
{
	opacity: 0;
	display: none;
}

.Gallery.Slider .slick-track
{
	width: 100%;
	transform: none;
}


}


