header {
  background-color: #121d50;
}
main {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}
 
 
p {
	line-height: 2;
	width: 100%;
	display: inline-block;
	padding-right: 10px;
	box-sizing: border-box;
	vertical-align: top;
	margin: 0;
}
.title_banner {
	width: "387px";
	height: "40px";  
}
.imgarea {
	height: 150px;
	width: calc(40% - 6px);
	background-color: #ccc;
	display: inline-block;
}
.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 400px;
	height: 40px;
	color: #333;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
}

.btn a:hover {
	color: #f2f2f2;
}

.btn02 a {
	background-color: #add8e6;
	border: 1px solid #add8e6;
	border-radius: 35px;
}

.btn02 a:hover {
	background-color: #87ceeb;
	border: 1px solid #333;
}

.btn02 a::before {
	content: '';
	position: absolute;
	top: calc(50% - 5px);
	right: -35px;
	transform: rotate(30deg);
	width: 12px;
	height: 1px;
	background-color: #333;
}

.btn02 a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -35px;
	transform: translateY(-50%);
	width: 70px;
	height: 1px;
	background-color: #333;
}
table {
	width: 100%;
	border-collapse: collapse;
}
 
th,td {
	border: solid 1px;
	padding: 10px;
}
td.rank { text-align: left; }
td.name { text-align: center; }
td.val { text-align: right; }
 
@media screen and (max-width:480px) {
	header {
  		background-color: #121d50;
	}
	p {
		width: 100%;
		margin: 0px 0 10px 0;
	}
 
	main {
		width: 100%;
	}
	.title_banner {
		width: 100%; 
	} 
	.imgarea {
		width: 100%;
	}
	.btn a{
		width: 100%;
	}
 
	table {
		min-width: 500px;
	}
	.table_wrap {
		width: 100%;
		overflow-x: scroll;
	}
}