@charset "utf-8";

.cl_clear{
	clear: both;
}

body {
	width: 320px;
	margin: 0 auto;
	background-color: white;
}


a {
	/*文字関連*/
	font-family: cursive;
	color: black;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
	text-shadow: 2px 2px 4px gray;
	
	/*枠関連*/
	border: solid 1px dimgray;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	box-shadow: 2px 2px 6px black;
	
	/*枠　背景*/
	background: palegreen;
	background: -webkit-linear-gradient(white, palegreen);
	background: -moz-linear-gradient(white, palegreen);
	background: -o-linear-gradient(white, palegreen);
	background: linear-gradient(white, palegreen);
}

h1 {
	color: darkviolet;
	text-shadow: 2px 2px 4px white;	
	font-size: 14pt;
	
	display: block;
	margin: 2px auto;
	border: solid 1px mediumorchid;
	padding: 4px;
	
	background: plum;
	background: -webkit-linear-gradient(plum 0%, white 50%, plum 100%);
	background: -moz-linear-gradient(plum 0%, white 50%, plum 100%);
	background: -o-linear-gradient(plum 0%, white 50%, plum 100%);
	background: linear-gradient(plum 0%, white 50%, plum 100%);
}

h1 > a {
	font-size: 10pt;
	text-shadow: none;
	
	display: block;
	float: left;
	margin-top: -4px;
	margin-right: 10px;
	padding: 5px 6px;
}

h2 {
	color: darkviolet;
	font-size: 12pt;
	
	display: block;
	margin: 6px auto 2px;
	padding: 4px;
	
	background: rgb(255,204,255);
}

p {
	color: rgb(51,51,51);
	font-size: 10pt;
	line-height: 1.2;
	
	display: inline-block;
	margin-top: 2px;
}

