@charset "utf-8";


/* 基本CSS */
body {
	text-align: center; /* センタリング */
	overflow-y: scroll;
}

#HEADER { }
#FOOTER {	text-align: center;}

#MAIN {
	position: relative;
	margin-left:auto;    /* 左側マージンを自動的に空ける */
	margin-right:auto;   /* 右側マージンを自動的に空ける */
	text-align:center;     /* 中身を左側表示に戻す */
}

#MENU_BOX  {
	float:left;
	position: relative;
}

#CONTENTS {
	float:left;
	text-align:left;
	position: relative;
}


/* SEO */
.SEO strong{
	display: inline;
	font-size: 16px;
	font-weight: bold;
	margin-right: 5px;
	margin-left: 5px;
	background-color: #FFFFCC;
	line-height: 25px;
	padding-right: 3px;
	padding-left: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000099;
}

/* CSS RESET http://developer.yahoo.com/yui/reset/ */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0px;
	padding:0px;
}

fieldset,img { 
	border:0px;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}

ol,ul {
	list-style:none;
}

caption,th {
	text-align:left;
}

h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}

abbr,acronym { border:0px;
}

/* 基本CSS */
.nowrap { white-space: nowrap; } 
.link {
	cursor: pointer;
	vertical-align: bottom;
}

.clearfix {}

/* リンク */
a:link {
	text-decoration: none;
	color: #00F;
}
a:visited {text-decoration: none;}
a:hover {
	text-decoration: none;
	color: #F00;
}
a:active {text-decoration: none;}

/* スペース */
.marginbottom {
	margin-bottom: 20px;
}

/* テキストクラス */
.text_16 {
	font-size: 16px;
	line-height: 20px;
}

.text_bold {
	font-weight: bold;
}


/* table */
.tableclass01{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
}
.tableclass01 td{
	font-size: 16px;
	font-weight: bold;
	padding: 5px;
	line-height: 20px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999999;
	/*white-space: nowrap; */
}
.tableclass02{
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
}
.tableclass02 td{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 5px;
}
.tableclass02 tr{
	vertical-align: bottom;
}

/* 背景左右線 */ 
.background-leftbottom {
	background-repeat: no-repeat;
	background-position: left bottom;
}
.background-rightbottom {
	background-repeat: no-repeat;
	background-position: right bottom;
}
.background-lefttop {
	background-repeat: no-repeat;
	background-position: left top;
}
.background-righttop {
	background-repeat: no-repeat;
	background-position: right top;
}

