﻿@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	background-color: #FFF;	/*全体の背景色*/
	background-image: url(../images/bg01.png);	/*背景画像の読み込み*/
	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: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #f19ca6;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 980px;	/*コンテナー幅*/
	margin: 0px auto;
	-webkit-box-shadow: 0px 0px 3px #b3b3b3;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 0px 8px #b3b3b3;			/*同上*/
	background-color: #FFF;	/*コンテナーの背景色*/
	padding: 0px 10px;		/*上下、左右の余白*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*ブロックの幅*/
	height: 200px;	/*ブロックの高さ*/
	position: relative;
}
/*h1タグの設定*/
header h1 {
	font-weight: normal;		/*通常太字なのを標準にする設定*/
	color: #595757;				/*文字色*/
	background-color: #FFF;	/*背景色*/
	font-size: 10px;			/*文字サイズ*/
	text-align: right;			/*文字を右寄せ*/
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: 10px;	/*ヘッダーブロックに対して左から10pxの位置に配置*/
	top: 30px;	/*ヘッダーブロックに対して上から18pxの位置に配置*/
}
/*電話番号ボックスの設定*/
header tel {
	position: absolute;
	top: 24px;			/*ヘッダーブロックに対して上から24pxの位置に配置*/
	right: 20px;		/*ヘッダーブロックに対して右から20pxの位置に配置*/
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menu ul {
	position: absolute;
	left: 0px;		/*ヘッダーブロックに対して左から0pxの位置に配置*/
	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの位置に配置*/
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 196px;	/*メニュー幅*/
}
nav#menu ul li a {
	height: 42px;	/*ブロックの高さ*/
	padding-top: 8px;
	line-height: 1.4;	/*行間*/
	text-decoration: none;
	display: block;
	margin: 0px 0px 20px 4px;		/*メニューの外側への余白。上、右、下、左への指定。*/
	font-size: 14px;	/*文字サイズ*/
	font-weight: bold;
	letter-spacing: 0.1em;		/*文字間隔を少し広めにとる設定。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 2px;		/*角丸のサイズ*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f4f4f4));	/*バー画像の読み込みとグラデーション*/
	background: -webkit-linear-gradient(#FFF, #e8e8e8 49%, #e8e8e8 50%, #FFF 100%);	/*同上*/
	background: linear-gradient(#FFF, #e8e8e8 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	background-repeat: no-repeat;		/*背景のバー画像をリピートしない設定*/
	background-position: left center;	/*背景のバー画像の位置*/
	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#menu ul li:first-child a {
	margin-left: 0px;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menu ul li a:hover,
nav#menu ul li#current a {
	border: 1px solid #709c12;	/*枠線の幅、線種、色*/
	background-color: #8fc31f;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#709c12), to(#8fc31f));	/*バー画像の読み込みとグラデーション*/
	background: -webkit-linear-gradient(#8fc31f, #709c12 49%, #709c12 50%, #8fc31f 100%);	/*同上*/
	background: linear-gradient(#8fc31f, #709c12 49%, #709c12 50%, #8fc31f 100%);			/*同上*/
	background-repeat: no-repeat;		/*背景のバー画像をリピートしない設定*/
	background-position: left center;	/*背景のバー画像の位置。*/
	color: #FFF;	/*文字色*/
}
/*英語表記の設定*/
nav#menu ul li a span {
	font-size: 9px;	/*文字サイズ*/
	color: #8fc31f;	/*文字色*/
	display: block;
	font-weight: normal;
}
nav#menu ul li a:hover span,
nav#menu ul li#current a span {
	color: #FFF;	/*マウスオン時の文字色*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;	/*幅*/
	height: auto;	/*高さ*/
	position: relative;
	border-radius: 1px;		/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	margin-bottom: 20px;	/*画像の下の余白*/
}
#mainimg img {
	border-radius: 1px;	/*角丸のサイズ*/
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

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

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



/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width:980px;
	height:inherit;
	float:left;
	background-color: #D4CAB4;	/*背景色*/
}

footer .pr {
	/*display: block;*/
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #604C3F;
}
footer a:hover {
	color: #604C3F;
}

.list_slidenav{
	width:300px;
	height:100px;
	margin:10px 50px;
	text-align:left;
	float:left;
}


.titile li{
	font-size:11px;
	color:#fff;
	font-wight:bold;
}

.copy{
	width:980px;
	clear: both;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 10px;
	color: #604C3F;				/*文字色*/
	float:left;
}



/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 1px;		/*角丸のサイズ*/
	margin-bottom: 15px;	/*ボックス間のスペース*/
	background-color: ＃FFF
	/*background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	/*background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 0px 1px 2px #CCC, 0px 0px 0px 2px #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 p {
	width:800px;
	padding: 0px;
	margin: 20px 40px;	/*左の写真とのバランスをとって設定*/
	float:left;
}
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 2px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	/*border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin:5px 10px 5px 40px;
}
/*ボックス内の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;	/*文字色*/
}
/*simpleタイプ（※ボックス内の部分的な箇所にリンクを設定する場合）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list.simple article {
	padding: 10px;
	overflow: hidden;
}
#main section.list.simple article a {
	padding: 0px;
	display: inline;
	text-decoration: underline;
}
/*マウスオン時*/
#main section.list.simple article a:hover {
	background-color: transparent;
	color: #f19ca6;
}
/*ボックス内の写真設定*/
#main section.list.simple article figure a:hover img {
	background-color: #f6f1b2;
	border: 1px solid #999;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 20px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 20px;
	text-align: center;
	background-color: #e2e2e3;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background-image: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブルのキャプション設定*/
.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;	/*文字を太字にする設定*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: none;
	border-radius: 3px;	/*角丸のサイズ*/
	background-color: #036eb8;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#2ea7e0), to(#036eb8));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#2ea7e0, #036eb8);	/*同上*/
	background-image: linear-gradient(#2ea7e0, #036eb8);			/*同上*/
	-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-color: #2ea7e0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#036eb8), to(#036eb8));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#036eb8, #036eb8);	/*同上*/
	background-image: linear-gradient(#036eb8, #036eb8);			/*同上*/
}

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

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15 {
	margin: 25px 0;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #fa5d95;
}
.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;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}
.mini1 {
	font-size: 11px;
	font-weight: normal;
}

.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	text-align: center;
	height: auto;
	margin-bottom: 15px;
}

/*ロゴ画像の設定*/
header #logo {
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}
/*電話番号ボックスの設定*/
header address {
	position: static;
	width: auto;
	margin: 0px auto 20px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menu ul {
	position: static;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	width: 50%;
}
nav#menu ul li a {
	margin: 0px;
	margin-bottom: 5px;
}
/*奇数番目のメニューの設定(※スマホ・タブレットでは「HOME」が隠れているので「サービス」「お問い合わせ」が奇数番目になる)*/
nav#menu ul li:nth-child(odd) {
	width: 49%;
	margin-left: 1%;
}
/*最後のメニューの設定*/
nav#menu ul li:last-child {
	margin-bottom: 20px;
}

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

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

/*その他
---------------------------------------------------------------------------*/

/*スマホ・タブレットで非表示（HOMEメニューに使用）*/
.stn {
	display: none;
}

footer {
	width:100%;
	height:auto;
	float:left;
	background-color: #2ea7e0;	/*背景色*/
}


.list_slidenav{
	width:90%;
	height:auto;
	margin:1em 1em;
	text-align:left;
	float:left;
}


.titile li{
	font-size:8px;
	color:#fff;
	font-wight:bold;
}

.copy{
	width:100%;
	clear: both;
	text-align: center;
	padding-top: 1em;
	padding-bottom: 1em;
	color: #FFF;				/*文字色*/
	float:left;
}


}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	text-align: center;
	height: auto;
	margin-bottom: 15px;
}
/*h1ロゴの設定*/
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo {
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}
header #logo img {
	width: 80%;		/*画面に対してロゴ画像を80％の幅に*/
	height: auto;
}
/*電話番号ボックスの設定*/
header address {
	position: static;
	width: auto;
	margin: 0px auto 20px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menu ul {
	position: static;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: none;
	width: auto;
}
nav#menu ul li a {
	margin: 0px;
	margin-bottom: 5px;
}
/*最後のメニューの設定*/
nav#menu ul li:last-child {
	margin-bottom: 20px;
}

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

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


/*service.htmlで使っている紹介ボックスの設定
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list article p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list article figure img {
	width: 40%;
	height: auto;
	margin-right: 5px;
}

/*ボックス内の段落タグ設定*/
#main section.list article p {
	width:100%;
	padding: 0px;
	margin: 10px;	/*左の写真とのバランスをとって設定*/
	float:left;
}
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 2px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	/*border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin:5px 10px;
}

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

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}
/*スマホ・タブレットで非表示（HOMEメニューに使用）*/
.stn {
	display: none;
}

footer {
	width:100%;
	height:auto;
	float:left;
}


.list_slidenav{
	width:90%;
	height:auto;
	margin:1em 1em;
	text-align:left;
	float:left;
}


.titile li{
	font-size:8px;
	color:#fff;
	font-wight:bold;
}

.copy{
	width:100%;
	clear: both;
	text-align: center;
	padding-top: 1em;
	padding-bottom: 1em;
	color: #FFF;				/*文字色*/
	float:left;
}

}
