@charset "shift_jis";
/* CSS Document */

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Arial','Meiryo UI','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

a:link { color: #fff; }
a:visited { color: #fff; }
a:hover { color: #ff0000; }
a:active { color: #ff8000; }

body{
    min-height: 100vh;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    background-color: #DDDDDD;
}

header {
	padding: 0px 10px 50px 10px;
	background-color: #004400;
	color: #ffffff;
	display: block;
	text-align: center;
	text-decoration: none;
}

.top  {

	width: 80%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	margin-bottom: 10px;
}

.button {
	border: 2px #FFFFFF solid;
	padding: 3px 20px;
	border-radius: 30px;
	color: #FFFFFF;
	text-decoration: none;
	margin-bottom: 20px;
}

main {
	padding: 0px 10px 100px 10px;
	background-color: #004400;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
}

img {
	width: 80%;
	max-width: 80%;
	height: auto;
	vertical-align: middle;
}

.col {
	float: left;
	padding: 0px 7px 14px;
	width: 50%;
}

.row{
	margin-left: 50px;
	margin-right: 50px;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}

.boshu{font-size: 50px;
}

.news{
    font-size: 40px;
    margin-top: 50px;
	margin-bottom: 5px;
}

.newscontents{
    height: 200px;
    overflow: auto;
    background-color: #004400;
    padding-left: 30px;
    padding-right: 30px;
    font-size: large;
    color: #fff;
    margin-top: 0px;
	margin-left: 10px;
	margin-right: 10px;
}

.newscontents table.newstable{
  border-color:#888888;
  border-collapse: collapse;
}

.newscontents table.newstable th{
  padding: 10px;
  width:auto;
  text-align: left;
  vertical-align: top;
}

.newscontents table.newstable td{
  padding: 10px;
  width:auto;
  text-align: left;
}

.newscontents table.newstable th span{
  color: #ffd700;
}

.footer{
    height: 150px;
    background-color: #004400;
    vertical-align: middle;
    text-align: center;
    color:#fff;
}

h1 {
	font-size: 50px;
	margin-bottom: 10px;
}

h2 {
	font-size: 30px;
	font-weight: 200;
	margin-bottom: 10px;
}

h3 {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 120px;
}

h4 {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 35px;
}

p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 35px;
}

/*Tablet View*/

@media (min-width: 768px){
	
	body {
		max-width: 778px;
	}

	h1 {
		font-size: 55px;
	}
	
	h2 {
		margin-bottom: 16px;
	}
	
	.top{
		width:auto;
	}
	
	.col-md-one-half {
		width: 50%;
	}
	.row{
		margin-left: 150px;
		margin-right: 150px;
	}
	.col {
		float: left;
		padding: 0px 3px 14px;
	}
}

/*Desktop View*/

@media (min-width: 1024px){
	
	body {
		max-width: 1200px;
	}
	
	h4 {
	font-size: 20px;
	font-weight: 200;
	margin-bottom: 35px;
	}
	
	.top{
		width:auto;
	}

	.col-lg-one-fourth {
		width: 25%;
	}
	.newscontents{
    height: 500px;
    overflow: auto;
    background-color: #004400;
    padding-left: 30px;
    padding-right: 30px;
    font-size: large;
    color: #fff;
    margin-top: 0px;
	margin-left: 10px;
	margin-right: 10px;
	}
}

