/*会社概要*/
.title {
    height: 200px;
    background: url("../img/title-com.png") center top/cover no-repeat;
}
table {
		margin: 50px 20px;
		border-collapse: collapse;
		width: 400px;
}
tr {
		border-bottom: 1px solid #666;
}
tr:first-child {
		border-top: 1px solid #666;
}
td {
		padding-left: 20px;
}
th {
		padding: 30px 0;
}
.box {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
}
.image {
		padding: 50px 0;
}
.image p {
		padding: 0 20px 30px;
}
.image p:last-child {
		padding-bottom: 0px;
}
.image img {
		max-width: 100%;
}

@media screen and (max-width:600px) {
		.title h2 {
				font-size: 28px;
		}
		.title p {
				font-size: 20px;
		}
	th,td{
		display: block;
    width: 100%;
	}
	td{
		text-align: center;
		padding: 0 0 20px;
	}
	th{
		padding:20px 0 5px;
	}
	table{
		margin: 50px auto 0;
		width: 90%;
	}
	.image p{
		margin: 0 auto;
	}
	.box{
		display: block;
	}
}