@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;
}
/*h1ロゴの設定*/
header h1 {
	padding-top: 15px;
	text-align: center;
	position: static;
}
header h1 img {
	width: 80%;
	height: auto;
}
/*電話番号のボックス設定*/
header p.toiawase {
	display: none;
}

/*トップページ・ブログページ上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu_top ul li {
	float: none;
	width: 100%;
	margin: 0;
}
nav#menu_top ul li a {
	border-radius: 0 0 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
/*最初のメニューの設定*/
nav#menu_top ul li:first-child a {
	border-radius: 10px 10px 0 0;
}
/*最後のメニューの設定*/
nav#menu_top ul li:last-child a {
	border-radius: 0 0 10px 10px;
	margin-bottom: 10px;
}
/*英語表記の設定*/
nav#menu_top ul li a span {
	display: none;
}

/*current（現在表示中のページのメニュー）*/
nav#menu_top ul li#current a {
	width: 100%;
	border-top: none;
	border-right: none;
	border-left: none;
}



/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: none;
	width: 100%;
	margin: 0;
}
nav#menu ul li a {
	border-radius: 0 0 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
/*最初のメニューの設定*/
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;
}

/*current（現在表示中のページのメニュー）*/
nav#menu ul li#current a {
	width: 100%;
	border-top: none;
	border-right: none;
	border-left: none;
}


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

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

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

/*サブコンテンツ　ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#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(#f486a1), to(#ed5675));
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#f486a1, #ed5675);
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#f486a1, #ed5675);
}
section#new h1.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#f486a1), to(#ed5675));
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#f486a1, #ed5675);
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#f486a1, #ed5675);
}
/*ブロック全体の設定*/
#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;
}

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

/*その他
---------------------------------------------------------------------------*/
/*物件詳細ページで上部メニューを表示させない設定。*/
#item nav#menu ul {
	display: none;
}
/*お問い合わせページで上部メニューを表示させない設定。*/
#contact nav#menu ul {
	display: none;
}
/*トップページ以外では、サブコンテンツを表示させない設定。表示させていたいならこのブロックを削除する。*/
#list #sub,
#list #sort_box,
#item #sub,
#company #sub,
#recruit #sub,
#link #sub,
#contact #sub {
	display: none;
}

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

.box_yt_v_2{
	display: none;
}

#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}

