@charset "utf-8";

/*全体の設定
--------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
	background-color: #FFF;	/*背景色*/
	border-top: 5px solid #000;	/*ページ上部の線の幅、線種、色*/
}
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;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
--------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
--------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
}
/*ヘッダーブロックの中*/
header .inner {
	width: 1107px;	/*ブロック幅*/
	height: 80px;	/*ブロックの高さ*/
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 0px;	/*innerに対して左から20pxの場所に配置*/
	top: 20px;	/*innerに対して上から20pxの場所に配置*/
}

/*コンテンツ（main,sub,sideを囲むブロック）
--------------------------------------------*/
#contents {
	clear: left;
	width: 1107px;	/*コンテンツ幅*/
	margin-right: auto;
	margin-left: auto;
}

/*コンテンツin（main,subを囲むブロック）
--------------------------------------------*/
#contents-in {
	float: left;
	width: 785px;
}
/*2カラム時*/
body.c2 #contents-in {
	float: none;
	width: 100%;
}

/*メインコンテンツ（中央ブロック）
--------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 570px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*2カラム時*/
body.c2 #main {
	width: 782px;	/*メインコンテンツ幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	background-color: #000;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#878787), to(#000));
	background-image: -webkit-linear-gradient(#878787, #131313 49%, #000 50%);
	background-image: linear-gradient(#878787, #131313 49%, #000 50%);
	border: 1px solid #000;
	border-radius: 6px 6px 0px 0px;
	-webkit-box-shadow: 1px 2px 7px #999;
	box-shadow: 1px 2px 7px #999;
	font-size: 100%;
	color: #FFF;
	padding: 5px 15px;
	clear: both;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	/* black */
	background-color: #e3e3e3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#e3e3e3));
	background-image: -webkit-linear-gradient(#fcfcfc, #f1f1f1 49%, #e3e3e3 50%);
	background-image: linear-gradient(#fcfcfc, #f1f1f1 49%, #e3e3e3 50%);
	-webkit-box-shadow: 1px 2px 7px #999;
	box-shadow: 1px 2px 7px #999;
	font-size: 100%;
	color: #000;
	padding: 2px 15px;
	clear: both;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	border-left: 3px solid #000;
}
#main h3.blue {
	color: #0f1bb1;
	border-left: 3px solid #0f1bb1;
}
#main h3.brown {
	color: #665e4a;
	border-left: 3px solid #665e4a;
}
#main h3.green01 {
	color: #1ec17a;
	border-left: 3px solid #1ec17a;
}
#main h3.green02 {
	color: #5fb10f;
	border-left: 3px solid #5fb10f;
}
#main h3.orange {
	color: #f68020;
	border-left: 3px solid #f68020;
}
#main h3.pink {
	color: #f9668f;
	border-left: 3px solid #f9668f;
}
#main h3.purple {
	color: #8619f5;
	border-left: 3px solid #8619f5;
}
#main h3.red {
	color: #f00000;
	border-left: 3px solid #f00000;
}
#main h3.skyblue {
	color: #66abf9;
	border-left: 3px solid #66abf9;
}

/*mainコンテンツのh3タグ設定*/
#main h3.rootsubtitle {
	font-weight: normal;
	font-size:20px;
	color:#cc1111;
	background-color: #fff;
	background-image: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 0.5em 0.5em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ、サイドコンテンツ
--------------------------------------------*/
/*サブコンテンツ（左側ブロック）*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 310px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*サイドコンテンツ（右側ブロック）*/
#side {
	float: right;
	width: 200px;
	padding-bottom: 30px;
}
/*2カラム時にサイドコンテンツを非表示にする設定*/
body.c2 #side {
	display: none;
}
/*sub,sideコンテンツ内のh2タグ設定*/
#sub h2,
#side h2 {
	font-size: 100%;
	text-align: center;
	background-color: #666;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#999), to(#666));
	background-image: -webkit-linear-gradient(#999, #666);
	background-image: linear-gradient(#999, #666);
	padding: 3px 0px;
	color: #FFF;
	border-radius: 6px 6px 0px 0px;
}
/*box1の中にあるh2タグの設定*/
#sub .box1 h2,
#side .box1 h2 {
	border-radius: 0;	/*角丸をなくす設定*/
}
/*sub,sideコンテンツ内のbox1設定*/
#sub .box1,
#side .box1 {
	background-color: #eee;		/*背景色*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	padding: 5px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#side h2 + ul,
#sub h2 + .box1,
#side h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul,
#side .box1 > ul {
	margin-bottom: 0;
}

/*sub,sideコンテンツ内のメニュー
--------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul,
#side ul {
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a,
#side ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #FFF;	/*背景色*/
}

/*フッター設定(copyrightなどが入った最下部ブロック)
--------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;
	background: #000;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*トップページのスライドショー
--------------------------------------------*/
#mainimg {
	background-color: #434343;	/*スライドショーの外側（左右）の背景色*/
}
#mainimg aside {
	width: 997px;
	height: 295px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*service.html内の製品紹介--------------------*/
#main .datetime {
	padding-top: 0;
	text-align:right;
}

#main section {
	zoom:1;
}
#main section:after {
	content: ""; 
	display: block; 
	clear: both;
}
/*各ボックスの設定*/
#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 .comp2 {
	width:47%;
	float:left;
	margin-right:2%;
}
#main section.list .comp3 {
	width:31%;
	float:left;
	margin-right:2%;
}
#main section.list .comp3e {
	width:31%;
	float:left;
}
#main section.list .comp3e {
	width:31%;
	float:left;
}
#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 {
	color: #003;
	background-color: #FFF;
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	font-size: 90%;
	padding: 0px;
	margin-left: 0;
}
#main section.list article img {
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
#main section.list article img.cm {
	float:right;
	background-color: none;
	padding: 0;
	border: none;
}
/*ボックス内の写真設定*/
#main section.list article figure {
	text-align:center;
}
#main section.list article figure.single {
	text-align: left;
	float:left;
	margin-right: 1em;
}
#main section.list article figure img {
	max-width:150px;
	max-height:150px;
	width: auto;
	height: auto;
}
#main section.list article .price {
	color: #bf0000;
	font-weight: bold;
	text-align: right;
	margin-right: 0.5em;
}
#main section.list article .price2 {
	color: #bf0000;
	font-weight: bold;
	text-align: right;
	margin-right: 0.5em;
	font-size: 120%;
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	padding: 2px 0px 2px 10px;
	font-size: 100%;
	border-bottom: 1px solid #CCC;
	border-left: 3px solid #000;
	margin-bottom: 0.5em;
	color: #000;
}

/*トップページ内「更新情報・お知らせ」ブロック
--------------------------------------------*/
/*ブロック全体の設定*/
#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"],
input[type="button"] {
	width: 250px;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 30px;
	background-color: #000;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#000));
	background-image: -webkit-linear-gradient(#222, #000);
	background-image: linear-gradient(#222, #000);
	-webkit-box-shadow: 0px 2px 5px #bebebe;
	box-shadow: 0px 2px 5px #bebebe;
	font-size: 14px;
	color: #FFF;
	border: none;
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #222;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#222));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#000, #222);	/*同上*/
	background-image: linear-gradient(#000, #222);			/*同上*/
}

/*PAGE TOP設定
--------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*その他
--------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mt10 {
	margin-top: 10px;
}
.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;
}

/*
--------------------------------------------*/
.rootimage {
	width:100%;
	height:auto;
	max-width:720px;
}
.rootsubtitle {
	float:left;
	font-size:20px;
	color:#c11;
}
.rootnext {
	float:right;
	margin-right:20px;
	padding-top:2px;
	font-size:18px;
}
.root-other {
	font-weight:bold;
	margin-left:5px;
	font-size:100%;
}
.root-other-item {
	margin-left:5px;
}
.root-other-item li {
	float:left;
	margin:3px 12px 3px 10px;
}

/*
--------------------------------------------*/
.rank {
	color:#bf0000;
	font-weight:bold;
}
.ninja_onebutton{
	text-align: center;
}

/* 検索
--------------------------------------------*/
div.search {
	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;
}
dl.search {
	position:relative;
	background-color:#fff;
	border:1px solid #aaa;
	border-radius:6px;
	margin: 5px;
}
dl.search dt{
	padding:3px 0;
	width:65%;
}
dl.search dt input{
	width:100%;
	height:30px;
	line-height:30px;
	background:none;
	border:none;
	font-size: 1.2em;
}
dl.search dd{
	position:absolute;
	top:1px;
	right:1px;
	width:30%;
}
dl.search dd button{
	display:block;
	background:#2b71c8;
	width:100%;
	height:36px;
	line-height:36px;
	border:none;
	border-radius: 0 6px 6px 0;
	font-size: 1.2em;
}
dl.search dd div{
	display:block;
	background:#eee;
	width:100%;
	border:none;
	border-radius: 0 6px 6px 0;
	font-size: 1.2em;
	padding:0;
	height:36px;
	
}
dl.search dd button:hover {
	background:#4e91e4;
}
dl.search dd button span{
	display:block;
	color:#FFF;
}

/*
--------------------------------------------*/
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}
#viewer {
	width: auto;
	height: auto;
	text-align: center;
	overflow: hidden;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
	z-Index:2;
}
#viewer img {
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	position: absolute;
}
.clearfix {zoom:1;}
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both;
}
