@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #f9f6f0 url(../images/bg.jpg) center / 100px;
}
h1,h2,h3,h4,h5,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: 20px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {max-width: 100%;}
iframe {width: 100%;}

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

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1500px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 3%;		/*上下、左右へのボックス内の余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 200px;	/*ヘッダーの高さ*/
	color: #fff;	/*文字色*/
}
header a {
	color: #fff;	/*リンクテキストの文字色*/
}
/*トップページへの追加設定*/
.home header {
	height: 400px;	/*ヘッダーの高さを上書き。*/
}
/*トップページ以外ヘッダー*/
.another header {
	background: url(../images/mainimg.jpg) no-repeat center center;			/*背景画像の読み込み。※古いブラウザ用。*/
	background: url(../images/mainimg.jpg) no-repeat center center / cover;	/*背景画像の読み込み*/
	height: 200px;	/*ヘッダーの高さ*/
	color: #fff;	/*文字色*/
}
/*ロゴ画像*/
header h1#logo {
	margin: 0 auto;
	width: 250px;		/*ロゴ画像の幅*/
	padding-top: 80px;	/*上に空ける余白。上下のバランス調整をここでとって下さい。*/
}
/*トップページへの追加設定*/
.home header h1#logo {
	width: 300px;		/*ロゴ画像の幅を上書き*/
	padding-top: 180px;	/*上に空ける余白の上書き。*/
}

/*ヘッダー右上メニュー
---------------------------------------------------------------------------*/
/*メニュー全体のブロック設定*/
#header-nav {
	position: absolute;
	right: 3%;	/*ヘッダーの右から3%の場所に配置。*/
	top: 30px;	/*ヘッダーの上から30pxの場所に配置。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広げる指定*/
	font-size: 13px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#header-nav li {
	float: left;	/*左に回り込み*/
	margin-left: 10px;	/*メニュー間に空けるスペース*/
}
#header-nav li a {
	text-decoration: none;display: inline-block;
	border: 2px solid #31682a;	/*枠線の幅、線種、色*/
	background: #fff;	
	padding: 0 10px;		/*上下、左右へのメニュー内の余白*/
	color: #666;
}
#header-nav li a:hover {
	background: #ffffbe;	/*マウスオン時の背景色*/
}
#mainimg{
	position: absolute;
	z-index: -1;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 100;
	background: #446d04 url(../images/bg_menu.jpg) repeat-x center center;	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #446d04 url(../images/bg_menu.jpg) repeat-x center center / 100px;	/*背景色、背景画像の読み込み。*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.4);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.4は色が40%ついた状態の事。*/
}
#menubar > ul {overflow: hidden;
	background: #446d04 url(../images/bg_menu.jpg) repeat-x center center;	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #446d04 url(../images/bg_menu.jpg) repeat-x center center / 100px;	/*背景色、背景画像の読み込み。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 20%;	/*メニュー幅（100÷5個=20%）*/
}
#menubar li a {
	display:  block;text-decoration: none;
	line-height: 1.6;	/*行間*/
	color: #fff;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	height: 50px;		/*高さ。下のmargin(10+10=20)とpadding-top(10)の数字を合計して「100」になるようにする。*/
	margin: 0 auto;		/*上下、左右に空けるメニューの外のスペース。この部分はマウスオン時に反応しない(色がかわらない)部分になります。*/
	padding-top: 20px;	/*メニュー内の上に空ける余白。上下のバランスをここで調整して下さい。*/
	padding-left: 30px;	/*メニュー内の左側に空ける余白。アイコンとのバランスを調整します。*/
	border-radius: 5px;	/*角丸のサイズ。マウスオン時に角が丸くなる設定です。*/
}
/*装飾文字（英語表記）の設定*/
#menubar li a span {
	text-shadow: none;display: block;
	font-size: 12px;		/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くする設定*/
	padding-left: 3px;		/*左に少しだけ余白を作る。*/
	opacity: 0.6;			/*60%だけ色がついた状態。*/
}
/*マウスオン時メニューと、現在表示中(current)メニューの設定*/
#menubar li a:hover,#menubar li.current a {
	background: rgba(0,0,0,0.15);	/*0,0,0は黒の事で、0.15は15%だけ色がついた状態の事。*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
		background: #31682a;	/*背景色（古いブラウザ用）*/
	background: #446d04 url(../images/bg_menu.jpg) repeat-x center center / 100px;	/*背景色、背景画像の読み込み。*/
}
body.is-fixed-menu .contents:first-of-type {
	margin-top: 100px;	/*メニューブロックの高さを指定する。背景画像も高さ100pxなので通常はこのままで。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	background: #31682a;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.95);	/*背景色。255,255,255は白の事で0.95は透明度。*/
}
body.is-fixed .contents:first-of-type {
	margin-top: 100px;
}
/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;	
	left: 0px;
	width: 84%;
	padding: 10px 8%;
	background: #446d04 url(../images/bg_menu.jpg) repeat-x center center;	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #446d04 url(../images/bg_menu.jpg) repeat-x center center / 200px;	/*背景色、背景画像の読み込み。*/
	font-size: 11px;		/*文字サイズ*/
	text-align: center;		/*文字を左よせ*/
	box-shadow: 2px 2px 8px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事。0.2は20%透明度。*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: auto;
	display: inline-block;
	font-size: 85%;	/*文字サイズ*/
}   
/*メニューが多い場合に上下に区切る*/
#menubar ul.ddmenu li .lefnav > div {
    float: left;
}   
#menubar ul.ddmenu li .rignav {
    float: none;
}  
#menubar ul.ddmenu li a {
	height: auto;
	padding: 20px;	/*メニューテキスト同士の余白*/
	color: #fff;	/*文字色*/
	opacity: 0.7;	/*透明度。70%色がついた状態。*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	opacity: 1;		/*透明度。色が100%出た状態。*/
}
/*contents
---------------------------------------------------------------------------*/
.contents {
	clear: both;overflow: hidden;
	padding-top: 40px;		/*上に空けるボックス内の余白*/
	padding-bottom: 40px;	/*下に空けるボックス内の余白*/
}
/*コンテンツのh2タグ設定*/
.contents h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	padding: 10px 20px;		/*上下、左右への余白*/
	font-size: 20px;		/*文字サイズ*/
	background: #446d04;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 5px;		/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
}
/*h2タグの１文字目の設定。左側のアクセントラインです。*/
.contents h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線と文字列との間に空ける余白*/
}
/*h2タグに「class="simple"」を指定した場合の追加設定。大文字でセンタリングされる見出しです。*/
.contents h2.simple {
	background: none;padding: 0;
	font-size: 28px;	/*文字サイズ*/
	text-align: center;	/*文字を中央に*/
	color: #446d04;		/*文字色*/
}
.contents h2.simple::first-letter {
	border: none;
	padding: 0;
}
.contents h2.simple + p {
	margin-top: -20px;
}
/*コンテンツのh3タグ設定*/
.contents h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	padding: 6px 15px;		/*上下、左右への余白*/
	font-size: 18px;		/*文字サイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
	border-radius: 5px;		/*角丸のサイズ*/
	background: #fff;		/*背景色*/
	color: #333;			/*文字色*/
}
/*h3タグの１文字目への設定。左側のアクセントラインです。*/
.contents h3::first-letter {
	border-left: 3px solid #529306;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線と文字列との間に空ける余白*/
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他*/
.contents h2 + p,
.contents h3 + p {
	margin-top: -10px;
}
.contents section + section {
	margin-top: 30px;
}
.contents p + p {
	margin-top: -8px;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
.main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ブロックの幅*/
}

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
.sub {
	float: left;	/*左に回り込み*/
	width: 20%;		/*ブロックの幅*/
}
/*h2見出しタグ設定*/
.sub h2 {
	margin-bottom: 0;
	letter-spacing: normal;
	font-size: 16px;
	background: #446d04;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px 0;		/*上下、左右への見出し内の余白*/
	border-radius: 5px 5px 0px 0px;	/*上、右、下、左への角丸の指定*/
}
.sub h2::first-letter {
	border: none;padding: 0;
}
.sub h2 + p,
.sub h3 + p {
	margin-top: 0;
}

/*サブメニュー（左側ブロックのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.sub .submenu {
	margin-bottom: 20px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
.sub .submenu li a {
	text-decoration: none;display: block;
	padding: 0 10px;	/*上下、左右のボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線だけ消す*/
	background: #fff;		/*背景色*/
	color: #666;	/*文字色*/
}
.sub .submenu li a:hover {
	color: #529306;
}

/*subコンテンツ内のlistブロック
---------------------------------------------------------------------------*/
.sub .list {
	overflow: hidden;
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
	background: #fff;	/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;	/*上の線だけ消す*/
	padding: 5px;		/*ボックス内の余白*/
	color: #666;		/*文字色*/
}
.sub .list a {
	color: #666;		/*リンクテキストの文字色*/
}
/*最後のlistボックスへの設定*/
.sub .list:last-of-type {
	margin-bottom: 20px;	/*ボックスの下に空ける余白*/
}
/*画像*/
.sub .list figure {
	float: left;		/*左に回り込み*/
	width: 30%;			/*画像幅*/
	margin-right: 5px;	/*画像の右に空けるスペース*/
}
/*h4見出しの文字色*/
.sub .list h4, .sub .list h4 a {
	color: #529306;
}

/*各ページ下部に配置している「アクセス」ブロック
---------------------------------------------------------------------------*/
/*左側ブロック（地図が入っている方）*/
.href-left {
	float: left;	/*左に回り込み*/
	width: 49%;		/*ブロック幅*/
}
/*右側ブロック（詳細情報）*/
.href-right {
	float: right;	/*右に回り込み*/
	width: 49%;		/*ブロック幅*/
}
/*ソーシャルメディアアイコン*/
.icon img {
	width: 40px;	/*画像の幅*/
}

/*「家マップ」ブロック
---------------------------------------------------------------------------*/
/*左側ブロック*/
.href-left2 {
	float: left;	/*左に回り込み*/
	width: 39%;		/*ブロック幅*/
}
.href-left2 p{
	padding: 20px 20px;	/*上、左右、下への余白*/
	background-color: #ffffbe;
}

/*右側ブロック*/
.href-right2 {
	float: right;	/*右に回り込み*/
	width: 59%;		/*ブロック幅*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 12px;	/*文字サイズ*/
	color: #b8b8b8;	/*文字色*/
	background: #444;	/*背景色*/
}
/*リンクテキスト*/
footer a {
	color: #b8b8b8;	/*文字色*/
	text-decoration: none;
}
/*リンクのマウスオン時*/
footer a:hover {
	color: #fff;
}
footer .pr {display: block;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 3%;	/*上下、左右のボックス内の余白*/
	color: #fff;		/*文字色*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 15%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	line-height:1.6;
}
/*１行分の設定*/
#footermenu .wide{
	width: 30%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
}
/*「class="title"」をつけた場合の設定*/
#footermenu .title {
	font-weight: bold;	/*太字にする*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
	font-size: 12px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
}
/*リンクテキスト*/
#copyright a {text-decoration: none;color: #fff;}

/*box1（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	overflow: hidden;
	background: #fff;		/*背景色*/
	color: #666;			/*文字色*/
	margin: 0 2% 20px;		/*上、左右、下へのボックスの外に空けるスペース*/
	border: 1px solid #eeeae2;	/*枠線の幅、線種、色*/
	padding: 3%;
}
/*box1内のh4(見出し)タグ*/
.box1 h4 {
	color: #529306;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	border-bottom: 2px dotted #529306;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*box1内のp(段落)タグ*/
.box1 p {padding: 0 !important;line-height: 1.5;}
.box1 p a {color: #666;}
/*box2内のbtn1。本体の設定はこの下の下のブロックにあります。*/
.box1 p.btn1 {margin-top: 20px;}

/*box1a　場所別リフォーム
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1a {
	overflow: hidden;
	background: #fff;		/*背景色*/
	color: #666;			/*文字色*/
	margin: 0 2% 20px;		/*上、左右、下へのボックスの外に空けるスペース*/
	border: 1px solid #eeeae2;	/*枠線の幅、線種、色*/
	padding: 3%;
}
/*box1内のh4(見出し)タグ*/
.box1a h4 {
	color: #529306;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	border-bottom: 2px dotted #529306;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*box1内のp(段落)タグ*/
.box1a p {padding: 0 !important;line-height: 1.5;}
.boxa1 p a {color: #666;}
/*box2内のbtn1。本体の設定はこの下の下のブロックにあります。*/
.box1a img {width :100%;}

/*box2（３カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	position: relative;
	width: 24.5%;		/*ボックスの幅*/
	float: left;		/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	padding: 3%;		/*ボックス内の余白*/
	padding-bottom: 75px;	/*下の余白だけ上書き*/
	background: #fff;		/*背景色*/
	border: 1px solid #eeeae2;	/*枠線の幅、線種、色*/
	margin: 0 0 20px 2%;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 1.5;	/*行間*/
	color: #666;		/*文字色*/
}
/*box2内の日付*/
.box2 span.icn {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #529306;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/

}
/*box2内の日付*/
.box2 span.date {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #529306;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/
	transform: rotate(-20deg);	/*回転の角度*/
}
/*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;	/*オーバーした分は非表示に。*/
}
/*box2内のfigure(画像)タグ*/
.box2 figure {
	margin-bottom: 5px;	/*下に空けるスペース*/
}
/*box2内のbtn1。本体の設定はこの下のブロックにあります。*/
.box2 p.btn1 {
	height: auto;
	position: absolute;
	bottom: 30px;	/*box2の下から30pxの場所に配置*/
	width: 80%;		/*ボタンの幅*/
}
.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;	/*文字色*/
}

/*box2x（2カラムボックス）　review.html施工事例
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2x {
	position: relative;
	width: 37%;		/*ボックスの幅*/
	float: left;		/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	padding: 3%;		/*ボックス内の余白*/
	padding-bottom: 75px;	/*下の余白だけ上書き*/
	background: #fff;		/*背景色*/
	border: 1px solid #eeeae2;	/*枠線の幅、線種、色*/
	margin: 0 0 20px 2%;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 1.5;	/*行間*/
	color: #666;		/*文字色*/
}
/*box2x内の日付*/
.box2x span.icn {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #529306;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/

}
/*box2x内の日付*/
.box2x span.date {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #529306;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/
	transform: rotate(-20deg);	/*回転の角度*/
}
/*box2x内のp(段落)タグ*/
.box2x p {
	padding: 0 !important;
	height: 4.5em;		/*高さ。*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	font-size: 14px;	/*文字サイズ*/
	text-align: left;	/*文字を左よせ*/
}
/*段落タグにリンクが設定された場合の文字色*/
.box2x p a {
	color: #666;
}
/*box2x内のh4(見出し)タグ*/
.box2x h4 {
	color: #529306;	/*文字色*/
	height: 1.5em;	/*高さ*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
}
/*box2x内のfigure(画像)タグ*/
.box2x figure {
	margin-bottom: 5px;	/*下に空けるスペース*/
}
/*box2x内のbtn1。本体の設定はこの下のブロックにあります。*/
.box2x p.btn1 {
	height: auto;
	position: absolute;
	bottom: 30px;	/*box2xの下から30pxの場所に配置*/
	width: 80%;		/*ボタンの幅*/
}
.box2x p.btn1 a {
	display: block;
	padding: 5px 0;	/*上下、左右へのボタン内の余白*/
}

/*写真を３列に並べたレイアウト
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.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%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;	/*左に回り込み*/
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
	color: #529306;	/*文字色*/
}
/*記事設定*/
#new dd {
	padding-left: 9em;	/*左に空ける余白*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;			/*文字色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*リンクテキストの文字色*/
.ta1 a {color: #666;}
/*ta1のtdタグ内のリストタグ*/
.ta1 td ul.disc {padding: 0 5px 0 20px;}
/*ta1のtdタグ内の段落(p)タグ*/
.ta1 p {padding: 0;}

/*テーブル2
---------------------------------------------------------------------------*/
/*ta2設定*/
.ta2 caption {
	border: none;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;		/*文字を左寄せ*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
.ta2 {
	width: 90%;
	margin: 0 auto;
	background: #fff;	/*背景色*/
	color: #666;			/*文字色*/
	font-size: 80%;
	padding-top: 20px;
}
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 5px 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*ta1の左側ボックス*/
.ta2 th {
	width: 200px;		/*幅*/
	text-align: left;	/*センタリング*/
	font-weight: normal;
}
/*リンクテキストの文字色*/
.ta2 a {color: #666;}
/*ta1のtdタグ内のリストタグ*/
.ta2 td ul.disc {padding: 0 5px 0 20px;}
/*ta1のtdタグ内の段落(p)タグ*/
.ta2 p {padding: 0;}

/*環境レポート用テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.takankyo caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*takankyo設定*/
.takankyo {
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;			/*文字色*/
}
.takankyo, .takankyo td, .takankyo th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*takankyoの左側ボックス*/
.takankyo th {
	width: 200px;		/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*リンクテキストの文字色*/
.takankyo a {color: #666;}
/*takankyoのtdタグ内のリストタグ*/
.takankyo td ul.disc {padding: 0 5px 0 20px;}
/*takankyoのtdタグ内の段落(p)タグ*/
.takankyo p {padding: 0;}

/*環境レポート用テーブル内テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.takankyo2 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*takankyo2設定*/
.takankyo2 {
	width: 100%;
	margin: 0 auto 10px;
	background: #fff;	/*背景色*/
	color: #666;			/*文字色*/
}
.takankyo2, .takankyo2 td, .takankyo2 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*takankyo2の左側ボックス*/
.takankyo2 th {
	width: 150px;		/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*リンクテキストの文字色*/
.takankyo2 a {color: #666;}
/*takankyo2のtdタグ内のリストタグ*/
.takankyo2 td ul.disc {padding: 0 5px 0 20px;}
/*takankyo2のtdタグ内の段落(p)タグ*/
.takankyo2 p {padding: 0;}

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

/*パンくずナビ
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
.pan {
	background: #8cc31e;	/*背景色（古いブラウザ用）*/
	background: rgba(240,220,95,0.7);	/*背景色。0,0,0は黒の事で、0.7は70%色がついた状態の事。*/
	margin-bottom: 40px;			/*ボックスの下に空けるスペース*/
	margin-top: -40px;				/*ボックスを上のメニューにつけるための指定*/
	padding: 2px 3%;				/*ボックス内の余白。上下、左右。*/
	color: #666;					/*文字色*/
}
/*メニュー１個あたりの設定*/
.pan li {
	display: inline-block;	/*横並びにさせる指定*/
	padding: 2px;		/*余白*/
}
/*リンクテキストの文字色*/
.pan a {
	color: #bebebe;
}
/*マウスオン時リンクテキストの文字色*/
.pan a:hover {
	color: #fff;
}
/*リストタグの頭に加える記号*/
.pan li::before {
	content: ">";	/*このテキストを表示させる*/
	color: #bebebe;	/*文字色*/
	padding-right: 12px;	/*記号とテキストとの余白*/
}
/*１番目のリストタグの頭に加える文字のリセット*/
.pan li:first-child::before {
	content: "";	/*テキストを空にする*/
}

/*背景色（bg1）
---------------------------------------------------------------------------*/
.bg1 {
	background: #e7dac4 url(../images/bg1.jpg);	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #e7dac4 url(../images/bg1.jpg) center / 100px;	/*背景色、背景画像の読み込み。*/
}

/*背景色（bg2）
---------------------------------------------------------------------------*/
.bg2 {
	background: #446d04 url(../images/bg2.jpg);	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #446d04 url(../images/bg2.jpg) center / 100px;	/*背景色、背景画像の読み込み。*/
	color: #fff;	/*文字色*/
}
.bg2 a {color: #fff;}
.bg2 h2 {color: #fff !important;}

/*背景色（bg-access）※全ページ下部にある「アクセス」ブロック
---------------------------------------------------------------------------*/
.bg-access {
	background: #184062 url(../images/bg-access.jpg);	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #184062 url(../images/bg-access.jpg) center / cover;	/*背景色、背景画像の読み込み。*/
}
.bg-access,.bg-access a {color: #fff;}
/*bg-access内のテーブル(ta1)*/
.bg-access .ta1 {
	background: transparent;
	color: #fff;
}
/*bg-access内の「h2 class="simple"」見出し*/
.bg-access h2.simple {
	color: #fff !important;
}

/*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;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ。円形にする。正方形がいいならこの１行削除。*/
	bottom: 30px;	/*下から30pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%ついた状態の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*「NEW」アイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;	/*背景色*/
	color:#fff;				/*文字色*/
	padding: 10px 25px !important;	/*上下、左右へのボックス内余白*/
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*FAQ ドロップダウン開閉
---------------------------------------------------------------------------*/

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	border-top: 1px solid #666;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-bottom: 1px;
	color: #1b2538;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 1em;
	cursor: pointer;
	border-bottom: 1px solid #666;
}
.cp_qa .cp_actab label:hover {
	color: #00838F;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.5s ease;
	        transition: max-height 0.5s ease;
	color: #ffffff;
	background: rgba(0, 131, 143, 0.5);
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em;
}
/* 質問を開いた時の仕様 */
/* --アイコン */
.cp_qa .cp_actab input:checked ~ label {
	color: #00838F;
}
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab label::after {
	line-height: 1.6;
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 3em;
	margin-top: -12.5px;
	-webkit-transition: all 0.5s ease;
	        transition: all 0.5s ease;
	text-align: center;
}
.cp_qa .cp_actab input[type=checkbox] + label::after {
	content: '▼';
}
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

/*list3a（3個並びバナー）
---------------------------------------------------------------------------*/
/*各ブロックの設定*/
.list3a {
	overflow: hidden;
	width: 27%;		/*ブロック幅*/
	float: left;	/*左に回り込み*/
	margin-left: 1%;	/*ボックスの外側(左側)に空けるスペース*/
	padding: 1%;		/*ボックス内の余白*/
}
/*h4見出し*/
.list3a h4 {
	font-size: 16px;	/*文字サイズ*/
	text-align: center;	/*文字を中央に*/
	color: #000;		/*文字色*/
}
/*figure画像*/
.list3a figure {
	background: #fff;	/*背景色*/
	padding: 0px;		/*余白*/
	box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);	/*影。右へ、下へ、ぼかす範囲、広げる範囲。0,0,0は黒の事で0.2は透明度20%の事*/
}
.list3a a {
	text-decoration: none;
}

/*テーブル　flow
---------------------------------------------------------------------------*/
.taaa {
	width: 100%;
	line-height:1.6em;
}
.taaa, .taaa td, .taaa th {
	font-size: 14px;
}
/*テーブル内の右側*/
.taaa td{
	padding: 2px;
	text-align: top;
}
/*テーブル内の左側*/
.taaa th{
	width: 38%;
	padding: 2px;
	text-align: center;
	/* background: #f3f3f3;	*/ /*背景色*/ 
}
.taaa h3{
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	padding: 6px 15px;		/*上下、左右への余白*/
	font-size: 18px;		/*文字サイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #fff;		/*背景色*/
	color: #333;			/*文字色*/
}

/*ノート風　flow.html
---------------------------------------------------------------------------*/
.note{
    position: relative;
    background-color: #fffffe; 
    background-image: 
    linear-gradient(rgba(241,207,164,0.5) .1em, transparent .1em);
    background-size: 100% 1.6em;
    line-height:1.6em;
	}
	
/*調査の流れステップブロック（diagnosis.html）
---------------------------------------------------------------------------*/
/*ステップブロック１個あたりの設定*/
.step {
	overflow: hidden;
	padding: 20px 20px 120px;	/*上、左右、下へのボックス内の余白*/
	margin-bottom: 20px;
	background: url(../images/arrow1.png) no-repeat center bottom/200px;	/*背景の矢印画像の読み込み。りピーとせず、中央下部に配置。幅は200px。*/
}
/*h4見出し*/
.step h4 {
	color: #88b276;		/*文字色*/
	font-size: 30px;	/*文字サイズ*/
}
/*h4見出しのspanタグ。見出し冒頭の番号。*/
.step h4 span {
	display: inline-block;
	background: #88b276;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ（行間）*/
	border-radius: 50%;		/*角丸のサイズ。50%にすると円形になる。*/
	text-align: center;		/*文字を中央に*/
	margin-right: 20px;		/*右側に空けるスペース*/
}
/*段落タグ*/
.step p {
	padding: 0 !important;
}
/*最後のステップボックス*/
.step:last-child {
	background: none;	/*背景を消す*/
	padding-bottom: 0;	/*下の余白を消す*/
}

/*空家ステップブロック（akiya.html）
---------------------------------------------------------------------------*/
/*ステップブロック１個あたりの設定*/
.step2 {
	overflow: hidden;
	padding: 10px 20px 20px;	/*上、左右、下へのボックス内の余白*/
	margin-bottom: 10px;
}
/*h4見出し*/
.step2 h4 {
	color: #88b276;		/*文字色*/
	font-size: 30px;	/*文字サイズ*/
}
/*h4見出しのspanタグ。見出し冒頭の番号。*/
.step2 h4 span {
	display: inline-block;
	background: #88b276;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ（行間）*/
	border-radius: 50%;		/*角丸のサイズ。50%にすると円形になる。*/
	text-align: center;		/*文字を中央に*/
	margin-right: 20px;		/*右側に空けるスペース*/
}
/*段落タグ*/
.step2 p {
	padding: 0 !important;
}
/*最後のステップボックス*/
.step2:last-child {
	background: none;	/*背景を消す*/
	padding-bottom: 0;	/*下の余白を消す*/
}
/*場所別　ボタン
---------------------------------------------------------------------------*/
a.btn2b {
	display: block;
	width: 90%;
	text-decoration: none;
	background: #12a992;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#2dbea8, #12a992);	/*グラデーション*/
	color: #fff;	/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 5px;		/*ボタン内の余白*/
	margin-top: 5px;
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
/*ボタン　マウスオン時。*/
a:hover.btn2b {
	position: relative;top:1px;left:1px;	/*マウスオン時に少し移動させる設定。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
	background: linear-gradient(#12a992, #2dbea8);	/*グラデーション*/

}

/*box1w（１カラムボックス）　basho.html　ボタンのところ
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1w {
	overflow: hidden;
	color: #666;			/*文字色*/
	clear: both;
}
/*box1内のh4(見出し)タグ*/
.box1w h4 {
	color: #529306;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	border-bottom: 2px dotted #529306;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*box1内のp(段落)タグ*/
.box1w p {padding: 0 !important;line-height: 1.5;}
.box1w p a {color: #666;}
.box1w ul {
    padding: 0px; 	
    margin: 0px;
}
.box1w ul li{
	 display: inline;
	float: left;	/*左に回り込み*/
	width: 25%;	/*メニュー幅（100÷4個=25%）*/
	padding-top: 1%;
}
.box1w a:hover {
	opacity: 0.8;	/*マウスオン時に80%透明度にする*/
}

/*box1w（１カラムボックス）　basho.html　画像バナー並びのところ
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1f {
	overflow: hidden;
	color: #666;			/*文字色*/
	clear: both;
}
/*box1内のh4(見出し)タグ*/
.box1f h4 {
	color: #529306;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	border-bottom: 2px dotted #529306;	/*下線の幅、線種、色*/
	margin-bottom: 5px;	/*下に空けるスペース*/
}
/*box1内のp(段落)タグ*/
.box1f p {padding: 0 !important;line-height: 1.5;}
.box1f p a {color: #666;}
.box1f ul {
    padding: 0px; 	
    margin: 0px;
}
.box1f ul li{
	 display: inline;
	float: left;	/*左に回り込み*/
	width: 15%;	/*メニュー幅（100÷6個=16.6-すきま）*/
	padding-top: 1%;
	padding-left: 1%;
}
.box1f a:hover {
	opacity: 0.8;	/*マウスオン時に80%透明度にする*/
}
/*環境方針のテーブル
---------------------------------------------------------------------------*/
table.tabl {
	width: 98%;
	line-height:1.2em;
	background: #ffffe0;
	border: 2px solid #f0e68c;
}
.tabl, .tabl td, .tabl th{
	font-size: 14px;
}
/*テーブルセル*/
.tabl td{
	padding: 5px;
	text-align: top;
}
/*テーブル内の左側*/
.tabl th{
	width: 38%;
	padding: 2px;
	text-align: center;
	/* background: #f3f3f3;	*/ /*背景色*/ 
}

/*Youtube動画埋め込み
---------------------------------------------------------------------------*/
.iframe-content {
    position: relative;
    width: 700px;
	height: 315px;
    padding: 75% 0 -30% 0;
    display: block;
    margin: 0px auto;
}
.iframe-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 315px;
}
/*survey.html（list　サムネイルブロックタイプ）
---------------------------------------------------------------------------*/
.wrap1 {
  display: flex;
  flex-wrap: wrap;
	margin: 0 auto;
}
.item1 {
  padding: 1%;
  width: 28%;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);	/*影。右へ、下へ、ぼかす範囲、広げる範囲。0,0,0は黒の事で0.2は透明度20%の事*/
  margin: 1%;
}
.item1 h4{
		border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
/*ボックス全体*/
dl.line {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	font-size: 0.8em;	/*文字サイズを70%に。*/
}
/*左右のボックス*/
dl.line dt, dl.line dd {
	padding: 2px;					/*上下、左右へのボックス内の余白*/
}
/*右のボックス*/
dl.line dd {
	width: 100%;
}

/*地盤調査のところの2つ写真並び*/
.item2 {
  padding: 1%;
  width: 45%;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);	/*影。右へ、下へ、ぼかす範囲、広げる範囲。0,0,0は黒の事で0.2は透明度20%の事*/
  margin: 1%;
}
.item2 h4{
	font-size:14px;
		border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

/*調査ページの「左右リスト」設定
---------------------------------------------------------------------------*/
/*メニュータイトル*/
dl.text-menu dt {

	 border-radius: 5px;			/*角丸の指定。この行削除すれば通常の長方形になります。*/
	 padding: 2px 5px;				/*上下、左右への余白*/
	 text-align: center;			/*テキストをセンタリング*/
}
dl.text-menu dt.merit {
	background: #ffc0cb;	/*背景色ピンク*/
}
dl.text-menu dt.demerit {
	background: #b0e0e6;	/*背景色ブルー*/
}
dl.text-menu dt.color11 {
	background: #f0e68c;	/*背景色カーキ*/
}
dl.text-menu dt.color12 {
	background: #bdb76b;	/*背景色ダークカーキ*/
}
dl.text-menu dd + dt {
	margin-top: 10px;

}
/*メニュー名*/
dl.text-menu dd {
	overflow: hidden;
	margin: 0px 20px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	font-size: 80%;
	line-height: 1.6;
}
/*金額*/
dl.text-menu dd .price {
	float: right;	/*右に回り込み*/
}

/*地盤調査　点検ポイント　テキスト+画像2枚
---------------------------------------------------------------------------*/
.yokonarabi{
    display:flex;
	border-bottom: 1px dotted #529306;	/*下線の幅、線種、色*/	
	padding-top:1%;
	padding-bottom:1%;
}
.yokonarabi:last-child{
	border-bottom: none;	/*下線の幅、線種、色*/	
}
.yokonarabi>div{
    width:37%;
	margin-right: 2%;
}
.yokonarabi>figure{
    width:27%;
	margin-right: 2%;
}
.yokonarabi div h4{
	color: #529306;		/*文字色*/
	font-size: 14px;	/*文字サイズ*/
	border-bottom: 1px solid #529306;	/*下線の幅、線種、色*/
	clear: both;
}
.yokonarabi div p{
	font-size: 12px;	/*文字サイズ*/
	clear: both;
}
/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb40 {margin-bottom: 40px !important;}
.clear {clear: both;}
.ofh {overflow: hidden;}
ul.disc {padding: 0em 25px 20px;list-style: disc;}
.color1, .color1 a {color: #529306;}
.color2, .color2 a {color: #fff; font-weight: bold; font-size:14px;}
.color3, .color3 a {color: #529306; font-weight: bold; font-size:16px;}
.pr {font-size: 10px;}
.fs12 {font-size: 12px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr,figure.fr {float: right;margin: 10px;}
img.fl,figure.fl {float: left;margin: 10px;}
.fr {float: right;}
.fl {float: left;}
.w30p {width: 30%;}
.w65p {width: 65%;}
.w35p {width: 35%;}
.w60p {width: 60%;}
.w80p {width: 98%;}
.w48p {width: 48%;}
.big1 {font-size: 28px;letter-spacing: 0.1em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.link {display: block;margin-top: -120px;padding-top: 120px;}
.br-pc { display:block; }/*PC用強制改行*/
.br-sp { display:none; }/*スマホ用強制改行*/

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

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li a {
	font-size: 16px;	/*文字サイズ*/
	height: 65px;		/*高さ*/
	padding-top: 15px;	/*メニュー内の上に空ける余白。上下のバランスをここで調整して下さい。*/
}

}



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 100px;	/*上から100pxの場所に配置*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	height: 85px;		/*高さ。下のpadding-top(15)と合計して「100」になるようにする。*/
	padding-top: 15px;	/*上に空ける余白*/
	padding-left: 20px;	/*左に空ける余白。背景用アイコンとの距離をここで調整。*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	font-size: 20px;	/*文字サイズ*/
	color: #fff;	/*文字色*/
}
#menubar-s li{
	background: rgba(0,0,0,0.8) 
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 24px;	/*上から24pxの場所に配置*/
	left: 3%;	/*左から3%の場所に配置*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）の設定をなくす
---------------------------------------------------------------------------*/
body.is-fixed-menu .contents:first-of-type,
body.is-fixed .contents:first-of-type {
	margin-top: 0px;
}

/*contents
---------------------------------------------------------------------------*/
/*h2タグに「class="simple"」を指定した場合の追加設定。大文字でセンタリングされる見出しです。*/
.contents h2.simple {
	font-size: 16px;	/*文字サイズ*/
}

/*main,sub
---------------------------------------------------------------------------*/
.main, .sub{
	float: none;
	width: auto;
}

/*subコンテンツ内のlistブロック
---------------------------------------------------------------------------*/
.sub .list {
	line-height: 2;		/*行間*/
	padding: 10px;		/*ボックス内の余白*/
}
/*画像*/
.sub .list figure {
	width: 15%;			/*画像幅*/
	margin-right: 10px;	/*画像の右に空けるスペース*/
}

/*list3a（バナー3個並び）のブロック
---------------------------------------------------------------------------*/
/*各ブロックの設定*/
.list3a{
	width: 90%;		/*ブロック幅*/
	clear: both;
}
/*h4見出し*/
.list3a h4 {
	font-size: 12px;	/*文字サイズ*/
}

/*box1a　場所別リフォーム
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1a {
	clear: both;
}
.box1a img {width :100%;}

/*survey.html（list　サムネイルブロックタイプ）
---------------------------------------------------------------------------*/
.item1 {
  padding: 5px;
  width: 40%;
  margin-bottom: 10px;
}

/*ボックス全体*/
dl.line {
	font-size: 0.7em;	/*文字サイズを70%に。*/
}

/*テーブル2
---------------------------------------------------------------------------*/
/*ta2設定*/
.ta2 th {
  display: block;
  width: auto;
  background: #ddd;
  padding: 0px 5px;	/*ボックス内の余白*/
}
.ta2 td {
	display: block;
	width: auto;
}




/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side,body.s-n #footermenu {display: none;}
.sh {display:block;}
.pc {display:none;}
.link {margin-top: 0;padding-top: 0;}
.w48p {width: 100%;}

img.fr,figure.fr {float: none; margin: 0 auto;width: 70%;}
img.fl,figure.fl {float: none;margin: 0 auto;width: 70%;}
.fr {clear:both; width:98%;}
.fl {clear:both; width:98%;}

}



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

/*contents
---------------------------------------------------------------------------*/
.contents {
	padding-top: 20px;		/*上に空けるボックス内の余白*/
	padding-bottom: 20px;	/*下に空けるボックス内の余白*/
}
.contents section + section {
	margin-top: 20px;
}

/*サブメニュー（左側ブロックのメニュー）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
.sub .submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

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

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

/*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%;		/*ボタンの幅*/
}

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


/*各ページ下部に配置している「アクセス」ブロック
---------------------------------------------------------------------------*/
/*左側ブロック、右側ブロック*/
.href-left,.href-right {
	float: none;
	width: auto;
	padding-bottom: 30px;
}
/*「家マップ」ブロック
---------------------------------------------------------------------------*/
/*左側ブロック、右側ブロック*/
.href-right2 {
	float: none;
	width: auto;
	padding-bottom: 5px;
}
/*左側ブロック、右側ブロック*/
.href-left2{
	display: none;
}
/*パンくずナビ
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
.pan {
	margin-bottom: 20px;	/*ボックスの下に20pxのスペースを空ける*/
	margin-top: -20px;		/*ボックスを上のメニューにつけるための指定*/
	padding: 0;				/*ボックス内の余白。上下、左右。*/
}
/*場所別ボタン
---------------------------------------------------------------------------*/
a.btn2b {
	display: block;
	width: auto;
	clear: both;
	background: #2dbea8;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#12a992, #2dbea8);	/*グラデーション*/
	color: #fff;	/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px;		/*ボタン内の余白*/
	border-radius: 2px;	/*角丸のサイズ*/
}
/*ボタン　マウスオン時。*/
a:hover.btn2b {
	position: relative;top:1px;left:1px;	/*マウスオン時に少し移動させる設定。*/
	background: linear-gradient(#2dbea8, #12a992);	/*グラデーション*/

}

/*地盤調査　点検ポイント　テキスト+画像2枚
---------------------------------------------------------------------------*/
.yokonarabi{
    display:block;
	clear: both;
}

.yokonarabi>div{
    display:block;
	clear: both;
	width: 98% !important;
	margin-bottom: 1%;
}
.yokonarabi>figure{
    width:80%;
	margin-right: 1%;
}




}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 3vw;	/*文字サイズ*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*トップページへの追加設定*/
.home header {
	height: 300px;	/*ヘッダーの高さを上書き。*/
}

/*トップページへの追加設定*/
.home header h1#logo {
	width: 70%;		/*ロゴ画像の幅を上書き*/
	padding-top: 40%;	/*上に空ける余白の上書き。*/
}

#mainimg{
	position: absolute;
	z-index: -1;
}

/*ヘッダー右上メニュー
---------------------------------------------------------------------------*/
/*メニュー全体のブロック設定*/
#header-nav {
	top: 10px;			/*ヘッダーの上から10pxの場所に配置。*/
	font-size: 11px;	/*文字サイズ*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: 10px;	/*上から10pxの場所に配置*/
}

/*contents
---------------------------------------------------------------------------*/
/*コンテンツのh2タグ設定*/
.contents h2 {
	padding: 5px 10px;	/*上下、左右への余白*/
	font-size: 14px;	/*文字サイズ*/
	margin-bottom: 10px;
}
/*コンテンツのh3タグ設定*/
.contents h3 {
	padding: 3px 10px;	/*上下、左右への余白*/
	font-size: 12px;	/*文字サイズ*/
	margin-bottom: 10px;
}
/*h2タグに「class="simple"」を指定した場合の追加設定。大文字でセンタリングされる見出しです。*/
.contents h2.simple {
	font-size: 18px;	/*文字サイズ*/
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 10px 10px;	/*上、左右、下への余白*/
}
/*他*/
.contents h2 + p,
.contents h3 + p {
	margin-top: -5px;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}
/*環境ページテーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.takankyo caption {
	padding: 5px;
}
/*テーブル内の左側*/
.takankyo th {
	width: 80px;
	padding: 5px;
}
/*テーブル内の右側*/
.takankyo td {
	width: auto;
	padding: 5px;
}
/*環境ページテーブル内テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.takankyo2 caption {
	padding: 5px;
}
/*テーブル内の左側*/
.takankyo2 th {
	display:block;
	width: auto;
	padding: 2px;
}
/*テーブル内の右側*/
.takankyo2 td {
	display:block;
	width: auto;
	padding: 5px;
}
/*youtube埋め込み
---------------------------------------------------------------------------*/
.iframe-content {
    position: relative;
    width: 100% !important;
    max-width: 98% !important;

    padding: 75% 0 -30% 0;
    display: block;
    margin: 0px auto;
}
.iframe-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 98% !important;

}
/*box1とbox2
---------------------------------------------------------------------------*/
/*h4(見出し)タグ*/
.box1 h4,.box2 h4,.box2x h4{
	font-size: 16px;	/*文字サイズ*/
}
/*box1a 場所別リフォーム
---------------------------------------------------------------------------*/
/*h4(見出し)タグ*/
.box1a h4 {
	font-size: 16px;	/*文字サイズ*/
}
/*box1とbox2
---------------------------------------------------------------------------*/
/*h4(見出し)タグ*/
.box1f h4,.boxfw h4 {
	font-size: 16px;	/*文字サイズ*/
}
/*調査の流れステップブロック（diagnosis.html）
---------------------------------------------------------------------------*/
/*ステップブロック１個あたりの設定*/
.step {
	padding: 10px 10px 60px;	/*上、左右、下へのボックス内の余白*/
	margin-bottom: 10px;
	background: url(../images/arrow1.png) no-repeat center bottom/100px;	/*背景の矢印画像の読み込み。りピーとせず、中央下部に配置。幅は200px。*/
}
/*h4見出し*/
.step h4 {
	font-size: 20px;	/*文字サイズ*/
}
/*h4見出しのspanタグ。見出し冒頭の番号。*/
.step h4 span {
	width: 30px;			/*幅*/
	line-height: 30px;		/*高さ（行間）*/
	margin-right: 10px;		/*右側に空けるスペース*/
}
/*空家ステップブロック（akiya.html）
---------------------------------------------------------------------------*/
/*ステップブロック１個あたりの設定*/
.step2 {
	padding: 10px 10px 60px;	/*上、左右、下へのボックス内の余白*/
	margin-bottom: 10px;
}
/*h4見出し*/
.step2 h4 {
	font-size: 20px;	/*文字サイズ*/
}
/*h4見出しのspanタグ。見出し冒頭の番号。*/
.step2 h4 span {
	width: 30px;			/*幅*/
	line-height: 30px;		/*高さ（行間）*/
	margin-right: 10px;		/*右側に空けるスペース*/
}
/*場所別ボタン
---------------------------------------------------------------------------*/
a.btn2b {
	display: block;
	width: auto;
	clear: both;
	background: #2dbea8;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#12a992, #2dbea8);	/*グラデーション*/
	color: #fff;	/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 5px;		/*ボタン内の余白*/
	border-radius: 2px;	/*角丸のサイズ*/
}
/*環境方針のテーブル
---------------------------------------------------------------------------*/
.box1.tabl {
	width: 95%;
	line-height:1.6em;
}
/*テーブル内の右側*/
.box1.tabl td{
	width: 90%;
	padding: 2px;
}
/*Youtube動画埋め込み　スマホ
---------------------------------------------------------------------------*/
.iframe-content {
    position: relative;
    width: 100% !important;
    max-width: 98% !important;

    padding: 75% 0 -30% 0;
    display: block;
    margin: 0px auto;
}
.iframe-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 98% !important;

}
/*survey.html（list　サムネイルブロックタイプ）
---------------------------------------------------------------------------*/
.item1 {
  padding: 2px;
  width: 40%;
  margin-bottom: 10px;
}

/*ボックス全体*/
dl.line {
	font-size: 0.6em;	/*文字サイズを70%に。*/
}
/*2タブ*/
.main,.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: DeepSkyBlue;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: DeepSkyBlue;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
/*list3a（バナー3個並び）のブロック
---------------------------------------------------------------------------*/
/*h4見出し*/
.list3a h4 {
	font-size: 12px;	/*文字サイズ*/
}
/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,figure.fr,img.fl,figure.fl {float: none;margin: 0;width: 100%;}
.fr, .fl {float: none;}
.w30p, .w65p {width: auto;}
.w35p, .w60p {width: auto;}
.big1 {font-size: 18px;letter-spacing: normal;}
.br-pc { display:none; }/*PC用強制改行*/
.br-sp { display:block; }/*スマホ用強制改行*/
}


/*追加分　
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*お問合わせ電話（タブレット・スマホ）
---------------------------------------------------------------------------*/
.rebtn {
	display: block;
	width :45%;
	text-decoration: none;
	background: #c0c0c0;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#c0c0c0, #808080);	/*グラデーション*/
	color: #fff;	/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 5px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}

/*PC表示のとき電話バナーを消しスマホのとき出す　sprict　ヘッダーへ記入する*/
@media screen and (min-width: 800px){
.sponly{display:none;}}
