/*
ページデザインのcss
*/

header{
	z-index: 10;
	height: 64px;
	background-color: #F8F8F8;
	text-align: center;
	z-index: 2;
	box-sizing: content-box;
	margin: 0 auto;
}

.title{
	background-color: #6EAEE8;
	height: 120px;
	color: #FFFFFF;
	font-size: 90px;
	text-align: left;
	margin: 0 auto;
	padding-left: 50px;
}

header ul{
	overflow: hidden;
	list-style: none;
	margin: 0 auto;
	z-index: 20;
}

header ul li{
	display: inline-block;
	padding: 26px 10px 20px 10px;
}

a{
	color: #838383;
	text-transform: upparcase;
}
a:link, a:visited, a:hover, a:active{
	color: #828282;
}

.btn4{
	text-transform: uppercase;
	text-align: center;
	position: relative;
	text-decoration: none;
	display:inline-block;
}

.btn4::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: #3367ff;
	display: block;
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
	transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}

.btn4:hover::before {
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1)
}

.btn2{
	text-transform: uppercase;
	text-align: center;
	position: relative;
	text-decoration: none;
	display:inline-block;
	border-bottom: 2px solid #5E9EE8;
}

.main{
	background-color: aliceblue;
	text-align: left;
	margin: 0 auto;
	padding: 5px;
}

table{
	color: white;
	padding: 10px;
	width: 95%;
}

tr{
	background-color: #fff;
	color: black;
}

tr:nth-child(odd){
	background-color: #ddd;
	color: black;
}

th{
	align: center;
}

td{
	padding: 10px;
}

.all_items{
	width: 1100px;
	margin: 0 auto;
	background-color: dimgray;
	padding-bottom: 30px;
}

.btn_dl{
	height: 100px;
	padding-top: 30px;
}

.btn_dl a{
	border-radius: 10px;
	font-size: 30px;
	color: white;
	background: royalblue;
	padding: 18px 30px;
	transition: .3s;
	margin-top: 20px;
	text-decoration: none;
}

.btn_dl a:hover{
	background: mediumblue;
}

.btn_false{
	border-radius: 10px;
	font-size: 30px;
	color: white;
	background: royalblue;
	padding: 18px 30px;
	transition: .3s;
	text-decoration: none;
	max-width: 400px;
}

.btn_false:hover{
	background: mediumblue;
}