<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #444;	/*全体の文字色*/
	background: #fff;	/*背景色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-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%;}
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: #444;	/*リンクテキストの色*/
}
a:hover {
	color: #0029c3;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	height: 120px;	/*高さ*/
	background: #0029c3 url(../images/header_bg.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
	border-radius: 8px 8px 0px 0px;	/*左上、右上、右下、左下への角丸のサイズ*/
}
/*トップページのヘッダーブロック*/
#top header {
	height: 312px;	/*高さ*/
	background: #0029c3 url(../images/header_bg_top.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
}
/*h1ロゴ*/
header #logo img {
	width: 300px;		/*画像の幅*/
	margin-top: 20px;	/*画像の上にとるスペース*/
	margin-left: 50px;	/*画像の左にとるスペース*/
}
/*h1ロゴ*/
#top header #logo img {
	margin-top: 70px;	/*画像の上にとるスペース*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への設定*/
nav#menubar {
	border: 1px solid #0029c3;	/*線の幅、線種、色*/
	border-radius: 0px 0px 8px 8px;		/*左上、右上、右下、左下への角丸のサイズ*/
	background: #FFF;	/*背景色（※古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
}
/*メニューブロックの中のulタグへの設定*/
nav#menubar ul {
	height: 60px;	/*高さ*/
	width: 95%;
	overflow: hidden;
	margin-left: 2.5%;
	border-left: 1px solid #d6d6d6;	/*左側の線の幅、線種、色*/
	border-right: 1px solid #fff;	/*左側の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 25%;/*width: 16.66%;*/
	text-align: center;	/*文字をセンタリング*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	padding: 8px 0px;		/*メニュー内の上下、左右へとる余白*/
	background: url(../images/mark1.png) no-repeat 10px center;	/*矢印マークの読み込み。リピートさせず、左から15px、上下中央の配置。*/
	border-right: 1px solid #d6d6d6;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #fff;		/*左側の線の幅、線種、色*/
}
/*マウスオン時の設定*/
nav#menubar ul li:hover {
	background: #fff;	/*背景色*/
}
/*英語文字の設定*/
nav#menubar ul li span {
	display: block;
	color: #0029c3;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	-webkit-text-size-adjust: none;
	margin-top: -8px;	/*少し上にずらす設定*/
}
/*小さい端末用(画面幅480px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	padding-top: 40px;	/*メニューブロックとコンテンツとの間に空ける余白*/
}

/*メインコンテンツ（左側ブロック）
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に流し込み*/
	width: 74%;		/*コンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 15px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #0029c3 url(../images/mark2.png) no-repeat 15px center;	/*背景色とマーク画像の読み込み*/
	padding: 5px 10px 5px 40px;	/*上、右、下、左へのボックス内の余白*/
	border-radius: 8px;	/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: #FFF;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
	padding: 4px 10px 4px 15px;	/*上、右、下、左へのボックス内の余白*/
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	border-radius: 8px;		/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする*/
}

#main h4 {
	padding: 15px;	/*ボックス内の余白*/
	border-left: 3px solid #0029c3;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/

	padding: 5px 10px 5px 20px;	/*上、右、下、左へのボックス内の余白*/
	font-size: 100%;
	margin-bottom: 0.5em;
	color: #0029c3;		/*文字色*/
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}

/*メインコンテンツのp(段落)タグ設定*/
#main p {
	padding: 0px 15px 14px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -5px;
}

/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	padding: 15px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;

	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFF3E8));	/*グラデーション #ebebeb */
	background: -webkit-linear-gradient(#FFF, #FFF3E8);										/*同上*/
	background: linear-gradient(#FFF, #FFF3E8);												/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 15px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;

	padding: 0px;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 1%;		/*写真の右側に空ける余白*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	font-size: 100%;
	margin-bottom: 0.5em;
	color: #0029c3;
	border-bottom: 1px solid #CCC;

}
/*ボックス内のh4タグの１文字目への設定*/
#main .list h4::first-letter {
/*	border-left: 3px solid #0029c3;*/	/*左側の線の幅、線種、色*/
/*	padding-left: 10px;*/	/*線と文字との余白*/
}
/*リンクの設定*/
#main .list a {
/*
	padding: 15px;
	text-decoration: none;
	display: block;
	overflow: hidden;
*/
}
/*マウスオン時のボックス*/
#main .list a:hover {
	background: #fff;	/*背景色*/
}
/*h4タグ直下に画像がある場合の段落タグ設定*/
#main .list h4 + figure ~ p {
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
}
/*h4タグ直下に画像がある場合のtableタグ設定*/
#main .list h4 + figure ~ table {
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
	width: 75%;			/*テーブル幅*/
}

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

/*商品詳細ページの画像切り替え
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
}
/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index:2;
	position:relative;
	overflow:hidden;
}
/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index:1;
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
}
/*サムネイル画像*/
.thumbnail {
	width: 100px;	/*画像の幅*/
	height: 100px;	/*画像の高さ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}
.thumbnail:hover {
	border: 1px solid #000;	/*マウスオン時の枠線の幅、線種、色*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 23%;		/*コンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	padding-bottom: 10px;		/*下への余白*/
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	border-left: 3px solid #0029c3;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #e4e4e4;	/*背景色*/
	border: solid 1px #d1d1d1;	/*線の線種、幅、色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*サブコンテンツ　物件ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .list {
	font-size: 11px;	/*文字サイズ*/
	width: 100%;		/*ボックスの幅*/
	border-bottom: 1px solid #d1d1d1;	/*下の線の幅、線種、色*/
	border-left: 1px solid #d1d1d1;		/*左の線の幅、線種、色*/
	border-right: 1px solid #d1d1d1;	/*右の線の幅、線種、色*/
	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
}
#sub .list a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*h4見出しタグ*/
#sub .list h4 {
	color: #0029c3 !important;		/*文字色*/
	font-size: 14px;	/*文字サイズ*/
}
/*１つめにあたるボックスの設定*/
#sub &gt; .list:first-of-type,
#sub h2+.list {
	border-top: 1px solid #d1d1d1;	/*上の線の幅、線種、色*/
}
/*サムネイル画像設定*/
#sub .list figure {
	float: left;	/*左に回り込みさせる設定*/
	width: 25%;		/*幅*/
	margin-right: 5px;	/*画像の右側に空けるスペース*/
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;
}
#footermenu li {
	display: inline;
	padding: 5px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width: 100%;
	clear: both;
	text-align: center;
	background: #0029c3;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 8px;		/*角丸のサイズ*/
	margin-bottom: 10px;
	padding: 10px 0px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #fff;
}
footer a:hover {
	color: #fff;
}

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

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background: #f0f0f0;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #6f6f6f;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#6f6f6f), to(#5c5c5c));	/*グラデーション*/
	background: -webkit-linear-gradient(#6f6f6f, #5c5c5c);	/*同上*/
	background: linear-gradient(#6f6f6f, #5c5c5c);			/*同上*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 100px;
	height: 40px;

}
.ta1 td .specialbox img {
	vertical-align: middle;
}

/*inputボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする設定*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #0029c3;		/*文字色*/
	background: #fff;	/*背景色*/
	font-size: 20px;	/*文字サイズ*/
	text-decoration: none;
	text-align: center;
	width: 50px;
	line-height: 50px;
	border-radius: 25px;
	border: 1px solid #0029c3;
	display: block;
	float: right;
	margin-bottom: 30px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #0029c3;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;	/*文字サイズ*/
	-webkit-text-size-adjust: none;
	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;	/*文字サイズ*/
	-webkit-text-size-adjust: none;
	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;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;padding:4px;border-radius: 4px;}
.look2 {background: #f0e68c;padding:4px;border-radius: 4px;}	/*黄色*/
.look3 {background: #ffd700;padding:4px;border-radius: 4px;}	/*黄色*/
.look4 {background: #d8bfd8;padding:4px;border-radius: 4px;}	/*ピンク*/
.look5 {background: #db7093;padding:4px;border-radius: 4px;}	/*ピンク*/
.look6 {background: #da70d6;padding:4px;border-radius: 4px;}	/*ピンク*/
.look7 {background: #7cfc00;padding:4px;border-radius: 4px;}	/*グリーン*/
.look8 {background: #adff2f;padding:4px;border-radius: 4px;}	/*グリーン*/
.look9 {background: #00ff00;padding:4px;border-radius: 4px;}	/*グリーン*/
.look10 {background: #6495ed;padding:4px;border-radius: 4px;}	/*水色*/
.look11 {background: #00bfff;padding:4px;border-radius: 4px;}	/*水色*/
.look12 {background: #87ceeb;padding:4px;border-radius: 4px;}	/*水色*/
.look13 {background: #00ffff;padding:4px;border-radius: 4px;}	/*水色*/
.look14 {background: #ffa500;padding:4px;border-radius: 4px;}	/*オレンジ*/
.look15 {background: #ff8c00;padding:4px;border-radius: 4px;}	/*オレンジ*/
.look16 {background: #800080;padding:4px;border-radius: 4px;}	/*パープル*/
.look17 {background: #d8bfd8;padding:4px;border-radius: 4px;}	/*ピンク*/

.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #0000cd;}	/*ブルー*/
.color2 {color: #1e90ff;}	/*水色*/
.color3 {color: #006400;}	/*グリーン*/
.color4 {color: #ff0000;}	/*赤*/
.color5 {color: #c71585;}	/*ピンク*/
.color6 {color: #ff8c00;}	/*オレンジ*/
.color7 {color: #32cd32;}	/*くすんだグリーン*/
.color8 {color: #800080;}	/*パープル*/
.color9 {color: #4b0082;}	/*パープル*/
.color10 {color: #ff4500;}	/*オレンジ*/
.color11 {color: #006400;}	/*グリーン*/


.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.date{display:block;float:right;font-size:11px;color:#999;margin-right:4%;}
.big1 {font-size: 18px;}



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

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

}



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

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの中のulタグへの設定*/
nav#menubar ul {
	height: auto;
	width: auto;
	margin-left: 0;
	border:none;
	border-radius: 0px 0px 8px 8px;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;	/*メニュー幅*/
}
nav#menubar ul li a {
	border:none;
	border-bottom: 1px solid #d6d6d6;	/*各メニューの下に入れる線の幅、線種、色*/
}
nav#menubar ul li:nth-child(odd) a {
	border-right: 1px solid #d6d6d6;	/*奇数番目のメニューだけ右側に線を入れる*/
}

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

/*サブコンテンツ　物件ボックス
---------------------------------------------------------------------------*/
/*サムネイル画像設定*/
#sub .list figure {
	width: 10%;	/*画像幅*/
}

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

}



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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header,
#top header {
	height: 120px;	/*高さを減らして全ページ統一*/
	background: #0029c3 url(../images/header_bg.png) no-repeat center bottom;
}
/*h1ロゴ*/
header #logo img,
#top header #logo img {
	width: 50%;			/*画像幅*/
	margin-top: 28px;	/*画像の上にとるスペース*/
	margin-left: 3%;	/*画像の左にとるスペース*/
}

/*inputボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: auto;
	font-size: 14px;
	letter-spacing: normal;
}

}



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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	margin: 0;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header,
#top header {
	height: 100px;	/*高さをさらに減らす*/
	background: #0029c3 url(../images/header_bg.png) no-repeat center bottom;
	border-radius: 0px;
}
/*h1ロゴ*/
header #logo img,
#top header #logo img {
	width: 70%;			/*画像幅*/
	margin-top: 16px;	/*画像の上にとるスペース*/
	margin-left: 3%;	/*画像の左にとるスペース*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*小さい端末用(画面幅480px以下)メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	margin-top: 20px;
	text-align: center;	/*文字をセンタリング*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	border-top: 1px solid #d6d6d6;	/*下側の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
nav#menubar-s ul li a {
	text-decoration: none;
	display: block;
	padding: 8px 0px;		/*メニュー内の上下、左右へとる余白*/
	background: url(../images/mark1.png) no-repeat 10px center;	/*矢印マークの読み込み。リピートさせず、左から15px、上下中央の配置。*/
	border-bottom: 1px solid #d6d6d6;	/*下側の線の幅、線種、色*/
}
/*大きな端末用(画面幅481px以上)メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 26px;		/*上から26pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #0029c3;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;		/*上、左右、下へのボックス内余白*/
	background: #fff;			/*背景色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #666;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;			/*バー同士の余白*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	margin: 3%;
	padding-top: 20px;
	height: 3000px;
}

/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグとtableタグ設定*/
#main .list p,
#main .list table {
	margin-left: 0 !important;
	width: 100% !important;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 15px;
}
/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
	margin-left: 0;
	width: 100%;
}

/*一覧ページのsortbox（CMS）
---------------------------------------------------------------------------*/
.sortbox {text-align: center;}
.sortbox span {display: none;}

/*サブコンテンツ　物件ボックス
---------------------------------------------------------------------------*/
/*サムネイル画像設定*/
#sub .list figure {
	width: 25%;	/*画像幅*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, url(../images/mark2.png) no-repeat 15px center, #0029c3;		/*マイナスアイコンと背景画像など*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, url(../images/mark2.png) no-repeat 15px center, #0029c3;		/*プラスアイコンと背景画像など*/
}

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

/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}

}

/*目次
---------------------------------------------------------------------------*/
.toc-002 {
    margin-bottom: 30px;
    border: 2px solid #2589d0;
    border-radius: 3px;
}

.toc-002 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #2589d0;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
}

.toc-002 div::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 4H21V6H8V4ZM3 3.5H6V6.5H3V3.5ZM3 10.5H6V13.5H3V10.5ZM3 17.5H6V20.5H3V17.5ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
    content: '';
}

.toc-002 label::after {
    margin-left: 7px;
    font-weight: 500;
    font-size: .7em;
    color: #fff;
    content: "[開く]";
    cursor: pointer;
}

.toc-002:has(:checked) label::after {
    content: "[閉じる]";
}

.toc-002 input {
    display: none;
}

.toc-002 ol {
    list-style-type: disc;
    margin: 0;
    overflow: hidden;
}

.toc-002 &gt; ol {
    height: 0;
}

.toc-002:has(:checked) &gt; ol {
    height: auto;
    padding: 1em 1em 1em 3em;
}

.toc-002 ol ol {
    margin-top: 5px;
    padding-left: 1.1em;
}

.toc-002 li {
    padding: 5px 0;
    font-weight: 600;
}

.toc-002 ol ol li {
    font-weight: 500;
    font-size: .9em;
}

.toc-002 a {
    color: #333;
    text-decoration: none;
}



/*下へスクロール後、トップへ戻るボタン 
---------------------------------------------------------------------------*/

/*画面右下に固定*/
.pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
}


</pre></body></html>