﻿@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ/行間、フォントファミリー*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #997009;	/*リンクテキストの色*/
}
a:hover {
	color: #FF0000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 850px;	/*コンテナー幅*/
	margin: 0px auto;
}
/*h1タグの設定*/
#container h1 {
	font-weight: normal;		/*通常太字なのを標準にする設定*/
	font-size: 10px;			/*文字サイズ*/
	text-align: right;			/*文字を右寄せ*/
	line-height: 24px;			/*行間*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 850px;	/*ブロックの幅*/
	height: 140px;	/*ブロックの高さ*/
	position: relative;
	background-color: #FF3333;	/*背景色*/
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: 30px;	/*ヘッダーブロックに対して左から30pxの位置に配置*/
	top: 50px;	/*ヘッダーブロックに対して上から70pxの位置に配置*/
	color: #ffffff;
	font-weight: bold;
}



/*ヘッダー右の会社住所の設定*/
header #address{
	position: absolute;
	right: 20px;
	top: 20px;
	color: #ffffff;
	line-height: 140%;
	font-weight: bold;
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menu ul {
	background-color: #FF3333;	/*背景色*/
	height: 40px;			/*高さ*/
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 170px;	/*メニュー幅*/
}
nav#menu ul li a {
	height: 25px;
	padding-top: 8px;
	line-height: 1.4;	/*行間*/
	text-decoration: none;
	display: block;
	font-size: 14px;	/*文字サイズ*/
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color: #00129a;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/m-bga.png);	/*背景画像の読み込み,グラデーション*/
	text-align: center;	/*文字をセンタリング*/
	color: #FFF;		/*文字色*/

}
/*最初のメニューの設定*/
nav#menu ul li:first-child a {
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menu ul li a:hover,
nav#menu ul li#current a {
	background: #001ada url(../images/m-bga1.png);	/*背景色、背景画像の読み込み*/
	color: #fff;
}
/*英語表記の設定*/
nav#menu ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*左側に回り込み*/
	width: 670px;	/*メインコンテンツ幅*/
	background-color: #FFF;	/*背景色*/
	padding: 15px 0px;	/*ボックス内の余白*/
	margin-bottom: 20px;
}

#main_t {
	float: none;	/*左側に回り込み*/
	width: 100%;	/*メインコンテンツ幅*/
	background-color: #FFF;	/*背景色*/
	padding: 15px 0px;	/*ボックス内の余白*/
	margin-bottom: 20px;
}

/*mainコンテンツのh2タグの設定*/
#main h2,#main_t h2 {
	font-size: 100%;
	color: #FFF;		/*文字色*/
	padding: 7px 15px;	/*上下、左右への余白*/
	clear: both;
	background-color: #FF9900;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/2.png);
	background-repeat: no-repeat;			/*背景画像をリピートしない*/
}
/*mainコンテンツのh3タグの設定*/
#main h3,#main_t h3 {
	background-color: #ffe866;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/h3_a.png);	/*背景画像の読み込み,グラデーション*/
	background-repeat: no-repeat;		/*背景画像をリピートしない*/
	background-position: left center;	/*背景画像を左側・上下中央に配置*/
	font-size: 100%;
	padding: 4px 10px 4px 20px;	/*左から、上、右、下、左のボックス内の余白*/
	clear: both;
}

/*mainコンテンツのh4タグの設定*/
#main h4 {
	padding: 10px 10px 4px 5px;	/*左から、上、右、下、左のボックス内の余白*/
	clear: both;
}

/*mainコンテンツの段落タグ設定*/
#main p,#main_t p {
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
}


figure img {
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 10px 0px;			/*余白。ここに上の行で設定した背景色が出ます。*/
}

figure1 img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
}
figure2 img {
	float: right;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
}

/*service.html内の各ブロック（※タイプ２）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list1 section {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
}
#main section.list1 section a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時*/
#main section.list1 section a:hover {
	background-color: #fff3b2;	/*背景色*/
	color: #333;				/*文字色*/
}
/*ボックス内の段落タグ設定*/
#main section.list1 section p {
	padding: 0px;
	margin-left: 5px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list1 section figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 0px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	width: 25%;
	height: auto;
}
/*ボックス内のh4タグ設定*/
#main section.list1 section h4 {
	font-size: 100%;
	color: #001ada;	/*文字色*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*右側に回り込み*/
	width: 160px;	/*サブコンテンツ幅*/
	background-color: #FFF;/*背景色*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin: 15px 15px 15px 0px;/*メニューブロックの下にあけるスペース*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 3px 0px;	/*左から、上下、左右への余白*/
	background-color: #FF3300;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	color: #FFF;	/*文字色*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.sm {
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.sm li a {
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
}
/*マウスオン時の設定*/
#sub ul.sm li a:hover {
	background: #FF6600;	/*背景色*/
	color: #FFF;			/*マウスオン時の文字色*/
}

/*サブコンテンツ　製品情報ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub section.box1 {
	font-size: 11px;	/*文字サイズ*/
	border-bottom: 1px solid #CCC;	/*下の線の幅、線種、色*/
	line-height: 1.5;	/*行間*/
	overflow: hidden;
}
#sub section.box1 a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#sub section.box1 a:hover {
	background-color: #001ada;	/*マウスオン時のボックス色*/
	color: #FFF;				/*マウスオン時の文字色*/
}
/*h4見出しタグ*/
#sub section.box1 h4 {
	margin-left: 68px;	/*左の画像とバランスをとって設定する*/
	font-size: 100%;
}
/*段落タグ*/
#sub section.box1 p {
	margin-left: 68px;	/*左の画像とバランスをとって設定する*/
}
/*写真の設定*/
#sub section.box1 figure {
	float: left;	/*左に回り込みさせる設定*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	color: #FFF;				/*文字色*/
	background-color: #111;		/*背景色*/
	-webkit-box-shadow: 0px 0px 8px #999;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 0px 8px #999;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta {
	width: 100%;
}
.ta, .ta td, .ta th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta th{
	width: 100px;
	padding: 10px;
	text-align: center;
	background-color: #FFCC66;	/*背景色*/
}

/*テーブル2
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}
.ta2, .ta2 td, .ta2 th{
	line-height: 1.5;
}
/*セル１*/
.ta2 td{
	width: 50%;
	padding: 10px;
	text-align: left;
	vertical-align: bottom;
}
/*セル２*/
.ta2 th{
	width: 100px;
	padding: 10px;
	text-align: center;
	background-color: #E7E7E7;	/*背景色*/
}

/*その他
---------------------------------------------------------------------------*/
#ss {
   position: relative;
   width:  850px; /* 画像の横幅に合わせて記述 */
   height: 300px; /* 画像の高さに合わせて記述 */
}
#ss img {
   position: absolute;
   top: 0;
   left:0;
   z-index: 8;
   opacity: 0.0;
}
#ss img.active {
   z-index: 10;
   opacity: 1.0;
}
#ss img.last-active {
   z-index: 9;
}

.brd {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.look {
	background: #dcdcdc;
}
.mb15 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #001ada;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
figcaption {
	font-size: 11px;
}
#menubar_hdr {
	display: none;
}
.mini1 {
	font-size: 11px;
	font-weight: normal;

