@charset "utf-8";
table#ordersheet-head {
	width: 98%;
	background-color: #F6B894;
	margin: 0 auto;
	font-size: 18px;
}
table#ordersheet-head th,
table#ordersheet-head td {
	vertical-align: middle;
	padding: 3px 10px;
}
table#ordersheet-common {
	width: 98%;
	background-color:ghostwhite;
	margin: 0 auto;
	font-size: 12px;
}
table#ordersheet-common th,
table#ordersheet-common td {
	border: 1px solid darkslategrey;
	vertical-align: middle;
	padding: 3px 10px;
}
div#sheet-area {
	width: 99%;
	margin: 0 auto;
	display: flex;
	font-size: 12px;
}
div#sheet-area-left {
	width: 49%;
	padding: 3px;
}
div#sheet-area-left table.sheet-info {
	width: 98%;
	margin: 0 auto;
}
div#sheet-area-left table.sheet-info th {
	background-color: darkslategrey;
	color: #fff;
	padding: 3px;
}
div#sheet-area-left table.sheet-info th,
div#sheet-area-left table.sheet-info td {
	border: 1px solid darkslategrey;
}
div#sheet-area-right {
	width: 49%;
	padding: 3px;

}
div#sheet-detail-list {
	width: 99%;
	margin: 0 auto;
	background-color: cornsilk;
	border-radius: 3px;
}
div.detail-list {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}
div.detail-item {
	width: 28%;
	padding: 5px;
	background-color: dodgerblue;
	border-radius: 5px;
	margin: 3px;
}
div.detail-item span {
	display: block;
}
div.detail-form-inner {
	display: flex;
}
div.detail-form-inner-left {
	width: 49%;
}
div.detail-form-inner-right {
	width: 49%;
}
div.detail-amount-area {
	margin-top: 10px;
}
div.detail-amount-area table {
	width: 99%;
	margin: 3px auto;
	border-collapse: collapse;
	border: 1px solid #333;
}
div.detail-amount-area table th {
	width: 49%;
}
div.detail-amount-area table th,
div.detail-amount-area table td {
	border: 1px solid #333;
}
div.detail-amount-area table td {
	padding-right: 4px;
}
div.sheet-detail span#line-no {
	display: block;
	font-size: 16px;
}
div.sheet-detail div.detail-form-img {
	width: 99%;
	margin: 3px auto;
	border: 1px solid #333;
	border-radius: 3px;
	min-height: 100px;
}
div.sheet-detail div.detail-form-img img {
	width: 100px;
	margin: 3px;
}
span.detail-amount {
	font-size: 16px;
	display: block;
	width:98%;
	text-align: right;
}
div.detail-title {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
div.before-next {
	cursor: pointer;
}
table.sheet-align-center td {
	text-align: center;
}
