@charset "utf-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

/********* base *********/

body {
	width: 100%;
	background-color: #389CDA;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a:link, a:visited, a:active, a:hover {
	text-decoration: none;
	color: #2980b9;
}
a:active, a:hover {
	text-decoration: underline;
}
a:active {
	color: #c0392b;
}
a:hover {
	color: #d35400;
}

/********* header-menu *********/

body:after {
	content: '';
	display: block;
	width: 100%;
	height: 134px;
	top: 200px;
	left: 0px;
	background-color: rgba(255, 255, 255, 0.6);
	position: absolute;
	z-index: 1;
}
#header-menu {
	position: relative;
	height: 334px;
	background: #389CDA url('../images/header11.png') right -40px no-repeat;
	z-index: 2;
	
    margin: 0 auto;
    width: 790px;
}
#header-menu header {
	position: absolute;
	left: 30px;
	top: 20px;
	font-size: 5.0rem;
	text-shadow: 1px 1px 3px #2980b9;
	width: 5.5em;
}
#header-menu header h1 a {
	color: #fff;
}
#header-menu header h1 a:active, #header-menu header h1 a:hover {
	text-decoration: underline;
	text-shadow: 1px 1px 1px #e74c3c;
}
#header-menu header h1:first-letter {
	margin-left: 2em;
}
#header-menu nav {
	position: absolute;
	left: 0px;
	top: 200px;
	width: 100%;
	text-align: right;
	background-color: rgba(255, 255, 255, 0.6);
}
#header-menu nav ul {
	text-align: right;
	display: inline-block;
	width: 500px;
	overflow: hidden;
	margin-bottom: -3px;
}
/* Firefox hack */
@-moz-document url-prefix( ){
	#header-menu nav ul {
		margin-bottom: 0px;
	}
}
/* Chrome hack */
@media screen and (-webkit-min-device-pixel-ratio : 0 ) {
	#header-menu nav ul {
		margin-bottom: 0px;
	}
}

#header-menu nav ul li {
	display: inline-block;
	height: 70px;
	line-height: 70px;
	text-align: center;
	
	border: 3px solid #3498db;
	border-bottom: none;
	margin-top: -3px;
	margin-left: -3px;
		
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}
#header-menu nav ul li a {
	display: block;
	padding: 0px 50px;
	color: #2c3e50;
	font-weight: bold;
	text-shadow: -1px -1px 1px #fff;
	text-decoration: none;
}
#header-menu nav ul li:hover {
	background-color: rgba(255, 255, 255, 0.9);
}

/********* content *********/

#title {
	color: #3498db;
	padding: 20px 10px 10px;
	font-size: 2.0rem;
	text-align: center;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
	
	background-color: #fff;
}
#content-area {
	margin-top: -1px;
	width: 100%;
	background-color: #fff;
}
#main {
    margin: 0 auto;
    width: 790px;
	color: #34495e;
}
#main section h1 {
	color: #3498db;
	font-size: 1.3rem;
	text-align: left;
}
#main section div > *, #main section > *:not(div) {
	margin: 0.9em 0px;
	line-height: 1.2;
}
#main section:first-child h1 {
	margin-top: 0px;
}

#main dl.history {
	margin-top: -10px !important;
}
#main dl.history dt,
#main dl.history dd {
	display: inline-block;
	vertical-align: middle;
}
#main dl.history dt {
	width: 200px;
	height: 50px;
	line-height: 50px;
}
#main dl.history dd {
	width: 560px;
}

.read-more {
	background-color: transparent;
	width: 100% !important;
	
	-webkit-transition: background-color 0.3s ease, color 0.3s ease;
	-moz-transition: background-color 0.3s ease, color 0.3s ease;
	transition: background-color 0.3s ease, color 0.3s ease;
	cursor: pointer;
}
.read-more:hover {
	background-color: #3498db;
	color: #fff;
}

table.about-admin {
	width: 100%;
	border-collapse: separate;
}
table.about-admin th {
	width: 5em;
	text-align: left;
	border-left: 12px solid;
	border-top: 6px solid white !important;
	border-bottom: 6px solid white !important;
	padding: 0.5em;
	font-weight: bold;
}
table.about-admin tr:nth-child(1) th { border-color: #2c3e50; }
table.about-admin tr:nth-child(2) th { border-color: #3498db; }
table.about-admin tr:nth-child(3) th { border-color: #e67e22; }
table.about-admin tr:nth-child(4) th { border-color: #2ecc71; }
table.about-admin tr:nth-child(5) th { border-color: #95a5a6; }
table.about-admin td {
	padding-left: 1em;
}

/********* footer *********/

footer {
	display: block;
	background-color: #3498db;
	color: #ecf0f1;
	text-align: right;
	padding: 1em 2em;
	width: 100%;
	font-size: 0.8rem;
}








