@charset "utf-8";
/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html, body, #container {
	height: 100%;
}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ 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, h7, p, ul, ol, li, dl, dt, dd, form, figure, form {
	margin: 0px;
	padding: 0px;
	font-size: 100%;
	font-weight: normal;
}
ul {
	list-style-type: none;
}
ol {
	padding-left: 40px;
	padding-bottom: 15px;
}
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
table {
	border-collapse: collapse;
	font-size: 100%;
	border-spacing: 0;
}
iframe {
	width: 100%;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #121212;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1400px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding-left: 2% !important;
	padding-right: 2% !important;
}
/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100px;	/*高さ*/
	position: relative;
}
#top header {
	min-height: 100%;
	margin-bottom: -90px;	/*メニューの高さを設定する*/
}
/*ロゴ画像（※トップページ以外）*/
header #logo {
	width: 350px;	/*画像幅*/
	float: left;	/*左に回り込み*/
	margin-top: 28px;	/*画像の上に空ける余白。上下のバランスをここで調整して下さい。*/
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	overflow: hidden;
	position: relative;
	z-index: 10;
	text-align: center;	/*文字を中央に*/
	background: #fff;	/*背景色*/
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅。今回は５個メニューがあるので100÷5=20*/
	font-size: 20px;	/*文字サイズ*/
}
#menubar ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 3px solid transparent;	/*下線の設定。ここではtransparentを使って透明にしています。*/
	height: 75px;		/*メニューブロックの高さ。※※※ここの「75」と、下の行の「15」を合計した「90」の数字と、下のfixmenu設定に２箇所ある「margin-top」の数字を合わせて下さい。*/
	padding-top: 15px;	/*メニューブロックの高さプラス、上に空ける余白。メニューテキストの上下の配置バランスをここで調整して下さい。※変更の際は、上の行の注意書きもしっかり読んで下さい。*/
}
/*飾り文字*/
#menubar ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar ul li a:hover, #menubar ul li.current a {
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #6297D2;
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
	float: right;		/*右に回り込み*/
	margin-top: 12px;	/*ブロックの上にあける余白。上下のバランスをここで調整して下さい。*/
	width: 350px;		/*ブロック幅*/
	border-radius: 6px;	/*角丸のサイズ*/
	padding: 5px;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	text-align: center;			/*文字をセンタリング*/
}
/*TEL*/
.tel {
	letter-spacing: 0.2em;	/*文字間隔を広くする設定。通常がいいならこの行削除。*/
	font-size: 20px;		/*文字サイズを大きく*/
	color: #6297D2;
	font-weight: bold;
}
/*TELの受付時間の小文字部分*/
.tel span {
	display: block;
	font-size: 11px;		/*文字サイズを小さく*/
	letter-spacing: 0.1em;	/*文字間隔*/
	color: rgb(51,51,51);
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.95);	/*背景色。255,255,255は白の事で0.95は透明度。*/
}
body.is-fixed-menu #contents {
	margin-top: 90px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.95);	/*背景色。255,255,255は白の事で0.95は透明度。*/
}
body.is-fixed #contents {
	margin-top: 90px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}
/*コンテンツ（mainとsubを囲むブロック。１カラム時の場合はメインコンテツを囲むブロック。）
---------------------------------------------------------------------------*/
#contents {
	position: relative;
	/* [disabled]z-index: 1; */
	overflow: hidden;
	background: #fafafa;	/*背景色*/
	padding: 30px 0;
}
/*contentsの中にあるinner*/
#contents .inner {
	padding: 20px 0px;	/*上下、左右へのブロック内の余白*/
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 20px;
	color: #fff;	/*背景色*/
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	font-size: 20px;	/*文字サイズ*/
	border-radius: 3px;	/*角丸のサイズ*/
	background-color: #5d973e;
}
/*h2タグの１文字目*/
#contents h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 20px;				/*線と文字との余白*/
}
/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 20px;
	font-size: 20px;	/*文字サイズ*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-left: 20px;	/*左側に空ける余白*/
}
/*h3タグの１文字目*/
#contents h3::first-letter {
	border-left: 3px solid #121212;	/*左側の線の幅、線種、色*/
	padding-left: 20px;	/*線と文字との余白*/
}
/*段落タグ*/
#contents p {
	padding: 0 20px 20px;	/*上、左右、下への余白*/
}
#contents h2 + p, #contents h3 + p {
	margin-top: -5px;
}
#contents p + p {
	margin-top: -10px;
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainブロック*/
.main {
	float: left;	/*左に回り込み*/
	width: 75%;		/*メインコンテンツの幅*/
}
/*section同士の余白*/
.main section + section {
	margin-top: 40px;
	padding-top: 0;	/*.linkのpadding-topをリセットしておく*/
}
/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#contents .main .list {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;	/*ボックスの下に空ける余白*/
}
#contents .main .list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	padding: 3%;	/*ボックス内の余白*/
	background: #fff;	/*背景色*/
}
#contents .main .list a:hover {
	border: 1px solid #999;	/*マウスオン時の枠線の幅、線種、色*/
}
/*各ボックスの設定（※compactタイプへの追加設定）*/
#contents .main .list.compact {
	box-shadow: none;
	width: 18.4%;			/*幅*/
	float: left;		/*左に回り込み*/
	margin-left: 1.3%;	/*左側に空けるスペース*/
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;	/*行間を狭くする*/
}
#contents .main .list.compact a {
	height: 260px;	/*高さ*/
	border: none;
	padding: 0;
	background: transparent;	/*背景色を透明に*/
}
/*ボックス内のh4タグ設定*/
#contents .main .list h4 {
	margin-bottom: 0.5em;
	color: #121212;		/*文字色*/
	margin-left: 22%;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内のh4タグの１文字目への設定*/
#contents .main .list h4::first-letter {
	border-left: 3px solid #121212;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/
}
/*ボックス内のh4タグ設定（※compactタイプへの追加設定）*/
#contents .main .list.compact h4 {
	border: none;
	margin-left: 0;
}
/*ボックス内のh4タグの１文字目への設定（※compactタイプへの追加設定）*/
#contents .main .list.compact h4::first-letter {
	border: none;
	padding: 0;
}
/*ボックス内のp(段落)タグ設定*/
#contents .main .list p {
	padding: 0px;
	margin-left: 22%;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内の段落タグ設定（※compactタイプへの追加設定）*/
#contents .main .list.compact p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#contents .main .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	margin-right: 2%;	/*写真の右側に空ける余白*/
}
/*マウスオン時のボックス内の写真設定*/
#contents .main .list a:hover figure img {
	opacity: 0.8;	/*透明度80%にする設定*/
}
/*ボックス内の写真設定（※compactタイプへの追加設定）*/
#contents .main .list.compact figure img {
	float: none;
	margin: 0;
	margin-bottom: 10px;
	border: none;
	width: auto;
	padding: 0;
}
/*マウスオン時のボックス内の写真設定（※compactタイプへの追加設定）と、ボックスにoption2スタイルが指定された場合の画像の設定。*/
.list.option2 a:hover figure img, .list.option2 figure img {
	opacity: 0.3 !important;
}
/*登録日情報*/
#contents .main .list .date {
	display: block;
	font-size: 11px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	text-align: right;	/*テキストを右側に*/
}
/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#contents .main .list table {
	font-size: 12px;	/*文字サイズ*/
	width: 78%;			/*テーブル幅*/
	margin-bottom: 5px;
}
#contents .main .list table, #contents .main .list table td, #contents .main .list table th {
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
}
#contents .main .list table td, #contents .main .list table th {
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#contents .main .list table th {
	width: 20%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #edf0f5;	/*背景色*/
}
/*白い説明用ブロック*/
#contents .main .list table td {
	width: 30%;	/*幅*/
}

/*事業用地一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#contents .main .list3 table {
	font-size: 12px;	/*文字サイズ*/
	width: 96%;			/*テーブル幅*/
	margin-bottom: 5px;
}
#contents .main .list3 table, #contents .main .list3 table td, #contents .main .list3 table th {
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
}
#contents .main .list3 table td, #contents .main .list3 table th {
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#contents .main .list3 table th {
	width: 20%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #edf0f5;	/*背景色*/
}
/*白い説明用ブロック*/
#contents .main .list3 table td {
	width: 30%;	/*幅*/
}
/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	background: #fafafa;	/*背景色*/
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin-top: 10;
	margin-right: auto;
	margin-bottom: 40;
	margin-left: auto;
	padding: 30px;
}
/*h2タグ*/
.contents h2 {
	clear: both;
	margin-bottom: 15px;
	padding: 8px 20px;	/*上下、左右への余白*/
	background: #37750d;	/*背景色（古いブラウザ用）*/
	color: #fff;	/*文字色*/
	border-radius: 10px;	/*角丸のサイズ*/
}
/*h3タグ*/
.contents h3 {
	clear: both;
	margin-bottom: 15px;
	padding: 6px 20px;	/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 10px;		/*角丸のサイズ*/
}
/*h7タグ*/
#contents h7 {
	display: block;	/*背景色（古いブラウザ用）*/
	color: #fff;	/*文字色*/
	font-size: 14px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 5px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
	border: 1px solid #666666;	/*枠線の幅、線種、色*/
	background-color: #339900;
	font-family: "07やさしさゴシックボールド";
}
/*h3タグのタイプ違い（MENUページのh3見出しに使用）*/
.contents h3.type2 {
	border: none;
	background: #333;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*ハウスメーカー見出しのタイプ違い設定（セットプランおすすめの挨拶で使っている大きな見出し）*/
.type1 {
	background: none !important;
	border-radius: 0 !important;
	color: #333333 !important;
	line-height: 1.3 !important;
	font-weight: 600 !important;
	font-size: 28px !important;
	text-align: center !important;
	border: none !important;
	border-bottom: 1px dashed #37750d !important;
	margin-bottom: 20px !important;
	letter-spacing: 0.2em !important;
	text-shadow: 8px 8px #eee !important;
	font-family: "游明朝", "游ゴシック";
}
/*段落タグ*/
.contents p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
.contents h2 + p, .contents h3 + p {
	margin-top: -5px;
}
/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
.sub {
	float: right;	/*右に回り込み*/
	width: 22%;		/*サブコンテンツの幅*/
}
/*h2タグ設定*/
#contents .sub h2 {
	margin-bottom: 0;
	border-radius: 0;
	font-size: 16px;	/*文字サイズ*/
	background: #999;	/*背景色*/
}
/*h2タグの１文字目への設定*/
#contents .sub h2::first-letter {
	border-left: none;
	padding-left: 0px;
}
/*subコンテンツ内の段落タグ設定*/
#contents .sub p {
	margin: 0;
	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: 2px 15px;	/*メニュー内の余白。上下、左右への設定。*/
}
/*サブコンテンツ内のbox
---------------------------------------------------------------------------*/
#contents .sub .box {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #f2f2f2;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.05);	/*背景色。0,0,0は黒で0.05は透明度。*/
	border: solid 1px #dcdcdc;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
	border-radius: 3px;	/*角丸のサイズ*/
}
/*五感～美しが丘ブログ～のボックス*/
#contents .sub .box3 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 30px;	/*ボックスの下に空けるスペース*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
	border-radius: 3px;
}
/*五感～美しが丘ブログ～の枠緑色。*/
 #contents .inner .sub .box3 h2 {
	background-color: rgb(102,153,51);
}
/*ドックランの休日カレンダーのボックス*/
#contents .sub .box4 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 5px;	/*ボックスの下に空けるスペース*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
	border-radius: 3px;
}
/*box1内のメニューの設定*/
#contents .sub .box ul.submenu {
	margin-bottom: 0px;
}
/*サブコンテンツ内の物件一覧ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#contents .sub .list {
	position: relative;
	overflow: hidden;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;	/*行間を狭くする*/
}
#contents .sub .list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 10px;	/*ボックス内の余白*/
	border-top: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
	background: #fff;	/*背景色*/
}
/*最後ボックスの設定*/
#contents .sub .list:last-of-type a {
	border-bottom: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
}
/*最後ボックスの設定。box内では下に空けるスペースをなくす。*/
#contents .sub .box .list:last-of-type a {
	margin-bottom: 0px;	/*下に空けるスペース*/
}
/*ボックス内のh4タグ設定*/
#contents .sub .list h4 {
	font-size: 13px;
	margin-bottom: 3px;
}
/*ボックス内のp(段落)タグ設定*/
#contents .sub .list p {
	padding: 0;
}
/*ボックス内の写真設定*/
#contents .sub .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 25%;		/*写真の幅*/
	margin-right: 5px;	/*写真の右側に空ける余白*/
}
/*「美しい自然・美しい暮らし」ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list3 {
	position: relative;
	overflow: hidden;
	padding: 30px;		/*ボックス内の余白*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	margin-bottom: 50px;		/*ボックス間の余白*/
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
/*ご紹介内のh4タグ設定*/
.list3 h4 {
	font-size: 28px;	/*文字サイズ*/
	color: #59b9d5;		/*文字色*/
}

/*ボックス内のp(段落)タグ設定*/
.list3 p {
	padding: 0px 0px 10px !important;	/*上、左右、下への余白*/
}
/*アイコン（正社員、アルバイト、パート、未経験可、など）
---------------------------------------------------------------------------*/
/*アイコン共通*/
.icon {
	display: inline-block;
	margin: 2px;
	font-size: 12px;	/*文字サイズ*/
	padding: 0 5px;		/*ボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #eee;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
}
/*資料請求　必修アイコン*/
.icon1 {
	display: inline-block;
	font-size: 10px;		/*ボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #363;	/*グラデーション*/
	margin-top: 2px;
	margin-right: 6px;
	margin-bottom: 2px;
	margin-left: 2px;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
	background-color: #363;
	color: rgb(255,255,255);
}
.icon a {
	text-decoration: none;
}
/*アイコン色付き（正社員）*/
.icon.color1 {
	border: 1px solid #59b9d5;	/*枠線の幅、線種、色*/
	background: #66d5f5;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#66d5f5, #59b9d5);	/*グラデーション*/
	color: #fff !important;	/*文字色*/
}
/*アイコン色付き（アルバイト）*/
.icon.color2 {
	border: 1px solid #161995;	/*枠線の幅、線種、色*/
	background: #2b2ebc;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#2b2ebc, #161995);	/*グラデーション*/
	color: #fff;	/*文字色*/
}
/*new*/
.new {
	color: #FFF;			/*文字色*/
	background: #F00;	/*背景色*/
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	position: relative;
	z-index: 1;
	font-size: 12px;		/*文字サイズ*/
	background: #121212;	/*背景色*/
	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;
	;	/*背景色*/
	font-size: 18px;
	background-color: #6297D2;
}
#copyright a {
	text-decoration: none;
}
#copyright a:hover {
	color: #666;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #786550;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}
/*ta1設定
---------------------------------------------------------------------------*/
/*リンクの見出し部分（※caption）*/
.ta1 caption, .ta2 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
	background-color: #f4f1e7;
}

/*安心安全の見出し部分（※caption）*/
.ta3 caption {
	text-align: left;	/*背景色*/
	font-weight: 600;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
	color: rgb(102,102,102);
	background-color: #f7f0de;
	border: 1px none #ccc;
	font-size: 16px;
}
/*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;
}
.ta3 {
	width: 100%;
	table-layout: fixed;
	margin: 0 0 20px;
	background: #fff;	/*背景色*/
}
.ta3, .ta3 td, .ta3 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta1 th {
	width: 150px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}

/*list1ブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定(美しが丘style)*/
.list1 {
	overflow: hidden;
	width: 26.4%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 0 20px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 2%;	/*ボックス内の余白*/
	border-radius: 3px;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
}
.list1 a {
	display: block;
	text-decoration: none;
	overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: url(../images/arrow1.png) no-repeat right bottom / 40px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.list1 a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h4（区画図見出し）タグの設定*/
.list1 h4 {
	color: #242b4b;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.list1 p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 6em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
/*main,sub
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}
/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn, #contents input[type="button"].btn, #contents input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 20px;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover, #contents input[type="button"].btn:hover, #contents input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}
/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1,option2共通*/
span.option1, span.option2 {
	text-align: center;
	display: block;
	font-size: 10px;	/*文字サイズ*/
	width: 120px;		/*幅*/
	position: absolute;
	right: 2px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 3px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(36px, -15px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
	color: #FFF;	/*文字色*/
	background: #999;	/*背景色*/
}
/*キャンペーン中への追加設定*/
span.option1 {
	color: #FFF;	/*背景色*/
	background-color: #e9653c;
}
/*h2タグ内で使った場合のoption1とoption2*/
h2 span.option1, h2 span.option2 {
	width: auto;
	position: static;
	transform: none;
	display: inline-block;
	font-size: 15px;
	margin-left: 10px;
	padding: 0px 5px;
}
/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
	background-color: #e9653c;
}
.newicon1 {
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
	background-color: #09C;
}
.newicon2 {
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
	background-color: #F00;
}
/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル。※ページ内へのリンクで使う。
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -120px;
	padding-top: 120px;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーグレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;z-index: 100;position: fixed;
	width: 90px;		/*幅*/
	bottom: 65px;		/*下からの配置場所指定*/
	right: 3%;			/*右からの配置場所指定*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 0.5S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	border-radius: 50%;
	border: 3px solid #5E8FC6;;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.5);	/*背景色。255,255,255は白のことで0.3は色が30%出た状態のこと。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #fff;
}

/*コンテンツ内のボックス（list）(コンセプト)設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list2 {
	float: left;	/*左に回り込み*/
	width: 31%;		/*幅*/
	overflow: auto;
	background: #fff;	/*背景色*/
	margin-left: 1.5%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 260px;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 0px 0px 3px rgba(0,0,0,0.2);			/*同上*/
}

/*ボックス内の画像設定*/
.list2 .img {
	width: 100%;	/*画像の幅*/
	height: 140px;	/*画像の高さ*/
	padding-bottom: 10px;	/*画像下に空ける余白*/
}
/*ボックス内のh4（見出し）タグ設定*/
.list2 h4 {
	padding-left: 15px;
	padding-bottom: 5px;
	font-size: 16px;	/*文字サイズ*/
}
/*ボックス内のp（段落）タグ設定*/
.list2 p {
	font-size: 12px;	/*文字サイズを少し小さく*/
	margin: 5px;
	text-align: center;
}
/*コンセプトのイラスト設定*/
.main section .list3 .mb15 img {
	margin-bottom: 5%;
}
/*list7（「まちなみガイドライン」のブロック）
---------------------------------------------------------------------------*/
/*各ブロックの設定*/
.list7 {
	overflow: hidden;
	width: 20%;		/*ブロック幅*/
	float: left;	/*左に回り込み*/
	margin-left: 1%;	/*ボックスの外側(左側)に空けるスペース*/
	padding: 2%;		/*ボックス内の余白*/
}
/*h4見出し*/
.list7 h4 {
	font-size: 16px;	/*文字サイズ*/
	text-align: center;	/*文字を中央に*/
	color: #347e02;		/*文字色*/
}
/*figure画像*/
.list7 figure {
	border-radius: 10%;	/*角丸のサイズ。50%にすると円形になる。*/
	background: #fff;	/*背景色*/
	padding: 10px;		/*余白*/
	box-shadow: 2px 2px 0px 2px rgba(0,0,0,0.2);	/*影。右へ、下へ、ぼかす範囲、広げる範囲。0,0,0は黒の事で0.2は透明度20%の事*/
}
.list7 figure img {
	border-radius: 10%;	/*角丸のサイズ。50%にすると円形になる。*/
	padding-top: 15%;
	padding-bottom: 15%;
}

/*aタグにclass="btn"をつけた場合。トップページの「まちなみガイドライン」ブロック内のボタンで使用。
---------------------------------------------------------------------------*/
a.btn1 {
	display: block;
	text-decoration: none;
	text-align: center;	/*テキストを中央に*/
	background: #347e02;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#347e02, #2a6502);/*背景グラデーション*/
	color: #fff;	/*文字色*/
	box-shadow: 2px 3px 2px rgba(0,0,0,0.2);	/*影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.2は透明度20%の事*/
	border-radius: 3px;	/*上下、左右への余白*/
	font-size: 13px;	/*文字サイズ*/
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
/*マウスオン時*/
a:hover.btn1 {
	background: #fff;	/*背景色*/
	color: #347e02;		/*文字色*/
}
/*トップページ「以外」の、上部にある装飾画像
---------------------------------------------------------------------------*/
#subimg {
	position: absolute;
	top: 50px;
	left: 300px;
	width: 50%;
}
/*メニューページの設定（里山の里.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list4 {
	position: relative;
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 20%;			/*ボックスの高さ。*/
	margin-top: 20px;
	margin-right: 2.5%;
	margin-left: 2.5%;
}
/*写真の設定*/
.list4 figure img {
	display: block;	/*画像の下に空けるスペース*/
}
/*写真の右上にある金額*/
.list4 figure span {
	display: block;
	text-align: center;
	width: 50px;	/*幅*/
	line-height: 50px;	/*高さ*/
	border-radius: 50%;	/*円形にする設定*/
	font-size: 12px;	/*文字サイズ*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	position: absolute;
	right: 0px;	/*listブロックに対して右から0pxの場所に配置*/
	top: 5px;	/*listブロックに対して上から5pxの場所に配置*/
	color: #fff;	/*文字色*/
}
/*ボックス内のh4見出し*/
.list4 h4 {
	text-align: center;	/*文字をセンタリング*/
	border-bottom: 2px dotted #fff;	/*見出しの下に空けるスペース*/
	font-size: 20px;		/*文字サイズ*/
}
/*ボックス内の段落タグ*/
.list4 p {
	padding: 0!important;
	line-height: 1.5;	/*行間を少し狭くする*/
}

/*安心安全小さなスライダー
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.photo1 {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 40%;
	margin-right: 40px;
	margin-bottom: 10px;
}


/*共同菜園写真を３列に並べたレイアウト
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.photo {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 33.3%;
}
.photo a:hover img {
	opacity: 0.8;	/*マウスオン時に80%の透明度にする*/
}
/*photoボックス内の段落(p)タグ*/
.photo p {
	padding: 5px 0 !important;	/*上下、左右への段落タグ内の余白*/
	position: absolute;
	bottom: 0px;	/*photoボックスの下から0pxの場所に配置*/
	width: 100%;	/*幅*/
	background: #111;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は50%色がついた状態のこと*/
	color: #fff;	/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	font-size: 80%;
}
/*どっくらんページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list5 {
	position: relative;
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 20%;	/*上、左右、下へのボックス内の余白*/
	height: 320px;
	margin-right: 2.5%;
	margin-left: 2.5%;
}
/*写真の設定*/
.list5 figure img {
	display: block;
	border-radius: 30%;		/*円形にする設定。30pxなどにすると角丸になります。この行を削除すればそのままの画像が表示されます。*/
	margin-bottom: 10px;	/*画像の下に空けるスペース*/
}
/*写真の右上にある金額*/
.list5 figure span {
	display: block;
	text-align: center;
	width: 70px;	/*幅*/
	line-height: 70px;	/*高さ*/
	border-radius: 50%;	/*円形にする設定*/
	font-size: 10px;	/*文字サイズ*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	position: absolute;
	right: 0px;	/*listブロックに対して右から0pxの場所に配置*/
	top: 5px;	/*listブロックに対して上から5pxの場所に配置*/
	color: #fff;	/*文字色*/
}
/*ボックス内のh4見出し*/
.list5 h4 {
	text-align: center;	/*文字をセンタリング*/
	border-bottom: 2px dotted #fff;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*見出しの下に空けるスペース*/
	font-size: 20px;		/*文字サイズ*/
}
/*ボックス内の段落タグ*/
.list5 p {
	padding: 0!important;
	line-height: 1.5;	/*行間を少し狭くする*/
}
/*Gallery(ドックラン1)ページのサムネイル
---------------------------------------------------------------------------*/
/*写真全体を囲むブロック*/
.photo-block {
	overflow: hidden;
	margin: 0 20px 20px;	/*上、左右、下へのボックスの外側に空けるスペース*/
}
/*画像*/
.list10 figure {
	width: 25%;			/*画像幅*/
	float: left;		/*左に回り込み*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
/*マウスオン時の画像*/
.list10 a:hover figure {
	opacity: 0.6;		/*画像の色を60%出す*/
}
/*円形にするスタイル*/
.list10.circle figure img {
	border-radius: 50%;
}

/*inviewのスタイル
---------------------------------------------------------------------------*/
/*共通設定（待機中）*/
.up, .left, .right, .transform1, .transform2 {
	opacity: 0;		/*透明度（透明の状態）*/
}
/*共通設定（要素が見えたら実行するアクション）*/
.upstyle, .leftstyle, .rightstyle, .transform1style, .transform2style {
	opacity: 1;		/*透明度（色が100%出た状態）*/
	transition: 0.5s 0.5s;	/*0.5sはアニメーションの実行時間0.5秒。0.5sは0.5秒遅れてスタートする指定。*/
}
/*upスタイル。下から上にフェードインしてくるスタイル（待機中）*/
.up {
	bottom: -50px;	/*基準値の下50pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.upstyle {
	bottom: 0px;	/*基準値まで戻す*/
}
/*leftスタイル。左からフェードインしてくるスタイル（待機中）*/
.left {
	left: -100px;	/*基準値より左に100pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.leftstyle {
	left: 0px;		/*基準値まで戻す*/
}
/*rightスタイル。右からフェードインしてくるスタイル（待機中）*/
.right {
	right: -100px;	/*基準値より右に100pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.rightstyle {
	right: 0px;		/*基準値まで戻す*/
}
/*transform1スタイル。その場で回転するスタイル（待機中）*/
.transform1 {
	transform: scaleX(0);	/*幅を0%でスタート*/
}
/*要素が見えたら実行するアクション*/
.transform1style {
	transform: scaleX(1);	/*幅を100%に戻す*/
}
/*transform2スタイル。倒れた状態から起き上がるスタイル（待機中）*/
.transform2 {
	transform: perspective(400px) rotateX(100deg);
}
/*要素が見えたら実行するアクション*/
.transform2style {
	transform: perspective(0px) rotateX(0deg);
}
/*「ご契約の流れ」ページの一覧用ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.list6 {
	margin-bottom: 15px;	/*ボックス間のスペース*/
	position: relative;
	overflow: hidden;
	background: #fff;		/*背景色*/
	color: #666;			/*文字色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 2.5%;			/*ボックス内の余白*/
}
.list6 a {
	display: block;
	text-decoration: none;
	overflow: hidden;
	color: #360;
	margin: -2.5%;
	padding: 2.5%;			/*ボックス内の余白*/
	font-weight: 500;
}
.list6 a:hover {
	color: rgb(102,102,102);
	background-color: #FFFFCC;
}
/*ボックス内の段落タグ設定*/
.list6 p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
.list6 figure img {
	float: left;		/*画像を左へ回り込み*/
	padding: 5px;		/*余白*/
	width: 30%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
	border: 1px none #ccc;	/*線の幅、線種、色*/
	background: #fff;	/*写真と枠線の間(padding:5px)に出る色になります*/
}
/*ボックス内のh4タグ設定*/
.list6 h4 {
	font-size: 17px;	/*文字サイズ*/
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*コンパクトタイプのボックス追加設定*/
.list6.compact {
	width: 23%;		/*compactタイプの幅*/
	float: left;	/*ボックスを左に回り込み*/
	height: 260px;	/*compactタイプの高さ*/
	margin-left: 3.5%;	/*ボックス間の余白*/
}
.list6.compact a {
	height: 100%;
}
.c1.list6.compact {
	width: 16.5%;
}
/*コンパクトタイプのh4タグ追加設定*/
.list6.compact h4 {
	margin-left: 0;
}
/*コンパクトタイプの段落タグ追加設定*/
.list6.compact p {
	margin-left: 0;
	font-size: 11px;	/*compactタイプの文字サイズ*/
	line-height: 1.4;
	margin-bottom: 5px;
}
/*コンパクトタイプの写真追加設定*/
.list6.compact figure img {
	float: none;
	width: auto;
	margin: 0;
	padding: 0;
}
.aokukaku {
	color: #36F;
}
/*box2（３カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	position: relative;
	width: 24.5%;		/*ボックスの幅*/
	float: left;		/*左に回り込み*/
	text-align: center;		/*ボックス内の余白*/
	padding-bottom: 75px;	/*下の余白だけ上書き*/
	background: #fff;		/*背景色*/
	border: 1px solid #eeeae2;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 1.5;	/*行間*/
	color: #666;		/*文字色*/
	margin-top: 5%;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 2%;
	padding-top: 3%;
	padding-right: 3%;
	padding-left: 3%;
}
/*box2内の日付*/
.box2 span.date {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/
	transform: rotate(-20deg);	/*回転の角度*/
	background-color: #CC6699;
}
/*box2内のp(段落)タグ*/
.box2 p {
	padding: 0 !important;
	height: 4.5em;		/*高さ。*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	font-size: 14px;	/*文字サイズ*/
	text-align: left;	/*文字を左よせ*/
}
/*段落タグにリンクが設定された場合の文字色*/
.box2 p a {
	color: #666;
}
/*box2内のh4(見出し)タグ*/
.box2 h4 {
	color: #529306;	/*文字色*/
	height: 1.5em;	/*高さ*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	font-size: 18px;
}
/*box2内のfigure(画像)タグ*/
.box2 figure {
	margin-bottom: 5px;	/*下に空けるスペース*/
}
/*box2内のbtn1。本体の設定はこの下のブロックにあります。*/
.box2 p.btn1 {
	height: auto;
	position: absolute;
	bottom: 29px;	/*box2の下から30pxの場所に配置*/
	width: 80%;		/*ボタンの幅*/
	left: 36px;
}
.box2 p.btn1 a {
	display: block;
	padding: 5px 0;	/*上下、左右へのボタン内の余白*/
}

/*box1、box2のfigure写真共通設定
---------------------------------------------------------------------------*/
.box1 figure a:hover,.box2 figure a:hover {
	opacity: 0.8;	/*マウスオン時に80%透明度にする*/
}

/*btn1
---------------------------------------------------------------------------*/
p.btn1 a {
	text-decoration: none;display: inline-block;
	border: 1px solid transparent;	/*枠線の幅、線種、色。transparentは透明の事。*/
	background: #529306;	/*背景色*/
	color: #fff !important;	/*文字色*/
	border-radius: 3px;		/*角丸のサイズ*/
	padding: 5px 30px;		/*上下、左右へのボタン内の余白*/
	text-align: center;		/*文字をセンタリング*/
}
/*マウスオン時*/
p.btn1 a:hover {
	border: 1px solid #529306;	/*枠線の幅、線種、色。*/
	background: #fff;			/*背景色*/
	color: #529306 !important;	/*文字色*/
}


/*メインコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	font-size: 18px;	/*文字サイズ*/
	margin-bottom: 20px;
	padding: 5px 20px;	/*上下、左右への余白*/
	background: #686868;	/*背景色*/
	border-radius: 30px;	/*角丸のサイズ*/
	color: #fff;			/*文字色*/
	position: relative;
}
/*装飾用画像の土台設定*/
#main h2::after, #main h3::after {
	display: block;
	position: absolute;
	right: 0px;	/*h2,h3タグに対して右から0pxの場所に配置*/
	top: -20px;	/*h2,h3タグに対して上から-20pxの場所に配置*/
}
/*装飾用画像（子供）*/
#main h2.bg1::after, #main h3.bg1::after {
	content: url(../images/bg1.png);
}
/*装飾用画像（母親）*/
#main h2.bg2::after, #main h3.bg2::after {
	content: url(../images/bg2.png);
}
/*装飾用画像（犬）*/
#main h2.bg3::after, #main h3.bg3::after {
	content: url(../images/bg3.png);
}
/*装飾用画像（野菜）*/
#main h2.bg4::after, #main h3.bg4::after {
	content: url(../images/bg4.png);
}
/*装飾用画像（犬）*/
#main h2.bg5::after, #main h3.bg5::after {
	content: url(../images/bg5.png);
}
/*装飾用画像（笑顔）*/
#main h2.bg6::after, #main h3.bg6::after {
	content: url(../images/bg6.png);
}
/*装飾用画像（花）*/
#main h2.bg7::after, #main h3.bg7::after {
	content: url(../images/bg7.png);
}
/*装飾用画像（女性）*/
#main h2.bg8::after, #main h3.bg8::after {
	content: url(../images/bg8.png);
}
/*装飾用画像が入った場合、テキストと画像が重ならないように右側に余白をとる設定*/
#main h2.bg1, #main h3.bg1,
#main h2.bg2, #main h3.bg2,
#main h2.bg3, #main h3.bg3,
#main h2.bg4, #main h3.bg4,
#main h2.bg5, #main h3.bg5,
#main h2.bg6, #main h3.bg6,
#main h2.bg7, #main h3.bg7,
#main h2.bg8, #main h3.bg8
  {
	padding-right: 160px;
}
/*メインコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	font-size: 18px;	/*文字サイズ*/
	margin-bottom: 20px;
	padding: 6px 26px;	/*上下、左右への余白*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
	border-radius: 10px;	/*角丸のサイズ*/
	background: #fff;		/*背景色*/
	color: #686868;			/*文字色*/
	position: relative;
}
/*メインコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*三角公園＆モニュメントページの画像切り替え
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#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;	/*マウスオン時の枠線の幅、線種、色*/
}
/*お客様の声ブロック
---------------------------------------------------------------------------*/
/*list8ブロック設定*/
.list8 {
	overflow: hidden;position: relative;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.3) inset;	/*ボックスの影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.3は透明度30%の事。insetは内側に向かう影。*/
	margin: 0 2% 30px;	/*上、左右、下へのボックスの外に空けるスペース*/
	background: #fff;	/*背景色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	padding: 4%;	/*ボックス内の余白*/
}

/*段落タグ設定*/
.list8 p {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.8;
	overflow: hidden;
}
/*figure画像の設定*/
.list8 figure img {
	margin: 0 0 4% 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の右側回り込みの設定*/
.list8 figure img.fr {
	width: 20%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0 0 0 4%;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の左側回り込みの設定*/
.list8 figure img.fl {
	width: 20%;		/*画像幅*/
	float: left;	/*左に回り込み*/
	margin: 0 4% 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}

a.btn3 {
	display: block;
	text-decoration: none;	/*背景色（古いブラウザ用）*/
	color: #fff;	/*文字色*/
	font-size: 15px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
	border: 1px solid #0099CC;	/*枠線の幅、線種、色*/
	background-color: #3399CC;
}
/*マウスオン時*/
a:hover.btn3 {
	box-shadow: none;
	background: #fff;	/*背景色*/
	color: #3399CC;		/*文字色*/
}
/*2カラム利用時--------------------------------------------*/
.c2 .list8 {
	float: left;	/*ボックス内の余白の上書き*/
	width: 40%;
	padding: 3%;
}

/*p段落タグ*/
.c2 .list8 p {
	height: 5.4em;
	color: rgb(102,153,0);
	text-align: center;
}


/*販売状況ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list9 {
	position: relative;
	overflow: hidden;
	padding: 40px;		/*ボックス内の余白*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	margin-bottom: 50px;		/*ボックス間の余白*/
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
/*ボックス内のh4タグ設定*/
.list9 h4 {
	font-size: 28px;	/*文字サイズ*/
	color: #59b9d5;		/*文字色*/
}
.list9 h4 a {
	color: #59b9d5;	/*リンクテキストの文字色*/
}
/*ボックス内のp(段落)タグ設定*/
.list9 p {
	padding: 0px 0px 10px !important;	/*上、左右、下への余白*/
}

/*販売状況ページの「詳細を見る・応募する」ボタン
---------------------------------------------------------------------------*/
a.btn2 {
	display: block;text-decoration: none;
	background: #59b9d5;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#66d5f5, #59b9d5);	/*グラデーション*/
	color: #fff;	/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
	border: 1px solid #59b9d5;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
a:hover.btn2 {
	box-shadow: none;
	background: #fff;	/*背景色*/
	color: #59b9d5;		/*文字色*/
}
/*お客様の声　青い字*/
#voish4 {
	font-size: 21px;
	color: rgb(102,153,255);
	font-family: "游明朝", "游ゴシック";
	font-weight: bold;
	margin-bottom: 2%;
	margin-top: 4%;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #ccc;
	padding: 5px 10px;
	border-radius: 4px;
}
.mb15, .mb1em {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mb50 {
	margin-bottom: 50px !important;
}
.p0 {
	padding: 0 !important;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.color1, .color1 a {
	color: #121212 !important;
}
.color2, .color2 a {
	color: #666666 !important;
	font-size: 16px;
	font-family: "Lucida Console", Monaco, monospace;
}
.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;
}
.w50 {
	overflow: hidden;
	width: 50%;
}
.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: 22px;
}
.sub .big1 {
	font-size: 12px;
}
.mini1 {
	font-size: 11px;
	display: inline-block;
	line-height: 1.5;
}
.sh {
	display: none;
}
.date {
	text-align: right;
	color: #999;
	font-size: 11px;
}
.mt-top {
	margin-top: -5px !important;
}
.fr1 {
	float: right;
	margin-left: 1%;
	margin-bottom: 15px;
	width: 45%;
}
.fl1 {
	float: left;
	margin-right: 1%;
	margin-bottom: 15px;
	width: 45%;
}
.fs1 {
	font-size: 18px;
}
.ofh {
	overflow: hidden;
}
/*カレンダー用テーブル
---------------------------------------------------------------------------*/
/*テーブル全体の設定*/
.cal {
	border: 1px solid #a2a2a2;	/*枠線の幅、線種、色*/
	background: #FFF;			/*テーブル内の背景色*/
	font-size: 11px;			/*文字サイズ*/
	margin-right: auto;
	margin-left: auto;
}
.cal td, .cal th{
	border: 1px solid #a2a2a2;	/*枠線の幅、線種、色*/
	line-height: 1;				/*行間*/
	text-align: center;			/*文字をセンタリング*/
	padding: 8px;				/*ボックス内の余白*/
}
/*テーブル内のth(曜日)設定*/
.cal th{
	background: #ebebeb;	/*背景色*/
}
/*休日の設定*/
.cal .off {
	background: #ffced8;	/*背景色*/
	color: #666;			/*文字色*/
}
/*日曜日の設定*/
.cal .sun {
	color: #FF5C7F;			/*文字色*/
}

/*画面を横向きにした場合の高さが500px以下の場合の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px) {
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s ul li a {
	padding: 10px;		/*メニュー内の余白*/
	float: left;		/*左に回り込み*/
	width: 40%;			/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
}
}



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
 0% {
opacity: 0;
}
 100% {
opacity: 1;
}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
	overflow: hidden;
	position: fixed;
	z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*メニュー１個あたりの設定*/
#menubar-s ul li a {
	display: block;
	text-decoration: none;
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*飾り文字*/
#menubar-s ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	color: #999;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}
/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;
	z-index: 100;
	top: 8px;		/*上から8pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	border: 1px solid #fff;
}
/*アイコン共通設定*/
#menubar_hdr.close, #menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #121212 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #121212 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}
/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu #contents {
	margin-top: 0px;
}
/*main,subコンテンツ
---------------------------------------------------------------------------*/
#contents .main, #contents .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;
}
.w50 {
	overflow: hidden;
	width: auto;
}
.fl {
	float: none;
}
.fr {
	float: none;
}
/*トップページ「以外」の、上部にある装飾画像
---------------------------------------------------------------------------*/
#subimg {
	top: 30px;
	left: 100px;
	width: 70%;	/*上から60pxの場所に。少し下げる設定。*/
}
/*里山　生育写真ページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list4 {
	width: 40%;
	margin-right: 5%;
	margin-left: 5%;
}
/*写真の右上にある金額*/
.list4 figure span {
	width: 40px;	/*幅*/
	line-height: 40px;	/*高さ*/
	font-size: 9px;	/*文字サイズ*/
}
/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体を非表示にする*/
#contact {
	display: none;
}

/*list7（まちなみガイドライン」のブロック）
---------------------------------------------------------------------------*/
/*各ブロックの設定*/
.list7 {
	width: 45%;		/*ブロック幅*/
}
/*h4見出し*/
.list7 h4 {
	font-size: 14px;
	
}

/*販売状況ページの「詳細を見る・応募する」ボタン
---------------------------------------------------------------------------*/
a.btn2 {
	
	font-size: 15px;	/*文字サイズ*/

}
/*お客様の声ページの「青」ボタン
---------------------------------------------------------------------------*/
a.btn3 {
	
	font-size: 11px;	/*文字サイズ*/
	
}
/*h4（区画図見出し）タグの設定*/
.list1 h4 {
	font-size: 100%;	/*文字サイズ*/	
}

/*安心安全小さなスライダー
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.photo1 {
	position: relative;	/*左に回り込み*/
	width: 100%;
	clear: none;
}

/*ご紹介内のh4タグ設定*/
.list3 h4 {
	font-size: 19px;	/*文字サイズ*/
	color: #59b9d5;		/*文字色*/
	font-weight: bold;
}
/*お客様の声　青い字*/
#voish4 {
	font-size: 18px;
	color: rgb(102,153,255);
	font-family: "游明朝", "游ゴシック";
	font-weight: bold;
	margin-bottom: 2%;
	margin-top: 4%;
}


}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px) {
/*ヘッダー
---------------------------------------------------------------------------*/
/*トップページのロゴ画像*/
#top #logo img {
	left: 26%;	/*左から26%の場所に配置*/
	top: 35%;	/*上から35%の場所に配置*/
	width: 100%;	/*画像の幅*/
}
/*物件一覧ページの各ブロック（※compactタイプへの追加設定）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#contents .main .list.compact {
	width: auto;
	float: none;
	margin: 0;
	border-top: 1px solid #dcdcdc;
	padding-top: 3%;
}
#contents .main .list.compact a {
	height: auto;
}
/*ボックス内の写真設定*/
#contents .main .list.compact figure img {
	float: left;
	width: 20%;
	margin-right: 10px;
}
/*最後のボックスへの追加設定*/
#contents .main .list.compact:last-of-type {
	margin-bottom: 15px;
	border-bottom: 1px solid #dcdcdc;
}
/*コンテンツ内のボックス（list2）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list2 {
	float: none;
	width: auto;
	height: auto;
}
.list2 a {
	height: auto;
}
/*ボックス内の画像設定*/
.list2 .img {
	height: auto;	/*画像の高さ*/
}
/*その他
---------------------------------------------------------------------------*/
.fr1, .fl1 {
	float: none;
	margin: 0;
	margin-bottom: 10px;
	width: 100%;
}
#footermenu {
	overflow: hidden;
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
	background: url(../images/footer_logo.png) no-repeat 95% center/20%;	/*フッターイメージ画像の読み込み。左から95%、上下中央に配置。幅12%。*/
}
/*ドックランページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list5 {
	float: none;
	width: auto;
	height: auto;
	margin: 0;
	margin-bottom: 20px;
	overflow: hidden;
}
/*写真の設定*/
.list5 figure img {
	float: left;	/*左に回り込み*/
	width: auto;		/*写真の幅*/
}
/*写真の右上にある金額*/
.list5 figure span {
	width: 90px;	/*幅*/
	line-height: 90px;	/*高さ*/
	font-size: 10px;	/*文字サイズ*/
	left: 0px;	/*listブロックに対して左から0pxの場所に配置*/
	top: 0px;	/*listブロックに対して上から0pxの場所に配置*/
}
/*ボックス内のh4見出しと段落タグ*/
.list5 h4, .list p {
	text-align: left;	/*文字を左寄せ*/
	margin-left: 25%;	/*左に空けるスペース。上の写真の幅をみて調整して下さい。*/
	font-size: 16px;
}
/*ご契約の流れページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list6 {
	float: none;
	width: auto;
	height: auto;
	margin: 0;
	margin-bottom: 20px;
	overflow: hidden;
}
/*写真の設定*/
.list6 figure img {
	float: left;	/*左に回り込み*/
	width: auto;		/*写真の幅*/
}
/*ボックス内のh4見出しと段落タグ*/
.list6 h4 {
	padding: 0px;
	margin-right: 0%;
	margin-left: 0%;
	font-weight: bold;
	text-align: center;
	color: rgb(0,102,0);
}
.list6 p {
	padding: 0px;
	margin-right: 0%;
	margin-left: 0%;
}
/*見出しのタイプ違い設定（トップページの挨拶で使っている大きな見出し）*/
.type1 {
	background: none !important;
	border-radius: 0 !important;
	color: #333333 !important;
	line-height: 1.3 !important;
	font-weight: bold !important;
	font-size: 25px !important;
	text-align: center !important;
	border: none !important;
	border-bottom: 1px dashed #37750d !important;
	margin-bottom: 22px !important;
	letter-spacing: 0.2em !important;
	text-shadow: 8px 8px #eee !important;
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
/*装飾用画像を非表示にする*/
#main h2.bg1::after, #main h3.bg1::after,
#main h2.bg2::after, #main h3.bg2::after,
#main h2.bg3::after, #main h3.bg3::after,
#main h2.bg4::after, #main h3.bg4::after,
#main h2.bg5::after, #main h3.bg5::after,
#main h2.bg6::after, #main h3.bg6::after,
#main h2.bg7::after, #main h3.bg7::after,
#main h2.bg8::after, #main h3.bg8::after{
	content: url(none);
}
/*装飾用画像が入った場合、テキストと画像が重ならないように右側に入れていた余白をリセットする*/
#main h2.bg1, #main h3.bg1,
#main h2.bg2, #main h3.bg2,
#main h2.bg3, #main h3.bg3,
#main h2.bg4, #main h3.bg4,
#main h2.bg5, #main h3.bg5,
#main h2.bg6, #main h3.bg6,
#main h2.bg7, #main h3.bg7, 
#main h2.bg8, #main h3.bg8
 {
	padding-right: 20px;
}

/*box2（３カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	width: auto;		/*ボックスの幅*/
	float: none;		/*左に回り込み*/
	padding: 3%;		/*余白の上書き*/
	margin: 0 0 20px 0;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 2;	/*行間*/
}
/*box2内のp(段落)タグ*/
.box2 p {
	height: auto;	/*高さ。*/
	font-size: 100%;		/*文字サイズ*/
	margin-bottom: 15px;
}
/*box2内のh4(見出し)タグ*/
.box2 h4 {
	height: auto;	/*高さ*/
}
/*box2内のbtn1*/
.box2 p.btn1 {
	position: static;
	width: 99%;		/*ボタンの幅*/
}

/*安心安全小さなスライダー
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.photo1 {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 40%;
	margin-right: 5%;
	margin-bottom: 5%;
}

#list3h4 {
	font-size: 16px;

}


}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {
/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}
/*inner
---------------------------------------------------------------------------*/
.inner {
	padding-left: 2% !important;
	padding-right: 2% !important;
}
/*コンテンツ（mainとsubを囲むブロック。１カラム時の場合はメインコンテツを囲むブロック。）
---------------------------------------------------------------------------*/
/*h2タグ*/
#contents h2 {
	font-size: 14px;
	padding: 5px 10px;	/*上下、左右へのボックス内の余白*/
}
/*h3タグ*/
#contents h3 {
	font-size: 14px;
	padding-left: 10px;
}
/*h2タグとh3タグの１文字目*/
#contents h2::first-letter, #contents h3::first-letter {
	padding-left: 10px;	/*線と文字との余白*/
}
/*段落タグ*/
#contents p {
	padding: 0 10px 20px;
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
/*section同士の余白*/
.main section + section {
	margin-top: 20px;
}
/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}
/*その他
---------------------------------------------------------------------------*/
.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;
}
.sh {
	display: block;
}
.pc {
	display: none;
}
.fs1 {
	font-size: 14px;
}



}

 #contents .inner .sub .box3 h2 a {
	color: rgb(255,255,204);
	text-decoration: none;
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
#contents .inner .sub .box3 h2 a:hover {
	color: rgb(255,255,255);
	text-decoration: none;
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
#aki {
	color: rgb(0,153,204);
}

#voicepoint {
	font-size: 16px;
	color: rgb(51,51,51);
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	text-align: center;
	font-weight: bold;
}
#yoyaku {
	font-size: 20px;
	font-weight: bold;
	color: rgb(51,102,153);
}
#gentei {
	background-color: rgb(255,255,204);
	color: rgb(102,102,102);
	font-weight: 600;
}




.inner .main section p .fl.w40p {
	margin-top: 5%;
}
.button3 {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	color: #FFF;
	border-radius: 4px;
	border: dashed 1px #FFF;
	background-color: #999999;
}
span.option3 {
	display: inline-block;line-height: 1;
	background: #ee6500;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 30px;	/*角丸の指定。大きめの数字であれば適当で構いません。*/
	padding: 3px 10px;		/*上下、左右への余白*/
	font-size: 12px;		/*文字サイズ*/
}

/*option1〜option2、と、newアイコン共通【再生】*/

.option1,.option2,.option3,.new3 {
	font-size: 9px;		/*文字サイズ*/
	padding: 0 10px;	/*上下、左右へのアイコン内の余白*/
	line-height: 14px;	/*高さ*/
	right: 15px;		/*右から15pxの場所に配置*/
}
}
