@charset "utf-8";



/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}


/* グローバルメニュー固定↓*/
/*---------------------------------------------------------------------------*/
/* リセット */
html, body {
    margin: 0;
    padding: 0;
}
 
/* グローバルナビ */

#globalNavi ul {
  width: 100%;
  height: 50px;
  padding: 0;
  margin: 0;
  list-style-type: none;
  background: #325bb1;
  box-shadow: 3px 3px 3px #aaa;
  }
 
#globalNavi a {
  width: auto;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 12px 0;
  text-decoration: none;
  text-shadow: 0px -1px 1px rgba(0,0,0,0.7);
  display: block;
}
  
#globalNavi ul li a {
  width: 16.6%;
  float: left;
  padding: auto;
  margin: 0;
  text-align: center;
}
#globalNavi ul li a:hover {
  background: #6f86b5;
}
 
/* 固定 */
.fixed {
    position: fixed;
    top: 0;
    padding: 0;
    width: 980px;
    z-index: 1000;
}
/*---------------------------------------------------------------------------*/
/* グローバルメニュー固定↑*/


/*パンくず↓
---------------------------------------------------------------------------*/
.breadcrumb {
  margin-left: 0;
  padding: 0px 0px 5px;
}

.breadcrumb li{
  display:inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumb li:after{/* ?を表示*/
  font-family: FontAwesome;
  content: '\f0da';
  padding: 0 3px;
  color: silver;
}

.breadcrumb li:last-child:after{
  content: '';
}

.breadcrumb li a {
    text-decoration: none;
    color: #888888;
}

.breadcrumb li:first-child a:before{/*家アイコン*/
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  font-size: 1.1em;
  color: #315bb1;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}
/* パンくず↑*/



/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #3cacae;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 980px;	/*コンテナー幅*/
	margin: 0px auto;
	background: #FFF;	/*コンテナーの背景色*/
	padding: 0px 2%;		/*上下、左右の余白*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	overflow: hidden;
	border-top: 10px solid #3c5aae;	/*上のアクセント用ラインの幅、線種、色*/
	padding: 20px 0px;	/*上下、左右へのボックス内にとる余白*/
}
/*ロゴ画像の設定*/
header #logo img {
	float: left;
	width: 320px;	/*ロゴ画像の幅*/
}
/*電話番号ボックス全体の設定*/
header .tel {
	margin: 15px 0 0 0;
	font-family:"HGP創英角ｺﾞｼｯｸUB";
	float: right;	/*右に回り込み*/
	color: #3c5aae;	/*文字色*/
	font-size: 25px;	/*文字サイズ*/
	font-weight: bold;	/*太字*/
	text-align: right;	/*テキストを右寄せ*/
	line-height: 1.2;	/*行間をデフォルトより少し狭くする*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}
/*電話番号ボックス内の「TEL」部分の設定*/
header .tel .bg1 {
	background: #3c5aae;	/*背景色*/
	color: #fff;			/*文字色*/
	padding: 2px 8px;
	margin-right: 10px;
	border-radius: 4px;
	letter-spacing: normal;
}
/*電話番号ボックス内の小文字部分の設定*/
header .tel span {
	color: #666;
}
/*電話番号に自動リンクが貼られる環境用（タブレットやスマートフォンなど）の設定*/
header .tel a {
	color: #3c5aae;		/*文字色*/
	text-decoration: none;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menubar {
	clear: both;
	overflow: hidden;
	margin: 10px 0px;	/*メニューブロックの下に空ける余白*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;	/*メニューを左に回り込み*/
	width: 16.66%;		/*メニュー幅。５個あるので５分の１で20%です。*/
}
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	margin-left: 2%;
	line-height: 1.6;
	font-size: 15px;	/*文字サイズ*/
	padding: 8px 0px;	/*上下、左右へのボックス内の余白*/
	font-weight: bold;	/*太字にする設定*/
	letter-spacing: 0.1em;		/*文字間隔を少し広めにとる設定。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/menu_bar1.png) no-repeat left center, -webkit-linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*バー画像の読み込みとグラデーション*/
	background: url(../images/menu_bar1.png) no-repeat left center, linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	text-align: center;	/*文字をセンタリング*/
	-webkit-box-shadow: 1px 2px 5px #e2e2e2, 0px 0px 1px #FFF inset;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定＋内側への設定*/
	box-shadow: 1px 2px 5px #e2e2e2, 0px 0px 1px #FFF inset;			/*同上*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child a {
	margin-left: 0px;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	background: #262626;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/menu_bar2.png) no-repeat left center, -webkit-linear-gradient(#3c5aae, #242424 49%, #000 50%, #000 100%);	/*バー画像の読み込みとグラデーション*/
	background: url(../images/menu_bar2.png) no-repeat left center, linear-gradient(#3c5aae, #242424 49%, #000 50%, #000 100%);			/*同上*/
	color: #FFF;	/*文字色*/
}
/*英語表記の設定*/
nav#menubar ul li a span {
	font-size: 9px;	/*文字サイズ*/
	color: #262626;	/*文字色*/
	display: block;
	font-weight: normal;
}
nav#menubar ul li a:hover span,
nav#menubar ul li.current a span {
	color: #FFF;	/*マウスオン時の文字色*/
}
/*小さい端末用(画面幅480px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	padding-bottom: 30px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	overflow: hidden;
	width: 74%;	/*メインコンテンツ幅*/
}
/*１カラム時のメインコンテンツ*/
.c1 #main {
	float: none;
	width: 100%;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*グラデーション*/
	background: linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	color: #262626;		/*文字色*/
	padding: 7px 15px;	/*上下、左右への余白*/
	border-top: 5px solid #3c5aae;			/*上の線の幅、線種、色*/
	border-right: 1px solid #CCC;		/*右の線の幅、線種、色*/
	border-left: 1px solid #CCC;		/*左の線の幅、線種、色*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*グラデーション*/
	background: linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #e2e2e2;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #e2e2e2;			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh4タグの設定*/
#main h4 {
	clear: both;
	margin-bottom: 0.5em;
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	color: #000;	/*文字色*/
}
/*メインコンテンツのp(段落)タグ設定*/
#main p {
	padding: 0px 15px 14px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -5px;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;
	overflow: hidden;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	margin-bottom: 15px;	/*ボックス間のスペース*/
	background: -webkit-linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	background: 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 .list a {
	overflow: hidden;
	padding: 2%;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時*/
#main .list a:hover {
	background: #f6f1b2;	/*背景色*/
	color: #333;				/*文字色*/
}
/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
	margin-left: 25%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 22%;		/*画像の幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 2%;
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
}


#product p {
	padding: 0px 0px 14px;	/*上、左右、下への余白*/
}


#contact img{
	width: auto;
}


/*リストのレスポンシブ化1※PC表示
---------------------------------------------------------------------------*/
.list1 li{
	text-align: left;
}

.list1 li{
	display: inline-block;
	width: 29%;
	padding: 0 1.5%;
	margin-bottom: 0;
	vertical-align: top;

}

/*リストのレスポンシブ化2※PC表示
---------------------------------------------------------------------------*/
.list2 li{
	text-align: left;
}

.list2 li{
    display: inline-block;
    width: 45%;
    padding: 5px 0px;
    margin-bottom: 0;
    vertical-align: top;

}

/*リストのレスポンシブ化3※PC表示
---------------------------------------------------------------------------*/
.list3 li{
	text-align: center;
}

.list3 li{
    display: inline-block;
    width: 45%;
    padding: 5px 0px;
    margin-bottom: 0;
    vertical-align: top;

}

/*業種カード
---------------------------------------------------------------------------*/
.topinfo {
font-weight: bold;
font-size: 17px;
}


/*汎用*/
.list_uc li {
    display: inline-block;
    width: 30%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    box-shadow: 0 10px 6px -6px #969696;
	line-height: 1.5;
}

.box1 {
    padding: 5px 15px;
    margin: 10px 20px;
    font-weight: bold;
    border: solid 1px #969696;
    text-align: center;
    font-size: 13px;
}
.box1 p {
    margin: 0; 
    padding: 0;
}



/*top用*/
.list_top li {
    display: inline-block;
    width: 30%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    box-shadow: 0 10px 6px -6px #969696;
    line-height: 1.5;
}

.toptext {
	text-align: center;
	font-weight: bolder;
	color: #093475;
	vertical-align: .5em;
	font-size: 12px;
}

/*業種用*/
.list_ind li {
    display: inline-block;
    width: 46%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    box-shadow: 0 10px 6px -6px #969696;
    line-height: 1.5;

}

.indtext {
	text-align: center;
	font-weight: bolder;
	color: #093475;
	vertical-align: .5em;
	font-size: 12px;
}


/*商品一覧用*/
.list_pro li {
    display: inline-block;
    width: 46%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    box-shadow: 0 10px 6px -6px #969696;
	line-height: 1.5;
}

.protext {
	text-align: center;
	font-weight: bolder;
	color: #093475;
	vertical-align: .5em;
	font-size: 12px;
}

.list_one {
    position: relative;
    left: 15px;
}


.det1 li {
    display: inline-block;
    width: 49%;
    padding: 0px 0px;
    /*border: 1px solid #cccccc;*/
    line-height: 1.5;
    vertical-align: top;
}

.category_btn {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #3c5aae;
    border: solid 2px #3c5aae;
    border-radius: 3px;
    margin: 7px;
    font-weight: bold;
}

.dettext1  {
    padding: 6px 7px;
}




/*導入事例用*/
.list_cas li {
    display: inline-block;
    width: 30%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    box-shadow: 0 10px 6px -6px #969696;
/*    width: 217.5px; */
    line-height: 1.5;
}

.castext {
	font-weight: bolder;
	color: #093475;
	vertical-align: .5em;
	font-size: 12px;
	margin-bottom: 5px;
}

figure {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.desimg:first-child {
    font-weight:bold!important;
    padding: 10px 15px 5px!important;
    font-size: 19px;
}
.desimg {
    font-size: 15px;
}

figcaption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
  color: #fff;
  font-size: 86%;
  font-weight: bold;
}

figure:hover figcaption {
  opacity: 1;
}



.des {
    padding: 4px 8px!important;
    height: 75px;
}

.textarea {
	padding: 8px 8px;
}

.procolor {
    border: 1px solid #767676;
    background-color: #767676;
    display: inline-block;
    padding: 0 7px;
    line-height: 1.5;
    color: #fff;
    font-size: 86%;
    font-weight: bold;
    vertical-align: .5em;
}


/*業種別のボタン
---------------------------------------------------------------------------*/
.square_btn {
    margin: 5px 2px;
    position: relative;
    display: inline-block;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #FFF;
    background: #03A9F4;/*色*/
    border: solid 1px #0f9ada;/*線色*/
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/*業種別のボタン
---------------------------------------------------------------------------*/
.img_gtop {
	width: 150%;
}

.des {
    padding: 4px 8px!important;
    height: 75px;
}


/*助成金
---------------------------------------------------------------------------*/
th,td {
    border: solid 1px;
    border-color: #3c5aae;
    padding: 5px 10px 5px 10px;
    background-color: #3c5aae15;
}
 
table {
    border-collapse:  collapse; /* セルの線を重ねる */
    width: 100%;
}





ul {
 list-style:none;
 }

li.first {
 width: 200px;
 border: 1px solid #ccc;
 background-color: #eee8aa;
 }

li.next {
 width: 200px;
 border-left: 1px solid #ccc;
 border-right: 1px solid #ccc;
 border-bottom: 1px solid #ccc;
 background-color: #f5f5dc;
 }

span.dan {
 float: left;
 padding: 10px;
 }

span.dan2 {
 display: block;
 margin-left: 110px;
 padding: 10px;
 border-left: 1px solid #ccc;
 }

span.dan2-r {
 display: block;
 margin-left: 110px;
 padding: 10px;
 border-left: 1px solid #ccc;
 background-color: #fffff0;
 }




.box26 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
    margin: 5% 10% 5% 10%;
}

.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 23px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.box26 p {
    margin: 0; 
    padding: 0;
    font-size: medium;
    padding: 8px 15px 3px!important;
}



/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 23%;	/*サブコンテンツ幅*/
}
/*１カラム時のサブコンテンツ*/
.c1 #sub {
	display: none;	/*非表示*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	text-align: center;	/*文字をセンタリング*/
	padding: 5px 0px;	/*左から、上下、左右への余白*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	background: #3c5aae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#3c5aae, #242424 49%, #000 50%);	/*グラデーション*/
	background: linear-gradient(#3c5aae, #242424 49%, #000 50%);			/*同上*/
	color: #FFF;	/*文字色*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下の順の設定。*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	margin-bottom: 5px;			/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding-left: 10px;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#eaeaea, #FFF);	/*グラデーション*/
	background: linear-gradient(#eaeaea, #FFF);			/*同上*/
	-webkit-box-shadow: 0px 0px 1px #FFF inset;	/*内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;		/*同上*/
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background: #3c5aae;	/*背景色*/
	color: #FFF;				/*文字色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	border: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下（外側）のスペース*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #eaeaea);	/*グラデーション*/
	background: linear-gradient(#FFF, #eaeaea);			/*同上*/
	-webkit-box-shadow: 0px 0px 1px #FFF inset;	/*内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;		/*同上*/
}
/*box1内のh2タグ*/
#sub .box1 h2 {
	padding: 2px 0px;	/*上下、左右への余白*/
	border-radius: 0px;	/*角丸をなくす設定*/
}



/*サブコンテンツ下のバナー
---------------------------------------------------------------------------*/
.banner img{
	text-align: center;
	margin-bottom: 5px;
}



/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 15px 0px;
	color: #FFF;				/*文字色*/
	background: #3c5aae;	/*背景色*/
}
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: 350px;	/*ボックスの高さ*/
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td {
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #e2e2e3;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#4b4b4b, #333);	/*グラデーション*/
	background: linear-gradient(#4b4b4b, #333);			/*同上*/
}

/*ボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: none;
	border-radius: 30px;	/*角丸のサイズ*/
	background: #000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#3c5aae, #000);	/*グラデーション*/
	background: linear-gradient(#3c5aae, #000);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	color: #FFF;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #3c5aae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#000, #3c5aae);	/*グラデーション*/
	background: linear-gradient(#000, #3c5aae);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #3c5aae;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*よく頂く質問・リンク共通設定
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq,
.link {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt,
.link dt {
	color: #0b10ed;	/*文字色*/
	font-weight: bold;	/*太字*/
}
.faq dt a,
.link dt a {
	color: #0b10ed;
}
/*回答の設定*/
.faq dd,
.link dd {
	padding-bottom: 15px;
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	top: 0px;
	-webkit-transform: rotate(45deg) translate(35px);
	-ms-transform: rotate(45deg) translate(35px);
	transform: rotate(45deg) translate(35px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	top: 0px;
	-webkit-transform: rotate(45deg) translate(35px);
	-ms-transform: rotate(45deg) translate(35px);
	transform: rotate(45deg) translate(35px);
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;padding: 4px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #3c5aae;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right !important;}
.mini1 {font-size: 15px;font-weight: normal;}



/*フローティング用設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-- 1400px以上 --*/
@media screen and (min-width: 1400px) {
.spnone {display:none}
a#rc_rightArea {
 /*width: 87px; 画像の全体幅*/
 position: fixed;
 top: 65%;
 right: 0px; /*マウスを乗せた時に出てくる幅*/
 display: inline-block;
 transition: all .2s ease;
 z-index: 9999;
}
a#rc_rightArea:hover{
 right: 0;
}
}

/*-- 1399px以下 --*/
@media screen and (max-width: 1399px) {
.pcnone {display:none}
   /* 表示領域が1199px以下の場合に適用するスタイル */
   
a#rc_rightArea2 {
 /*width: 87px; 画像の全体幅*/
 position: fixed;
 top: 70%;
 right: 0px; /*マウスを乗せた時に出てくる幅*/
 display: inline-block;
 transition: all .2s ease;
 z-index: 9999;
}
a#rc_rightArea2:hover{
 right: 0;

}

/* グローバルメニュー固定↓*/
/* リセット */
html, body {
    margin: 0;
    padding: 0;
}
 
/* グローバルナビ */

#globalNavi ul {
  width: 100%;
  height: 50px;
  padding: 0;
  margin: 0;
  list-style-type: none;
  background: #325bb1;
  box-shadow: 3px 3px 3px #aaa;
  }
 
#globalNavi a {
  width: auto;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 12px 0;
  text-decoration: none;
  text-shadow: 0px -1px 1px rgba(0,0,0,0.7);
  display: block;
}
  
#globalNavi ul li a {
  width: 16%;
  float: left;
  padding: auto;
  margin: 0;
  text-align: center;
}
#globalNavi ul li a:hover {
  background: #6f86b5;
}
 
/* 固定 */
.fixed {
    position: fixed;
    top: 0;
    padding: 0;
    width: 96%;
    z-index: 1000;
}

/* グローバルメニュー固定↑*/

}


/*画面幅1000px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:910px){
.indtext {
	font-weight: bolder;
	color: #093475;
	vertical-align: .5em;
	font-size: 11px;
}

.toptext {
	text-align: center;
	font-weight: bolder;
	color: #093475;
	vertical-align: .5em;
	font-size: 11px;
}



}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*スマホのみ非表示（PC、iPadPro、iPadは表示）
---------------------------------------------------------------------------*/
.sumahonone {display:none}
   /* 表示領域が769px以下の場合に適用するスタイル */


/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像の設定*/
header #logo img {
	width: 50%;	/*ロゴ画像の幅*/
}
/*電話番号ボックス全体の設定*/
header .tel {
	font-size: 21px;
	line-height: normal;
	letter-spacing: normal;
}

header .tel img {
	width: 60px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;		/*メニュー幅*/
}
nav#menubar ul li a {
	margin: 0 2% 2% 0;
}
nav#menubar ul li:nth-child(even) a {
	margin-right: 0;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {display: none;}


/*業種カード
---------------------------------------------------------------------------*/
img {
    border: none;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

/*汎用*/
.list_uc li {
    display: inline-block;
    width: 45%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    box-shadow: 0 10px 6px -6px #969696;
	line-height: 1.5;
}

.box1 {
    padding: 5px 15px;
    margin: 10px 20px;
    font-weight: bold;
    border: solid 1px #969696;
    text-align: center;
}
.box1 p {
    margin: 0; 
    padding: 0;
}



/*top用*/
.list_top li {
    display: inline-block;
    width: 45%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    box-shadow: 0 10px 6px -6px #969696;
    line-height: 1.5;
}

.toptext {
	text-align: center;
	font-weight: bolder;
	color: #093475;
	vertical-align: .5em;
	font-size: 16px;
}

/*業種用*/
.list_ind li {
    display: inline-block;
    width: 45%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    box-shadow: 0 10px 6px -6px #969696;
    line-height: 1.5;

}

.indtext {
	font-weight: bolder;
	color: #093475;
	vertical-align: .5em;
	font-size: 16px;
}


/*商品一覧用*/
.list_pro li {
    display: inline-block;
    width: 46%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    box-shadow: 0 10px 6px -6px #969696;
	line-height: 1.5;
}

.list_one {
    position: relative;
    left: 15px;
}


.det1 li {
    display: inline-block;
    width: 49%;
    padding: 0px 0px;
    /*border: 1px solid #cccccc;*/
    line-height: 1.5;
    vertical-align: top;
}

.category_btn {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #3c5aae;
    border: solid 2px #3c5aae;
    border-radius: 3px;
    margin: 7px;
    font-weight: bold;
}

.dettext1  {
    padding: 6px 7px;
}




/*導入事例用*/
.list_cas li {
    display: inline-block;
    width: 45%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    box-shadow: 0 10px 6px -6px #969696;
/*    width: 217.5px; */
    line-height: 1.5;
}

figure {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.desimg:first-child {
    font-weight:bold!important;
    padding: 10px 15px 5px!important;
    font-size: 19px;
}
.desimg {
    font-size: 15px;
}

figcaption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
  color: #fff;
  font-size: 86%;
  font-weight: bold;
}

figure:hover figcaption {
  opacity: 1;
}



.des {
    padding: 4px 8px!important;
    height: 75px;
}

.textarea {
	padding: 8px 8px;
}

.procolor {
    border: 1px solid #767676;
    background-color: #767676;
    display: inline-block;
    padding: 0 7px;
    line-height: 1.5;
    color: #fff;
    font-size: 86%;
    font-weight: bold;
    vertical-align: .5em;
}





/*サブコンテンツ下のバナー　480px
---------------------------------------------------------------------------*/
.banner img{
	margin: 10px 35%;
    width: 30%;
}


}

/*画面幅801px以上では出さない */
@media screen and (min-width: 801px) {
.pcnone2 {
	display:none;
}
}




/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){




/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border: none;
	padding: 10px 0px;
	text-align: center;
}
/*ロゴ画像の設定*/
header #logo img {
	width: 65%;	/*ロゴ画像の幅*/
	float: none;
	margin-bottom: 10px;
}
/*電話番号ボックス全体の設定*/
header .tel {
	float: none;
	text-align: center;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*大きな端末用(画面幅481px以上)メニューを非表示にする*/
#menubar {
	display: none;
}
/*小さい端末用(画面幅480px以下)メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	border-top: 1px solid #CCC;
	margin-bottom: 20px;
}
/*メニュー１個ごとの設定*/
nav#menubar-s ul li a {
	text-decoration: none;
	display: block;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #CCC;
	text-align: center;
	padding: 10px 0px;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 2%;		/*上から18pxの場所に配置*/
	right: 2%;	/*右から2%の場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #333;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	font-size: 11px;
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #333;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*service.htmlで使っている紹介ボックスの設定
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main .list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: none;
	width: 100%;
	margin: 0;
	margin-bottom: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*一覧ページの各物件ボックス内のテーブル（CMS用）
---------------------------------------------------------------------------*/
.list table {
	margin: 0px;
	width: 100%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f4f4f4));	/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);		/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);				/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f4f4f4));	/*プラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);					/*同上*/
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 4px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 30%;
	padding: 4px;
}

/*ボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: auto;
	font-size: 14px;
	letter-spacing: normal;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}



/*リストのレスポンシブ化1
---------------------------------------------------------------------------*/
.list1 li{
	text-align: center;
}

.list1 li{
	display: inline-block;
	width: 65%;
	padding: 0 1.5%;
	margin-bottom: 0;
	vertical-align: top;
	text-align: left;
}


/*リストのレスポンシブ化3
---------------------------------------------------------------------------*/
.list3 li{
	text-align: center;
}

.list3 li{
    display: inline-block;
    width: 65%;
    padding: 10px 0px;
    margin-bottom: 0;
    vertical-align: top;


}

/*サブコンテンツ下のバナー　480px
---------------------------------------------------------------------------*/
.banner img{
	margin: 5px 20%;
    width: 60%;
}


/*業種カード
---------------------------------------------------------------------------*/
/*汎用*/
.list_uc li {
    display: inline-block;
    width: 80%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    margin-left: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 6px -6px #969696;
	line-height: 1.5;
}

.box1 {
    padding: 5px 15px;
    margin: 10px 20px;
    font-weight: bold;
    border: solid 1px #969696;
    text-align: center;
}
.box1 p {
    margin: 0; 
    padding: 0;
}



/*top用*/
.list_top li {
    display: inline-block;
    width: 80%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    margin-left: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 6px -6px #969696;
    line-height: 1.5;
}

.toptext {
	text-align: center;
	font-weight: bolder;
	color: #093475;
	vertical-align: .5em;
}

/*業種用*/
.list_ind li {
    display: inline-block;
    width: 80%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    margin-left: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 6px -6px #969696;
    line-height: 1.5;

}

.indtext {
	font-weight: bolder;
	color: #093475;
	vertical-align: .5em;
}


/*商品一覧用*/
.list_pro li {
    display: inline-block;
    width: 80%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    margin-left: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 6px -6px #969696;
	line-height: 1.5;
}

.list_one {
    position: relative;
    left: 15px;
}


.det1 li {
    display: inline-block;
    width: 90%;
    padding: 0px 0px;
    /*border: 1px solid #cccccc;*/
    line-height: 1.5;
    vertical-align: top;
    margin-left: 20px;
}

.category_btn {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #3c5aae;
    border: solid 2px #3c5aae;
    border-radius: 3px;
    margin: 7px;
    font-weight: bold;
}

.dettext1  {
    padding: 6px 7px;
}




/*導入事例用*/
.list_cas li {
    display: inline-block;
    width: 80%;
    padding: 0px 0px;
    margin-top: 10px;
    margin-bottom: 15px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #cccccc;
    margin-right: 4px;
    margin-left: 4px;
    margin-left: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 6px -6px #969696;
/*    width: 217.5px; */
    line-height: 1.5;
}

figure {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.desimg:first-child {
    font-weight:bold!important;
    padding: 10px 15px 5px!important;
    font-size: 19px;
}
.desimg {
    font-size: 15px;
}

figcaption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
  color: #fff;
  font-size: 86%;
  font-weight: bold;
}

figure:hover figcaption {
  opacity: 1;
}



.des {
    padding: 4px 8px!important;
    height: 75px;
}

.textarea {
	padding: 8px 8px;
}

.procolor {
    border: 1px solid #767676;
    background-color: #767676;
    display: inline-block;
    padding: 0 7px;
    line-height: 1.5;
    color: #fff;
    font-size: 86%;
    font-weight: bold;
    vertical-align: .5em;
}





}
/*画面幅480px以下の設定おわり
------------------------------------------------------------------------------------------------------------------------------------------------------*/




