@charset "UTF-8";

/*
 *   Webページ全体、トップページ、404ページのCSS
 */

/*** -----基本 Webサイト内共通部分----- ***/

/*QUIRKSモードになっている時のエラーメッセージ表示部分*/
#quirks{
	background-color:#ff6655;
	color: #ffffff;
	font-size: 12px;
	text-align: center;
	}
body {
	border-top: 5px #ff6655 solid;
	}
img{
	border: none;
	}
body a:link{
	color: #000099;
	}
body a:visited{
	color: #006666;
	}
body a:hover{
	color: #ff00ff;
	}
	
/*灰色下点線*/
.underline_dotted{
	border-bottom: 1px #aaaaaa dotted;
	padding-bottom: 5px;
	}
/*左にピンク○を表示するタイトル部分*/
.title_pink{
	font-size: 24px;
	font-weight: bold;
	color: #ff7777;
	border-bottom: 2px #ff7766 solid;
	padding-left: 35px;
	padding-bottom: 5px;
	background-image:url(../img/icon-circle.png);
	background-repeat: no-repeat;
	background-position: 0px 3px;
	}
.menuline{
	height: 1px;
	border: none;
	border-top: 1px #bbbbbb solid;
	margin-bottom: 10px;
	}
	
/*** -----Container----- ***/

/*ページ全体コンテナ*/
#container {
	width: 960px;
	padding-top: 20px;
	margin: 0px auto;
	background-color: #ffffff;
	text-align: left;
	}
/*メインコンテンツ表示部（サイドバー含む）*/
#main {
	width: 910px;
	margin-top: 30px;
	margin-right: 20px;
	margin-left: 30px;
	}
	
	
/*
 *   -----トップページCSS-----
 */

/*中央イメージ画像ブロック*/
#top-centerimage{
	width: 940px;
	margin: 10px 10px 0px 10px;
	height: 308px;
	}
/*お知らせブロック　横幅600*/
#top-information{
	width: 600px;
	color: #000000;
	}
/*お知らせブロック内テーブル部分　横幅550*/
div#top-information table{
	width: 550px;
	margin: 15px 25px;
	}
div#top-information table tr td{
	border-bottom: 1px #bbbbbb dashed;
	}
td.info-date{
	padding: 10px;
	width: 125px;
	color: #888888;
	font-size: 13px;
	}
td.info-content{
	font-size: 15px;
	}
td.info-content a{
	color: #000088;
	text-decoration: underline;
	}
td.info-content a:hover{
	color: #ff00cc;
	}
/*トップ説明ブロック　横幅600*/
#top-explane{
	width: 580px;
	margin: 40px 20px 0px 0px;
	}
div#top-explane .tree{
	float: right;
	}
.top-extitle{
	font-size: 24px;
	font-weight: bold;
	color: #ff7777;
	line-height: 1.2;
	}
.top-exsentence{
	margin-top: 15px;
	font-size: 14px;
	color: #444444;
	line-height: 1.5;
	}
/*トップ下部サブメニュー*/
#top-submenu{
	width: 600px;
	margin: 35px 0px 35px 0px;
	}
div#top-submenu ul{
	width: 600px;
	}
div#top-submenu ul li{
	float: left;
	}	
div#top-submenu ul li a.sub01{
	display: block;
	width: 295px;
	height: 50px;
	margin-bottom:10px;
	margin-right: 10px;
	background-image: url(../img/home/home-btn01.png);
	}
div#top-submenu ul li:hover > a.sub01{
	background-image: url(../img/home/home-btn01_on.png);
	text-decoration: none;
	}
div#top-submenu ul li a.sub02{
	display: block;
	width: 295px;
	height: 50px;
	margin-bottom:10px;
	background-image: url(../img/home/home-btn02.png);
	}
div#top-submenu ul li:hover > a.sub02{
	background-image: url(../img/home/home-btn02_on.png);
	text-decoration: none;
	}
div#top-submenu ul li a.sub03{
	display: block;
	width: 295px;
	height: 50px;
	margin-bottom:10px;
	margin-right: 10px;
	background-image: url(../img/home/home-btn03.png);
	}
div#top-submenu ul li:hover > a.sub03{
	background-image: url(../img/home/home-btn03_on.png);
	text-decoration: none;
	}
div#top-submenu ul li a.sub04{
	display: block;
	width: 295px;
	height: 50px;
	margin-bottom:10px;
	background-image: url(../img/home/home-btn04.png);
	}
div#top-submenu ul li:hover > a.sub04{
	background-image: url(../img/home/home-btn04_on.png);
	text-decoration: none;
	}
	
/*
 *   -----404 Not Found CSS-----
 */

.notfound{
	width: 600px;
	text-align: center;
	margin-bottom: 70px;
	}
div.notfound img{
	margin-top: 80px;
	margin-bottom: 35px;
	}
.title404{
	font-size: 18px;
	font-weight: bold;
	color: #bbbb44;
	margin-bottom: 30px;
	}
.message404{
	font-size: 14px;
	color: #444444;
	margin-bottom: 20px;
	}
.link404{
	margin: auto;
	width: 341px;
	}
ul.link404 li{
	float: left;
	}
a.to-top404{
	display: inline-block;
	padding: 3px 0px;
	font-size: 14px;
	width: 170px;
	border-right: 1px #aaaaaa solid;
	}
a.to-top404:hover{
	background-color: #ebebeb;
	}
a.before404{
	display: inline-block;
	padding: 3px 0px;
	font-size: 14px;
	width: 170px;
	}
a.before404:hover{
	background-color: #ebebeb;
	}
	