@charset "UTF-8";
/* CSS Document */
/* main *********/
#main {
	display:block;
	width:100%;
	margin:0 auto;
}
#main p {
	line-height:2em;
}
/* メールフォームメイン *********/
#form {
	background-image:url(../images/contact.png);
	width:744px;
	height:430px;
	margin:10px auto 20px auto;
	padding:40px;
	color:#666;
}
#form h2 {
	text-align:center;
	margin-bottom:20px;
	font-size:14px;
}

#form p {
	font-size:18px;
	margin:0 auto;
	text-align:left;
}

label {
	display:inline-block;
	width:100px;
	margin:5px auto;
	vertical-align:top;
	font-size:14px;
}
input[type="text"] ,input[type="email"] {
	padding:3px;
}
textarea {
	padding:5px;
	resize:none;
	overflow:auto;
}
input[type="submit"] {
	width:106px;
	height:30px;
	margin-top:15px;
	margin-left:105px;
	color:#FFFFFF;
	background-color:#999;
	cursor:pointer;
	border-radius:3px;
}
input[type="submit"]:hover {
	color:#000000;
	background-color:#FF3300;
}
/* メール注意書き *********/
#coution {
	padding-left:80px;
	margin-bottom:20px;
}
#coution ul li {
	list-style-type:square;
	list-style-position:inside;
}
.frame {
	display: inline-block;
	position: relative;
}
.frame:after {
	position: absolute;
	content: "";
	box-shadow: 0 15px 10px rgba(0,0,0, .5); /* シャドウ */
	transform: rotate(3deg); /* 回転させる */
	right: 5px;
	left: auto;
	top: auto;
	bottom: 15px;
	z-index: -1;
	width: 50%;
	height: 20%;
}
