@charset "utf-8";


/* -- form.form-area -------------------------------------------------------------------------------- */

form.form-area {
	width: 960px;
	margin: 40px auto;
	padding: 5px 0;
	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.form-area dl {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
}

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

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

form.form-area dl dt:first-child,
form.form-area dl dt:first-child+dd {
	border: none;
}

form.form-area dl dt span {
	display: block;
	font-size: 80%;
	color: #3377ff;
}


form.form-area input[type="text"],
form.form-area input[type="date"] {
	height: 2em;
	padding: 2px 2%;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	font-family: inherit;
	-webkit-appearance: none;
	font-size: 100%;
}

form.form-area input.title {
	width: 80%;
}

form.form-area input.name {
	width: 50%;
}

form.form-area textarea {
	display: block;
	width: 90%;
	height: 200px;
	padding: 2px 2%;
	resize: vertical;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	font-family: inherit;
	-webkit-appearance: none;
	font-size: 100%;
}

form.form-area input[type="text"]:focus,
form.form-area input[type="date"]:focus,
form.form-area textarea:focus {
	box-shadow: 0px 0px 5px #55ccff;
	border: 1px solid #55ccff;
	background: #ffffff;
}

form.form-area select {
	font-size: 100%;
	font-family: inherit;
	margin-top: 5px;
}


form.form-area p.submit {
	width: 90%;
	margin: 0 auto;
	padding: 15px 0;
	border-top: 1px solid #cccccc;
}

form.form-area input[type="button"] {
	display: inline-block;
	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;
	-webkit-appearance: none;
	font-size: 100%;
}

form.form-area input[type="button"]:hover {
	cursor: pointer;
	background: #449d44;
	border: 1px solid #398439;
}


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

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

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

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

form.form-area dl dd span {
	display: block;
	color: #ff0000;
	margin-top: 3px;
}

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 -------------------------------------------------------------------------------- */

div.bbs-post {
	width: 960px;
	margin: 40px auto;
	padding: 20px 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:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

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

div.bbs-post h2 span.new-label,
div.bbs-post h3 span.new-label {
	display: inline-block;
	font-size: 64%;
	color: #ffffff;
	line-height: 1;
	padding: 9px 9px;
	background: #f0ad4e;
	border: 1px solid #eea236;
	border-radius: 3px;
	margin-right: 10px;
}

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

div.bbs-post h2 span.delete,
div.bbs-post h3 span.delete {
	background: #d9534f;
	border: 1px solid #d43f3a;
}

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

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

div.bbs-post ul li {
	display: inline;
	margin-left: 30px;
	font-size: 80%;
	color: #999999;
}

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

div.bbs-post p {
}

div.bbs-post div {
	width: 90%;
	margin: 20px auto 0;
	padding: 15px 0;
	background: rgba( 255, 255, 255, 0.7 );
	border: 1px solid #cccccc;
	border-radius: 7px;
}

div.bbs-post div.golf-post {
	width: 90%;
	margin: 0 auto;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0px;
}

div.bbs-post div.golf-post:after,
div.bbs-post div.golf-post dl:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

div.bbs-post div.golf-post dl {
}

div.bbs-post div.golf-post dl dt {
	clear: left;
	width: 5em;
	float: left;
}

div.bbs-post div.golf-post dl dd {
	padding-left: 5em;
}

div.bbs-post div.golf-post dl dd:before {
	content: " ： ";
}




/* -- div#page-top -------------------------------------------------------------------------------- */

div#page-top {
	display: none;
	width: 50px;
	height: 50px;
	background: #ffffff;
	position: fixed;
	right: 2.5%;
	bottom: 20px;
	z-index: 10;
	border-radius: 3px;
	opacity: 0.9;
	box-shadow: 0 0 5px rgba( 0, 0, 0, 0.2 );
}

div#page-top:hover {
	cursor: pointer;
	color: #106dff;
	background: rgba( 0, 0, 0, 0.1 );
}

div#page-top span#arrow-up {
	position: absolute;
	top: 11px;
	left: 10px;
}

div#page-top span#arrow-up:before {
	display: inline-block;
	font-family: sans-serif;
	content: "▲";
	line-height: 1;
	font-size: 200%;
}








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

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


form.form-area {
	width: 95%;
}

form.form-area dl {
	overflow: visible;
}

form.form-area dl dt {
	width: auto;
	float: none;
	padding: 20px 0 10px;
	text-align: left;
}

form.form-area dl dd {
	width: auto;
	float: none;
	border-top: none;
	padding: 0 0 20px 0;
}

form.form-area dl dt span {
	margin-right: 15px;
}

form.form-area p.submit input[type="button"] {
	margin-left: 0;
}




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

div.bbs-post h2 span.delete,
div.bbs-post h3 span.delete {
	clear: both;
}

div.bbs-post ul {
	margin: 15px auto;
}

div.bbs-post ul li {
	display: block;
	margin-left: 0;
}

div.bbs-post div.golf-post dl dt {
	width: auto;
	float: none;
	font-weight: bold;
	margin-top: 20px;
}

div.bbs-post div.golf-post dl dt:first-child {
	margin-top: 0;
}

div.bbs-post div.golf-post dl dd {
	padding-left: 0em;
}

div.bbs-post div.golf-post dl dd:before {
	content: normal;
}


}
/* 1000pixel end */
