@charset "UTF-8";
/* CSS Document */

#section {
	 width: 70%;
	height: 550px;
	margin: 150px auto;
	
}

.table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
	background-color: white;
}
.table tr {
    border-top: 1px solid #ACACAC;
    border-bottom: 1px solid #ACACAC;
}
.table tr th,
.table tr td {
    padding: 20px 40px;
    text-align: left;
    vertical-align: top;
}
.table tr th {
    width: 25%;
    font-weight: bold;
    background: #F2F2F3;
}
.table tr td {
    width: 80%;
}

@media screen and (max-width: 767px){
	
	#section {
	 width: 80%;
	height: 1000px;
	margin: 100px auto;
	
}
.table tr th,
.table tr td {
	    padding: 20px 15px;
    display: block;
    width: 100%;
	
}
}


/* 装飾 */
*{
  box-sizing: border-box;
}