@charset "utf-8";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 1.5;		/*行間*/
	background: #1e2027;	/*全体の背景色（古いブラウザだとここの色のみが出ます）*/
	background: radial-gradient(circle 400px at 25% 50px,#414349,#1e2027) no-repeat #1e2027;	/*ロゴ背後の光(大きさ400px、左から25%、上から50pxの場所に配置)と、背景色*/
	border-top: 4px solid #8a0a0a;	/*HPの最上部に入っている線の幅と線種と色*/
	-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%;font-weight: normal;}
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%;}

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

/*containerブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 950px;	/*サイトの最大幅*/
	padding: 0 3%;	/*上下、左右へのボックス内の余白*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;
	color: #fff;	/*ヘッダーの文字色*/
	height: 150px;	/*ヘッダーの高さ*/
}
/*リンクテキストの文字色*/
header a {
	color: #fff;
}
/*ロゴ画像*/
header #logo img {
	width: 350px;	/*画像幅*/
	position: absolute;
	left: 3%;	/*ヘッダーの左から3%の場所に配置*/
	top: 50px;	/*ヘッダーの上から50pxの場所に配置*/
}
/*電話番号ボックスの設定*/
header #tel {
	position: absolute;
	right: 3%;	/*ヘッダーの右から3%の場所に配置*/
	top: 38px;	/*ヘッダーの上から38pxの場所に配置*/
	font-size: 11px;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定*/
	background: #000;	/*背景色（※古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0はRGB値での色設定。ここでは黒。0.6は透明度60%の意味。*/
	border-radius: 8px;	/*角丸のサイズ*/
	width: 300px;		/*幅*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px;		/*ボックス内の余白*/
}
/*電話番号の文字設定*/
header #tel span {
	display: block;
	font-size: 18px;	/*文字サイズ*/
	color: #ffde00;		/*文字色*/
	font-weight: bold;	/*太字に*/
}
#tit01 a{ text-decoration: none;}


/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul {
	margin-left: 0.8%;	/*メニューブロックの左に空ける余白。全体の左右バランスを取って下さい。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 16%;		/*幅*/
	margin-left: 0.5%;	/*メニュー間にあけるスペース*/
}
#menubar li a {
	display:  block;text-decoration: none;
	background: #000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#000, #1a1c22);	/*グラデーション*/
	color: #fff;	/*文字色*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px 0px;		/*上下、左右への余白*/
	border-top: 1px solid #4a4f60;		/*上側への線の幅、線種、色*/
	border-right: 1px solid #4a4f60;	/*右側への線の幅、線種、色*/
	border-left: 1px solid #4a4f60;		/*左側への線の幅、線種、色*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #fff;	/*背景色*/
	color: #1e2027;		/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	background: #fff;	/*背景色*/
	padding: 3%;	/*ボックス内の余白*/
	box-shadow: 0px 0px 50px rgba(0,0,0,0.5);
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右に回り込み*/
	width: 72%;		/*幅*/
}
/*１カラム利用時の設定*/
.c1 #main {
	float: none;
	width: auto;
}
/*h2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	font-size: 18px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	color: #fff;		/*文字色*/
	background: #202128;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#53545a, #202128);	/*グラデーション*/
	padding: 5px 15px;	/*上下、左右への余白*/
	border-bottom: 4px solid #8a0a0a;	/*下線の幅、線種、色*/
}
/*h3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	font-size: 18px;	/*文字サイズ*/
	background: #fff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#FFF, #eee);	/*グラデーション*/
	padding: 4px 15px;		/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	color: #333;	/*文字色*/
}
/*h4タグの設定*/
#main h4 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	font-size: 14px;	/*文字サイズ*/
	background: #fff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#FFF, #eee);	/*グラデーション*/
	padding: 4px 15px;		/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	color: #333;	/*文字色*/
}

/*h5タグの設定*/
#main h5 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	font-size: 14px;	/*文字サイズ*/

	padding: 4px 15px;		/*上下、左右への余白*/
	border-bottom: 1px #666666 dotted ;
	
	color: #333;	/*文字色*/
}


/*段落タグ設定*/
#main p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section+section {
	margin-top: 50px;
}

/*ページナビ（メインメニューの下にある、現在の階層を示すナビメニュー）
---------------------------------------------------------------------------*/
/*ナビブロック全体*/
.nav {
	background: #eee;		/*背景色*/
	padding: 10px 20px;		/*上下、左右へのボックス内の余白*/
	margin-bottom: 30px;	/*ボックスの下（外側）に空けるスペース*/
	margin-top: 10px;		/*メニューとの余白が空きすぎるので少し上につめる*/
	border-radius: 10px;	/*角丸の指定*/
}
/*メニュー１個あたりの指定*/
.nav li {
	display: inline;	/*横並びになる指定*/
	padding: 0 5px;		/*上下、左右への余白*/
}
/*メニューの冒頭に入れる「>」のマーク*/
.nav li::before{
	content: ">";			/*このテキストを出力します。変更してもかまいませんが機種依存文字は化ける場合があるので使わない。*/
	padding-right: 12px;	/*文字サイズ*/
	color: #999;			/*文字色*/
}
/*最初のメニューには「>」は入れない*/
.nav li:first-child::before {
	content: none;
}

/*SERVICEページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;overflow: hidden;
	margin-bottom: 20px;	/*上下ボックス間の余白*/
	padding: 20px;		/*ボックス内の余白。ここを変更する際は、下の「#main .list a」のpaddingとmarginの数字も合わせる。*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF, #e3e3e3);	/*背景グラデーション*/
	box-shadow: 0px 0px 0px 1px #fff inset;	/*内側の影。右へ・下へ・ぼかし幅・距離・色を設定*/
	color: #333;	/*文字色*/
}
#main .list a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 20px;	/*ボックス内の余白。ここを変更する際は、上の「#main .list」のpaddingの数字も合わせる。*/
	margin: -20px;	/*ボックス内の余白。ここを変更する際は、上の「#main .list」のpaddingの数字も合わせる。マイナス記号は外さないように。*/
	color: #333;	/*文字色*/
}
/*マウスオン時の背景色*/
#main .list a:hover {
	background: #fff;	/*背景色*/
}
/*リンクを貼った際に出る「→」マーク*/
#main .list a::before {
	content: "→";	/*出力する文字。変更しても構いませんが機種依存文字は化けるので使わないで下さい。*/
	font-size: 12px;	/*文字サイズ*/
	display: block;
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	width: 30px;	/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	background: #ccc;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.2);	/*背景グラデーション。0,0,0は黒の事で、0.3は透明度30%の事。*/
	color: #fff;	/*文字色*/
}
/*マウスオン時の「→」マーク*/
#main .list a:hover::before {
	background: #8a0a0a;	/*背景色*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	padding-left: 10px;	/*枠線とテキストとの間の余白*/
 	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #8a0a0a;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #8a0a0a;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
#main .list p {
	padding: 0px;
}
/*ボックス内の画像*/
#main .list figure {
	float: left;	/*左に回り込み*/
	width: 30%;		/*画像幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 10px;		/*画像右側に空ける余白*/
}
/*マウスオン時のボックス内の写真設定。ボックスにoption2スタイルが指定された場合の画像の設定。*/
.list.option2 a:hover figure img,
.list.option2 figure img {
	opacity: 0.3 !important;	/*半透明にする設定*/
}

/*SERVICEページの各ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
	font-size: 12px;	/*文字サイズ*/
	width: 63%;			/*テーブル幅*/
	margin-bottom: 5px;
	background: #fff;	/*背景色*/
}
#main .list table,
#main .list table td,
#main .list table th{
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main .list table td,
#main .list table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main .list table th{
	width: 20%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #edf0f5;	/*背景色*/
}
/*説明用ブロック*/
#main .list table td {
	width: 30%;	/*幅*/
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
#sub {
	float: left;	/*左に回り込み*/
	width: 24%;		/*幅*/
}
/*１カラム利用時の設定*/
.c1 #sub {
	display: none;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	padding: 5px 10px;	/*上下、左右への余白*/
	background: #555;	/*背景色*/
	color: #FFF;		/*文字色*/
}

/*subコンテンツのbox
---------------------------------------------------------------------------*/
#sub .box {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	background: #e2e2e2 url(../images/bg.png);	/*背景色と背景画像の読み込み*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 20px;	/*ブロックの下に空けるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;display: block;
	border-bottom: 1px solid #ccc;	/*下側の線の幅、線種、色*/
	padding: 2px 10px;	/*上下、左右への余白*/
	background: #FFF;	/*背景色*/
}
/*マウスオン時の背景色*/
#sub ul.submenu li a:hover {
	background: #f0f0f0;	/*背景色*/
	color: #333;	/*文字色*/
}
/*box内のメニューブロックの設定*/
#sub .box ul.submenu {
	margin-bottom:  0;
}

/*サブコンテンツ内の一覧ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#sub .list {
	position: relative;overflow: hidden;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;	/*行間を狭くする*/
	background: #fff;	/*背景色*/
}
#sub .list a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 10px;	/*ボックス内の余白*/
	border-bottom: 1px solid #ccc;	/*上の線の幅、線種、色*/
}
/*マウスオン時*/
#sub .list a:hover {
	background: #f0f0f0;	/*背景色*/
	color: #333;	/*文字色*/
}
/*ボックス内のh4タグ設定*/
#sub .list h4 {
	color: #8a0a0a;		/*文字色*/
}
/*ボックス内の写真設定*/
#sub .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	margin-right: 5px;	/*写真の右側に空ける余白*/
}

/*フッター設定
---------------------------------------------------------------------------*/
/*footerボックス*/
footer {
	clear: both;overflow: hidden;
	border-top: 5px solid #8a0a0a;	/*上の線の幅、線種、色*/
	background: #444;	/*背景色*/
	color: #fff;		/*文字色*/
	padding-top: 20px;	/*上に空けるボックス内の余白*/
}
/*footer内のinner*/
footer .inner {
	padding: 0 50px;	/*上下、左右へのブロック内余白*/
}
/*リンクテキスト、マウスオン時の文字色*/
footer a, footer a:hover {
	color: #fff;
}
/*フッター内のh2タグ*/
footer h2 {
	font-size: 200%;	/*文字サイズ*/
	font-weight: normal;
	text-align: center;	/*内容をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少し広く*/
}
/*フッター内のaddress（電話番号ブロック）タグ*/
footer address {
	font-style: normal;
	background: #333;		/*背景色*/
	border-radius: 10px;	/*角丸の指定*/
	text-align: center;		/*内容をセンタリング*/
	line-height: 1.5;		/*行間*/
	padding: 5px;			/*ボックス内の余白*/
}
/*フッター内のaddress（電話番号の行）タグ*/
footer address .tel {
	font-size: 40px;	/*文字サイズ*/
	background: url(../images/icon_tel.png) no-repeat left center / 30px;	/*電話番号アイコンの読み込み*/
	padding-left: 45px;	/*電話番号アイコンの幅をここで調整する*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	clear: both;overflow: hidden;
	font-size: 80%;	/*文字サイズを少し小さく*/
	margin-left: -1%;
	padding: 20px 0;
}
/*１列分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 24%;		/*今回は４列作ったので、下のmarginを含めて25%になるよう指定。５列にするならこの行は19%にする。*/
	margin-left: 1%;
}
/*メニュー１個あたりの設定*/
#footermenu ul li {
	padding: 0 10px;	/*上下、左右への余白*/
}
/*見出し*/
#footermenu li.title {
	font-weight: bold;	/*太字にする*/
	background: rgba(0,0,0,0.3);	/*背景色*/
	border-radius: 2px;	/*角丸のサイズ*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	opacity: 0.6;	/*透明度。70%色がでた状態の事。*/
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;	/*透明度。100%色がでた状態の事。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
	color: #fff;		/*文字色*/
	padding: 20px;		/*ボックス内の余白*/
}
#copyright a {text-decoration: none;color: #fff;}
#copyright .pr {display: block;}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 20px;
	margin-bottom: 20px;
	height: 300px;	/*高さ*/
	overflow: auto;	/*上で設定した高さを超えた場合にスクロールを出す設定。全部表示させていたいなら、この行と上の高さの行を削除する。*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #353baf;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}


/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #8a0a0a;	/*文字色*/
	font-weight: bold;	/*文字を太字にする*/
	padding-top: 15px;
}
.faq dt a {
	color: #8a0a0a;	
}
/*回答の設定*/
.faq dd {
	overflow: hidden;
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
	padding-bottom: 15px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*inputボタン
---------------------------------------------------------------------------*/
#main input[type="submit"].btn,
#main input[type="button"].btn,
#main input[type="reset"].btn {
	padding: 5px 10px;	/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 15px;	/*文字サイズ*/
	border-radius: 3px;	/*角丸のサイズ*/
	background: #fff;	/*背景色*/
}
/*マウスオン時の設定*/
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
	border: 1px solid #999;
}

/*ページの上部へ「↑」ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;
	z-index: 100;
	text-align: center;
	width: 50px;	/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	bottom: 100px;	/*下から１００pxの場所に配置*/
	right: 5%;		/*右から5%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1,option2共通*/
span.option1, span.option2 {
	text-align: center;
	display: block;
	font-size: 10px;	/*文字サイズ*/
	width: 120px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(36px,-15px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
	color: #FFF;	/*文字色*/
	background: #999;	/*背景色*/
}
/*option1への追加設定*/
span.option1 {
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
}
/*h2タグ内で使った場合のoption1とoption2*/
h2 span.option1, h2 span.option2 {
	width: auto;
	position: static;
	transform: none;
	display: inline-block;
	font-size: 15px;
	margin-left: 10px;
	padding: 0px 5px;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*アイコン　共通*/
.icon {
	display: inline-block;
	margin: 30px 0px 0px 0px;
	font-size: 14px;	/*文字サイズ*/
	padding: 5px 10px 5px 10px;		/*ボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #eee;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	color:#fff;
	width:40%;
	text-align:center;
}
/*アイコン色付き（赤）*/
.icon.color1 {
	border: 1px solid #a21e1e;	/*枠線の幅、線種、色*/
	background: #d42a2a;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#d42a2a, #a21e1e);	/*グラデーション*/
	color: #fff;	/*文字色*/
}

.icon.color1 a {
	text-decoration: none;
	color:#fff;
}
.icon.color1 a:hover{ color:#CCC;}
/*アイコン色付き（青）*/
.icon.color2 {
	border: 1px solid #161995;	/*枠線の幅、線種、色*/
	background: #2b2ebc;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#2b2ebc, #161995);	/*グラデーション*/
	color: #fff;	/*文字色*/
}




/*シートカバーページ　詳細
---------------------------------------------------------------------------*/
.photo_text_box2 {padding-left: 15px; padding-right: 15px; padding-top: 20px; padding-bottom: 20px; }
.photo_text_box2 img {max-width: 100%; height: auto; vertical-align: bottom;}

.photo_leftbox {padding-bottom: 20px; }
	

.order_box_img {
    width:100%;
    }

.order_box_bigimg {
    width: 100%;
}
.order_box_bigimg ul {
    width: 100%;
    
	margin-left: 0px;
    margin-right: 2px;
    margin-bottom: 5px;
    margin-top: 5px;
	list-style: none;
	
}

.order_box_bigimg li img {float:left; margin-right:2px; margin-bottom:5px; width:88px; height:75px; }

.txt_s{ font-size:10px; line-height:15px;}


.can_rental{ text-align:center; background-color:#a20000; color:#FFF; font-size:16px; font-weight:bold; padding:4px; margin-bottom:20px;}
 
.can_rental_right{ background-color:#fff; color:#FF0000; padding:2px; font-size:15px;}

.can_rental_right_txt{ color:#000000; font-size:15px; }	

table.seatcover_price{ text-align:center; width:100%; line-height:20px;}

.seatcover_price01 td{ width:40%; text-align:left; }
.seatcover_price02 td{ width:10%; text-align:left;}
.seatcover_price03 td{ width:50%; text-align:left; font-size:14px}
.seatcover_txt12{ color:#000000; font-size:12px; text-align:left; }	
.seatcover_txt15_n{ color:#000000; font-size:15px; text-align:left; text-decoration: line-through;}	
.seatcover_txt15{ color:#000000; font-size:15px; text-align:left; }	
.box_scbtn	{padding-top: 10px; padding-bottom:5px;}
.box_scbtn a:hover	{background-color:#c5c5c5;  opacity: 0.55;}
.box_scbtn1, .box_scbtn2
	{color:#000; font-size:12px; font-weight:500; border-radius:8px; padding:5px 0px 5px 0px; text-align:center;  margin-bottom:10px; line-height:20px;  text-decoration: none;
	
	}

.box_scbtn1 a, .box_scbtn2 a	{
 color:#000; font-size:12px; font-weight:800; border-radius:8px; text-decoration: none;	
	
	
	}
.box_scbtn1 a:hover, .box_scbtn2 a:hover	{
 color:#e3e3e3; font-size:12px; font-weight:800; border-radius:8px;
	text-decoration: none;	}
	

.box_scb_btn {padding-top: 3px; padding-bottom:3px; text-decoration: none;}
.box_scb_btn a {padding-top: 3px; padding-bottom:3px; text-decoration: none; background-color:#8a0a0a; }
.box_scb_btn a:hover { text-decoration: none;   background-color:#8a0a0a; opacity: 0.55;   }
.box_scb_btn1 {color:#FFFFFF; font-size:15px; font-weight:500; border-radius:8px; padding:8px 0px 8px 0px; text-align:center; margin-bottom:10px; width:100%; background-color:#8a0a0a; }
.box_scb_btn1 a  { color:#FFFFFF; font-size:15px; font-weight:800; border-radius:8px; text-decoration:none; background-color:#8a0a0a;}
.box_scb_btn1 a:hover{ color:#d1dcf4; font-size:15px; font-weight:800; border-radius:8px; text-decoration:none;   }



table.seatcover_price{ text-align:center; width:100%; line-height:20px; font-size:18px;}

table.syousai { width: 100%; border-collapse: collapse;}

.syousai th, .syousai td { border: solid 1px #888888; }
.ninzuu { width: 20%;}

/* box_ scbtn1、box_sctn2を横に並べる設定 */
.box_scbtn:after	{content: "";
	display: block;
	clear: both}

.box_scbtn1, .box_scbtn2{float: left;
	width: 48%;
	margin-right: 2%;
	background-color:#b8b8b8;  }

/* box_ bbtn1、box_bbtn2　青いバナー*/	
.box_kbtn {padding-left: 15px; padding-right: 15px; padding-top: 20px; padding-bottom:20px}
.box_kbtn a {color:#FFFFFF; background-color:#8a0a0a; }
.box_kbtn a:hover {color:#FFFFFF; background-color:#8a0a0a; opacity: 0.55; }
.box_kbtn1, .box_kbtn2	{font-size:14px; font-weight:500; border-radius:8px; padding:10px 0px 10px 0px; text-align:center; margin-bottom:10px; background-color:#8a0a0a; text-decoration: none; }

.box_kbtn1 a, .box_kbtn2 a	{font-size:15px; font-weight:500; border-radius:8px; text-decoration: none; }
.box_kbtn1 a:hover, .box_kbtn2 a:hover	{font-size:15px; font-weight:500; border-radius:8px; text-decoration: none; }


/* シート生地　詳細*/
.sheet202 li{ float:left; margin-bottom:10px;}
#colorSample01 li{ padding:2px; border:solid 1px #474747; margin-right:2px; list-style: none;  }
#colorSample01 p{ padding:0px; margin:0px;}
/* シート生地　詳細 追加*/
.sheetacpb li{ float:left; margin-bottom:10px; width:18%;}
#colorSampleacpb li{ padding:2px; border:solid 1px #474747; margin-right:3px; list-style: none; font-size:12px; line-height:15px; }
#colorSampleacpb p{ padding:5px; margin:0px; background-color:#000099; color:#FFFFFF; font-size:17px;}

/* シート生地　採寸表*/
.box6 {padding-left: 15px; padding-right: 15px; padding-top: 20px; padding-bottom:20px; }
.box6-1, .box6-2 {padding-bottom: 5px; }
.qa_box {	
    padding: 0.5em 1.5em;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    border-top: solid 5px #8a0a0a;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
	}

.qa_title001 {padding-left: 10px; margine-top: 40px;  border-bottom:dotted #70a803 1px; font-size:12px;}

.q_txt{ color:#FF3300; font-size:18px; font-weight:bold;}

.qa_box_in{ width:100%; }

.qa_box_img{ width:50%; float:left; padding:0px 10px 0px 0px;}

.qa_box img {max-width: 100%;
 height: auto;
 vertical-align: bottom}


.btn_syousai{background-color:#8a0a0a; color:#FFFFFF; font-size:14px; font-weight:500; border-radius:8px; padding:5px 15px 5px 15px; text-decoration:none;}

.btn_syousai a{ background-color:#8a0a0a; color:#FFFFFF; text-decoration:none; }
	
.btn_syousai a:hover{opacity:0.7;}


/*シートカバーページ　TOP
---------------------------------------------------------------------------*/
.list_cover{
	overflow: hidden;
	width: 45.4%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 0 10px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	border:#999 thin solid ;
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 1%;	/*ボックス内の余白*/
	border-radius: 3px;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/}
.list_cover a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	
}
/*マウスオン時の設定*/
.list_cover a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h6（見出し）タグの設定*/
.title_list_cover  {
	color: #8a0a0a;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	font-weight:900;
	padding : 7px 0px 7px 0px;
	text-align: center;	/*文字をセンタリング*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
	}
/*p（段落）タグの設定*/
.list_cover p {
	padding: 0 !important;
	line-height: 1.3;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 3em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
.tosheetpage{ width:70%; margin:0 auto; background:#8a0a0a;	color:#FFFFFF; text-align:center; margin-top:10px; margin-bottom:10px; text-decoration:none; font-size:14px; padding:0px; }
.tosheetpage a{	display:block; color:#FFFFFF; text-decoration:none;	padding:7px; margin:0 auto; }
.tosheetpage a:hover{ background-color:#8a0a0a;	text-decoration:none; }


/*シートカバーページ　ハーフカバー
---------------------------------------------------------------------------*/

.dli-caret-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
}

/* カーペット */ 
#price1{ margin-bottom:30px;}
#price1 table{ width:100%; border:#C1BBBB 1px solid; border-collapse:collapse; line-height:15px; font-size:13px;}
#price1 table th{ border:#D1D0D0 1px solid; border-collapse:collapse; background-color:#4A4848; color:#FFFFFF; font-size:14px;}
#price1 table td{ border:#747171 1px solid; border-collapse:collapse; padding:5px;}

/*会社概要
---------------------------------------------------------------------------*/
.box8	{padding-top: 20px; padding-bottom: 25px; padding-left: 15px;	padding-right: 15px}

.box8-1, .box8-2 {position: relative;
	overflow: hidden;
	padding: 20px;		/*ボックス内の余白*/
	border: 4px solid #dcdcdc;	/*枠線の幅、線種、色*/
	margin-bottom: 50px;		/*ボックス間の余白*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1) inset;	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/}

/*「詳細を見る」ボタン*/
a.btn {
	display: block;
	text-decoration: none;
	background: #353baf;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#320000, #910000);	/*グラデーション*/
	color: #fff;	/*文字色*/
	font-size: 14px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 5px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
/*「詳細を見る・応募する」ボタン。マウスオン時。*/
a:hover.btn {
	position: relative;top:1px;left:1px;	/*マウスオン時に少し移動させる設定。*/
	box-shadow: none;	/*ボックスの影を消す設定。*/
	background: linear-gradient(#320000, #910000);	/*グラデーション*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*labelタグを２列表示にする*/
.ta1.cms td label {
	float: left;
	width: 50%;
}

/*ウイルス対策
---------------------------------------------------------------------------*/

.v_title01{ background-color:#CC0000; font-size:23px; color:#FFF; text-align:center; padding:5px 0px 5px 0px;}

.title_koukin02{
	
	line-height:2em;
	font-size:20px;
	text-align:left;	
	background-repeat:no-repeat;
	background-position:10px 6px;
	padding-left:5px;
	color:#000;
	border-bottom:solid thin ;
	font-weight:900;
}
.orderTxtunder02{
	line-height:1.6em;
	font-size:14px;
	text-align:left;
	
}
.p_carmane_v {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	clip: rect(auto,auto,20px,auto);
	font-size: large;
	line-height: 120%;
	font-weight: bold;
	margin-bottom: 10px;
}
.red{ color: #F00;}
.title_koukin03{
	
	line-height:2em;
	font-size:21px;
	text-align:left;	
	background-repeat:no-repeat;
	background-position:10px 6px;
	padding-left:5px;
	color:#000;
	font-weight:900;
	
}
.orderTxtunder01{
	line-height:1.6em;
	font-size:13px;
	text-align:left;
	
}
.title_koukin04{
	
	line-height:2em;
	font-size:20px;
	text-align:left;	
	background-repeat:no-repeat;
	background-position:10px 6px;
	padding-left:5px;
	color: #F00;
	font-weight:900;
	
}

/*** お問合せ　テーブル ***/
.shokai01{
	width: 100%;
	border: 2px solid #d6ceb4;
	padding:0px 0px 10px 0px;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
}
 
.shokai01 th{
  padding:  6px 8px 5px;
  border-top: solid 1px #ffffff;
  width: 30%;
  overflow: hidden;
  color: #13131e;
  font-style: normal;
  font-weight: bold;
  font-size: 100%;
  text-align: left;
  word-break: break-all;
  word-wrap: break-word;
  vertical-align: top;
  background-color: #eeece4;
}
 
.shokai01 td{
padding: 5px 10px;
text-align: left;
vertical-align: top;
color: #595960;
background-color: #ffffff;
border-top: dotted 1px #e0dccc;
overflow: hidden;
word-break: break-all;
word-wrap: break-word;
}

/*** マイクロバスシート生地一覧ページへ ***/
.bn_center {
  width: 468px;
  height: 74px;
  /* 水平方向の中央揃え */
  margin: 0 auto;
}



/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;color: #333;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.txt16{ font-size:16px;}
.txt18{ font-size:18px;}
.bold{ font-weight:bold;}
.fb{ font-weight:800;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #F00;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right; width:45%; margin-left: 7px;margin-bottom: 10px;}
img.fl {float: left; width:45%; margin-right: 7px;margin-bottom: 10px;}
.big1 {font-size: 20px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.marker_yellow_hoso {
background: linear-gradient(transparent 60%, #ffff66 60%); font-weight:700;
}
.txt_red{ color:#F03;}


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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 120px;	/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
	width: 250px;	/*画像幅*/
	top: 43px;		/*ヘッダーの上から43pxの場所に配置*/
}
/*電話番号ボックスの設定*/
header #tel {
	display: none;	/*画面が小さくなるので、非表示にする。*/
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 124px;	/*上から124pxの場所に配置*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 94%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色（古い端末用に念のため）*/
	background: rgba(0,0,0,0.9);	/*背景色。0,0,0は黒の事で0.9は透明度90%の事。*/
	color: #fff;	/*文字色*/
	font-size: 20px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 36px;	/*上から36pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
}

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

/*アイコン　共通*/
.icon {
	display: inline-block;
	margin: 10px 0px 10px 0px;
	font-size: 14px;	/*文字サイズ*/
	padding: 5px 10px 5px 10px;		/*ボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #eee;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	color:#fff;
	width:95%;
	text-align:center;
}

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

/*フッター設定
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}


/*footer内のinner*/
footer .inner {
	padding: 0 3%;	/*上下、左右へのブロック内余白*/
}
/*footer内の２カラムブロックを１カラムにする*/
footer .half.fr,footer .half.fl {
	float: none;
	margin: 0 0 20px;
	width: 100%;
}

#copyright {
	padding: 20px 20px 50px 20px;		/*ボックス内の余白*/
}
/*スマホ等でフッターを常に表示させる
---------------------------------------------------------------------------*/
.mbfooter_area {
	clear: both;
    position: fixed;
	width: 100%;
    bottom: 0;
	padding:0;
	margin:0;
    left: 0;
    width: 100%;
    background-color: rgba( 0, 0, 0, 0.6 );
	z-index: 10000;
}

.fade-btn-sp { position: fixed; bottom: 0; width: 100%; display: none;  display: block;   }
.fade-btn-sp ul { display: flex; justify-content: center;;  margin:0px 0px 0px 0px;}
.fade-btn-sp ul li a img { vertical-align: bottom; }
.fade-btn-sp ul li  { list-style-type: none; }
.fade-btn-sp ul li a  { list-style-type: none;  }

.fade-btn-sp img { max-width: 100%;
	height: auto;
	vertical-align: bottom;
	left:0; }

/* サイドのお問合せボタン
---------------------------------------------------------------------------*/
#side_otoiawase { 	display: inline-block;
	text-indent: -9999px;}	
	
/*フッター内のaddress（電話番号の行）タグ*/
footer address .tel {
	font-size: 20px;	/*文字サイズ*/
	background: url(../images/icon_tel.png) no-repeat left center / 30px;	/*電話番号アイコンの読み込み*/
	padding-left: 30px;	/*電話番号アイコンの幅をここで調整する*/
}

/* シート生地　詳細 追加*/
.sheetacpb li{ float:left; margin-bottom:10px; width:30%;}
#colorSampleacpb p{ padding:2px; margin:0px; background-color:#000099; color:#FFFFFF; font-size:14px;}

.v_title01{ background-color:#CC0000; font-size:18px; color:#FFF; text-align:center; padding:5px 0px 5px 0px;}

.title_koukin02{
	
	line-height:2em;
	font-size:18px;
	text-align:left;	
	background-repeat:no-repeat;
	background-position:10px 6px;
	padding-left:5px;
	color:#000;
	border-bottom:solid thin ;
	font-weight:900;
}
.title_koukin03{
	
	line-height:2em;
	font-size:18px;
	text-align:left;	
	background-repeat:no-repeat;
	background-position:10px 6px;
	padding-left:5px;
	color:#000;
	font-weight:900;
	
}
.title_koukin04{
	
	line-height:2em;
	font-size:18px;
	text-align:left;	
	background-repeat:no-repeat;
	background-position:10px 6px;
	padding-left:5px;
	color: #F00;
	font-weight:900;
	
}
.orderTxtunder01{
	line-height:1.6em;
	font-size:12px;
	text-align:left;
	
}

/*** お問合せ　テーブル ***/
.shokai01 th{
  width:100%;
  display: block;
  margin: 0 auto;
  border:none;
  border-radius: 3px;
}
.shokai01 td{
  display:  list-item;
  width: 100%;
  border-top: none !important;
}	

.box_kbtn a {color:#FFFFFF; background-color:#8a0a0a; text-decoration:none;}

/*list_coverブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list_cover {
	width: auto;
	float: none;
	margin-left : 0;
}
.list_cover figure {
	float: left;
	width: 40%;
	margin-right: 2%;
}

.list_cover, .list_cover p {
	height: auto;
}

}

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

/*スマホ等でフッターを常に表示させる
---------------------------------------------------------------------------*/
.mbfooter_area{ display: none;}

/* サイドのお問合せボタン
---------------------------------------------------------------------------*/
#side_otoiawase { position: fixed; bottom: 200px; right: 20px;}
#side_otoiawase a img {
  border: none;}
  

	
/*シートカバーページ　詳細
---------------------------------------------------------------------------*/
.photo_text_box2:after	{content: ""; display: block; clear: both}
/* photo_leftboxとtext_rightboxを横に並べる設定 */
.photo_text_box:after	{content: "";
	display: block;
	clear: both}
	
.photo_text_box2:after	{content: "";
	display: block;
	clear: both}

.photo_leftbox	{float: left;
	width: 50%;
	padding-right: 35px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box}
	
.text_rightbox	{float: left;
	width: 50%; font-size:14px; line-height:18px;}
.can_rental{ text-align:center; background-color:#a20000; color:#FFF; font-size:16px; font-weight:bold; padding:3px; margin-bottom:16px;}
.can_rental_right{ background-color:#fff; color:#FF0000; padding:1px; font-size:16px;}

.can_rental_right_txt{ color:#000000; font-size:14px; }	
table.syousai { width: 100%; border-collapse: collapse;}

.syousai th, .syousai td { border: solid 1px #888888; font-size:12px; line-height:15px;}

/*シートカバーページ　バナーを横に並べる
---------------------------------------------------------------------------*/
.box_kbtn:after	{content: ""; display: block; clear: both}
.box_kbtn a {color:#FFFFFF; background-color:#8a0a0a; text-decoration:none;}
.box_kbtn1, .box_kbtn2{float: left; width: 48%; margin-right: 2%; text-decoration:none;}

/* box_ kbtn1、box_kbtn2 画像バナー */
.box_bbtn:after	{content: "";
	display: block;
	clear: both}

.box_bbtn1, .box_bbtn2{float: left;
	width: 48%;
	margin-right: 2%;}

/* BOX6-1、BOX6-2を横に並べる設定 */
.box6:after	{content: "";
	display: block;
	clear: both}


.box6-1, .fi-01	{float: left;
	width: 48%;
	margin-right: 2%}

.box6-2, .fi-02	{float: left;
	width: 48%;
	margin-right: 2%}
	
/*会社概要　
---------------------------------------------------------------------------*/
.box8:after	{content: "";
	display: block;
	clear: both}

.box8-1 {float: left;
	width: 40%;
	margin-right: 2%}

.box8-2 {float: left;
	width: 40%;
	margin-right: 2%}


	

	


}


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 230px;	/*画像幅*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

/*SERVICEページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	padding: 10px;
}
#main .list a {
	padding: 10px;
	margin: -10px;	
}

/*SERVICEページの各ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
	font-size: 10px;	/*文字サイズ*/
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 10px;
	padding-right: 10px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*** マイクロバスシート生地一覧ページへ ***/
.bn_center {
  width: 300px;
  height: 47px;
  /* 水平方向の中央揃え */
  margin: 0 auto;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display:block;}
.pc {display:none;}

}
