@charset "utf-8";

/* 会社概要 */

#mv{
	background:url( "../../about/img/cover.jpg" ) no-repeat 50% 50%;
	background-size:cover;
}

.huge{
	font-size: 150%;
}

/* テーブル */

table , td, th {
	border: 1px solid #595959;
	border-collapse: collapse;
}

table{
	width: 100%;		
}

td, th {
	display: block;
	box-sizing: border-box;
	padding:  1rem 0.5rem;
	text-align: center;
	

}
th {
	width: 100%;
	background-color: #dedede;
	
}

td{
	background-color: white;
}

.even {
	background: #fbf8f0;
}
.odd {
	background: #fefcf9;
}



@media print, screen and (min-width: 798px){

	table{
	width: 90%;
	margin: 1.5rem auto;
}
	
	td, th {
	display: table-cell;
	padding:  1rem 1.5rem;
	text-align: left;

}
th {
	width: 30%;
	background-color: #dedede;
	
}
	
	.about_flex{
		display: flex;
		justify-content: space-around;
	}
	
	.about_left{
		width: 50%;
	
	}
	
	.about_right{
		width: 40%;
	}


}