﻿@charset "utf-8";




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


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

body {

	margin: 0px;

	padding: 0px;

	color: #333;	/*全体の文字色*/

	background: #fff;	/*背景色*/

	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
 Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/


	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/

	-webkit-text-size-adjust: none;
}
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: 997px;height: auto;vertical-align: middle;}

table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}

iframe {width: 997px;}






/*リンク（全般）設定

---------------------------------------------------------------------------*/


a {

	color: #333;	/*リンクテキストの色*/

	-webkit-transition: 0.1s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/

	transition: 0.1s;			/*同上*/


	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/

}





a:hover {

	color: #333;			/*マウスオン時の文字色*/

	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/


}





/*コンテナー（HPを囲むブロック）

---------------------------------------------------------------------------*/


#container {
	max-width: 997px;	/*コンテナーの最大幅*/

	margin: 0 auto;

}



/*ヘッダー（サイト名ロゴが入ったブロック）

---------------------------------------------------------------*/

/*ヘッダーブロック*/
header {

	width: 997px;	/*ブロック幅*/
	position: relative;

	margin-bottom: 30px;
}
/*ロゴ画像*/



#logo img {

	background: #fff;	/*背景色*/

	width: 250px;			/*幅*/

	padding: 10px 3px 10px;	/*上、左右、下へのロゴブロック内の余白*/

}









/*電話番号ボックスの設定*/
header .inner address {
	position: absolute;
	top: 20px;		/*innerに対して上から20pxの位置に配置*/
	right: 20px;	/*innerに対して右から20pxの位置に配置*/
	font-size: 10px;	/*文字サイズ*/
	text-align: right;	/*文字をセンタリング*/
	font-style: normal;	/*通常斜体になっているのを通常に*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定*/
}
/*電話番号の文字設定*/
header .inner address .tel {
	font-size: 13px;	/*文字サイズ*/
	font-weight: bold;	/*太字に*/
	display: block;


}






/*上部のメインメニュー

---------------------------------------------------------------------------*/

/*メニューブロックの設定*/
#menubar {

	position: absolute;

	right: 0px;		/*ヘッダーブロックに対して右から0pxの場所に配置*/

	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの場所に配置*/

	width: 700px;		/*幅。
上のロゴ画像のwidth（16%）とpadding（4%）を合計した数字が100%を超えないように。*/


	border-left: 1px solid #ccc;	/*左側の線の幅、線種、色*/

}




/*メニュー１個ごとの設定*/
#menubar li,
#menubar-s li {

	float: left;
	width: 172px;
			/*メニュー幅。４個なので25%でいいのですが、古いブラウザで段落ちするので念のため24.9にしました。*/

}

#menubar li a,
#menubar-s li a {

	text-decoration: none;
	display: block;
	text-align: center;	/*文字をセンタリング*/

	font-weight: bold;		/*太字にする設定。標準がいいならこの行削除。*/

	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。標準がいいならこの行削除。*/

	border-right: 1px solid #ccc;	/*右側の線の幅、線種、色*/

	border-bottom: 3px solid transparent;	/*下線の幅、線種、色。transparentは透明の事。*/

}


/*マウスオン時と、現在表示中(current)メニューの設定*/

#menubar li a:hover,
#menubar li.current a {

	border-bottom: 3px solid #d9c7b8;	/*下線の幅、線種、色*/

}


/*英語表記の設定*/

#menubar a span,
#menubar-s a span {

	display: block;
	font-size: 10px;	/*文字サイズ*/

	font-weight: normal;/*太字を標準に戻す設定。*/
	color: #999;		/*文字色*/

}







/*コースのテーブル
---------------------------------------------------------------------------*/
/*ボックス内のh5（見出し）タグ設定　
*/
.list2 h5 {
	padding-left: 10px;
}

/*ボックス内のp（段落）タグ設定　
*/
.list2 p {
	font-size: 80%;	/*文字サイズを少し小さく*/
}






/*ボックス（list2）設定
---------------------------------------------------------------------------*/


/*ボックス１個あたりの設定*/
.list2 {

	float: left;	/*左に回り込み*/

	width: 220px;		/*幅*/

	background: #FFCCCC;	/*背景色*/


	overflow: auto;	/*ボックスから飛び出たらスクロールを出す設定。

飛び出た部分を非表示にしたいならautoでなくhiddenにする。*/

	background: #ffe4e1;	/*背景色*/

	color: #111;		/*文字色*/

	margin-left: 1.5%;	/*ボックス同士の左右間の余白*/

	margin-bottom: 30px;	/*ボックス同士の上下間の余白*/

	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/

	height: 250px;			/*高さ（下の「.list01 a」の高さと揃える）*/

	line-height: 1.4;
	position: relative;

	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/

	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);			/*同上*/
}

.list2 a {

	display: block;
	overflow: auto;
	text-decoration: none;

	height: 250px;	/*高さ（上の「.list」の高さと揃える）*/

	color: #111;	/*文字色*/
}


.list2 a:hover {

	background: #FFCCCC;	/*マウスオン時の背景色*/

	color: #fff;			/*マウスオン時の文字色*/
}
/*
ボックスにリンク指定がされた場合に出る「→」マーク
*/
.list2 a::before,
.list2 a::before {

	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/

	position: absolute;
	right: 5px;	/*ボックスの右から20pxの場所に配置*/

	top: 20px;		/*ボックスの上から20pxの場所に配置*/

	background: #ffc0cb;	/*背景色（古いブラウザ用）*/

	background: rgba(0,0,0,0.5);	/*rgb指定での背景色。
「0,0,0」は黒の事で「0.5」が透明度50%の事。*/

	color: #fff;	/*文字色*/

	border: 1px solid #FFCCCC;	/*枠線の幅、線種、色*/

	border-radius: 4px;		/*角丸のサイズ*/

	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/

	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/

	transition: 0.5s;			/*同上*/
}
/*マウスオン時の「→」マーク　（※list2も共通）*/

.list2 a:hover::before,
.list2 a:hover::before {

	background: #f06774;	/*背景色*/

	width: 40px;		/*幅*/

	line-height: 40px;	/*高さ*/
}
/*
ボックス内の画像設定*/
.list2 .img {
	width: 100%;	/*画像の幅*/

	height: auto;	/*画像の高さ*/

	padding-bottom: 10px;	/*画像下に空ける余白*/
}









/*コンテンツ（mainとsubを囲むブロック）

----------------------------------------------------------------*/

#contents {


	width: 997px;
	padding-top: 30px;	/*上に空ける余白*/

}




/*メインコンテンツ（右側ブロック）

----------------------------------------------------------------------*/

#main {

	float: right;	/*右側に流し込み*/

	width: 700px;	/*コンテンツ幅*/

	padding-bottom: 30px;
}



/*mainコンテンツのh2タグの設定*/


#main h2 {

	clear: both;

	margin-bottom: 15px;

	color: #FFF;		/*文字色*/

	background: #d9c7b8 url(../images/mark1.png) no-repeat 10px center;	/*背景色、背景画像の読み込み*/

	padding: 5px 5px 5px 35px;	/*上、右、下、左への余白*/

	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。標準がいいならこの行削除。*/

	border-radius: 3px;	/*角丸のサイズ*/
}


/*mainコンテンツのh3タグの設定*
/
#main h3 
{

	clear: both;

	margin-bottom: 15px;

	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/

	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*グラデーション*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/

	padding: 4px 15px;		/*上下、左右への余白*/

	border: 1px solid #ccc;	/*枠線の幅、線種、色*/

	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。標準がいいならこの行削除。*/
}



/*メインコンテンツのp(段落)タグ設定*/

#main p {

	padding: 10px 10px 30px;	/*上、左右、下への余白*/}

#main h2 + p,
#main h3 + p {

	margin-top: 0px;}



/*Schoolページ

---------------------------------------------------------------------------*/

/*ボックス共通設定*/

#main section.list01 {

	position: relative;

	overflow: hidden;

	background: #fff;	/*背景色*/

	padding: 3.5%;		/*ボックス内の余白*/

	border: 1px solid #e0e0e0;	/*枠線の幅線種、色*/

	border-radius: 10px;	/*角丸のサイズ*/

	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
}


/*ボックス内のh4タグ共通設定*/

#main section.list01 h4 {
	color: #F5A9D0;	/*文字色*/

	margin-left: 39%;	/*画像とのバランスをとって設定（※横長タイプ用）*/
}


/*ボックス内の段落タグ共通設定*/

#main section.list01 p {

	padding: 0px;

	margin-left: 39%;	/*画像とのバランスをとって設定（※横長タイプ用）*/
}


/*ボックス内の写真共通設定*/
#main section.list01 figure img {

	float: left;	/*画像を左へ回り込み（※横長タイプ用）*/

	width: 37%;		/*写真の幅（※横長タイプ用）*/
}


/*コンパクトタイプのボックス追加設定*/
#main section.list01.compact {

	width: 23%;		/*compactタイプの幅*/

	height: 220px;	/*compactタイプの高さ*/

	float: left;	/*ボックスを左に回り込み*/

	margin-left: 2.5%;	/*ボックス間の余白*/
}



.c1 #main section.list01.compact {

	height: 250px;	/*１カラムの時の高さ*/
}




/*コンパクトタイプのh4タグ追加設定*/

#main section.list01.compact h4 {
	margin-left: 0;
}


/*コンパクトタイプの段落タグ追加設定*/
#main section.list01.compact p {

	margin-left: 0;
	font-size: 11px;	/*compactタイプの文字サイズ*/

	line-height: 1.4;
	margin-bottom: 5px;
}



/*コンパクトタイプの写真追加設定*/

#main section.list01.compact figure img {

	float: none;

	width: 180px;


	margin: 0;
}









/*ボックス共通設定*/

#main section.list12 {

	position: relative;

	overflow: hidden;

	background: #fff;	/*背景色*/

	padding: 3.5%;		/*ボックス内の余白*/

	border: 1px solid #e0e0e0;	/*枠線の幅線種、色*/

	border-radius: 10px;	/*角丸のサイズ*/

	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
}




/*コンパクトタイプのh4タグ追加設定*/

#main section.list12.compact h4 {
	margin-left: 0;
}


/*コンパクトタイプの段落タグ追加設定*/
#main section.list12.compact p {

	margin-left: 0;
	font-size: 11px;	/*compactタイプの文字サイズ*/

	line-height: 1.4;
	margin-bottom: 5px;
}



/*コンパクトタイプの写真追加設定*/

#main section.list12.compact figure img {

	float: none;

	width: 180px;


	margin: 0;
}



/*ボックス内のh4タグ共通設定*/

#main section.list12 h4 {
	color: #F5A9D0;	/*文字色*/

	margin-left: 39%;	/*画像とのバランスをとって設定（※横長タイプ用）*/
}


/*ボックス内の段落タグ共通設定*/

#main section.list12 p {

	padding: 0px;

	margin-left: 39%;	/*画像とのバランスをとって設定（※横長タイプ用）*/
}

/*コンパクトタイプ12のボックス追加設定*/
#main section.list12.compact {

	width: 23%;		/*compactタイプの幅*/

	height: 180px;	/*compactタイプの高さ*/

	float: left;	/*ボックスを左に回り込み*/

	margin-left: 2.5%;	/*ボックス間の余白*/
}




/*サービス紹介ページの各ブロック

--------------------------------------------*/


/*各ボックスの設定*/

#main .list {

	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/

	margin-bottom: 15px;	/*ボックスの下に空ける余白*/

	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*グラデーション*/

	background: linear-gradient(#FFF, #FBEFF5);			/*同上*/

	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;
	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/

	box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;			/*同上*/

	position: relative;
	overflow: hidden;
}
#main .list a {
	padding: 3%;	/*ボックス内の余白*/

	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時のボックス*/


#main .list a:hover {

	background: #fff;	/*背景色*/

}


/*ボックス内の段落タグ設定*/

#main .list p {

	padding: 0px;
}
/*ボックス内の写真設定*/


#main .list figure img {

	float: left;	/*画像を左へ回り込み*/

	width: 20%;		/*写真の幅*/

	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/

	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/

	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 1%;
}
/*ボックス内のh4タグ設定*/


#main .list h4 {

	margin-bottom: 0.5em;
	color: #d9c7b8;		/*文字色*/

	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
/*

ボックス内のh4タグの１文字目への設定*/

#main .list h4::first-letter {

	border-left: 3px solid #d9c7b8;	/*左側の線の幅、線種、色*/

	padding-left: 10px;	/*線と文字との余白*/

}



/*h4タグ直下に画像がある場合の段落タグ設定*/

#main .list h4 + figure ~ p {

	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/

}



/*h4タグ直下に画像がある場合のtableタグ設定*/

#main .list h4 + figure ~ table {

	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/

	width: 75%;			/*テーブル幅*/

}





/*一覧ページの各物件ボックス内のテーブル

---------------------------------------------------------------------------*/

#main .list table {
	font-size: 12px;	/*文字サイズ*/

	background: #FFF;	/*背景色*/

	width: 100%;		/*テーブル幅*/

	margin-bottom: 5px;
}
#main .list table,
#main .list table td,
#main .list table th{

	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/

}


#main .list table td,
#main .list table th{

	padding: 1%;	/*テーブル内の余白*/

}



/*色のついた見出しブロック*/
#main .list table th{

	width: 18%;		/*幅*/

	text-align: center;		/*文字をセンタリング*/

	font-weight: normal;	/*デフォルトの太字を標準にする設定*/

	background: #dfe0c8;	/*背景色*/
}
/*白い説明用ブロック*/


#main .list table td {

	width: 30%;	/*幅*/

}



/*商品詳細ページの画像切り替え

---------------------------------------------------------------------------*/

/*大きな画像のボックスと説明文を入れるボックス*/

#item-image {
	position: relative;

}


/*大きな画像の１行目*
/
#item-image #item_image1 {

	z-index:2;

	position:relative;

	overflow:hidden;

}

/*大きな画像の２行目*
/
#item-image #item_image2 {

	z-index:1;

	position:absolute;

	left:0px;

	top:0px;

	overflow:hidden;
}
/*サムネイル画像*/


.thumbnail {

	width: 100px;	/*画像の幅*/

	height: 100px;	/*画像の高さ*/

	border: 1px solid #ccc;	/*枠線の幅、線種、色*/

	margin-bottom: 5px;
}
.thumbnail:hover {

	border: 1px solid #000;	/*マウスオン時の枠線の幅、線種、色*/

}



/*サブコンテンツ（左側ブロック）

---------------------------------------------------------------------------*/

#sub {

	float: left;	/*左側に回り込み*/

	width: 250px;	/*サブコンテンツ幅*/

	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/



#sub h2 {

	padding-bottom: 10px;		/*下への余白*/

}



/*subコンテンツのh2タグの１文字目への設定*/

#sub h2::first-letter {
	border-left: 3px solid #696969;	/*左側のアクセント用ラインの幅、線種、色*/

	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/

}




/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/

/*メニュー全体の設定*/

#sub ul.submenu {

	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/

	border-top: solid 1px #d1d1d1;	/*上の線の線種、幅、色*/

}


/*メニュー１個ごとの設定*/

#sub ul.submenu li {

	background: #fff;	/*背景色*/

	border-bottom: solid 1px #d1d1d1;	/*下の線の線種、幅、色*/
}



#sub ul.submenu li a {

	text-decoration: none;

	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/

	-webkit-transition: 0s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/

	transition: 0.5s;			/*同上*/

}


#sub ul.submenu li a:hover {

	background: #ffe4e1;	/*背景色*/

	color: #b22222;			/*文字色*/

}





/*サブコンテンツ内のbox1

---------------------------------------------------------------------------*/

#sub .box1 {

	padding: 15px;			/*ボックス内の余白*/

	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/

	background: #ffe4e1;	/*背景色*/

	border: solid 1px #d1d1d1;	/*線の線種、幅、色*/

}


/*box1内のメニューの設定*/
#sub .box1 ul.submenu {

	margin-bottom: 0px;
}







/*サブコンテンツ　物件ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub section.box2 {
	font-size: 11px;	/*文字サイズ*/
	background-color: #ffe4e1;	/*ボックス色*/										/*同上*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	border-right: 1px solid #fff;	/*右の線の幅、線種、色*/
	border-left: 1px solid #fff;	/*左の線の幅、線種、色*/
	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: #F6D8CE;	/*マウスオン時のボックス色*/
}
/*h4見出しタグ*/
#sub section.box2 h4 {
	color: #ff5959;		/*文字色*/
	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;
}

/*フッター設定

---------------------------------------------------------------------------*/

footer {


	clear: both;

	text-align: center;

	background: #d9c7b8;	/*背景色*/

	color: #fff;			/*文字色*/

}


footer .pr {

	display: block;
	font-size: 80%;
}


footer a {

	text-decoration: none;

	color: #fff;			/*文字色*/

}








/*トップページ内「更新情報・お知らせ」ブロック

---------------------------------------------------------------------------*/

/*ブロック全体の設定*/

#new {

	margin-bottom: 15px;
}


#new dl{

	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 250px;	/*ボックスの高さ*/

	padding-left: 15px;

}



/*日付設定*/

#new dt {

	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/

	float: left;
	width: 8em;

}



/*記事設定*/

#new dd {

	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/

	padding-left: 8em;
}





/*テーブル１

---------------------------------------------------------------------------*/
.ta1 {

	width: 100%;

	margin-bottom: 15px;

	background: #fff;	/*背景色*/

}



.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/

	line-height: 2;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{

	width: auto;

	text-align: left;

	color: #FFF;	/*文字色*/

	background: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/

	background: -webkit-linear-gradient(#4b4b4b, #333);	/*グラデーション*/

	background: linear-gradient(#4b4b4b, #333);			/*同上*/

}



/*テーブル内の左側*/

.ta1 th{

	width: 140px;

	padding: 10px;

	text-align: center;

	background: #f0f0f0;	/*背景色*/

}


/*テーブル内の右側*/
.ta1 td{

	padding: 10px;
}






/*inputボタンの設定

---------------------------------------------------------------------------*/

input[type="submit"],
input[type="button"],
input[type="reset"] {

	width: 250px;
	/*ボタン幅*/

	padding: 10px;	/*ボタン内の余白*/

	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/

	background: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/

	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*グラデーション*/

	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/

	font-size: 16px;	/*文字サイズ*/

	letter-spacing: 0.1em;	/*文字間隔を少し広くする設定*/

	border: 1px solid #999;	/*枠線の幅、線種、色*/

}



/*ボタンのマウスオン時の設定*/

input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {

	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/

	background: -webkit-linear-gradient(#e5e5e5, #FFF);	/*グラデーション*/

	background: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}




/*PAGE TOP設定

---------------------------------------------------------------------------*/

#pagetop {

	clear: both;
}
#pagetop a {

	color: #FFF;		/*文字色*/

	font-size: 10px;	/*文字サイズ*/

	background: #d9c7b8;	/*背景色*/

	text-decoration: none;

	text-align: center;

	width: 50px;		/*幅*/

	line-height: 50px;	/*高さ*/

	display: block;
	float: right;
}



/*マウスオン時*/

#pagetop a:hover {

	background-color: #666;	/*背景色*/

	color: #FFF;			/*文字色*/
}




/*一覧ページのボックス右下のオプションマーク

（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）

---------------------------------------------------------------------------*/

.option1 {

	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,10px);

	-ms-transform: rotate(-45deg) translate(37px,10px);

	transform: rotate(-45deg) translate(37px,10px);
}
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;

	right: 0px;

	bottom: 0px;

	-webkit-transform: rotate(-45deg) translate(37px,10px);

	-ms-transform: rotate(-45deg) translate(37px,10px);

	transform: rotate(-45deg) translate(37px,10px);
}



h2 span.option2 {

	width: auto;

	padding: 0px 5px;

	position: static;

	-webkit-transform: none;

	-ms-transform: none;

	transform: none;

	display: inline-block;

}



/*FAQ・LINK共通設定

---------------------------------------------------------------------------*/

.faq, 
.link {

	padding: 0px 15px;
}



/*質問（又はサイト名）の設定*/

.faq dt,
.link dt {

	color: #d74252;	/*文字色*/

	font-weight: bold;	/*太字*/

	padding-top: 15px;
}
/*回答（又は説明部分）の設定*/


.faq dd,
.link dd {

	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/

	overflow: hidden;

	padding-bottom: 15px;
}




/*トップページの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;}

.clear {clear: both;}
ul.disc
 {padding: 0em 25px 1em;list-style: disc;}


.color1 {color: #b6aa77 !important;}

.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;width: 30%;}

img.fl {float: left;margin-right: 10px;margin-bottom: 10px;width: 30%;}

.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}

.sh{display:none;}
.dn{display:none;}




