@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	background: #eee url(../images/bg.png);	/*背景色、背景画像の読み込み*/
	margin: 0px;
	padding: 0px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
}
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;}
video {max-width: 100%;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333333;	/*リンクテキストの色*/
	transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
}
a:hover {
/*	color: #508f0c;		*/	/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1100px;	/*サイトの最大幅*/
	min-width: 1100px;	/*サイトの最小幅*/
	margin: 0 auto;
	padding: 30px 3% 0;	/*上、左右、下へのボックス内の余白。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 300px;	/*ブロックの高さ*/
	position: relative;
	background: #000 url(../images/header_bg2.jpg) no-repeat center center/cover;	/*背景色、背景画像の読み込み*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.5);	/*影の設定。それぞれ右へ、下へ、ぼかし幅。0,0,0は黒の事で0.5は透明度50%の事*/
	border: 1px solid #FFF;		/*線の幅、線種、色*/
	margin-bottom: 20px;	/*ヘッダーと下の左右ブロックの間のスペース*/
}

/*ロゴの設定*/
header #logo a {
	position: absolute;
	left: 60px;	/*ヘッダーブロックに対して左か60pxの位置に配置*/
	top: 70px;	/*ヘッダーブロックに対して上から70pxの位置に配置*/
	font-size: 60px;	/*文字サイズ*/
	color: #FFF;	/*文字サイズ*/
	text-decoration: none;	/*リンクの下線表示*/
}
header #logo a span {
	font-size: 40px;	/*文字サイズ*/
}

header #logo2 {
	position: absolute;
	left: 100px;	/*ヘッダーブロックに対して左から60pxの位置に配置*/
	top: 155px;	/*ヘッダーブロックに対して上から140pxの位置に配置*/
	font-size: 20px;	/*文字サイズ*/
	font-weight: bold;	/*太字*/
	color: #FFF;	/*文字色*/
}

header #logo3 {
	position: absolute;
	right: 30px;	/*ヘッダーブロックに対して右から30pxの位置に配置*/
	top: 20px;	/*ヘッダーブロックに対して下から70pxの位置に配置*/
	font-size: 18px;	/*文字サイズ*/
	color: #FFF;	/*文字色*/
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menubar ul {
	overflow: hidden;
	width: 100%;
	background: #FFF;	/*背景色*/
	position: absolute;
	left: 0px;		/*ヘッダーの左から0pxの場所に配置*/
	bottom: 0px;	/*ヘッダーの下から0pxの場所に配置*/
	border-top: 1px solid #FFF;	/*上の線の幅、線種、色*/
	font-size: 18px;	/*文字サイズ*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*メニュー幅。今回は５個あるので、100÷5=20。*/
}
nav#menubar ul li a {
	text-decoration: none;display: block;
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	background-color: #40720a;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.png), linear-gradient(#508f0c, #40720a);		/*背景画像の読み込み,グラデーション*/
	text-align: center;	/*文字をセンタリング*/
	color: #FFF;		/*文字色*/
	border-left: 1px solid #FFF;	/*左側の線の幅、線種、色*/
	padding: 10px 0;	/*上下、左右へのボックス内の余白*/
	line-height: 1.5;	/*行間。デフォルトより少し狭くする。*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child a {
	border-left: none;	/*左側の線を消す設定*/
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	color: #508f0c;
	background: #dddddd;	/*背景色*/
	background: linear-gradient(#ffffff, #dddddd);	/*グラデーション*/
			/*background: #508f0c url(../images/bg1.jpg);*/	/*背景色、背景画像の読み込み*/
}

/*最後のメニュー（お問い合わせ）の設定*/
nav#menubar ul li:last-child a {
	background-color: #0088FF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.png), linear-gradient(#2B95FF, #0088FF);		/*背景画像の読み込み,グラデーション*/
	color: #FFF;		/*文字色*/
}
nav#menubar ul li:last-child a:hover {
	color: #0080FF;
	background: #dddddd;	/*背景色*/
	background: linear-gradient(#ffffff, #dddddd);	/*グラデーション*/
}


/*英語表記の設定*/
nav#menubar ul li a span {
	display: block;
	font-size: 11px;	/*文字サイズ*/
	font-weight: normal;	/*太字を標準に戻す設定。*/
	opacity: 0.6;	/*透明度60%*/
}

/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	margin-bottom: 30px;
	width: 800px;	/*メインコンテンツ幅*/
	background: #FFF;	/*背景色*/
	padding: 17px 15px;	/*ボックス内の余白*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	color: #FFF;		/*文字色*/
	padding: 7px 15px;	/*上下、左右への余白*/
	background: #40720a;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/arrow2.png) no-repeat right center, linear-gradient(#508f0c, #40720a);		/*背景画像の読み込み,グラデーション*/
	box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
}

/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
/*	background:linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);*/	/*グラデーション*/
	background:linear-gradient(#00AA00, #ffffff 40%, #ffffff 50%, #00AA00 100%);	/*グラデーション*/
	box-shadow: 1px 2px 5px #e2e2e2;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	padding: 4px 10px 4px 10px;	/*上、右、下、左へのボックス内の余白*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #40720a;	/*左のアクセントラインの幅、線種、色*/
	padding-left: 7px;	/*ラインと文字の間の余白*/
}
/*段落タグ設定*/
#main p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;overflow: hidden;
	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
}
#main .list a {
	text-decoration: none;display: block;overflow: hidden;
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	padding: 5px 20px;	/*ボックス内の余白*/
}
#main .list a:hover {
	border: 1px solid #999;	/*マウスオン時の枠線の幅、線種、色*/
	background: linear-gradient(#ffffff, #508f0c);	/*グラデーション*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	margin-bottom: 0.5em;
	color: #333333;		/*文字色*/
	border-bottom: 0px solid #508f0c;
	padding-left: 30px;	/*線と文字との余白*/
}

/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
	margin-left: 25%;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内の段落タグ設定（※compactタイプへの追加設定）*/
#main .list.compact p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 220px;	/*写真の幅*/
	height: 165px;	/*写真の高さ*/
	margin-right: 15px;	/*写真の右側に空ける余白*/
}
/*ボックス内の写真設定（※compactタイプへの追加設定）*/
#main .list.compact figure img {
	float: none;
	margin: 0;
	margin-bottom: 5px;
	border: none;
	width: auto;
	padding: 0;
}

/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
	font-size: 14px;	/*文字サイズ*/
	width: 520px;			/*テーブル幅*/
	margin-bottom: 5px;
}

#main .list {
	border-bottom: 2px solid #508f0c;

}

#main .list table,
#main .list table td,
#main .list table th{
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
}
#main .list table td,
#main .list table th{
	padding: 2.5px 5px;	/*テーブル内の余白*/
}

/*色のついた見出しブロック*/
#main .list table th{
	width: 120px;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #edf0f5;	/*背景色*/
}
/*白い説明用ブロック*/
#main .list table td {
	padding-left: 2%;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	width: 240px;	/*サブコンテンツ幅*/
	margin-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	text-align: center;	/*文字をセンタリング*/
	padding: 3px 0px;	/*左から、上下、左右への余白*/
	background: #555;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#333, #555);	/*グラデーション*/
	color: #FFF;	/*文字色*/
}

#subnavi {
	position: sticky;
	top: 20px;
}


/*サブコンテンツ  サブメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	margin-bottom: 20px;			/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li a {
	text-decoration: none;display: block;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	text-align: center;
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#eaeaea, #FFF);	/*グラデーション*/
	box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影を右・下・ぼかし幅・距離・色を設定*/
}
/*マウスオン時の設定*/
#sub .submenu li a:hover {
	background: #508f0c;	/*背景色*/
	color: #FFF;			/*マウスオン時の文字色*/
	box-shadow: none;	/*内側への影をリセットする*/
}

/*サブコンテンツ　営業案内
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .box {
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

#sub .box .annai1 {
	font-weight: bold;
	float: left;
}

#sub .box .annai2 {
	font-weight: bold;
	font-size: 16px;
}

#sub .box .annai3 {
	margin-left: 6em;
}


/*社名・免許番号・情報更新日・次回予定日（ＰＣ表示）
-----------------------------------------------------------------------------*/
.syamei {
	width: 100%;
	margin-bottom: 15px;
}

.kousin {
	text-align: center;
	font-style: italic;
	font-size:  13px;
	font-weight: bold;
	color:#397373;
	line-height: 16px;
}

.yotei {
	font-size: 12px;
	font-weight: normal;
	color:#555555;
}

/*詳細表示方法説明文（ＰＣ表示）
-----------------------------------------------------------------------------*/
.syosai {
	display: inline;
	width: 100%;
	margin-top: 15px;
	text-align: center;
	font-weight: bold;
	color: #0080FF;
}

/*詳細表示方法説明文（スマホ非表示）
-----------------------------------------------------------------------------*/
.mob-syosai {display: none}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	margin-top: -10px;
	margin-bottom: 30px;
	text-align: center;
	color: #FFF;			/*文字色*/
	background: #555;		/*背景色*/
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}
footer .pr {display: block;font-size: 80%;}


/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1,option2共通*/
span.option1, span.option2 {
	text-align: center;
	display: block;
	font-size: 10px;	/*文字サイズ*/
	width: 120px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(36px,-15px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
	color: #FFF;	/*文字色*/
	background: #999;	/*背景色*/
}
/*option1への追加設定*/
span.option1 {
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
}
/*h2タグ内で使った場合のoption1とoption2*/
h2 span.option1, h2 span.option2 {
	width: auto;
	position: static;
	transform: none;
	display: inline-block;
	font-size: 15px;
	margin-left: 10px;
	padding: 0px 5px;
}

/*ページの上部へ（↑）ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;	/*固定表示*/
	bottom: 90px;	/*下から90pxの場所に配置*/
	right: 5%;		/*右から5%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*マウスオン時の背景色*/
}

/*NEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #ff0000;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*商談中アイコン
---------------------------------------------------------------------------*/
.syoudan {
	width: 65px;
	text-align: center;
	background: #ff66ff;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 2px;
	border-radius: 2px;
	margin: 0px 0px 0px 15px;
	vertical-align: text-center;
}

/*女性専用アイコン
---------------------------------------------------------------------------*/
.womanicon {
	width: 65px;
	text-align: center;
	background: #ff80c0;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 2px;
	border-radius: 2px;
	margin: 0px 0px 0px 15px;
	vertical-align: text-center;
}

/*ネット無料・家具家電付アイコン
---------------------------------------------------------------------------*/
.netfreeicon {
	width: 65px;
	text-align: center;
	background: #ff8000;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 2px;
	border-radius: 2px;
	margin: 0px 0px 0px 15px;
	vertical-align: text-center;
}

/*ケーブルテレビ・オール電化アイコン
---------------------------------------------------------------------------*/
.catvicon {
	width: 65px;
	text-align: center;
	background: #00c000;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 2px;
	border-radius: 2px;
	margin: 0px 0px 0px 15px;
	vertical-align: text-center;
}


/*融雪駐車場アイコン
---------------------------------------------------------------------------*/
.yuusetsu {
	width: 65px;
	text-align: center;
	background: #aaaaff;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 2px;
	border-radius: 2px;
	margin: 0px 0px 0px 15px;
	vertical-align: text-center;
}

/*仲介料無料・賃料改定アイコン（使用は改定から２週間以内だけ）
---------------------------------------------------------------------------*/
.chumuryo {
	width: 65px;
	text-align: center;
	background: #ff0080;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 2px;
	border-radius: 2px;
	margin: 0px 0px 0px 15px;
	vertical-align: text-center;
}

/*国道・幹線道路沿いアイコン
---------------------------------------------------------------------------*/
.kansen {
	width: 65px;
	text-align: center;
	background: #804040;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 2px;
	border-radius: 2px;
	margin: 0px 0px 0px 15px;
	vertical-align: text-center;
}

/*コンビニ徒歩5分圏内アイコン
---------------------------------------------------------------------------*/
.conveeni {
	width: 65px;
	text-align: center;
	background: #0080ff;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 2px;
	border-radius: 2px;
	margin: 0px 0px 0px 15px;
	vertical-align: text-center;
}

/*12帖以上LDKアイコン
---------------------------------------------------------------------------*/
.wideldk {
	width: 65px;
	text-align: center;
	background: #ffffb5;	/*背景色*/
	color: #008000;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 2px;
	border-radius: 2px;
	margin: 0px 0px 0px 15px;
	vertical-align: text-center;
}

/*ペット可能アイコン
---------------------------------------------------------------------------*/
.petok {
	width: 65px;
	text-align: center;
	background: #FF9FCF;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 2px;
	border-radius: 2px;
	margin: 0px 0px 0px 15px;
	vertical-align: text-center;
}


/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 20px;list-style: disc;}
.color1, .color1 a {color: #508f0c;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 20px;}
.mini1 {font-size: 14px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.box {background: #fff;padding: 10px;border: 1px solid #ccc;}



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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 22vh !important;	/*ブロックの高さ*/
}

#container {
	max-width: auto;	/*サイトの最大幅*/
	min-width: auto;	/*サイトの最小幅*/
}

/*ロゴの設定*/
header #logo a {
	position: absolute;
	left: 3vw;	/*ヘッダーブロックに対して左か3vwの位置に配置*/
	top: 1.2vh;	/*ヘッダーブロックに対して上から1.5vhの位置に配置*/
	font-size: 5vh;	/*文字サイズ*/
	color: #FFF;	/*文字サイズ*/
	text-decoration: none;	/*リンクの下線表示*/
}
header #logo a span {
	font-size: 3.5vh;	/*文字サイズ*/
}

header #logo2 {
	position: absolute;
	left: 4vw;	/*ヘッダーブロックに対して左から4vwの位置に配置*/
	top: 8vh;	/*ヘッダーブロックに対して上から8vhの位置に配置*/
	font-size: 2vh;	/*文字サイズ*/
	font-weight: bold;	/*太字*/
	color: #FFF;	/*文字色*/
}

header #logo3 {
	position: absolute;
	right: 2vw;	/*ヘッダーブロックに対して右から2vwの位置に配置*/
	top: 18vh;	/*ヘッダーブロックに対して上から18vhの位置に配置*/
	font-size: 2vh;	/*文字サイズ*/
	color: #FFF;	/*文字色*/
	opacity: 0%;	/*非表示にする*/
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;top: 0px;z-index: 10;
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;		/*幅*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 2.2vh;		/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 1vh 5%;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*日本語の飾り文字*/
#menubar-s a span {
	display: block;
	font-size: 1.3vh;	/*文字サイズ*/
	color: #999;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	position: absolute;z-index: 11;
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #000 url(../images/icon_menu.png) no-repeat center top/50px;
	top: 5vh;	/*上から5vhの場所に配置*/
	right: 5vw;	/*右から5vwの場所に配置*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #000 url(../images/icon_menu.png) no-repeat center bottom/50px;
	top: 1.5vh;	/*上から1.5vhの場所に配置*/
	right: 2vw;	/*右から2vwの場所に配置*/
}



/*main,subコンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex-direction: column;
	justify-content: flex-start;
}

/*main sub 共通*/
#contents h2 {
	text-align: center;	/*文字をセンタリング*/
	background: #555;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#333, #555);	/*グラデーション*/
	color: #FFF;	/*文字色*/
	font-size: 2vh;
}

#main, #sub {
	width: auto;
}


/*サブコンテンツ　サブメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub .submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

/*サブコンテンツ　営業案内
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .box {
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
	text-align: center;
}

#sub .box .annai1 {
	float: none;;
}

#sub .box .annai2 {
	padding-bottom: 1%;
}

#sub .box .annai3 {
	margin-left: 0px;
	left: 6em;
	padding-bottom: 1%;
}


/*物件一覧ページの各ブロック（メインコンテンツ）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
/*ボックス内のh4タグ設定*/
#main .list h4 {
	margin-bottom: 0.5em;
	margin-left: 0%;	/*左側の写真幅とのバランスをとって設定*/
}

/*ボックス内の写真設定*/
#main .list figure img {
	float: none;	/*画像の回り込み解除*/
	width: 95%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	max-width: none;	/*写真の最大幅解除*/
	margin: 0vh auto;
}

#main .list table {
	font-size: 1vh;	/*文字サイズ*/
	width: auto;			/*テーブル幅*/
	margin-bottom: 0.5vh;
}
#main .list table {
	font-size: 1.5vh;	/*文字サイズ*/
	width: 95%;			/*テーブル幅*/
	margin-bottom: 0.5vh;
}

#main .list table th{
	width: 20vw;		/*幅*/
	min-width: 70px;
	padding: 0.3vh 0.5vw;	/*テーブル内の余白*/
}

#main .list table td{
	padding: 0.35vh 2vw;	/*テーブル内の余白*/
}

/*最後のボックスへの設定*/
#main .list.compact:last-of-type a {
	border-bottom: 1px solid #ccc;	/*下の線の幅、選手、色*/
}


/*社名・免許番号・情報更新日・次回予定日（スマホ表示）
-----------------------------------------------------------------------------*/
.syamei {
	float: left;
	width: 53%;
	margin-bottom: 3%;
}

.kousin {
	text-align: center;
	font-style: italic;
	font-size:  1.5vh;
	font-weight: bold;
	color:#397373;
	line-height: 2.7vh;
	padding-top: 1.3vh;
}

.yotei {
	font-size: 1.4vh;
	font-weight: normal;
	color:#555555;
}

/*詳細表示方法説明文（スマホは非表示）
-----------------------------------------------------------------------------*/
.syosai {display: none;}

/*詳細表示方法説明文（スマホ表示）
-----------------------------------------------------------------------------*/
.mob-syosai {
	display: inline;
	position: absolute;		/*絶対配置*/
	top: 50px;
	right: 10%;
	font-size: 1.5vh;
	color: #0080FF;
	background: #FFFFFF;
	padding: 0px 3px 0px;
}


/*アイコン位置
---------------------------------------------------------------------------*/
.iposi1 {
	position: absolute;		/*絶対配置*/
	top: 60px;
	left: 4%;
}
.iposi2 {
	position: absolute;		/*絶対配置*/
	top: 85px;
	left: 4%;
}
.iposi3 {
	position: absolute;		/*絶対配置*/
	top: 110px;
	left: 4%;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,.m-n {display: none;}
.sh {display:block;}
.pc {display:none;}
}


}

