@charset "utf-8";
/* Reset*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
img { border: 0; }
li { list-style-type: none; }
button, input, select, textarea {
font-family : kozuka-gothic-pro, sans-serif;
font-size : 100%;
}


/* Body */
body {
    font-family: kozuka-gothic-pro, sans-serif;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
    font-size: 0.8em;
    background-color: #005A27;
	margin-bottom: 40px;
}


/* common */
/* header */
header {
	position: relative;
	height: 150px;
}

#base-bg1 {
	background-color: #024220;
	height: 24px;
	width:100%;
}

#bg-line {
	background-color: #7BC700;
	height: 1px;
	width:100%;
}

#base-bg2 {
	background-color: #024220;
	height: 18px;
	width:100%;
}

#header-container {
	position: relative;
	width: 700px;
	height: 107px;
	margin: 0 auto;
	display: block;
}

#logo {
	position: absolute;
	left: 0;
	top: -38px;
}

#logo img {
	width: 243px;
}

nav {
	position: absolute;
	bottom: 0;
	right: 0;
	color: #fff;
	padding-bottom: 20px;
}

nav a {
	color: #fff;
}



/* 掲示板 */
#message-board {
	width: 700px;
	background-color: #fff;
	min-height: 300px;
	margin: 0 auto;
	border-radius: 10px;
	padding: 25px;
}

/* 掲示板タイトル行 */
#board-title {
	border-bottom: dotted 4px #9EC9AF;
	position: relative;
	margin-top: 10px;
	margin-bottom: 30px;
}

#board-title svg {
	width: 80px;
	height: 30px;
	overflow: visible;
}

#board-title svg #text1 {
	font-size: 1.7em;
 	stroke: #fff;
    stroke-width: 7;
    stroke-linejoin: round;
	text-shadow: 4px 4px 3px rgba(160,160,160,1.00);
}

#board-title svg #text2 {
    font-size: 1.7em;
	font-weight: bold;
    fill: #024220;
}

#horse-pic {
	position: absolute;
	top: -20px;
	right: 0;
	width: 157px;
	height: auto;
}

#message-board h1 {
    font-size: 1.6em;
	margin-bottom: 10px;
}

.small {
    font-size: 0.8em;
}

#message-board a {
    color: #009245;
}


.error_message {
	color:#f44336;
}

.message {
	color:#2196F3;
}


.align_c {
	text-align:center;
}


#pagetop {
	position:fixed;
	bottom:15px;
	right:15px;
	background:rgba(255,255,255,.3);
	border-radius:20px;
	text-align:center;
	font-size:32px;
	font-weight:600;
	color:#333;
	width:40px;
	height:40px;
	line-height:38px;
	cursor: pointer;
	display:none;
}

#loader {
	position:fixed;
	top:0;
	left:0;
	opacity:1;
	width:100%;
	height:100%;
	z-index:10000;
	background:#fff;
}

#loader img {
	position:absolute;
	top:45%;
	left:48%;
}


/*===============================================
700px for mobile
===============================================*/
@media screen and (max-width:700px){

#bg-line,
#base-bg2,
#base-bg1 {
	width:700px;
}

}/* @media */


