/*----- タブ -----*/
#tab {
	margin: 0 auto;
	width: 950px;
	height: 100px;
	box-sizing: border-box;
	border-top: 1px solid #CCC;
	list-style: none;
}
#tab li {
	display: block;
	box-sizing: border-box;
	border-left: 1px solid #CCC;
	width: 190px;
	height: 100px;
	background-color: #3d3b47;
	float: left;
}
#tab li:last-child {
	border-right: 1px solid #CCC;
}
#tab li a {
	display: block;
	color: #FEFEFE;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	height: 100px;
	box-sizing: border-box;
	padding-top: 35px;
}
#tab li a span {
	font-size: 12px;
	font-weight: normal;
}
#tab li a:hover, .tab_selected {
	background-color: #D13672;
}

/*----- テーブルの外側 -----*/
.table_frame {
	width: 950px;
	margin: 0 auto;
	margin-bottom: 70px;
	border: 1px solid #CCC;
	background-color: #F2F2F2;
	padding-bottom: 40px;
}
.table_frame h2 {
	float: left;
	color: #333;
	font-size: 16px;
	line-height: 50px;
	margin-left: 70px;
}
#liquids h2:nth-child(2), #weight h2:nth-child(2) {
	margin-left: 110px;
}
#other h2:nth-child(2) {
	margin-left: 190px;
}
#other h2:nth-child(n+3) {
	margin-left: 32px;
}
#other h2:nth-child(8) {
	margin-left: 40px;
}
#temp h2:nth-child(2) {
	margin-left: 130px;
}
#length h2:nth-child(2) {
	margin-left: 80px;
}
.table_frame p {
	margin: 15px 60px;
	margin-bottom: -25px;
}

/*----- テーブル -----*/
table {
	margin: 0 auto;
	width: 880px;
	background-color: #FFF;
	border-radius: 5px;
	border-collapse:collapse
}
#temp table {
	background-image: url(../img/temp.png);
	background-repeat: no-repeat;
	background-position: right 80px center;
}
#length table {
	background-image: url(../img/length.png);
	background-repeat: no-repeat;
	background-position: right 30px center;
}

table tr {
	border-bottom: 1px solid #E6E6E6;
}
table tr:last-child {
	border: none;
}
#liquids table tr, #weight table tr, #length table tr {
	height: 80px;
}
#other table tr, #temp table tr {
	height: 60px;
}
#liquids table tr:last-child {
	height: 200px;
}
#other table tr:first-child {
	height: 90px;
}

table tr td {
	color: #333;
	font-size: 16px;
	font-weight: bold;
}
table tr td:first-child {
	padding-left: 40px;
}
#liquids table tr td:first-child {
	width: 200px;
}
#liquids table tr td:nth-child(2) {
	width: 330px;
}
#liquids table tr:last-child td:first-child, #liquids tr:last-child td:nth-child(2) {
	vertical-align: top;
	line-height: 80px;
}
#weight table tr td:first-child {
	width: 230px;
}
#weight table tr td:nth-child(2) {
	width: 290px;
}
#other table tr td:first-child {
	width: 290px;
}
#other table tr td:nth-child(n+2) {
	width: 80px;
	box-sizing: border-box;
	text-align: right;
	padding-right: 30px;
}
#other table tr td:last-child {
	width: 110px;
	box-sizing: border-box;
	text-align: left;
	padding-left: 30px;
}
#other table tr:first-child td:nth-child(n+2) {
	padding: 0;
}
#other table tr:first-child td:last-child {
	box-sizing: border-box;
	padding-left: 10px;
}
#temp table tr td:first-child, #length table tr td:first-child {
	width: 230px;
}
#temp table tr td:nth-child(2) {
	width: 210px;
}
#length table tr td:nth-child(2) {
	width: 170px;
}

#liquids table tr:last-child td img {
	padding: 15px 0;
}
