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

html{
	margin: 0 auto;
	padding: 0;
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

body { 
	background-image:url(dc.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: #464646;
}

h1{
	margin-top: 50px;
	font-size: 25px;
	text-align: center;
	color: #FFFFFF;
	font-weight: 400;
}

a{	
	color: #FFF;
	text-decoration: none;
}

.link{
	display: inline-block;
	position: relative;
}

.link::after {
	content: "";
	width: 0%;
	height: 1px;
	display: block;
	background-color: #fff;
	transition: all .25s linear;
	position: absolute;
	bottom: 0;
	left: 0;
}
.link:hover::after {
	width: 100%;
}

.text{
	display: inline-block;
}

.message{
	width: 800px;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	line-height: 35px;
	letter-spacing: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

/*==============================================
タブレット版　画面の横幅が768pxまで
===============================================*/

@media only screen and (max-width:768px) {
	
h1{
	margin-top: 30px;
	font-size: 20px;
	text-align: center;
	color: #FFFFFF;
	font-weight: 400;
}
	
.link::after {
	display: none;
}
.link:hover::after {
	width: 100%;
}
	
br{
	display: none;
}

.message{
	width: 80%;
	font-size: 15px;
	text-align: justify;
	line-height: 28px;
	letter-spacing: 0;
}
	
}






















