/* CSS Document */

@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #000000;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color: #FFF;	/*背景色*/
}
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: #000000;	/*リンクテキストの色*/
}
a:hover {
	color: #000000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	 font-weight:bold;
	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: 1200px;	/*ブロック幅*/
	height: 168px;
	position: relative;
	margin: 0px auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 110px;	/*innerに対して左から20pxの場所に配置*/
	top: 60px;	/*innerに対して上から20pxの場所に配置*/
	 font-weight:bold;
}

/*電話番号ボックスの設定*/
header .tel {
	position: absolute;
	top: 0px;		/*innerに対して上から20pxの位置に配置*/
	right: 70px;	/*innerに対して右から20pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定*/
	 display: block;
 width:400px;
 height: 167px;
 background:url(../images/telf1.png) no-repeat 0 0;
 font-weight:bold;
}
/*電話番号の文字設定*/
header  .tel:hover {
	 font-weight:bold;
	font-size: 18px;	/*文字サイズ*/
	color: #0f1bb1;		/*文字色*/
	font-weight: bold;	/*太字に*/
	display: block;
	 background:url(../images/telf2.png) no-repeat 0 0;
}
address{
	display:none;
}





/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menu {
	height: 50px;	/*ブロックの高さ*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e7e7e7));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e7e7e7);	/*同上*/
	background-image: linear-gradient(#FFF, #e7e7e7);			/*同上*/
	border-top: 1px solid #d4d4d4;		/*メニューの上側の線の幅、線種、色*/
	border-bottom: 5px solid #000000;	/*メニューの下側の線の幅、線種、色*/
}
nav#menu ul {
	width: 997px;
	margin: 0px auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 165px;	/*メニュー幅*/
	border-right: 1px solid #d4d4d4;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
}
nav#menu ul li a {
	text-decoration: none;
	display: block;
	padding-top: 5px;
	color: #222;		/*文字色*/
	letter-spacing: 0.1em;	/*文字間隔を少しあける設定*/
	text-shadow: #FFF 0px 2px;	/*テキストの影。色、右方向、下方向への指定。*/
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-left: 1px solid #d4d4d4;	/*左側に線を入れる*/
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background-color: #fff;	/*背景色*/
	border-bottom: 5px solid #fff;	/*メニューの下側の線の幅、線種、色*/
}
/*英語表記の設定*/
nav#menu ul li a span {
	color: #122f8d;	/*文字色*/
	font-size: 7px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	background-color: #ffffff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e7e7e7), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e7e7e7, #FFF);	/*同上*/
	background-image: linear-gradient(#e7e7e7, #FFF);			/*同上*/

	clear: left;
}
#mainimg aside {
	width: 1000px;
	height:350px;
	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;
}
#slide_image3 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

#slide_image4 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

#slide_image5 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image6 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear:both;
	width:1000px;
	margin: 2px auto;
	padding-top: 30px;	/*メニューと下の左右のブロックの間に空ける余白*/
		border-style:dotted 1px;
	border-color:#000000;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	margin:0 auto;
	float:inherit;/*右側に回り込み*/
	width:950px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;

	
	
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background:url(../images/pc.png) no-repeat left center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*マークとグラデーション*/
	background:url(../images/pc.png) no-repeat left center, -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background:url(../images/pc.png) no-repeat left center, linear-gradient(#FFF, #e6e6e6);			/*同上*/
	font-size: 100%;
	color: #000000;	/*文字色*/
	padding: 5px 15px 5px 42px;	/*左から、上、右、下、左への余白*/
	border-top: 1px solid #d4d4d4;		/*上の線の幅、線種、色*/
	border-right: 1px solid #d4d4d4;	/*右の線の幅、線種、色*/
	border-bottom: 4px solid #000000;	/*下の線の幅、線種、色*/
	border-left: 1px solid #d4d4d4;		/*左の線の幅、線種、色*/

}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear:both;
position: relative;
	padding-bottom: .2em;
	border-bottom: 4px solid #ccc;
	padding-left:10px;
}
#main h3::after{
	position: absolute;
	bottom: -4px;
	left: 0;
	z-index: 2;
	content: '';
	width: 30%;
	height: 4px;
	background-color: #000000;
}
	
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 10px 15px;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float:none;	/*左側に回り込み*/
	width:0px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background-color: #fff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 0px 0px;	/*上下、左右への余白*/
	color: #000000;		/*文字色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
/*box1の中にあるh2タグの設定*/
#sub .box1 h2 {
	border-radius: 0;	/*角丸をなくす設定*/
}
/*subコンテンツ内のbox1設定*/
#sub .box1 {
	padding: 0px;				/*ボックス内の余白*/
	margin-bottom:28px;


}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#sub h2 + .box1 {
	border-top: none;
	margin-top:0px;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul {
	margin-bottom: 0px;
}

/*main中部
----------------------------------------*/
.banner1{
	margin-left:100px;
	float:left;
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
 width:300px;
 height: 150px;
 background:url(../images/banner1.png) no-repeat 0 0;
}
/*電話番号の文字設定*/
.banner1:hover {

	font-size: 18px;	/*文字サイズ*/
	float:left;
	color: #0f1bb1;		/*文字色*/
	font-weight: bold;	/*太字に*/
	 background:url(../images/banner1-1.png) no-repeat 0 0;
}
.banner2{
	float:left;
	
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
 width:300px;
 height: 150px;
 background:url(../images/banner2.png) no-repeat 0 0;
}
/*電話番号の文字設定*/
.banner2:hover {
	font-size: 18px;	/*文字サイズ*/
	float:left;
	color: #0f1bb1;		/*文字色*/
	font-weight: bold;	/*太字に*/
	 background:url(../images/banner2-2.png) no-repeat 0 0;
}

.top{
	clear:both;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
		font-weight:bold;
	

}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	padding-top:0px;
	height:35px;
	display: block;
	padding-left: 0px;
	background: #FFF;	/*背景色*/

}
#sub ul li a:hover {
	background-color: #BFBFBF;/*マウスオン時のボックス色*/

}
.box1 li{	
border:solid 1px;
	font-weight:bold;
}


.
.box3 ul {
		padding:0px;
		margin:20px 0px;
		margin-left:0px;
}
/*メニュー１個ごとの設定*/
nav.box3 ul li a {
	text-decoration: none;
	padding:0px;
	display: block;
	background: #FFF;	/*背景色*/
	font-size:17px;
	margin-top:10px;

}
nav.box3 ul li a:hover {
	background-color: #BFBFBF;/*マウスオン時のボックス色*/
}
nav.box3 ul li span{
	text-decoration:none;
	font-size:12px;
	color:#726F6F;
	display:block;
}
	
	

/*サブコンテンツ　物件ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub section.box2 {
	font-size: 11px;	/*文字サイズ*/
	margin-bottom:5px;
	padding-left:10px;

	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
}
#sub section.box2 a {
	padding: 0px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
#sub section.box2 a:hover {
	background-color: #EDEDED;	/*マウスオン時のボックス色*/
}
/*h4見出しタグ*/
#sub section.box2 h4 {
	color: #000000;		/*文字色*/
	margin-left: 70px;	/*左の画像とバランスをとって設定する*/
	font-size: 14px;
}
/*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: 12px;
	 font-weight:bold;
}
ul#footermenu li {
	display: inline;
	padding: 0px 5px;
}

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

/*物件一覧ボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	padding-left:5px;
	padding-top:5px;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 10px;	/*ボックス間のスペース*/
	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);			/*同上*/
	-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 a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時*/
#main section.list a:hover {
	border-radius: 6px;		/*角丸のサイズ*/
	background-color: #fff8c7;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 100px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 10px;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #122f8d;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000000;	/*文字色*/
}
/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list table {
	font-size: 11px;	/*文字サイズ*/
	font-family:"花園明朝";
	background: #FFF;	/*背景色*/
}
#main section.list table,
#main section.list table td,
#main section.list table th{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
#main section.list table td,
#main section.list table th{
	padding: 0;
	line-height: 1.6;
}
#main section.list table th{
	width: 80px;
	text-align: center;
	font-weight: normal;
	background:#FFF;
	color:#000000;
}
#main section.list table td {
	width: 140px;
	padding: 0px 3px;
}
/*top jquery
-------------------------------------------------------*/
.pace.pace-inactive {
  display: none;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  z-index: 2000;
  position: fixed;
  height: 60px;
  width: 100px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.pace .pace-progress {
  z-index: 2000;
  position: absolute;
  height: 60px;
  width: 100px;

  -webkit-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

.pace .pace-progress:before {
  content: attr(data-progress-text);
  text-align: center;
  color: #0000000;
  background: #FFF;
  border-radius: 50%;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 100;
  line-height: 1;
  padding: 20% 0 7px;
  width: 50%;
  height: 40%;
  margin: 10px 0 0 30px;
  display: block;
  z-index: 999;
  position: absolute;
}

.pace .pace-activity {
  font-size: 15px;
  line-height: 1;
  z-index: 2000;
  position: absolute;
  height: 60px;
  width: 100px;

  display: block;
  -webkit-animation: pace-theme-center-atom-spin 2s linear infinite;
  -moz-animation: pace-theme-center-atom-spin 2s linear infinite;
  -o-animation: pace-theme-center-atom-spin 2s linear infinite;
  animation: pace-theme-center-atom-spin 2s linear infinite;
}

.pace .pace-activity {
  border-radius: 50%;
  border: 5px solid #000000;
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100px;
}

.pace .pace-activity:after {
  border-radius: 50%;
  border: 5px solid #000000;
  content: ' ';
  display: block;
  position: absolute;
  top: -5px;
  left: -5px;
  height: 60px;
  width: 100px;

  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
}

.pace .pace-activity:before {
  border-radius: 50%;
  border: 5px solid #000000;
  content: ' ';
  display: block;
  position: absolute;
  top: -5px;
  left: -5px;
  height: 60px;
  width: 100px;

  -webkit-transform: rotate(120deg);
  -moz-transform: rotate(120deg);
  -o-transform: rotate(120deg);
  transform: rotate(120deg);
}

@-webkit-keyframes pace-theme-center-atom-spin {
  0%   { -webkit-transform: rotate(0deg) }
  100% { -webkit-transform: rotate(359deg) }
}
@-moz-keyframes pace-theme-center-atom-spin {
  0%   { -moz-transform: rotate(0deg) }
  100% { -moz-transform: rotate(359deg) }
}
@-o-keyframes pace-theme-center-atom-spin {
  0%   { -o-transform: rotate(0deg) }
  100% { -o-transform: rotate(359deg) }
}
@keyframes pace-theme-center-atom-spin {
  0%   { transform: rotate(0deg) }
  100% { transform: rotate(359deg) }
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;
	height: 100px;	
	padding-left: 10px;
	font-weight:bold;
}
/*日付設定
#new dt {
	font-weight: bold;	
	clear:both;
	width: 8em;
	text-align:center;
}*/
/*記事設定
#new dd {
	border-bottom: 1px solid #d2d2d2;	
	padding-left: 8em;
}
#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:#FFF;	/*背景色*/
	color:#000000;
}
.ta1 th a{
	color:#FFF;
	text-decoration:none;
	
}
/*テーブル１行目に入った見出し部分*/
.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: #122f8d;	/*背景色*/
	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;
}
/*---トップ
------------------------------------------------------------------------*/
.s {
 display: block;
 margin:0 auto;
 margin-top:20px;
width:600px;
 height:100px;
 background:url(../images/syuttyou.png) no-repeat 0 0;
}
/*電話番号の文字設定*/
 .s:hover {
	display: block;
	 background:url(../images/syuttyou2.png) no-repeat 0 0;
}
img.ks{
	display:none;
}
img.s1{
	margin:10% 7%;
}
.ms{
	margin:0 2px;
}

/*---サービス料金
------------------------------------*/
ul.question{
	font-size:15px;
list-style-type:none;
line-height:13px;
margin-left:80px;
}

ul.question li{
	font-family:"花園明朝";
	margin-left:100px;
padding-left:50px;
background-image:url(../images/checkbox2.png);
background-repeat:no-repeat;
background-position:10px 0px;
line-height:30px;
font-size:16px;
	font-weight:bold;

}
.sp h4{
	clear:both;
position: relative;
	padding-bottom: .2em;
	border-bottom: 4px solid #ccc;
	margin-bottom:10px;
	font-size:20px;
	margin-left:20px;
}
.sp h4::after{
	position: absolute;
	bottom: -4px;
	left: 0;
	z-index: 2;
	content: '';
	width: 40%;
	height: 4px;
	background-color: #000000;
}
	
.serviceprice{
	margin-left:100px;
	margin-right:100px;
	font-size:14px;
	font-weight:bold;
	border-bottom:solid 1px;
	margin-bottom:20px;
	background-color:#000000;
	color:#ffffff;
	text-align:center;
		font-weight:bold;
	
}
.serviceprice2{
	font-size:16px;
}
.serviceprice3{
	margin-left:150px;
}
.riyuu{
	vertical-align:middle;
}
.tables th{
	background-color:#000000;
	color:#ffffff;
	
}
.tables td{
	border-bottom:solid 1px;
}
/*---製作過程
---------------------*/
.tflow{
	margin:0 20%;
	border:solid 1px;
}
.tflow th{
	border-bottom:solid 1px;
}
.tflow td{
	text-align:center;
	padding:0 5px;
}
.tflow2{
		border:solid 1px;
}
.tflow2 th{
	border-bottom:solid 1px;
}
.tflow2 td{
		text-align:center;
			padding:0 5px;
	
}
/*よくある質問
------------------------*/

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.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;
}
#menubar_hdr {
	display: none;
}
img.nm{
	width:100%;
}
/* head/menu/submenu
--------------------------------------*/
.box3{
	display:block;
}
header{
	display:block;
}
nav#menu{
	display:block;
}
.bn{
	margin:0 auto;
}


 section.tb section {

	height: 230px;	/*ボックスの高さ*/
	width: 15%;	/*ボックスの幅*/
	float: left;
	line-height: 1.6;
	margin-left: 14px;
	overflow: hidden;
	position: relative;
	margin-bottom: 5px;
	padding-top:400px;
}
/*ボックス内の段落タグ設定*/
 section.tb section p {
	padding: 0px;
}
/*ボックス内のh4タグ設定*/
section.tb section h4 {
	font-size:15px;
	color:#000000;	/*文字色*/
}
/*写真の設定*/
 section.tb section figure {
	padding: 5px;	/*写真と枠線との余白設定*/
	margin-bottom: 5px;	/*画像の下に少し余白を空ける設定*/
	border: 1px solid #CCC;	/*画像の枠線の幅、線種、色*/
}
section.tb section figure img {
	width: 100%;
	height: auto;
}
/*「もっと詳しく」ボタン設定*/
 section.tb section p.more {
	 	 clear:both;
	position: absolute;
	right: 0px;		/*ボックスに対して右から0pxの場所に配置*/
	bottom: 0px;	/*ボックスに対して下から0pxの場所に配置*/
}
 section.tb section p.more a {
	 clear:both;
	color: #FFF;	/*文字色*/
	text-decoration: none;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color:#000000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 2px 15px;	/*上下、左右への余白*/
	font-size: 11px;	/*文字サイズ*/
	border-radius: 4px;	/*各丸のサイズ*/
}
 section.tbsection p.more a:hover {
	background: #000000;	/*マウスオン時の背景色*/
}


/* webフォント
---------------------------------------*/

/* IE */
@font-face {
font-family:"花園明朝";
src:url(../HanaMinA.eot);
}
/* Firefox, Opera, Safari */
@font-face {
font-family:"花園明朝";
src:url(../HanaMinA.ttf) format("truetype");
}
/* modern browser */
@font-face {
font-family:"花園明朝";
src:url(../HanaMinA.woff) format("woff");
}


}