@charset "utf-8";
/* CSS Document */

body {
	font-family:'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	background:#fff;
	margin: 0;
	padding: 0;
	color: #000;
	background-color: #FFF;
}

table{
  border: solid 2px #ddd;
  width: 100%;
  border-spacing: 0;
}

table th{
  border-bottom: solid 3px #9acd32;
  padding: 5px 0;
  background-color:#6b8e23;
}

table td{
  border-bottom: solid 2px #ddd;
  text-align: left;
  padding: 5px 0;
}

/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 10px;
	padding-left: 10px;
}

h3 {
  padding: 0.3em 0.5em;/*文字の上下 左右の余白*/
  color: #494949;/*文字色*/
  background: #f4f4f4;/*背景色*/
  border-left: solid 7px #1e90ff;/*左線*/
  border-bottom: solid 3px #00008b;/*下線*/
}

h4 {
  padding: 0.3em 0.5em;/*文字の上下 左右の余白*/
  color:#690;/*文字色*/
  border-bottom: dotted 1px #2f4f4f;/*下線*/
}

a img {
	border: none;
}

a:link {
	color: #42413C;
	text-decoration: underline;
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}

.container {
	width: 800px;
	background: #FFF;
	margin: 0 auto; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
}

.header {
	border-bottom: solid 3px #d7d7d7;
	padding: 10px 0;
	background: #ffffff;
	height:55px;
	font-weight: bold;
}

.content {
	padding: 10px 0;
}

/* ~~ フッター ~~ */
.footer {
	padding: 7px 0;
	background: #00008b;
	text-align:center;
	font-size:10px;
	border-bottom:solid 5px #1e90ff;
}

.fltrt { 
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
body,td,th {
	font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
	color: #333;
	font-size: 14px;
}
#footer {
	color: #FFF;
}
#red {
	color: #F00;
}
/*popup表示させたいコンテンツのレイアウトと位置*/
#popup{
  width:30%;
  line-height:100px;
  background:#000;
  box-sizing:border-box;
  display:none;
  position:fixed;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
label{
  display:block;
}
/*ボタンの装飾*/
label span{
  display:block;
  background-color:#01b6ed;
  color:#fff;
  width:200px;
  line-height:40px;
  border-radius:4px;
  text-align:center;
}
label span:hover{
  cursor:pointer;
}
input[type="checkbox"]{
  display:none;
}
/*checkboxがcheckの状態になったらpopupを表示させる*/
input[type="checkbox"]:checked + #popup{
  display:block;
}

nav{
border-bottom: 1px solid #ccc;
}
nav ul{
display: table;
margin: 0 auto;
padding: 0;
width: 80%;
text-align: center;
}
nav ul li{
display: table-cell;
min-width: 50px;
border-right: 1px solid #ccc;
}
nav ul li:first-child{
border-left: 1px solid #ccc;
}

nav ul li a{
display: block;
width: 100%;
padding: 10px 0;
text-decoration: none;
color: #aaa;
}
nav ul li a:hover{
background-color:#9acd32;
border-bottom: 5px solid #6b8e23;
}
nav ul li.menu{
font-weight: bold;
}
nav ul li.menu2{
font-weight: bold;
}
nav ul li.menu a{
text-decoration: none;
border-bottom: 5px solid #6b8e23;
color: #494949;
}
nav ul li.menu2 a{
text-decoration: none;
color: #494949;
}
