@charset "UTF-8";

/* インフォメーション */
.information{
	width: 100%;
	margin: 0;
	padding: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: left/*space-evenly*/;
	box-sizing: border-box;
}
.information .information_header{
	width: 100%;
	max-width: 100%;
	flex-basis: 100%;
	margin-bottom:4px;
	padding:3px;
	color:#393939;
	font-size:120%;
	font-weight:bold;
	border-bottom:#ff9900 3px solid;
	background-color: rgba(255,255,255,0.5);
}
.information .information_item{
	width: calc(100% / 3);
	max-width: calc(100% / 3);
	flex-basis: calc(100% / 3);
	background-color: rgba(255,255,255,0.5);
	margin: 4px 0px;
	padding: 4px;
	box-sizing: border-box;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
.information .support_title{
	font-size: 90%;
	color: #666;
	font-weight:bold;
	border-left: 5px solid #cccccc;
	padding: 2px 2px 2px 5px;
	/* 打消し対応 */
	margin-bottom: 0px;
	border-bottom: none;
	background-color: #eee;
}
.information .support_data{
	font-size: 80%;
	margin-left:0;
	padding:1px 6px;
	color: #666;
}
