@charset "utf-8";


/*------------------------------------------------------------*/
/* リセットCSS */
/*------------------------------------------------------------*/
body {
	margin: 0;
	padding: 0;
}

#wrapper{
	position:relative;
}

/*------------------------------------------------------------*/
/* レイアウトCSS */
/*------------------------------------------------------------*/

body{
	line-height:1;
	color:#333;
	font-size:12px;
}

#wrapper {
	margin:50px auto;
	width: 1000px;
	height: 680px;
	background: url(../images/bg2-950.jpg) no-repeat;
}

.message{
	position:absolute;
	top:5em;
	left:5em;
/*	margin-left:-110px; */
	width: 20em;
	padding:1em;
	background-color:rgba(255,255,255,0.5);
	
	border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    box-shadow:0px 0px 10px 3px #dddddd;
    -moz-box-shadow:0px 0px 10px 3px #dddddd;
    -webkit-box-shadow:0px 0px 10px 3px #dddddd;
}

/*------------------------------------------------------------*/
/* リンク */
/*------------------------------------------------------------*/

a:link,
a:visited,
a:hover,
a:active{
	color:#333;
	text-decoration:none;
}

