﻿@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/

html {
   overflow-y:scroll;
}

body {
	width:100%;
	color: #333;	/*全体の文字色*/
	margin: 0px auto;
	padding: 0px;
	font: 15px/2 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*文字サイズ、行間、フォント指定*/
	background: radial-gradient(circle 400px at 80% 800px,#b66562,#2b0206);
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #f08800;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}



/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width:101%;
	background: #000;
}
/*ヘッダーブロックの中*/
header .inner {
	width: 997px;	/*ブロック幅*/
	height: 120px;
	position: relative;
	margin: 0px auto;
	background-color:#000;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	font-size:11px;
	color:#fff;
	font-weight:lighter;
}
header .inner .logo{
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	top: 23px;	/*innerに対して上から20pxの場所に配置*/
}
/*電話番号ボックスの設定*/
header .inner address {
	position: absolute;
	top: 25px;		/*innerに対して上から20pxの位置に配置*/
	right: 20px;	/*innerに対して右から20pxの位置に配置*/
	font-size: 12px;	/*文字サイズ*/
	text-align:left;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	color:#fff;
}
/*電話番号の文字設定*/
header .inner address .jyouhou {
	font-size: 12px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	display: block;
}

header .inner address .tel {
	font-size: 27px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	display: block;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menu {
	width:102%;
	height: 80px;	/*ブロックの高さ*/
	background-color: #f4f2de;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/gm.jpg) , -webkit-gradient(linear, left top, left bottom, from(#46260d), to(#663807));	/*グラデーション*/
	-webkit-box-shadow: 1px 1px 1px #D4D4D4;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
}
nav#menu ul {
	width: 997px;
	margin: 0px auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
}
nav#menu ul li a {
	text-decoration: none;
	display: block;
	color: #fff;		/*文字色*/
	font-weight:inherit;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}



#menu li:hover {
   position:relative;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	background-color: #fff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: radial-gradient(circle 200px at 82% 150px,#2b0206,#000);
	clear: left;
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 2px 10px #bcbcbc;		/*同上*/
	z-index:10;
}
#mainimg aside {
	width: 997px;
	height: 259px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 997px;
	margin: 0px auto;
	padding-top: 30px;	/*メニューと下の左右のブロックの間に空ける余白*/

}


/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 720px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,dfc3b5+67 */
	background: rgb(255,255,255); /* Old browsers */
	background: url(../images/arrow1.png) no-repeat left center, -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(223,195,181,1) 67%); /* FF3.6-15 */
	background: url(../images/arrow1.png) no-repeat left center,-webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(223,195,181,1) 67%); /* Chrome10-25,Safari5.1-6 */
	background: url(../images/arrow1.png)  no-repeat left center,linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(223,195,181,1) 67%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dfc3b5',GradientType=1 ); /* IE6-9 */
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #d9bbac;			/*同上*/
	font-size: 17px;
	color: #502916;	/*文字色*/
	padding: 5px 15px 5px 30px;	/*左から、上、右、下、左への余白*/
	border-bottom: 2px solid #502916;	/*下の線の幅、線種、色*/
	border-radius: 2px 2px 0px 0px;		/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	margin:10px 0px;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/back.png), -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e7d7af));	/*グラデーション*/
	background: url(../images/back.png), -webkit-linear-gradient(#FFF, #e7d7af);	/*同上*/
	background: url(../images/back.png), linear-gradient(#FFF, #e7d7af);			/*同上*/
	font-size: 100%;
	color: #502916;		/*文字色*/
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border: 1px solid #e7d7af;		/*線の幅、線種、色*/
	border-radius: 5px;	/*角丸のサイズ*/
	margin:5px 0px;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 10px 15px;	/*左から、上、左右、下への余白*/
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 240px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 15px;
	text-align: center;	/*文字をセンタリング*/
	background-color: #502916;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#5e3a28), to(#502916));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#5e3a28, #502916);	/*同上*/
	background-image: linear-gradient(#5e3a28, #502916);			/*同上*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #FFF;		/*文字色*/
	border-radius: 1px 1px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	line-height:35px;
}
/*box1の中にあるh2タグの設定*/
#sub .box1 h2 {
	border-radius: 0;	/*角丸をなくす設定*/
}
/*subコンテンツ内のbox1設定*/
#sub .box1 {
	background-color: #f4f2de;		/*背景色*/
	border: 1px solid #e2d7b1;	/*枠線の幅、線種、色*/
	padding: 7px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#sub h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul {
	margin-bottom: 0;
}

#sub .info {
	background: url(../images/m_logo_.png) no-repeat top right, radial-gradient(circle 300px at 75% 80px,#ebd27b,#cdaf7d);	/*ロゴ背後の光*/
	border: 1px solid #e2d7b1;	/*枠線の幅、線種、色*/
	padding: 7px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
	color:#502916;
}

#sub .info .info_text{
	padding:5px 10px;
	border-bottom:1px solid #be9e52;
	-webkit-box-shadow: 1px 1px 5px #be9e52;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
}

#sub .info .info_text1{
	padding:10px 5px;
	border-bottom:1px solid #be9e52;
}

#sub .info .info_text2{
	padding:10px 5px;
	text-align:center;
	border-bottom:1px solid #be9e52;
	}

#rssArea{
	padding:5px 10px;
	color:#FFFFFF;
	}

#rssArea a{
	text-decoration:none;
	color:#fce10b;
	}
	
#rssArea a:hover{
	text-decoration:underline;
	color:#FFF;
	}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	border-top: 1px solid #e7dad34;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #e7dad3;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #e7dad3;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #e7dad3;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #f4f2de;	/*背景色*/
	line-height:40px;
	font-size:13px;
}
#sub ul li a:hover {
	background-color: #f8f4f2;	/*マウスオン時のボックス色*/
	color:#f61468;
	text-decoration:underline;
}

/*サブコンテンツ　物件ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub section.box2 {
	font-size: 11px;	/*文字サイズ*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);									/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);											/*同上*/
	border-bottom: 1px solid #999;	/*下の線の幅、線種、色*/
	border-right: 1px solid #999;	/*右の線の幅、線種、色*/
	border-left: 1px solid #999;	/*左の線の幅、線種、色*/
	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
}
#sub section.box2 a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
#sub section.box2 a:hover {
	background-color: #fff8c7;	/*マウスオン時のボックス色*/
}
/*h4見出しタグ*/
#sub section.box2 h4 {
	color: #f08800;		/*文字色*/
	margin-left: 70px;	/*左の画像とバランスをとって設定する*/
	font-size: 100%;
}
/*p段落タグ*/
#sub section.box2 p {
	margin-left: 70px;	/*左の画像とバランスをとって設定する*/
}
/*サムネイル画像設定*/
#sub section.box2 figure {
	float: left;	/*左に回り込みさせる設定*/
}
/*サムネイル画像のフチ*/
#sub section.box2 figure img {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
}



/*フッターメニュー設定
---------------------------------------------------------------------------*/
ul#footermenu {
	clear: both;
	margin: 0px auto;
	text-align: center;
	font-size: 14px;
	margin-bottom:15px;
}
ul#footermenu li {
	display: inline;
	padding: 0px 14px;
}

ul#footermenu li a:hover{
	color:#fed716;
	}

/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	width:101%;
	clear: both;
	text-align: center;
	padding-top: 15px;
	color: #FFF;	/*文字色*/
	background: #000;	/*ロゴ背後の光*/
	}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

footer .company{
	background-color:#000;
	font-size:11px;
	padding:5px;}

/*物件一覧ボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article, #main section.list_ article {
	margin-bottom: 25px;	/*ボックス間のスペース*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
}
#main section.list article .h4_box,#main section.list_ article .h4_box {
	padding: 10px 15px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	background: url(../images/back_2.png);	/*ロゴ背後の光*/
}

#main section.list_3 article {
	margin-bottom: 25px;	/*ボックス間のスペース*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
	width:48%;
	float:left;
	margin-left:10px;
}


#main section.list_3 article .h4_box_h {
	padding: 10px 15px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	background: url(../images/back_2.png);	/*ロゴ背後の光*/
}

#main section.list article .h4_box_1 {
	padding: 10px 15px;;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	background: url(../images/back.png);	/*ロゴ背後の光*/
}


/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	font-size:15px;
	color:#fff;
}

#main section.list_ article p {
	padding: 0px;
	margin: 5px 10px;	/*左の写真とのバランスをとって設定*/
	font-size:13px;
}

/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	padding: 5px;	/*上、右、下、左側への余白*/
	font-size: 120%;
	border-bottom: 3px solid #fed716;	/*下側の線の幅、線種、色*/
	margin: 10px 3px;
	color: #fed716;	/*文字色*/
}

#main section.list article h5 {
	padding: 7px 20px;	/*上、右、下、左側への余白*/
	font-size: 110%;
	color: #fed716;	/*文字色*/
}

#main section.list table{
	width:99%;
	margin:5px 3px;
	}
	
#main section.list table th{
	background:#faf5f3;
	text-shadow:1px 0px 0px #faf8f5, 0px 1px 0px #faf8f5;
	}
	
#main section.list table td{
	background:#faf5f3;
	text-shadow:1px 0px 0px #faf8f5, 0px 1px 0px #faf8f5;
	}
	
#main h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #e7d7af;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	margin-left:5px;
	color: #502916;	/*文字色*/
}

/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main table {
	font-size: 15px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	margin:10px 5px;
}
#main table,
#main table td,
#main table th{
	border: 1px solid;	/*枠線の幅、線種、色*/
}
#main table td,
#main table th{
	padding: 0;
	line-height: 2.0;
}
#main table th{
	width: 30%;
	text-align: center;
	font-weight: normal;
	background: #f3e6bc;
	color:#502916;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2.5;
}
#main table td {
	padding: 0px 10px;
	text-align:left;
	line-height: 2.5;
}

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

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 95px;
	height: 40px;
}
.ta1 td .specialbox img {
	vertical-align: middle;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.osusume {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*「ご契約済」表示
---------------------------------------------------------------------------*/
.sumi {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #069;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.sumi {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #fce1c6;
	padding-right:2px;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.color1 {
	color: #f61468;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.mini1 {
	font-size: 12px;
	line-height: 1.5;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}

.text{
	border:#936d11 1px solid;
	padding:10px;
	margin:10px;
	border-radius:10px;
	background: url(../images/back.png);
	margin:10px 5px;
	font-size:15px;
	}
	
.menu{
	text-align:center;
	margin-bottom:5px;
	}

.alignleft{
	float:left;
	padding:5px 10px;
	}
	
.right{
	float:right;
	padding:5px;
	}
	
.step_right {
	float: right;		/*画像を左へ回り込み*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px 10px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	margin:0 5px;
	height: auto;		/*写真の高さ*/
	border: 1px solid #e7d7af;	/*線の幅、線種、色*/
	-webkit-box-shadow: 1px 2px 7px #e7d7af;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
}

.step{
	font-size:18px;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	padding-bottom:10px;
	padding-left:10px;
	color: #502916;
	}
	
.ba img{
	border: 1px solid #2f060a;
	margin-bottom:2px;
	}

.menu_text{
	padding:10px;
	background:#f2e7dc;
	border-radius:10px;
	margin:10px 5px;
	}
	
.menu_text1{
	padding:10px;
	background:#f9f3e3;
	margin:5px 5px;
	}
	
#main .info{
	background: url(../images/m_logo_1.png) no-repeat 98% 5%, radial-gradient(circle 300px at 75% 80px,#ebd27b,#cdaf7d);	/*ロゴ背後の光*/
	border: 1px solid #e2d7b1;	/*枠線の幅、線種、色*/
	padding: 7px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
	color:#502916;
	border:5px solid #957422;
}

#main .menu_1{
	padding: 10px;				/*ボックス内の余白*/
	margin: 10px 5px;		/*ボックスの下にあけるスペース*/
	color:#502916;
	border:3px solid #936d11;
}

#main .menu_1 img{
	margin-top:10px;
	}

#main .m1{
	font-size:13px;
	text-align:left;
}

#main .m2{
	font-size:23px;
	color: #f61468;
	font-weight:bolder;
}

#main .link_1{
	float:left;
	margin-left:15px;
	padding-top:10px;
	padding:5px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b59130+0,e8d6ab+24,c69a35+50,a07812+79,c69a35+100 */
	background: rgb(181,145,48); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(181,145,48,1) 0%, rgba(232,214,171,1) 24%, rgba(198,154,53,1) 50%, rgba(160,120,18,1) 79%, rgba(198,154,53,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(181,145,48,1) 0%,rgba(232,214,171,1) 24%,rgba(198,154,53,1) 50%,rgba(160,120,18,1) 79%,rgba(198,154,53,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(181,145,48,1) 0%,rgba(232,214,171,1) 24%,rgba(198,154,53,1) 50%,rgba(160,120,18,1) 79%,rgba(198,154,53,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b59130', endColorstr='#c69a35',GradientType=0 ); /* IE6-9 */
	}

#main .link_2{
	float:right;
	margin-left:15px;
	padding-top:10px;
	padding:5px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b59130+0,e8d6ab+24,c69a35+50,a07812+79,c69a35+100 */
	background: rgb(181,145,48); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(181,145,48,1) 0%, rgba(232,214,171,1) 24%, rgba(198,154,53,1) 50%, rgba(160,120,18,1) 79%, rgba(198,154,53,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(181,145,48,1) 0%,rgba(232,214,171,1) 24%,rgba(198,154,53,1) 50%,rgba(160,120,18,1) 79%,rgba(198,154,53,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(181,145,48,1) 0%,rgba(232,214,171,1) 24%,rgba(198,154,53,1) 50%,rgba(160,120,18,1) 79%,rgba(198,154,53,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b59130', endColorstr='#c69a35',GradientType=0 ); /* IE6-9 */
	}
	
#main .link_1 a, #main .link_2 a{
	color:#fff;
	padding:4px 10px;
	border:1px solid #fff;
	}

#main .link_1 a:hover, #main .link_2 a:hover{
	background:#c69a35;
	border-radius:0px;
	}
	
.info_{
	background: url(../images/m_logo_1.png) no-repeat 98% 5%, radial-gradient(circle 300px at 75% 80px,#ebd27b,#cdaf7d);	/*ロゴ背後の光*/
	border: 1px solid #e2d7b1;	/*枠線の幅、線種、色*/
	padding: 7px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
	color:#502916;
	border:5px solid #957422;
	width:482px;
}


#main .info .info_text{
	padding:5px 10px;
	border-bottom:1px solid #be9e52;
	-webkit-box-shadow: 1px 1px 5px #be9e52;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/	
}

#main .info .info_text1{
	padding:10px 5px;
	border-bottom:1px solid #be9e52;
}

#main .info .info_text2{
	padding:10px 5px;
	text-align:center;
	border-bottom:1px solid #be9e52;
	}

.info_ .info_text{
	padding:1px;
	border-bottom:1px solid #be9e52;
	-webkit-box-shadow: 1px 1px 5px #be9e52;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/	
}

.info_ .info_text1{
	padding:10px 5px;
	border-bottom:1px solid #be9e52;
}

.info_ .info_text2{
	padding:10px 5px;
	text-align:center;
	border-bottom:1px solid #be9e52;
	}
	
#main .info .info_text3{
	font-size:35px;
	padding:10px 5px;
	text-align:center;
	border-bottom:1px solid #be9e52;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	}
	
.ten img{
	margin:5px;
	}
	
.bar_1 img{
	width:230px;
	margin: 0 5px;
	}

}	