@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 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: 72%;	/*メインコンテンツ幅*/
	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: 0vh;	/*見出しの下にとるスペース*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background:linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*グラデーション*/
	box-shadow: 1px 2px 5px #e2e2e2;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	padding: 4px 20px 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;
}


/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 0vh 1.5vw;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#4b4b4b, #333);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 8vw;
	min-width: 100px;
	text-align: center;
	background: #e2e2e3;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*テーブル内の注釈*/
.ta-memo {
/*	line-height: 2.2vh;*/
/*	font-size: 1.5vh;*/
	line-height: 18px;
	font-size: 12px;
}

/*テーブル内の合計*/
.ta-total {
	font-weight: bold;
	color: #005B00;
}

/*テーブル内の小文字表記*/
.ta-small1 {
/*	line-height: 2.2vh;*/
/*	font-size: 1.7vh;*/
	line-height: 18px;
	font-size: 14px;
}

.ta-small2 {
/*	font-size: 1.5vh;*/
	font-size: 12px;

}

.ta-small3 {
	font-size: 14px;
}

.ta-small4 {
/*	font-size: 1.5vh;*/
	font-size: 12px;
	color: #FF4646;

}

/*テーブル内の強調表記*/
.ta-big1 {
	font-size: 20px;
}


/*間取り図・Googleマップ
---------------------------------------------------------------------------*/
.ta-madori, .ta-map {
	width: 467px;
	height: 350px;
	text-align: center;
	vartical-align: center;
}

.ta-map2 {
	width: 467px;
	height: 450px;
	text-align: center;
	vartical-align: center;
}

.ta-kaisya {
	width: 320px;
	text-align: center;
	vartical-align: center;
}

/*室内写真表示説明（ＰＣ表示）
---------------------------------------------------------------------------*/
.ta-madori-pic {
	display: inline;
	text-align: center;
	font-size: 14px;
	color: #0080FF;
}

/*室内写真表示説明（スマホ非表示）
---------------------------------------------------------------------------*/
.ta-madori-pic-mob {display: none;}


/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	width: 23%;	/*サブコンテンツ幅*/
	margin-bottom: 30px;
	min-width: 240px;	/*サブコンテンツの最小幅*/
}
/*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 .submenu li:last-child a:hover {
	background: #0088FF;	/*背景色*/
	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%;
}



/*フッター設定
---------------------------------------------------------------------------*/
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%;}


/*ページの上部へ（↑）ボタン
---------------------------------------------------------------------------*/
@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 {
	background: #ff66ff;	/*背景色*/
	color: #ffffff;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

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

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

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

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

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

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

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



/*------------------ 一覧に戻る ------------------*/
.backtolist {
	font-size: 14px; 
	text-align: right;
}

/*その他
---------------------------------------------------------------------------*/
.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;}


/*個人情報保護方針
---------------------------------------------------------------------------*/
/*---------- 条文1行目 -------------*/
.joubun1 {
	margin-top: 20px;
	line-height: 20px;
	font-size: 16px;
}
/*---------- 条文 ------------------*/
.joubun {
	line-height: 20px;
	font-size: 16px;
}
/*---------- 条文中見出し ----------*/
.joubun_h {
	font-weight: bold;
}
/*---------- 条文中リスト ----------*/
.joubun_list {
	list-style: disc;
	line-height: 20px;
	font-size: 16px;
	padding-left: 3em;
	margin-bottom: 3px;
}
/*---------- 郵送先 ----------------*/
.joubun_yusou {
	width: 350px;
	line-height: 20px;
	font-size: 16px;
	text-align: center;
	border: solid 1px #333;
	padding: 2px 5px;
	margin: 0px auto 10px;
}
/*---------- 日付と会社名 ----------*/
.datecompany {
	font-size: 16px;
	text-align: right;
}

.mob-none {display: block;}
.pc-none {display: none;}


/*その他
---------------------------------------------------------------------------*/
.flowtd {
	text-align: center;
}

.flowimg {
	width: 90%;
}



/*画面幅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コンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	width: auto;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex-direction: column-reverse;
	justify-content: flex-start;
}

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

/*最後のメニュー（お問い合わせ）の設定*/
#sub .submenu li:last-child a:hover {
	background: #0088FF;	/*背景色*/
	color: #FFF;			/*マウスオン時の文字色*/
	box-shadow: none;	/*内側への影をリセットする*/
}

/*サブコンテンツ　営業案内
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .box {
	font-size: 1.5vh;	/*文字サイズ*/
	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%;
}


/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin: 0vh auto 1vh;
	font-size: 1.6vh;
}

.ta1 th img {
	width: 90%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	padding: 0vh 1.5vw;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#4b4b4b, #333);	/*グラデーション*/
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 20vw;		/*幅*/
	min-width: 70px;
	text-align: center;
	background: #e2e2e3;	/*背景色*/
}

/*テーブル内の注釈*/
.ta-memo {
	line-height: 2vh;
	font-size: 1.3vh;
}

/*テーブル内の合計*/
.ta-total {
	font-weight: bold;
	color: #005B00;
}

/*テーブル内の小文字表記*/
.ta-small1 {
	line-height: 2vh;
	font-size: 1.3vh;
}

.ta-small2 {
	font-size: 1.3vh;
}

.ta-small3 {
	font-size: 1.4vh;
}

/*テーブル内の強調表記*/
.ta-big1 {
	font-size: 2vh;
}

/*間取り図・Googleマップ
---------------------------------------------------------------------------*/
.ta-madori {
	width: 95%;
	height: auto;
	text-align: right;
	vartical-align: center;
}

.ta-map {
	text-align: center;
	vartical-align: center;
}

.ta-kaisya {
	margin-bottom: 1.5vh;
}

.ta-madori-pic {
	font-size: 1.4vh;
}	

/*室内写真表示説明（ＰＣ非表示）
---------------------------------------------------------------------------*/
.ta-madori-pic {display: none;}

/*室内写真表示説明（スマホ表示）
---------------------------------------------------------------------------*/
.ta-madori-pic-mob {
	display: inline;
	right: 10%;
	font-size: 1.5vh;
	color: #0080FF;
}


/*アイコン位置
---------------------------------------------------------------------------*/
.iposi1 {
	position: absolute;		/*絶対配置*/
	top: 170px;
	left: 7vw;
}
.iposi2 {
	position: absolute;		/*絶対配置*/
	top: 200px;
	left: 7vw;
}
.iposi3 {
	position: absolute;		/*絶対配置*/
	top: 230px;
	left: 7vw;
}

/*------------------ 一覧に戻る ------------------*/
.backtolist {
	font-size: 1.8vh; 
	text-align: right;
}

/*mainコンテンツのh3タグの設定*/
#main h3 {
	font-size: 2.2vh;
}

/*個人情報保護方針
---------------------------------------------------------------------------*/

/*---------- 条文1行目 -------------*/
.joubun1 {
	margin-top: 1vh;
	line-height: 2.2vh;
	font-size: 1.8vh;
}
/*---------- 条文 ------------------*/
.joubun {
	line-height: 2.2vh;
	font-size: 1.8vh;
}
/*---------- 条文中リスト ----------*/
.joubun_list {
	list-style: disc;
	line-height: 2.2vh;
	font-size: 1.8vh;
	padding-left: 3em;
	margin-bottom: 1vh;
}
/*---------- 郵送先 ----------------*/
.joubun_yusou {
	width: 70vw;
	line-height: 2.2vh;
	font-size: 1.8vh;
	text-align: center;
	border: solid 1px #333;
	padding: 0.3vh 0.5vw;
	margin: 0vh auto 1vh;
}
/*---------- 日付と会社名 ----------*/
.datecompany {
	font-size: 1.8vh;
	text-align: right;
}


/*その他
---------------------------------------------------------------------------*/
.flowtd {
	text-align: center;
}

.flow {
	width: 90%;
}


.mob-none {display: none;}
.pc-none {display: block;}


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


