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


/*----------------------------------
feed----------------------------------*/
.feed {
	width: 600px;
	margin: 30px auto;
}
.feed h3 {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}
.required {
	color: #eb3266;
}
.comment-notes {
	margin: 10px 0 20px;
	color: #584f2e;
}
.comment-form-url {
	display: none;
}
.feed label {
	display: block;
	font-weight: bold;
}
.feed input[type=text], .feed textarea {
	border-radius: 5px;
	margin:5px 0 15px;
	width: 100%;
	padding: 2px 5px;
	border: 1px solid #ccc;;
}
.feed textarea {
	padding: 5px;
}
.feed code {
	display: block;
	border: 1px solid #ddd;
	padding: 5px;
}
.form-submit {
	text-align: center;
	margin-top: 50px;
}
.feed input[type=submit] {
	padding: 5px 20px;
	border-radius: 5px;
	background: #0e8d7a;
	color: #fff;
	cursor: pointer;
	border: 0;
	-webkit-box-shadow: 0px 2px 2px 0px rgba(8,83,72,1);
-moz-box-shadow: 0px 2px 2px 0px rgba(8,83,72,1);
box-shadow: 0px 2px 2px 0px rgba(8,83,72,1);
}
/*----------------------------------
smartphone
----------------------------------*/
@media screen and (max-width:667px){
	/*feed*/
	.feed {
		width: 95%;
	}
	.feed input[type=text], .feed textarea {
		width: 90%;
	}
}