@charset "utf-8";
body {
	background-color: black;
	color: white;
	font-size: 16px;
	max-width: 100%;
	text-align: center;
	box-sizing: border-box; /* paddingやborderをwidthやheightに含む */
	font-family: Meiryo,sans-serif;
}
.base {
	margin-left: auto;
	margin-right: auto;
	padding: 0.5em;
	width: 1200px;
	box-sizing: border-box;  /* paddingやborderをwidthやheightに含む */
}
/* アンカータグの基本 */
a:link {
	color: dodgerblue;
	text-decoration: none;
}
a:visited {
	color: dodgerblue;
}
a:active {
	color: white;
}
a:hover {
	color: lightskyblue;
}
/*h1　見出し大のリンク定義。常にトップページへのナビゲーションリンクになる*/
h1 {
	font-size: 2.5em;
	text-align: center;
	font-family: "Arial Black";
	border-top: double 3px silver;
	border-bottom: double 3px silver;
}
.top:link {
	color: white;
}
a.top:visited {
	color: white;
}
a.top:active {
	color: gray;
}
a.top:hover {
	color: lightgray;
}
/* 通常テキストの簡易装飾 */
.text_body {
	text-align: left;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
/* ulでボタン */
.ul_menu {
	list-style-type: none; /*マーカーなし*/
	margin-top: 2em;
	margin-bottom: 2em;
	margin-left: auto;
	margin-right: auto;
	width: 1200px;
	padding: 0;
	display: flex;
	box-sizing: border-box;
	flex-wrap: wrap; /* 2列で改行 */
}
.ul_menu li {
	display: flex;
	width: 600px;
	box-sizing: border-box;
}
.a_button {
	width:600px;
	height:200px;
	display: block;
	padding: 0px;
	margin: 0px;
	text-align: right;
	background-size: auto 100%;
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter:"alpha(opacity=80)";
	position: relative; /* テキストの下揃え用に必要な親要素の設定 */
}
/* フォーカスでボタンを明るくする */
.a_button:hover {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
/* ボタン内のキャプション */
.a_title{
	color: white;
	font-size: 2em;
	font-weight: bold;
	text-shadow: 2px 2px 2px #000,
		-2px 2px 2px #000,
		2px -2px 2px #000,
		-2px -2px 2px #000;
	line-height: 1.2em;
	margin-right: 0.5em;
	margin-left: 0.5em;
	margin-top: 0.5em;
}
.a_caption {
	color: white;
	text-shadow: 1px 1px 1px #000,
		-1px 1px 1px #000,
		1px -1px 1px #000,
		-1px -1px 1px #000;
	margin-right: 1em;
	margin-left: 1em;
	margin-bottom: 1em;
}
/* ボタン内、テキスト下揃え用 */
.button_bottom {
	position: absolute;
	bottom: 0;
	right: 0;
}
h2{
	margin-top: 2em;
	border-bottom: 1px solid silver;
	border-top: 1px solid silver;
	text-indent: 0.5em;
	background-color: #222222;
}
h3{
	text-indent: 0.5em;
	margin-top: 1.0em;
	margin-left: 0.5em;
	border-left: 0.4em solid darkgray;
}
/* サイトマップのリストの左余白調整 */
.sitemap {
	margin-left: 0;
	padding-left: 1em;
}
.sitemap li ul {
	margin: 0 0 0 1em;
	padding: 0;
}
/*ボタンリンクをリストで記述。*/
.ul_sublink{
	margin-top:2em;
	list-style:none;
	padding-left:1em;
	overflow:hidden;
}
/*サブリンク、画像なしテキストリンク*/
.sublink{
	height:2em;
	text-decoration:none;
	padding:0.8em 0px 0px;
	float:left;
}
.sublink:after{
	content:"│";
	color:#999999;
}
.sublink:before{
	content:"│";
	color:#999999;
}
.sublink:hover{
	background:#002244;
}
/*ツールチップ表示*/
.tooltip:hover {
	/* 位置 */
	position: relative;
	text-align:center;
}
.tooltip:hover:after {
	content: attr(title);
	/* 位置 */
	position: absolute;
	right:-32px;
	bottom: 20px;
	z-index: 1;
	text-align:center;
	/* 文字 */
	font-weight: normal;
	color: #fff;
	white-space: pre;
	/* 背景 */
	background-color: #444;
	padding: 3px;
	border: 1px #777 solid;
	border-radius: 3px;
}
@media screen and (max-width:1199px){
	.base {
		width: 98vw;
		padding-right: 1em;
	}
	.ul_menu {
		width: 600px;
	}
}
@media screen and (max-width:999px){
	.text_body {
		width: 100%;
	}
}
@media screen and (max-width:600px){
	body {
		font-size: 14px;
	}
	.base {
		padding: 5px;
	}
	h1 {
		font-size: 2em;
	}
	.ul_menu {
		width: 96vw;
	}
	.ul_menu li {
		width: 96vw;
	}
	.a_button {
		width:96vw;
		height:32vw;
	}
	.a_title {
		font-size: 1.8em;
	}
}
@media screen and (max-width:440px){
	h1 {
		font-size: 1.5em;
	}
	h2 {
		font-size: 1.3em;
	}
	.a_title {
		font-size: 1.3em;
	}
}

