@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #000000;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
	background-color: #FFF;	/*背景色*/
}
h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
h1{
	margin: 0px;
	padding: 0px;
	background-color: #f68020;
	font-size: 14px;
	color: #ffffff;	
margin-bottom:15px;
}
h7{
	margin: 0px;
	padding: 0px;
	background-color: #F5DEB3;
	font-size: 14px;
	color: #000000;	
width:100%;
}
ul{
	list-style-type: none;
}
img {
	border: none;

}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	font-size: 100%;
	margin: 0px;
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
}
/*ヘッダーブロックの中*/
header .inner {
	width: 997px;	/*ブロック幅*/
	height: 115px;	/*ブロックの高さ*/
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
/*電話番号ボックスの設定*/
header .inner address {
	position: absolute;
	top: 15px;		/*innerに対して上から15pxの位置に配置*/
	right: 20px;	/*innerに対して右から20pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定*/
}
/*電話番号の文字設定*/
header .inner address .tel {
	font-size: 18px;	/*文字サイズ*/
	color: #f68020;		/*文字色*/
	font-weight: bold;	/*太字に*/
	display: block;
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/


.menu ul{ 
	width: 998px;	/*メニュー部分のブロック幅*/
	margin-right: auto;
	margin-left: auto;
  	padding:0; 
} 
.menu ul li { 
 list-style: none; 
  margin:0; 
  padding:0; 
  font-size:14px; 
  float: left; 
  position: relative; 
  width: 165px;/*親メニューの幅*/ 
  height: 40px;/*親メニューの高さ*/ 
  line-height: 40px; 
  background:#444444;/*親メニューの背景色*/ 
  color: #ffffff;/*親メニューの文字色*/ 
  text-align:center; 
  font-weight:bold; 
	border-right: 1px solid #ffffff;	/*メニューの右側の線の幅、線種、色*/
} 
.menu ul li a { 
  color: #ffffff; 
  display: block; 
  text-decoration: none; 
} 
.menu ul li ul li a { 
   color: #444444; 
  display: block; 
  text-decoration: none; 
} 
.menu ul li:hover, .menu ul li a:hover { 
  background:#808080;/*ホバー時の親メニューの背景色*/ 
} 
.menu ul li ul { 
  position: absolute; 
  top: 40px;/*親メニューの高さと同じにする*/ 
  width: 164px; 
  z-index: 100; 
} 
.menu ul li ul li { 
  font-size:11px; 
  visibility: hidden; 
  overflow: hidden; 
  width: 164px;/*サブメニューの幅*/ 
  height: 0; 
  background:#FDEECD;/*サブメニューの背景色*/ 
	border-right: 1px solid #ffffff;	/*メニューの右側の線の幅、線種、色*/
	border-left: 1px solid #ffffff;	/*メニューの右側の線の幅、線種、色*/
	border-bottom: 1px solid #ffffff;	/*メニューの右側の線の幅、線種、色*/
} 
.menu ul li ul li:hover, .menu ul li ul li a:hover { 
  background:#fbd177;/*ホバー時のサブメニューの背景色*/ 
} 
.menu ul li:hover ul li, .menu ul li a:hover ul li{ 
  visibility: visible; 
  overflow: visible; 
  height:40px;/*サブメニューの高さ*/ 
  z-index: 10; 
} 
.menu * { 
  -webkit-transition: 0.5s; 
  -moz-transition: 0.5s; 
  -ms-transition: 0.5s; 
  -o-transition: 0.5s; 
  transition: 0.5s; 
} 
---------------------------------------------------------------------------*/
/*マニュアルメニューブロック設定*/


.menumanul ul{ 
	width: 998px;	/*メニュー部分のブロック幅*/
	margin-right: auto;
	margin-left: auto;
  	padding:0; 
} 
.menumanul ul li { 
 list-style: none; 
  margin:0; 
  padding:0; 
  font-size:12px; 
  float: left; 
  position: relative; 
  width: 140px;/*親メニューの幅*/ 
  height: 40px;/*親メニューの高さ*/ 
  line-height: 40px; 
  background:#222222;/*親メニューの背景色*/ 
  color: #ffffff;/*親メニューの文字色*/ 
  text-align:center; 
  font-weight:bold; 
	border-right: 1px solid #ffffff;	/*メニューの右側の線の幅、線種、色*/
} 
.menumanul ul li a { 
  color: #ffffff; 
  display: block; 
  text-decoration: none; 
} 
.menumanul ul li ul li a { 
   color: #222222; 
  display: block; 
  text-decoration: none; 
} 
.menumanul ul li:hover, .menumanul ul li a:hover { 
  background:#808080;/*ホバー時の親メニューの背景色*/ 
} 
.menumanul ul li:hover ul li, .menumanul ul li a:hover ul li{ 
  visibility: visible; 
  overflow: visible; 
  height:40px;/*サブメニューの高さ*/ 
  z-index: 10; 
} 
.menumanul * { 
  -webkit-transition: 0.5s; 
  -moz-transition: 0.5s; 
  -ms-transition: 0.5s; 
  -o-transition: 0.5s; 
  transition: 0.5s; 
} 

/*コンテンツ（main,left,rightを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 997px;	/*コンテンツ幅*/
	margin-right: auto;
	margin-left: auto;
	
}

/*コンテンツin（main,leftを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;
	width: 815px;
	margin-top: 16px;
}
#contents-inwide {
	float: left;
	width: 997px;
	margin-top: 16px;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 580px;	/*メインコンテンツ幅*/
	padding-left: 13px;
	padding-right: 7px;
	padding-bottom: 30px;
}
#mainwide {
	float: right;	/*右側に回り込み*/
	width: 997px;	/*メインコンテンツ幅*/
	padding-left: 13px;
	padding-right: 7px;
	padding-bottom: 30px;
}

/*mainコンテンツのh2タグ設定*/
#main h2 {
	background-color: #666666;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	border: 1px solid #666666;		/*枠線の幅、線種、色*/
	border-radius: 6px 6px 6px 6px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 5px #afafaf;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 5px #afafaf;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 15px;	/*左から、上下、左右への余白*/
	margin-bottom:20px;
	clear: both;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	background-color: #e3e3e3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-size: 100%;
	color: #444444;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-left: 12px solid #f68020;	/*左の線の幅、線種、色*/
	margin-top:20px;
	margin-bottom:20px;
}
#mainwide h2 {
	background-color: #666666;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	border: 1px solid #666666;		/*枠線の幅、線種、色*/
	border-radius: 6px 6px 6px 6px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 5px #afafaf;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 5px #afafaf;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 15px;	/*左から、上下、左右への余白*/
	margin-bottom:20px;
	clear: both;
}
#mainwide h3 {
	background-color: #e3e3e3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-size: 100%;
	color: #444444;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-left: 12px solid #f68020;	/*左の線の幅、線種、色*/
	margin-top:20px;
	margin-bottom:20px;
}
#mainwide h4 {
	background-color: #e3e3e3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-size: 100%;
	color: #444444;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-left: 12px solid #3174C2;	/*左の線の幅、線種、色*/
	margin-top:20px;
	margin-bottom:20px;
}
#mainwide h5 {
	background-color: #E7F2FC;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-size: 100%;
	color: #444444;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	margin-top:20px;
	margin-bottom:10px;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 15px;	/*左から、上、左右、下への余白*/
}
#main ol {
	padding: 0.5em 30px 15px;	/*左から、上、左右、下への余白*/
}
#mainwide ol {
	padding: 0.5em 30px 15px;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ、サイドコンテンツ
---------------------------------------------------------------------------*/
/*サブコンテンツ（左側ブロック）*/
#left {
	float: left;	/*左側に回り込み*/
	width: 210px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
#left_support {
	float: left;	/*左側に回り込み*/
	width: 210px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*サイドコンテンツ（右側ブロック）*/
#right {
	float: right;
	width: 170px;
	margin-top: 16px;
	margin-bottom: 2px;
line-height:130%;
}

/*left,rightコンテンツ内のh2タグ設定*/
#left h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background-color: #f68020;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #FFF;	/*文字色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
#left_support h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background-color: #3B92CC;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #FFF;	/*文字色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
#right h2 {
	font-size: 120%;
	text-align: center;	/*文字をセンタリング*/
	background-color: #f68020;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 10px 5px;	/*上下、左右への余白*/
	color: #FFF;	/*文字色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
/*box1の中にあるh2タグの設定*/
#left .box1 h2,
#left_support .box1 h2,
#right .box1 h2 {
	border-radius: 0;	/*角丸をなくす設定*/
}
/*left,rightコンテンツ内のbox1設定*/


#left .box1{
	background-color: #eee;		/*背景色*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	padding: 5px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
#left_support .box1{
	background-color: #eee;		/*背景色*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	padding: 5px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
#right .box1 {
	background-color: #fff;		/*背景色*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	padding: 5px;				/*ボックス内の余白*/
	margin-bottom: 5px;		/*ボックスの下にあけるスペース*/
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#left h2 + ul,
#left_support h2 + ul,
#right h2 + ul,
#left h2 + .box1,
#left_support h2 + .box1,
#right h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#left .box1 > ul,
#left_support .box1 > ul,
#right .box1 > ul {
	margin-bottom: 0;
}

/*left,rightコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#left ul {
	font-size: 84%;
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
	padding:0;
}
/*メニュー１個ごとの設定*/
#left ul li a{
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	padding-top: 2px;
	padding-bottom: 2px;
	background: #fff;	/*背景色*/
}
#left ul li :hover { 
  background:#cfcfcf;/*ホバー時のサブメニューの背景色*/ 
	color: #000;
} 
/*メニューブロック全体の設定*/
#left_support ul {
	font-size: 84%;
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
	padding:0;
}
/*メニュー１個ごとの設定*/
#left_support ul li a{
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	padding-top: 2px;
	padding-bottom: 2px;
	background: #fff;	/*背景色*/
}
#left_support ul li :hover { 
  background:#cfcfcf;/*ホバー時のサブメニューの背景色*/ 
	color: #000;
} 
/*メニューブロック全体の設定*/
#right ul {
}
/*メニュー１個ごとの設定*/
#right ul li a {
	color:#000;
	text-decoration: none;
	display: block;

	background-color: #efefef;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-size: 100%;
	font-weight:bold;
	color: #444444;		/*文字色*/
	padding: 10px 10px;	/*左から、上下、左右への余白*/
	clear: both;
	border-left: 4px solid #808080;	/*左の線の幅、線種、色*/
	border-right: 4px solid #808080;	/*左の線の幅、線種、色*/
	margin-bottom:1px;
	border-bottom: 2px solid #cccccc;	/*下側の線の幅、線種、色*/
}
#right ul li :hover { 
  background:#f3f3f3;/*ホバー時のサブメニューの背景色*/ 
} 

/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	height:200px;
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;	/*文字色*/
	background: #f68020;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}
copyright {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;	/*文字色*/
	background: #cfcfcf;	/*背景色*/
}


/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 15px;		/*ボックス間のスペース*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
}
#main section.list article a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
/*マウスオン時*/
#main section.list article a:hover {
	background-color: #FFF;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #f68020;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #f68020;	/*文字色*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	padding-left: 10px;
}
/*日付設定*/
#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;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}


/*submitボタンの設定*/
input[type="submit"] {
	background-color: #efefef;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding-left: 10px;	/*ボタン内の余白*/
	padding-right: 10px;	/*ボタン内の余白*/
	padding-top: 5px;	/*ボタン内の余白*/
	padding-bottom: 5px;	/*ボタン内の余白*/
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
	font-size: 14px;	/*文字サイズ*/
	color: #000000;		/*文字色*/
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover{
	background-color: #FEF9F3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
}
/*top_orderボタンの設定*/
input#top_order {
	width: 80px;	/*ボタン幅*/
	padding: 5px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 5px;	/*角丸のサイズ*/
	background-color: #ff6500;	/*背景色（古いブラウザだとここの色のみが出ます）*/
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
	font-size: 14px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	border: none;
}
/*buttonボタンのマウスオン時の設定*/
input#top_order :hover {
	background-color: #f78931;	/*背景色（古いブラウザだとここの色のみが出ます）*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #f68020;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.color1 {
	color: #f61468;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.mini1 {
	font-size: 12px;
	line-height: 1.5;
}
figcaption {
	font-size: 11px;
}
#menubar_hdr {
	display: none;
}

.top_rapidssl{
	width: 180px;
	height:240px;
	padding:5px;
	text-align: left;
	background-image: url("../images/top/rapidssl.gif");
	background-repeat: no-repeat;
}
.top_rapidsslwildcard{
	width: 180px;
	padding:5px;
	text-align: left;
	background-image: url("../images/top/rapidsslwildcard.gif");
	background-repeat: no-repeat;
}
.top_quicksslpremium{
	width: 180px;
	padding:5px;
	text-align: left;
	background-image: url("../images/top/quicksslpremium.gif");
	background-repeat: no-repeat;
}
.top_securesite{
	width: 180px;
	padding:5px;
	text-align: left;
	background-image: url("../images/top/securesite.gif");
	background-repeat: no-repeat;
}
.top_truebusinessid{
	width: 180px;
	height:300px;
	padding:5px;
	text-align: left;
	background-image: url("../images/top/truebusinessid.gif");
	background-repeat: no-repeat;
}
.top_detail {
color:#222;
line-height:12px;
padding:0px;
padding-right:16px;
	font-size: 80%;
position:relative; top:70px; left:5px;
}
.top_button {
line-height:12px;
padding:0px;
padding-right:16px;
	font-size: 80%;
position:relative; top:75px; left:12px;
}
.tb23 {
	font-size: 12px;
}
.accent {
	background-color: #efefef;
	font-size: 12px;
}
.accent2 {
	background-color: #ffffff;
	font-size: 12px;
}
.accent3 {
	background-color: #FA9900;
	font-size: 12px;
}
.order_kinou {
	width: 300px;

}
.product_kinou {
	width: 500px;

}
ul.myul{ 
	list-style-type: square;
  	padding:10px; 
  	margin-left:30px; 
} 
ul.myul2{ 
	list-style-type: square;
  	padding:10px; 
  	margin-left:50px; 
} 
ul.greenul{ 
list-style-image : url("../images/green_check.gif");
  	padding:0; 
  	margin-left:40px; 
} 
ul.greenul2{ 
list-style-image : url("../images/green_check.gif");
  	padding:0; 
  	margin-left:40px; 
	font-size: 12px;
} 

#main ul li{ 
	font-size: 12px;
	list-style-type: square;
  	padding:4px; 
  	margin-left:30px; 
} 
#main ul li a{ 
	text-decoration: none;
	list-style-type: square;
} 

ul.faq{ 
	text-decoration: underline;
  	padding:0; 
  	margin-left:40px; 
	font-size: 12px;
} 


/* ▼(A)表示領域全体 */
div.tabbox { margin: 0px; padding: 0px; width: 560px; }

/* ▼(B)タブ部分 */
p.tabs { margin: 0px; padding: 0px; }
p.tabs a {
   /* ▼(B-2)リンクをタブのように見せる */
   display: block; width: 101px; float: left;
   margin: 0px 1px 0px 0px; padding: 3px;
   text-align: center;
text-decoration: none;
	font-weight:bold;
   border-radius: 8px 8px 0px 0px; /* 角を丸くする */
}

/* ▼(B-3)各タブの配色 */
p.tabs a.tab1 { background-color: #f68020;  color: white; }
p.tabs a.tab2 { background-color: #f68020; color:white;}
p.tabs a.tab3 { background-color: #f68020;   color: white; }
p.tabs a.tab4 { background-color: #f68020;   color: white; }
p.tabs a.tab5 { background-color: #f68020;   color: white; }


p.tabs a:hover {background-color: #fbd177;}

/* ▼(C)タブ中身のボックス */
div.tab {
   /* ▼(C-2)ボックス共通の装飾 */
   height: 900px; overflow: auto; clear: left;
margin: 0px; padding: 0px;
}
/* ▼(C-3)各ボックスの配色 */
div#tab1 {margin: 0px; padding: 0px; background-color: #ffffff; }
div#tab2 { background-color: #ffffff; }
div#tab3 { background-color: #ffffff; }
div#tab4 { background-color: #ffffff; }
div#tab5 { background-color: #ffffff; }

button.button3 {
    font-size: 1.4em;
    font-weight: bold;
    padding: 10px 30px;
    background-color: #248;
    color: #fff;
    border-style: none;
}
button.button3:hover {
    font-size: 1.4em;
    font-weight: bold;
    padding: 10px 30px;
    background-color: #000000;
    color: #fff;
    border-style: none;
}
.top_button {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 30px;
    background-color: #DFDBD3;
    color: #fff;
    border-style: none;
}
.main_button  {
    background: #EEE;
    border: 1px solid #DDD;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #111;
    width: 100px;
    padding: 10px 0;
}
.main_button :hover {
    background: #000000;
    border: 1px solid #DDD;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #111;
    width: 100px;
    padding: 10px 0;
}
.center{
	text-align: center;
}
.unix {
	background-color: #000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-size: 100%;
	color: #ffffff;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	margin-top:20px;
	margin-bottom:10px;
}

.line{
	border-top:solid 1px #cccccc;
	border-bottom:solid 1px #cccccc;
	border-left:solid 1px #cccccc;
	border-right:solid 1px #cccccc;
	line-height: 160%;
}
/*↓部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/


.menufooter ul{ 
	width: 998px;	/*メニュー部分のブロック幅*/
	margin-right: auto;
	margin-left: auto;
  	padding:0; 
} 
.menufooter ul li { 
 list-style: none; 
  margin:0; 
  padding:0; 
  font-size:14px; 
  float: left; 
  position: relative; 
  width: 165px;/*親メニューの幅*/ 
  line-height: 28px; 
  background:#f68020;/*親メニューの背景色*/ 
  color: #ffffff;/*親メニューの文字色*/ 
  text-align:left; 
  font-weight:bold; 
} 
.menufooter ul li a { 
  color: #ffffff; 
  display: block; 
  text-decoration: none; 
} 
.menufooter ul li ul li a { 
   color: #ffffff; 
  display: block; 
  text-decoration: none; 
} 
.menufooter ul li:hover, .menufooter ul li a:hover { 
  color: #F9F9D8; 
} 
.menufooter ul li ul { 
  top: 40px;/*親メニューの高さと同じにする*/ 
  width: 164px; 
} 
.menufooter ul li ul li { 
  font-size:11px; 
  width: 165px;/*サブメニューの幅*/ 
  background:#f68020;/*サブメニューの背景色*/ 
} 
.menufooter ul li ul li:hover, .menufooter ul li ul li a:hover { 
  color: #F9F9D8; 
} 

#contents-copright {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #666;	/*文字色*/
	background: #cfcfcf;	/*背景色*/
}
.small {
	color: #000000;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font-size: 12px;
	background-color: #FFF;	/*背景色*/
}
.waku1_top {
	font-size:14px; 
	color:#ffffff;
	margin:0;
	padding-top:9px;
	padding-left:10px;
	padding-bottom:0px;
	width:180px;
	height:22px;
	font-weight:bold;
 	background:url(https://valuessl.net/images/waku1_top51.gif) no-repeat left top;

}
.waku1_middle {
	margin:0;
	padding:0;
	line-height:160%;
	padding-top:4px;
	padding-left:4px;
	padding-right:8px;
	padding-bottom:0px;
	width:180px;
	font-size:12px; 
 	background:url(https://valuessl.net/images/waku1_middle.gif) repeat-y;
}
.waku1_bottom {
	margin:0;
	padding:0;
	width:180px;
	height:20px;
	font-size:12px; 
 	background:url(https://valuessl.net/images/waku1_bottom.gif) no-repeat left top;

}
.waku2_top {
	font-size:14px; 
	color:#ffffff;
	margin:0;
	padding-top:9px;
	padding-left:10px;
	padding-bottom:0px;
	width:180px;
	height:22px;
	font-weight:bold;
 	background:url(https://valuessl.net/images/waku1_top51.gif) no-repeat left top;

}
.waku2_middle {
	font-size:14px; 
	margin:0;
	padding:0;
	line-height:160%;
	padding-top:4px;
	padding-left:4px;
	padding-right:8px;
	padding-bottom:0px;
	width:180px;
	font-size:12px; 
 	background:url(https://valuessl.net/images/waku1_middle.gif) repeat-y;
}
.waku2_bottom {
	margin:0;
	padding:0;
	width:180px;
	height:20px;
	font-size:12px; 
 	background:url(https://valuessl.net/images/waku1_bottom.gif) no-repeat left top;

}
.waku3_top {
	font-size:14px; 
	color:#ffffff;
	margin:0;
	padding-top:9px;
	padding-left:10px;
	padding-bottom:0px;
	width:700px;
	height:22px;
	font-weight:bold;
 	background:url(https://valuessl.net/images/waku3_top.gif) no-repeat left top;

}
.waku3_middle {
	margin:0;
	padding:0;
	line-height:160%;
	padding-top:4px;
	padding-left:14px;
	padding-right:8px;
	padding-bottom:0px;
	width:700px;
	font-size:12px; 
 	background:url(https://valuessl.net/images/waku3_middle.gif) repeat-y;
}
.waku3_bottom {
	margin:0;
	padding:0;
	width:700px;
	height:20px;
	font-size:12px; 
 	background:url(https://valuessl.net/images/waku3_bottom.gif) no-repeat left top;

}

#main2 {
	width: 780px;	/*メインコンテンツ幅*/
	padding-left: 13px;
	padding-right: 7px;
	padding-bottom: 30px;
}

