@charset "utf-8";

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	display: none;
}

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

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

/*ヘッダーロゴの設定*/
header p.img {
	position: absolute;
	left: 0px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 30px;	/*ヘッダーブロックに対して上から35pxの位置に配置*/
}

/*h1ロゴの設定*/
header h1 {
	padding-top: 5px;
	text-align: center;
	position: static;
}
/*電話番号のボックス設定*/
header p.toiawase {
	position: relative;
	top: 90px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/

nav#menu {
    margin-top: 80px;
}

/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: none;
	width: 100%;
	margin: 0;
}
nav#menu ul li a {
	border-radius: 0 0 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	margin: 0px;
}
/*最初のメニューの設定*/
nav#menu ul li:first-child a {
	border-radius: 10px 10px 0 0;
}
/*最後のメニューの設定*/
nav#menu ul li:last-child a {
	border-radius: 0 0 10px 10px;
	margin-bottom: 10px;
}


/*英語表記の設定*/
nav#menu ul li a span {
	display: none;
}

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

/*メイン（mainを囲むブロック）
---------------------------------------------------------------------------*/
#main {
	float: none;
	width: auto;
	position: relative;
	top:20px;
		margin-bottom: 0px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: none;
	width: auto;
	position: relative;
	top: 0px;
}


#main p {
	padding: 0;
}

/*トップページのメイン画像。表示させたいなら、style-m.cssの同じ箇所のタグをコピペする。
---------------------------------------------------------------------------*/
#mainimg {
	height: 0px;
	margin-bottom: 0px;
}



/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}






/*サブコンテンツ　物件ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub article.box1 {
	font-size: 12px;	/*文字サイズ*/
	width: 100%;		/*ボックスの幅*/
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h1.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#f8b200), to(#f28b00));
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#f8b200, #f28b00);
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#f8b200, #f28b00);
}
section#new h1.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#f8b200), to(#f28b00));
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#f8b200, #f28b00);
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#f8b200, #f28b00);
}
/*ブロック全体の設定*/
#new {
	margin-bottom: 1em;
}
#new dl {
	height: auto;
	padding-left: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;
	padding-left: 0;
}

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

/*list.html内の物件一覧の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;
	width: 40%;
	height: auto;
	margin-right: 10px;
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	margin-left: 0;
}



/*フッターお問い合わせ
---------------------------------------------------------------------------*/
.footer-mail img {
    max-width: 100%;
}









/*item.htmlの製品詳細
---------------------------------------------------------------------------*/
/*写真設定*/
#item #main figure > img {
	width: 100%;
	height: auto;
}

/*その他
---------------------------------------------------------------------------*/
/*物件詳細ページで上部メニューを表示させない設定。*/
#item nav#menu ul {
	display: none;
}

/*お問い合わせページで上部メニューを表示させない設定。*/
#contact nav#menu ul {
	display: none;
}

/*トップページ以外では、サブコンテンツを表示させない設定。表示させていたいならこのブロックを削除する。*/
#main-under,
#main-menu,
#list #sub,
#item #sub,
#company #sub,
#recruit #sub,
#link #sub,
#contact #sub {
	display: none;
}

/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
#main img.wa {
	width: 100%;
	height: auto;
}

/* スマホ非表示設定
---------------------------------------------------------------------------*/
#toggle-s {
    display: none ;		/* 非表示にする */
	}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px){

.new-post {
    display: block ;     /* 表示にする */
}

#toggle-s {
    display: none ;		/* 非表示にする */
	}

}
