@charset "utf-8";
/* ------------------------------------------------ */
/* 1.共通
/* ------------------------------------------------ */

/* ボックスサイズの計算方法を指定 */
* {
	box-sizing: border-box;
}

/* ページ全体の基本スタイル */
body {
	color: #000000;
	font-size: 14px;
	font-family: メイリオ,Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
	line-height: 1.6;
}

/* 段落の基本スタイル */
p {
	padding-bottom: 1.5em;
}

/* リンクの基本スタイル */
a {
	color: #007de1;
	transition: 0.5s;
}

/* リンクにマウスが乗ったときのスタイル */
a:hover {
	opacity: 0.7;
}

/* 画像の基本スタイル */
img {
	vertical-align: bottom;
}

/* 2等分で横並び */
.col-6 {
	width: 50%;
}

/* 3等分で横並び */
.col-4 {
	width: 33.33%;
}

/* 写真のフレーム */
.photframe {
	border: 1px solid #eeeeee;
	border-radius: 4px;
	bbox-shadow: 1px 1px 1px #999999;
	padding: 15px;
}

/* ------------------------------------------------ */
/* 2.レイアウト
/* ------------------------------------------------ */

/* ページ全体を囲む枠 */
#wrapper {
	margin: 0 auto;
	width: 960px;
}

/* ------------------------------------------------ */
/* 3.ヘッダー
/* ------------------------------------------------ */

/* エリア外枠のスタイル */
header {
	padding-top: 15px;
	padding-bottom:25px;
}

/* 見出しのスタイル */
h1 {
	color: #999999;
	font-size: 12px;
	font-weight: normal;
	margin-bottom: 15px;
}

/* ロゴのスタイル */
#header-logo img {
	width: 30%;
	height: 30%;
}

/* ------------------------------------------------ */
/* 4.グローバルナビゲーション
/* ------------------------------------------------ */

/* メニューリストを囲む枠 */

#gNav{
	display: -webkit-flex;	/* safari用 */
	display: flex;
	list-style-type: none;
	height: 50px;
	margin-bottom: 25px;
	padding: 0;
	background: #57c512;
	border-bottom: 5px solid #3c870c;
	border-radius: 3px 3px 0 0;
}

/* メニューリストの共通スタイル */

#gNav li{
	position: relative;
	width: 16.7%;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
}

/* メニューのリンクスタイル */
#gNav li a{
	display: block;
	margin: 0;
	padding: 11px;
	color: #ffffff;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
	
	border-left: 1px solid#3c870c;
	border-right: 1px solid#78ec2f;	
}

/* メニューにマウスを乗せたときのスタイル */
/* 色の設定 */
#gNav li:hover > a{
	background: #78ec2f;
	color: #eff7b1;
}

/* 角を丸くする */
#gNav > li:hover > a{
	border-radius: 10px 10px 0 0;
}
/* メニューの英文字スタイル */
#gNav a span {
	color: #c7d7df;
	display: block;
	font-family: arial;
	font-size: 12px;	
}

/* 現在ページのメニュースタイル */
#gNav .current-menu-item a {
	background-color: #49a60f;
	color: #ffffff;
}


/* ドロップダウンメニュー初期非表示、絶対配置、位置指定 */
#gNav li ul{
	list-style: none;
	position: absolute;
	top: 110%;
	left: 0;
	margin: 0;
	padding: 0;
	border-radius: 3px 3px 0 0;
}

/* ドロップダウンメニュー内li設定 */
#gNav li ul li{
	overflow: hidden;
width: 100%;
	height: 0;
	color: #fff;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

/* ドロップダウンメニューリンク設定 */
#gNav li ul li a{
	padding: 15px;
	background: #57c512;
	text-align: center;
	font-size: 12px;
	font-weight: normal;
}

/* メインメニューにマウスオン時のドロップダウンメニュー */
#gNav li:hover ul li{
	overflow: visible;
	height: 53px;
	border-top: 1px solid #78ec2;
	border-bottom: 1px solid #3c870c;
}

/* ドロップダウンメニューボーダー削除、角のまるめ */
#gNav li:hover ul li:first-child{
	border-top: 0;
}
#gNav li:hover ul li:last-child{
	border-bottom: 0;
}
#gNav li:hover ul li:last-child a{
	border-radius: 0 0 10px 10px;
}


/* ------------------------------------------------ */
/* 5.コンテンツ
/* ------------------------------------------------ */

/* エリア枠内のスタイル */
#contents .inner {
	margin-bottom:25px;
}

/* 中見出し */
h2 {
	background-color: #57c512;
	color: #ffffff;
	font-size: 18px;
	margin-bottom: 25px;
	padding: 0.5em 1em;
}

/* 小見出し */
h3 {
	border: 1px solid #eeeeee;
	border-radius: 4px;
	box-shadow: 1px 1px 1px #999999;
	font-weight: bold;
	margin-bottom: 25px;
	padding: 0.2em 1em;
}

/* 事業内容のボックス */
.biz-box {
	padding: 0 25px;
	margin-tottom: 40px;
}

/* 事業内容の見出し */
.biz-box h3 {
	text-align: center;
}

/* 事業内容の画像 */
.biz-box img {
	margin-bottom: 25px;
	width: 100%;
}

/* ------------------------------------------------ */
/* 6.フッター
/* ------------------------------------------------ */

/* エリア枠外のスタイル */
#footer {
	background: #57c512;
	color: #ffffff;
	padding:25px;
	display: -webkit-flex;	/* safari用 */
	display: flex;
}

/* エリア左側のスタイル */
#footer-left {
	width: 300px;
}

/* エリア右側のスタイル */
#footer-right {
	width: 610px;
}

/* ロゴ */
#footer-logo img {
	margin-bottom: 15px;
	width: 75%;
	height: 75%;
}

/* 会社所在地 */
#address {
	font-size: 12px;
	color: #ffffff;
}

/* 著作権表記 */
#copyright {
	text-align: right;
	display: block;
}

/* ------------------------------------------------ */
/* 7.フッターナビゲーション
/* ------------------------------------------------ */

/* エリア外枠のスタイル */
#fNav {
	margin-bottom: 30px;
}

/* メニューリストを囲む枠 */
#fNav ul {
	display: -webkit-flex;	/* safari用 */
	display: flex;
	width: 518px;
	margin-left: auto;
}

/* メニューリストの共通スタイル */
#fNav li {
	padding: 0 14px;
	border-right: 1px solid #ffffff;
}

/* 一番最後のメニュー */
#fNav li:last-child {
	border-right: none;
	padding-right: 0;
}

/* メニューリンクの共通スタイル */
#fNav a {
	color: #ffffff;
	text-decoration: none;
}

/* メニューリンクにマウスを乗せたときのスタイル */
#fNav a:hover {
	background-color: #78ec2f;
	color: #eff7b1;
	opacity: 1;
}

/* ------------------------------------------------ */
/* 8.トップページ専用スタイル
/* ------------------------------------------------ */

/* メイン画像 */
#main_visual {
	width: 100%;
}

/* お問い合わせ画像 */
#contact{
	float: left;
	border-right: 15px solid #ffffff;
}

/* 新着情報の見出し位置(1文字字下げ) */
#news-h2 {
	text-indent: 1em;
}

/* 新着情報のリスト */
#news li {
	border-bottom: 1px dotted #aaaaaa;
	padding: 0.2em;
	margin-bottom: 5px;
}

/* 事業内容の枠 */
#our-business {
	display: -webkit-flex;	/* safari用 */
	display: flex;
	-webkit-flex-wrap: warap;	/* safari用 */
	flex-wrap: wrap;
	margin:15px;
}

/* ------------------------------------------------ */
/* 9.会社概要ページ専用スタイル
/* ------------------------------------------------ */

/* ③会社概要のテーブル */
#company-prof {
	margin: 0 auto;
	width: 80%;
}

/* ④⑤会社概要のテーブルセル */
#company-prof th, #company-prof td {
	border: 1px solid #a5aaac;
	padding: 1em;
}

/* ④会社概要の見出しセル */
#company-prof th {
	white-space: nowrap;
	background-color: #c8cbcd;
	color: #000000;
	border-bottom: 1px solid #ffffff;
}

/* ⑥最終行の見出しセルの境界線を着色 */
#company-prof tr:last-child th {
	border-bottom: 1px solid #2AA8E5;
}

/* ------------------------------------------------ */
/* 10.事業内容ページ専用スタイル
/* ------------------------------------------------ */



/* ------------------------------------------------ */
/* 11.施工実績ページ専用スタイル
/* ------------------------------------------------ */

/* 施工実績のテーブル */
#results {
	margin:0 auto;
	width: 80%;
}

/* 施工実績のテーブルセル */
#results th, #results td {
	border: 1px solid #a5aaac;
	padding: 1em;
}

/* 施工実績の見出しセル */
#results th {
	white-space: nowrap;
	background-color: #c8cbcd;
	color: #000000;
	border-bottom: 1px solid #ffffff;	
}

/* 施工実績のセル */
.a {
	width= 80
}

.b {
	width= 50
}

.c {
	width= 100
}

.d {
	width= 80
}

/* ⑥最終行の見出しセルの境界線を着色 */
#results tr:last-child th {
	border-bottom: 1px solid #2AA8E5;

/* ------------------------------------------------ */
/* 12.採用情報ページ専用スタイル
/* ------------------------------------------------ */



/* ------------------------------------------------ */
/* 11.お問い合わせページ専用スタイル
/* ------------------------------------------------ */

/* お問い合わせのフォームのフレーム */
#mail-form iframe {
	width: 100%;
	height: 1100px;
	margin-bottom: 25px;
}

/* ------------------------------------------------ */
/* 12.プライバシーポリシー専用スタイル
/* ------------------------------------------------ */

#our-policy ol {
	margin-bottom: 25px;
}

/* プライバシーポリシーのリスト */
#our-policy li {
	list-style: decimal inside;
}
