@charset "UTF-8";
/* CSS Document */

body.print .wrapper {
	width: 100%;
	text-align: center;
}
body.print .wrapper_inner {
	width: 950px;
	margin: auto;
	padding: 20px 0 20px;
}
body.print h1 {
	font-size: 25px;
	background: #321100;
	color: #fff;
	width: 100%;
	margin-bottom: 30px;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	line-height: 1;
}
body.print h1 a span {
	display: inline-block;
	padding-left: 15px;
}
body.print h1 a span:before {
	content: "";
  display: inline-block;
  position: absolute;
  width: auto;
  height: auto;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  top: 25%;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("../img/print/print.png");
	margin-left: 10px;
}
body.print h1 .h1_title {
	padding: 5px 10px;
	display: block;
}
body.print .print_button {
	background: #fff;
	padding: 10px;
	border-radius: 5px;
	color: #000;
	font-size: 18px;
	position: relative;
	padding-left: 25px;
	display: block;
}
body.print h2 {
	font-size: 18px;
	font-weight: bold;
}
body.print .icon {
	display: flex;
	justify-content: center;
	align-items: center;
}
body.print .icon .txt {
	margin-right: 20px;
}
body.print .table {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

body.print table {
	border-collapse: collapse;
  width: 460px;
	border: 3px solid #aaa;
}
body.print table td,
body.print table th {
	padding: 10px 15px;
    border: 1px solid #aaa;
    text-align: center;
    font-weight: 400;
    vertical-align: middle;
}

body.print table th {
	background: #eee;
}

body.print table tr:first-child th {
	background: #fff;
}
body.print table tr.title {
	border-top: 3px solid #aaa;
}

body.print .arert {
	margin-top: 20px;
	text-align: left;
}
body.print .arert p {
	font-weight: bold;
}

@media only screen and (max-width:767px) {
	body.print .wrapper_inner {
		width: 100%;
		padding: 10px;
	}
	body.print h1 {
		font-size: 18px;
		display: block;
		line-height: 1.5;
		padding-bottom: 20px;
	}
	body.print h1 .h1_title {
		margin-bottom: 10px;
	}
	body.print .print_button {
		display: inline;
		margin-bottom: 20px;
	}
	body.print h2 {
	font-size: 14px;
	}
	body.print h1 a span {
	display: inline-block;
	padding-left: 15px;
}
	body.print table {
  width: 100%;
	}
	body.print .table .left {
		margin-bottom: 20px;
	}
	body.print .table {
    display: block;
	}
	
}