@charset "utf-8";


/*各cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");
@import url("slide.css");

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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	color: #000;		/*文字色*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,textarea,input {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
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;}
video {max-width: 100%;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
/*	color: #666;*/
/*	transition: 0.4s;*/
}
/*a:hover {
	color: #5ead00;
	text-decoration: none;
}*/

/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: absolute;	/*ヘッダーを上部に固定する指定*/
	z-index: 1;
	left: 0px;			/*左からの配置場所の指定*/
	top: 0px;			/*上からの配置場所の指定*/
	width: 100%;		/*幅*/
	/*background: #000;	/*背景色*/
	font-size: 16px;	/*文字サイズ*/
	height: 50px;		/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
	height: 50px;	/*高さ。上のheaderのheightと合わせる。*/
	float: left;	/*左に回り込み*/
	/*background: #5ead00;	/*背景色*/
	margin:10px 20px 0;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar {
	float: right;
}
/*メニュー１個あたりの指定*/
#menubar li {
	float: left;
	letter-spacing: 0.1em;
}
#menubar li a, .ddmenu-title {
	display: block;text-decoration: none;
	color: #fff;	/*文字色*/
	padding: 0px 20px;	/*上下、左右へのメニュー内の余白*/
	margin:0 5px;
	line-height: 50px;	/*行間。headerのheightと数字を合わせる。*/
	border-bottom:solid 5px #5ead00;
	font-weight:bold;
}
/*マウスオン時の背景色*/
#menubar li a:hover {
	background: #5ead00 !important;
}

/*セカンドメニューのメインメニュー文字色*/
.secand #menubar li a{
	color:#000;
}


/*お問い合わせボタン*/
#menubar li a.contact-btn{
	background:#FFD600;
	font-weight:bold;
	color:#000!important;
}

/*ドロップダウンメニューの親メニューへの追加指定。基本指定は上の.ddmenu-titleにあります。*/
.ddmenu-title {
	padding-left: 40px;	/*アイコン分の余白を確保*/
	background: url(../images/arrow1.png) no-repeat 10px center / auto 25px;	/*アイコン画像の読み込み。最後の25pxは高さ指定。*/
}

/*小さい端末用メニューを非表示にする*/
#menubar-s,#menubar-s2 {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー（ddmenu）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	width: auto;
	margin-left: -40px;	/*.ddmenu-titleのpadding-leftと数字を合わせてマイナス記号をつける。*/
}
/*メニュー１個あたりの指定*/
#menubar ul.ddmenu li {
	float: none;
}
#menubar ul.ddmenu li a {
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
	border: 1px solid rgba(255,255,255,0.4);	/*線の幅、線種、色。255,255,255は白の事で0.4は色が40%出た状態。*/
	border-top: none;	/*上の線だけ消す*/
}
/*１つ目のメニューへの追加指定*/
#menubar ul.ddmenu li:first-child a {
	border-top: 1px solid rgba(255,255,255,0.4);	/*上の線の指定*/
}
/*ドロップダウンのマウスオン事*/
li:hover ul.ddmenu {
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.4S;	/*アニメーションの実行時間。0.4秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}

/*ヘッダー　お問合せボタン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: right;	/*アイコンブロックを右に回り込み*/
	margin-left:20px;
}
/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*横並びにさせる指定*/
	padding: 12px 40px;		/*上に空ける余白。header内の上下の配置バランスをここでとって下さい。*/
	background:#FFD600 url("../images/arrow4.png")no-repeat left 10px center / 20px;
}
ul.icon li a{
	text-decoration: none;
	color:#000;
	font-weight:bold;
}
ul.icon li:hover{
	background:#5ead00 url("../images/arrow4.png")no-repeat left 10px center / 20px;
}
/*アイコン画像の設定*/
ul.icon img {
	width: 30px;		/*画像の幅*/
	margin-right: 5px;	/*画像同士の余白*/
}

/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
	margin: 0px 0 0;	/*上に空ける余白。headerとの間に空けたいスペースを調整して下さい*/
    width:100%;
	/*margin-top: 500px;	/*スライドショーの高さに合わせて調整して下さい*/
	background:url("../images/contents-secand-bg.svg"),url("../images/contents-foot-bg.svg");
	background-repeat:no-repeat,no-repeat;
	background-position: top left,bottom right;
	background-size:70%,50%;
}
/*トップページのコンテンツへの追加指定*/

.home #contents {
	margin-top: 500px;	/*スライドショーの高さに合わせて調整して下さい*/
	background:url("../images/contents-bg.svg"),url("../images/contents-foot-bg.svg");
	background-repeat:no-repeat,no-repeat;
	background-position: top left,bottom right;
	background-size:cover,50%;
}

/*homeのみの背景*/
.bg-home{
	background:url("../images/contents-bg.svg")no-repeat left top;
	background-size:cover;
}

/*ページ下部の背景*/
.bg-foot{
	background:url("../images/contents-foot-bg.svg")no-repeat right bottom / 50%;
}

/*コンテンツの内側*/
.contents-inner{
	padding:3%;		/*コンテンツ内の余白*/
}

/*h2タグ*/
#contents h2 {
  display:flex;
  align-items: center;
  justify-content: center;
color:#006900;
font-weight:bold;
font-size:2.0em;
}

#contents h2::before,
#contents h2::after{
  content: "";
  flex-grow:1;
  border-top: 1px solid #006900;
}

#contents h2:before {
   margin-right: 1rem; 
}

#contents h2:after {
  margin-left: 1rem; 
}



/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 20px;	/*下に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
	padding:5px 0 5px 10px;		/*左に空ける余白*/
	background:#6EBC1D;
	color:#fff;
}


/*段落タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
/*#contents p + p {
	margin-top: -5px;
}*/
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 30px;
}

/*list（トップページやServiceページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	/*background: #000;	/*背景色*/
	color: #000;		/*文字色*/
	margin-bottom: 1px;	/*ボックス同士に空けるスペース*/
}
/*リンクテキストの文字色
#contents .list a {
	color: #fff;
}*/
/*ボックス内のh4（見出し）タグ*/
#contents .list h4 {
	margin:0 auto 10px;	/*下のテキストとの間に空けるスペース*/
	font-size:2.0em;		/*文字サイズ*/
	text-align:center;
	border-bottom:solid 1px #000;
	font-weight:bold;
}

#contents .list h4 span{
	display:inline-block;
}

/*ボックス内のp（段落）タグ*/
#contents .list p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
	/*float: left;	/*左に回り込み*/
	width: 50%;		/*画像の幅*/
	text-align:center;
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
	float: right;	/*右に回り込み*/
	width: 50%;		/*幅*/
	padding: 0;		/*外側に取るスペースなし*/
}
/*うちがわ　余白あり*/
.text-inner {
	padding:3% 10%;
}

/*お問合せバナー
-------------------------------*/
.all-bnr{
	width:100%;
	text-align:center;
}
.all-bnr img{
	width:60%;
}

/*btn1  お問い合わせフォーム
---------------------------------------------------------------------------*/
.btn1 a {
	display: block;
	text-decoration: none;
	background: #FFD600 url(../images/arrow4.png) no-repeat 95% center / 15px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #000;	/*文字色*/
	max-width: 300px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 5px 30px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
	font-size:1.2em;
	font-weight:bold;
	border-radius:40px;
}
/*マウスオン事に少し位置をずらす指定*/
.btn1 a:hover {
	position: relative;
	left: 1px;
	top: 1px;
}


/*btn2　採用について
---------------------------------------------------------------------------*/
.btn2 a {
	display: block;
	text-decoration: none;
	background: #00B3FF url(../images/arrow4.png) no-repeat 95% center / 15px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #000;	/*文字色*/
	max-width: 300px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 5px 30px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
	font-size:1.2em;
	font-weight:bold;
	border-radius:40px;
}
/*マウスオン事に少し位置をずらす指定*/
.btn2 a:hover {
	position: relative;
	left: 1px;
	top: 1px;
}

/*btn3　　警備のご依頼
---------------------------------------------------------------------------*/
.btn3 a {
	display: block;
	text-decoration: none;
	background: #FF6E00 url(../images/arrow4.png) no-repeat 95% center / 15px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #000;	/*文字色*/
	max-width: 300px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 5px 30px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
	font-size:1.2em;
	font-weight:bold;
	border-radius:40px;
}
/*マウスオン事に少し位置をずらす指定*/
.btn3 a:hover {
	position: relative;
	left: 1px;
	top: 1px;
}


/*btn2　HOME　採用について
---------------------------------------------------------------------------*/
.home-btn2 a {
	text-decoration: none;
	background: #00B3FF url(../images/arrow4.png) no-repeat 95% center / 15px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #000;	/*文字色*/
	max-width: 300px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 5px 30px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
	font-size:1.2em;
	font-weight:bold;
	border-radius:40px;
	position:absolute;
	right:30px;
	top:100px;
	z-index: 100;
}
/*マウスオン事に少し位置をずらす指定*/
.home-btn2 a:hover {
	position: relative;
	left: 1px;
	top: 1px;
}

/*btn3　　HOME  警備のご依頼
---------------------------------------------------------------------------*/
.home-btn3 a {
	text-decoration: none;
	background: #FF6E00 url(../images/arrow4.png) no-repeat 95% center / 15px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #000;	/*文字色*/
	max-width: 300px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 5px 30px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
	font-size:1.2em;
	font-weight:bold;
	border-radius:40px;
	position:absolute;
	right:30px;
	top:50px;
	z-index: 100;
}
/*マウスオン事に少し位置をずらす指定*/
.home-btn3 a:hover {
	position: relative;
	left: 1px;
	top: 1px;
}

/*
HOME　　各種お問い合わせバナー
-------------------------------------*/
/*list02（会社案内）
---------------------------------------------------------------------------*/
/*list02ボックスを囲むボックス*/
.list-container01 {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: row;			/*子要素を横並びにする*/
	width:60%;
	margin:0 auto;
}

.list-container01 a:hover{
	opacity:0.7;
}

/*HOME　　各種お問い合わせバナー list03ボックス。１個あたりのボックスの指定です。*/
.list03-bnr {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin: 0 1.5% 30px;			/*ボックス同士の上下間の余白*/
	width: 30%;	/*ボックスの幅*/
}

/*各ページ　お問合せ覧
--------------------------------------*/
.contact-tel{
	font-size:1.2em;
	font-weight:bold;
	color:#3D9215;
	text-align:center;
}

/*電話番号*/

.tel-number{
	font-size:2.5em;
	font-weight:bold;
	color:#3D9215;
	background:url("../images/tel-icon.svg")no-repeat left center / 40px;
	padding-left:60px;
	display: inline-block;
}

.tel-number a{
	text-decoration: none;
	color:#3D9215;
}

.tel-number a:hover{
	text-decoration: underline;
}

/*電話番号 フッター用*/

.tel-number-foot{
	font-size:1.5em;
	font-weight:bold;
	color:#fff;
	background:url("../images/tel-icon.svg")no-repeat left center / 30px;
	padding-left:40px;
	display: inline-block;
}

.tel-number-foot a{
	text-decoration: none;
	color:#fff;
}

.tel-number-foot a:hover{
	text-decoration: underline;
}

/*セカンドページ　トップ  ヘッダの分空ける70px
----------------------------------------*/
.secand-top{
	font-size:2.0em;
	font-weight:bold;
	text-align:center;
	padding:60px 0;
	margin-top:70px;
	color:#fff;
}
/*会社案内*/
.company-bg{
	background-image:url("../images/slide-top-green.svg"),url("../images/company/secand-top.jpg");
	background-position:left bottom,center center;
	background-size:40%,cover;
	background-repeat:no-repeat,no-repeat;
}
/*事業案内*/
.service-bg{
	background-image:url("../images/slide-top-green.svg"),url("../images/service/secand-top.jpg");
	background-position:left bottom,center center;
	background-size:40%,cover;
	background-repeat:no-repeat,no-repeat;
}
/*お問合せ*/
.contact-bg{
	background-image:url("../images/slide-top-green.svg"),url("../images/contact/secand-top.jpg");
	background-position:left bottom,center center;
	background-size:40%,cover;
	background-repeat:no-repeat,no-repeat;
}
/*プライバシーポリシー*/
.privacy-bg{
	background-image:url("../images/slide-top-green.svg"),url("../images/privacy/secand-top.jpg");
	background-position:left bottom,center center;
	background-size:40%,cover;
	background-repeat:no-repeat,no-repeat;
}



/*タイトル
--------------------------------------------*/
.title01{
	border-left:solid 20px #3D9215;
	padding-left:40px;
	font-weight:bold;
	font-size:2.0em;
	color:#3D9215;
	line-height:1.2em;
	margin-bottom:40px;
}

.title02{
	font-weight:bold;
	color:#3D9215;
	font-size:1.3em;
}

/*会社案内
----------------------------------------------*/
.shaze{
	font-weight:bold;
	text-align:center;
	color:#3D9215;
	font-size:2.0em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

/*背景色
-----------------------------*/
.bg-gray{background:#F5F5F5;}

.bg-mitsuba{
	background:url("../images/bg-mitsuba.png")no-repeat center center / 50%;
}


/*list02（会社案内）
---------------------------------------------------------------------------*/
/*list02ボックスを囲むボックス*/
.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: row;			/*子要素を横並びにする*/
}

/*list02ボックス。１個あたりのボックスの指定です。*/
.list02 {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
	border: 1px solid #ccc;			/*枠線の幅、線種、色*/
	padding: 20px;					/*ボックス内の余白*/
	background: #fff;				/*背景色。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.1は色が10%出た状態。*/
	width: 45%;	/*ボックスの幅*/
}

.list02 img{
	margin-bottom:20px;
}

/*事業案内　取組み
-----------------------------------------------*/
/*——　文字の右にライン　——*/
.title-border-right {
display: flex;
align-items: center;
color:#3D9215;
font-size:2.0em;
font-weight:bold;
}
.title-border-right:after {
border-top: 1px solid;
content: "";
flex-grow: 1;
}
.title-border-right:after {
margin-left: 1rem;
}


/*list03ボックス。１個あたりのボックスの指定です。*/
.list03 {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin: 0 1.5% 30px;			/*ボックス同士の上下間の余白*/
	width: 30%;	/*ボックスの幅*/
}

.list03 .caption{
	text-align:center;
}

/*グリーンのタイトル
---------------------------------------*/
.title-green{
	color:#539606;
	font-weight:bold;
	font-size:1.2em;
	text-align:center;
	margin:20px 0;
}


/*罫線あり枠
----------------------------------------*/
.border-box{
	border:solid 1px #333;
	padding:10px;
	margin-bottom:30px;
}


/*pdcaイメージ
------------------------------------------*/
.pdca img{
	width:60%;
}


/*お問い合わせフォーム
---------------------------------------*/
/*お問合せ　個人情報保護方針　タイトル*/
.secand-title{
	font-size:2.0em;
	color:#006900;
	font-weight:bold;
}

/*プライバシーポリシー
---------------------------------------*/
h5{
	font-weight:bold;
	font-size:1.2em;
}

.privacy-list ul li{
	margin-left:50px;
	list-style-type:circle;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	font-size: 80%;		/*文字サイズ*/
	color: #fff;			/*文字色*/
}
footer a {color: #fff;}
footer a:hover {color: #fff;}
footer .pr {display: block;}




/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width:94%;
	overflow: hidden;
	padding: 20px 3%;		/*上下、左右へのボックス内の余白*/
	background: #5ead00;	/*背景色*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
/*	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
/*マウスオン時*/
#footermenu a:hover {
	/*opacity: 1;		/*透明度。100%色がついた状態。*/
}

/*フッター　ロゴ　住所
----------------------------------------------------------------*/
#footermenu .footer-address{
	width:25%;
	float: left;
	color:#000;
	text-align:left;
}
.footer-logo{
text-align:left;
}
.footer-logo img{
	height:40px;
}

.address{
	line-height:1.8em;
	padding:20px 0;
}

/*個人情報保護方針へのリンク*/
.foot-link{
	background:url("../images/arrow4.png")no-repeat left center / 15px;
	padding-left:20px;
}

/*１行分の設定*/
#footermenu ul {
	float: right;		/*左に回り込み*/
	width: 23%;			/*幅。今回は４列作っているので、この数字と下のpadding-rightとpadding-leftを合計した数字が１列分になる。(23%＋1%＋1%)×4列＝100%*/
	padding-right: 1%;	/*右に空ける余白*/
	padding-left: 1%;	/*左に空ける余白*/
	text-align: left;	/*テキストを左寄せ*/
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
	font-size: 110%;	/*文字サイズ*/
}


/*外部リンクバナー*/
.link-bnr{
	width:40%;
	margin:2.5%;
	float:left;
	background:#fff;
	padding:2.5%;
	border-radius:4px;
}
.link-bnr p{
	color:#000;
	font-size:80%;
	line-height:1.5em;
	text-align:center;
}

/*外部リンクバナー採用*/
.link-bnr01{
	width:100%;
	margin:2.5%;
	float:left;
}
.link-bnr01 p{
	color:#000;
	font-size:80%;
	line-height:1.5em;
	text-align:center;
}


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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 20px;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
	height: 170px;			/*高さ*/
	overflow: auto;			/*上の高さを超えるコンテンツ量になった場合にスクロールバーを出す*/
	border-radius:4px;
	background:#fff;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

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


/*ta2設定  会社概要
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1テーブル*/
.ta2 {
	width: 100%;
	table-layout: fixed;
	margin: 40px 0 20px;
	background: #fff;	/*背景色*/
}
.ta2, .ta2 td, .ta2 th {
	border: none;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta2 th {
	width: 25%;	/*幅*/
	text-align: left;	/*センタリング*/
	vertical-align:top;
	font-weight: bold;
	background:#E6EDDD;
}

.ta2 tr{
	border-bottom: 1px solid #5ead00;	/*テーブルの枠線の幅、線種、色*/
}

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

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {display: none;}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
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: 280px;	/*下から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: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover img {
	opacity: 0.8;
	/*background: #999;	/*背景色*/
}

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

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

/*その他
---------------------------------------------------------------------------*/
.look {background: #222;padding: 5px 10px;border-radius: 4px;border: 1px solid #333;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #ff0000 !important;}
.color2, .color2 a {color: #5ead00 !important; font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 40px;}

.dn {display: none;}
.sh {display: none;}




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

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	overflow: auto;height: 100%;
	text-align: left;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}
	
	
/*お問合せへの誘引
	----------------------------*/
	.contact-menu{
		width:100%;
		text-align:center;
		padding:20px 0;
	}
	
/*スマホ用メニュー小文字*/
#menubar-s span{
	font-size: 13px;
	line-height: 1.5;
	color:#fff;
	margin:0 20px;
	display: block;
}
	
	
/*電話番号 スマホメニュー用*/

.tel-number-menu{
	font-size:2.0em;
	font-weight:bold;
	color:#fff!important;
	background:url("../images/tel-icon.svg")no-repeat left center / 30px;
	padding-left:40px;
	display: inline-block;
}
.tel-number-menu a{ 
	color:#fff;
	text-decoration: none;
	}
	

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 35px;
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	background: rgba(0,0,0,0.5);	/*背景色*/
	border: 1px solid #666;		/*上の線の幅、線種、色*/
	border-bottom: none;		/*下の線のみ消す*/
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow4.png) no-repeat 10px 18px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 10px 18px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	color: #fff !important;	/*文字色*/
	padding: 5px;	/*余白*/
	border-bottom: 1px solid #666 !important;		/*下の線の幅、線種、色*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 0px;		/*上からの配置場所*/
	right: 10px;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background:#5ead00 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background:#5ead00 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*お問い合わせボタン　非表示
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	display:none;
}
	
/*　会社案内　list02ボックス。１個あたりのボックスの指定です。*/
.list02 {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
	border: 1px solid #ccc;			/*枠線の幅、線種、色*/
	padding: 20px;					/*ボックス内の余白*/
	background: #fff;				/*背景色。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.1は色が10%出た状態。*/
	width: 43%;	/*ボックスの幅*/
}

/*お問い合わせボタン*/
.btn1{
	margin:0 5% 40px;
}
		

/*フッター　ロゴ　住所
----------------------------------------------------------------*/
#footermenu .footer-address{
	width:50%;
	float: left;
	color:#000;
	text-align:left;
}
.footer-logo{
text-align:left;
}
.footer-logo img{
	height:40px;
}

.address{
	line-height:1.8em;
	padding:20px 0;
}
	
/*電話番号 フッター用*/

.tel-number-foot{
	font-size:3.0em;
	font-weight:bold;
	color:#fff;
	background:url("../images/tel-icon.svg")no-repeat left center / 30px;
	padding-left:40px;
	display: inline-block;
}

/*１行分の設定*/
#footermenu ul {
	float: right;		/*左に回り込み*/
	width: 48%;			/*幅。今回は４列作っているので、この数字と下のpadding-rightとpadding-leftを合計した数字が１列分になる。(23%＋1%＋1%)×4列＝100%*/
	padding-right: 1%;	/*右に空ける余白*/
	padding-left: 1%;	/*左に空ける余白*/
	text-align: left;	/*テキストを左寄せ*/
	margin-top:0px;
}
		
	

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}

/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 50px;		/*ヘッダーの高さ*/
	background: #5ead00;	/*背景色*/
	text-align: center;
}
/*ロゴ画像*/
header #logo img {
	/*float: none;	/*左に回り込み*/
	height: 30px;	/*高さ。上のheaderのheightと合わせる。*/
}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	display:none;
}
/*アイコン１個あたりの設定*/
ul.icon li {
	padding-top: 0px;
}

/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
	margin-top: 0px;	/*上に空ける余白。headerとの間に空けたいスペースを調整して下さい*/
}
/*トップページのコンテンツへの追加指定*/
.home #contents {
	margin-top: 350px;	/*スライドショーの高さに合わせて調整して下さい*/
}

/*コンテンツの内側*/
.contents-inner{
	padding:3% 0;		/*コンテンツ内の余白*/
}
	
/*h3タグ*/
#contents h3 {
	padding-left: 15px;		/*左に空ける余白*/
}
/*段落タグ設定*/
#contents p {
	padding: 0px 15px 20px;	/*上、左右、下への余白*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}
	
	
/*HOME　
---------------------------------------*/
/*list（トップページやServiceページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list {
	position: relative;
	overflow: hidden;
	display: inherit;
	align-items: center;
	/*background: #000;	/*背景色*/
	color: #000;		/*文字色*/
	margin-bottom: 1px;	/*ボックス同士に空けるスペース*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
	/*float: left;	/*左に回り込み*/
	width: 100%;		/*画像の幅*/
	text-align:center;
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
	float: left;	/*右に回り込み*/
	width: 100%;		/*幅*/
	padding: 0;		/*外側に取るスペースなし*/
}
	
/*お問い合わせボタン*/
.btn1{
	margin:0 5% 40px;
}
	
	
	
	
/*list02（会社案内）
---------------------------------------------------------------------------*/
/*list02ボックスを囲むボックス*/
.list-container {
	display: inherit;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: column;			/*子要素を横並びにする*/
}
/*list02ボックス。１個あたりのボックスの指定です。*/
.list02 {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
	border: 1px solid #ccc;			/*枠線の幅、線種、色*/
	padding: 20px;					/*ボックス内の余白*/
	background: #fff;				/*背景色。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.1は色が10%出た状態。*/
	width: auto;	/*ボックスの幅*/
}
	
/*お問合せバナー　全部*/	
.all-bnr img{
	width:100%;
}
	
/*
HOME　　各種お問い合わせバナー
-------------------------------------*/
/*list02（会社案内）
---------------------------------------------------------------------------*/
/*list02ボックスを囲むボックス*/
.list-container01 {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: row;			/*子要素を横並びにする*/
	width:100%;
	margin:0 auto;
}

.list-container01 a:hover{
	opacity:0.7;
}

/*HOME　　各種お問い合わせバナー list03ボックス。１個あたりのボックスの指定です。*/
.list03-bnr {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin: 0 1.5% 30px;			/*ボックス同士の上下間の余白*/
	width: 30%;	/*ボックスの幅*/
}	
	

/*フッター　ロゴ　住所
----------------------------------------------------------------*/
#footermenu .footer-address{
	width:100%;
	float: left;
	color:#000;
	text-align:left;
}
.footer-logo{
text-align:left;
}
.footer-logo img{
	height:40px;
}

.address{
	line-height:1.8em;
	padding:20px 0;
}
	
/*電話番号 フッター用*/

.tel-number-foot{
	font-size:3.0em;
	font-weight:bold;
	color:#fff;
	background:url("../images/tel-icon.svg")no-repeat left center / 30px;
	padding-left:40px;
	display: inline-block;
}

/*１行分の設定*/
#footermenu ul {
	float: right;		/*左に回り込み*/
	width: 98%;			/*幅。今回は４列作っているので、この数字と下のpadding-rightとpadding-leftを合計した数字が１列分になる。(23%＋1%＋1%)×4列＝100%*/
	padding-right: 1%;	/*右に空ける余白*/
	padding-left: 1%;	/*左に空ける余白*/
	text-align: left;	/*テキストを左寄せ*/
	margin-top:20px;
}
	
	
/*セカンドページ
-----------------------------*/
/*セカンドページ　トップ  ヘッダの分空ける50px
----------------------------------------*/
.secand-top{
	font-size:2.0em;
	font-weight:bold;
	text-align:center;
	padding:60px 0;
	margin-top:50px;
	color:#fff;
}
	
	
/*会社案内
	---------------------------*/
.bg-mitsuba{
	background:url("../images/bg-mitsuba.png")no-repeat top 50px center / 50%;
}
	
/*社是
----------------------------------------------*/
.shaze{
	font-weight:bold;
	text-align:center;
	color:#3D9215;
	font-size:1.5em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
	
	
/*事業案内
	----------------------------------------*/
/*list03ボックス。１個あたりのボックスの指定です。*/
.list03 {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin: 0 1.5% 30px;			/*ボックス同士の上下間の余白*/
	width: 97%;	/*ボックスの幅*/
}
	
	
/*セカンドページ　トップ画像*/
/*会社案内*/
.company-bg{
	background-image:url("../images/slide-top-green.svg"),url("../images/company/secand-top.jpg");
	background-position:left bottom,center center;
	background-size:70%,cover;
	background-repeat:no-repeat,no-repeat;
}
/*事業案内*/
.service-bg{
	background-image:url("../images/slide-top-green.svg"),url("../images/service/secand-top.jpg");
	background-position:left bottom,center center;
	background-size:70%,cover;
	background-repeat:no-repeat,no-repeat;
}
/*お問合せ*/
.contact-bg{
	background-image:url("../images/slide-top-green.svg"),url("../images/contact/secand-top.jpg");
	background-position:left bottom,center center;
	background-size:70%,cover;
	background-repeat:no-repeat,no-repeat;
}
/*プライバシーポリシー*/
.privacy-bg{
	background-image:url("../images/slide-top-green.svg"),url("../images/privacy/secand-top.jpg");
	background-position:left bottom,center center;
	background-size:70%,cover;
	background-repeat:no-repeat,no-repeat;
}


/*お問い合わせフォーム
---------------------------------------*/
/*お問合せ　個人情報保護方針　タイトル*/
.secand-title{
	font-size:2.0em;
	color:#539606;
	font-weight:bold;
	margin-left:3%;
}
/*プライバシーポリシー
---------------------------------------*/
h5{
	font-weight:bold;
	font-size:1.2em;
	margin-left:3%;
}
	
	


/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px !important;}
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}

}
