@charset "utf-8";


form#bbs-form{
	width : 600px;
	margin : 40px auto;
	background : rgba( 255, 255, 255, 0.9 );
	border : 1px solid #cccccc;
	border-radius : 7px;
	box-shadow : 0 0 7px rgba( 0, 0, 0, 0.2 );
}

form#bbs-form dl{
	width : 90%;
	margin : 0 auto;
	overflow : hidden;
}

form#bbs-form dl dt{
	clear : both;
	width : 30%;
	float : left;
	border-top : 1px solid #cccccc;
	padding : 15px 0;
	text-align : right;
}

form#bbs-form dl dd{
	width : 65%;
	float : left;
	border-top : 1px solid #cccccc;
	padding : 20px 0 15px 5%;
}

form#bbs-form dl dt:first-child,
form#bbs-form dl dt:first-child+dd{
	border : none;
}

form#bbs-form dl dt span{
	display : block;
	font-size : 85%;
	color : #3377ff;
}


form#bbs-form input#title,
form#bbs-form input#name{
	height : 2em;
	padding : 2px 2%;
	border : 1px solid #cccccc;
	border-radius : 3px;
	background : #fafafa;
}

form#bbs-form input#title{
	width : 80%;
}

form#bbs-form input#name{
	width : 50%;
}

form#bbs-form textarea#contents{
	width : 90%;
	height : 200px;
	padding : 2px 2%;
	resize : vertical;
	border : 1px solid #cccccc;
	border-radius : 3px;
	background : #fafafa;
}

form#bbs-form input#title:focus,
form#bbs-form input#name:focus,
form#bbs-form textarea#contents:focus{
	box-shadow : 0px 0px 5px #55ccff;
	border : 1px solid #55ccff;
	background : #ffffff;
}


form#bbs-form p.submit{
	width : 90%;
	margin : 0 auto;
	padding : 15px 0 20px;
	border-top : 1px solid #cccccc;
}
form#bbs-form p.submit input{
	width : auto;
	height : auto;
	margin-left : 35%;
	padding : 9px 15px;
	vertical-align : middle;
	line-height : 1;
	background : #5cb85c;
	border : 1px solid #4cae4c;
	border-radius : 3px;
	color : #ffffff;
	font-family : inherit;
}

form#bbs-form p.submit input:hover{
	cursor : pointer;
	background : #449d44;
	border : 1px solid #398439;
}


/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

form#bbs-form dl dt span.required,
form#bbs-form dl dt span.optional{
	display : inline-block;
	float : left;
	color : #ffffff;
	padding : 3px 9px;
	border-radius : 3px;
}

form#bbs-form dl dt span.required{
	background : #d9534f;
	border : 1px solid #d43f3a;
}

form#bbs-form dl dt span.optional{
	background : #337ab7;
	border : 1px solid #2e6da4;
}

form#bbs-form dl dd span{
	display : block;
	color : #ff0000;
}

span.loading{
	width : 50px;
	height : 50px;
	border-radius : 50%;
	border-top : 5px solid rgba( 255, 255, 255, 0.2 );
	border-right : 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom : 5px solid rgba( 255, 255, 255, 0.2 );
	border-left : 5px solid #ffffff;
	-webkit-transform : translateZ( 0 );
	-ms-transform : translateZ( 0 );
	transform : translateZ( 0 );
	-webkit-animation : load-circle 1.0s linear infinite;
	animation : load-circle 1.0s linear infinite;
	position : absolute;
	top : 50%;
	left : 50%;
	margin-top : -25px;
	margin-left : -25px;
}

@-webkit-keyframes load-circle{
	0%{
		-webkit-transform : rotate( 0deg );
		transform : rotate( 0deg );
	}
	100%{
		-webkit-transform : rotate( 360deg );
		transform : rotate( 360deg );
	}
}

@keyframes load-circle{
	0%{
		-webkit-transform : rotate( 0deg );
		transform : rotate( 0deg );
	}
	100%{
		-webkit-transform : rotate( 360deg );
		transform : rotate( 360deg );
	}
}


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */




div.bbs-post{
	width : 600px;
	margin : 40px auto;
	padding : 15px 0 25px;
	background : rgba(255, 255, 255, 0.9);
	border : 1px solid #cccccc;
	border-radius : 7px;
	box-shadow : 0 0 7px rgba( 0, 0, 0, 0.2 );
}

div.bbs-post h2{
	width : 90%;
	margin : 0 auto;
	padding-bottom : 3px;
	font-size : 120%;
	border-bottom : 1px dotted #cccccc;
	overflow : hidden;
}

div.bbs-post h2 span.new-label{
	display : inline-block;
	font-size : 50%;
	color : #ffffff;
	padding : 3px 7px;
	background : #f0ad4e;
	border : 1px solid #eea236;
	border-radius : 3px;
	margin-right : 10px;
	position : relative;
	top : -3px;
}

div.bbs-post h2 span.delete{
	display : block;
	float : right;
	font-size : 80%;
	width : auto;
	height : auto;
	padding : 9px 15px;
	margin-left : 10px;
	margin-bottom : 5px;
	vertical-align : middle;
	line-height : 1;
	background : #d9534f;
	border : 1px solid #d43f3a;
	border-radius : 3px;
	color : #ffffff;
}

div.bbs-post h2 span.delete:hover{
	cursor : pointer;
	background : #c9302c;
	border : 1px solid #ac2925;
}

div.bbs-post h2 span.delete{
}

div.bbs-post ul{
	width : 90%;
	margin : 0 auto 5px;
	list-style-type : none;
}

div.bbs-post ul li{
	display : inline;
	font-size : 85%;
	color : #999999;
	margin-left : 1.5em;
}

div.bbs-post ul li:first-child{
	margin-left : 0;
}

div.bbs-post p{
	width : 90%;
	margin : 0 auto;
}








/* --responsive------------------------------------------- */

/* 640pixel start */
@media screen and ( max-width : 640px ){


form#bbs-form{
	width : 95%;
}

form#bbs-form dl{
	overflow : visible;
}

form#bbs-form dl dt{
	width : auto;
	float : none;
	padding : 15px 0 7px;
	text-align : left;
}

form#bbs-form dl dd{
	width : auto;
	float : none;
	border-top : none;
	padding : 0 0 15px 0;
}

form#bbs-form dl dt span{
	margin-right : 15px;
}

form#bbs-form input,
form#bbs-form textarea{
	-webkit-appearance : none;
	font-size : 100%;
}

form#bbs-form p.submit input{
	margin-left : 0;
	-webkit-appearance : none;
	font-size : 100%;
}




div.bbs-post{
	width : 95%;
}


}
/* 640pixel end */




