﻿@charset "utf-8";

/* -----------------------------------------------------------
CSS Information

 File name:      style.css
 Author:         keisuke aizawa @kan
 Style Info:     YES!
----------------------------------------------------------- */

/*----------------------------------------------------
	各ブラウザの設定をリセット！
----------------------------------------------------*/

html {
	overflow-y:scroll;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,p,blockquote,th,td {
	margin:0;
	padding:0;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

object,embed {
	vertical-align:top;
}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
}

img,abbr,acronym,fieldset {
	border:0;
}

li {
	list-style-type:none;
}

/*----------------------------------------------------
	基本的な設定
----------------------------------------------------*/

body {
	padding-bottom:10px;
	background:#e7e5db;
	color:#666;
	font-family:verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	line-height:1.5;
	text-align:center;
}

* + html body {font-family:"メイリオ","Meiryo";}/*IE7のフォント*/

/*フォントサイズ*/
body {font-size: 75%;}/*IE*/
html>/**/body {font-size: 12px;}/*IE以外*/

/*基本的なリンクテキストの設定*/
a         {text-decoration:none;color:#CC0033;}
a:link    {color:#CC0033;}
a:visited {}
a:hover   {text-decoration:underline;}
a:active  {}

/*左寄せ、中央寄せ、右寄せのためのクラス*/
.tl {text-align:left!important}
.tc {text-align:center!important}
.tr {text-align:right!important}

/*フロートのためのクラス*/
.fl {float:left!important}
.fr {float:right!important}
.fn {float:none!important}
.cl {clear:left!important}
.cr {clear:right!important}
.cb {clear:both!important}

/*----------------------------------------------------
	#wrapper 全体を包むボックス、背景の設定上二つ
----------------------------------------------------*/

#wrapper1 {
	margin:0 auto;
	padding:0 7px;
	width:986px;
	text-align:left;
	background:#FFF url(../img/body-bg.png) repeat-y;
}

#wrapper2 {
	padding:0 2px;
	width:982px;
	text-align:left;
	background:url(../img/sidebar-bg.png) no-repeat 2px top;
}


/*----------------------------------------------------
	#header　ヘッダー
----------------------------------------------------*/

#header {
	padding:20px 20px 0 30px;
	height:165px;
	background:#F5F5F5 url(../img/header-bg.png) no-repeat;
}

#header h1 {
	float:left;
}

#header address {
	float:right;
	padding-top:85px;
	width:650px;
	line-height:20px;
	text-align:right;
	color:white;
}

#header address span {
	float:left;
	font-size:14px;
}

#header address img {
	vertical-align:bottom;
}

#header ul#topic-path {
	clear:left;
	margin:0;
	padding:9px 0 0;
	text-align:left;
	color:white;
}

/*for IE6*/
* html body #header ul#topic-path {
	padding:0;
	margin-top:-7px;
}

/*for IE7*/
*+html body #header ul#topic-path {
	padding:0;
	margin-top:-7px;
}

#header ul#topic-path li {
	display:inline;
	padding-left:12px;
	background:url(../img/topic-path-arrow.gif) no-repeat 0% 50%;
}

#header ul#topic-path li.first-child {
	padding-left:0;
	background:none;
}

#header ul#topic-path li a {
	color:orange;
}


/*----------------------------------------------------
	#main　メインのフレームのみ、中身は最後、横幅は700px
----------------------------------------------------*/

#main {
	float:right;
	width:729px;
}

body.home #main {
	position:relative;
	top:1px;
	margin-top:-1px;
	background:#FFF;
}


/*----------------------------------------------------
	#sidebar　サイドバー、サイドバーの背景は#wrapperに指定
----------------------------------------------------*/

#sidebar {
	padding:13px 0 50px 2px;
	width:248px;
}


/*----------------------------------------------------
	#side-navi　サイドナビ、マウスオーバーの画像置換
----------------------------------------------------*/

#side-navi {
	padding:2px 2px 0;
	width:236px;
	background:#333;
}

#side-navi li {
	padding-bottom:2px;
	width:236px;
}

#side-navi li a {
	display:block;
	padding-top:32px;
	width:236px;
	height:0;
	overflow:hidden;
	background:url(../img/sidenavi.png) no-repeat;
}

/*通常*/
li#sn0 a {background-position:0    0px}
li#sn1 a {background-position:0  -32px}
li#sn2 a {background-position:0  -64px}
li#sn3 a {background-position:0  -96px}
li#sn4 a {background-position:0 -128px}
li#sn5 a {background-position:0 -160px}

/*マウスオン*/
li#sn0 a:hover {background-position:-236px    0px}
li#sn1 a:hover {background-position:-236px  -32px}
li#sn2 a:hover {background-position:-236px  -64px}
li#sn3 a:hover {background-position:-236px  -96px}
li#sn4 a:hover {background-position:-236px -128px}
li#sn5 a:hover {background-position:-236px -160px}


/*アクティヴなページのとき　bodyにクラスを与えてコントロール*/
body.home    li#sn0 a {background-position:-472px    0px}
body.about   li#sn1 a {background-position:-472px  -32px}
body.sale    li#sn2 a {background-position:-472px  -64px}
body.rent    li#sn3 a {background-position:-472px  -96px}
body.policy  li#sn4 a {background-position:-472px -128px}
body.contact li#sn5 a {background-position:-472px -160px}


/*アクティヴなページのとき　マウスオンは何もならない*/
body.home    li#sn0 a:hover {background-position:-472px    0px}
body.about   li#sn1 a:hover {background-position:-472px  -32px}
body.sale    li#sn2 a:hover {background-position:-472px  -64px}
body.rent    li#sn3 a:hover {background-position:-472px  -96px}
body.policy  li#sn4 a:hover {background-position:-472px -128px}
body.contact li#sn5 a:hover {background-position:-472px -160px}


/*----------------------------------------------------
	#copyright　コピーライト　メインとサイドバー下部のボーダーより下を背景で指定
----------------------------------------------------*/

#copyright {
	clear:both;
	padding:15px 733px 0 1px;
	width:auto;
	height:35px;
	background:url(../img/footer-bg.png) no-repeat center top;
	text-align:center;
}

#copyright img {
}


/*----------------------------------------------------
	#footer-navi　フッターナビ、コピーライトとフッターナビは上下
----------------------------------------------------*/

#footer-navi {
	margin:0 auto;
	/*padding:12px 50px 20px 300px;*/
	padding:137px 20px 0 250px;
	width:730px;
	height:40px;
	background:url(../img/footer-bg.png) no-repeat center bottom;
	text-align:right;
	font-size:12px;
}

#footer-navi li {
	display:inline;
	margin-left:0.5em;
	padding-right:0.5em;
	border-right:1px solid #FFF;
}

#footer-navi li.first-child {
	margin-left:0;
	padding-left:0.5em;
	border-left:1px solid #FFF;
}

#footer-navi li a {
	color:#FFF;
}


/*----------------------------------------------------
	メインの中身、メインの横幅は横幅は700px
----------------------------------------------------*/

/*ホームのフラッシュ*/
#main #flash {
	margin-bottom:6px;
}

/*h2の見出し*/
#main h2 {
}

#main h2 img {
	vertical-align:bottom;
}

#main p {
	padding:0 0 1em;
}

/*通常のボックス*/
#main div.box {
	margin-bottom:10px;
	padding:12px;
	background:#FFF;
	border:1px solid #666;
}

body.sale #main div.box,
body.rent #main div.box {
	background:#EEE;
}

/*物件リスト用のボックス*/
#main div.box.list {
	padding:12px 6px 0 12px;
	background:#F3F3F3;	
}

#main div.bottom {/*メインの最後には必ずクラスをboxとbottomにしたdivを置く*/
	margin-bottom:0;
	border-bottom:none;
	min-height:200px;
}

body.sale #main div.bottom,
body.rent #main div.bottom,
body.about #main div.bottom,
body.policy #main div.bottom {
	margin-bottom:3px;
	border:1px solid #676666;
}

/*ページトップに戻る*/
#main div.pagetop {
	background:#415095 url(../img/pagetop-bg.png) repeat-x;
	border-top:1px solid #666;
	border-left:1px solid #666;
	border-right:1px solid #666;
}

#main div.pagetop a {
	display:block;
	padding-top:25px;
	height:0;
	background:url(../img/pagetop.png) no-repeat 95% 0;
	overflow:hidden;
}

#main div.pagetop a:hover {
	background-position:95% -25px;
}

/*----------------------------------------------------
	会社概要、こだわり、お問合せの基本的なタグ
----------------------------------------------------*/

body.about #main div.box h3,
body.policy #main div.box h3,
body.contact #main div.box h3 {
	padding:7px 0 20px 14px;
	width:689px;
	height:25px;
	background:url(../img/h3-bg-white.gif) no-repeat;
	font-size:1.16em;
	color:#FFF;
}

body.about #main div.box p,
body.policy #main div.box p,
body.contact #main div.box p {
	margin:0 0.5em 1em 1em;
}

#main div.box div.image-box {
	margin:1em 0;
	text-align:center;
}

#main div.box div.image-box img {

}

/*会社概要のdl*/
body.about #main div.box dl {
	margin:0 0.5em 1em 1em;
	border:1px solid #036;
	padding:1em;
	background:#FFF;
	overflow:hidden;
	_height:1%;
}

body.about #main div.box dl dt {
	clear:left;
	float:left;
	margin:0.5em 1em;
	padding:0.5em 0 ;
	width:100px;
	color:#066;
	font-weight:bold;
	text-align:right;
}

body.about #main div.box dl dd {
	float:left;
	margin:0.5em 0;
	padding:0.5em 0 0.5em 1em;
	width:500px;
	border-left:3px solid #C5EBEA;
}

body.about #main div.box dl dd ol {
}

body.about #main div.box dl dd ol li {
	list-style:decimal inside;
}

body.about #main div.box dl dd ul {
	margin-top:1em;
	overflow:hidden;
	_height:1%;
}

body.about #main div.box dl dd ul li{
	float:left;
	margin:0 1em 0.5em 0;
	width:40%;
}

body.about #main div.box iframe {
	border:2px solid #FFF;
}

/*こだわりのdl*/
body.policy #main div.box dl {
	margin:0 0.5em 1em 1em;
	border:1px solid #036;
	padding:1em;
	background:#FFF;
	font-size:1.16em;
	overflow:hidden;
	_height:1%;
}

body.policy #main div.box dl dt {
	clear:left;
	float:left;
	margin:0.5em 1em 0.5em 0.5em;
	padding:0.5em 0 ;
	width:100px;
	color:#066;
	font-weight:bold;
	text-align:right;
}

body.policy #main div.box dl dd {
	float:left;
	margin:0.5em 0;
	padding:0.5em 0 0.5em 1em;
	width:500px;
	border-left:3px solid #C5EBEA;
}

body.policy #main div.box p,
body.about  #main div.box p {
	font-size:1.16em;
}


/*----------------------------------------------------
	お問い合わせフォーム
----------------------------------------------------*/
#main table.form {
	margin:15px;
	background:#FFF;
	border-collapse:separate;
	border-spacing:2px;
}

#main table.form td.caption {
	padding:2px 15px 10px;
	background:#FFF;
}

#main table.form td.caption img {
	vertical-align:bottom;
}

#main table.form th, 
#main table.form td {
	padding:0.5em 1em;
	background:#F6F4EE;
}

#main table.form th {
	width:200px;
	text-align:left;
}

#main table.form td {
}

#main table.form tr.bt td{
	padding:20px 0 5px;
	background:#FFF;
	text-align:center;
}

#main table.form tr.bt td input{
	padding:0.5em;
	font-size:1.2em;
}

#main table.form tr.privacy-policy-caption td {
	background:#FFF;
	border-top:30px solid #FFF;
}

#main table.form tr.privacy-policy th,
#main table.form tr.privacy-policy td {
	border-bottom:30px solid #FFF;
	background:#EEEEDD;
}

#main table.form tr.privacy-policy-caption p {
	padding-bottom:0;
}

#main table.form tr.privacy-policy div {
	margin-bottom:1em;
	padding:1em;
	width:30em;
	_width:29.5em;
	height:200px;
	border:1px solid #000080;
	background:#F6F6F6;
	overflow:scroll;
	line-height:1.2;
}

#main table.form tr.privacy-policy p {
	margin:0 0 0.5em;
}


#main table.form label {
	margin-right:1em;
}

#main span.need {
	float:right;
	margin:0 0 0.5em 0.5em;
	padding:0 0.5em;
	background:#CC0000;
	color:#FFF;
	font-weight:normal;
}

#main td.caption span.need {
	float:none;
	margin:0 2px;
}


#main table.form p.help {
	margin:0!important;
	padding:0;
	font-size:0.83em;
	color:#0099CC;
}

#main table.form p.ex {
	margin:0!important;
	padding:0;
	font-size:0.83em;
	color:#336600;
}

#main table.form p.ex span {
	color:#CCC;
}

#main p.error {
	margin-bottom:0;
	padding:1em 1em 150px;
	border:1px solid #009999;
	background:#FFF;
	color:red;
}

#main p.error input {
	margin-top:2em;
}

#main p.finish {
	padding:1em 1em 150px;
	border:1px solid #009999;
	background:#FFF;
}

/*----------------------------------------------------
	ホームの物件リスト、最新とお勧め
----------------------------------------------------*/

body.home #main div.latest {
	float:left;
	width:355px;
	_height:1%;
}

body.home #main div.suggest {
	float:right;
	width:355px;
	_height:1%;
}

body.home #main ul.index {
}

body.home #main ul.index li {
	padding:0 0 20px;
	width:310px;
}

body.home #main ul.index li div.title {
	float:right;
	width:180px;
	font-weight:bold;
}

body.home #main ul.index li div.title a {
	color:#666;
}

body.home #main ul.index li div.title a:hover {
	color:#666;
}

body.home #main div.latest ul li div.title div.date {
	padding-left:39px;
	background:url(../img/icon-new.gif) no-repeat 0% 50%;
	font-weight:normal;
}

body.home #main div.suggest ul li div.title div.date {
	padding-left:45px;
	background:url(../img/icon-suggest.gif) no-repeat 0% 50%;
	font-weight:normal;
}

body.home #main ul.index li img.thumb {
	float:left;
	border:1px solid #666;
}

body.home #main ul.index li div.catch {
	display:none;
}

body.home #main ul.index li div.summary {
	float:right;
	width:180px;
}

body.home #main ul.index li div.more {
	clear:left;
	padding-top:1em;
}

body.home #main ul.index li div.more a {
	display:block;
	width:82px;
	height:0;
	padding-top:20px;
	background:url(../img/bt-detail.png) no-repeat;
	overflow:hidden;
}

body.home #main ul.index li div.more a:hover {
	background-position:0 -20px;
}


/*----------------------------------------------------
	物件リスト　販売物件情報　販売中の物件
----------------------------------------------------*/
body.sale #main ul.index {
	width:700px;
	padding-bottom:10px;
	overflow:hidden;
}

body.sale #main ul.index li {
	float:left;
	margin:5px 3px 5px 3px;
	_margin:5px 2px 5px 3px;
	padding:5px;
	width:330px;
	border:1px solid #666;
	background:#FFF;

	line-height:1.2;
}

body.sale #main ul.index li div.title {
	margin-bottom:5px;
	padding:5px;
	border:1px solid #285B8E;
	background:#3D3D60;
	font-size:1.16em;
	color:#FFF;
}

body.sale #main ul.index li div.title a {
	color:#FFF;
}

body.sale #main ul.index li div.title a:hover {
	color:#FFF;
}

body.sale #main ul.index li.new div.title {
	padding-right:45px;
	background:#3D3D60 url(../img/icon-new.gif) no-repeat 98% 50%;
}

body.sale #main ul.index li div.catch {
	float:right;
	margin-bottom:5px;
	padding-bottom:6px;
	width:200px;
	background:url(../img/orange-dotted-border.gif) repeat-x 0px bottom;
}

body.sale #main ul.index li img.thumb {
	float:left;
	margin-bottom:5px;
	border:1px solid #666;
}

body.sale #main ul.index li div.summary {
	float:right;
	width:200px;
}

body.sale #main ul.index li div.summary div.station {}
body.sale #main ul.index li div.summary div.byfoot {}
body.sale #main ul.index li div.summary div.price {font-size:1.5em; font-weight:bold;}
body.sale #main ul.index li div.summary div.style {}

body.sale #main ul.index li div.more {
	clear:left;
	float:left;
	width:82px;
	height:20px;
}

body.sale #main ul.index li div.more a {
	display:block;
	width:82px;
	height:0;
	padding-top:20px;
	background:url(../img/bt-detail.png) no-repeat;
	overflow:hidden;
	color:#FFF;/*IE6だとテキストがでてしまう場合があるので背景色と同じ色を指定*/
}

body.sale #main ul.index li div.more a:hover {
	background-position:0 -20px;
	color:#FFF;/*IE6だとテキストがでてしまう場合があるので背景色と同じ色を指定*/
}


/* 過去の実績 */
body.sale #main ul.sold li div.title {
	padding-right:45px;
	background:#999 url(../img/icon-sold.gif) no-repeat 98% 50%;
	border:1px solid #666;
}

body.sale #main ul.sold li div.summary div.price {
	display:none;
}

body.sale #main ul.index li div.more a:hover {
	background-position:0 -20px;
	color:#FFF;/*IE6だとテキストがでてしまう場合があるので背景色と同じ色を指定*/
}


/* 過去の実績 */
body.sale #main ul.sold li div.title {
	padding-right:45px;
	background:#999 url(../img/icon-sold.gif) no-repeat 98% 50%;
	border:1px solid #666;
}

body.sale #main ul.sold li div.summary div.price {
	display:none;
}


/*----------------------------------------------------
	賃貸物件リスト　所有賃貸物件情報
----------------------------------------------------*/
body.rent #main ul.index {
	width:700px;
	padding-bottom:10px;
	overflow:hidden;
}

body.rent #main ul.index li {
	float:left;
	margin:5px 3px 5px 3px;
	_margin:5px 2px 5px 3px;
	padding:5px;
	width:330px;
	border:1px solid #666;
	background:#FFF;
	line-height:1.2;
}

body.rent #main ul.index li div.title {
	margin-bottom:5px;
	padding:5px;
	border:1px solid #285B8E;
	font-size:1.16em;
	background:#0f4648;
	color:#FFF;
}

body.rent #main ul.index li div.title a {
	color:#FFF;
}

body.rent #main ul.index li div.title a:hover {
	color:#FFF;
}

body.rent #main ul.index li img.thumb {
	float:left;
	margin-bottom:5px;
	border:1px solid #666;
}

body.rent #main ul.index li div.summary {
	float:right;
	width:200px;
}

body.rent #main ul.index li div.summary div.station {}
body.rent #main ul.index li div.summary div.byfoot {}
body.rent #main ul.index li div.summary div.price {font-size:1.5em; font-weight:bold;}
body.rent #main ul.index li div.summary div.style {}

body.rent #main ul.index li div.more {
	clear:both;
	width:82px;
	height:20px;
}

body.rent #main ul.index li div.more a {
	display:block;
	width:82px;
	height:0;
	padding-top:20px;
	background:url(../img/bt-detail.png) no-repeat;
	overflow:hidden;
}

body.rent #main ul.index li div.more a:hover {
	background-position:0 -20px;
}

/* 満室 */
body.rent #main ul.index li.filled div.title {
	padding-right:45px;
	border:1px solid #666;
	background:#999 url(../img/icon-filled.gif) no-repeat 98% 50%;
}

body.rent #main ul.index li.filled div.summary div.price {
	display:none;
}

/*----------------------------------------------------
	詳細のページ 各ページによって変更がある場合は、bodyのクラスを加えて指定
----------------------------------------------------*/

body.sale #main h3,
body.rent #main h3 {
	padding:7px 0 20px 14px;
	width:689px;
	height:25px;
	background:url(../img/h3-bg-gray.gif) no-repeat;
	color:#FFF;
}


#main div.discription {
	float:right;
	margin-right:20px;
	_margin-right:10px;/*for IE*/
	width:300px;
}

#main div.discription div.price {
	font-size:24px;
	color:#900
}

#main div.discription div.location {
}

#main div.discription div.comment {
	margin-top:1em;
}

#main div.discription div.bt-print {
	margin:20px 0 5px;
	text-align:center;
}

#main div.discription div.bt-print a {
	display:block;
	margin:0 auto;
	width:145px;
	height:0;
	padding-top:40px;
	background:url(../img/bt-print.png) no-repeat;
	overflow:hidden;
}

#main div.discription div.bt-print a:hover {
	background-position:0 -40px;
}

/*----------------------------------------------------
	サムネイルをクリックして表示画像を変える箇所、idtabで実装、詳細のページ
----------------------------------------------------*/

#gallary {
	margin:0 20px;
}

#image01,#image02,#image03,#image04 {
}

#image01 img,
#image02 img,
#image03 img,
#image04 img,
#image05 img {
	border-top:3px solid #FFF;
	border-right:3px solid #999;
	border-bottom:3px solid #999;
	border-left:3px solid #FFF;
}

#gallary div.wrapper-idtabs {
	clear:right;
	margin:10px 0 20px;
	border:1px solid #666;
	padding:2px;
	background:url(../img/gallery.gif);
}

#gallary ul.idTabs {
	padding:10px;
	border:2px solid #FFF;
	text-align:center;
}

#gallary ul.idTabs li {
	display:inline;
	margin:0 8px;
}

#gallary ul.idTabs li a {

}

#gallary ul.idTabs li a:focus {
	outline:none;
}

#gallary ul.idTabs li a img {
	vertical-align:middle;
	border:1px solid #9BA190;
}

#gallary ul.idTabs li a.selected img {
	border:1px solid #FFF;
}

#gallary ul.idTabs li a:hover {
	position:relative;
	top:-3px;
}

/*----------------------------------------------------
	物件の詳細、複数の物件の場合のタブ
----------------------------------------------------*/

#detail p.help {
	margin:20px 0 0;
	color:#0099CC;
}

#detail ul.idTabs {
	margin:0 0 20px;
	height:29px;
	border-bottom:1px solid #666;
}

#detail ul.idTabs li {
	float:left;
	height:29px;
	position:relative;
	top:1px;
}

#detail ul.idTabs li a {
	display:block;
	margin-left:0.5em;
	padding:0 3em;
	height:27px;
	_height:auto;
	border-top:1px solid #999;
	border-right:1px solid #666;
	border-left:1px solid #666;
	border-bottom:1px solid #666;
	background:#CCC url(../img/tab-bg.png) repeat-x 0 -30px;
	font-size:1.5em;
	font-weight:bold;
	color:#666;
}

#detail ul.idTabs li a:hover {
	background:#999 url(../img/tab-bg.png) repeat-x 0 -60px;
	color:#666;
	text-decoration:none;
}

#detail ul.idTabs li a:focus {
	outline:none;
}

#detail ul.idTabs li a.selected {
	background:#E7E5DB url(../img/tab-bg.png) repeat-x;
	border-bottom:1px solid #E7E5DB;
	color:#666;
}


#detail h4 {/*印刷の時の見出し、通常はタブが見出し代わりになるため表示しない、物件が一つの場合はhtmlから削除*/
	display:none;
}

/*----------------------------------------------------
	物件の詳細
----------------------------------------------------*/

#bukken00 {/*物件が一つの場合はタブでなくなるため、物件詳細を囲むdivのIDをbukken0として、上のボックスとの間を調節*/
	padding-top:20px;
}

#detail {
	margin:0 20px;
}

#detail div.matori {float:left;clear:left;}
#detail div.haichi {float:right;}
#detail div.zu {
	width:320px;
	text-align:center;
}

#detail div.zu div.title {
	padding:5px 0 2px;
	border-top:1px solid #676767;
	border-right:1px solid #676767;
	border-left:1px solid #676767;
	background:#9bb658;
}

#detail div.zu div.image {
	padding:10px 0;
	border:1px solid #676767;
	background:#FFF;
}

#detail div.zu div.image a span {
	display:block;
	margin:10px auto 0;
	width:80px;
	height:0;
	padding-top:30px;
	background:url(../img/bt-zoom.png) no-repeat;
	overflow:hidden;
	text-decoration:none;
}

#detail div.zu div.original-image {
	display:none;/*印刷の時にオリジナルサイズで表示するため、通常は表示しない*/
}

#detail div.zu div.image a:hover span {
	background-position:0 -30px;
}



#detail div.table {
	clear:both;
	padding-top:20px;
}

* html body #detail div.table{/*for IE6*/
	padding-top:10px;
}

#detail div.table div.title {
	padding:5px 0 2px;
	border-top:2px solid #676767;
	border-right:2px solid #676767;
	border-left:2px solid #676767;
	background:#9bb658;
	text-align:center;
}

#detail div.table table {
	width:663px;
	border:2px solid #676767;
	line-height:1.2;
}

#detail div.table table th {
	border:1px solid #676767;
	padding:5px;
	width:80px;
	background:#9BA190;
	color:#FFF;
	text-align:left;
}

#detail div.table table td {
	border:1px solid #676767;
	padding:5px;
	width:220px;
	background:#FFF;
	color:#686E5D;
}

#detail div.table table td.colspan3 {
	width:auto;
}

#detail div.table table td.number {
	border:none;
	background:#e7e5db;
}

#detail div.table table td.state {
	border:none;
	text-align:right;
	background:#e7e5db;
}


/*----------------------------------------------------
	お問い合わせはこちらのボタン
----------------------------------------------------*/

#main div.bt-contact {
	padding:20px;
	text-align:center;
}

#main div.bt-contact a {
	display:block;
	margin:0 auto;
	width:295px;
	height:0;
	padding-top:50px;
	background:url(../img/bt-contact2.png) no-repeat;
	overflow:hidden;	
}

#main div.bt-contact a:hover {
	background-position:0 -50px;
}

body.sale #main div.bt-contact a,
body.rent #main div.bt-contact a {
	background:url(../img/bt-contact.png) no-repeat;
}

body.sale #main div.bt-contact a:hover,
body.rent #main div.bt-contact a:hover {
	background-position:0 -50px;
}

/*----------------------------------------------------
	facebox用のcss
----------------------------------------------------*/

#facebox .b {
	  background:url(../img/facebox-b.png);
}

#facebox .tl {
	  background:url(../img/facebox-tl.png);
}

#facebox .tr {
	  background:url(../img/facebox-tr.png);
}

#facebox .bl {
	  background:url(../img/facebox-bl.png);
}

#facebox .br {
	  background:url(../img/facebox-br.png);
}

#facebox {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100;
	text-align: left;
}

#facebox .popup {
	position: relative;
}

#facebox table {
	margin: auto;
	border-collapse: collapse;
}

#facebox .body {
	padding: 10px;
	background: #fff;
	width: 370px;
}

#facebox .loading {
	text-align: center;
}

#facebox .image {
	text-align: center;
}

#facebox img {
	border: 0;
}

#facebox .footer {
	border-top: 1px solid #DDDDDD;
	padding-top: 5px;
	margin-top: 10px;
	text-align: right;
}

#facebox .tl, #facebox .tr, #facebox .bl, #facebox .br {
	height: 10px;
	width: 10px;
	overflow: hidden;
	padding: 0;
}