@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
	background-color: #FFF;	/*背景色*/
	border-top: 5px solid #ea5710;	/*ページ上部の線の幅、線種、色*/
	min-width: 997px;

}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF 80%, #ededed);	/*同上*/
	background-image: linear-gradient(#FFF 80%, #ededed);			/*同上*/
	min-width: 997px;

}
/*ヘッダーブロックの中*/
header .inner {
	width: 997px;	/*ブロック幅*/
	height: 115px;	/*ブロックの高さ*/
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	top: 10px;	/*innerに対して上から20pxの場所に配置*/
}

.h1{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	
	}


/*.logo{
	display: block;
	overflow: visible;
	position: absolute;
	margin-top: 4%;
	
	}
*/
.logo {
	position: absolute;
	left: 0px;	
	margin-top: 25px;
}

.home{
	display: block;
	overflow: visible;
	position: absolute;
	margin-top: 40px;
	margin-left: 250px;
	
	}

.senmon{
	display: block;
	overflow: visible;
	position: absolute;
	margin-top: 4%;
	margin-left: 35%;
	
	}


/*電話番号ボックスの設定*/
header .inner address {
	position: absolute;
	top: 5px;		/*innerに対して上から15pxの位置に配置*/
	right: 0px;	/*innerに対して右から20pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定*/
}
/*電話番号の文字設定*/
header .inner address .tel {
	font-size: 18px;	/*文字サイズ*/
	color: #f00000;		/*文字色*/
	font-weight: bold;	/*太字に*/
	display: block;
	position: relative;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menu {
	height: 60px;	/*ブロックの高さ*/
	background-color: #ea5710;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ea5710), to(#f00000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fa9393, #ea5710 49%, #ea5710 50%);	/*同上*/
	background-image: linear-gradient(#fa9393, #ea5710 49%, #ea5710 50%);			/*同上*/
	margin-bottom: 0px;
	min-width: 997px;

}
nav#menu ul {
	width: 997px;	/*メニュー部分のブロック幅*/
	margin-right: auto;
	margin-left: auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 165px;	/*メニュー幅*/
	border-right: 1px solid #FFFFFF;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;
}
nav#menu ul li a {
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	line-height: 45px;
	padding-top: 15px;
	color: #FFF;	/*文字色*/
}

nav#menu ul li a img {
	width: auto;
}


/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background-color: #d20000;	/*背景色*/
}

#Menuon a, #Menuon a:hover {
	color: #fff;
	background-color: #d20000;
	} 


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




#box_top ul li {
	width: 300px;
	padding: 0px;
	list-style-type: none;
	float: left;
	border-radius: 5px;
	border: 10px solid #FFF;
	box-shadow: 0px 1px 3px rgba(000,000,000,0.3);
	display: block;
	padding: 0px;
	background: #FFF;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
}
#box_top img {
	width: 300px;
	border-radius: 3px;
	box-shadow: 0px 1px 3px rgba(000,000,000,0.3);
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding: 0px;
}

#box_top h5 {
	margin: 0px;
	padding: 0px;
	color: #1e234c;
	font-size: ;
	font-weight: ;
	text-align: center;

}
#box_top .k3 {
	font-size: 110%;
	color: #ffffff;
	background: #ea5710;
	border-radius: 20px;
	font-weight: normal;
	display: block;
	width: auto;
	text-align: center;
	padding: 2px;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#box_top .k3:hover {
	color: #ffffff;
	background-color: #00C8AA;
}

/*本文
---------------------------------------------------------------------------*/


.honbun {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 110%;	
	}



.honbun_t {
	width: 100%;
}
.honbun_t, .honbun_t td, .honbun_t th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.honbun_t td{
	padding: 10px;
	color: #000;
	font-size: 100%;
	
}
/*テーブル内の左側の見出し部分*/
.honbun_t th{
	width: 90%;
	padding: 10px;
	text-align: left;
}




.honbun_t2 {
	width: 100%;
}
.honbun_t2, .honbun_t2 td, .honbun_t2 th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.honbun_t2 td{
	padding: 10px;
	color: #000;
	font-size: 100%;
	text-align: center;
}
/*テーブル内の左側の見出し部分*/
.honbun_t2 th{
	width: 90%;
	padding: 10px;
	text-align: left;
}



/*車検表 
---------------------------------------------------------------------------*/
	
.syaken {	
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 85%;
	overflow:;
	}

.syaken, .syaken td, .syaken th{
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1;
}
/*テーブル内の右側*/
.syaken td{
    height:50px;
	color: #000;

}
/*テーブル内の左側の見出し部分*/
.syaken th{
	height: 50px;
	background-color: #FFCC00;
	color: #000000;
}


/*文字
---------------------------------------------------------------------------*/

.red_m {
	font-size: 145%;
	color: #FF0000;
	font-weight: bold;
	}
	
.red {
	font-size: 145%;
	color: #FF0000;
	font-weight: bold;
	float: right;	
	}

		
.nedan {
	font-size: 140%;
	color: #000;
	font-weight: bold;
	float: right;	
	}	
	
	
	
.c_b {
	font-size: 145%;
	color: #000000;
	font-weight: bold;
	}
	
	
.orange_syaken {
	font-size: 110%;
	color: #FF3300;
	font-weight: bold;

	}
	
	
.orange_s {
	font-size: 140%;
	color: #FF3300;
	font-weight: bold;
    margin-top: -40px;

	}
	

.green_s {
	font-size: 140%;
	color: #00CC00;
	font-weight: bold;
	margin-top: px;
	}
	
.blue_s {
	font-size: 140%;
	color: #0000FF;
	font-weight: bold;
	margin-top: px;
	}
	
.about_icon {
	margin-bottom: -20px;
	margin-left: 10px;
	}	
	
.hoken {
	font-size: 115%;
	color: #FF6600;
	font-weight: bold;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}
		
/*コンテンツin（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;
	width: 1000px;
}
/*2カラム時*/
body.c2 #contents-in {
	float: none;
	width: 100%;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 997px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*2カラム時*/
body.c2 #main {
	width: 782px;	/*メインコンテンツ幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	background-color: #ea5710;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ea5710), to(#ea5710));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ea5710, #ea5710 49%, #ea5710 50%);	/*同上*/
	background-image: linear-gradient(#ea5710, #ea5710 49%, #ea5710 50%);			/*同上*/
	border-top: 3px solid #2bac39;		/*枠線の幅、線種、色*/
	border-radius: 1px 1px 1px 1px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 120%;
	color: #FFF;	/*左から、上下、左右への余白*/
	clear: both;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	margin-top: px;
	margin-bottom: px;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	background-color: #fff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fff, #fff 49%, #fff 50%);	/*同上*/
	background-image: linear-gradient(#fff, #fff 49%, #fff 50%);			/*同上*/
	-webkit-box-shadow: 1px 2px 3px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 130%;
	color: #ea5710;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 0px solid #FFF;		/*上の線の幅、線種、色*/
	border-right: 0px solid #FFF;	/*右の線の幅、線種、色*/
	border-bottom: 0px solid #FFF;	/*下の線の幅、線種、色*/
	border-left: 5px solid #ea5710;	/*左の線の幅、線種、色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


h6 {
	font-size: 130%;
	color: #ffffff;
	background: #1e234c;
	border-radius: 20px;
	font-weight: bold;
	display: block;
	width: 30%;
	text-align: center;
	padding: 2px;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.center {

	text-align: center;
	
}




/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 15px;	/*左から、上、左右、下への余白*/
}

/*100% 幅
---------------------------------------------------------------------------*/



#main2 {
	float: right;	/*右側に回り込み*/
	width: 100%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*2カラム時*/
body.c2 #main2 {
	width: 782px;	/*メインコンテンツ幅*/
}
/*mainコンテンツのh2タグ設定*/
#main2 h2 {
	background-color: #ea5710;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ea5710), to(#ea5710));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ea5710, #ea5710 49%, #ea5710 50%);	/*同上*/
	background-image: linear-gradient(#ea5710, #ea5710 49%, #ea5710 50%);			/*同上*/
	border-top: 3px solid #2bac39;		/*枠線の幅、線種、色*/
	border-radius: 1px 1px 1px 1px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 120%;
	color: #FFF;	/*左から、上下、左右への余白*/
	clear: both;
	padding-top: 8px;
	padding-right: 15px;
	padding-bottom: 8px;
	padding-left: 15px;
	margin-top: 10px;
	margin-bottom: px;
}
/*mainコンテンツのh3タグ設定*/
#main2 h3 {
	background-color: #fff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fff, #fff 49%, #fff 50%);	/*同上*/
	background-image: linear-gradient(#fff, #fff 49%, #fff 50%);			/*同上*/
	-webkit-box-shadow: 1px 2px 3px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 130%;
	color: #ea5710;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 0px solid #FFF;		/*上の線の幅、線種、色*/
	border-right: 0px solid #FFF;	/*右の線の幅、線種、色*/
	border-bottom: 0px solid #FFF;	/*下の線の幅、線種、色*/
	border-left: 5px solid #ea5710;	/*左の線の幅、線種、色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/*mainコンテンツの段落タグ設定*/
#main2 p {
	padding: 0.5em 10px 15px;	/*左から、上、左右、下への余白*/
}


/*お問い合わせ・中古車お問い合わせ　１００％
---------------------------------------------------------------------------*/

#main2 {
	float: right;	/*右側に回り込み*/
	width: 100%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}

/*mainコンテンツのh2タグ設定*/
#main2 h2 {
	background-color: #ea5710;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ea5710), to(#ea5710));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ea5710, #ea5710 49%, #ea5710 50%);	/*同上*/
	background-image: linear-gradient(#ea5710, #ea5710 49%, #ea5710 50%);			/*同上*/
	border-top: 3px solid #2bac39;		/*枠線の幅、線種、色*/
	border-radius: 1px 1px 1px 1px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 120%;
	color: #FFF;	/*左から、上下、左右への余白*/
	clear: both;
	padding-top: 8px;
	padding-right: 15px;
	padding-bottom: 8px;
	padding-left: 15px;
	margin-top: 10px;
	margin-bottom: px;
}
/*mainコンテンツのh3タグ設定*/
#main2 h3 {
	background-color: #fff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fff, #fff 49%, #fff 50%);	/*同上*/
	background-image: linear-gradient(#fff, #fff 49%, #fff 50%);			/*同上*/
	-webkit-box-shadow: 1px 2px 3px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 130%;
	color: #ea5710;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 0px solid #FFF;		/*上の線の幅、線種、色*/
	border-right: 0px solid #FFF;	/*右の線の幅、線種、色*/
	border-bottom: 0px solid #FFF;	/*下の線の幅、線種、色*/
	border-left: 5px solid #ea5710;	/*左の線の幅、線種、色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/*mainコンテンツの段落タグ設定*/
#main2 p {
	padding: 0.5em 10px 15px;	/*左から、上、左右、下への余白*/
}



/*サブコンテンツ、サイドコンテンツ
---------------------------------------------------------------------------*/
/*サブコンテンツ（左側ブロック）*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 200px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*サイドコンテンツ（右側ブロック）*/
#side {
	float: right;
	width: 200px;
	padding-bottom: 30px;
}
/*2カラム時にサイドコンテンツを非表示にする設定*/
body.c2 #side {
	display: none;
}
/*sub,sideコンテンツ内のh2タグ設定*/
#sub h2,
#side h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background-color: #e50011;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e50011), to(#ea5710));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ea5710, #e50011);	/*同上*/
	background-image: linear-gradient(#ea5710, #e50011);			/*同上*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #FFF;	/*文字色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
/*box1の中にあるh2タグの設定*/
#sub .box1 h2,
#side .box1 h2 {
	border-radius: 0;	/*角丸をなくす設定*/
}
/*sub,sideコンテンツ内のbox1設定*/
#sub .box1,
#side .box1 {
	background-color: #eee;		/*背景色*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	padding: 5px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#side h2 + ul,
#sub h2 + .box1,
#side h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul,
#side .box1 > ul {
	margin-bottom: 0;
}

/*sub,sideコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul,
#side ul {
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a,
#side ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #FFF;	/*背景色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#sub ul li a:hover,
#side ul li a:hover {
	background-color: #fff8c7;	/*マウスオン時のボックス色*/
}


/*サブコンテンツ　
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub article.box2,
#side article.box2 {
	font-size: 11px;	/*文字サイズ*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);									/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);											/*同上*/
	border-bottom: 1px solid #999;	/*下の線の幅、線種、色*/
	border-right: 1px solid #999;	/*右の線の幅、線種、色*/
	border-left: 1px solid #999;	/*左の線の幅、線種、色*/
	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
}
#sub article.box2 a,
#side article.box2 a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#sub article.box2 a:hover,
#side article.box2 a:hover {
	background-color: #fff8c7;	/*マウスオン時のボックス色*/
}
/*h4見出しタグ*/
#sub article.box2 h4,
#side article.box2 h4 {
	color: #f00000;		/*文字色*/
	margin-left: 70px;	/*左の画像とバランスをとって設定する*/
	text-align: left;
	padding: 0;
	background: none;
	font-size: 100%;
}
/*p段落タグ*/
#sub article.box2 p,
#side article.box2 p {
	margin-left: 70px;	/*左の画像とバランスをとって設定する*/
	padding: 0;
}
/*サムネイル画像設定*/
#sub article.box2 figure,
#side article.box2 figure {
	float: left;	/*左に回り込みさせる設定*/
	padding: 0;
}
/*サムネイル画像のフチ*/
#sub article.box2 figure img,
#side article.box2 figure img {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
}

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

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	background-color: #8ccaba;	/*スライドショーの外側（左右）の背景色*/
	margin-bottom: 0px;
	height: 525px;
}
#mainimg aside {
	width: 996px;
	height: 500px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 15px;		/*ボックス間のスペース*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
}
#main section.list article a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
/*マウスオン時*/
#main section.list article a:hover {
	background-color: #fff8c7;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 8px;
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #f00000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #f00000;	/*文字色*/
}
/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list article table {
	font-size: 11px;	/*文字サイズ*/
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	background: #FFF;	/*背景色*/
}
#main section.list article table,
#main section.list article table td,
#main section.list article table th{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
#main section.list article table td,
#main section.list article table th{
	padding: 0;
	line-height: 1.6;
}
#main section.list article table th{
	width: 60px;
	text-align: center;
	font-weight: normal;
	background: #dfe0c8;
}
body.c2 #main section.list article table th{
	width: 100px;
}
#main section.list article table td {
	width: 100px;
	padding: 0px 3px;
}
body.c2 #main section.list article table td {
	width: 160px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	padding-left: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
	color: #000;
	font-size: 120%;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}
/*submitボタンの設定*/
input[type="submit"],
input[type="button"] {
	width: 200px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 10px;	/*角丸のサイズ*/
	background-color: #f00000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f62929), to(#f00000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f62929, #f00000);	/*同上*/
	background-image: linear-gradient(#f62929, #f00000);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 14px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	border: none;
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #f62929;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f00000), to(#f62929));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f00000, #f62929);	/*同上*/
	background-image: linear-gradient(#f00000, #f62929);			/*同上*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 120px;
	height: 80px;
}
.ta1 td .specialbox img {
	vertical-align: middle;
}

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

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.osusume {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*「ご契約済」表示
---------------------------------------------------------------------------*/
.sumi {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.sumi {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*FAQページの設定
---------------------------------------------------------------------------*/
/*FAQブロック全体*/
dl.faq {
	padding-right: 10px;
	padding-left: 10px;
}
/*質問ブロック*/
dl.faq dt {
	padding-left: 20px;
	font-weight: bold;	/*文字を太字にする設定*/
	color: #f00000;		/*文字色*/
	background-image: url(../images/faq_q.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;				/*背景画像をリピートしない*/
	background-position: left 5px;				/*背景画像を左側、5pxの場所に配置*/
}
/*回答ブロック*/
dl.faq dd {
	padding-left: 20px;
	background-image: url(../images/faq_a.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;				/*背景画像をリピートしない*/
	background-position: left 5px;				/*背景画像を左側、5pxの場所に配置*/
}

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



#formWrap {
	width:700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formtable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formtable td,table.formtable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formtable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}

/*商品詳細　ページ
---------------------------------------------------------------------------*/


.komikomi_t {
	width: 100%;
	}
.komikomi_t, .komikomi_t td, .komikomi_t th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1;
}
/*テーブル内の右側*/
.komikomi_t td{
	padding: 10px;
	color: #F00;
	font-size: 170%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	}
/*テーブル内の左側の見出し部分*/
.komikomi_t th{
	width: 350px;
	font-size: 130%;
	padding: 10px;
	text-align: center;
	font-weight: bold;		/*背景色*/
}

.komikomi_t2 {
	width: 100%;
	}
.komikomi_t2, .komikomi_t2 td, .komikomi_t2 th{
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1;
}
/*テーブル内の右側*/
.komikomi_t2 td{
	padding: 10px;
	color: #F00;
	font-size: 170%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	}
/*テーブル内の左側の見出し部分*/
.komikomi_t2 th{
	width: 350px;
	font-size: 130%;
	padding: 10px;
	text-align: center;
	font-weight: bold;		/*背景色*/
}

/***************************************************************************************/
/*フッター
/***************************************************************************************/
/* ========= このページのトップへ ========= */ 
#pageTop {
text-align:right;
/*margin-top:40px;
height:44px;*/
}

/* ========= パンくずリスト ========= */ 
footer div#breadcrumb a:link {color:#333; text-decoration:underline;}
footer div#breadcrumb a:visited {color:#333; text-decoration:none;}
footer div#breadcrumb a:hover {color:#b72800; text-decoration:none;}
footer div#breadcrumb a:active {color:#333; text-decoration:none;}

footer div#breadcrumb {
width:auto;
padding:15px 0;
border-top:0px solid #2bac39;
border-bottom:8px solid #2bac39;
background-color:#fff;
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ddffffff,EndColorStr=#ddffffff);
background-color: rgba(255, 255, 255, 0.6);
}

footer div#breadcrumb ul{
width:1000px;
margin:0 auto;
text-align:left;
}

footer div#breadcrumb li {
display:inline;
background:url(../images/arrow.png) center left no-repeat;
padding-left:18px;
margin-left:10px;
}

footer div#breadcrumb li#homeMark {
background:url(../images/icon/icon_home.png) top left no-repeat;
padding-left:24px;
margin-left:7px;
}

footer div#breadcrumb li em {
color:#B72800;
font-weight:bold;
}

/*footer div#breadcrumb li.arrow {}
footer div#breadcrumb li a{}*/


footer {
	width: 100%;
	background-color: #ea5710;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center top;
}

footer p {
text-align:center;
font-size:85%;
margin-bottom:10px;
}

footer div.footBox1 li a,
footer div.footBox2 li a,
footer div.footBox3 li a,
footer div.footBox4 li a {
background:url(../images/arrow.png) center left no-repeat; 
padding-left:13px;
}

footer a:link {color:#333; text-decoration:none;}
footer a:visited {color:#333; text-decoration:none;}
footer a:hover {color:#b72800; text-decoration:underline;}
footer a:active {color:#333; text-decoration:none;}

/* ========= フッターリンク ========= */ 
footer div#footLinks {
padding-bottom:30px;
background-color:#fff;
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ddffffff,EndColorStr=#ddffffff);
background-color: rgba(255, 255, 255, 0.6);
min-height:150px;
}

footer div#footLinksUp,
footer div#footLinksDown {
width:980px;
padding:30px 0 0 0;
margin:0 auto;
overflow:hidden;
position:relative;
zoom:1;
}

footer h3 {
margin-bottom:5px;
}

footer div ul {
font-size:85%;
}

footer div li {
line-height:1.6;
list-style:none;
text-align:left;
}

footer div.footBox1 {width:232px; float:left; margin-right:20px;}
footer div.footBox2 {width:232px; float:left; margin-right:20px;}
footer div.footBox3 {width:232px; float:left; margin-right:20px;}
footer div.footBox4 {width:224px; float:left;}

footer div#copyright {
	background-color: #FFFFFF;
	padding: 20px 0;
	color: #000000;
}



/*コミコミ価格
---------------------------------------------------------------------------*/
.ta_c {
	width: 100%;
}
.ta_c, .ta_c td, .ta_c th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta_c td{
	padding: 10px;
	color: #F00;
	font-size: 130%;
}
/*テーブル内の左側の見出し部分*/
.ta_c th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;	/*背景色*/
}



.list_link {
	background: -moz-linear-gradient(top,#0099CC 0%,#006699);
	background: -webkit-gradient(linear, left top, left bottom, from(#0099CC), to(#006699));
	border: 1px solid #DDD;
	color: #fff;
	width: 300px;
	text-align: center;
	margin-top: 20px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	margin-left: auto;
	margin-right: auto;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 120%;
}




/*レスポンシブ
---------------------------------------------------------------------------*/

#smart{
	display: none;	
	}
	
	
#hp {
	display: block;
    } 










