@charset "utf-8";

/*各cssの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*アニメーションのフレーム設定。全100コマ（0%〜100%）アニメーションだと思って下さい。
---------------------------------------------------------------------------*/
/*透明から色100%までの設定*/
@keyframes frame1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*全体の設定
---------------------------------------------------------------------------*/
html,body,#container {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,form,select {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

video {max-width: 100%;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	/*color: #666;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	/*color: #427011;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1400px;	/*サイトの最大幅*/
	margin: 0 auto;
}
#top {
	position: relative;z-index: 1;overflow: hidden;
	/*padding: 30px 3%;	/*上下、左右へのボックス内の余白*/
}


/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 110px;	/*高さ*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線、色*/
}
/*ロゴ画像*/
header #logo {
	float: left;	/*左に回り込み*/
	width: 300px;	/*画像幅*/
	padding-top: 10px;	/*上に空ける余白。上下のバランスをここで調整します。*/
	padding-left: 3%;	/*左に空ける余白。*/
}
/*右側の電話番号ブロック*/
#tel {
	float: right;			/*右に回り込み*/
	padding-top: 15px;		/*上に空ける余白。上下のバランスをここで調整します。*/
	padding-right: 3%;		/*右に空ける余白。*/
	font-size: 12px;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	line-height: 1.5;		/*行間を少し狭く。基本は上の「body」のline-heightです。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}
/*電話番号の行への追加指定*/
#tel span {
	font-size: 20px;	/*文字サイズを大きく*/
	color: #427011;		/*文字色*/
}
#tel span a {
	color: #427011;		/*文字色*/
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	height: 80px;		/*メニューの高さ。下の「#menubar li a」の、「height」と「padding-top」と「border-bottom」の数字を合計した数字にする。*/
	text-align: center;	/*文字を中央に*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #f5f5f5);/*背景グラデーション*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;		/*左に回り込み*/
	width: 20%;			/*幅。今回は５個メニューがあるので100÷5=20*/
	font-size: 20px;	/*文字サイズ*/
}
#menubar li a {
	text-decoration: none;display: block;
	height: 60px;		/*高さ。変更する場合は上の#menubarのheightの注意書きを読んで下さい。*/
	padding-top: 17px;	/*上に追加する余白。変更する場合は上の#menubarのheightの注意書きを読んで下さい。*/
	border-bottom: 3px solid transparent;	/*下線の設定。ここではtransparentを使って透明にしています。*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	border-bottom: 3px solid #427011;	/*下線の幅、線種、色*/
}
/*「▼」アイコンが入ったメニューの設定。「物件を借りる」「物件を買う」*/
.cursor-default {
	cursor: default;	/*マウスオーバー時に通常のカーソルになるように*/
}
.cursor-default::before {
	content: "▼";		/*このマークを表示させる*/
	color: #427011;		/*マークの色*/
	font-size: 12px;	/*マークのサイズ*/
	padding-right: 10px;	/*マークとテキストの間にとる余白*/
	position: relative;bottom: 3px;	/*配置場所の微調整*/
}
/*スマホ用メニューを表示させない*/
#menubar-s,#menubar-s2,#menubar-s3 {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr,#menubar_hdr2,#menubar_hdr3 {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;padding-top: 1px;
	width: 20%;			/*幅。上の「#menubar li」と合わせる。*/
	font-size: 12px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a {
	width: 100%;height: auto;font-weight: normal;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	color: #fff;		/*文字色*/
	padding: 10px 0;	/*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #000;	/*背景色*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed-menu header {
	margin-bottom: 80px;	/*#menubarのheightの数字を指定。#menubarのborderが1px分ありますが大差ないので80でOKです。*/
}
/*上の設定の「is-fixed-menu」を「is-fixed」に変更したものをそのまま記入します。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed header {
	margin-bottom: 80px;
}

/*コンテンツ（mainとsubを囲むブロック。１カラム時の場合はメインコンテツを囲むブロック。）
---------------------------------------------------------------------------*/
#contents {
	position: relative;z-index: 1;overflow: hidden;
	padding: 15px 3%;	/*上下、左右へのボックス内の余白*/
}
/*コンテンツフッター
---------------------------------------------------------------------------*/
#contents_foot {
	position: relative;z-index: 1;overflow: hidden;
	padding: 10px 3%;	/*上下、左右へのボックス内の余白*/
}


/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainブロック*/
#main {
	float: left;	/*左に回り込み*/
	width: 75%;		/*メインコンテンツの幅*/
}
.c1 #main {
	float: none;
	width: auto;
}
/*h2タグ*/
#main h2, #top-contents h2 {
	clear: both;
	padding: .1em 0 .1em .3em;
  border-left: 6px solid #B88743;
  border-bottom: 1px dotted #B88743;
	margin-bottom: 15px;
	margin-top: 25px;
	color: #B88743;
}

/*h2タグの１文字目*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 6px;				/*線と文字との余白*/
}
/*h3タグ*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
}
/*h3タグの１文字目*/
#main h3::first-letter {
	border-left: 3px solid #ccc;	/*左側の線の幅、線種、色*/
	padding-left: 20px;	/*線と文字との余白*/
}
/*段落タグ*/
#main p {
	padding: 0 20px 20px;	/*上、左右、下への余白*/
}
/*他*/
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	margin-top: 30px;
}
#main p + p {
	margin-top: -8px;
}

/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;overflow: hidden;
	margin-bottom: 20px;	/*ボックスの下に空ける余白*/
}
#main .list a {
	text-decoration: none;display: block;overflow: hidden;
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	padding: 3%;	/*ボックス内の余白*/
	background: #fff;	/*背景色*/
}
#main .list a:hover {
	border: 1px solid #999;	/*マウスオン時の枠線の幅、線種、色*/
}
/*各ボックスの設定（※compactタイプへの追加設定）*/
#main .list.compact {
	width: 18.4%;			/*幅*/
	float: left;		/*左に回り込み*/
	margin-left: 1.3%;	/*左側に空けるスペース*/
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;	/*行間を狭くする*/
}
#main .list.compact a:hover {
	overflow: auto;
}
#main .list.compact a {
	height: 260px;	/*高さ*/
	border: none;
	padding: 0;
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	margin-bottom: 0.5em;
	color: #427011;		/*文字色*/
	margin-left: 22%;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内のh4タグの１文字目への設定*/
#main .list h4::first-letter {
	border-left: 3px solid #427011;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/
}
/*ボックス内のh4タグ設定（※compactタイプへの追加設定）*/
#main .list.compact h4 {
	border: none;
	margin-left: 0;
}
/*ボックス内のh4タグの１文字目への設定（※compactタイプへの追加設定）*/
#main .list.compact h4::first-letter {
	border: none;
	padding: 0;
}
/*ボックス内のp(段落)タグ設定*/
#main .list p {
	padding: 0px;
	margin-left: 22%;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内の段落タグ設定（※compactタイプへの追加設定）*/
#main .list.compact p {
	margin-left: 0;
}




/*登録日情報（.date単体で使う場合のスタイルも下にあります。）*/
#main .list .date {
	display: block;
	font-size: 11px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	text-align: right;	/*テキストを右側に*/
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
}

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

/*詳細ページの画像切り替え（imgchg_pack.js）※一般のhtmlテンプレートで利用。
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#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: 80px;	/*画像の幅*/
	height: 80px;	/*画像の高さ*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;
}
.thumbnail:hover {
	border: 1px solid #999;	/*マウスオン時の枠線の幅、線種、色*/
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
#sub {
	float: right;	/*右に回り込み*/
	width: 22%;		/*サブコンテンツの幅*/
}
.c1 #sub {display: none;}
/*h2タグ設定*/
#sub h2 {
	font-size: 16px;	/*文字サイズ*/
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
	line-height: 1.2;	/*行間*/
	padding: 10px;		/*余白*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #dcdcdc;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
}
ul.submenu li a {
	text-decoration: none;display: block;
	padding: 5px 15px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*サブコンテンツ内のbox
---------------------------------------------------------------------------*/
#sub .box {
	padding: 6px;			/*ボックス内の余白*/
	margin-bottom: 7px;	/*ボックスの下に空けるスペース*/
	
}
/*box1内のメニューの設定*/
#sub .box ul.submenu {
	margin-bottom: 0px;
}

/*サブコンテンツ内の物件一覧ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#sub .list {
	position: relative;overflow: hidden;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;	/*行間を狭くする*/
}
#sub .list a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 10px;	/*ボックス内の余白*/
	border-top: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
	background: #fff;	/*背景色*/
}
/*最後ボックスの設定*/
#sub .list:last-of-type a {
	border-bottom: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
}
/*最後ボックスの設定。box内では下に空けるスペースをなくす。*/
#sub .box .list:last-of-type a {
	margin-bottom: 0px;	/*下に空けるスペース*/
}
/*ボックス内のh4タグ設定*/
#sub .list h4 {
	font-size: 13px;
	margin-bottom: 3px;
}
/*ボックス内のp(段落)タグ設定*/
#sub .list p {
	padding: 0;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 12px;		/*文字サイズ*/
	color: #fff;	/*文字色*/
	text-align: center;
}
footer a {color: #fff;}
footer a:hover {color: #fff;}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
	background: url(../images/footer_logo.png) no-repeat 95% center/12%;	/*フッターイメージ画像の読み込み。左から95%、上下中央に配置。幅12%。*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
	line-height: 1.7;
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
	font-size: 14px;	/*文字サイズ*/
}

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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #427011;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*ta1設定
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #f6ebc6;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*テーブル途中に見出しを使いたい場合（※tamidashi）*/
.ta1 .tamidashi {
	width: auto;
	background: #f6ebc6;	/*背景色*/
	text-align: left;		/*文字を左寄せ*/
}
/*ta1テーブル*/
.ta1 {
	width: 100%;
	table-layout: fixed;
	margin: 0 0 20px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta1 th {
	width: 150px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f5f5f5;	/*背景色*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
}
.ta1 td .specialbox img {
	vertical-align: middle;
}
/*labelタグ*/
.ta1 td label {display: inline-block;}

/*inputボタン（btn）
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #427011;	/*枠線の幅、線種、色*/
	font-size: 20px;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #427011;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*マウスオン時の設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;		/*背景色*/
	color: #427011;			/*文字色*/
}

/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1,option2共通*/
span.option1, span.option2 {
	text-align: center;
	display: block;
	font-size: 10px;	/*文字サイズ*/
	line-height: 1.5;	/*帯の高さ*/
	width: 120px;		/*幅*/
	position: absolute;
	left: 0px;	/*ボックスに対してに左からの配置指定*/
	top: 0px;	/*ボックスに対しての上からの配置指定*/
	transform: rotate(-45deg) translate(-36px,-15px);	/*45度回転、移動の指定。*/
	color: #FFF;	/*文字色*/
	background: #999;	/*背景色*/
}
/*option1への追加設定*/
span.option1 {
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
}
/*option3（試用版の場合は「キャンペーン」）*/
span.option3 {
	display: inline-block;line-height: 1;
	background: #ee6500;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 30px;	/*角丸の指定。大きめの数字であれば適当で構いません。*/
	padding: 3px 10px;		/*上下、左右への余白*/
	font-size: 12px;		/*文字サイズ*/
}
/*h2タグ内で使った場合のoption1とoption2とoption3*/
h2 span.option1, h2 span.option2, h2 span.option3 {
	width: auto;
	position: static;
	transform: none;
	display: inline-block;
	font-size: 15px;
	margin-left: 10px;
	padding: 0px 5px;
}

/*NEWアイコン、UPアイコン
---------------------------------------------------------------------------*/
/*アイコン共通*/
.newicon, .upicon {
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}
/*NEWアイコンへの追加指定*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
}
/*UPアイコンへの追加指定*/
.upicon {
	background: #0072ff;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*こだわりアイコン
---------------------------------------------------------------------------*/
.icon {
	display: inline-block;
	padding: 0 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin: 0 2px 2px 0;
	line-height: 1.5;
}

/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル。※ページ内へのリンクで使う。
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -120px;
	padding-top: 120px;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {display: none;}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: frame1;	/*冒頭のアニメーションで指定しているkeyframesの名前*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	border-radius: 50%;	/*角丸の設定。円形にする。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 40px;
}
ol {
	padding: 0 20px 20px 45px;
}

/*ページャー
---------------------------------------------------------------------------*/
.pager {
	clear: both;text-align: center;line-height: 1;
	padding: 20px 0;
}
.pager a {text-decoration: none;}
.pager span.current,.pager span a {
	display: inline-block;
	padding: 14px 16px;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.pager span.current {
	border: 1px solid #ccc;
	background: #eee;
	color: #999;
}
.pager span a {
	border: 1px solid #ccc;
	background: #fff;
}

/*詳細ページ
---------------------------------------------------------------------------*/
/*大きな画像と、サムネイル画像を囲むブロック*/
#item-photo {
	padding-bottom: 20px;
	text-align: center;
}
/*大きな画像への指定*/
#item-photo #bukken_image {
	width: 80%;	/*幅*/
	padding-bottom: 20px;
}
/*サムネイル画像のサイズ指定*/
#item-photo img {
	width: 70px;
}

/*「賃貸物件」「売買物件」ごとに「価格を選択」ブロックの表示を切り替える
---------------------------------------------------------------------------*/
.bukken_chintai,.bukken_baibai {display: none;}

body.bukken1 .bukken_chintai,
body.bukken2 .bukken_chintai {
	display: block;
}
body.bukken11 .bukken_baibai,
body.bukken12 .bukken_baibai,
body.bukken13 .bukken_baibai {
	display: block;
}

/*「日本地図」→「土地」の検索ページに「築年数」が表示されないように
---------------------------------------------------------------------------*/
body.bukken13 .chiku-nen {
	display: none;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #eee;border: 1px solid #ccc;padding: 5px 10px !important;margin: 0 20px 20px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #427011 !important;}
.color2, .color2 a {color: #ff0000 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fl {float: left;}
img.fl {float: left;width:30%;margin-right: 20px;margin-bottom: 20px;}
.fr {float: right;}
img.fr {float: right;width:30%;margin-left: 20px;margin-bottom: 20px;}
.big1 {font-size: 28px !important;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.date {text-align: right;color: #999;font-size: 11px;}
iframe.map {border: none;width: 100px;height: 22px;margin-bottom: -5px;}


/*画面幅1401px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1401px){

/*inner共通
---------------------------------------------------------------------------*/
#menubar .inner {
	width: 1401px;	/*サイトの幅。この指定がないと上部メニューが一瞬段落ちする場合があります。*/
}

/*メインメニューとドロップダウンメニューの設定変更。
メニュー数が5個なので、1401÷5=280pxになります。
---------------------------------------------------------------------------*/
#menubar li, #menubar ul.ddmenu {
	width: 280px;
}

}



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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: auto;	/*高さ*/
	text-align: center;
	padding: 5px 0;
}
/*ロゴ画像*/
header #logo {
	float: none;
	margin: 0 auto;
}
/*右側の電話番号ブロック*/
#tel {
	float: none;padding: 0;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	display: block;overflow: auto;height: 100%;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: frame1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2,#menubar_hdr3 {
	display: block;text-decoration: none;
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2,#menubar_hdr3 {
	padding-left: 35px;
}
/*子メニューメニューブロック全体*/
#menubar-s2,#menubar-s3 {
	display: block;
	margin-top: 10px;
	border-radius: 5px;
	background: #fff;
}
/*「＞」アイコン設定*/
#menubar_hdr2.close,#menubar_hdr3.close {
	background: url(../images/arrow2.png) no-repeat 10px 18px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open,#menubar_hdr3.open {
	background: url(../images/arrow3.png) no-repeat 10px 18px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a,#menubar-s3 li a {
	color: #666 !important;
	border-bottom: 1px solid #999 !important;
	padding: 5px;
}
#menubar-s2 li:last-child a,#menubar-s3 li:last-child a {
	border-bottom: none !important;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 18px;		/*上からの配置場所*/
	right: 10px;	/*右からの配置場所*/
	border-radius: 50%;	/*円形にする*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border: 1px solid #fff;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #427011 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #427011 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu header {
	margin-bottom: 0px;
}

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

/*ヘッダーメニューが固定されなくなるので、再設定。
---------------------------------------------------------------------------*/
.link {
	margin-top: -30px;
	padding-top: 30px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px !important;}
.sh {display:block;}
.pc {display:none;}
	
/*都道府県
---------------------------------------------------------------------------*/
.cp_tab {
	display: none;
}
}

/*画面幅801px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:801px){
	.cp_qa {
		display: none;
}
}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 160px;
}
/*電話番号の行への追加指定*/
#tel span {
	font-size: 16px;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*h2タグ,h3タグ*/
#main h2, #top-contents h2, #main h3 {
	font-size: 16px;
	padding: 2px 10px;
}
/*h2,h3タグの１文字目*/
#main h2::first-letter, #main h3::first-letter {
	padding-left: 10px;
}
/*段落タグ*/
#main p {
	padding: 0 10px 20px;	/*上、左右、下への余白*/
}

/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定（※compactタイプへの追加設定）*/
#main .list.compact {
	width: auto;
	float: none;
	margin-left: 0;
	font-size: 12px;
	font-size: 2.93vw;
}
#main .list.compact a {
	height: auto;
}


/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
	font-size: 12px;
	font-size: 2.93vw;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	background: none;	/*フッターイメージ画像を消す*/
}
/*１行分の設定*/
#footermenu ul {
	width: 48%;
	padding-bottom: 10px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0px 10px;		/*上下、左右へのブロック内の余白*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption, .ta1 .tamidashi {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 10px 20px 25px;
}
ol {
	padding: 0 10px 20px 25px;
}

/*詳細ページ
---------------------------------------------------------------------------*/
/*大きな画像への指定*/
#item-photo #bukken_image {
	width: 100%;	/*幅*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.fl {float: none;}
img.fl {float: none;display: block;width:90%;margin: 0 auto 20px;}
.fr {float: none;}
img.fr {float: none;display: block;width:90%;margin: 0 auto 20px;}
.big1 {font-size: 16px !important;}

}


.cp_tab *, .cp_tab *:before, .cp_tab *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_tab {
	margin: 1em auto;
}
.cp_tab > input[type='radio'] {
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: none;
	-webkit-appearance: none;
	        appearance: none;
	display: none;
}
.cp_tab .cp_tabpanel {
	display: none;
}
.cp_tab > input:first-child:checked ~ .cp_tabpanels > .cp_tabpanel:first-child,
.cp_tab > input:nth-child(3):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(2),
.cp_tab > input:nth-child(5):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(3),
.cp_tab > input:nth-child(7):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(4),
.cp_tab > input:nth-child(9):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(5),
.cp_tab > input:nth-child(11):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(6) {
	display: block;
}
.cp_tab > label {
	position: relative;
	display: inline-block;
	padding: 1px;
	cursor: pointer;
	border: 1px solid transparent;
	border-bottom: 0;
	width: 16%;
	text-align: center;
}
.cp_tab > label:hover,
.cp_tab > input:focus + label {
	color: #0066cc;
}
.cp_tab > input:checked + label {
	margin-bottom: -1px;
	border-bottom: 1px solid #ffffff;/*背景色と同じ*/
	opacity: 0.4;
	
}
.cp_tab .cp_tabpanel {
	padding: 0.5em 1em;
	border-top: 1px dashed #cccccc;
}
@media (max-width: 480px) {
	.cp_tab {
		width: 100%;
		font-size: 0.8em;
	}
	.cp_tab label {
		padding: 0.5em;
	}
}


*, *:before, *:after {
	box-sizing: border-box;
}
.col_40{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_40 > div{
	width: 25%;
	padding: 3px;
}
@media screen and (max-width: 960px) {
	.col_40 > div{
		width: 33.33333%;
	}
}
@media screen and (max-width: 480px) {
	.col_40 > div{
		width: 50%;
	}
}


.btn-flat-border {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #B88743;
  border: solid 1px #B88743;
	width: 100%;
	text-align: center;
}

.btn-flat-border:hover {
  background: #B88743;
  color: white;
}

.btn-flat-border2 {
	display: inline-block;
	text-decoration: none;
	border-bottom: dotted 1px #909090;
	width: 100%;
}


.btn-flat-border3 {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color:#8A8A8A;
  border: solid 1px #8A8A8A;
	width: 100%;
	text-align: center;
}

.btn-flat-border3:hover {
  background: #8A8A8A;
  color: white;
}


.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
}
.cp_qa .cp_actab {
	padding: 20px 0;
	border-bottom: 1px dotted #cccccc;
}
.cp_qa label {
	font-size: 1.5em;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
}
.cp_qa .cp_actab-content {
	font-size: 1.3em;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 40px;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 10px;
	opacity: 1;
}
.cp_qa .cp_plus {
	font-size: 2.4em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 3px 0 0 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}



*, *:before, *:after {
	box-sizing: border-box;
}
.col_3{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_3 > div{
	width: calc(100% / 3);
	padding: 5px;
}
@media screen and (max-width: 800px) {
	.col_3 > div{
		width: 50%;
	}
}
@media screen and (max-width: 480px) {
	.col_3 > div{
		width: 100%;
	}
}


figure {
	position: relative;
	display: inline-block;
	margin-left: 0px;
	width: 100%;
}
	figure img {
		width: 100%;
		height: 200px;
		vertical-align: top;
		object-fit: cover;
	}
	figure figcaption {
		position: absolute;
		left: 0;
		bottom: 0;
		padding: 5px 10px;
		font-size: 0.9em;
		color: #fff;
		background: rgba(51,51,51,0.50);
		width: 100%;
	}

figure figcaption.menu {
		position: absolute;
		left: 0;
		bottom: 0;
		padding: 5px 10px;
		font-size: 90%;
		color: #fff;
		background:rgba(3,0,0,0.5);
		width: 100%;
		font-weight: 600;
	}


.top_img {
  position: relative;
  }

.top_img p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  }

.top_img img.top_img_bg {
  width: 100%;
  }



*, *:before, *:after {
	box-sizing: border-box;
}
.col_5{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_5 > div{
	width: 20%;
	padding: 3px;
}
.col_5 > div > div{
	position: relative;
	overflow: hidden
}
@media screen and (max-width: 1100px) {
	.col_5 > div{
		width: 25%;
	}
}
@media screen and (max-width: 480px) {
	.col_5 > div{
		width: 49%;
	}
}



.msr_box01 {
  border:1px solid #B88743;
  width: 100%;
}
.msr_box01 a{
  background-color: #FFFFFF;
  box-sizing: border-box;
  display:block;
  padding: 6px;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
	text-decoration: none;
	color: #B88743;
	font-size: 0.86em;
}

.msr_box01 span{
	border-top:1px solid #B8874;
	margin-top:-3%;
	text-align:right;
	font-size:.8em;
}
.msr_box01 img{
  margin:0 0 5px;
	height: 100px;
	width: 100%;
object-fit: cover;
}
.msr_box01 .ttl {
  font-size: 16px;
  line-height: 1.6;
text-decoration: none;
}
.msr_box01 p {
  font-size: 13px;
  line-height: 1.6;
}
.msr_box01 a:hover{
  opacity: 0.8;
}



.contents-wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0rem;
}
.contents-wrap:nth-child(odd) {
	flex-direction: row-reverse;
}

.contents-text {
	width: 50%; /*flex: 2;*/
}
.contents-img {
	width: 50%; /*flex: 1;*/
}

.contents-text h2 {
	margin-bottom: 2rem;
	font-size: 2.2rem;
}

.contents-img img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px){
	.contents-wrap,
	.contents-wrap:nth-child(odd)  {
		flex-direction: column;
	}

	.contents-text,
	.contents-img {
		width: 100%; /*flex: 1;*/
	}

	.contents-text {
		padding: 1rem 0 2rem;
	}

	.contents-text h2 {
		text-align: center;
	}
}


h4.title02 {
  position: relative;
  text-align: center;
font-family: 'Righteous', cursive;
	font-size: 2em;
	margin-bottom: 5%;
}
h4.title02 span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1em;
  background-color: #fff;
  text-align: left;
}
h4.title02::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

#main h3.title03 {
	margin-bottom: 20px;
	border-bottom: 1px dotted #ccc;/*下線の幅、線種、色*/
	padding: 0px 0px;		/*上下、左右へのボックス内の余白*/
	
}

.pc01{
	margin-bottom: 7%;
}



table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  color: #A4A4A4;
}

table tr {
  background-color: #fff;
  padding: .35em;
  border-bottom: 1px dotted #ccc;
}
table tr:last-child{
   border-bottom: 2px solid #A4A4A4;
}
table th,
table td {
  padding: 1em 10px 1em 1em;
}
tbody th {
    color: #A4A4A4;
}
.txt{
   text-align: left;
   font-size: .85em;
}
.price{
   text-align: right;
}
@media screen and (max-width: 600px) {
  table {
    border: 0;
    width:100%
  }
  table th{
    display: block;
    border-right: none;
    border-bottom: 2px solid #A4A4A4;
    padding-bottom: .6em;
    margin-bottom: .6em;

  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    display: block;
    margin-bottom: 2em;
        border-bottom: 2px solid #A4A4A4;
  }
  
  table td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: .8em;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  
  table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}

p.page{
	font-size: 0.9em;
}

h5.title03{
padding: 0 20px 10px;
	font-weight: 600;
}



.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}



/**********************
モーダルウィンドウ
**********************/
 
.modal-window {
-webkit-transform: translate(0, 100%);
-moz-transform: translate(0, 100%);
-o-transform: translate(0, 100%);
-ms-transform: translate(0, 100%);
transform: translate(0, 100%);
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999;
opacity: 0;
line-height: 1.3;
display: none9;
}
.modal-window:target {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-o-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
opacity: 1;
}
.is-active.modal-window {
display: block9;
}
.modal-window:target {
display: block9;
}
.modal-window .modal-inner {
position: absolute;
top: 100px;
left: 5%;
z-index: 20;
padding:5%;
margin:0 auto;
width: 80%;
overflow-x: hidden;
border-radius: 6px;
background: #fff;
-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}
 
.modal-window .modal-close {
display: block;
text-indent: -100px;
overflow: hidden;
}
.modal-window .modal-close:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
background: #333;
	-moz-opacity: 0.7;
	opacity: 0.7;
}
.modal-window .modal-close:after {
content: '\00d7';
position: absolute;
top: 70px;
right:15%;
z-index: 20;
margin:0 auto;
background: #fff;
border-radius: 2px;
padding: 10px 10px;
text-decoration: none;
text-indent: 0;
}
 
.modal-window {
-webkit-transition: opacity 0.4s;
-o-transition: opacity 0.4s;
transition: opacity 0.4s;
}
 
 
 
/**********************
スマホのフッターメニュー
**********************/
ul.footer_menu {
	margin: 0 auto;
	padding: 12px 0;
	width: 100%;
	overflow: hidden;
	display: table;
        table-layout: fixed;
        text-align: center;
        width: 100%;
}
 
ul.footer_menu li {
	margin: 0;
	padding: 0;
	display: table-cell;
	vertical-align:middle;
	list-style-type: none;
	font-size: 13px;
       line-height: 15px;
}
 
ul.footer_menu li a i{
	font-size: 24px;
}
 
ul.footer_menu li a {
	border: none;
	display: block;
	color: #fff;
	text-align: center;
	text-decoration: none;
}
 
.footer_menu {
	position: fixed;
	bottom: 0;
	left:0;
	background: #7A7A7A;
	z-index: 9999999999;
	-moz-opacity: 1.0;
	opacity: 1.0;
}
 
 
/**********************
SNSの部分
***********************/
 
 
.modal-window .modal-inner.sns{
	margin:0 auto;
	text-align:center;
}
.modal-inner ul {
	list-style:none;
}
.modal-inner li {
	list-style:none;
	float:left;
	width:25%;
	margin:3%;
}
.modal-inner li a {
	font-size:150%;
	position:relative;
	display:block;
	padding:10px;
	color:#fff;
	border-radius:6px;
	text-align:center;
	text-decoration: none;
}
.modal-inner li a:hover {
	box-shadow:none;
}
 
 
.share li a {display : block;
    padding : 10px 5px;
    color : #fff;
    font-size : 14px;
    text-decoration : none;
    text-align : center;}
.share li a:hover {opacity :0.8;
    color : #fff;}
.share li a:visited{ color: #fff;}
 
.tweet a{background-color : #55acee;}
.facebook a{background-color : #315096;}
.googleplus a{background-color : #dd4b39;}
.hatena a{background-color : #008fde;}
.line a{background-color: #00c300;}
.pocket a{background-color :#f03e51;}
.rss a {background-color: #ff8c00;}
.feedly a {background-color: #6cc655;}
 
.share-sm {margin:0;}
.share-sm ul:after {content : "";
    display : block;
    clear : both;}

/********************** 
メニューの部分
**********************/
 
.mod li{
  float:none;
  display:block;
  width:100%;
  margin:0;}
 
.mod li a {
  text-align: left;  /* メニューを左寄せ */
  font-weight: bold;  /* メニューを太字に */
  background: #ccc;  /* メニューの背景色 */
  margin: 2%;
font-size: 14px;  /* メニュー文字サイズ */
}

/*画面幅801px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:801px){
ul.footer_menu{
		display: none;
	}
}


#social-icon a {
  position: relative;
  display: block;
  float: left;
  width:100%;
  margin: 0 5px 5px 0;
  padding: 0 0 0 40px;
  background: #c6bb80;
  color: #fff;
  text-decoration: none;
  text-align:center;
  line-height: 40px;
}
#social-icon i {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  background: #bcaf68;
  line-height: 40px;
  text-align: center;
}
#social-icon i:before { padding 0; line-height: 40px; }
#social-icon a:hover i { background: #b2a251; }

p.midashi2{
	font-weight: 600;
}




@media screen and (max-width:800px){
.soc01{
		display: none;
	}
}


/*メールフォーム
------------------------------------------------------------------------------------------------------------------------------------------------------*/

table.ta2 {
  /*border: 1px solid #c6c6c6;*/	/*テーブルの枠線の幅、線種、色*/
  width: 100%;
  margin:0 auto;
  margin-top:10px;
}
table.ta2 th,
table.ta2 td {
  padding: 10px;
  background-color:rgba(255, 255, 255, 0.4);
  border: 1px solid #e5e5e5;
  vertical-align: middle;
}
table.ta2 th {
	font-size:0.8em;
	font-weight:bold;
  /*background-color: #ff6699;*/
  background:#f6f5f2;
  text-align: center;
  vertical-align: middle;
  width: 25%;
}

@media screen and (max-width: 800px) {
	table.ta2 {
  width: 98%;
}
  table.ta2 {
    border-top: 1px solid #999;
  }
  table.ta2 td {
    display: block;
    /*text-align: center;*/
  }
  table.ta2 th {
    display: block;
    border-top: none;
    border-bottom: none;
	width:auto;
  }
}

.title00 {
	margin:0 auto;
	width:90%;
	background-color:#ff6699;
	padding-bottom:5px;
	padding-top:5px;
	padding-left:15px;
	padding-right:15px;
	color:#FFF;
}

.title01 {
	margin-top:5px;
	padding-right:20px;
	padding-left:20px;
	text-align:left;
}
.title02 {
	margin-top:-5px;
	padding-right:20px;
	padding-left:20px;
	text-align:left;
}

/*ボックス全体*/
.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 100%;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin:10px 30px;
	font-size: 100%;
	color: #ff7abd;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-left: 4px solid #ff7abd;		/*左の線の幅、線種、色*/
	border-bottom: 1px solid #ff7abd;	/*下の線の幅、線種、色*/
	font-weight:bold;
    cursor :pointer;
    transition: all 0.5s;
}

/*ラベルホバー時*/
.accbox label:hover {
    /*background :#85baef;*/
	opacity:0.5;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + .accshow {
    height: auto;
    padding: 5px;
    /*background: #eaeaea;*/
    opacity: 1;
}

/*アイコンを表示*/
.accbox label:before {
    content: '\f054';
    font-family: 'FontAwesome';
    padding-right: 8px;
}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f078';
}

.box11 {
	padding:5px;
	margin:2px 30px;
}
.newinfo {
	
}
section.content .newinfo{
padding:20px;
border:1px solid #f1f1f1;
overflow:hidden;
background-color:#fffef5;
height:100px;
overflow:auto;
}
section.content02 .newinfo{
padding:20px;
border:1px solid #f1f1f1;
overflow:hidden;
background-color:#fffef5;
height:100px;
overflow:auto;
}
/*input[type=text] {
width: 100%;
height: 20px;
box-sizing: border-box;
border-radius:5px
}*/
/*textarea {
    resize: none;
	width:100%;
	box-shadow: none;
	border-radius:5px
	
}*/


.btn04 {
	display: inline-block;
    padding: 2px 20px;
	border-radius: 25px;
    text-decoration: none;
    color: #FFF;
	background-color:#ed97ff;
    transition: .4s;
	text-align:left;
}
.btn04:hover {
    background-image: -webkit-linear-gradient(45deg, #FFC107 0%, #f76a35 100%);
    background-image: linear-gradient(45deg, #FFC107 0%, #f76a35 100%);
}

.select-box01 select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.select-box01 select {
	width: 150px;
	padding: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #999;
	background: #eee;
	background: url("http://4ts.jp/bbq/theme/BBQ/images/arrow01.png") right 50% no-repeat, -webkit-linear-gradient(top, #fff 0%,#fffafe 100%);
	background: url("http://4ts.jp/bbq/theme/BBQ/images/arrow01.png") right 50% no-repeat, linear-gradient(to bottom, #fff 0%,#fffafe 100%);
	background-size: 20px, 100%;
	border-radius: 5px;
}

.select-box02 select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.select-box02 select {
	width: 110px;
	padding: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #999;
	background: #eee;
	background: url("http://4ts.jp/bbq/theme/BBQ/images/arrow01.png") right 50% no-repeat, -webkit-linear-gradient(top, #fff 0%,#fffafe 100%);
	background: url("http://4ts.jp/bbq/theme/BBQ/images/arrow01.png") right 50% no-repeat, linear-gradient(to bottom, #fff 0%,#fffafe 100%);
	background-size: 20px, 100%;
	border-radius: 5px;
}

.select-box03 select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.select-box03 select {
	width: 130px;
	padding: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #999;
	background: #eee;
	background: url("http://4ts.jp/bbq/theme/BBQ/images/arrow01.png") right 50% no-repeat, -webkit-linear-gradient(top, #fff 0%,#fffafe 100%);
	background: url("http://4ts.jp/bbq/theme/BBQ/images/arrow01.png") right 50% no-repeat, linear-gradient(to bottom, #fff 0%,#fffafe 100%);
	background-size: 20px, 100%;
	border-radius: 5px;
}
.txbox01 {
/*width: 80%;*/
border-radius:5px;
box-shadow:none;
padding: 8px 8px;
}
.txbox02 {
/*width: 95%;*/
height: 40px;
border-radius:5px;
padding: 10px 8px;
text-indent: 1em;
}
.text03{
width: 100%;
border: 1px solid #ccc;
border-radius:5px;
box-shadow:none;
padding: 8px 8px;
}

.radio04-input{
  display: none;
}
.radio04-parts{
transition:.4s;
}
.radio04-input:checked + .radio04-parts{
  color: rgba(255,85,94,1);
}
.radio04-parts::before{
  content: "";
  display: block;
  
  top: 1px;
  left: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  z-index:-1;
  transform: scale(0,0);
  background: rgba(255,85,94,.3);
  position: absolute;
}
.radio04-parts::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ff6699;
  transition:.4s;
  transform: scale(0,0);
}

.radio04-input:checked + .radio04-parts::after{
  transform: scale(1,1);
  border-radius: 50%;
  background: #ff555e;
}
.radio04-input:checked + .radio04-parts:before {
  animation: pulsate .8s ease-out;  /* スピードなど */
}


.checkbox04-input{
  display: none;
}
.checkbox04-parts{
  position: relative;
  padding: 15px 20px 15px 53px;
  transition:.3s;
  color: #aaa;
  border-radius: 8px;
  border: 1px solid #ddd;
  display:inline-block;
  line-height:1;
margin-bottom: 5px;
}
@media screen and (max-width: 800px) {
.checkbox04-parts{
min-width: 60%;
}
}
.checkbox04-input:checked + .checkbox04-parts{
  background: #A4A4A4;
  color: #fff;
  border: 1px solid #A4A4A4;
}
.checkbox04-parts::before{
  content: "";
  display: block;
  posi15px;
  left: 9px;
  width: 30px;
  height: 15px;
  border-radius: 15px;
  border: 1px solid #aaa;
  background: #fff;
  position: absolute;
}
.checkbox04-parts::after{
  content: "";
  display: block;
  position: absolute;
  top:17px;
  left: 11px;
  width: 13px;
  height: 13px;
  background: #aaa;
  border-radius: 50%;
  transition:.2s;
  display: block;
}
.checkbox04-input:checked + .checkbox04-parts::before {
  border: 1px solid #A4A4A4;
}
.checkbox04-input:checked + .checkbox04-parts::after {
  left: 26px;
  background: #A4A4A4;
}

#botan input {
	background:#fff;
}


@media screen and (max-width: 600px) {
  table.ta2 td {
    text-align:left;
  }
table.ta2 tr {
    display: block;
    border-bottom: none;
	padding: none;
  }
}

.msr_box01 img.aficode{
	height:1px !important;
	width:0 !important;
	border:0 !important;
	padding:0px !important;
	margin:-5px !important;
}

.msr_box01 span a{
	margin-bottom:-5% !important;
	margin-top:-2% !important;
}



h4.uzai{
	font-size:0.9em !important;
	margin-bottom:-15% !important;
}
@media screen and (max-width: 1200px) {
h4.uzai{
	font-size:62.5% !important; 
	margin-bottom:-15% !important;
}
}


.post-body{
	display: none;
}