@charset "utf-8";
/**************************************************
					共通
***************************************************/
* {
	margin:0;
	padding:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

h1,h2,h3,h4,h5,h6,p,div,table,ul,ol,li{
	color: #333333;
}

h2{
	font-size: 24px;
	position: relative;
	display: block;
	width: 320px;
	padding: 0 55px;
	margin: 0 auto;
	margin-bottom: 30px;
	text-align: center;
}
h2.long{
	width: 420px;
}
h2::before,h2::after{
	content: " ";
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 100px;
	height: 1px;
	background-color: #77AA77;
}
h2::before{
	left: -50px;
}
h2::after{
	right: -50px;
}

p,div,table{
	font-size: 16px;
	line-height: 1.8;
}

main{
	width: 1200px;
	margin: 0 auto;
	margin-top: 139px;
	position: relative;
	display: block;	/* IE等でmainがinline要素で認識される対策 */
}


table{
	border-collapse: collapse;
	margin: 0 auto;
	margin-bottom: 50px;
}

th,td{
	padding: 10px 20px;
}

.wf-sawarabimincho { 
	font-family: "Sawarabi Mincho";
}

.sptb_only,
.sp_only{
	display: none;
}


/*****  パンくずリスト  start *****/
.page_path{
	margin-bottom: 20px;
}
.page_path > li{
	list-style: none;
	display: inline-block;
	font-size: 13px;
}
.page_path > li > span{
	padding-left: 20px;
	padding-right: 20px;
}




/*****  パンくずリスト  end *****/

@media all and (-ms-high-contrast: none) {	/* IEのみ */
}
@supports (-ms-ime-align:auto) {	/* Microsoft Edgeのみ */
}

/*****   ページトップへ戻るボタン start   *****/
#fixedTop{
	padding: 15px 20px;
	right: 30px;
	bottom: 30px;
	color: #fff;
	text-align: center;
	display: none;
	background-color: #113306;
	position: fixed;
	z-index: 99;
	text-decoration: none;
	transition: 0.8s;
}
#fixedTop:hover{
	background-color: #22B573;
	border-radius: 10px;
	transition: 0.8s;
	animation: rumble 1.12s linear infinite;
}

@keyframes rumble{
	0%	{transform:rotate(0deg)	translate(0,0);}
	25%	{transform:rotate(10.8deg)	translate(0px,1px);}
	50%	{transform:rotate(0deg)	translate(0,0);}
	75%	{transform:rotate(-10.8deg)	translate(0,1px);}
	100%	{transform:rotate(0deg)	translate(0,0);}
}


/*
@keyframes rumble{
	0%	{transform:rotate(0deg)	translate(0,0);}
	12.5%	{transform:rotate(0.4deg)	translate(1px,-1px);}
	25%	{transform:rotate(0.8deg)	translate(0px,1px);}
	37.5%	{transform:rotate(0.4deg)	translate(-1px,0);}
	50%	{transform:rotate(0deg)	translate(0,0);}
	62.5%	{transform:rotate(-0.4deg)	translate(1px,0);}
	75%	{transform:rotate(-0.8deg)	translate(0,1px);}
	87.5%	{transform:rotate(-0.4deg)	translate(-1px,-1px);}
	100%	{transform:rotate(0deg)	translate(0,0);}
}
*/

/******  ページトップへ戻るボタン end   ******/


/******  フェードイン start   ******/

/** ul liのだんだんフェードイン start**/
.fadeInDelay > ul > li{
	list-style: none;
}
.fadeInDelay > ul > li > a{
	text-decoration: none;
}


/** ul liのだんだんフェードイン end**/

/** スクロールでフェードイン start**/
/* フェードインさせたい要素に.fadeInScrollをつける。fadeInScroll.jsが必要 */
.fadeInScroll{
	opacity: 0;/*最初透明になっている状態*/
}
.isAnimate{
	opacity: 1;/*一定の位置までくると、isAnimateクラスを付与。*/
	-webkit-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
 	animation-fill-mode:both;
 	-webkit-animation-duration:1.5s;
 	-ms-animation-duration:1.5s;
 	animation-duration:1.5s;
 	-webkit-animation-name: fuwatAnime;
 	-ms-animation-name: fuwatAnime;
 	animation-name: fuwatAnime;
	visibility: visible !important;
}
@-webkit-keyframes fuwatAnime {
	 0% { opacity: 0; -webkit-transform: translateY(-20px); }
	 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
 	0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
 	100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
/** スクロールでフェードイン end**/

/** フェードインファーストビュー start**/
/* フェードインさせたい要素に.fadeInFVをつける。このcssのみで動作可 */

@keyframes RightToLeft { /* 「RightToLeft」の動作内容 */
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(-50px);/* X軸方向に50px */
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);
  }
}

.fadeInFV1{
	animation-duration: 2s;/* アニメーション時間 */
	animation-name: RightToLeft;/* アニメーション名 */
}
.fadeInFV2{
	animation-duration: 3s;/* アニメーション時間 */
	animation-name: RightToLeft;/* アニメーション名 */
}

/** フェードインファーストビュー end**/

/******  フェードイン end   ******/


/**************************************************
					ヘッダー
***************************************************/


/*header {
	width: 1200px;
	background:#fff;
	margin: 0 auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9000;
}*/

.top_header{
	width: 100%;
	background-color: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
}

.top_header_wrapper{
	width: 1200px;
	margin: 0 auto;
}

header h1{
	/*background: #eee;*/
	padding-top: 10px;
}
header a{
	text-decoration: none;
}
.header_contact {
	width: 540px;
	/*background: #afa;*/
	/*overflow: hidden;*/
	text-align: right;
	margin-top: -75px;
	margin-left: 660px;
	position: relative;
}
.header_contact p span{
	font-weight: bold;
	font-size: 110%;
}
@media all and (-ms-high-contrast: none) {	/* IEのみ */
	.header_contact {
    margin-top: -55px;
 	}
	
}
@supports (-ms-ime-align:auto) {	/* Microsoft Edgeのみ */
  .header_contact {
    margin-top: -64px;
 	}
}
.header_contact p {
	font-size: 15px;
	margin-right: -9px;
}

.header_mail {
	width: 190px;
	border-radius: 5px;
	background-color: #275D38;
	float: right;
}
.header_mail a{
	color: #FFFFFF;
	display: block;
	width: 190px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	padding: 7px 40px;
	transition: 0.3s;
}
.header_mail a:hover{
	background-color: #22B573;
	border-radius: 5px;
}

.header_tel {
	width :330px;
	/*background: #aae;*/
	font-size: 28px;
	font-weight: bold;
	overflow: hidden;
	text-align: left;
}
.header_tel a{
	color: #333333;
}
.header_tel a i{
	margin-right: 5px;
}
.header_tel a:hover{
	/*color: #AAAAAA;
	transition: 0.3s;*/
}


/*******　グローバルナビゲーション　start*******/
.btn_hamburger {
	display: none;
}

.gNavi *,.gNavi1 *{
	list-style: none;
}

.gNavi_list{
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	z-index: 1000;
}
.gNavi_list a{
	color: #333333;
	display: block;
	font-size: 16px;
}

.gNavi > ul{
	position: relative;
	width: 1200px;
	padding-left: 0;
	padding-right: 0;
}
.gNavi > ul li ul{
	padding: 0;
	margin: 0;
}
.gNavi ul::after{
	display: block;
	clear: both;
	content: '';
}
.gNavi ul li{
	width: 236px;
	position: relative;
	float: left;
	text-align: center;
	margin-left: 4px;
}

.gNavi > ul > li:hover {
	background-color: #F4F6F3;
}


.gNavi ul li a {
	display: inline-block;
	padding: 1em 2em;
	color: #333333;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: 0.3s;
}
.target {
	display: none;
	position: absolute;
	top: 100%;
	left: -4px;
}



.target li{
	border-bottom: 1px solid #dddddd;
	background-color: #F4F6F3;
}
.target li:first-child{
	border-top: 1px solid #dddddd;
}
.target li:hover{
	background-color: #E4E7E3;
	transition: 0.3s;
}

/*******　グローバルナビゲーション　end*******/


/**************************************************
					フッター
***************************************************/
footer{
	background-color: #DBF1B9;
}

.footer_wrapper{
	width: 1200px;
	margin: 0 auto;
	position: relative;  /* 各footer_columnはこれを基準にする */
	overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}
.footer_wrapper ul li a{
	color: #333333;
	text-decoration: none;
}
.footer_wrapper ul li a:hover{
	color: #AAAAAA;
	transition: 0.3s;
}
.footer_company{
	width: 30%;
	padding: 1.5em 0;
}
.footer_company p{
	margin-top: 5px;
	font-size: 12px;
}


.footer_wrapper > ul{
	font-weight: bold;
	list-style-type: none;
	width: 20%;
	padding: 3em 0 0;
}
.footer_wrapper > ul > li > ul{
	font-weight: normal;
}

.footer_column_01{
	position: absolute;
	top: 60px;
	left: 70px;
}
.footer_column_02{
	position: absolute;
	top: 60px;
	left: 310px;
}
.footer_column_03{
	position: absolute;
	top: 60px;
	left: 550px;
}

/*****  フッターの孫要素css  start *****/

.footer_wrapper > ul > li > ul{
	padding-left: 20px;
}
.footer_wrapper > ul > li > ul > li{
	list-style: none;/* list-styleを一旦noneにしてから::beforeで再作成 */
	padding-top: 3px;
}
.footer_wrapper > ul > li > ul > li::before{
	position: relative;
	top: -2px;
	left: -18px;
	display: inline-block;
	width: 5px;
	height: 5px; 
	content: '';
	border-radius: 100%;
	background-color: #333333;
}

/*****  フッターの孫要素css  end *****/



.footer_column_04{
	position: absolute;
	top: 60px;
	left: 790px;
}
.footer_column_05{
	position: absolute;
	top: 60px;
	left: 1030px;
}
.footer_column_06{
	position: absolute;
	top: 93px;
	left: 1030px;
}

.footer_column_07{
	position: absolute;
	top: 126px;
	left: 1030px;
}

.footer_column_08{
	/*position: absolute;
	top: 156px;
	left: 1030px;*/
	background-color: #275D38;
	width: 150px;
	height: 35px;
	text-align: center;
	margin-top: 5px;
}
.footer_column_08 a{
	color: #ffffff !important;
	display: block;
	background-color: #275D38;
	width: 150px;
	height: 35px;
	padding-top: 5px;
}
.footer_column_08 a:hover{
	color: #ffffff !important;
	background-color: #22B573;
	transition: 0.3s;
}

.footer_column_09{
	position: absolute;
	top: 200px;
	left: 1030px;
	background-color: #275D38;
	width: 150px;
	height: 35px;
	text-align: center;
}
.footer_column_09 a{
	color: #ffffff !important;
	display: block;
	background-color: #275D38;
	width: 150px;
	height: 35px;
	padding-top: 5px;
	text-decoration: none;
	font-weight: bold;
}
.footer_column_09 a:hover{
	color: #ffffff !important;
	background-color: #22B573;
	transition: 0.3s;
}

.footer_wrapper + small{
	display: block;
	text-align: center;
	padding: 1em 0;
	background-color: #DBF1B9;
}

/**************************************************
			トップページ  .top
***************************************************/
/* 背景には常にパーティクルがあるので、なしにしたいところはbg#fffで対応する。その時はmarginではなくpaddingでレイアウトを整える事（marginの隙間からパーティクルがのぞきます)  */

.top{
	width: 100%;
}

.top .video{
	background-image: url("../image/top/fv_bg.png");
	background-position: center;
	background-size: cover;
	padding-bottom: 60px;
	margin-bottom: 0px;
}
.top .fv_ttl{
    padding-top: 60px;
    padding-bottom: 20px;
    max-width: 960px;
    margin: auto;
}
.top .fv_ttl_sp{
	display:none;
}
.top .fv_ttl img{
	max-width: 100%;
}
.top .fv_videowrap {
	max-width: 560px;
	margin: auto;
	padding: 15px;
	background-color: #004f4e;
}
.top .fv_videowrap_sp {
	display:none;
}
.top .fv_video {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
}
.top .fv_video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



.top .video video{
	width: 1200px;
	height: 500px;
	display: block;
	margin: 0 auto;
}


.top .contact_space_1{
	background-color: #DDEDF8;
	text-align: center;
	margin-bottom: 50px;
}

.top .news_area{
	width: 1000px;
	height: 70px;
	margin: 0 auto;
	margin-bottom: 50px;
	overflow: auto;
}

.top .news_area table th{
	vertical-align: top;
}


.top .sns_wrapper{
	width: 1000px;
	/*background: #eee;*/
	margin: 40px auto;
}
.top .sns_wrapper .sns_inner{
	width: 32%;
	display: inline-block;
	/*background: #0ee;*/
}

.top .zenkokutaiou{
	text-align: center;
	/*margin-bottom: 50px;*/
	background: url("../image/main_zenkokutaiou_bg.jpg");
	background-position: center;
	background-size: cover;
}

.top .trable{
	/*height: 512px;*/
	text-align: center;
	margin-bottom: 0;
	padding-top: 0px;
	/*background-image: url("../image/main_trouble_bg.jpg");
	background-position: center;
	background-size: cover;*/
	background-color: #FFF;
}
.top .trable img{
	max-width: 1000px;
	margin: 40px 0px;
	vertical-align: bottom;
}
.top .trable_2{
	background-color: #DDEDF8;
	text-align: center;
	padding-bottom: 50px;
	margin-bottom: 0px;
}

.top .ikkankouzi{
	text-align: center;
}

.top .ansin{
	height: 383px;
	text-align: center;
	padding-top: 50px;
	background-image: url("../image/main_ikkankouzi_bg.jpg");
	background-position: center;
}
.top .flow{
	margin-bottom: 50px;
}

.top .flow figure img{
	margin: 0 auto;
	display: block;
}

.top .contact_2{
	margin-bottom: 100px;
}

.top .contact_2 .contact_bg{
	width: 900px;
	height: 358px;
	background-image: url("../image/main_contact_mes_2_bg_orange.jpg");
	margin: 0 auto;
	position: relative;
}



.top .contact_2 .contact_bg .tel{
	position: relative;
	left: 20px;
	top: 130px;
}

.top .contact_2 .contact_bg .mail{
	width: 589px;
	height: 64px;
	background-image: url("../image/main_contact_mes_2_mailhover.jpg");
	display: block;
	position: relative;
	left: 20px;
	top: 150px;
	transition: 0.1s;
}

.top .contact_2 .contact_bg .mail:hover{
	background-image: url("../image/main_contact_mes_2_mail.jpg");
	transition: 0.1s;
}






/**************************************************
			工事内容  .work
***************************************************/
.work{
	width: 100%;
}

.work ol{
	width: 1200px;
	margin: 0 auto;
}

/*
.work .main_ttl::before,.work .main_ttl::after{
	content: " ";
	display: none;
	background-image : none;/* background:noneだと404エラー *//*
}h2デフォルトの横線を消そうと頑張ったもの。デザイン変更により不要になったが、参考のため残す
*/

.work > figure{
	text-align: center;
}

.work .top_bg_gray{
	height: 406px;
	background-color: #4c4c4c;
	margin-bottom: 50px;
}
.work .top_bg_img{
	width: 1000px;
	height: 406px;
	margin: 0 auto;
	background-image: url("../image/work_main_bg.jpg");
	padding-left: 130px;
	padding-top: 70px;
}
.work .top_bg_img h2{
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: left;
	color: #FFFFFF;
	font-size: 36px;
	margin-bottom: 50px;
}
.work .top_bg_img h2::before,.work .top_bg_img h2::after{/* h2デフォルトの横線を消す */
	content: " ";
	display: none;
	background-image : none;/* background:noneだと404エラー */
}
.work .main_txt{
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
}

.work .description_box{
	width: 100%;
	background-color: #D0D0D0;
	margin-bottom: 70px;
}

.work .description_box .description_box_div_r h3{
	font-size: 24px;
	margin-bottom: 20px;
	border-left: 2px solid #007F22;
	padding-left: 30px;
}

.work .description_box .description_box_div_l h3{
	font-size: 24px;
	margin-bottom: 20px;/* これ効いてないため、.sub_ttl2でm_t取ってます */
	border-left: 2px solid #007F22;
	padding-left: 30px;
	display: inline;
}


.work .description_box_div_l,
.work .description_box_div_r{
	width: 1000px;
	margin: 0 auto;
	padding: 20px 0;
}

.work .description_box_div_l::after,
.work .description_box_div_r::after{
	content: " ";
	display: block;
	clear: both;
}

.work .description_box_div_l figure{
	width: 400px;
	float: left;
	margin-right: 60px;
}

.work .description_box_div_l .sub_ttl2{
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 30px;
}

.work .description_box_div_r figure{
	width: 400px;
	float: right;
	margin-left: 40px;
}

.work .description_box_div_r .sub_ttl2{
	font-size: 20px;
	margin-bottom: 30px;
}

.work .description_box_div_l figure img,
.work .description_box_div_r figure img{
	border: solid 10px #FFFFFF;
}

.work .box{
	height: 950px;
	margin-top: 100px;
	margin-bottom: 0px;
	position: relative;
}

.work .box h3{
	background-image: url("../image/work_ttl_bg.jpg");
	width: 100%;
	padding-top: 50px;
	padding-bottom: 200px;
	font-size: 28px;
	color: #FFFFFF;
	text-align: center;
	position: relative;
	z-index: 0;
}

.work .box .box_p{
	color: #FFFFFF;
	text-align: center;
	margin-top: -180px;
	z-index: 100;
	position: relative;
}

.work .box .col_box{
	width: 1150px;
	margin: 0 auto;
	margin-top: 30px;
	position: relative;
}

.work .box .col{
	width: 300px;
}

.work .box .col .ttl{
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	/*background: #eee;*/
}

.work .box .col1{
	position: absolute;
	top: 0;
	left: 0;
}

.work .box .col2{
	position: absolute;
	top: 0;
	left: 400px;
}

.work .box .col3{
	position: absolute;
	top: 0;
	left: 800px;
}

.work .box .col4{
	position: absolute;
	top: 300px;
	left: 200px;
}
.work .box .col5{
	position: absolute;
	top: 300px;
	left: 600px;
}

.work .last_txt{
	width: 850px;
	display: block;
	margin: 30px auto;
	text-align: left;
	font-size: 18px;
	font-weight: bold;
}

.work .last{
	margin-bottom: 100px;
}

/**************************************************
			施工実績  .construction
***************************************************/
.construction > p{
	text-align: center;
	margin-bottom: 80px;
}

.construction table{
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
}
.construction table th{
	background-color: #EEEEEE;
	border-bottom: solid 1px #BBBBBB;
}
.construction table td{
	border-bottom: solid 1px #BBBBBB;
	padding: 10px 50px;
	background-color: #FFFFFF;
}
.construction table td:nth-child(2),
.construction table th:nth-child(2){/* 真ん中のセルに線をひく */
	border-left:  solid 1px #BBBBBB;
}

.construction table:last-child{
	border-bottom: none;
}
.construction .construction_list{
	text-align: center;
}

.construction .construction_list > ul{
	overflow: hidden;
	padding-left: 90px;
}
.construction .construction_list > ul > li{
	background: #eee;
	width: 300px;
	height: 400px;
	display: block;
	float: left;
	margin-right: 50px;
	margin-bottom: 50px;
}
.construction .construction_list > ul > li img{
	width: 100%;
}

.construction .construction_list > ul > li{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out; 
	transition: .3s ease-in-out;
}
.construction .construction_list > ul > li:hover{
	-webkit-transform: scale(0.8); 
	transform: scale(0.8);
}

.construction .construction_list > ul > li > a{
	width: 300px;
	height: 400px;
	text-decoration: none;
	display: block;
}
.construction .construction_list > ul > li > a:hover{
	opacity: 0.7;
	transition: 0.5s;
}


.construction .construction_list > ul > li div,
.construction .construction_list > ul > li h3{
	text-align: center;
	margin-top: 10px;
}

/**************************************************
			実績一覧  .job
***************************************************/

.job h3{
	text-align: center;
	margin-top: 100px;
	margin-bottom: 30px;
}

.job table{
	width: 600px;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
	margin-bottom: 150px;
}

.job table th{
	width: 250px;
	background-color: #EEEEEE;
	border-right: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
}

.job table td{
	width: 350px;
	padding-left: 50px;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
} 

.job p{
	width: 850px;
	display: block;
	margin: 0 auto;
	margin-bottom: 150px;
}

.job ul{
	width: 100%;
}

.job ul li{
	list-style: none;
	display: inline-block;
	margin-right: 34px;
	margin-bottom: 34px;
	transition: 0.5s;
}

.job ul li:nth-child(4),
.job ul li:nth-child(8),
.job ul li:nth-child(12),
.job ul li:nth-child(16),
.job ul li:nth-child(24){
	margin-right: 0;
}

.job ul li:hover{
	-webkit-transform: scale(0.8); 
	transform: scale(0.8);
	transition: 0.5s;
	opacity: 0.5;
}

/**************************************************
			企業情報  .conpany
***************************************************/
.company h2{
	margin: 0;
	padding: 0;
	margin-bottom: 50px;
}

.company h2::before,.company h2::after{/* h2デフォルトの横線を消す */
	content: " ";
	display: none;
	background-image : none;/* background:noneだと404エラー */
}

.company .info{
	width: 600px;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
	margin-bottom: 150px;
}
.company .info th{
	width: 200px;
	background-color: #EEEEEE;
	border-right: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
}

.company .info td{
	width: 400px;
	padding-left: 50px;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
} 

.company h3{
	text-align: center;
	margin-bottom: 70px;
}

.company .subimg{
	text-align: center;
	margin-bottom: 50px;
}

.address{
	width: 770px;
	height: 700px;
	margin: 0 auto;
	margin-bottom: 30px;
}

.address1{
	height: 380px;
}

.address .googlemap1 img,
.address .googlemap1 p,
.address .googlemap2 img{
	position: relative;
	top: 320px;
}


.address h4{
	margin-bottom: 10px;
}

.address table{
	margin-left: 0;
}

.address table th{
	vertical-align: top;
	font-weight: normal;
}

.address table th,
.address table td{
	padding: 0;
}

.googlemap1{/* 改行が無い住所用 */
	position: relative;
    width: 400px;    /* 左右に余白が必要なら値を変更してもOK */
    padding-bottom: 56.25%;    /* padding-topでもOK */
    overflow: hidden;
	top: -180px;
	left: 380px;
}

.googlemap2{/* 改行がある住所用 */
	position: relative;
    width: 400px;    /* 左右に余白が必要なら値を変更してもOK */
    padding-bottom: 56.25%;    /* padding-topでもOK */
    overflow: hidden;
	top: -204px;
	left: 380px;
}

.googlemap1 iframe,
.googlemap2 iframe{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;    /* 必要であれば!importantを付けてください */
    height: 300px;    /* 必要であれば!importantを付けてください */
}

.company aside{
	width: 790px;
	margin: 0 auto;
	margin-top: 150px;
	margin-bottom: 150px;
}

.company aside div{
	width: 377px;
	height: 150px;
	background: #EEEEEE;
	margin-bottom: 30px;
	overflow: hidden;
}

.company aside figure{
	width: 175px;
	height: 150px;
	float: left;
}

.company aside div div{
	width: 202px;
	padding-top: 60px;
	padding-left: 30px;
}

.company aside a{
	text-decoration: none;
	font-weight: bold;
	color: #333333;
	display: block;
	width: 100%;
	height: 100%;
}

.company aside div:hover{
	background-color: #CCCCCC;
	transition: 0.3s;
}

.company aside .box1{
	float: left;
	margin-right: 36px;
}

.company aside .box1::after{
	content: "";
	display: block;
	clear: both;
}

.company .licence{
	width: 600px;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
	margin-bottom: 100px;
}
.company .licence th{
	width: 200px;
	background-color: #EEEEEE;
	border-bottom: solid 1px #BBBBBB;
}

.company .licence td{
	width: 400px;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
	text-align: center;
}

.company .construction_permit_number{
	width: 800px;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
	margin-bottom: 150px;
}
.company .construction_permit_number th{
	width: 400px;
	background-color: #EEEEEE;
	border-right: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
}

.company .construction_permit_number td{
	width: 400px;
	padding-left: 50px;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
} 


.pamphlet_img{
	text-align: center;
	margin-bottom: 30px;
}

.pamphlet_dl{
	width: 400px;
	margin: 0 auto;
	margin-bottom: 50px;
}

.pamphlet_dl a{
	display: block;
	width: 100%;
	background-color: #33865F;
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: bold;
	padding: 15px;
	transition: 0.3s;
}

.pamphlet_dl a:hover{
	background-color: #22B573;
	transition: 0.3s;
}

/**************************************************
			経営理念  .message
***************************************************/
.message .bg{
	width: 1200px;
	height: 300px;
	background-image: url("../image/message_top_bg_pc.jpg");
	position: relative;
	margin-bottom: 50px;
}

.message .bg .top_p{
	font-size: 36px;
	text-align: center;
	color: #006837;
	text-shadow: 0px 0px 20px rgba(255,255,255,1);
	position: relative;
	top: 32%;
}
.vision{
	width: 850px;
	margin: 0 auto;
	margin-bottom: 50px;
	overflow: hidden;/* floatしてる要素にmargin聞かせるためにいる */
}

.vision::after{
	content: "";
	display: block;
	clear: both;
}

.vision figure{
	width: 200px;
	margin-right: 50px;
	float: left;
}

.vision ul{
	list-style: none;
	margin-top: 20px;
}
.vision ul li{
	margin-bottom: 10px;
}

.message > figure{
	text-align: center;
	margin-bottom: 50px;
}

.message h2{
	width: 400px;  /* h2 トップメッセージが横幅大きかったので、その対処 */
}

.message > p{
	width: 850px;
	display: block;
	margin: 0 auto;
	margin-bottom: 30px;
}

.message .ceo{
	text-align: right;
}


/**************************************************
			部署紹介  .department
***************************************************/
.department article{
	margin-top: 50px;
}

.department figure{
	text-align: center;
	margin-bottom: 50px;
}
.department .box1,
.department .box2{
	width: 850px;
	margin: 0 auto;
}

.department .box1 h3,
.department .box2 h3{
	margin-bottom: 30px;
}

.department .box1 .title,
.department .box2 .title{
	font-weight: bold;
	margin-bottom: 30px;
}

.department .box1 figure{
	float: left;
	margin-right: 50px;
}

.department .box2 figure{
	float: right;
	margin-left: 50px;
}

.department .box2{
	border-bottom: solid 1px #CCCCCC;
}

.department .b_b_n{
	border-bottom: none;  /* 最後の下線を消す */
}

.department .box1::after,  /* figureのclearfix */
.department .box2::after{
	content: "";
	display: block;
	clear: both;
}


.department .box1 figure::after{
	content: ' ';
	width: 430px;
	height: 310px;
	background-image: url("../image/img_guard.gif");
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
}


.department .box2 figure::after{
	content: ' ';
	width: 430px;
	height: 310px;
	background-image: url("../image/img_guard.gif");
	display: block;
	position: absolute;
	top: 350px;
	left: 750px;
	z-index: 1000;
}

/*****  ループスライダー  start*****/

.loopSliderWrap{
	top: 0;
	left: 0;
	height: 180px;
	overflow: hidden;
	position: absolute;
}

.loopSlider{
	margin: 0 auto;
	width: 100%;
	height: 180px;
	text-align: left;
	position: relative;
	overflow: hidden;
}
.loopSlider ul{
	height: 180px;
	float: left;
	overflow: hidden;
	padding: 0;/* paddingが0でないと動かない */
}
.loopSlider ul li{
	width: 120px;
	height: 180px;
	float: left;
	display: inline;
	overflow: hidden;
}

/*****  ループスライダー  end*****/

/**************************************************
			協力会社募集・採用情報  .join
***************************************************/
.join figure{
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

/**************************************************
			協力会社募集  .partner
***************************************************/


.partner .main_img{
	margin-bottom: 50px;
	text-align: center;
}

.partner > p{
	width: 850px;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px;
	margin-bottom: 100px;
}

.partner .area{
	width: 1200px;
	background-image: url("../image/partner_bg.jpg");
	background-position: center;
	background-size: cover;
	padding: 30px;
	margin-bottom: 50px;
}

.partner .area figure{
	text-align: center;
	margin-bottom: 50px;
}

.partner .spot{
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

.partner .contact_2{
	margin-bottom: 100px;
}

.partner .contact_2 .contact_bg{
	width: 900px;
	height: 358px;
	background-image: url("../image/recruit_contact_mes.jpg");
	margin: 0 auto;
	position: relative;
}

.partner .contact_2 .contact_bg .tel{
	position: relative;
	left: 20px;
	top: 160px;
}

.partner .contact_2 .contact_bg .mail{
	width: 589px;
	height: 64px;
	background-image: url("../image/main_contact_mes_2_mail.jpg");
	display: block;
	position: relative;
	left: 20px;
	top: 150px;
	transition: 0.1s;
}

.partner .contact_2 .contact_bg .mail:hover{
	background-image: url("../image/main_contact_mes_2_mailhover.jpg");
	transition: 0.1s;
}


/**************************************************
			採用情報  .recruit
***************************************************/


.recruit figure{
	margin-bottom: 50px;
	text-align: center;
}

.recruit .main_p{
	width: 850px;
	margin-left: auto;/* m_b_50を使っているpがあるため、0 autoするとレイアウトが崩れる */
	margin-right: auto;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 50px;
}

.recruit .bosyuuyoukou{
	width: 400px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.recruit .bosyuuyoukou a{
	display: block;
	width: 100%;
	font-size: 20px;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	padding: 10px;
	background-color: #00514F;
	transition: 0.4s;
}

.recruit .bosyuuyoukou a:hover{
	background-color: #ccc;
}
.recruit .recruitform{
	width: 400px;
	margin: 0 auto;
	margin-bottom: 40px;
}

.recruit .recruitform a{
	display: block;
	width: 100%;
	font-size: 20px;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	padding: 10px;
	background-color: #00514F;
	transition: 0.4s;
}

.recruit .recruitform a:hover{
	background-color: #ccc;
}

/*********** QAエリアstart ***********/

.recruit .qa_box_area{
	width: 820px;
	/*background: #eee;*/
	margin: 0 auto;
}

.recruit .strong{
	color: #FFFF00;
	font-weight: bold;
}

.recruit .qa_box{
	float: left;
	
}

.recruit .qa_box_area .col1{
	width: 380px;
	/*background: #aaa;*/
	position: relative;
	margin-right: 30px;
}
.recruit .qa_box_area .col1 figure{
	/*background: #075;*/
	width: 65px;
}
.recruit .qa_box_area .col1 p{
	width: 273px;
	height: 84px;
	display: block;
	color: #FFFFFF;
	background-color: #1D386C;
	border-radius: 10px;
	padding: 10px;
	position: absolute;
	top: 20px;
	left: 80px;
}

.recruit .qa_box_area .col1 p::after{
  content: "";
  position: absolute;
  top: 40%;
  left: -25px;
  margin-top: -15px;
  border: 12px solid transparent;
  border-right: 15px solid #1D386C;
}

.recruit .qa_box_area .col2{
	width: 380px;
	height: 260px;
	/*background: #aaa;*/
	position: relative;
	top: -50px;
}
.recruit .qa_box_area .col2 figure{
	/*background: #075;*/
	width: 65px;
}
.recruit .qa_box_area .col2 p{
	width: 273px;
	height: 244px;
	display: block;
	color: #FFFFFF;
	background-color: #00514F;
	border-radius: 10px;
	padding: 10px;
	position: absolute;
	top: 10px;
	left: 80px;
}

.recruit .qa_box_area .col2 p::after{
  content: "";
  position: absolute;
  top: 40%;
  left: -25px;
  margin-top: -15px;
  border: 12px solid transparent;
  border-right: 15px solid #00514F;
}


.contact_2 .recruit{
	width: 589px;
	margin:auto;
	height: 64px;
	background-image: url("../image/main_contact_mes_2_recruit.jpg");
	display: block;
	position: relative;
	transition: 0.1s;
}

.contact_2 .recruit:hover{
	background-image: url("../image/main_contact_mes_2_recruithover.jpg");
	transition: 0.1s;
}

/*********** QAエリアend ***********/

.recruit h3{
	margin-bottom: 30px;
	text-align: center;
}

.recruit h4{
	width: 850px;
	margin: 0 auto;
	margin-bottom: 10px;
}

/* 社員紹介のテーブル */
.recruit .employee{
	width: 880px;
	/*background: #e8a;*/
}
.recruit .employee td{
	width: 440px;
	vertical-align: top;
	
}
.recruit .employee img{
	width: 400px;
}
.recruit .employee h4{
	width: 400px;
	text-align: center;
}
.recruit .employee p{
	width: 400px;
	padding-left: 20px;
	padding-right: 20px;
}
/* 社員紹介のテーブル end*/

.recruit .contact_2{
	margin-bottom: 100px;
}

.recruit .contact_2 .contact_bg{
	width: 900px;
	height: 358px;
	background-image: url("../image/recruit_contact_mes.jpg");
	margin: 0 auto;
	position: relative;
}

.recruit .contact_2 .contact_bg .tel{
	position: relative;
	left: 20px;
	top: 130px;
}

.recruit .contact_2 .contact_bg .mail{
	width: 589px;
	height: 64px;
	background-image: url("../image/main_contact_mes_2_mail.jpg");
	display: block;
	position: relative;
	left: 20px;
	top: 150px;
	transition: 0.1s;
}

.recruit .contact_2 .contact_bg .mail:hover{
	background-image: url("../image/main_contact_mes_2_mailhover.jpg");
	transition: 0.1s;
}

.recruit .contact_2 .contact_bg_join{
	width: 900px;
	height: 358px;
	background-image: url("../image/join/join_contact_bnr.jpg");
	margin: 0 auto;
	position: relative;
}

.recruit .contact_2 .contact_bg_join .mail{
	width: 589px;
	height: 64px;
	background-image: url("../image/join/main_contact_mes_2_recruit.jpg");
	display: block;
	position: relative;
	left: 20px;
	top: 150px;
	transition: 0.1s;
}

.recruit .contact_2 .contact_bg_join .mail:hover{
	background-image: url("../image/join/main_contact_mes_2_recruithover.jpg");
	transition: 0.1s;
}



/* 求人要項のテーブル */
.recruit .youkou{
	width: 850px;
	border: solid 1px #AAAAAA;
}
.recruit .youkou th,
.recruit .youkou td{
	border: solid 1px #AAAAAA;
	padding: 10px 30px;
}

.recruit .youkou th{
	width: 200px;
	background-color: #EEEEEE;
}
.recruit .youkou td{
	width: 650px;
}
/* 求人要項のテーブルend */

.recruit_tel a{
	display: block;
	color: #333333;
	font-weight: bold;
	font-size: 28px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 50px;
}

.recruit .sns_wrapper{
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 50px;
}
.recruit .sns_wrapper .sns_inner{
	width: 32%;
	display: inline-block;
}

.recruit .sns_message{
	text-align: center;
	font-size: 1.4em;
	font-weight: bold;
}

/**************************************************
			お問合わせ  .contact
***************************************************/
.contact > p{
	width: 580px;
	display: block;
	margin: 0 auto;
	margin-bottom: 80px;
}

.contact_flow{
	width: 500px;
	height: 62px;
	background-image: url("../image/contact_flow_input.jpg");
	margin: 0 auto;
	margin-bottom: 30px;
}

.label{
	display: block;
	/*background: #eee;*/
	margin-bottom: 50px;
}

.label > .label_area{
	width: 280px;
	text-align: right;
	/*background: #ed4;*/
	float: left;
	margin-left: 150px;
	margin-right: 50px;
}
.label > .label_list{
	display: inline-block;
	max-width: 450px;
	width: 100%;
}
.label > .label_list label{
	display: block;
}


.label input[type="text"],
.label input[type="email"],
.label input[type="tel"],
.label select,
.label textarea{
	width: 350px;
	height: 30px;
	border-radius: 5px;
	border: 1px solid #999999;
	padding: 5px;
	font-size: 16px;
}
.label select.year,
.label select.day{
	width: 100px;
	height: 30px;
	border-radius: 5px;
	border: 1px solid #999999;
	padding: 5px;
}
.label input[type="radio"]{
	margin-left: 10px;
	margin-right: 7px;
}
.label input[type="checkbox"]{
	margin-left: 10px;
	margin-right: 7px;
}


.label textarea{
	height: auto;
}

input[type="submit"]{
	width: 350px;
	height: 50px;
	font-size: 18px;
	font-weight: normal;
	color: #FFFFFF;
	background-color: #275D38;
	border: solid 1px #275D38;
	position: relative;
	left: 40%;
	margin-bottom: 50px;
}

input[type="submit"]:hover{
	background-color: #22B573;
	border: solid 1px #22B573;
	transition: 0.3s;
}

.font_red_kaikyamei{
	color: #FF0000;
}

/**************************************************
			サンクスページ  .thanks
***************************************************/
.thanks_flow{
	width: 500px;
	height: 62px;
	background-image: url("../image/contact_flow_finish.jpg");
	margin: 0 auto;
	margin-bottom: 80px;
}

.thanks p{
	width: 850px;
	display: block;
	margin: 0 auto;
	margin-bottom: 30px;
}


/**************************************************
			404ページ  .not_found
***************************************************/

.not_found{
	text-align: center;
}

.not_found h2{
	margin-top: 100px;
}

/**************************************************
			css調整用クラス
***************************************************/


.font_red{
	color: #FF0000;
}

.m_b_50{
	margin-bottom: 50px;
}
.m_b_30{
	margin-bottom: 30px;
}

.txt_c{
	text-align: center;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/**************************************************
			header SNS
***************************************************/
.hdr-sms{
	position: absolute;
    right: 195px;
    bottom: 0;
}
.hdr-sms a{
	max-width: 39px;
    display: inline-block;
}
.hdr-sms a img{
	width: 100%;
}

/**************************************************
			recruit LINE
***************************************************/
.line_entry{
	max-width: 640px;
	margin: 0px auto 40px;
}
.line_entry img{
	width: 100%;
}

/**************************************************
			filter
***************************************************/
.filter{
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	margin: auto;
	max-width: 840px;
	justify-content:space-between;
    margin-bottom: 40px;
}
.filter a{
	padding: 3px 10px;
	margin: 1%;
	border: 1px solid #ccc;
	display: inline-block;
	text-decoration: none;
	color: #999;
	transition: all 0.3s ease-out;
}
.filter a.active{
	background: #ccc;
	color: #000;
}
.is-animated {
	animation: .6s zoom-in;
  }
  
  @keyframes zoom-in {
	0% {
	 transform: scale(.1);
	} 
	100% {
	  transform: none;
	}
  }

/**************************************************
			interview-list
***************************************************/

  .interview-list{
	  margin: 40px auto;
	  display: flex;
	  flex-wrap: wrap;
	  border-bottom: 1px solid #999;
  }
  .interview-list:nth-child(even){
	flex-direction:row-reverse;
}
  .interview-p {
    margin: 40px 0 0;
	width: 49%;
	display: inline-block;
  }
  .interview-p  img{
	  max-width: 100%;
	  margin-bottom: 40px;
  }
  .interview-txt {
	  width: 49%;
	  display: inline-block;
		padding: 20px 40px 30px;

		margin: 40px auto;
  }


/**************************************************
			entry-form
***************************************************/
.entryform{
	border: 1px solid #ccc;
	padding: 40px 20px;
	margin-bottom: 40px;
}
.entryform h2{
	width: 340px;
}
.entryform p{
	text-align: center;
	margin-bottom: 20px;
}


/**************************************************
			recruit-form
***************************************************/
.formcheckPrivacy{
	margin: 60px 0px;
	text-align: center;
	width: 100%;
}
.formcheckPrivacy label{
	width: 90%;
	padding: 20px;
	margin: auto;
	background-color: #eee;
	cursor: pointer;
	display: block;
}

/**************************************************
	FAQ
***************************************************/
.work .box_faq {
	height:auto;
	margin-bottom: 40px;
	margin-top: 0px;

}
.work .box_faq h3 {
    padding-bottom: 4%;
    padding-top: 9%;
    background-image: url("../image/work_faq_ttl_bg.jpg");
    background-size: cover;
    background-position: top center;
}
.work .box_faq .col_box{
	max-width: 960px;
}
dl.qa {
	overflow: hidden;
	_zoom: 1;
   }
	
   dl.qa dd,
   dl.qa dt {
	text-indent: -2.6em; 
	padding: 0 20px 0px 50px;
   }
	
   dl.qa dt {
	margin: 20px 20px 0 0;
   }
	
   dl.qa dd:first-letter,
   dl.qa dt:first-letter {
	font-size: 1.6em;
	font-weight: bold;
	margin-right: 10px;
	padding: 5px;
   }
	
   dl.qa dd {
	margin: 10px 0 -1px 0;
	padding-bottom: 20px;
	border-bottom: solid 1px #aaa;
   }
	
   dl.qa dt:first-letter {
	color: #3498db;
   }
	
   dl.qa dd:first-letter {
	color: #ff6767;
   }


/**************************************************
	プライバシーポリシー
***************************************************/
   .terms{
	max-width: 750px;
    background: #f4f4f4;
    padding: 20px 0;
    text-align: center;
	margin: 0px auto 40px;
   }
   .terms p{
	   margin-bottom: 0px;
   }
   .terms_box{
	max-width: 750px;
    padding: 20px 0;
	margin: 0px auto 40px;
	font-size: 12px;
   }
   .terms_box pre{
	white-space: pre-wrap ;
   }
   .terms_box pre b{
	font-size: 110%;
	}




.careerUp {
	margin-bottom: 50px;
} 
.careerUp h3 {
	display: flex;
	justify-content: center;
	align-items: center;
}
.careerUp h3::before {
	content: "";
	width: 70px;
	height: 70px;
	display: inline-block;
	background-image: url(../image/trophy.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 10px;
}
.careerUp h3 p {
	display: inline-block;
	padding: 0 10px;
	font-size: 20px;
	background-color: rgba(254,248,171,.8);
}

.bottom-arrow::after {
	content: "\f078";
	display: block;
	width: 100%;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	text-align: center;
	margin: 5px 0;
	font-size: 25px;
}
.career__inner {
	display: flex;
	align-items: center;
}
.careerUp__container .step {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: baseline;
	width: 130px;
	font-size: 15px;
	font-weight: 600;
	padding: 20px 0;
	background-color: rgb(20, 81, 78);
	color: #fff;
	z-index: 2;
}
.careerUp__container .step span {
	font-size: 24px;
	margin-left: 7px;
}
.careerText {
	flex: 1;
	font-size: 20px;
	font-weight: 600;
	padding: 5px 20px;
}
.careerUp__container:nth-child(odd) .career__inner  {
	background-color: rgba(217,226,228,1);
}
.careerUp__container:nth-child(even) .career__inner  {
	background-color: rgba(217,226,228,.4);
}
.careerText .red {
	color: red;
}


/**************************************************
	about
***************************************************/
.top .about_marks_wrap{
	background-color: #E5E5E5;
	padding: 4em 0;
}
.top .about_marks{
	padding: 3em 0;
	margin: 0em 0em;
}
.top .about_marks_flex{
    display: flex;
    max-width: 1100px;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.top .about_text {
	width: 52%;
	margin: 2%;
	position: relative;
	z-index: 1;
}
.top .about_text .about_img {
	display:none;
}
.top .about_text p{
	position: relative;
	z-index: 1;
}
.top .about_text:before {
	position: absolute;
    content: "";
    background-color: #FFF;
    top: -10%;
    left: -40px;
    width: 160%;
    height: 430px;
    z-index: 0;
    box-shadow: 10px 10px 10px rgb(0 0 0 / 10%);
}
.top .project_text:before {
    height: 340px;
}
.top .work_text:before {
    height: 400px;
}
.top .about_img {
	width: 40%;
	margin: 1%;
	position: relative;
	z-index: 1;
}

.top .about_img img{
	width: 100%;
	position: relative;
	z-index: 1;
}
.top .about_ttl{
    width: 70%;
    font-size: 13px;
	position: relative;
	z-index: 1;
	color:#275D38;
}
.top .about_ttl span{
	display: block;
	font-size: 26px;
	color:#333333;
}

.about_marks_flex_leftimg .about_img{
	order: 1;
}
.about_marks_flex_leftimg .about_text{
	order: 2;
}
.top .about_marks_flex_leftimg .about_text:before {
    right: -40px;
	left: auto;
}

/* CSS */
.button-more {
    border: 1px solid #275D38;
    border-radius: 0px;
    box-sizing: border-box;
    color: #275D38;
	font-size: 16px;
    min-height: 50px;
    max-width: 300px;
    margin: 20px auto;
    display: block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
	position: relative;
}

.button-more:hover {
  color: #fff;
  background-color: #275D38;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-more:active {
  box-shadow: none;
  transform: translateY(0);
}


/**************************************************
	top_nayami
***************************************************/
.top_nayami{
    max-width: 1000px;
    margin: 2em auto;
}
.top_nayami_ttl {
	background: url("../image/top/nayami_illust01.png") no-repeat 1%;
	background-size: auto;
    position: relative;
    font-size: 45px;
    padding: 4% 0%;
    padding-left: 20%;
    text-align: center;
}
.top_nayami_ttl span{
	color:#2F6E98;
	font-size: 120%;
}
.top_nayami_list{
	background-color: #FFF;
	border-radius: 10px;
	padding: 3em;
	margin: auto;
}
.top_nayami_list li{
	font-size: 20px;
    background: url("../image/top/nayami_icon01.png") no-repeat center left;
    background-size: 29px;
    padding-left: 43px;
    list-style: none;
    line-height: 2;

}
.top_nayami_list li span{
	background:linear-gradient(transparent 60%, #ff6 60%);
	font-weight: bold;
	font-size: 120%;
}

/**************************************************
	top_safe
***************************************************/
.top_safe_wrap{
	padding: 2em 0;
	background: linear-gradient(180deg, rgba(40,100,176,1) 0%, rgba(17,130,137,1) 100%);
}
.top_safe{
    max-width: 1000px;
    margin: 2em auto;
	text-align: center;
}
.top_safe_ttl{
	font-size:36px;
	color: #FFF;
	line-height: 1.4;
	margin-bottom: 1em;
}
.top_safe_ttl span{
	font-size:16px;
	display: block;
}
.top_safe_txt{
	font-size:18px;
	color: #FFF;
}
.top_safe_list{
	margin: 2em auto;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
}
.top_safe_listItem{
	width: 29.5%;
	margin: 1.5%;
	background-color: #FFF;
	padding: 2em;
	border-radius: 10px;
	text-align: left;
	color: #000;
}
.top_safe_listItem span{
	color:#2F6E98;
	font-size: 120%;
	font-weight: bold;

}
.top_safe_listItem IMG{
	display: block;
	text-align: center;
	margin: 1em auto;

}


/**************************************************
	top_reason
***************************************************/
.top_reason_wrap{
	background-color: #ddecf8;
}
.top_reason{
	max-width: 1000px;
    margin: 0em auto;
	padding: 3em 0;
	text-align: center;
}
.top_reason_flex{
	margin: 2em auto;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.top_reason_ttl{
	font-size: 36px;
}
.top_reason_img{
	width: 30%;
}
.top_reason_img img{
	max-width: 100%;
}
.top_reason_txt{
	text-align: left;
	width: 69%;
	margin-left: 1%;
}
.top_reason_txt_ttl{
	font-size: 26px;
    background: url("../image/top/reason_icon.png") no-repeat center left;
    background-size: 29px;
    padding-left: 43px;
    list-style: none;
    line-height: 2;
	margin: 1em auto 0em;
}
.top_reason_txt_ttl span{
	color: #f25b25;
}



/**************************************************
	top_flow
***************************************************/
.top_flow_wrap{
	background-color: #fff;
}
.top_flow{
	max-width: 800px;
    margin: 3em auto;
	text-align: center;
	background-color: #ddedf8;
	padding-bottom: 1.5em;
}
.top_flowbox{
	margin: 2em 2em 3em;
	background-color: #FFF;
	padding: 1em 1em 0.1em;
	position: relative;
}
.top_flowbox::after{
	content: "";
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: -35px;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #a6b2ba;
}
.top_flowbox:last-child{
	margin-bottom: 0.5em;
}
.top_flowbox:last-child::after{
	content: "";
	display: none;
}
.top_flowbox_ttl{
	font-size: 24px;
	color:#00504e;
	width: 100%;
	border-bottom: 1px solid #00504e;
	text-align: left;
}
.top_flowbox_ttl span{
	color:#FFF;
	display: inline-block;
	padding: 0.2em 0.5em;
	background-color:#00504e;
	margin-right: 1em;
}
.top_flowbox_flex{
	margin: 2em auto;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.top_flowbox_img{
	width: 30%;
}
.top_flowbox_img img{
	max-width: 100%;
}
.top_flowbox_txt{
	width: 67%;
	margin-left: 3%;
	text-align: left;
}



/**************************************************
	onlinemeeting
***************************************************/
.onlinemeeting {
    position: relative;
    z-index: 0;
    padding: 3em 2em;
	background: url("../image/top/meeting_bg.jpeg") no-repeat center center;
	background-size: cover;
}
.onlinemeeting::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 0;
}
.onlinemeeting__body {
    padding: 50px 27px 40px;
    background-color: hsla(0,0%,100%,.9);
    font-size: .81249875rem;
}
.onlinemeeting__body {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}
.onlinemeeting__title {
    font-size: 18px;
}
.onlinemeeting__title {
    font-weight: 700;
    letter-spacing: .135em;
    line-height: 1.7;
}
.onlinemeeting__icon {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%,-25%);
    transform: translate(-50%,-25%);
}
.onlinemeeting__body p:last-child {
    margin-bottom: 0;
}

/**************************************************
	ftrcontact 
***************************************************/
.ftrcontact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3em 2em;
	margin-bottom: 5em;
	background: url("../image/top/contact_bg.jpeg") no-repeat center 40%;
	background-size: cover;
    color: #fff;
    text-align: center;
	position: relative;
}
.ftrcontact.ftrcontact-bottom {
	margin-bottom: 0em;
}
.ftrcontact::before {
	content: "";
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 0;
}
.ftrcontact__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8em;
	line-height: 1.5;
    font-size: 38px;
	color: #fff;
	position: relative;
	z-index: 2;
}
.ftrcontact__lead {
    margin-bottom: 4em;
	color: #fff;
		position: relative;
	z-index: 2;
}
.ftrcontact__btnwrap {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
	position: relative;
	z-index: 2;
}
.ftrcontact .tel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 20px;
	background-color: #FFF;
	color:#000;
	text-decoration: none;
}
.ftrcontact .form {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
	background-color: #FFF;
	color:#000;
	text-decoration: none;
}
.ftrcontact .form, .ftrcontact .tel {
    width: 100%;
    max-width: 480px;
    margin: 0 20px;
    height: 110px;
	transition: all 0.3s;
}
.ftrcontact .form:hover,
.ftrcontact .tel:hover {
	opacity: 0.7;
}


/**************************************************
事例 
***************************************************/
.areabox{
	padding: 0.5em;
	margin: 0em auto 2em;
	text-align: center;
	background-color: #e3ebe6;
}
.areabox_list{
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
	max-width: 740px;
	margin: auto;
}
.areabox_list a{
	border: 1px solid #275D38;
	background-color: #FFF;
    border-radius: 0px;
    box-sizing: border-box;
    color: #275D38;
    font-size: 16px;
    min-height: 50px;
    max-width: 300px;
	min-width: 140px;
    margin: 10px auto;
    display: block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}
.areabox_list a:hover,
.areabox_list a.active{
	color: #fff;
	background-color: #275D38;
	box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
	transform: translateY(-2px);
}

.moldbox{
	padding: 1em;
	margin: 0em auto 2em;
	text-align: center;
}
.moldbox_flex{
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
	max-width: 700px;
	margin: auto;
}
.moldbox_item {
	width: 44%;
	margin: 3%;
}
.moldbox_item img{
	width: 100%;
}
.moldbox_item a{
    display: block;
	padding: 0;
	text-decoration: none;
	transition: 0.5s;
}
.moldbox_item a:hover{
	opacity: 0.7;
	transform: scale(0.8);
}
.moldbox_ttl{
	background: #eee;
	padding: 1em 0 1em;
}


.relatedbox{
	text-align: center;
    margin: 3em auto 0em;
    padding: 1.5em 1em 1em;
    background-color: #eee;
}
.relatedbox_ttl{
	font-size: 20px;
	font-weight: bold;;
}
.relatedbox_flex{
	max-width: 740px;
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;

	margin: auto;
}
.relatedbox_flex a{
	width: 44%;
	margin: 3%;
	border: 1px solid #275D38;
	background-color: #FFF;
    border-radius: 0px;
    box-sizing: border-box;
    color: #275D38;
    font-size: 16px;
    min-height: 50px;
    max-width: 300px;
    margin: 20px auto;
    display: block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}
.relatedbox_flex a:hover{
	opacity: 0.8;
	color: #fff;
	background-color: #275D38;
	box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
	transform: translateY(-2px);
}
.relatedbox_flex a::after{
	content: "";
	border-bottom:1px solid #275D38;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left:-20px;
	width: 20%;
	height: 1px;
}
.relatedbox_flex a img{
	width: 100%;
}


/**************************************************
result_flex 
***************************************************/
.result_flex{
	max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
    margin: 4em auto;
}
.result_flex_slide{
	width: 65%;
}
.result_flex_txt{
	width: 30%;
}
.result_flex_txt table{
	width: 100% !important;
	font-size: 14px;
}
.result_flex_txt h3{
	margin-top: 0;
}
.result_txt p{
	margin-bottom: 20px;
}

/**************************************************
swiper 
***************************************************/
.swiper {
    width: 100%;
    height: 100%;
	max-width: 700px;
	z-index: 10;
}
.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    width: 100%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}
.swiper-slide {
    background-size: cover;
    background-position: center;
}
.mySwiper2 {
    height: 80%;
    width: 100%;
	margin-bottom: 10px;
}
.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}
.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
	cursor: pointer;

	position: relative;
    overflow: hidden;
    padding-top: 15%;
}
.mySwiper2 .swiper-slide {
	position: relative;
    overflow: hidden;
    padding-top: 65%;
}

.mySwiper2 .swiper-slide img,
.mySwiper .swiper-slide img{	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}
.swiper-button-next,
.swiper-button-prev{
    color: #FFF !important;
}