@charset "UTF-8";
/* CSS Document */
/*===================================================
 レイアウト
===================================================*/
*{
	padding: 0;
	margin: 0;
	list-style: none;
}

.michroma-regular {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*===================================================
 ヘッダー
===================================================*/

body{
	background-color: #f7fff6;
}

header{
	width: 100%;
	margin: auto;
	padding-top: 10px;
	background-color: #ebebeb;
	border-bottom: 10px solid #81a557;
	position: fixed;
	top: 0;
	left: 0;
}


header h1,h2{
	display: flex;
	justify-content: center;
}

div#navigation{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

div#navigation p{
	font-size: 24px;
	margin-left: 130px;
	font-weight: bold;
	color: #ff6a6a;
}

h2{
	font-size: 30px;
	color: #81a557;
}

nav ul{
	margin-right: 130px;
	display: flex;
}

nav ul li{
	margin-left: 50px;
	
}

nav ul li a{
	text-decoration: none;
	
}

nav ul li a:hover{
	color: #81a557;
}

/*===================================================
 メイン画像
===================================================*/

div#wrapper{
	width: 1200px;
	margin: 0 auto;
	margin-top: 170px;
}

img{
	width: 100%;
	height: auto;
} 

h3{
	width: 550px;
	margin: 50px auto;
	font-size: 24px;
	display: flex;
	justify-content: center;
	background-color: #f7ec70;
	border-radius: 10px;
	border: 5px solid #b1ce8f;
}

#gaiyou{
	width: 1200px;
	height: 140px;
	display: flex;
	border-top: 1px dashed #7a7a7a;
	border-bottom: 1px dashed #7a7a7a;
}

#gaiyou h4{
	width: 240px;
	font-size: 18px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

#gaiyou p{
	width: 1080px;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#table{
	width: 1200px;
	display: flex;
	justify-content: center;	
}


/*===================================================
 テーブル
===================================================*/

table{
	width: 1080px;
	margin: 50px 0;
	border: 2px solid #000;
	border-collapse: collapse;
}

#table h4{
	width: 240px;
	margin: 40px auto;
	font-size: 18px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

#table thead th{
	padding: 5px;
	background-color: #b1ce8f;
	font-size: 18px;
	border: 2px solid #000;
}

#table tbody th,#table td{
	padding: 5px;
	border: 1px solid #000;
	text-align: center;
	background-color: #edeaea;
}

#table tfoot tr td{
	text-align: left;
}

/*===================================================
 フッター
===================================================*/

footer{
	width: 100%;
	height: 50px;
	background-color: #ebebeb;
	display: flex;
	justify-content: center;
	align-items: center;
}










