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

* {
    margin: 0px;
    padding: 0px;
}


html {
	height: 100%;
}
body {
	background: #fff;
	height: 100%;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	color:#666;
}
.wrap{
	display: table;
    width: 100%;
	height: 100%;
}
.box{
  display: table-cell;
  vertical-align: middle;
}
.logo {
	text-align: center;
}
.logo img{
	width: 100%;
	max-width: 800px;
}
.main-text{
	margin: 0 auto;
	max-width: 640px;
	text-align: center;
	}
.links{
	margin: 100px 0 40px;
	width: 100%;
	text-align: center;
}
.links a{
	padding: 20px 30px;
	background: #004689;
	border-radius: 10px;
	font-size: 24px;
	color:#fff;
	text-decoration: none;
			
}
.link-text{
	text-align: center;
}
@media screen and (max-width: 768px) {
  /* 画面幅が768px以下のときに適用されるスタイル */
  body {
    font-size: 14px;
  }
	.links a{
		padding: 16px 20px;
		font-size: 18px;
	}
}
