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

body{
	background: url("../images/ストライプyellow.jpg");
	color: #665d2a;
	border-top: 10px solid #87a01a;
}

div#wrapper{
	width: 1400px;
	margin: 0 auto;
}

/*===============================================
ヘッダー
===============================================*/
header{
	width: 1400px;
	height: 90px;
}

h2{
	font-size: 36px;
	font-weight: bold;
	margin-top: 20px;
}

div#header_inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 10px;
}

div#header_inner p{
	font-size: 25px;
	font-weight: bold;
	margin: 10px 0 0 10px;
}

nav ul{
	display: flex;
}

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

nav ul li a{
	font-size: 20px;
	font-weight: bold;
	color: #665d2a;
}

nav ul li a:hover{
	color: #87a01a;
	text-decoration: underline 2px solid #87a01a;
}

/*===============================================
メインコンテンツ
===============================================*/
/*===============================================
TOP_メイン画像 + h1
===============================================*/
div#mainimage{
	width: 1400px;
	height:auto;
	overflow: hidden;
	position: relative;
}

div#mainimage h1 {
	color: #fff;
	font-size: 80px;
	line-height: 1.3;
	position: absolute;
	top: 300px;
	left: 100px;
}

h1.mochiy-pop-p-one-regular {
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/*===============================================
BOTTOM_h3
===============================================*/
h3{
	font-size: 30px;
	font-weight: bold;
	margin: 30px;
	text-align: center;
}

/*===============================================
コンテナ全体
===============================================*/
div#container{
	width: 1400px;
	display: flex;
	justify-content: space-between;
}

/*===============================================
コンテナ＿インフォメーション 
===============================================*/
div#information{
	width: 550px;
	margin-right: 30px;
}

div#information h4{
	font-size: 25px;
	font-weight: bold;
	margin: 10px auto;
	background: url("../images/flag_orange.png")no-repeat;
	padding-left: 30px;
	line-height: 25px;
}


main div p{
	height: 150px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
}

/*===============================================
コンテナ＿テーブル
===============================================*/
div#table{
	width: 820px;
}

div#table h4{
	font-size: 25px;
	font-weight: bold;
	margin: 10px auto;
	background: url("../images/flag_blue.png")no-repeat;
	padding-left: 30px;
	line-height: 25px;
}

div#table table{
	background-color: #fff;
	border: 2px solid black;
	margin: 0 auto;
	border-collapse: collapse;
}

colgroup col.col1{
	width: 300px;
}

colgroup col.col2{
	width: 380px;
}

colgroup col.col3{
	width: 136px;
}

thead tr{
	border-bottom: 2px solid black;
	background-color: #c7d0a2;
}

thead tr th{
	font-size: 18px;
	text-align: center;
}

th,td{
	font-size: 16px;
	border-bottom: 1px dotted black;
	padding: 13px;
	border-collapse: collapse;
	text-align: left;
}

tfoot tr td{
	font-size: 14px;
}

/* ========================================
フッター
========================================= */
footer{
	width: 100%;
	height: 30px;
	margin-top: 30px;
	background-color: #87a01a;
}

footer p{
	font-size: 15px;
	text-align: center;
	line-height: 30px;
}

