@charset "utf-8";


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

/*アニメーションのキーフレーム設定。透明(0%)から色を100%出す指定。*/
@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.8;		/*行間*/
	/*background: #fff url(../images/bg.png);*/	/*背景色*/
	-webkit-text-size-adjust: none;
    
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
video,audio {max-width: 100%;}

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

/*サイトの最大幅の設定
---------------------------------------------------------------------------*/
.inner {
	max-width: 1080px;	/*サイトの最大幅。これ以上大きくならない。*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: #fff linear-gradient(#d5edff, rgba(255,255,255,0) 50%);/*背景色、背景グラデーション*/
}
header .inner {
	position: relative;overflow: hidden;
	margin: 0 auto;
	height: 130px;	/*ヘッダーの高さ*/
	background: linear-gradient(#d5edff, rgba(255,255,255,0) 50%), #fff url(../images/header_bg.jpg) no-repeat center center/50%;/*背景グラデーション、背景画像の読み込み*/
}
/*ロゴ画像*/
header #logo {
	width: 300px;		/*ロゴ画像の幅*/
	position: absolute;
	left: 0;		/*headerのinnerに対しての左からの配置指定*/
	right: 0;
	margin: 0 auto;
	bottom: 30px;	/*headerのinnerに対しての下からの配置指定*/
}

/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 2%;	/*headerのinnerに対しての右からの配置指定*/
	top: 10%;	/*headerのinnerに対しての上からの配置指定*/
	display: grid; /*レイアウト指定*/
}
/*メニュー１個あたり*/
#headermenu li {
	float: left;		/*左に回り込み*/
	margin-left: 10px;	/*左側にスペースを空ける*/
	margin-top: 5px;
	text-align: center;
}
#headermenu li a {
	text-decoration: none;display: block;
	background: #0768AC;	/*背景色（古いブラウザ用）*/
/*	background: linear-gradient(#0768AC);	背景グラデーション*/
	color: #FFF;		/*文字色*/
	padding: 10px 55px 10px 90px;	/*上下、左右へのボックス内の余白*/
	border-radius: 5px;	/*角丸のサイズ*/
	border: 1px solid #0768AC;	/*枠線の幅、線種、色*/
	background-image: url("../images/mail.png");
	background-repeat: no-repeat;
    background-position: 45px center;	
}
/*マウスオン時*/
#headermenu li a:hover {
	color: #0768AC;	/*文字色*/
	background: #fff;	/*背景色*/
	background-image: url("../images/mail_ov.png");
	background-repeat: no-repeat;
    background-position: 45px center;
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	height: 50px;		/*メニューの高さ。下の「#menubar ul li a」の「height」と「padding-top」の数字を合計した数字に合わせる。*/
	text-align: center;	/*文字を中央に*/
	background: #009944;	/*背景色*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 16.66%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
	text-decoration: none;display: block;
	line-height: 1.6;	/*行間を少し狭く*/
	color: #fff;		/*文字色*/
	height: 35px;		/*高さ*/
	padding-top: 15px;	/*上に追加する余白*/
	border-right: 1px solid #fff;	/*メニューの右側の線の幅、線種、色（古いブラウザ用）*/
	border-right: 1px solid rgba(255,255,255,0.5);	/*右の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #fff;	/*メニューの線の幅、線種、色（古いブラウザ用）*/
	border-left: 1px solid rgba(255,255,255,0.5);	/*左の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
/*飾り文字*/
#menubar li span {
	display: block;
	font-size: 9px;			/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	opacity: 0.5;			/*透明度50％*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #6cbb5a;	/*背景色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;padding-top: 1px;
	width: 16.66%;		/*幅。上の「#menubar li」と合わせる。*/
	font-size: 12px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a {
	width: 100%;height: auto;font-weight: normal;
	border: none;	/*線を一旦リセット*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	color: #fff;		/*文字色*/
	padding: 10px 0;	/*上下、左右への余白*/
}
/*ドロップダウンメニュー内の見出し*/
#menubar ul.ddmenu li.title a {
	background: #6cbb5a;	/*背景色*/
	cursor: default;		/*カーソルをリンク用でなくデフォルトの矢印にしておく*/
	padding: 3px 0;			/*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #000;	/*背景色*/
}
/*見出しのマウスオン時*/
#menubar ul.ddmenu li.title a:hover {
	background: #6cbb5a;
}

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

/*コンテンツ（mainとsubブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	box-sizing: border-box;
	padding: 2%;	/*ボックス内の余白*/
	background: #fff;	/*背景色*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.1);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.1は10%色がついた状態の事。*/
	margin-bottom: 40px;	/*下のフッターブロックとの間に空けるスペース*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ボックス幅*/
	padding-bottom: 40px;
}
/*１カラム時のメインコンテンツ*/
.c1 #main {
	float: none;
	width: auto;
}
/*mainコンテンツのh1タグ設定*/
#main h1 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 10px;	/*上下、左右への余白*/
	font-size: 200%;	/*文字サイズ*/
    border-top: solid 3px #009944;/*上線*/
    border-bottom: solid 3px #009944;/*下線*/
	color: #364e96;		/*文字色*/
	background: #fff;	/*背景色*/
	border-radius: 0px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	margin-top: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 150%;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	background: #009944;	/*背景色*/
	border-radius: 5px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 5px 20px;	/*上下、左右への余白*/
	font-size: 110%;	/*文字サイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 5px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter {
	border-left: 3px solid #009944;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list {
	overflow: hidden;position: relative;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 20px;	/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックス同士に空けるスペース*/
	text-align: center;
}
#main .list a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -20px;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 20px;	/*ボックス内の余白*/
}
/*マウスオン時の設定*/
#main .list a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*画像*/
#main .list figure {
	display: inline; /*２枚並べて表示*/
	margin: 0 auto; /*センタリング*/
	padding: 20px;	/*画像の右側に空けるスペース*/
}
/*h4（見出し）タグの設定*/
#main .list h4 {
	color: #009944;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	padding-top:20px;
}
/*p（段落）タグの設定*/
#main .list p {
	padding: 0;
}
/*テキストを左寄せ*/
#main .list p.left {
	text-align: left;
}
/*リンクを設定した場合にボックス右下にでる「→」マーク*/
#main .list a::before {
	display: block;text-align: center;
	content: "→";	/*このテキストを出力します。変更しても構いませんが機種依存文字は使わないように。*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	position: absolute;
	right: 20px;	/*ブロックに対して、右からの配置場所指定*/
	bottom: 20px;	/*ブロックに対して、下からの配置場所指定*/
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*マウスオン時*/
#main .list a:hover::before {
	background: #009944;	/*背景色*/
}
/*ボックス全体でなく、テキストなど部分的にリンクを貼る場合の設定*/
#main .list.link a {
	margin: 0;padding: 0;
	display: inline;
	text-decoration: underline;
}
#main .list.link a::before {
	display: none;
}

/*詳細ページのサムネイル画像（CMS用）
---------------------------------------------------------------------------*/
.thumb {
	width: 70px;	/*画像の幅*/
	height: 70px;	/*画像の高さ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}
/*マウスオン時*/
.thumb:hover {
	border: 1px solid #999;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 22%;		/*ブロックの幅*/
	padding-bottom: 40px;
}
/*１カラム字のサブコンテンツ*/
.c1 #sub {display: none;}
/*h2見出しタグ設定*/
#sub h2 {
	margin-bottom: 10px;
	font-size: 110%;	/*文字サイズ*/
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	border-left: 3px solid #009944;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}
/*段落タグ（p）設定*/
#sub p {
	line-height: 1.4;	/*行間を少し狭く*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li {
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
#sub .submenu li a {
	text-decoration: none;display: block;
	padding: 5px 10px;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	background: #f5f5f5;	/*背景色*/
	border: solid 1px #dbdbdb;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
}
/*box1内のメニューの設定*/
#sub .box1 .submenu {
	margin-bottom: 0px;
}

/*サブコンテンツ内のbox2（「サンプルホームとは？」と「スタッフ募集中」のバナー）
---------------------------------------------------------------------------*/
#sub .box2 {
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	font-size: 120%;	/*文字サイズ*/
	box-shadow: 0px 0px 2px 5px #fff inset;	/*影の設定。右・下・ぼかし幅・距離・色の設定。insetは内側に向かっての影。*/
	background: #edf5fa;	/*背景色*/
}
#sub .box2 a {
	text-decoration: none;
	display: block;
	padding: 40px 15px;			/*上下、左右へのボックス内の余白*/
	border: solid 3px #e4e4e4;	/*枠線の線種、幅、色*/
}
/*マウスオン時*/
#sub .box2 a:hover {
	border: solid 3px #009944;	/*枠線の線種、幅、色*/
}
/*「サンプルホームとは？」の背景設定*/
#sub .box2.about {
	background: #edf5fa url(../images/logo_mark.png) no-repeat right center / 100px;	/*背景色、背景画像の読み込み。高さ100px。*/
}
/*「スタッフ募集中」の背景設定*/
#sub .box2.recruit {
	background: #edf5fa url(../images/recruit_img.png) no-repeat right top / 110px;		/*背景色、背景画像の読み込み。高さ110px。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
/*footerボックス*/
footer {
	clear: both;overflow: hidden;
	background: #009944;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	clear: both;overflow: hidden;
	font-size: 80%;	/*文字サイズを少し小さく*/
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
}
/*１列分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 24%;		/*今回は４列作ったので、下のmarginを含めて25%になるよう指定。５列にしたいならこの行は19%にする。*/
	margin-left: 1%;
}
/*メニュー１個あたりの設定*/
#footermenu ul li {
	padding: 0 10px;	/*上下、左右への余白*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	color: #fff;	/*文字色*/
	opacity: 0.7;	/*透明度。色を70%出した状態。*/
}
/*マウスオン時のリンクテキスト*/
#footermenu a:hover {
	opacity: 1;	/*透明度。色を100%出した状態。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;text-align: center;
	background: #333;	/*背景色*/
	padding: 10px;		/*余白*/
}
#copyright a {text-decoration: none;color: #fff;}
#copyright .pr {display: block;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

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

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption,
.ta3 caption,
.ta2 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi,
.ta3 th.tamidashi,
.ta2 th.tamidashi {
	width: auto;
}
/*ta1,ta2共通設定*/
.ta1,
.ta3,
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th,
.ta3, .ta3 td, .ta3 th,
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi,
.ta2 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cce6f6;	/*背景色*/
}
/*ta3の左側ボックス*/
.ta3 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f0f0f0;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f0f0f0;	/*背景色*/
}
/*ta2の左側ボックス*/
.ta2 th {
	background: #fffeba;	/*背景色*/
}
/*ta2の右側ボックス*/
.ta2 td {
	text-align: center;	/*センタリング*/
}
/*ta3の右側ボックス*/
.ta3 td {
	text-align: right;	/*センタリング*/
}
/*ta3の左側ボックス*/
.ta3 td.left {
	text-align: left;  /*センタリング*/
	background: #f5f5f5;	/*背景色*/
}
/*料金ページの追加設定（CMS用）*/
.ta1.price td {
	text-align: right;
}
.ta1.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta1.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}
/*料金ページの追加設定（CMS用3）*/
.ta3.price td {
	text-align: right;
}
.ta3.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta3.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}

/*btn（inputタグ用）
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	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;		/*背景色*/
}

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

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*デフォルトでは非表示に*/
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: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	bottom: 60px;		/*下から40pxの場所に配置*/
	right: 1%;			/*右から1%の場所に配置*/
	background: #009944;	/*背景色*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*円形にする*/
	animation-name: opa1;	/*冒頭のkeyframesの名前*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

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

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

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1 {color: #009944 !important;}
.color2 {color: #ff0000 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fr {float: right;margin-left: 2%;margin-bottom: 20px;}
.fl {float: left;margin-right: 2%;margin-bottom: 20px;}
.big1 {font-size: 200%;letter-spacing: 0.2em;}
.mini1 {font-size: 80%;}
.sh {display: none;}



/*画面幅900px以下の設定 PC用レイアウト 768px以上の範囲に収めるデザイン
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:768px){

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	display: none;	/*非表示にする*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	position: fixed;
	display: block;
	animation-name: opa1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
	z-index: 9999;
	width: 100%;
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px;	/*メニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #009944;	/*背景色*/
	font-size: 18px;		/*文字サイズ*/
	color: #fff;		/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	font-size: 12px;	/*文字サイズ*/
	margin-left: 20px
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}
.main_pc {display: none;}

#headermenu{
	display: none;
}

/*メニューをページ下部に固定*/
#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   opacity: 0.9;
   z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

#sp-fixed-menu li{
   justify-content: center;
   align-items: center;
   width: 50%;
   padding:0;
   margin:0;
   font-size: 16px;
   border-right: 1px solid #fff;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child{
   background: #16913F;
   background-image: url("../images/free_tel.png");
   background-repeat: no-repeat;
   background-position: 15px center;
}

/*右側メニューを青に*/
#sp-fixed-menu li:last-child{
   background: #0768AC;
   background-image: url("../images/mail.png");
   background-repeat: no-repeat;
   background-position: 25px center;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
   padding:15px 0 15px 15px;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;position: absolute;z-index: 2;
	top: 15px;	/*上からの配置場所指定*/
	right: 2%;	/*右からの配置場所指定*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;		/*幅*/
	height: 50px;		/*高さ*/
	border-radius: 50%;	/*円形にする。この行削除すれば正方形になります。*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #009944 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコンの読み込み、上半分(top)を表示、幅50px*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #333 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコンの読み込み、上半分(bottom)を表示、幅50px*/
}

/*main,sub
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side {display: none;}
.big1 {font-size: 120%;letter-spacing: normal;}
.sh {display:block;}
.pc {display:none;}
	

}



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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header .inner {
	position: static;
	height: auto;
	padding: 10px;
	background-position: right center;	/*背景画像の配置場所の変更。右側に寄せる。*/
}
/*ロゴ画像*/
header #logo {
	position: static;
	margin: 0 auto;
}

/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: static;
	margin: 0 auto;
}
/*メニュー１個あたり*/
#headermenu li {
	float: none;
	max-width: 300px;	/*最大幅*/
	margin: 10px auto;
	text-align: center;
}

}



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

/*文字サイズ指定
---------------------------------------------------------------------------*/
body {
	font-size: 100%;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 220px;
	padding: 10px 0;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption,
.ta2 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1,ta2共通設定*/
.ta1, .ta1 td, .ta1 th,
.ta2, .ta2 td, .ta2 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}


}
/*list2ボックス工事メニュー
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
.list2 {
	overflow: hidden;
}
/*各ボックスの設定*/
.list2 li {
	float: left;		/*左に回り込み*/
	width: 32%;			/*幅*/
	line-height: 38px;	/*行間*/
	margin: 0px 0.6% 6px;	/*上、左右、下へのボックスの外側へ空けるスペース*/
}
.list2 a {
	display: block;text-decoration: none;
	height: 40px;		/*ボックスの高さ*/
	overflow: hidden;	/*ボックスから飛び出た場合、非表示にする設定*/
	background: linear-gradient(#fff, #f2f2f2);/*背景グラデーション*/
	border-radius: 5px;	/*角丸のサイズ*/
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は10%色がついた状態の事。*/
	padding: 4px;	/*ボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
.list2 a:hover {
	background: #fff;	/*背景色*/
	box-shadow: none;	/*ボックスの影をなくす設定*/
	position: relative;
	left: 1px;	/*現在地から右に1px移動する*/
	top: 1px;	/*現在地から下に1px移動する*/
}
/*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
.list2 .img {
	height: 100%;	/*高さ*/
	float: right;	/*右に回り込み*/
}
/*件数のテキスト。※list2内でspanタグで囲った場合。*/
.list2 span {
	font-size: 12px;	/*文字サイズ*/
	color: #009944;		/*文字色*/
}

.spnone {
  display: none;
}

.arrow{
    position: relative;
    display: inline-block;
    padding: 0px 0px 0px 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 14px;
}
.arrow::before,
.arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.allow1-1::before{
    width: 15px;
    height: 15px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #7a0;
}
.allow1-1::after{
    left: 5px;
    box-sizing: border-box;
    width: 3px;
    height: 3px;
    border: 5px solid transparent;
    border-left: 7px solid #fff;
}

[class^="img-flex-"] {
	margin-bottom: 20px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}


.img-flex-2 > img,
.img-flex-2 a { width: 49%; }
.img-flex-3 > img,
.img-flex-3 a { width: 32%; }
.img-flex-4 > img,
.img-flex-4 a { width: 24%; }

	#main div.item_02 p.color_01{
		color: #1068ac;
		font-weight: bold;
		text-align: center;
	    font-size: 120%;
		margin-top: 10px;
		padding: 10px 0;
	}
	#main div.item_02 p.color_02{
		color: #009944;
		font-weight: bold;
		font-size: 120%;
		padding: 5px 0;
	}
	#main div.item_02 p.color_03{
		line-height: 1.2;
		font-weight: bold;
		font-size: 130%;
		padding: 10px 0;
	}
	#main div.item_02 dl{
		display: inline-flex;
		line-height: 1;
		width: 100%;
		padding:10px 0 20px;
	}
	#main div.item_02 dt.color_04{
		color: #e50213;
		background-color: #fff201;
	    font-weight: bold;
		font-size: 120%;
		padding: 10px 5px 10px 5px;
		width: 20%;
	}
	#main div.item_02 dd.color_05{
		line-height: 0.5;
		width: 80%;
		color: #e50213;
		font-weight: bold;
		font-size: 320%;
		text-align: right;
		font-family:  "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
	}
	#main div.item_02 p.color_06{
		font-size: 80%;
		color: #009944;
	}
	#main span.small{
		font-size:50%;
	}
	#main span.small_02{
		font-size:50%;
		color: #5F5F5F;		
	}
	#main span.small_03{
		font-size:50%;	
	}
	.border{
	display: inline-block;         /* 打ち消し線と文字の幅を揃えられるようにする */
	position: relative;            /* 打ち消し線の位置を調整する時の基準点になるようにする */
    }
    .border::before {
	content: '';                	/* 擬似要素に実体を持たせる */
	width: 95%;                	/* 打ち消し線の幅を指定する*/
	height: 1px;                	/* 線を表示させるために1pxだけ高さを入れる */
	border-top: solid 2px #000;     /* 二重線の上側になる線をひく */
	position: absolute;            	/* 線の位置を自由に動かせるようにする */
	left: 10px ;                   	/* 線の位置を左に揃える */
	top: calc(20% - 3px);           /* 線の位置を真ん中から3px上にする */
    }
    .border::after {
	content: '';                	/* 擬似要素に実体を持たせる */
	width: 95%;                	/* 打ち消し線の幅を指定する*/
	height: 1px;                	/* 線を表示させるために1pxだけ高さを入れる */
	border-bottom: solid 2px #000;  /* 二重線の上側になる線をひく */
	position: absolute;            	/* 線の位置を自由に動かせるようにする */
	left: 10px ;                   	/* 線の位置を左に揃える */
	bottom: calc(80% - 3px);        /* 線の位置を真ん中から3px下にする */
}
	/*ベース*/
.toggle {
	display: none;
}
.label {		/*タイトル*/
	padding: 10px;
	display: block;
	color: #fff;
	background:#e2911c;
}
.label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.label,
.label_02 {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
	font-size: 110%;
	font-weight: bold;
}
.label_02 {		/*本文*/
	height: 0;
	margin:10px 0;
	overflow: hidden;
}
.toggle:checked + .label + .label_02 {	/*開閉時*/
	height: auto;
	transition: all .3s;
}
.toggle:checked + .label::before {
	transform: rotate(-45deg) !important;
}
	.label_02 table{
		width: 100%;
		padding: 20px 0;
	}
	.label_02 th{
		font-weight: normal;
		width: 60%;
		text-align: left;
		padding: 0 20px;
	}
	.label_02 td{
		font-weight: normal;
		width: 40%;
		text-align: right;
		padding: 0 20px 0 0;
		
	}
.label_02 tr:nth-of-type(2),
.label_02 tr:nth-of-type(4),
.label_02 tr:nth-of-type(6),
.label_02 tr:nth-of-type(8){
	background-color: #f4f4f4;
}

/*バナーエリア表示PCは３枚・スマホ２枚*/
@media screen and (min-width:768px) {
.img-flex-2 {
    display: none;
}
.main_sp {
    display: none;
}
	#sp-fixed-menu{
		display:none;
	}
	.arrow_pc {
      position: relative;
      display: inline-block;
      width: 33px;
      height: 62px;
	}
    .arrow_pc::before,
    .arrow_pc::after {
      content: "";
      position: absolute;
      top: calc(50% - 2px);
      right: -13px;
      width: 30px;
      height: 5px;
      border-radius: 9999px;
      background-color: #ffbe00;
      transform-origin: calc(100% - 2px) 50%;
    }
     .arrow_pc::before {
     transform: rotate(45deg);
    }
     .arrow_pc::after {
     transform: rotate(-45deg);
    }
	/*mainコンテンツのh3タグ設定*/
    #main h3.title_01 {
	  float: left;
	  margin-bottom: 20px;
      padding: 0px 20px;	/*上下、左右への余白*/
	  font-size: 130%;	/*文字サイズ*/
      border:none;	/*枠線の幅、線種、色*/
	  border-radius: 5px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
    /*h3タグの１文字目への追加設定*/
    #main h3.title_01::first-letter {
	  border:none;	/*左の線の幅、線種、色*/
	  padding-left: 0;				/*線とテキストとの余白*/
}
	#main div.item_02 p{
		padding: 0;
	}
	p.right_01{
		text-align:right;
	}
	div.wrapper{
		display: inline-flex;
		padding:0 0 20px 0;
	}
		div.item_01{
		width: 50%;
	}
	#main div.item_02{
		line-height: 1.6;
		width: 50%;
		background-color: #f4f4f4;
		padding: 5px 10px;
	}
	.photo_01{
		width:30%;
		float: right;
	}
	ul.stepflow div.stepflow_content::after{
		content: '';
        display: block;
        height: 0;
		clear:both;
	}
	ul.list_button{
	display: flex;
	justify-content: center;
    }

    ul.list_button li{
	padding: 20px;
    }
}
@media screen and (max-width:768px){

/*PCバナーを消す*/
.img-flex-3 {
    display: none;
}
#main .list figure {
    display: block;
    margin: 0 auto;
    padding: 20px 0;
	width: 100%;
	height: auto;
}
	#menubar_hdr  {
    position: fixed;
}
	nav #menubar  {
	position: fixed;
	overflow-y: scroll;
	z-index: 99;
    top:0;
    width:100%;
	height:100%;    <---heightを指定します
	background-color:#f00;
}
	.arrow_pc {
  position: relative;
  display: inline-block;
  width: 62px;
  height: 33px;
}

.arrow_pc::before,
.arrow_pc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  top: 92%;
  width: 5px;
  height: 30px;
  border-radius: 9999px;
  background-color: #ffbe00;
  transform-origin: 50% calc(100% - 2px);
}
.arrow_pc::before {
  transform: rotate(45deg);
}
.arrow_pc::after {
  transform: rotate(-45deg);
}
/*mainコンテンツのh3タグ設定*/
    #main h3.title_01 {
	  float: left;
	  margin-bottom: 20px;
      padding: 0px 20px;	/*上下、左右への余白*/
	  font-size: 100%;	/*文字サイズ*/
      border:none;	/*枠線の幅、線種、色*/
	  border-radius: 5px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
    /*h3タグの１文字目への追加設定*/
    #main h3.title_01::first-letter {
	  border:none;	/*左の線の幅、線種、色*/
	  padding-left: 0;				/*線とテキストとの余白*/
}
	#main h3.title_01 br{
		display:none;
	}	
	span.mgr-10{
	    margin-left:10px;
	}
	#main p.right_01{
		float: right;
		padding: 0;
		margin: 0;
	}
#main div.item_02{
		line-height: 1.6;
		background-color: #f4f4f4;
		padding: 5px 10px;
	}
	#main div.item_02 p{
		padding:0;
	}
	#main div.item_02 dt.color_04{
		width: 20%;
	}
	#main div.item_02 dd.color_05 {
		width: 80%;
		font-size: 280%;
	}
	.label_02 table{
		font-size: 90%;
	}
	.label_02 table th{
		padding: 0 5px;
	}
	.label_02 table td{
		padding: 0 5px;
	}
    #main h2 {
		font-size: 120%;
	}
	.border::before {
        top: calc(10% - 3px);           /* 線の位置を真ん中から3px上にする */
    }
    .border::after {
        bottom: calc(90% - 3px);        /* 線の位置を真ん中から3px下にする */
    }
	.photo_01{
		width:60%;
		text-align: center;
		padding: 0;
		margin: 0 auto;
	}
    ul.list_button li{
	padding: 0 0 5px 20px;
    }
	

}



	
 /*------------------------------------------
 お問い合わせボタン
------------------------------------------*/
    
.background_btn01 {
  display: inline-block;
  width: 100%;
  max-width: 80%; /* ボタン幅 */
  position: relative;
  background: #1068ac; /* 背景色 */
  border: 2px solid #1068ac;
  padding: 20px 30px;
  font-weight: bold;
  color: #fff; /* 文字色 */
  text-decoration: none;
  text-align: center;
  transition-duration: 0.3s;
  font-size: 20px;
  border-radius: 40px;
  box-shadow: 0 5px 0 #002053;
}

.background_btn01:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff; /* 矢印の色 */
  border-right: 2px solid #fff; /* 矢印の色 */
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}

/* マウスオーバーした際のデザイン */
.background_btn01:hover {
  background: #fff; /* 背景色 */
  color: #1068ac; /* 文字色 */
  top: 9px; /* 元の位置から9px分下がる */
  box-shadow: 0 0 #002053; /* 影を0pxにする */
}

.background_btn01:hover:before {
  border-top: 2px solid #1068ac; /* 矢印の色 */
  border-right: 2px solid #1068ac; /* 矢印の色 */
}

/* センターに位置 */
div.center{
	margin: 20px 0 40px 0;
	padding: 0;
	text-align: center;
}

@media screen and (max-width:768px){
	div.center{
		margin: 10px 0 30px 0;
	}
	div.center .background_btn01:before{
		left: 15px;
	}
	.background_btn01 {
		padding: 8px 30px;
	}
}
/* 施工事例流れる */
.slider {
    display: flex;
    overflow: hidden;
	padding: 0;
}

.slider-list {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    animation: slideShow 30s infinite linear;
    list-style: none;
}

.slider-item {
	width: calc(50vw / 4);
	margin: 0 10px;
	text-align: center;
}

.slider-item{
	text-align: center;
}

.slider-item img {
    width: 	100%;
    object-fit: cover;	
    margin: 0 0.1rem;
}

.slider:hover .slider-list {
    animation-play-state: paused;
}

@media screen and (max-width:768px){
.slider-item {
	width: calc(100vw / 2);
	}
}

@keyframes slideShow {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }

}