@charset "utf-8";
/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
    margin: 0px;
    padding: 0px;
    color: #333;	/*全体の文字色*/
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
    font-size: 15px;	/*文字サイズ*/
    line-height: 2;		/*行間*/
    background: #fff;	/*背景色*/
    -webkit-text-size-adjust: none;
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form, textarea, input {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
    font-weight: normal;
}
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%;
		border: none;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
    color: #666;	/*リンクテキストの色*/
    transition: 0.5s;			/*同上*/
    text-decoration: none;
}
a:hover {
    color: #273361;			/*マウスオン時の文字色*/
    text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*container（全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
    max-width: 1400px;	/*サイトの最大幅*/
    margin: 0 auto;
    padding: 0 2%;	/*上下、左右へのブロック内の余白*/
}
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    height: 120px;	/*高さ*/
    border-top: 4px solid #273361;	/*上の線の幅、線種、色*/
}
/*ロゴ画像*/
header #logo {
    width: 300px;	/*ロゴ画像の幅*/
    float: left;	/*左に回り込み*/
    margin-top: 30px;	/*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
    margin-left: 3%;	/*ロゴの左にあける余白。*/
}
/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
    float: right;		/*右に回り込み*/
    margin-top: 16px;	/*ブロックの上にあける余白。上下のバランスをここで調整して下さい。*/
    margin-right: 3%;	/*ブロックの右にあける余白。*/
    width: 350px;		/*ブロック幅*/
    border-radius: 3px;	/*角丸のサイズ*/
    padding: 5px;		/*ボックス内の余白*/
    border: 1px solid #273361;	/*枠線の幅、線種、色*/
    text-align: center;	/*文字をセンタリング*/
    line-height: 160%;
    color: #273361;
}
/*TEL*/
.tel {
    letter-spacing: 0.1em;	/*文字間隔を広くする設定。通常がいいならこの行削除。*/
    font-size: 18px;		/*文字サイズを大きく*/
}
.tel2 {
    letter-spacing: 0.1em;	/*文字間隔を広くする設定。通常がいいならこの行削除。*/
    font-size: 18px;		/*文字サイズを大きく*/
}
/*TELの受付時間の小文字部分*/
.tel2 span {
    font-size: 11px;	/*文字サイズを小さく*/
    display: block;
    letter-spacing: 0.1em;	/*文字間隔*/
}
/*コンテンツ（左右ブロックとフッターを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
    clear: both;
    overflow: hidden;
    border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
    border-top: none;			/*上の線だけ消す*/
    box-shadow: 0px 0px 30px rgba(0,0,0,0.2);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2が透明度20%の事。*/
    border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
}
/*パンくずリスト
---------------------------------------------------------------------------*/
#pan ol.topic-path {
    margin: 20px 0 0 20px; /* マージン（上下左右） */
    padding: 1px 5px; /* パディング（上下、左右） */
    /*background-color: #f9f9f9;*/ /* 背景色 */
    list-style-type: none; /* リストマーク非表示 */
    font-size: 100%; /* 文字サイズ */
}
/* リスト項目 */
#pan ol.topic-path li {
    padding-left: 5px; /* 左パディング */
    display: inline; /* 項目を横並び */
}
/* リスト項目（最初の項目） */
#pan ol.topic-path li.first:before {
    font-family: FontAwesome;
    content: "\f015";
    color: #273361;
    padding-right: 5px; /*文字との隙間*/
}
#pan ol.topic-path li.item:before {
    padding-left: 5px; /* 左パディング */
    display: inline; /* 項目を横並び */
    font-family: FontAwesome;
    content: "\f101";
    color: #d9cc34;
    padding-right: 5px; /*文字との隙間*/
}
/* リンクエリア */
#pan ol.topic-path li a {
    padding-right: 5px; /* 右パディング */
}
/* リンク色 */
#pan ol.topic-path li a {
    color: #273361;
}
/* リンク色（マウスオーバー） */
#pan ol.topic-path li a:hover {
    color: #d9cc34;
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
    clear: both;
    overflow: hidden;
    background: linear-gradient(#273361, #171e39);	/*グラデーション*/
    padding: 5px 0px 5px 2.8%;	/*上、右、下、左への余白*/
    font-size: 18px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar li {
    float: left;	/*左に回り込み*/
    width: 16.2%;	/*メニュー幅。メニューを増減する場合はここの数字を変更する。#menubarのpaddingの2.8%の数字が加わるので注意して下さい。*/
}
#menubar li a {
    display: block;
    text-decoration: none;
    text-align: center;	/*文字を中央に*/
    line-height: 1.5;	/*行間を少し狭く*/
    padding: 7px 0px;	/*上下、左右へのボックス内の余白*/
    color: #fff;	/*文字色*/
    border-right: 1px solid #fff;	/*右側の線の幅、線種、色（古いブラウザ用）*/
    border-right: 1px solid rgba(255,255,255,0.3);	/*右側の線の幅、線種、色。255,255,255は白の事で0.3が透明度30%の事。*/
    text-shadow: 0px -1px rgba(0,0,0,0.8);	/*テキストの影。右へ、下へ(マイナスなので上に向けて)、0,0,0は黒のことで0.8は透明度80%の事。*/
}
/*１つ目のメニューにだけ左側に線を入れる設定*/
#menubar li:first-child a {
    border-left: 1px solid #fff;	/*古いブラウザ用*/
    border-left: 1px solid rgba(255,255,255,0.3);
}
/*マウスオン時*/
#menubar li a:hover {
    background: #fff;	/*背景色*/
    color: #273361;		/*文字色*/
    text-shadow: none;	/*テキストの影を消す*/
}
/*装飾文字（※800px以下の小さな端末#menubar-sも共通）*/
#menubar li a span, #menubar-s li a span {
    display: block;
    text-shadow: none;
    font-size: 11px;	/*文字サイズ*/
    letter-spacing: 0.2em;	/*文字間隔を少し広く*/
    color: rgba(255,255,255,0.5);	/*文字色。255,255,255は白の事で0.5は透明度50%の事。*/
}
/*装飾文字のマウスオン時*/
#menubar li a:hover span {
    color: #273361;	/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
    display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
    display: none;
}
/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	width: 15.2%;		/*幅。上の「#menubar li」と合わせる。*/
	border-top: 1px solid #999;	/*上の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
	line-height: 1.4;
}
#menubar ul.ddmenu li a {
	width: 100%;height: auto;font-weight: normal;border-radius: 0 !important;
	border: none;	/*線を一旦リセット*/
	border-bottom: 1px solid #999;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	font-size: 16px;
	color: #fff;		/*文字色*/
	padding: 10px 0;	/*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #273361;	/*背景色*/
	background: rgba(39,51,97,1.9);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/	
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
    overflow: hidden;
    float: right;	/*右に回り込み*/
    padding: 10px 2% 0 0;	/*上、右、下、左側へのボックス内の余白*/
    width: 72%;		/*幅*/
    margin-bottom: 30px;
}
/*メインコンテンツのh2タグの設定*/
#main h2 {
    clear: both;
    font-size: 20px;	/*文字サイズ*/
		font-weight: bold;
    line-height: 1.4;	/*行間*/
    margin-bottom: 20px;
    padding: 12px 20px;	/*上下、左右への余白*/
    background: linear-gradient(#fff, #eee);	/*グラデーション*/
    border-bottom: 1px solid #dcdcdc;	/*メニュー下の線の幅、線種、色*/
    border-top: 4px solid #273361;	/*メニュー上の線の幅、線種、色*/
    box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
    text-shadow: 0px 2px #fff;	/*テキストの影。右へ、下へ、色。*/
}
/*コンテンツのh2タグ内のspanタグ設定（色付き文字部分）*/
#main h2 span {
    display: block;
    color: #273361;		/*文字色*/
    font-size: 12px;	/*文字サイズ*/
		font-weight: normal;
    letter-spacing: 0.1em;	/*文字間隔を少し広げる設定*/
    padding-left: 0px;
}
/*メインコンテンツのh3タグの設定*/
#main h3 {
    clear: both;
    font-size: 18px;	/*文字サイズ*/
		font-weight: bold;
    margin-bottom: 20px;
    padding: 2px 20px;	/*上下、左右への余白*/
    border: 1px solid #dcdcdc;	/*線の幅、線種、色*/
    background: linear-gradient(#fff, #eee);	/*グラデーション*/
}
/*メインコンテンツの段落タグ設定*/
#main p {
    padding: 0px 20px 15px;	/*上、左右、下への余白*/
		text-align: justify;
		text-justify: inter-ideograph;
		color: #333;
}
#main h2 + p, #main h3 + p {
    margin-top: -10px;
}

#main h4 {
	clear: both;
	padding: 0;
	margin: 10px;
	border-bottom: none;
	font-size: 16px;	/*文字サイズ*/
	color: #333;		/*文字色*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
/*ボックス内のh4（見出し）タグの１文字目への設定。左のアクセントラインです。*/
#main h4::first-letter {
	border-left: 3px solid #273361;	/*左の線の幅、線種、色*/
	padding-left: 10px;	/*枠線と文字との間の余白*/
}
	
/*ページ内メニュー（info.htmlで使用）
---------------------------------------------------------------------------*/
/*ブロック全体*/
.menu {
    overflow: hidden;
    margin-bottom: 20px; /*下に空けるスペース*/
    text-align: center; /*内容をセンタリング*/
}
/*メニュー１個あたりの指定*/
.menu li {
    display: inline; /*横並びになる指定*/
    border-right: 1px solid #999; /*右側の線の幅、線種、色*/
    line-height: 220%;
}
.menu li a {
    padding: 10px; /*メニュー内余白*/
}
/*最初のメニューへの追加指定*/
.menu li:first-child {
    border-left: 1px solid #999; /*左側の線の幅、線種、色*/
}

/*PROPOSALS・PRODUCTページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
		margin-bottom: 15px;	/*ボックスの下に空ける余白*/
    position: relative;
    overflow: hidden;
   /* box-shadow: 0px 1px 3px rgba(0,0,0,0.15);*/	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
    border: 1px solid #ccc;	/*枠線の幅、線種、色*/
    padding: 1%;	/*ボックス内の余白*/
		margin: 10px;
}

/*#main .list a {
    text-decoration: none;
    display: block;
    overflow: hidden;
    border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
    /*padding: 3%;*/	/*ボックス内の余白*/
/*}*/
/*各ボックスの設定（※compactタイプへの追加設定）*/
#main .list.compact {
	box-shadow: none;
	width: 18%;			/*幅*/
	float: left;		/*左に回り込み*/
	margin-left: 1.3%;	/*右側に空けるスペース*/
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;	/*行間を狭くする*/
}
#main .list.compact a {
	height: 260px;	/*高さ*/
	border: none;
	padding: 0;
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
    margin-bottom: 0.5em;
    color: #273361;		/*文字色*/
    border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
}
/*ボックス内のh4タグの１文字目への設定*/
#main .list h4::first-letter {
    border-left: 3px solid #273361;	/*左側の線の幅、線種、色*/
    padding-left: 10px;	/*線と文字との余白*/
}
/*ボックス内のh4タグ設定（※compactタイプへの追加設定）*/
#main .list.compact h4 {
	border: none;
}
/*ボックス内のh4タグの１文字目への設定（※compactタイプへの追加設定）*/
#main .list.compact h4::first-letter {
	border: none;
	padding: 0;
}
/*ボックス内の段落タグ設定*/
#main .list p {
    padding: 0px;
    margin-left: 36%;	/*左側の写真幅とのバランスをとって設定*/
		text-align: justify;
		text-justify: inter-ideograph;
}
/*ボックス内の段落タグ設定（※compactタイプへの追加設定）*/
#main .list.compact p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 200px;		/*写真の幅*/
}
/*マウスオン時のボックス内の写真設定*/
#main .list a:hover figure img {
    opacity: 0.8;	/*透明度80%にする設定*/
}
/*ボックス内の写真設定（※compactタイプへの追加設定）*/
#main .list.compact figure img {
	float: none;
	margin: 0;
	margin-bottom: 10px;
	border: none;
	width: auto;
	padding: 0;
}
/*マウスオン時のボックス内の写真設定（※compactタイプへの追加設定）と、ボックスにoption2スタイルが指定された場合の画像の設定。*/
.list.option2 a:hover figure img, .list.option2 figure img {
    opacity: 0.3 !important;
}
/*リスト表示*/

#main .list ul {
    margin-left: 36%;	/*左側の写真幅とのバランスをとって設定*/
    border: solid 2px skyblue;
    border-radius: 5px;
    padding: 0.5em 1em 0.5em 2.3em;
    position: relative;
}
#main .list ul li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none!important;
}
#main .list ul li:before { /*疑似要素*/
    font-family: FontAwesome;
    content: "\f138"; /*アイコンの種類*/
    position: absolute;
    left : 1em; /*左端からのアイコンまでの距離*/
    color: skyblue; /*アイコン色*/
}
/*登録日情報*/
#main .list .date {
    display: block;
    font-size: 11px;	/*文字サイズ*/
    color: #999;		/*文字色*/
    text-align: right;	/*テキストを右側に*/
}

/*Product一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list2 {
	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
	position: relative;
	overflow: hidden;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
  border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
  padding: 1%;	/*ボックス内の余白*/
}
#main .list2 a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	padding: 1%;	/*ボックス内の余白*/
}

/*ボックス内のh4タグ設定*/
#main .list2 h4 {
	font-size: 14px;
	margin-bottom: 0.5em;
	color: #273361;		/*文字色*/
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
}
/*ボックス内のh4タグの１文字目への設定*/
#main .list2 h4::first-letter {
	border-left: 3px solid #273361;	
	padding-left: 10px;	
}

/*ボックス内の段落タグ設定*/
#main .list2 p {
	padding: 0px;
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
}

/*ボックス内の写真設定*/
#main .list2 figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	margin-right: 0.8%;	/*写真の右側に空ける余白*/
}
/*マウスオン時のボックス内の写真設定*/
#main .list2 a:hover figure img {
	opacity: 0.8;	/*透明度80%にする設定*/
}
/*マウスオン時のボックス内の写真設定（※compactタイプへの追加設定）と、ボックスにoption2スタイルが指定された場合の画像の設定。*/
.list2.option2 a:hover figure img,
.list2.option2 figure img {
	opacity: 0.3 !important;
}
/*登録日情報*/
#main .list2 .date {
	display: block;
	font-size: 11px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	text-align: right;	/*テキストを右側に*/
}

/*各ボックスの設定（※compactタイプへの追加設定）*/
#main .list2.compact {
	box-shadow: none;
	width: 16%;			/*幅*/
	float: left;		/*左に回り込み*/
	margin-left: 1.3%;	/*右側に空けるスペース*/
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;	/*行間を狭くする*/
}
#main .list2.compact a {
	height: 280px;	/*高さ*/
	border: none;
	padding: 0;
}
#main .list2.compact a:hover{
	opacity: .5;
}
/*ボックス内のh4タグ設定（※compactタイプへの追加設定）*/
#main .list2.compact h4 {
	margin: 10px 0;	
	border: none;
	font-weight: bold;
}
/*ボックス内のh4タグの１文字目への設定（※compactタイプへの追加設定）*/
#main .list2.compact h4::first-letter {
	border: none;
	padding: 0;
	margin: 0;
}
/*ボックス内の段落タグ設定（※compactタイプへの追加設定）*/
#main .list2.compact p {
	margin-left: 0;
	font-size: 14px;
}
/*ボックス内の写真設定（※compactタイプへの追加設定）*/
#main .list2.compact figure img {
	width: 95%;
	float: none;
	margin-bottom: 10px;
	border: 3px solid #dcdcdc;	/*枠線の幅、線種、色*/	
}

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

/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list3 {
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);										/*同上*/
	background: linear-gradient(#FFF, #ebebeb);												/*同上*/
	-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 section.list3 a {
	padding: 15px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
#main section.list3.compact {
	width: 23%;	/*compactタイプの幅*/
	float: left;
	margin-left: 1.3%;
}
#main section.list3.compact a {
	height: 220px;	/*compactタイプの高さ*/
}
/*ボックス内の段落タグ設定*/
#main section.list3 p {
	padding: 0px;
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
}
#main section.list3.compact p {
	margin: 0;
	font-size: 11px;	/*compactタイプの文字サイズ*/
	line-height: 1.4;
	margin-bottom: 5px;
}
/*ボックス内の写真設定*/
#main section.list3 figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 30%;		/*写真の幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 1%;		/*写真の右側に空ける余白*/
}
#main section.list3.compact figure img {
	float: none;
	width: 90%;
	margin: 0;
}
/*ボックス内のh4タグ設定*/
#main section.list3 h4 {
	font-size: 100%;
	margin-bottom: 0.5em;
	color: #000;		/*文字色*/
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
#main section.list3.compact h4 {
	font-size: 12px;
	border: none;
	line-height: 1.2;
}
/*ボックス内のh4タグの１文字目への設定*/
#main section.list3 h4::first-letter {
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/
}
#main section.list3.compact h4::first-letter {
	border: none;
	padding: 0;
}
/*マウスオン時のボックス*/
#main section.list3 a:hover {
	background: #fff;	/*背景色*/
}
/*登録日情報*/
#main section.list3 .date {
	display:block;
	float:right;
	font-size:11px;
	color:#999;
	margin-right:2%;
}
#main section.list3.compact .date {
	float: none;
	line-height: 1.2;
}
/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list3 table {
	font-size: 12px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	width: 76%;			/*テーブル幅*/
	margin-bottom: 5px;
}
#main section.list3 table,
#main section.list3 table td,
#main section.list3 table th{
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
}
#main section.list3 table td,
#main section.list3 table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main section.list3 table th{
	width: 20%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #dfe0c8;	/*背景色*/
}
/*白い説明用ブロック*/
#main section.list3 table td {
	width: 30%;	/*幅*/
}


/*「COMPANY」ページの一覧用ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
    margin-bottom: 15px;	/*ボックス間のスペース*/
    position: relative;
    overflow: hidden;
    background: #fff;		/*背景色*/
    color: #666;			/*文字色*/
    border: 1px solid #dadada;	/*枠線の幅、線種、色*/
    padding: 2.0%;			/*ボックス内の余白*/
}
/*#main section.list a {
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    color: #666;
    margin: -2.5%;
    padding: 2.5%;			
}*/
/*マウスオン時の背景色*/
/*#main section.list a:hover {
	background: #fff69e;
}*/
/*ボックス内の段落タグ設定*/
#main section.list p {
    width: 100%;
    padding: 0px;
    margin-left: 1px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 140px;		/*写真の幅*/
	background: #fff;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}

/*ボックス内のh4タグ設定*/
#main section.list h4 {
    width: 60%;
    font-size: 17px;	/*文字サイズ*/
    margin-left: 1px;	/*左の写真とのバランスをとって設定*/
}

/*ボックス（toppage,flow）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list4 {
	position: relative;overflow: hidden;
	background: #fff;		/*背景色*/
	color: #666;			/*文字色*/
	margin: 10px 10px 20px;	/*ボックス同士の上下間の余白*/
	padding: 10px;			/*ボックス内の余白。ここを変更する場合は、下の「#main .list a」の「margin」と「padding」の数字も変更。*/
	border: 1px solid #dadada;
}
.list4 a {
	overflow: hidden;display: block;text-decoration: none;
	margin: -20px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。※マイナスを必ずつけて下さい。*/
	padding: 20px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。*/
	color: #666;	/*文字色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
.list4 a::before {
	position: absolute;text-align: center;
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	right: 20px;		/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;		/*ボックスの下から20pxの場所に配置*/
	background: #ccc;	/*背景色*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
}
/*マウスオン時の「→」マークの背景色*/
.list4 a:hover::before {
	background: #273361;
}
/*ボックス内の画像設定*/
.list4 figure {
	width: 26%;			/*画像の幅*/
	float: left;		/*左に回り込み*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
	padding: 10px 20px;
}
/*ボックス内のh4（見出し）タグ設定*/
.list4 h4 {
	clear: both;
	padding: 0;
	border-bottom: none;
	font-size: 18px;	/*文字サイズ*/
	font-weight: bold;
	color: #666;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}
/*ボックス内のh4（見出し）タグの１文字目への設定。左のアクセントラインです。*/
.list4 h4::first-letter {
	border-left: 3px solid #273361;	/*左の線の幅、線種、色*/
	padding-left: 10px;	/*枠線と文字との間の余白*/
}
/*ボックス内のp（段落）タグ設定*/
.list4 p {
	padding: 10px 0;
}

/*company.html 地図　非表示部分　ラベル*/
.list4 .switchbox label {
	display: inline-block;
  background: linear-gradient(#78BBE6, #31b0d5); /*グラデーション*/
	padding: 0 12px;
	margin-bottom: 5px;
  border-radius: 2px; /*角丸のサイズ*/	
	cursor : pointer;
	color: #fff;
}
.list4 .switchbox label:hover {
	opacity: .5;
}
/*チェックボックスを非表示にする*/
.list4 .switchbox input {
	display: none;
}
/*中身を非表示にしておく*/
.list4 .switchbox div {
	height: 0;
	overflow-y: hidden;
	transition: 0.8s;/*ゆっくり表示させる*/
	opacity: 0;
}
/*クリックで中身を表示*/
.list4 .switchbox input:checked + label + div {
	height: auto;
	opacity: 1;
}
/*アイコン*/
.list4 .switchbox label::before {
	content: '\f067';
	font-family: 'Font Awesome 5 Free';
	color: #273361;
	font-weight: 900;
	padding-right: 8px;
}
/*クリックでアイコン入れ替え*/
.list4 .switchbox input:checked + label::before {
	content: '\f068';
}
/*ここまで*/	



/**/
/*ボックス内のh4タグ設定*/
#main .policy h4 {
    margin-bottom: 0.5em;
    color: #273361;		/*文字色*/
    border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
}

/*ボックス内のh4タグの１文字目への設定*/
#main .policy h4::first-letter {
    border-left: 3px solid #273361;	/*左側の線の幅、線種、色*/
    padding-left: 10px;	/*線と文字との余白*/
}

/*詳細ページの画像切り替え（imgchg_pack.js）※一般のhtmlテンプレートで利用。
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#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: 80px;	/*画像の幅*/
    height: 80px;	/*画像の高さ*/
    border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
    margin-bottom: 15px;
}
.thumbnail:hover {
    border: 1px solid #999;	/*マウスオン時の枠線の幅、線種、色*/
}
/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
    float: left;	/*左に回り込み*/
    width: 22%;		/*幅*/
    padding: 10px 0 0 2%;	/*上、右、下、左へのボックス内の余白*/
    margin-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
    text-align: center;		/*内容をセンタリング*/
		padding: 10px;
    background: linear-gradient(#273361, #171e39);	/*グラデーション*/
    color: #fff;			/*文字色*/
}
/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
    margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
    border-top: solid 1px #dcdcdc;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
    text-decoration: none;
    display: block;
    padding: 10px 10px;	/*メニュー内の余白。上下、左右への設定。*/
    border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
    border-left: solid 1px #dcdcdc;		/*左の線の線種、幅、色*/
    border-right: solid 1px #dcdcdc;	/*右の線の線種、幅、色*/
}
/*マウスオン時の設定*/
#sub .submenu li a:hover, #side .submenu li a:hover {
    background: linear-gradient(#273361, #171e39); /*グラデーション*/
    color: #fff; /*マウスオン時の文字色*/
    /*box-shadow: none;*/ /*内側への影をリセットする*/
}
/*h2直下にsubmenuが続いた場合のみ、submenuの上の線を消す設定*/
#sub h2 + ul.submenu {
    border-top: none;
}
/*subコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
    overflow: hidden;
    padding: 10px;			/*ボックス内の余白*/
    margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
    border: solid 1px #dcdcdc;	/*線の線種、幅、色*/
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1) inset;	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
}
#sub .box1 p {
		margin: 10px;
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
#sub h2 + .box1 {
    border-top: none;
}
#sub .box1 h3 {
    font-weight: bold;
		padding: 10px 0 0 10px;
}
/*box1内のサブメニュー*/
#sub ul.submenu {
    margin-bottom: 0;
}
/*サブコンテンツ内の物件一覧ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#sub .list {
    position: relative;
    overflow: hidden;
    font-size: 11px;	/*文字サイズ*/
    line-height: 1.2;	/*行間を狭くする*/
}
#sub .list a {
    text-decoration: none;
    display: block;
    overflow: hidden;
    padding: 5px 0;	/*上下、左右へのボックス内の余白*/
    border-top: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
}
/*最後ボックスの設定*/
#sub .list:last-of-type a {
    border-bottom: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
    margin-bottom: 20px;	/*下に空けるスペース*/
}
/*ボックス内のh4タグ設定*/
#sub .list h4 {
    color: #273361;		/*文字色*/
}
/*ボックス内の写真設定*/
#sub .list figure img {
    float: left;	/*画像を左へ回り込み*/
    width: 20%;		/*写真の幅*/
    margin-right: 5px;	/*写真の右側に空ける余白*/
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
    clear: both;
    background: #273361;	/*背景色*/
    color: #fff;	/*文字色*/
    font-size: 85%;	/*文字サイズ*/
}
footer a {
    color: #fff;
}
footer a:hover {
    color: #fff;
}
footer .pr {
    display: block;
    font-size: 80%;
}
footer img {
    display: block;
    margin-top: 15px;
    width: 232px;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
    overflow: hidden;
    padding: 20px 0;
}
/*１行分の設定*/
#footermenu ul {
    float: left;	/*左に回り込み*/
    width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
    padding-right: 1%;
    padding-left: 1%;
    letter-spacing: 0.3em;
}
/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
    clear: both;
    text-align: center;
    background: #333;	/*背景色*/
}
#copyright a {
    text-decoration: none;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
    padding-left: 20px;
    margin-bottom: 15px;
    height: 120px;	/*高さ*/
    overflow: auto;	/*上で設定した高さを超えた場合にスクロールを出す設定。全部表示させていたいなら、この行と上の高さの行を削除する。*/
}
/*日付設定*/
#new dt {
    float: left;
    width: 9em;
    color: #273361;
    letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
    padding-left: 9em;
    border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}

a.btn2 {
    display: inline-block;
    text-decoration: none;
    background: #273361; /*背景色（古いブラウザ用）*/
    background: linear-gradient(#273361, #171e39); /*グラデーション*/
    color: #fff; /*文字色*/
    text-align: center; /*文字をセンタリング*/
    padding: 2px 10px; /*上下、左右へのボタン内の余白*/
    border-radius: 2px; /*角丸のサイズ*/
    font-size: 12px; /*文字サイズ*/
}
/*マウスオン時*/
a.btn2:hover {
    opacity: 0.6; /*色が70%ついた状態*/
}
a.btn3 {
    display: inline-block;
    text-decoration: none;
    background: #31b0d5; /*背景色（古いブラウザ用）*/
    background: linear-gradient(#78BBE6, #31b0d5); /*グラデーション*/
    color: #fff; /*文字色*/
    text-align: center; /*文字をセンタリング*/
    padding: 2px 10px; /*上下、左右へのボタン内の余白*/
    border-radius: 2px; /*角丸のサイズ*/
    font-size: 12px; /*文字サイズ*/
}
/*マウスオン時*/
a.btn3:hover {
    opacity: 0.6; /*色が70%ついた状態*/
}

.my-parts7 a {
    position: relative;
    display: block;
    width: 80%;
    font-size: 18px;
    color: #000;
    text-align: center;
    text-decoration: none;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .2);
    margin: 16px auto;
    padding: 12px 16px 10px 10px;
    border: 1px solid #ccc;
    background: #e9e9e9;
    background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
}
.my-parts7 a:hover {
    opacity: 0.4;
}
.my-parts7 a::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
    border: 1px solid #ccc; /*テーブルの枠線の幅、線種、色*/
    border-bottom: none; /*下線だけ消す*/
    text-align: left; /*文字を左寄せ*/
    background: #FAE7F2; /*背景色*/
    color: #666666; /*文字色*/
    font-weight: bold; /*太字に*/
    font-size: 16px;
    padding: 10px; /*ボックス内の余白*/
    letter-spacing: 0.2em;
}
/*ta1設定*/
table.ta1, table.ta2 {
		width: 98%;
    margin: 10px 10px 0 10px;
    border-collapse: collapse;
}
table.ta1 td, table.ta1 th, table.ta2 td, table.ta2 th {
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
}
table.ta1 th {
    width: 20%;
    font-weight: normal;
    background: linear-gradient(#fff, #eee); /*グラデーション*/
    text-align: left;
    font-weight: bold;
}
table.ta1 img {
    width: 30%;
    display: inline-block;
    margin: 5px 10px;
}
/*table.ta1 iframe {
    float: left;
    width: 66%;
		height: 200px;
    display: inline-block;
    margin: 5px auto 10px;
}*/

/*会社概要　行揃え*/
.col-1 {
    display: inline-block;
    width: 110px;
		margin-right: 10px;
    /* border: solid 1px; */
}
.col-2 {
    display: inline-block;
    width: 100px;
    /* border: solid 1px; */
}
.col-3 {
    display: inline-block;
    width: 50%;
		margin-right: 10px;
    /* border: solid 1px; */
}
.col-4 {
    display: inline-block;
    width: 40%;
    /* border: solid 1px; */
}



table.ta2 th {
    width: 30%;
    font-weight: normal;
    background: linear-gradient(#fff, #eee); /*グラデーション*/
    text-align: left;
    font-weight: bold;
}
table.ta2 td {
    line-height: 160%;
}
/*リンクテキストの文字色*/
.ta1 a, .ta2 a {
    color: #666;
}
/*ta1のtdタグ内のリストタグ*/
.ta1 td ul.disc, .ta2 td ul.disc {
    padding: 0 5px 0 20px;
}
/*ta1のtdタグ内の段落(p)タグ*/
.ta1 p, .ta2 p {
    padding: 0;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
    clear: both;
    margin-right: 2%;
}
#pagetop a {
    color: #fff;		/*文字色*/
    font-size: 20px;	/*文字サイズ*/
    background: #273361;	/*背景色*/
    text-decoration: none;
    text-align: center;
    display: block;
    float: right;
    width: 100px;	/*幅*/
}
/*マウスオン時*/
#pagetop a:hover {
    background: #171e39;	/*背景色*/
    color: #fff;		/*文字色*/
}
/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1,option2共通*/
span.option1, span.option2 {
    text-align: center;
    line-height: 1;
    display: block;
    font-size: 10px;	/*文字サイズ*/
    width: 120px;		/*幅*/
    padding: 48px 0 5px 0;	/*上、右、下、左へのボックス内の余白*/
    position: absolute;
    right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
    top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
    transform: rotate(45deg) translate(20px, -60px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
    color: #FFF;	/*文字色*/
    background: #999;	/*背景色*/
}
/*option1への追加設定*/
span.option1 {
    color: #FFF;		/*文字色*/
    background: #F00;	/*背景色*/
}
/*h2タグ内で使った場合のoption1とoption2*/
h2 span.option1, h2 span.option2 {
    text-shadow: none;
    width: auto;
    padding: 2px 5px;
    position: static;
    transform: none;
    display: inline-block;
    font-size: 15px;
    margin-left: 10px;
}
/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
    background: #F00; /*背景色*/
    color: #FFF; /*文字色*/
    font-size: 70%;
    line-height: 1.5;
    padding: 2px 5px;
    border-radius: 2px;
    margin: 0px 5px;
    vertical-align: text-top;
}
/*その他
---------------------------------------------------------------------------*/
.look {
    background: #e5e5e5;
    padding: 5px 10px;
    border-radius: 4px;
}
.mb15, .mb1em {
    margin-bottom: 15px;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.clear {
    clear: both;
}
ul.disc {
    padding: 0em 25px 15px;
    list-style: disc;
}
.color1, .color1 a {
    color: #273361;
    font-size: 16px;
}
.color2, .color2 a {
    color: red;
    font-size: 16px;
}
.pr {
    font-size: 10px;
}
.wl {
    width: 96%;
}
.ws {
    width: 50%;
}
.c {
    text-align: center;
}
.parent {
  text-align: center;
}
.example {
  display: inline-block;
  width: 100px;
}

.r {
    text-align: right;
}
.l {
    text-align: left;
}
.fr1 {
  float: right;
	width: 260px;
	margin: 0 0 10px 20px;
	background: #fff;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}

img.fr2 {
  float: right;
	width: 150px;
	margin-top: 10px 10px 10px 0;
	background: #fff;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
img.fr3 {
    float: right;
	width: 250px;
	margin: 10px;
	background: #fff;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
.fl {
  float: left;
	background: #fff;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
.big1 {
    font-size: 22px;
    letter-spacing: 0.2em;
}
.mini1 {
    font-size: 11px;
    display: inline-block;
    line-height: 1.5;
}
.sh {
    display: none;
}
.fr {
    float: right;
    margin-left: 1%;
    margin-bottom: 15px;
}
.fl {
    float: left;
    margin-right: 1%;
    margin-bottom: 15px;
}
.ss {
    margin-bottom: 1.5em;
}

.date {
    display: block;
    font-size: 11px;	/*文字サイズ*/
    color: #999;		/*文字色*/
    text-align: right;	/*テキストを右側に*/
}
/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px) {
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
    font-size: 15px;	/*文字サイズ*/
}
	
/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定（※compactタイプへの追加設定）*/
#main .list2.compact {
		display: block;
    width: auto;
    float: none;
    line-height: normal;
}
#main .list2.compact a {
    height: auto;
    border-top: none;	/*上の線の幅、線種、色*/
    padding: 1% 0;	/*上下、左右へのボックス内の余白*/
}
#main .list2.compact h4 {
		font-size: 16px;
	}
/*最後のボックスの設定*/
#main .list2.compact:last-of-type a {
    border-bottom: none;	/*下の線の幅、線種、色*/
}
/*ボックス内の写真設定（※compactタイプへの追加設定）*/
#main .list2.compact figure {
    float: none;	/*右へ回り込み*/
    width: 55%;		/*画像幅*/
    margin: 0 auto;

}	

}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px) {
/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体を非表示にする*/
#contact {
    display: none;
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
    border-right: 1px solid #fff;	/*右側の線の幅、線種、色*/
    background: linear-gradient(#273361, #171e39);	/*グラデーション*/
    font-size: 18px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
    float: left;	/*左に回り込み*/
    width: 50%;		/*メニュー幅*/
}
#menubar-s li a {
    display: block;
    text-decoration: none;
    text-align: center;	/*文字をセンタリング*/
    line-height: 1.5;	/*行間を少し狭く*/
    padding: 7px 0;	/*上下、左右へのメニュー内の余白*/
    border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
    border-left: 1px solid #fff;	/*左側の線の幅、線種、色*/
    color: #fff;	/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {
    display: none;
}
/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
    display: block;
    position: absolute;
    top: 32px;		/*上から32pxの場所に配置*/
    right: 3%;		/*右から3%の場所に配置*/
    width: 30px;	/*幅*/
    border: 1px solid #000;	/*枠線の幅、線種、色*/
    padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
    background: #fff;		/*背景色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
    display: block;
    border-top: 3px solid #000;	/*枠線の幅、線種、色*/
    margin-bottom: 7px;			/*バー同士の余白*/
}
/*コンテンツ（左右ブロックとフッターを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
    border-top: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
    border-radius: 0px 0px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
}
/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
    float: none;
    width: auto;
    padding: 2% 2% 0;	/*上、左右、下へのボックス内の余白*/
}
/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
    width: 50%;		/*半分の幅にする*/
    float: left;	/*左に回り込み*/
}
/*偶数番目のメニューの左のラインを消す設定*/
#sub ul.submenu li:nth-child(even) a {
    border-left: none;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*アイコン*/
section#new h2::before {
		float: right;	/*右に回り込み*/
		margin-top: -3px;
		font-size: 18px;	/*文字サイズ*/
		background: #fff;	/*背景色*/
		border-radius: 50%;	/*角丸のサイズ*/
		width: 30px;		/*幅*/
		line-height: 30px;	/*高さ*/
		text-align: center;	/*文字をセンタリング*/
		border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
		box-shadow: 1px 1px 6px rgba(0,0,0,0.1) inset;	/*内側への影*/
}
/*プラスアイコンの文字*/
section#new h2.close::before {
		content: "＋";
}
/*マイナスアイコンの文字*/
section#new h2.open::before {
		content: "−";
}
/*その他
---------------------------------------------------------------------------*/
body.s-n #sub, body.s-n #footermenu, .m-n {
    display: none;
}
	
.fl-half {
    float: left;
    width: 45%;
    margin-left: 3%;
}
.sh {
    display: block;
}
.pc {
    display: none;
}
}

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

/*[PROPOSALS]ページの一覧用ブロックページの各ブロック
---------------------------------------------------------------------------*/
/*ボックス内のh4タグ設定*/
#main section.list h4 {
    width: 100%;
    font-size: 17px;	/*文字サイズ*/
    margin-left: 1px;	/*左の写真とのバランスをとって設定*/
}
#main .list p {
    padding: 0px;
    margin-left: 0;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: none;	/*画像を左へ回り込み*/
	box-sizing: border-box;
	width: 200px;		/*写真の幅*/
	margin-top: 15px;
	margin-right: 1%;	/*写真の右側に空ける余白*/
}	
/*リスト表示*/
#main .list ul {
    margin-left: 0%;	/*左側の写真幅とのバランスをとって設定*/
    border: solid 2px skyblue;
    border-radius: 5px;
    padding: 0.5em 1em 0.5em 2.3em;
    position: relative;
}
	
/*img.fr, img.fl {
    float: none;
	margin-top: 5px;
    margin-bottom: 10px;
    width: 50%;
}	*/
	
    /*テーブル共通
---------------------------------------------------------------------------*/
    #formWrap {
        width: 90%;
        margin: 0 auto;
    }
    table.ta1 th, table.ta1 td {
        width: auto;
        display: block;
    }
    table.ta1 th {
        margin-top: 5px;
        border-bottom: 0;
    }
	table.ta1 img {
    float: none;
    width: 70%;
    display: block;
    margin: 5px auto 10px;
}
table.ta1 iframe {
    float: none;
    width: 100%;
		height: 200px;
    display: block;
    margin: 5px auto 10px;
}

    /*テーブル(ta1)
---------------------------------------------------------------------------*/
    /*余白の上書き*/
    .ta1 caption, .ta1 th, .ta1 td {
        padding: 5px;
    }
    /*テーブル内の左側*/
    .ta1 th {
        width: 100px;
    }
    /*labelタグを1列にする（CMS用）*/
    .ta1.cms td label {
        float: none;
        width: 100%;
    }	
.col-3 {
	display: block;
        width: 100%;	
	}
.col-4 {
	display: block;	
  width: 100%;	
	margin-bottom: 12px;
}	
	
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {
/*全体の設定
---------------------------------------------------------------------------*/
body {
    font-size: 14px;	/*文字サイズ*/
    line-height: 1.5;	/*行間*/
}
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    height: 90px;	/*高さ*/
    border-top: 4px solid #273361;	/*上の線の幅、線種、色*/
}
/*ロゴ画像*/
header #logo {
    width: 250px;		/*ロゴ画像の幅*/
    margin-top: 25px;	/*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
    float: none;	/*左に回り込み*/
    width: auto;	/*メニュー幅*/
}
/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
    top: 22px;		/*上から22pxの場所に配置*/
}
/*メインコンテンツのh2とh3タグ
---------------------------------------------------------------------------*/
#main h2, #main h3 {
    font-size: 14px;
    padding: 10px;
}
/*メインコンテンツの段落タグ設定*/
#main p {
    padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

/*[PROPOSALS]ページの一覧用ブロックページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
    padding: 3%;	/*ボックス内の余白*/
}
/*リスト表示*/
#main .list ul {
    margin-left: 0%;	/*左側の写真幅とのバランスをとって設定*/
    border: solid 2px skyblue;
    border-radius: 5px;
    padding: 0.5em 1em 0.5em 2.3em;
    position: relative;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: none;	/*画像を左へ回り込み*/
	box-sizing: border-box;
	width: 200px;		/*写真の幅*/
	margin-top: 15px;
	margin-right: 1%;	/*写真の右側に空ける余白*/
}		
	
/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
    font-size: 9px;	/*文字サイズ*/
}
/*「COMPANY」ページの一覧用ブロックページの各ブロック
---------------------------------------------------------------------------*/
/*ボックス内のh4タグ設定*/
#main section.list h4 {
    width: 100%;
    font-size: 17px;	/*文字サイズ*/
    margin-left: 1px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の段落タグ設定*/
#main section.list p,
#main section.list2 p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img,
#main section.list2 figure img {
	float: none;
	width: 100% !important;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
#main section.list h4,
#main section.list2 h4 {
	margin-left: 0;
}
/*コンパクトタイプのボックス追加設定*/
#main section.list.compact {
    width: 100%;
    float: none;
    height: auto;
    margin-left: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 10%;
}

/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list3.compact {
	width: 100%;	/*compactタイプの幅*/
	float: none;
	margin-left: 0;
}
#main section.list3.compact a {
	height: auto;	/*compactタイプの高さ*/
}
/*ボックス内の段落タグ設定*/
#main section.list3 p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list3 figure img {
	float: none;
	width: 60% !important;
	margin-bottom: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
#main section.list3 h4 {
	margin-left: 0;
}

/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list3 table {
	margin-left: 0;
	width: 100%;
}	
	
/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main section.list4 {
	display: block;
	padding: 10px;	/*ボックス内の余白。ここを変更する場合は、下の「#main .list a」の「margin」と「padding」の数字も変更。*/
}
#main section.list4 a {
	margin: -10px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。※マイナスを必ずつけて下さい。*/
	padding: 10px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。*/
}
/*ボックス内のh4（見出し）タグ設定*/
#main section.list4 h4 {
	font-size: 16px;
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main section.list4 a::before {
	right: 10px;		/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;		/*ボックスの下から10pxの場所に配置*/
	width: 20px;		/*幅*/
	line-height: 20px;	/*高さ*/
}
#main section.list4 p{
		margin-left: 10px;
	}	
.list4 figure {
	width: 80%;
	text-align: center;
	margin-right: 0px;	/*画像の右側に空けるスペース*/
	padding: 10px 30px;
}	
/*company.html 地図　非表示部分　ラベル*/
.list4 .switchbox label {
	display: inline-block;
	background: #ccc;
	margin-left: 20px;
}	
	
/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
    width: auto;
    float: none;
}
/*偶数番目のメニューの左のラインを戻す設定*/
#sub ul.submenu li:nth-child(even) a {
    border-left: 1px solid #dcdcdc;
}
/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
#sub ul.submenu li a {
    padding: 10px;	/*メニュー内の余白*/
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
    display: none;
}

	
    /*テーブル(ta1)
---------------------------------------------------------------------------*/
    /*余白の上書き*/
    .ta1 caption, .ta1 th, .ta1 td {
        padding: 5px;
    }
    /*テーブル内の左側*/
    .ta1 th {
        width: 100px;
    }
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*アイコン*/
section#new h2::before {
    width: 24px;		/*幅*/
    line-height: 24px;	/*高さ*/
}
/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*h2タグ内で使った場合のoption1とoption2*/
h2 span.option1, h2 span.option2 {
    padding: 2px 5px;
    font-size: 12px;
    margin-left: 5px;
}
/*その他
---------------------------------------------------------------------------*/
.ws, .wl {
    width: 94%;
}
img.fr,img.fr1, img.fr2, img.fl2, img.fl3 {
    float: none;
		margin-top: 5px;
    margin-bottom: 10px;
    width: 80%;
}
	
.fl{
    float: none;
	}
	
	
img.fr3 {
    float: none;
	margin-top: 5px;
    margin-bottom: 10px;
    width: 50%;
}	
.fl-half {
    float: none;
    width: 100%;
    margin-left: 0;
}
}
