/*********ベーシック＋HTML初期化関連**********/
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}
html, body {
	height:100%;
}

body {
	font: 12px/1.5em "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	background-color: #eee;
	color: #666;
}


/*******テキスト関連********/
h1 {
	font-size: 1.8em;
	line-height: 2.0em;
}
h2 {
	font-size: 1.6em;
	line-height: 1.8em;
}
h3 {
	font-size: 1.2em;
	line-height: 1.5em;
}
h4 {
	font-size: 1em;
	line-height: 1.2em;
}
.text_style_bold {
	font-weight: bold;
}
.text_style_italic {
	font-style: italic;	
}
.text_style_underline {
	text-decoration: underline;	
}
.text_comment {
	color: #999;
}
.text_color_white {
	color: white;
}
.text_color_red {
	color: #F00;
}
.text_color_green {
	color: #090;
}
.text_color_blue {
	color: #00F;
}
.text_color_darkBlue {
	color: #007AC4;
}

.text_size_06em {
	font-size: 0.6em;	
}
.text_size_08em {
	font-size: 0.8em;	
}
.text_size_10em {
	font-size: 1.0em;	
}
.text_size_12em {
	font-size: 1.2em;	
}
.text_size_14em {
	font-size: 1.4em;	
}
.text_size_16em {
	font-size: 1.6em;	
}
.text_size_18em {
	font-size: 1.8em;	
}
.text_size_20em {
	font-size: 2.0em;	
}


/*******背景色関連********/
.bg_color_black {
	color: #FFF;
	background-color: #000;
}
.bg_color_lightGray {
	background-color: silver;
}

.bg_color_lightBlue {
	background-color: #F1F5FA;
}

.bg_color_red {
	color: #FFF;
	background-color: #F00;	
}
/***********リンク関連**********/

a {
	text-decoration: none;
}
a:visited {
	outline: none;
}
a:hover {
	text-decoration: underline;
	color: #090;
}
a:active {
	outline: none;
}
a img{
	border-style: none;	
}

.link_list li {/*listタイプのリンクをinline(横並び)にする。ulのクラスで指定する*/
	display:inline;
	list-style: none;
}
.link_list li a {
	padding-left:12px;
	padding-right:12px;
}
.link_list li a:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #000;	
}

a.link_box {/*リンクをボックス型にする。aのクラスで指定する*/
	display:block;
}
a:hover.link_box {
	color: #FFF;
	text-decoration: none;
	background-color: #000;
}


/*********テーブル関連********/
/*
table {
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-collapse:collapse;
	border-spacing: 20px;
	margin-right: auto;
	margin-left: auto;
	border-bottom: 1px solid #CCC;
}
th {
	font-style: normal;
	font-weight: bold;
	text-align: center;
}
th, td {
	border-right: 1px solid #CCC;
	padding: 3px;
	border-top-width: 0px;
	border-left-width: 0px;
	text-align: center;
}
caption {
	font-weight: bold;
	text-align: left;
	font-size: 1.2em;
}
*/
td a {/*tdのリンクをブロック型にする。コメントアウトするとtd内の全リンクがブロック型になる*/
/*	
	display:block;
*/	
}
td a:hover {
/*	
	color: #FFF;
	background-color: #000;
	text-decoration: none;
*/
}


/******フォーム関連******/

input, textarea {
	border: 1px solid #CCCCCC;
	background: #FFFFFF;
	font-size: 12px;
}

textarea {
	width: 100%;
}

input:focus, textarea:focus {
	background: #FFFFFF;
}
input:hover, textarea:hover{
	background: #FFFFFF;
}


/******骨格レイアウト関連******/

#wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -20px 0px; /* the bottom margin is the negative value of the footer's height */
	width: 760px;
	background-repeat: repeat-y;
	background-image: url(../images/bg-shadow.png);
}

#header {
	clear: both;
	width: 750px;
	height:50px;
	margin-right: auto;
	margin-left: 0px;
	vertical-align: middle;
	background-color: #eee;
	padding-right: 10px;
}

#headerInfo {
	display: none;
}

#content {
	clear: both;
	min-height: 480px;
	width: 750px;
	margin-right: auto;
	margin-left: 0px;
	background-repeat: repeat-y;
	background-position: left;
	padding-bottom: 10px;
}

#footer, #push{
	clear: both;
	height: 20px;
	width: 750px;
	margin-left: 0px;
	margin-right: 0px;
	text-align: left;
	text-indent: 10px;
	color: #999;

}
#footer {
	color: #FFF;
	background-color: #163353;
}


/*********便利共通レイアウト関連********/

.margin_left_10 {
	margin-left: 10px;
}
.margin_right_10 {
	margin-right: 10px;
}
.margin_top_10 {
	margin-top: 10px;
}
.margin_top_30 {
	margin-top: 30px;
}
.margin_top_50 {
	margin-top: 50px;
}


.margin_bottom_10 {
	margin-bottom: 10px;
}
.margin_bottom_30 {
	margin-bottom: 30px;
}
.margin_bottom_50 {
	margin-bottom: 50px;
}



.float_clear {
	clear: both;
	margin: 0px;
	padding: 0px;
	height: 0px;
}
.float_left {
	float: left;
}
.float_right {
	float: right;
}

.container_LRT_10_B_30 {
	clear: both;
	margin: 10px 10px 30px;
}

.container_LR_10 {
	clear: both;
	margin-right: 10px;
	margin-left: 10px;
}
.container_center {
	margin-right: auto;
	margin-left: auto;	
}

.align_center {
	text-align: center;
	margin-left:auto;
	margin-right:auto;
}
.align_right {
	text-align: right;
}
.aligh_left {
	text-align: left;
}

.width_80perc {
	
	width:80%;
}
.width_90perc {
	width:90%;
}
.width_95perc {
	width:95%;
}
.width_100perc {
	width:100%;
}
.width_20px{
	width:20px;
}
.width_100px {
	width:100px;
}
.width_200px {
	width:200px;
}
.width_480px {
	width:480px;
}
.width_640px {
	width:640px;
}
.height_minimum_20 {
	min-height: 20px;
}



/********その他独自レイアウト関連*******/
.picture_link {
	float: right;
	margin-top: 26px;
	padding-right: 10px;
}

.picture_link li{
	list-style: none;
	float:left;
	padding-left: 20px;
	
}
.picture_link li a{
	display: block;
	height: 20px;
	text-indent: -9999px;
	overflow: hidden;
	background-repeat: no-repeat;

}
.picture_link li a:hover{
	background-position: bottom;
}

.highlight a{
	background-position: bottom;
}

a#top{
	background-image: url(../images/navi_top.png);
	width: 19px;
}

a#locations{
	background-image: url(../images/navi_location.png);
	width: 94px;	
}

a#works{
	background-image: url(../images/navi_works.png);
	width: 37px;
}

a#about{
	background-image: url(../images/navi_about_us.png);	
	width: 53px;
}

a#links{
	background-image: url(../images/navi_link.png);
	width: 29px;
}
a#contact {
	background-image: url(../images/navi_contact.png);
	width: 47px;

}

#header #logo {
	margin-top: 22px;
	height: 20px;
	width: 177px;
	margin-left: 10px;
	float: left;
}
#company_info {
	float: right;
	margin-top: 20px;
	margin-right: 160px;
}

#top_news a {
	text-decoration: underline;
}
#top_news a:hover{
	color: #FFF;
	text-decoration: none;
	background-color: #163353;	
}.news {
	margin-bottom: 20px;
}
.news_title {
	display: block;
	background-image: url(../images/bullet.png);
	background-repeat: no-repeat;
	text-indent: 20px;
	font-size: 1.2em;
	font-weight: bold;
}
.page_title {
	font-size: 1.2em;
	font-weight: bold;
	color: #007AC4;
}
.bullet {
	display: block;
	text-indent: 20px;
	background-image: url(../images/bullet.png);
	background-repeat: no-repeat;
}
.bullet_bold {
	display: block;
	text-indent: 20px;
	background-image: url(../images/bullet.png);
	background-repeat: no-repeat;
	font-weight: bold;
}

