/*
	共通スタイル
*/

html {
	background-image: url("../img/container.jpg");
	background-size: 100%;
	font-size: 1rem;
	line-height: 1.5;
}

body {
	position: relative;
	max-width: 80rem;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.9);
}
header, section, footer {
	padding: 1rem;
}

h1 {
	color: darkgreen;
	font-size: 3rem;
	text-shadow: 0.3rem 0.3rem 0.3rem lightblue;
	background-color: rgba(224, 255, 255, 0.7);
	border-radius: 3rem;
}

h2 {
	color: darkgreen;
	font-size: 2rem;
}

h3 {
	color: darkgreen;
	font-size: 1.5rem;
}

p {
	font-size: 1rem;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	font-weight: bold;
}

li {
	list-style: none;
}

button {
	font-size: 1rem;
	padding: 0.2rem 1.5rem;
	margin-left: 2rem;
	background-color: lightgray;
	outline: none;
	border-radius: 1rem;
}

button:hover {
	background-color: gray;
}

table {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	border: solid 2px green;
}

thead {
	font-weight: bold;
}

th {
	border-bottom: solid 2px green;
	border-left: solid 1px green;
}

tr td {
	padding: 0.3rem;
	color: black;
	border-top: solid 1px lightgreen;
	border-left: solid 1px lightgreen;
}

/*
	農研機構ヘッダー
*/

#naro-header {
}

#naro-header img {
	float: left;
}

#naro-header ul {
	display: inline-block;
	float: right;
}

#naro-header li {
	display: inline-block;
	padding: 0 1rem;
}

#naro-header li:hover {
	font-weight: bold;
}

/*
	輸送環境解析サイトヘッダー
*/

#transport-header h1 {
	text-align: center;
}

#transport-header h2 {
	text-align: center;
}

#transport-header nav {
	text-align: center;
}

#transport-header nav ul {
	list-style: none;
	padding-left: 0;
}

#transport-header nav li {
	display: inline-block;
	width: 15rem;
	padding: 1rem;
	margin: 0.5rem 0;
	background-color: rgba(255,248,220, 0.8);
}

#transport-header nav li:hover {
	background-color: cornsilk;
}

#transport-header nav a {
	width: 15rem;
	padding: 1rem;
	color: black;
	text-decoration: none;
}

.author {
	text-align: right;
}

.date {
	text-align: right;
}

/*
	官能評価用語サイトフッター
*/

#transport-footer {
	margin-top: 1rem;
	text-align: center;
	background-color: lightcyan;
	border-top: solid 3px green;
}

#transport-footer p {
	color: gray;
	margin: 0;
}

/*
	ページトップ移動ボタン
*/

#to-top {
	opacity: 0.1;
	position: fixed;
	bottom: 5%;
	left: 0;
}

#to-top i {
	font-size: 2rem;
	color: black;
}

#to-top:hover {
	opacity: 0.8;
}

/*
	ページ最後移動ボタン
*/

#to-end {
	opacity: 0.1;
	position: fixed;
	top: 5%;
	left: 0;
}

#to-end i {
	font-size: 2rem;
	color: black;
}

#to-end:hover {
	opacity: 0.8;
}
