@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #555;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
	background: #FFFFFF;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type:none;
}
dl{
	margin-left:15px;
	margin-right:10px;
}
dt{
	font-size:110%;
	color:#06C;
	font-weight:bold;
}
ol{margin-left: 30px;}

img {
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: top;
}
a:hover img {
	opacity: 0.7;
	-moz-opacity: 0.7; /* Firefox */
	filter: alpha(opacity=70); /* IE6/7 */
	-ms-filter: "alpha(opacity=70)"; /* IE8 */
}

input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/* fonts
--------------------------------------- */
@font-face {
  font-family: "Yasashisa";
  src: url("../fonts/YasashisaGo.woff") format('woff');
}
@font-face {
  font-family: "DFPOP";
  src: url("../fonts/DFPOP1-C.woff") format('woff');
}
@font-face{
	font-family:'condenseicon';
	src: url('../CONDENSEiconFont/CONDENSEicon.ttf') format('truetype'),url('../CONDENSEiconFont/CONDENSEicon.otf') format('opentype'),url('../CONDENSEiconFont/CONDENSEicon.woff') format('woff');
}


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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
/*	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
/*	background-image: -webkit-linear-gradient(#FFF 80%, #ededed);	/*同上*/
/*	background-image: linear-gradient(#FFF 80%, #ededed);			/*同上*/
}
/*ヘッダーブロックの中*/
header .inner {
	width: 997px;	/*ブロック幅*/
	height: 100px;	/*ブロックの高さ*/
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 10px;	/*innerに対して左から20pxの場所に配置*/
	top: 3px;	/*innerに対して上から20pxの場所に配置*/
}
/*電話番号ボックスの設定*/
header .inner address {
	position: absolute;
	top: 10px;		/*innerに対して上から15pxの位置に配置*/
	right: 20px;	/*innerに対して右から20pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定*/
}
/*電話番号の文字設定*/
header .inner address .tel {
	font-size: 18px;	/*文字サイズ*/
	color: #0f1bb1;		/*文字色*/
	font-weight: bold;	/*太字に*/
	display: block;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menu {
	font-family:"Yasashisa";
	height: 60px;	/*ブロックの高さ*/
	background-color: #BD5BA3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/* background-image: -webkit-gradient(linear, left top, left bottom, from(#2257BB), to(#0081CC));	/*グラデーション*/
	/* background-image: -webkit-linear-gradient(#2257BB, #0081CC);	/*同上*/
	/* background-image: linear-gradient(#2257BB, #0081CC);			/*同上*/
	margin-bottom: 0;
}
nav#menu ul {
	width: 1006px;	/*メニュー部分のブロック幅*/
	margin-right: auto;
	margin-left: auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 334px;	/*メニュー幅*/
	/*border-right: 1px solid #0a1278;	メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: normal;	/*文字を太字にする設定*/
	position:relative;
	font-size:100%;
}
nav#menu ul li a {
	text-decoration: none;
	display: block;
	height:55px;
	padding-top:5px;
	line-height:55px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	color: #FFF;	/*文字色*/
}
/*最初のメニューの設定
nav#menu ul li:first-child {
	border-left: 1px solid #0a1278;	
}
*/
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background-color: #D598C5;	/*背景色*/
}
/*英語表記の設定*/
nav#menu ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	line-height: 20px;
	padding-bottom: 5px;
	opacity: 0.5;	/*透明度50％*/
}
nav#menu ul li ul {
  position: absolute;
  top:60px;
  left:0px;
  width:143px;
  z-index: 100;
  opacity: 0.8;	/*透明度85％*/
}
nav#menu ul li ul li {
  visibility: hidden;
  overflow: hidden;
  width: 143px;/*サブメニューの幅*/
  height:40px;
  background: #B20000;/*サブメニューの背景色*/
  font-size:80%;
  color:#FFF;
  opacity:0.8;
}
nav#menu ul li ul li a {
  color:#FFF;
  line-height:30px;
}
nav#menu ul li ul li:hover, nav#menu ul li ul li a:hover {
  background: #FFF;/*ホバー時のサブメニューの背景色*/
  color: #C22B30;
  opacity: 0.8;	/*透明度85％*/
}
nav#menu ul li:hover ul li, nav#menu ul li a:hover ul li{
  visibility: visible;
  overflow: visible;
  height:40px;/*サブメニューの高さ*/
  width:142px;
  z-index: 10;
}

/*コンテンツ（main,sub,sideを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 1000px;	/*コンテンツ幅*/
	margin-right: auto;
	margin-left: auto;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 962px;	/*メインコンテンツ幅*/
	padding: 20px;
}
/*2カラム時*/
body.c2 #main {
	width: 782px;	/*メインコンテンツ幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	background: #BD5BA3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/* background-image: -webkit-gradient(linear, left top, left bottom, from(#2257BB), to(#0081CC));	/*グラデーション*/
	/* background-image: -webkit-linear-gradient(#2257BB, #0081CC);	/*同上*/
	/* background-image: linear-gradient(#2257BB, #0081CC);			/*同上*/
	background-image: url(../images/h2_bg.png);
	background-repeat:no-repeat;
	background-position:left;
	border: 1px solid #BD5BA3;		/*枠線の幅、線種、色*/
	border-radius: 6px 6px 6px 6px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-family:"Yasashisa";
	font-size: 130%;
	font-weight:normal;
	color: #FFF;	/*文字色*/
	padding: 5px 15px 5px 40px;	/*左から、上下、左右への余白*/
	clear: both;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	background-color: #e3e3e3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/* background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#e3e3e3));	/*グラデーション*/
	/* background-image: -webkit-linear-gradient(#fcfcfc, #f1f1f1 49%, #e3e3e3 50%);	/*同上*/
	/* background-image: linear-gradient(#fcfcfc, #f1f1f1 49%, #e3e3e3 50%);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-family:"Yasashisa";
	font-size: 120%;
	font-weight:bold;
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #FFF;		/*上の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #FFF;	/*下の線の幅、線種、色*/
    margin-top: 20px;
	margin-bottom:20px;
}
.blue{
	border-left:3px solid rgba(68,82,189,1.00);
	color: rgba(68,82,189,1.00);
}
.purple{
	border-left:3px solid #BD5BA3;
	color: #8C008C;
}
.green{
	border-left:3px solid #0C9;
	color:#090;
}
.red{
	border-left:3px solid #B20000;
	color: rgba(147,14,16,1.00);
}
.orange{
	border-left:3px solid #D93600;
	color: #D93600;
}

/*mainコンテンツのh4タグ設定*/
#main h4 {
	background-color: #ddd;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-family:"Yasashisa";
	font-size: 100%;
	font-weight:normal;
	color: #333;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 15px;	/*左から、上、左右、下への余白*/
}

#main ul{
	list-style-type:disc;
	margin-left: 15px;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list2 article {
	height: 250px;	/*ボックスの高さ*/
	width: 27%;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #ccc;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 15px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 14px 20px;
	position: relative;
	border: 1px solid #CCC;
}
/*ボックス内の段落タグ設定*/
#main section.list2 article p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}

/* 美味しい餃子の焼き方　内のフロー写真ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list3 article {
	height: 330px;	/*ボックスの高さ*/
	width: 27%;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #ccc;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 15px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 14px 20px;
	position: relative;
	border: 1px solid #CCC;
}
/*ボックス内の段落タグ設定*/
#main section.list3 article p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}

/* 1/3　box
---------------------------------------------------------------------------*/
#main section.list4 article {
	height: 270px;	/*ボックスの高さ*/
	width: 31%;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 5px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 6px 15px;
	position: relative;
}

/* 1/4　box
---------------------------------------------------------------------------*/
#main section.list5 article {
	height:auto ;	/*ボックスの高さ*/
	width: 23%;	/*ボックスの幅*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 4px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 0 5px 11px;
	position: relative;
}

/* 1/2　box
---------------------------------------------------------------------------*/
#main section.list6 article {
	height:auto ;	/*ボックスの高さ*/
	width: 46%;	/*ボックスの幅*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 5px;	/*ボックス内の余白*/
	float: left;
	margin: 5px 14px;
	position: relative;
}

/* 1/3　box
---------------------------------------------------------------------------*/
#main section.list7 article {
	height:auto ;	/*ボックスの高さ*/
	width: 30%;	/*ボックスの幅*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 5px;	/*ボックス内の余白*/
	float: left;
	margin: 5px 11px;
	position: relative;
}


/*サブコンテンツ、サイドコンテンツ
---------------------------------------------------------------------------*/
/*サブコンテンツ（左側ブロック）*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 200px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*サイドコンテンツ（右側ブロック）*/
#side {
	float: right;
	width: 200px;
	padding-bottom: 30px;
}
/*2カラム時にサイドコンテンツを非表示にする設定*/
body.c2 #side {
	display: none;
}
/*sub,sideコンテンツ内のh2タグ設定*/
#sub h2,
#side h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background-color: #0943AE;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#2257BB), to(#0943AE));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#2257BB, #1E52A8 49%, #0943AE 50%);	/*同上*/
	background-image: linear-gradient(#2257BB, #1E52A8 49%, #0943AE 50%);			/*同上*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #FFF;	/*文字色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
/*box1の中にあるh2タグの設定*/
#sub .box1 h2,
#side .box1 h2 {
	border-radius: 0;	/*角丸をなくす設定*/
}
/*sub,sideコンテンツ内のbox1設定*/
#sub .box1,
#side .box1 {
	background-color: #eee;		/*背景色*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	padding: 5px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#side h2 + ul,
#sub h2 + .box1,
#side h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul,
#side .box1 > ul {
	margin-bottom: 0;
}

/*sub,sideコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul,
#side ul {
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a,
#side ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #FFF;	/*背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width:100%;
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	background: #FFF;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color:#0D3688;
}
footer a:hover {
	color: #999;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	background:none;	/*スライドショーの外側（左右）の背景色*/
	margin-bottom:20px;
}
#mainimg .sub {
	font-family:"Yasashisa";
	font-size:150%;
	font-weight:bold;
	color:#039;
	line-height:3em;
	width: 997px;
	height: 60px;
	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;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 15px;		/*ボックス間のスペース*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#eee));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #eee);	/*同上*/
	background-image: linear-gradient(#FFF, #eee);			/*同上*/
	-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;			/*同上*/
}
/*ボックス内の段落タグ設定*/
/*ボックス内の写真設定*/
#main section.list article figure img {
	float:right;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	margin:5px;
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #FFF;	/*文字色*/
}

.result_half{
	float:left;
	width:48%;
	margin:5px 5px;
}

.result{
	float:left;
	width:96%;
	margin:5px 10px;
}

/*トップページ内「インフォメーション」ブロック　左半カラム表示
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/

#new .box_new{
	width:45%;
	float:left;
	background-color:#FFF;
	margin-top:10px;
	margin-left:18px;
	margin-right:10px;
	margin-bottom:10px;
	padding:10px;
}
#new .box_new h3{
	font-family:"Yasashisa";
	font-size: 105%;
	font-weight:normal;
	color: #0f1bb1;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #0081CC;		/*上の線の幅、線種、色*/
	border-right: 1px solid #0081CC;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #0081CC;	/*下の線の幅、線種、色*/
	border-left: 3px solid #0081CC;	/*左の線の幅、線種、色*/
	background:#FFF;
}

#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 400px;
	margin: 5px 10px 0px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 8em;
	line-height:2.5em;
	color: #9A070A;
	clear:both;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.3＝30％）の指定。*/
	padding-left: 8em;
	line-height:2.7em;
	color:#333;
}
#new dd img {
	vertical-align: middle;
}

/*トップページ内「イベント情報」ブロック　左半カラム表示
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/

#new .box_new1{
	width:45%;
	float:right;
	background-color:#FFF;
	margin-top:10px;
	margin-left:10px;
	margin-right:18px;
	margin-bottom:10px;
	padding:10px;
}
#new .box_new1 h3{
	font-family:"Yasashisa";
	font-size: 105%;
	font-weight:normal;
	color: #0f1bb1;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #0081CC;		/*上の線の幅、線種、色*/
	border-right: 1px solid #0081CC;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #0081CC;	/*下の線の幅、線種、色*/
	border-left: 3px solid #0081CC;	/*左の線の幅、線種、色*/
	background:#FFF;
}


/*物件ページ内ブロック　左半カラム表示
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/

#main .box_bukken_left{
	width:45%;
	float:left;
	margin-top:10px;
	margin-left:18px;
	margin-right:10px;
	margin-bottom:10px;
	padding:10px;
}
#main .box_bukken_left h3{
	font-family:"Yasashisa";
	font-size: 105%;
	font-weight:normal;
	color: #0f1bb1;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #0081CC;		/*上の線の幅、線種、色*/
	border-right: 1px solid #0081CC;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #0081CC;	/*下の線の幅、線種、色*/
	border-left: 3px solid #0081CC;	/*左の線の幅、線種、色*/
	background:#FFF;
}

#main .box_bukken_left ul{
	list-style:none;
}

#main .box_bukken_left ul li{
	width:23%;
	margin:1%;
	float:left;
}

/*物件ページ内ブロック　右半カラム表示
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/

#main .box_bukken_right{
	width:45%;
	float:right;
	margin-top:10px;
	margin-left:10px;
	margin-right:18px;
	margin-bottom:10px;
	padding:10px;
}
#main .box_bukken_right h3{
	font-family:"Yasashisa";
	font-size: 105%;
	font-weight:normal;
	color: #0f1bb1;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #0081CC;		/*上の線の幅、線種、色*/
	border-right: 1px solid #0081CC;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #0081CC;	/*下の線の幅、線種、色*/
	border-left: 3px solid #0081CC;	/*左の線の幅、線種、色*/
	background:#FFF;
}

/*周辺情報BOX
---------------------------------------------------------------------------*/
#main .syuuhen_pink{
	width:22%;
	margin:1%;
	padding:3px;
	border:#CCC solid 1px;
	background-color:#FAEDF8;
	float:left;
	font-size:80%;
}
#main .syuuhen_blue{
	width:22%;
	margin:1%;
	padding:3px;
	border:#CCC solid 1px;
	background-color: #E7F0F8;
	float:left;
	font-size:80%;
}
#main .syuuhen_green{
	width:22%;
	margin:1%;
	padding:3px;
	border:#CCC solid 1px;
	background-color: #E3F4EB;
	float:left;
	font-size:80%;
}
#main .syuuhen_beige{
	width:22%;
	margin:1%;
	padding:3px;
	border:#CCC solid 1px;
	background-color: #F8F3E4;
	float:left;
	font-size:80%;
}

/*4列ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/

#box_4{
	width:23%;
	float:left;
	background-color:#FFF;
	margin:10px 6px;
	padding:0px;
}


/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	font-size:90%;
    margin-bottom: 30px;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
	background:#FFF;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 120px;
	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;	/*文字を太字にする設定*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
	font-size:90%;
}
.ta2, .ta2 td, .ta2 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta2 td{
	padding: 10px;
	background:#FFF;
	text-align:right;
}
/*テーブル内の左側の見出し部分*/
.ta2 th{
	width:60%;
	padding: 10px;
	text-align: center;
}
.bg_gray{
	background-color:#f1f1f1;
}
.bg_blue{
	background-color:#DAEFF3;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta2 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;	/*文字を太字にする設定*/
}

/*テーブル3 物件詳細ページ用
---------------------------------------------------------------------------*/
.ta3 {
	width: 100%;
	font-size:90%;
}
.ta3, .ta3 td, .ta3 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta3 td{
	padding: 10px;
	background:#FFF;
}
/*テーブル内の左側の見出し部分*/
.ta3 th{
	width: 120px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta3 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta3 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;	/*文字を太字にする設定*/
}

/*テーブル4
---------------------------------------------------------------------------*/
.ta4 {
	width: 100%;
	font-size:90%;
}
.ta4, .ta4 td, .ta4 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta4 td{
	padding: 10px;
	background:#FFF;
	text-align: center;
}
/*テーブル内の左側の見出し部分*/
.ta4 th{
	width: 120px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}


/*submitボタンの設定*/
input[type="submit"],
input[type="button"] {
	width: 200px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin: 5px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #B20000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/* background-image: -webkit-gradient(linear, left top, left bottom, from(#2257BB), to(#0081CC));	/*グラデーション*/
	/* background-image: -webkit-linear-gradient(#2257BB, #0081CC);	/*同上*/
	/* background-image: linear-gradient(#2257BB, #0081CC);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 14px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	border: none;
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: rgba(246,102,104,1.00);	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/* background-image: -webkit-gradient(linear, left top, left bottom, from(#0f1bb1), to(#202dd6));	/*グラデーション*/
	/* background-image: -webkit-linear-gradient(#0f1bb1, #202dd6);	/*同上*/
	/* background-image: linear-gradient(#0f1bb1, #202dd6);			/*同上*/
}

/*resetボタンの設定*/
input[type="reset"],
input[type="button"] {
	width: 200px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin: 5px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #B20000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/* background-image: -webkit-gradient(linear, left top, left bottom, from(#2257BB), to(#0081CC));	/*グラデーション*/
	/* background-image: -webkit-linear-gradient(#2257BB, #0081CC);	/*同上*/
	/* background-image: linear-gradient(#2257BB, #0081CC);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 14px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	border: none;
}
/*resetボタンのマウスオン時の設定*/
input[type="reset"]:hover,
input[type="button"]:hover {
	background-color: rgba(246,102,104,1.00);	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/* background-image: -webkit-gradient(linear, left top, left bottom, from(#0f1bb1), to(#202dd6));	/*グラデーション*/
	/* background-image: -webkit-linear-gradient(#0f1bb1, #202dd6);	/*同上*/
	/* background-image: linear-gradient(#0f1bb1, #202dd6);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	text-align: center;
	width:70px;	/*ボックス幅*/
	display: block;
	float: right;
	background: #AA7FBB;
}

/*　文章回り込みの画像位置指定
---------------------------------------------------------------------------*/

.p_photo_l img {
	float: left;
	margin-right: 10px;
}

.p_photo_r img {
	float: right;
	margin-left: 10px;
}


/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.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;
}
#menubar_hdr {
	display: none;
}

.border_b{
	border-bottom:#CCC dotted 1px;
}

.qa{
	background:#FFF;
}

.qa2{
	background:#FFF;
}

/*トップページ内「インフォメーション」ブロック　左半カラム表示
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/

.box_half{
	width:45%;
	float:left;
	background-color:#FFF;
	margin-top:10px;
	margin-left:18px;
	margin-right:10px;
	margin-bottom:10px;
	padding:10px;
}
.box_half h3{
	font-family:"Yasashisa";
	font-size: 105%;
	font-weight:normal;
	color: #0f1bb1;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #0081CC;		/*上の線の幅、線種、色*/
	border-right: 1px solid #0081CC;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #0081CC;	/*下の線の幅、線種、色*/
	border-left: 3px solid #0081CC;	/*左の線の幅、線種、色*/
	background:#FFF;
}


/*トップページ内「イベント情報」ブロック　左半カラム表示
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/

.box_half1{
	width:45%;
	float:right;
	background-color:#FFF;
	margin-top:10px;
	margin-left:10px;
	margin-right:18px;
	margin-bottom:10px;
	padding:10px;
}
.box_half1 h3{
	font-family:"Yasashisa";
	font-size: 105%;
	font-weight:normal;
	color: #0f1bb1;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #0081CC;		/*上の線の幅、線種、色*/
	border-right: 1px solid #0081CC;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #0081CC;	/*下の線の幅、線種、色*/
	border-left: 3px solid #0081CC;	/*左の線の幅、線種、色*/
	background:#FFF;
}


/*================================================
 *  Youtube レスポンシブ対応
 ================================================*/
div.iframeWrap {
position: relative;
width: 100%;
}
div.iframeWrap iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}

/*テキスト装飾
------------------------------------------------------------------*/
.text_bk{color: #000;}
.text_red{color: #cc0000;}
.text_red_l{color: #cc0000; font-size:120%;}
.text_green{color: #66cc33;}
.text_green2{color: #339900;}
.text_green3{
	color: #339900;
	font-weight: bold;
	font-size: 110%;
}
.text_orange{color: #ff6600;}
.text_pink{color: #C69;}
.text_pinkl{
	color: #C69;
	font-size:120%;
}
.text_blue{
	color: #09b5de;
	font-weight: bold;
	font-size: 110%;
}
.text_blue2{
	color: #09b5de;
	font-size: 80%;
}
.text_blue3{
	color: #09b5de;
}
.text_blue4{
	color: #06C;
}
.text_blue4l{
	color: #06C;
	font-size:120%;
}
.text_small{
    font-size: 85%;
	line-height:normal
}
.text_small_red{
    font-size: 80%;
	line-height:normal;
	color:#C00;
}
.text_large{
    font-size: 115%;
	line-height:2em;
}

/*　クリア指定
---------------------------------------------------------------------------*/
.clear {
	display:block;
	height:1px;
	clear:both;
}

.clear8 {
	display:block;
	height:8px;
	clear:both;
}

.clear20 {
	display:block;
	height:20px;
	clear:both;
}

.clear50 {
	display:block;
	height:50px;
	clear:both;
}
