@charset "utf-8";

/*slide.cssの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url(slide.css);


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

/*全体の設定
---------------------------------------------------------------------------*/
html,body,#container {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #2a3439;	/*全体の文字色*/
	font-family: 'UD デジタル 教科書体 NK-R',"Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "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: 15px;}
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: #2a3439;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #1f6717;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding-left: 1% !important;
	padding-right: 1% !important;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 70px;
	background: #1f6717;
	position: relative;
}
/*トップページのヘッダーと、スライドショーブロック共通設定。他の端末サイズでの再設定が複数あるので変更する際は注意。*/
#top header, #mainimg {
	height: 700px;	/*スライドショー表示領域の高さの設定。*/
}
/*ロゴ画像（※トップページ以外）*/
header #logo {
	width: 250px;
	padding-top: 1px;
	
}
/*トップページのロゴ画像*/
#top #logo img {
	position: fixed;	/*スクロールしても固定表示させる設定。*/
	left: 2%;	/*左から10%の場所に配置。*/
	top:250px;	/*上から50pxの場所に配置。*/
	z-index: 1;
	width: 350px;	/*画像の幅*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;overflow: hidden;position: relative;z-index: 100;
	background: #00082f url(../images/bg_menu.jpg) repeat-x center center;	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #00082f 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 li {
	float: left;	/*左に回り込み*/
	width: 20%;	/*メニュー幅（100÷5個=20%）*/
}
#menubar li a {
	display:  block;text-decoration: none;
	line-height: 1.6;	/*行間*/
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	height: 70px;		/*高さ。下のmargin(10+10=20)とpadding-top(10)の数字を合計して「100」になるようにする。*/
	margin: 10px 0;		/*上下、左右に空けるメニューの外のスペース。この部分はマウスオン時に反応しない(色がかわらない)部分になります。*/
	padding-top: 10px;	/*メニュー内の上に空ける余白。上下のバランスをここで調整して下さい。*/
	padding-left: 70px;	/*メニュー内の左側に空ける余白。アイコンとのバランスを調整します。*/
	border-radius: 5px;	/*角丸のサイズ。マウスオン時に角が丸くなる設定です。*/
}
/*「施設のご案内」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の一番上(0)を基準に読み込む。サイズは50px。*/
#menubar li.info {
	background: url(../images/mark_menu.png) no-repeat 15px 0px / 50px;
}
/*「イベント」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-100px)を基準に読み込む。サイズは50px。*/
#menubar li.event {
	background: url(../images/mark_menu.png) no-repeat 15px -100px / 50px;
}
/*「お買い物」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-200px)を基準に読み込む。サイズは50px。*/
#menubar li.shopping {
	background: url(../images/mark_menu.png) no-repeat 15px -200px / 50px;
}
/*「周辺マップ」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-300px)を基準に読み込む。サイズは50px。*/
#menubar li.map {
	background: url(../images/mark_menu.png) no-repeat 15px -300px / 50px;
}
/*「お問い合わせ」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-400px)を基準に読み込む。サイズは50px。*/
#menubar li.contact {
	background: url(../images/mark_menu.png) no-repeat 15px -400px / 50px;
}
/*装飾文字（英語表記）の設定*/
#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;
}
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;
}
body.is-fixed .contents:first-of-type {
	margin-top: 100px;
}


/*コンテンツ（mainとsubを囲むブロック。１カラム時の場合はメインコンテツを囲むブロック。）
---------------------------------------------------------------------------*/
#contents {
	position: relative;z-index: 1;
	overflow: hidden;
	background: #fff;	/*背景色*/
	padding: 40px 0px;	/*上下、左右へのブロック内の余白*/
}
/*contentsの中にあるinner*/
#contents .inner {
	padding: 40px 0px;	/*上下、左右へのブロック内の余白*/
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 40px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	color: #1f6717;		/*文字色*/
}
/*h2タグにclass="type1"を指定した場合*/
#contents h2.type1 {
	background: #333;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg_company.jpg) no-repeat center center/cover;	/*背景画像の読み込み*/
	padding: 50px 0px;	/*上下、左右へのボックス内の余白*/
	color: #fff;	/*文字色*/
}

/*h2タグにclass="type2▼"を指定した場合*/
#contents h2.type2 {
	background:
      linear-gradient(to top right, rgba(255,255,255,0) 50%, #14a600 50.5%) no-repeat top left/50% 100%,
      linear-gradient(to top left, rgba(255,255,255,0) 50%, #14a600 50.5%) no-repeat top right/50% 100%;
	padding: 35px 0px;	/*上下、左右へのボックス内の余白*/
	font-size: 25px;	/*文字サイズ*/
	color: #fff;	/*文字色*/
}


/*h2タグのspan（装飾用）タグ*/
#contents h2 span {
	display: block;
	font-size: 14px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる設定*/
}
/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	padding: 12px 25px;		/*上下、左右への余白*/
	font-size: 20px;		/*文字サイズ*/
	background: linear-gradient(to bottom, #14a600,#006633 ,#003300 );	/*グラデーション*/
	color: #fff;			/*文字色*/
	border-radius: 5px;		/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
}
/*h3タグの１文字目*/
	#contents h3::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線と文字列との間に空ける余白*/
}
/*h3タグの１文字目*/
	#contents h3::before {
	content: url("../images/mark.png");	no-repeat;/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線と文字列との間に空ける余白*/
}




/*段落タグ*/
#contents p {
	padding: 0 20px 20px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -20px;
}
/*section同士の余白*/
#contents section + section {
	margin-top: 40px;
}

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




/*box1（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	overflow: hidden;
	background: #fff;		/*背景色*/
	color: #666;			/*文字色*/
	margin: 0 2% 20px;		/*上、左右、下へのボックスの外に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 3%;
}
/*box1内のh4(見出し)タグ*/
.box1 h4 {
	color: #14a600;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	border-bottom:  groove 3px #14a600;	/*下線の幅、線種、色*/
	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;}

.box1 img{
	float: right;
	width: 75%;
}

/*box2（３カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	position: relative;
	width: 24.5%;		/*ボックスの幅*/
	float: left;		/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	padding: 3%;		/*ボックス内の余白*/
	
	background: #fff;		/*背景色*/
	border: 1px solid #eeeae2;	/*枠線の幅、線種、色*/
	margin: 0 0 20px 2%;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 1.5;	/*行間*/
	color: #666;		/*文字色*/
}
/*box2内の日付*/
.box2 span.date {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #14a600;	/*背景色*/
	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: #14a600;	/*文字色*/
	font-size: 18px;	/*文字サイズ*/
	height: 3em;	/*高さ*/
	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: #14a600;	/*背景色*/
	color: #fff !important;	/*文字色*/
	border-radius: 3px;		/*角丸のサイズ*/
	padding: 5px 30px;		/*上下、左右へのボタン内の余白*/
	text-align: center;		/*文字をセンタリング*/
}
/*マウスオン時*/
p.btn1 a:hover {
	border: 1px solid #14a600;	/*枠線の幅、線種、色。*/
	background: #fff;			/*背景色*/
	color: #14a600 !important;	/*文字色*/
}

/*写真を３列に並べたレイアウト
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.photo1 {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 33.3%;	/*幅*/
	
}
.photo1 a:hover img {
	opacity: 0.8;	/*マウスオン時に80%の透明度にする*/
}


/*photo1ボックス内の段落(p)タグ*/
.photo1 p {
	padding: 5px 0 !important;	/*上下、左右への段落タグ内の余白*/
	position: absolute;
	bottom: 0px;	/*photo1ボックスの下から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: 100%;
}





/*リノベーションメニュ　TOPページ　写真を３列に並べたレイアウト
---------------------------------------------------------------------------*/
.menu {
	display: block;
	overflow: hidden;
	background-image: url("../images/bg2.jpg");
	background-position: top;                     /* 画像の表示位置を指定 */
   	width: 85%;                                    
	      
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 100%, 0% 100%);
	padding-top: 5%;	/*ボックス内の余白*/
	padding-left: 7%;	/*ボックス内の余白*/
	padding-right: 7%;	/*ボックス内の余白*/
	padding-bottom: 5%;	/*ボックス内の余白*/
}
.eye {
	text-align: center;
	margin-bottom: 3%;
}

.eye img{
	text-align: center;
	width: 32%;
}

/*ボックス１個あたりの設定*/
.photo3 {
	position: relative;
	top:28%;
	float: left;	/*左に回り込み*/
	width: 33.3%;	/*幅*/
	text-align:center; 
	
}
.photo3 a:hover img {
	opacity: 0.7;	/*マウスオン時に80%の透明度にする*/
}


/*photoボックス内の段落(p)タグ*/
.photo3 p {
	padding: 5px  !important;	/*上下、左右への段落タグ内の余白*/
	position: absolute;
	bottom: 0px;	/*photoボックスの下から0pxの場所に配置*/
	width: 100%;	/*幅*/
	background: #111;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.5は50%色がついた状態のこと*/
	color: #fff;	/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	font-size: 90%;
}

/*リノベーションメニュ　menuページ　詳細ページ
---------------------------------------------------------------------------*/
.menu1 {
	display: block;
	background-image: url("../images/back2.gif");
	background-position: top;                     /* 画像の表示位置を指定 */
	background-position: left;                     /* 画像の表示位置を指定 */
	background-repeat: no-repeat;
    position: relative;
	width:95%;                                            /* 横幅のサイズを指定  */
	height:1000px;       
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 2%;	/*ボックス内の余白*/
}



/*リノベーションメニュ　menuページ　詳細ページ box3（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box3 {
	overflow:inherit;
	background-image: url("../images/bgw.jpg");
	color: #666;			/*文字色*/
	margin: 600px 2% 20px;		/*上、左右、下へのボックスの外に空けるスペース*/
	border: 1px solid #eeeae2;	/*枠線の幅、線種、色*/
	
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);/*影*/
	padding: 3%;
}





/*box3内のh4(見出し)タグ*/
.box3 h4 {
	color: #14a600;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	border-bottom:  groove 3px #14a600;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*box3内のp(段落)タグ*/
.box3 p {padding: 0 !important;line-height: 1.5;}
.box3 p a {color: #666;}
/*box2内のbtn1。本体の設定はこの下の下のブロックにあります。*/
.box3 p.btn1 {margin-top: 20px;}


/*写真を4列に並べたレイアウト
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.photo2 {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 25.0%;	/*幅*/
	height: 300px;
	border-top: solid 4px #066C1B;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.photo2 a:hover img {
	opacity: 0.8;	/*マウスオン時に80%の透明度にする*/
}


/*photoボックス内の段落(p)タグ*/
.photo2 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: 90%;
}

/*photoボックス内の段落(p)タグ*/
.photo2 li {
	padding: 5px 20px!important;	/*上下、左右への段落タグ内の余白*/
	top: 100px;	/*photo2ボックスの上から200pxの場所に配置*/
	width: 95%;	/*幅*/
	color: #000;	/*文字色*/
	text-align: left;	/*文字をセンタリング*/
	font-size: 90%;
}


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

/*イメージマップンテンツ
---------------------------------------------------------------------------*/
img[usemap] {
  width: 100%;
	 
}

#sekou {
	display: block;overflow: hidden;
	width: 100%;
}
	/*スマホ用メニューを表示させない*/
#sekou-s {display: none;}


/*施工実績　写真ロールオーバー
---------------------------------------------------------------------------*/
.imgonmouse {
 
  overflow: hidden;
  width: 100%;	
}
.imgonmouse img {
  margin-top: 10px;
  margin-bottom: 10px;
}
.imgonmouse ul {
  padding: 0px;
  margin-top: 0px;
}
.imgonmouse ul li img {
  height: 74px;
  width: 74px;
  border: 1px solid #CCC;
  padding: 2px;
  margin-right: 5px;
  margin-left: 5px;
  margin-bottom: 5px;
}
.imgonmouse ul {
  list-style-type: none;
  margin-left: 13%;
  padding: 0px;
  float:left;
}

.imgonmouse li {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  float:left;
}

/*施工実績コンテンツ　.absolute で一番前に表示　.relative を背景に表示
---------------------------------------------------------------------------*/
.relative {
    position: relative;
    width: 100%;
	border: 1px solid #CCC;
	padding: 10px;
  
}
.absolute {
    position: absolute;
    right: 7px;
    bottom: 5px;
	 width: 25%;
	
}

.absolute2 {
    position: absolute;
    left: 7px;
   top: 10px;
	 width: 80%;
	
}

.absolute3 {
    position:absolute;
    left: 5px;
   top: 85%;
	 width: 50%;
	
}

.sekoumap {
  margin: 10px;
  overflow: hidden;
  width: 400px;	
}


/*施工実績　ROOMPLAN/コンセプト/OUTLINEに使用　
---------------------------------------------------------------------------*/
.sekou_box{
    background: #fff;
    display: table;
    text-align: center;
    width: 100%;
}
.sekou_inner{
    display: table-cell;
    vertical-align: middle;
}
.sekou_content{
    display: inline-block;
    padding: 20px;
	border-bottom: 1px solid #000;
	}

.sekou_content h4{
    clear: both;
	font-size: 1.4em;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	
	}


/*リノベーションメニュー詳細に使用　
---------------------------------------------------------------------------*/
.sekou_box2{
    background: #fff;
    display: table;
    text-align: left;
    width: 100%;
}

.sekou_box2 p{
	margin-top: 15px;
	padding: 5px;
    text-align: left;
    width: 100%;
}

.sekou_content h6 {
	clear: both;
	font-size: 14px;/*文字サイズ*/
	font:bolder;
	color: #FFFFFF;	
	margin-bottom: 1px;
	padding: 6px 15px;	/*上下、左右への余白*/
	background: linear-gradient(#14a600, #006633 ,#003300);	/*グラデーション*/
}




/*施工実績テーブルデザイン　OUTLINE
---------------------------------------------------------------------------*/
.tbl-m01 {
  border-collapse: separate;
  border-spacing: 5px;
} 
.tbl-m01.m02 {
  border-spacing: 5px;
  margin: 5px auto ;
}
.tbl-m01.m02 th {
 background: #EBDEDE;
   border-collapse: separate;
  border-spacing: 5px;
}
.tbl-m01.m02 td {
	
   border-collapse: separate;
  border-spacing: 5px;
}
@media screen and (max-width: 640px) {
  .tbl-m01 th {
    width: 20%;
  }
  .tbl-m01 td {
    border-bottom: solid 1px #ccc;
    width: 25%;
  }
}


/*施工実績平面図　マウスオーバーで拡大
---------------------------------------------------------------------------*/
.img_wrap{
  border:0px solid #ddd;
  width: 900px;
  height: 450px;
  margin: 20px auto;
  overflow: hidden;
  cursor: pointer;
}
.img_wrap img{
  width: 75%;
  transition-duration: 0.5s;
}
.img_wrap:hover img{
  transform: scale(1.2);
  transition-duration: 0.5s;
}


/*プロ集団の紹介写真ロールオーバー　施工実績と内容同じ
---------------------------------------------------------------------------*/
.title1 {
 float:none;
  overflow: hidden;
  width: 30%;
	
}
.title1 img {
  margin-top: 20px;

  
}

.imgonmouse2 {
  overflow: hidden;
  width: 60%;
	
}
.imgonmouse2 img {
  margin-top: 10px;
  margin-bottom: 10px;
}
.imgonmouse2 ul {
  padding: 0px;
  margin-top: 0px;
 margin-left: 5%;
}
.imgonmouse2 ul li img {
  height: 64px;
  width: 64px;
  border: 1px solid #CCC;
  padding: 2px;
  margin-left: 1%;
  margin-bottom: 5px;
}
.imgonmouse2 ul {
  list-style-type: none;
 
margin-bottom: 2%;
  padding: 0px;
  float:left;
}

.imgonmouse2 li {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  float:left;
}

/*ここまで　スタッフ紹介　写真ロールオーバー　施工実績と内容同じ
---------------------------------------------------------------------------*/

/*リノベーションメニュー　詳細ページ　写真
---------------------------------------------------------------------------*/
.title {
 
  overflow: hidden;
  width: 100%;
	
}
.title img {
  margin-top: 10px;
  margin-bottom: 10px;
}

.imgonmouse3 {
 
  overflow: hidden;
  width: 100%;
	
}
.imgonmouse3 img {
  margin-top: 5px;
   width: 42%; float:right; margin-left: 10px; margin-right: 5px; margin-bottom: 10px;
 
}
.imgonmouse3 ul {
  padding: 0px;
  margin-top: 5px;
 margin-left: 3%;
list-style-type: none;
margin-bottom: 2%;
  float:left;
}

.imgonmouse3 li {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  float:left;
}

.imgonmouse3 ul li img {
  height: 64px;
  width: 64px;
  border: 1px solid #CCC;
  padding: 1px;
  margin-left: 1%;
  margin-bottom: 5px;
}

/*ここまで　スタッフ紹介　写真ロールオーバー　施工実績と内容同じ
---------------------------------------------------------------------------*/


/*画像に文字を重ねる　
---------------------------------------------------------------------------*/
.sample2 {
	width:			280px;
	height:			188px;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.sample2 .caption {
	font-size:		130%;
	text-align: 		center;
	color:			#fff;
}
.sample2 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* マスクを表示しない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.sample2:hover .mask {
	opacity:		1;	/* マスクを表示する */
	padding-top:		80px;	/* ホバーで下にずらす */
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list {
	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;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
	background: #fff;	/*背景色*/
}
.list a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: #fff url(../images/arrow1.png) no-repeat right bottom / 40px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.list a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h4（見出し）タグの設定*/
.list h4 {
	color: #22ac38;		/*文字色*/
	font-size: 105%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 4em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.list p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 14em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}


/*アイコン
---------------------------------------------------------------------------*/
/*アイコン共通*/
.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);	/*グラデーション*/
}
.icon a {text-decoration: none;}
/*アイコン色付き（正社員）*/
.icon.color1 {
	border: 1px solid #1f6717;	/*枠線の幅、線種、色*/
	background: #29891f;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#29891f, #1f6717);	/*グラデーション*/
	color: #fff !important;	/*文字色*/
}
/*アイコン色付き（アルバイト）*/
.icon.color2 {
	border: 1px solid #161995;	/*枠線の幅、線種、色*/
	background: #2b2ebc;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#2b2ebc, #161995);	/*グラデーション*/
	color: #fff;	/*文字色*/
}

/*求人一覧ページの「詳細を見る・応募する」ボタン
---------------------------------------------------------------------------*/
a.btn {
	display: block;text-decoration: none;
	background: #1f6717;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#29891f, #1f6717);	/*グラデーション*/
	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 #1f6717;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
a:hover.btn {
	box-shadow: none;
	background: #fff;	/*背景色*/
	color: #1f6717;		/*文字色*/
}




/*list2ボックス（トップページの「リノベーションメニュ」で使っている色のついた各ブロック）
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list2 {
   	overflow: hidden;
	width: 26.4%;	/*幅*/
    margin: 200px 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;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
	background: #fff;	/*背景色*/
}
.list2 a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: #fff url(../images/arrow1.png) no-repeat right bottom / 40px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.list2 a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
	
}
/*h4（見出し）タグの設定*/
.list2 h4 {
	color: #22ac38;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 4em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.list2 p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 14em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}

/*list３ボックス（2ブロック「リノベーションタイプ」で使っている色のついた各ブロック）
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list3 {
   	width: 42%;	/*幅*/
	margin: 0px 0px 2% 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;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
	background: #fff;	/*背景色*/
	float: left;
	height: 45em;
	
}
.list3 a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: #fff url(../images/arrow1.png) no-repeat right bottom / 40px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.list3 a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
	
}
/*h4（見出し）タグの設定*/
.list3 h4 {
	color: #22ac38;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height:auto;		/*高さ*/
	
}
/*p（段落）タグの設定*/
.list3 p {
	padding: 10px !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: auto;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
	text-align: left;
}

/*imgタグの設定*/
.list3 img {
	width:95%;
	justify-content: center;
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}


/*リスト装飾
---------------------------------------------------------------------------*/
ol {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding: 0.3em 0.8em;
  border: solid 2px #14a600;
}
ol li {
  border-bottom: dashed 1px #14a600;
  position: relative;
  padding: 0.5em 0.5em 0.5em 50px;
  line-height: 1.5em;
}
ol li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display:inline-block;
  background: #14a600;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
ol li:last-of-type {
  border-bottom: none; /*最後のliの線だけ消す*/
}


/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
.sub {
	float: right;	/*右に回り込み*/
	width: 22%;		/*サブコンテンツの幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	margin-bottom: 0 !important;
	font-size: 16px !important;	/*文字サイズ*/
	padding: 10px;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*メニューの線の幅、線種、色*/
	color: #333 !important;
}
/*subコンテンツ内の段落タグ設定*/
.sub p {
	margin: 0 !important;
	padding: 10px !important;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #dcdcdc;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li a {
	text-decoration: none;display: block;
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
	border-left: solid 1px #dcdcdc;		/*左の線の線種、幅、色*/
	border-right: solid 1px #dcdcdc;	/*右の線の線種、幅、色*/
}
/*マウスオン時の背景色*/
.sub ul.submenu li a:hover {
	background: #f4f4f4;	/*背景色*/
}
/*h2直下にsubmenuが続いた場合のみ、submenuの上の線を消す設定*/
.sub h2 + ul.submenu {
	border-top: none;
}

/*subコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	overflow: hidden;
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: solid 1px #dcdcdc;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1) inset;	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
.sub h2 + .box1 {
	border-top: none;
}
/*box1内のサブメニュー*/
.sub ul.submenu {
	margin-bottom: 0;
}

/*subコンテンツ内のlist-subボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.sub .list-sub {
	position: relative;overflow: hidden;
	border-left: 1px solid #dcdcdc;		/*左の線の線種、幅、色*/
	border-right: 1px solid #dcdcdc;	/*右の線の線種、幅、色*/
	border-bottom: 1px solid #dcdcdc;	/*下の線の線種、幅、色*/
	line-height: 1.5;	/*行間を少し狭くする。基本となる値は一番上のbodyにあります。*/
	font-size: 12px;	/*文字サイズ*/
}
.sub .list-sub a {
	display: block;text-decoration: none;overflow: hidden;
	padding: 5px;	/*ボックス内の余白*/
}
/*マウスオン時のボックス*/
.sub .list-sub a:hover {
	background: #f4f4f4;	/*背景色*/
}
/*h4タグ*/
.sub .list-sub a h4 {
	font-weight: bold;	/*太字にする設定*/
	font-size: 16px;	/*文字サイズ*/
}
/*段落(p)タグ*/
.sub .list-sub p {
	padding: 0 !important;
}
/*画像*/
.sub .list-sub figure {
	width: 30%;		/*画像の幅*/
	float: left;	/*左に回り込み*/
	margin-right: 5px;	/*画像右側に空ける余白*/
}

/*一覧ページのボックス内の右上のマーク
（CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1〜option3、と、newアイコン共通*/
.option1,.option2,.option3,.new {
	font-size: 12px;	/*文字サイズ*/
	text-align: center;
	display: block;
	width: 80px;		/*幅*/
	line-height: 30px;	/*高さ*/
	position: absolute;
	right: 40px;	/*右から40pxの場所に配置*/
	top: 0px;		/*上から0pxの場所に配置*/
}
/*subコンテンツ内で使う場合の追加（変更）設定*/
.sub .option1,.sub .option2,.sub .option3,.sub .new {
	font-size: 10px;	/*文字サイズ*/
	line-height: 16px;	/*行間*/
	right: 0px;		/*右から0pxの場所に配置*/
	transform: rotate(45deg) translate(22px,-10px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
}
/*option1*/
.option1 {
	color: #FFF;			/*文字色*/
	background: #f83d72;	/*背景色*/
}
/*option2*/
.option2 {
	color: #000;			/*文字色*/
	background: #ffd200;	/*背景色*/
}
/*option3*/
.option3 {
	color: #FFF;			/*文字色*/
	background: #999;	/*背景色*/
}
/*new*/
.new {
	color: #FFF;			/*文字色*/
	background: #F00;	/*背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;position: relative;z-index: 1;
	font-size: 12px;		/*文字サイズ*/
	background: #1f6717;	/*背景色*/
	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: 10px 0;	/*上下、左右へのボックス内の余白*/
	background: url(../images/footer_logo.png) no-repeat 98% center/24%;
}
#footermenu a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
#footermenu a:hover {
	opacity: 1;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
	line-height: 1.7;
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
	font-size: 14px;	/*文字サイズ*/
}

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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	background: #eee;	/*背景色*/
	padding: 20px;		/*ブロック内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #1f6717;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*ta1設定
---------------------------------------------------------------------------*/
/*ta1テーブル*/
.ta1 {
	width: 100%;
	margin: 0 0 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*labelタグを２列表示にする（CMS用）*/
.ta1.cms td label {
	display: block;
	float: left;
	width: 50%;
}

/*よく頂く質問
---------------------------------------------------------------------------*/
/*外側ブロック*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問*/
.faq dt {
	color: #1f6717;	/*文字色*/
	font-weight: bold;	/*太字にする設定*/
	background: url(../images/faq_q.png) no-repeat left center;	/*背景アイコン*/
	padding-left: 30px;	/*背景アイコンに重ならないよう左に余白を作る*/
}
/*回答*/
.faq dd {
	background: url(../images/faq_a.png) no-repeat left top;	/*背景アイコン*/
	padding-left: 30px;	/*背景アイコンに重ならないよう左に余白を作る*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 20px;	/*ボックスの下側（外側）に空けるスペース*/
	padding-bottom: 20px;	/*ボックス内の下側に空けるスペース*/
}

/*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;		/*背景色*/
}

/*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;
}

/*UPアイコン
---------------------------------------------------------------------------*/
.upicon {
	background: #0072ff;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

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

/*ページの上部へボタン「↑」設定
---------------------------------------------------------------------------*/
@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;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb3 {margin-bottom: 3%; }
.ofh {overflow: hidden;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #1f6717 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.cm {text-align: center !important;margin-top: 2%}
.r {text-align: right !important;}
.l {text-align: left !important;}
.w50 {overflow: hidden;width: 50%;}
.w30p {width: 30%;}
.w65p {width: 65%;}
.w40p {width: 40%; float:right; margin-left: 10px;margin-bottom: 10px;}
.w40l {width: 40%; float:left; margin-right: 10px;margin-bottom: 10px;}
.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;}
span.b_big {
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.5;
}
span.pos {
  margin-left:  5%;
}
.color {
  color: #fff;	/*文字色*/
  background: #8FC31F 100%;
}
.color2 {
  color: #fff;	/*文字色*/
  background:#05772E 100%;
}
.under {
  background: linear-gradient(transparent 80%, #8FC31F 20%);
}



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

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

/*背景色（bg-access）※全ページ下部にある「アクセス」ブロック
---------------------------------------------------------------------------*/
.bg-access {
	background: #006633 url(../images/bg-access.jpg);	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #006633 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;
}




/*------------------------------------------------------------------------------------------------------------------------------------------------------
※ここから数ブロック（420px以下環境まで）は、スライドショー表示領域の高さとロゴサイズの再設定です。
面倒ですができるだけ綺麗に表示できるよう細かく設定して下さい。
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*画面幅1500px以上の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1500px){

	#top header, #mainimg {height: 900px;}

}

/*画面幅2000px以上の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:2000px){

	#top header, #mainimg {height: 1200px;}

}

/*画面幅1200px以下の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){

	#top header, #mainimg {height: 600px;}

}

/*画面幅1000px以下の設定（スライドショー領域の再設定とロゴ）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){

	#top header, #mainimg {height: 470px;}
	#top #logo img {left: 1%;top: 20px;width: 200px;}

}

/*画面幅800px以下の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

	#top header, #mainimg {height: 380px;}

}

/*画面幅620px以下の設定（スライドショー領域の再設定とロゴ）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:620px){

	#top header, #mainimg {height: 300px;}
	#top #logo img {left: 1%;top: 10px;width: 120px;}

}

/*画面幅500px以下の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:500px){

	#top header, #mainimg {height: 240px;}

}

/*画面幅420px以下の設定（スライドショー領域の再設定とロゴ）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:420px){

	#top header, #mainimg {height: 190px;}
	#top #logo img {left: 1%;top: 10px;width: 90px;}

}



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

/*list2ボックス（トップページの「現在の求人」で使っている色のついた各ブロック）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list2 li {
	width: 49%;		/*幅*/
	margin: 10px 0.5%;	/*上下、左右へのボックスの外側へ空けるスペース*/
}
	
.obi {
	padding-top: 10px;
	padding-bottom: 20px;
	margin-top: 10px;
	margin-bottom: 20px;
}

.obi h2 {
	margin-bottom: 20px;
}
	
/*menu（menuページの施工写真とサムネイルの表示位置）
---------------------------------------------------------------------------*/	
.imgonmouse3 img {
  margin-top: 5px;
   width: 65%; 
	
	margin-left: 15%; margin-right: 15%; margin-bottom: 5%;
 
}
.imgonmouse3 ul {
  padding: 0px;
  margin-top: 3px;
 margin-left: 20%;
 margin-right: 10%;
list-style-type: none;
margin-bottom: 2%;
  text-align:center;
}
	
.imgonmouse3 li {
  list-style-type: none;
  margin: 2px;
  padding: 0px;
  float:left;
}

.imgonmouse3 ul li img {
  height: 70px;
  width: 70px;
  border: 1px solid #CCC;
  padding: 3px;
  margin-left: 10%;
  margin-bottom: 5px;
}

/*menu（menuページの施工写真とサムネイルの表示位置）  ここまで
---------------------------------------------------------------------------*/	
	
/*プロ集団の紹介写真ロールオーバー　施工実績と内容同じ
---------------------------------------------------------------------------*/
.title1 {
 
  overflow: hidden;
  width: 40%;
	
}
.title1 img {
  margin-top: 20px;
  
}

.imgonmouse2 {
  overflow: hidden;
  width: 100%;
	
}
.imgonmouse2 img {
  margin-top: 10px;
  margin-bottom: 10px;
}

.imgonmouse2 ul li img {
  height: 60px;
  width: 60px;
  border: 1px solid #CCC;
  padding: 2px;
  margin-left: 1%;
  margin-bottom: 5px;
}
.imgonmouse2 ul {
  list-style-type: none;
  margin-top: 5px;
margin-bottom: 2%;
  padding: 1px;
  float:left;
}

.imgonmouse2 li {
  list-style-type: none;
  margin: 0px;
  padding: 2px;
  float:left;
}

}



/*画面を横向きにした場合の高さが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:825px){

/*メインメニュー
---------------------------------------------------------------------------*/

/*スマホ用メニューブロック*/
#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-radius: 50%;	/*円形にする*/
	border: 1px solid #fff;
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #1f6717 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #1f6717 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

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

/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main,.sub {
	float: none;
	width: auto;
}
	
/*box1（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1,.box {
	margin: 0 0 20px 0;		/*上、右、下、左へのボックスの外に空けるスペース*/
}

/*box3（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box3 {
	margin: 30px 0 20px 0;		/*上、右、下、左へのボックスの外に空けるスペース*/
}


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

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list {
	overflow: hidden;
	width: 90%;	/*幅*/
	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;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
}
.list 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は画像の幅。*/
}
/*マウスオン時の設定*/
.list a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h4（見出し）タグの設定*/
.list h4 {
	color: #22ac38;		/*文字色*/
	font-size: 100%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow:visible	/*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.list p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 70%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 12em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
	margin: 5% 10px 10px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
}

.list figure{
	width: 30%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 20px 20px 20px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	
}


/*list3ブロック　リノベーションタイプ
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list3 {
	overflow: hidden;
	width: 90%;	/*幅*/
	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;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
}
.list3 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は画像の幅。*/
}
/*マウスオン時の設定*/
.list3 a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h4（見出し）タグの設定*/
.list3 h4 {
	color: #22ac38;		/*文字色*/
	font-size: 100%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow:visible	/*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.list3 p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 80%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 12em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
	margin: 5% 10px 10px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
}

.list3 figure{
	width: 85%;	/*幅*/
	float: center;
	text-align: center;
	margin: 5% 5% 5% 8%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	
}
	
/*メニュー詳細　スマホ用
---------------------------------------------------------------------------*/
.sekou_content figure{
	text-align: center;
	margin: 5% 5% 5% 2%;
	width: 40%;
}

	
/*施工実績スライドショー　スマホ用
---------------------------------------------------------------------------*/
#sekou-s {
	display: block;overflow: hidden;
	width: 100%;
	
}
	/*PC用施工写真を表示させない*/
#sekou {display: none;}

/*施工図面　スマホ用
---------------------------------------------------------------------------*/
.img_wrap{
  border:0px solid #ddd;
  width: 100%;
  height: 340px;
  margin: 20px auto;
  overflow: hidden;
  cursor: pointer;
}

/*menu（menuページの施工写真とサムネイルの表示位置）
---------------------------------------------------------------------------*/	
.imgonmouse3 img {
  margin-top: 5px;
   width: 68%; 
	
	margin-left: 15%; margin-right: 15%; margin-bottom: 5%;
 
}
.imgonmouse3 ul {
  padding: 0px;
  margin-top: 3px;
 margin-left: 15%;
 margin-right: 10%;
list-style-type: none;
margin-bottom: 2%;
  text-align:center;
}
	
.imgonmouse3 li {
  list-style-type: none;
  margin: 1px;
  padding: 0px;
  float:left;
}

.imgonmouse3 ul li img {
  height: 60px;
  width: 60px;
  border: 1px solid #CCC;
  padding: 1px;
  margin-left: 15%;
  margin-bottom: 5px;
}

/*menu（menuページの施工写真とサムネイルの表示位置）  ここまで
---------------------------------------------------------------------------*/	
	
/*その他
---------------------------------------------------------------------------*/
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;}
}



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

/*menu（menuページの施工写真とサムネイルの表示位置）
---------------------------------------------------------------------------*/		
.imgonmouse3 img {
  margin-top: 5px;
   width: 80%; 
	margin-right:  10%;
	margin-left: 10%;  margin-bottom: 3%;
 
}

.imgonmouse3 ul {
  padding: 0px;
  margin-top: 3px;
 margin-left: 8%;
list-style-type: none;
margin-bottom: 2%;
  text-align:center;
}
	
.imgonmouse3 li {
  list-style-type: none;
  margin: 1px;
  padding: 0px;
  float:left;
}

.imgonmouse3 ul li img {
  height: 54px;
  width: 54px;
  border: 1px solid #CCC;
  padding: 1px;
  margin-left: 10%;
  margin-bottom: 5px;
}

/*menu（menuページの施工写真とサムネイルの表示位置）  ここまで
---------------------------------------------------------------------------*/	
	
	
/*プロ集団説明　施工写真ロールオーバーここから↓
---------------------------------------------------------------------------*/		
.imgonmouse2 {
  overflow: hidden;
  width: 100%;
	
}
.imgonmouse2 img {
  margin-top: 10px;
  margin-bottom: 10px;
}

.imgonmouse2 ul li img {
  height: 52px;
  width: 52px;
  border: 1px solid #CCC;
  padding: 1px;
  margin-left: 1%;
  margin-bottom: 5px;
}
.imgonmouse2 ul {
  list-style-type: none;
  margin-top: 5px;
margin-bottom: 2%;
  padding: 1px;
  float:left;
}

.imgonmouse2 li {
  list-style-type: none;
  margin: 0px;
  padding: 1px;
  float:left;
}
	
	
/*プロ集団説明　施工写真ロールオーバー　ここまで
---------------------------------------------------------------------------*/		
	
}



/*画面幅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を囲むブロック。１カラム時の場合はメインコンテツを囲むブロック。）
---------------------------------------------------------------------------*/
#contents {
	padding: 20px 0px;	/*上下、左右へのブロック内の余白*/
}
/*contentsの中にあるinner*/
#contents .inner {
	padding: 20px 0px;	/*上下、左右へのブロック内の余白*/
}
/*h2,h3タグ*/
#contents h2 {
	font-size: 20px;	/*文字サイズ*/
}
/*h2タグのspan（装飾用）タグ*/
#contents h2 span {
	font-size: 10px;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
}
/*h3タグ*/
#contents h3 {
	font-size: 16px;	/*文字サイズ*/
	padding-left: 10px;
}
/*h3タグの１文字目*/
#contents h3::first-letter {
	padding-left: 10px;	/*線と文字との余白*/
}
/*段落タグ*/
#contents p {
	padding: 0 10px 20px;
}
/*リノベーションメニュ　TOPページ　写真を３列に並べたレイアウト
---------------------------------------------------------------------------*/

	
.small{
	width:45%;     
	}
.box2 {
	width: 27%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 5px 0px 2% 0px;	/*上、右、下、左へのボックスの外側に空けるスペース*/
}	
 
	.box2 h4{display: none;}
	.box2 p{display: none;}
	
/*施工図面　スマホ用
---------------------------------------------------------------------------*/
.img_wrap{
width: 90%;
	height: 150px;
  margin: 5px auto;
  overflow: hidden;
  cursor: pointer;
}
	
/*プロ集団紹介　写真ロールオーバー
---------------------------------------------------------------------------*/
.box1 img{
	float: none;
	width: 100%;
}

.title1 {
 float:none;
  overflow: hidden;
  width: 100%;
	
}
.title1 img {
  margin-top: 10px;
 
}
	
	
/*プロ集団の紹介写真ロールオーバー　ここまで
---------------------------------------------------------------------------*/
	
	
/*一覧ページのボックス内の右上のマーク
（CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1〜option3、と、newアイコン共通*/
.option1,.option2,.option3,.new {
	font-size: 10px;	/*文字サイズ*/
	width: 50px;		/*幅*/
	line-height: 20px;	/*高さ*/
	right: 10px;	/*右から10pxの場所に配置*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;	/*画面領域が狭いので非表示に。*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}


/*box1とbox2
---------------------------------------------------------------------------*/
/*h4(見出し)タグ*/
.box1 h4,.box2 h4 {
	font-size: 16px;	/*文字サイズ*/
}
	
/*施工実績サムネイル縮小---------------------*/
.imgonmouse ul li img {
  height: 34px;
  width: 34px;
  border: 1px solid #CCC;
  padding: 2px;
  margin-right: 2px;
  margin-left: 2px;
  margin-bottom: 2px;
	}

/*その他
---------------------------------------------------------------------------*/

.ws,.wl {width: 94%;}
.fl {float: none;}
img.fl {float: left;display: block;width:40%;margin: 0 auto 20px;}
.fr {float: none;}
img.fr {float: right;display: block;width:40%;margin: 0 auto 20px;}
.big1 {font-size: 16px;}
.sh {display:block;}
.pc {display:none;}

}



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

/*ta1設定
---------------------------------------------------------------------------*/
/*labelタグを2列から1列表示にする（CMS用）*/
.ta1.cms td label {
	float: none;
	width: 100%;
}

}

/*FOOTERのTEL　800px～PC　PC上では見えないようにする　ここから
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:800px){
	.footer_area{
		display: none;
}	
}

/*スマホ～799pxの幅サイズまで*/
@media screen and (max-width:799px){
.footer_area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba( 0, 0, 0, 0.6 );
	z-index: 10000;
}
.footer_area .footer_area_inner {
    position: relative;
    width: 90%;
    margin: 0px auto;
    padding: 10px 0;
	margin-right: 0px;
}
.footer_area .footer_area_inner .footer_area_inner_btn {
    width: 90%;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    margin-left: 0px;
	line-height: 1.3;
    
}
.inquiry_btn {
    background-color:green;
    -webkit-border-radius: 3px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
	width: 45%;
    padding: 5px;
    font-size: 16px;
    font-weight: bold;
}
.inquiry_btn:link, .inquiry_btn:visited {
    color: #FFFFFF !important;
}

.inquiry_btn_item {
    background-color:green;
    -webkit-border-radius: 3px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
	width: 80%;
    padding: 5px;
    font-size: 16px;
    font-weight: bold;
}
.inquiry_btn_item:link, .inquiry_btn:visited {
    color: #FFFFFF !important;
}
.footer_area_inner span{
	color: #fff;
}
#siteBottom{
	margin-bottom: 85px;
}
}