/* ■print-style.css
====================================== */
@media print {

	*,
	*::before,
	*::after {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding: 0 !important;
		filter: none !important;
	}

	html {
		font-size: 62.5%;
	}

	body {
		-webkit-print-color-adjust: exact;
		max-width: 90%;
		margin: 0 auto !important;
	}

	/* 画像系タグ */
	img,
	iframe,
	embed,
	video,
	math,
	svg,
	img[src$=".svg"] {
		width: 100%;
		max-width: 90vw !important;
	}

	picture {
		width: 100%;
		max-width: 90vw !important;
	}

	/* 文章系タグ */
	p,
	small,
	em,
	strong,
	b,
	mn,
	mi,
	dfn,
	address {
		font-size: 11px !important;
	}

	.d-none_print,
	.breadcrumb,
	.pageband-container,
	button,
	.button,
	.pagetop-btn,
	[class^="adj-"] {
		display: none !important;
	}

	/* 印刷時のスタイル */
	.header-print {
		width: 100%;
		/* Flex */
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-bottom: 1rem !important;
	}

	.header-print .header-brand {
		width: 16rem !important;
		/* padding: 縦  横 */
		margin: 0.75rem 1rem !important;
	}

	.footer-print .copyright {
		display: inline-block !important;
		width: 100% !important;
		margin-top: 1rem !important;
		/* padding: 上  横  下 */
		padding: 0.5rem 0px 0.5rem !important;
		border-top: 1px solid hsla(0, 0%, 46%, 0.25) !important;
	}
}