@charset "utf-8";


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



/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666666;	/*全体の文字色*/
	background: #fff;	/*背景色*/
	font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
}
/*トップページの設定
body#top {
	background: #fff url(../images/mainimg_s.jpg) no-repeat center 60px;	背景色と背景画像の読み込み（古いブラウザ用）
	background: #fff url(../images/mainimg_l.jpg) no-repeat center 60px/auto 700px;	背景色と背景画像の読み込み。60pxというのはheaderの高さの事。autoは画像の幅、高さは700pxで指定。
}
*/
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: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #1e2f5a;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #ffffff;	/*背景色*/
	color: #383635;			/*文字色*/
	height: 120px;			/*高さ*/
	border-bottom: solid 3px #00a0e9;
}
/*サイト幅にしたheader内のブロック*/
header .inner {
	width: 1000px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
}

.header_access {
	width: 10%;	/*幅*/
	padding-top: 58px;
	line-height: 20px;
	float: left;
}

.header_access a {
	color: #ffffff;
	text-decoration: none;
}

.header_access span {
	padding-left: 5px;
	border-left-style: dotted;
	border-left-width: 1px;
	border-left-color: #ffffff;
	color: #ff3300;
	line-height: 20px;
}

.header_tel {
	width: 30%;	/*幅*/
	padding-top: 28px;
	line-height: 20px;
	float: left;

}

.header_tel span {
	font-size: 28px;	/*文字の大きさ*/
	line-height: 30px;
	font-weight: bold;

}

/*ロゴ画像*/
#logo {
	width: 60%;	/*幅*/
	float: left;
}

#logo img {
	width: 420px;	/*画像幅*/
	margin-top: 10px;	/*header内でのバランスを取るために上にスペースをあける*/
	margin-left: 10px;	/*左側にスペースをあける*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
	width: 100%;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。rgbaは色設定で255,255,255は白。0.9は透明度90%の事。*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.15);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.15は透明度15%の事。*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.15);			/*同上*/
}
/*サイト幅にしたmenu-box内のブロック*/
#menubar {
	width: 1000px;	/*幅*/
	overflow: hidden;
	margin: 0 auto;
	border-left: 1px solid #ccc;	/*左の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 248px;		/*メニュー幅*/
	text-align: center;	/*内容をセンタリング*/
	border-right: 1px solid #ccc;	/*右の線の幅、線種、色*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定。不要ならこの行削除。*/
}
#menubar a {
	display: block;
	width: auto;
	padding-top: 10px;
	line-height: 18px;
	text-decoration: none;
}
#menubar a span {
	font-size: 10px;
	color: #777e41;
}
/*マウスオン時*/
#menubar li:hover {
	background: #fff;	/*背景色*/
}
/*メニュー用アイコン設定（menu1〜memu4までの共通設定）*/
.menuimg a {
	width: 50px;	/*幅*/
	height: 40px;	/*高さ*/
	display: inline-block;
	background-image: url(../images/icon_menu.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;
	background-size: 50px 300px;	/*背景画像のサイズ。※実寸は100pxと400pxだが、高解像度の端末用に50%のサイズで指定している。*/
}
.menu1 a {
	background-position: 0 0px;		/*背景画像の左から0px、上から0pxの部分を読み込む指定*/
}
.menu2 a {
	background-position: 0 -50px;	/*背景画像の左から0px、上から-50px（※マイナス記号をつける）の部分を読み込む指定*/
}
.menu3 a {
	background-position: 0 -100px;	/*背景画像の左から0px、上から-100px（※マイナス記号をつける）の部分を読み込む指定*/
}
.menu4 a {
	background-position: 0 -150px;	/*背景画像の左から0px、上から-150px（※マイナス記号をつける）の部分を読み込む指定*/
}

.menu5 a {
	background-position: 0 -200px;	/*背景画像の左から0px、上から-200px（※マイナス記号をつける）の部分を読み込む指定*/
}

.menu6 a {
	background-position: 0 -250px;	/*背景画像の左から0px、上から-250px（※マイナス記号をつける）の部分を読み込む指定*/
}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*ドロップダウンブロックの設定*/
#menubar ul.ddmenu {
	position:absolute;
	visibility: hidden;
	z-index: 101;
	padding-top: 1px;
	-webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.1);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.1が透明度。*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.1);			/*同上*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。rgbaは色設定で255,255,255は白。0.9は透明度90%の事。*/
	border: none;
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}

#menubar ul.ddmenu li a {
	background: none;
}
/*マウスオン時の設定*/
#menubar ul.ddmenu li a:hover {
	background: #fff;	/*背景色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（main、subを囲むボックス。１カラム時でも使用。）
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	overflow: hidden;
	padding: 40px 0px;	/*上下、左右へのボックス内の余白。*/
}
/*サイト幅にしたcontents内のブロック*/
.contents .inner {
	width: 1000px;	/*幅*/
	margin: 0 auto;
}
/*背景色つきタイプ*/
.contents.bg1 {
	background: #f3f3f3;	/*背景色*/
	border-top: 1px solid #e4e4e4;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #e4e4e4;	/*下の線の幅、線種、色*/
}
/*コンテンツのh2タグの設定*/
.contents h2 {
	clear: both;
	margin-bottom: 15px;
	color: #FFF;		/*文字色*/
	padding: 5px 15px;	/*上下、左右への余白*/
	background-image:url(../images/h2_bg.jpg);
	background-position: right;
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);			/*同上*/
	text-align: left;
}
/*コンテンツのh3タグの設定*/
.contents h3 {
	clear: both;
	margin-bottom: 15px;
	padding: 4px 15px;	/*上下、左右への余白*/
	background: #fff;	/*背景色*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.1が透明度。*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);	/*同上*/
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 15px 14px;	/*上、左右、下への余白*/
}
.contents h2 + p,
.contents h3 + p {
	margin-top: -5px;
}

/*コンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	overflow: auto;
	background: #fff;	/*背景色*/
	margin-left: 2%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 500px;			/*(CMS専用)*/
	height: 230px;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	letter-spacing:2px;
	position: relative;
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);			/*同上*/
}
.list a {
	display: block;
	overflow: auto;
	text-decoration: none;
	height: 500px;	/*(CMS専用)*/
	height: 230px;	/*高さ（上の「.list」の高さと揃える）*/
}
.list a:hover {
	background: #ccc;	/*マウスオン時の背景色*/
	color: #fff;		/*マウスオン時の文字色*/
}
/*ボックス内の画像設定*/
.list .img {
	width: 100%;	/*画像の幅*/
	height: 140px;	/*画像の高さ（CMS専用）高さを固定させたくないならこの１行だけ削除する。*/
	height: auto;	/*画像の高さ*/
	padding-bottom: 10px;	/*画像下に空ける余白*/
}
/*ボックス内のh4（見出し）タグ設定*/
.list h4 {
	padding-left: 15px;
	padding-bottom: 5px;
	font-size: 16px;	/*文字サイズ*/
}
.list h5 {
	font-size: 16px;	/*文字サイズ*/
	text-align: center;
}
/*ボックス内のp（段落）タグ設定*/
.list p {
	font-size: 12px;	/*文字サイズを少し小さく*/
}

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

/*コンテンツ内のボックス（list_member）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list_member {
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	overflow: auto;
	background: #fff;	/*背景色*/
	margin-left: 2%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 500px;			/*(CMS専用)*/
	height: 350px;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	letter-spacing:2px;
	position: relative;
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);			/*同上*/
}
.list_member a {
	display: block;
	overflow: auto;
	text-decoration: none;
	height: 500px;	/*(CMS専用)*/
	height: 350px;	/*高さ（上の「.list」の高さと揃える）*/
}
.list_member a:hover {
	background: #ccc;	/*マウスオン時の背景色*/
	color: #fff;		/*マウスオン時の文字色*/
}
/*ボックス内の画像設定*/
.list_member .img {
	width: 100%;	/*画像の幅*/
	height: auto;	/*画像の高さ*/
	padding-bottom: 10px;	/*画像下に空ける余白*/
}
/*ボックス内のh4（見出し）タグ設定*/
.list_member h4 {
	padding-left: 15px;
	padding-bottom: 5px;
	font-size: 16px;	/*文字サイズ*/
	font-weight: normal;
}
.list_member h5 {
	font-size: 16px;	/*文字サイズ*/
	font-weight: normal;
	text-align: center;
}
.list_member h5 span {
	margin-right: 14px;
	font-size: 10px;	/*文字サイズ*/
}
.list_member h6 {
	margin: 15px 0px 0px 0px;
	font-size: 12px;	/*文字サイズ*/
	font-weight: bold;
	text-align: center;
}
.list_member h6 span {
	color: #ffffff;
	background-color: #ffbb33;
	padding: 3px 10px;
}
/*ボックス内のp（段落）タグ設定*/
.list_member p {
	font-size: 12px;	/*文字サイズを少し小さく*/
}

/*コンテンツ内のボックス（list2）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list2 {
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	overflow: hidden;
	background: #fff;	/*背景色*/
	margin-left: 2%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 300px;			/*(CMS専用)*/
	height: 230px;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	letter-spacing:2px;
	position: relative;
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);			/*同上*/
}
/*ボックス内の画像設定*/
.list2 .img {
	width: 100%;	/*画像の幅*/
	height: 140px;	/*画像の高さ（CMS専用）高さを固定させたくないならこの１行だけ削除する。*/
	height: auto;	/*画像の高さ*/
	padding-bottom: 10px;	/*画像下に空ける余白*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
.main {
	float: right;	/*右側に回り込み*/
	overflow: hidden;
	width: 740px;	/*幅*/
	padding-bottom: 30px;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
.sub {
	float: left;	/*左に回り込み*/
	width: 220px;	/*幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	margin-bottom: 10px;
	background: transparent;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #333;	/*文字色*/
}
/*subコンテンツのh2タグの１文字目への設定*/
.sub h2::first-letter {
	border-left: 3px solid #1e2f5a;	/*左側のアクセント用ラインの幅、線種、色*/
	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: #f1ebc5;	/*背景色（古いブラウザ用）*/
	background: rgba(119,126,65,0.20);	/*背景色。rgbaは色設定で0,0,0は黒。0.05が透明度。*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	-webkit-box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
	box-shadow: 0px 0px 1px 1px #fff inset;
}

.sub h2 {
	letter-spacing:2px;
}

/*box1内のメニューの設定*/
.sub .box1 ul.submenu {
	margin-bottom: 0px;
}

.box1 p {
	text-align: center;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
.pagetop {
	clear: both;
	width: 1000px;
	margin: 0 auto;
}
.pagetop a {
	margin-top: 30px;
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;	/*上下、左右へのボックス内余白*/
	background: #333;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
.pagetop a:hover {
	background-color: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #00a0e9;	/*背景色*/
	color: #fff;			/*文字色*/
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューボックス全体*/
#footermenu {
	width: 1000px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 20px 0px;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 23%;		/*幅。今回は５列作ったのでここの幅18%と下のpaddingの2%でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-left: 2%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}

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

/*総括ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#minutes dl{
	padding-left: 15px;
	margin-bottom: 15px;
	min-height: 600px;	/*高さ*/
}
/*日付設定*/
#minutes dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#minutes dd {
	padding-left: 8em;
	border-bottom: dotted 1px #999999;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.contents .list .ta1 {
	margin-bottom: 0;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #cccccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f1ebc5;	/*背景色（古いブラウザ用）*/
	background: rgba(119,126,65,0.20);
	color: #fff;	/*文字色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f1ebc5;	/*背景色（古いブラウザ用）*/
	background: rgba(119,126,65,0.20);
}
/*ta1の右側ボックス*/
.ta1 td {
	background: #fff;	/*背景色*/
}
/*画像*/
.ta1 img {
	vertical-align: bottom;
}

/*フォーム用ボタン
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	border: 1px solid #333333;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	background: #333333;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*マウスオン時*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
}


/*よく頂く質問・リンク共通設定
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq,
.link {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt,
.link dt {
	color: #1e2f5a;	/*文字色*/
	font-weight: bold;	/*太字*/
}
.faq dt a,
.link dt a {
	color: #1e2f5a;
}
/*回答の設定*/
.faq dd,
.link dd {
	padding-bottom: 15px;
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	-ms-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	-ms-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	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 {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mt-top {margin-top: 650px;}
.mt-top2 {margin-top: 250px;background: rgba(255,255,255,0.7);}
.clear {clear: both;}
.border1 {border-left:solid 1px #cccccc;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #777e41;}
.color2 {color: #1C00EF;}
.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: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh{display:none;}
.dn{display:none;}

/*追加分
---------------------------------------------------------------------------*/
.no_pc {
  display: none;
}

#about a {
	color: #4488FF;
}

.attend {
	width: 96%;
	margin: 0px auto;
}

.attend table {
	width: 100%;
	border-style: solid;
	border-width: 1px;
	border-color: #666666;
	line-height: 40px;
	text-align: center;
}

.attend td {
	width: 20%;
	border-style: solid;
	border-width: 0px 1px 1px 0px;
	border-color: #666666;
	text-align: center;
}

  .attend td.w40 {
	  width: 40%;
  }

.attend th {
	width: 20%;
	border-style: solid;
	border-width: 0px 1px 1px 0px;
	border-color: #666666;
	text-align: center;
}

  .attend th.w40 {
	  width: 40%;
  }

.attend span {
	color: #b6f0f0;
}

.attend .here {
	background: #b6f0f0;
}

.dl_btn {
	margin-bottom: 100px;
	color:#ffffff;
	text-align: center;
}


.dl_btn a {
	display: block;
	width: 300px;
	margin: 0 auto;
	color:#ffffff;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	background-color: #f1b42f;
	border-radius: 10px;
}

.dl_txt {
	margin-top: -70px;
	margin-bottom: 100px;
	text-align: center;
}

.info {
	width:70%;
	padding: 50px 0px;
	margin: 50px auto 55px auto;
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	background-color: #ffbb44;
}

.info span {
	font-size: 36px;
	font-weight: bold;
}

#movie {
	clear: left;
	padding: 0px 15px 30px 15px;
}

.movie01 {
	width: 480px;
	height: 260px;
	margin-right: 10px;
	float: left;
}

	.movie01 iframe {
		width: 480px;
		height: 260px;
	}

.movie02 {
	width: 480px;
	float: left;
}

	.movie02 iframe {
		width: 480px;
		height: 260px;
	}

.movie_deco {
	color:#ffffff;
	text-align: center;
	text-decoration: none!important;
}

.movieicon {
	width: 30px;
	padding: 0 10px;
	color:#ffffff;
	text-align: center;
	text-decoration: none!important;
	background-color: #f1b42f;
}

.info {
	width:70%;
	padding: 50px 0px;
	margin: 50px auto 55px auto;
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	background-color: #ffbb44;
}


.next_day {
	display: table-cell;
	vertical-align: middle;
	width: 458px;
	padding: 10px 15px;
	border: solid 1px #cccccc;
}

.next_day p {
	padding: 0px 30px;
	margin: 0px;
}

.next_day p.day {
	font-size: 20px;
	font-weight:bold;
	text-align: center;
}

.next_day p.time {
	padding-left: 60px; 
}

#profile {
	clear: left;
	padding-top: 30px;
}

.profile_l {
	width: 50%;
	float: left;
}

.profile_r {
	width: 48%;
	margin: 6px 0px 0px 0px;
	padding-left: 2%;
	float: left;
}

.profile_r dl {
	display: table;
	width: 100%;
	margin: -1px 0px 0px 1px;
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
}

.profile_r dt {
	display: table-cell;
	width: 30%;
	height: 45px;
	margin-left: -1px;
	vertical-align:middle;
	border: solid 1px #cccccc;
}

.profile_r dd {
	display: table-cell;
	width: 64%;
	height: 45px;
	padding: 0% 3%;
	text-align: left;
	line-height: 16px;
	margin-left: -1px;
	vertical-align:middle;
	border: solid 1px #cccccc;
}

.profile_r dd a:link {
	color: #4488FF;
}

.profile_txt {
	margin-bottom: 100px;
}

.service {
	width: 70%;
	margin: 0px auto 50px auto;
}
.sign {
	text-align: right;
}

.sign img {
	  width: 160px;
}

.sitemap {
	border: solid 5px #eeeeee;
	padding: 50px;
}

.sitemap a {
	text-decoration: none;
}

.sitemap ul {
	padding-left: 20px;
	line-height: 50px;
}

.tel {
	margin-bottom: 20px;
	text-align: center;
}

.tel img {
	width: 90%;
}

.w720 {
	width: 100%;
	max-width: 720px;
	margin: 0px auto;
}

#worksheet {
	display: table;
	width: 100%;
	padding: 0px;
}

#worksheet li {
	list-style: none;
	display: table-cell;
	width: 20px;
	padding: 0px;
	margin: 0px;
}

.worksheet {
	display: table-cell;
	vertical-align: middle;
	width: 458px;
	padding:0px;
	margin: 0px;
	border: solid 1px #cccccc;
}
.worksheet a {
	color: #5588ee;
	font-weight: bold;
}

.worksheet p {
	padding: 0px 30px;
	margin: 0px;
	line-height: 38px;
	font-size: 16px;
}


/*フォームタグ用　2025年1月29日　追加
------------------------------------------------------------------------------------------------------------------------------------------------------*/
#res_password {
	text-align: center;
}

#res_password .res_password {
	margin-bottom: 60px;
	line-height: 40px;
}



/*VIDEO用　2025年2月8日　追加
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.movie_btn {
	text-align: center;
}

.movie_txt {
	margin: 50px 0;
	text-align: center;
}

.movie_area {
	width: 100%;
	margin-bottom: 80px;
	text-align: center;
}

.movie_area video {
	width: 100%;
	max-width: 720px;
	background-color: #000000;
}





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

/*全体の設定
---------------------------------------------------------------------------*/
/*トップページの設定
body#top {
	background: #fff url(../images/mainimg_l.jpg) no-repeat center 170px/auto 450px;
}
*/
/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*サイト幅にしたheader内のブロック*/
header .inner {
	width: auto;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
	border: none;
}
#menubar {
	width: auto;
	border: none;
}
/*メニュー１個あたりの設定*/
#menubar li {
	width: 25%;
	border: none;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#menubar li:nth-child(odd) {
	border-right: 1px solid #ccc;
}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*ドロップダウンブロックの設定*/
#menubar ul.ddmenu {
	display: none;	/*ドロップダウンを非表示にする*/
}
	
/*コンテンツ（main、subを囲むボックス。１カラム時でも使用。）
---------------------------------------------------------------------------*/
.contents {
	padding: 20px 0px;	/*上下、左右へのボックス内の余白。*/
}
/*サイト幅にしたcontents内のブロック*/
.contents .inner {
	width: auto;
	margin: 20px;
}

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

/*コンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: none;
	width: auto;		/*幅*/
	margin-left: 0;
	height: auto;		/*高さ*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin: 0px 3px 15px;
}
.list a {
	height: auto;		/*高さ*/
	padding: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内の画像設定*/
.list .img {
	float: left;
	width: 30%;
	margin-right: 10px;
	height: auto;	/*画像の高さ*/
	padding-bottom: 0;
}
/*ボックス内のp（段落）タグ設定*/
.list p {
	margin-left: 30%;
}

/*一覧ページの各物件ボックス内のテーブル（CMS用）
---------------------------------------------------------------------------*/
.list table {

	margin: 0px 0px 15px;
}

/*コンテンツ内のボックス（list_member）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list_member {
	height: 280px;			/*高さ（下の「.list a」の高さと揃える）*/
}
.list_member a {
	height: 280px;	/*高さ（上の「.list」の高さと揃える）*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
.pagetop {
	width: auto;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 90%;
}

/*その他
---------------------------------------------------------------------------*/
.mt-top {margin-top: 450px;}
.mt-top2 {margin-top: 150px;}
body.s-n .sub {display: none;}

p,form {
	font-size: 16px;
}

.movie01 {
	width: 344px;
	height: 186px;
	margin-right: 10px;
	float: left;
}

	.movie01 iframe {
		width: 344px;
		height: 186px;
	}

.movie02 {
	width: 344px;
	height: 186px;
	float: left;
}

	.movie02 iframe {
		width: 344px;
		height: 186px;
	}

.next_day p {
	padding: 0px 10px;
	margin: 0px;
}

.next_day p.day {
	font-size: 20px;
	font-weight:bold;
	text-align: center;
}

.next_day p.time {
	padding-left: 30px; 
}

.profile_r {
	margin-bottom: 30px;
}

.profile_r dl {
	display: table;
	width: 100%;
	margin: -1px 0px 0px 1px;
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
	border: solid 1px #cccccc;

}

.profile_r dt {
	display: block;
	width: 98%;
	height: 20px;
	margin-left: -1px;
	padding-left: 2%;
	font-size: 10px;
	text-align: left;
	vertical-align:middle;
	border: none;
}

.profile_r dd {
	display: block;
	width: 96%;
	height: auto;
	padding: 0px 0px 5px 0px;
	padding-left: 4%;
	text-align: left;
	line-height: 16px;
	margin-left: -1px;
	vertical-align:middle;
	border: none;
}
.worksheet p {
	padding: 0 0 0 15px;
	font-size: 14px;

}
}



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

/*全体の設定
---------------------------------------------------------------------------*/
/*トップページの設定
body#top {
	background-image: url(../images/mainimg_s.jpg);background-repeat: no-repeat;background-position: center 70px;background-size: 400px;	
	background: #fff url(../images/mainimg_s.jpg) no-repeat center 70px/auto 350px;
}
*/
.contents h2 {
	background-position:right;
}


/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 70px;			/*高さ*/
}

/*ロゴ画像*/
#logo {
	width: 100%;	/*幅*/
}

#logo img {
	width: 240px;	/*画像幅*/
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s {
	position: absolute;
	top: 70px;	/*headerの高さと同じサイズにする*/
	width: 100%;
	z-index: 10002;
	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.3は透明度15%の事。*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.3);			/*同上*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	border-bottom: 1px solid #ccc;	/*右の線の幅、線種、色*/
	background: rgba(255,255,255,0.9);
	line-height: 50px;	/*高さ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定。不要ならこの行削除。*/
}
#menubar-s a {
	display: block;
	width: auto;
	text-decoration: none;
	padding-left: 50px;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*コンテンツ（main、subを囲むボックス。１カラム時でも使用。）
---------------------------------------------------------------------------*/
/*コンテンツのh2タグの設定*/
.contents h2 {
	background-position: left;
}

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


/*コンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス内の画像設定*/
.list .img {
	float: none;
	width: 100%;
	margin-right: 0px;
}
/*ボックス内のp（段落）タグ設定*/
.list p {
	margin-left: 0;
}

.list2 {
	float: none;
	width: 100%;
	height: 224px;
	margin: 0px;
}


/*一覧ページの各物件ボックス内のテーブル（CMS用）
---------------------------------------------------------------------------*/
.list table {
	width: 100%;
}

/*コンテンツ内のボックス（list_member）設定
---------------------------------------------------------------------------*/
/*ボックス内の画像設定*/
.list_member {
	float: none;
	width: 100%;
	max-width: 280px;
	height: 330px;	/*高さ（上の「.list」の高さと揃える）*/
	margin-right: auto;
	margin-left: auto;
}
.list_member a {
	height: 330px;	/*高さ（上の「.list」の高さと揃える）*/
}

/*ボックス内のp（段落）タグ設定*/
.list_member p {
	margin-left: 0;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: #1c1a16 url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
section#new h2.close {
	background: #1c1a16 url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

/*総括ブロック
---------------------------------------------------------------------------*/

#minutes {
	height: auto;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh{display:block;}
.pc{display:none;}
.mt-top {margin-top: 350px;}
.mt-top2 {margin-top: 100px;}

/*追加分
---------------------------------------------------------------------------*/

p,form {
	font-size: 12px;
}

.attend td {
	height: 40px;
}

.attend th {
	height: 40px;
	font-size: 10px;
	line-height: 14px;
}

.movie01 {
	clear: left;
	width: 100%;
	height: auto;
	margin-right: 0px;
}

	.movie01 iframe {
		width: 100%;
		height: 230px;
	}

.movie02 {
	clear: left;
	width: 100%;
	height: auto;
}

	.movie02 iframe {
		width: 100%;
		height: 230px;
	}

.next_day {
	display: block;
	width: 96%;
	padding-left: 2%;
	padding-right: 2%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}

.next_day p.time {
	padding-left: 10px; 
}

.no_mobile {
  display: none;
}

.no_pc {
  display: block;
}

.profile_l {
	float: none;
	width: 100%;
}

.profile_r {
	float: none;
	width: 100%;
	margin: 6px 0px 30px 0px;
	padding: 0px;
}

.profile_txt {
	margin-bottom: 0px;
}

#worksheet {
	display: block;
}

.worksheet {
	display: block;
	width: 96%;
	padding: 15px 2%;
	margin-left: auto;
	margin-right: auto;
}

.worksheet p {
	font-size: 12px;
}

}

