@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: 20px;
	position: relative;
	display: block;
	width: 66%;
	margin: 0 auto;
	margin-bottom: 30px;
	text-align: center;
}
h2::before,h2::after{
	content: " ";
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 70px;
	height: 1px;
	background-color: #77AA77;
}
h2::before{
	left: -50px;
}
h2::after{
	right: -50px;
}

h3,h4{
	font-size: 16px;
}

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

main{
	width: 100%;
	margin: 0 auto;
	padding: 7px;
	display: block;	/* IE等でmainがinline要素で認識される対策 */
}

@media all and (-ms-high-contrast: none) {	/* IEのみ */
	main{
		display: block;
	}
}


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

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

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

.pc_only{
	display: none;
}
.pctb_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: 10px;
	padding-right: 10px;
}

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

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


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


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

/** スクロールでフェードイン start**/
/* フェードインさせたい要素に.fadeInScrollをつける。fadeInScroll.jsが必要 */
.fadeInScroll{
	opacity: 0;/*elemは最初透明になっている状態*/
}
.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: 100%;
	/*background:#fff;*/
	margin: 0 auto;
	padding: 7px;
}
header h1{
	/*background: #eee;*/
}
header a{
	text-decoration: none;
}

header h1 img{
	width: 40%;
}

.header_contact {
	width: 100%;
	/*background: #afa;*/
	overflow: hidden;
	padding: 3%;
}
.header_contact p span{
	font-weight: bold;
	font-size: 110%;
}

.header_contact p {
	font-size: 12px;
}

.header_mail {
	width: 30%;
	border-radius: 5px;
	background-color: #275D38;
	float: right;
}
.header_mail a{
	color: #FFFFFF;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	padding: 7px 0;
	transition: 0.3s;
}
.header_mail a:hover{
	background-color: #61A382;
	border-radius: 5px;
}

.header_tel {
	width :70%;
	/*background: #aae;*/
	font-size: 24px;
	font-weight: bold;
	overflow: hidden;
}
.header_tel a{
	color: #FF9966;
}
.header_tel a i{
	margin-right: 5px;
}
.header_tel a:hover{
	color: #FFCCCC;
	transition: 0.3s;
}


.top_header{
	width: 100%;
	background-color: #FFFFFF;
}

.top_header_wrapper{
	width: 100%;
	margin: 0 auto;
}


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


/****ハンバーガーメニュー　　start*****/


.btn_hamburger {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 12px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 3;
    background: #666;
    text-align: center;
}
 
.btn_hamburger span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
 
.btn_hamburger span:nth-child(1) {
    top: 9px;
}
 
.btn_hamburger span:nth-child(2) {
    top: 18px;
}
 
.btn_hamburger span:nth-child(3) {
    top: 27px;
}
 
.btn_hamburger span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}


/** タップ後の線をバッテンにする **/
/* 最初のspanをマイナス45度に */
.btn_hamburger.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.btn_hamburger.active span:nth-child(2),
.btn_hamburger.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/****ハンバーガーメニュー  end*****/


/******   グローバルナビが上から降ってくる  start *******/
/* 背景を暗くする */
.overlay.active {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1
 }

.gNavi{
	background: #FFFFFF;
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	transform: translateY(-100%);
	transition: all 0.6s;
	margin-left: 7px; /* ヘッダー全体にかかっているpaddingが7pxだったのでそれに合わせた */
	margin-right: 7px;
	opacity: 1;
}

.gNavi.active{
	background: #FFFFFF;
	transform: translateY(80px);
	margin-left: 7px; /* ヘッダー全体にかかっているpaddingが7pxだったのでそれに合わせた */
	margin-right: 7px;
	opacity: 1;
}



/********   グローバルナビが上から降ってくる  end *******/

.gNavi *{
	list-style: none;
}

.gNavi_list{

}
.gNavi_list a{
	color: #333333;
	display: block;
	font-size: 16px;
}

.gNavi > ul{
	position: relative;
	width: 100%;
}
.gNavi ul::after{
	display: block;
	clear: both;
	content: '';
}
.gNavi ul li{
	width: 100%;
	position: relative;
	text-align: center;
	border-bottom: 1px solid #dddddd;
}
.gNavi ul li:first-child{
	border-top: 1px solid #dddddd;
}

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


.gNavi ul li a {
	display: block;
	padding: 1em 4em;
	color: #333333;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: 0.3s;
}


/***** グローバルナビの矢印  ******/
.gNavi > ul > .trigger > a{
	position: relative; /* このaタグを基準に矢印を作成 */
}
.gNavi > ul > .trigger > a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #333; /* 線の太さ */
    border-right: 2px solid #333; /* 線の太さ */
    transform: rotate(135deg); /* 矢印 */
}



/***** グローバルナビの矢印  end******/


/*****  Toggle部分 start ******/

.target {
	display: none;/* この要素をslideToggleで出し入れ  */
	width: 100%;
	position: relative;
	top: 100%;
}



.target li{
	border-bottom: 1px solid #dddddd;
	background-color: #F4F6F3;
}
.target li:first-child{
	border-top: 1px solid #dddddd;
}
.target li:last-child{
	border-bottom:none;
}
.target li:hover{
	background-color: #E4E7E3;
	transition: 0.3s;
}
/*****  Toggle部分 end ******/


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





/**************************************************
					フッター
***************************************************/
.footer_wrapper{
	width: 100%;
	padding: 7px;
	background-color: #DBF1B9;
}
.footer_wrapper ul li a{
	color: #333333;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
}

.footer_company{
	width: 100%;
	padding: 1.5em 0;
}
.footer_company p{
	margin-top: 5px;
	font-size: 12px;
}


.footer_wrapper ul li a:hover{
	color: #AAAAAA;
	transition: 0.3s;
}

.footer_wrapper > ul{
	list-style-type: none;
}


.footer_column_01 a,
.footer_column_02 a,
.footer_column_03 a,
.footer_column_04 a,
.footer_column_05 a,
.footer_column_06 a,
.footer_column_07 a{
	border-bottom: solid 1px #D4D4D4;
	padding: 10px;
	position: relative;/* このタグを基準に矢印を作成 */
}
.footer_column_01 a::after,
.footer_column_02 a::after,
.footer_column_03 a::after,
.footer_column_04 a::after,
.footer_column_05 a::after,
.footer_column_06 a::after,
.footer_column_07 a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #777; /* 線の太さ */
    border-right: 2px solid #777; /* 線の太さ */
    transform: rotate(45deg); /* 右向き矢印 */
}

/*****  フッターの孫要素css  start *****/
.footer_wrapper > ul > li a{
	list-style: none;
	padding-top: 10px;
	padding-bottom: 10px;
	position: relative;/* このタグを基準に矢印を作成 */
	border-bottom: solid 1px #D4D4D4;
}
.footer_wrapper > ul > li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #777; /* 線の太さ */
    border-right: 2px solid #777; /* 線の太さ */
    transform: rotate(45deg); /* 右向き矢印 */
}

.footer_wrapper > ul > li > ul > li:last-child{
	padding-bottom: 0;
}
/*****  フッターの孫要素css  end *****/


.footer_column_08{
	background-color: #275D38;
	width: 80%;
	height: 50px;
	text-align: center;
	margin:20px auto;
	font-weight: bold;
}
.footer_column_08 a{
	color: #ffffff !important;
	display: block;
	background-color: #275D38;
	padding-top: 15px;
}
.footer_column_08 a:hover{
	color: #ffffff !important;
	background-color: #22B573;
	transition: 0.3s;
}

.footer_column_09{
	background-color: #275D38;
	width: 80%;
	height: 50px;
	text-align: center;
	margin:20px auto;
}
.footer_column_09 a{
	color: #ffffff !important;
	display: block;
	height: 100%;
	text-decoration: none;
	font-weight: bold;
	padding-top: 15px;
}
.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
***************************************************/

.top{
	width: 100%;
}

.top .video{
	background-image: url("../image/top/fv_bg_sp.png");
	background-position: center;
	background-size: cover;
	padding-bottom: 40px;
    margin-bottom: 20px;
}
.top .fv_ttl{
    display:none;
}
.top .fv_ttl_sp{
    padding-top: 10px;
    padding-bottom: 20px;
    max-width: 960px;
    margin: auto;
    display: block;
}
.top .fv_ttl img,.top .fv_ttl_sp img{
	max-width: 100%;
}
.top .fv_videowrap {
	max-width: 560px;
	margin: auto;
	padding: 15px;
	background-color: #004f4e;
}
.top .fv_videowrap_pc {
	display:none;
}
.top .fv_videowrap_sp {
	display:block;
	margin-bottom: 20px;
}
.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 .contact_space_1{
	background-color: #DDEDF8;
	text-align: center;
	margin-bottom: 50px;
}

.top .contact_space_1 img{
		width: 100%;
	}

.top .news_area{
	width: 100%;
	height: 200px;
	margin: 0 auto;
	margin-bottom: 50px;
	padding: 20px;
	overflow: auto;
}

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

.top .sns_wrapper{
	width: 90%;
	/*background: #eee;*/
	padding: 5%;
	margin: 4% auto;
}
.top .sns_wrapper .sns_inner{
	width: 90%;
	/*background: #0ee;*/
}

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

.top .zenkokutaiou img{
	width: 100%;
}

.top .trable{
	text-align: center;
	margin-bottom: 0;
	padding-top: 0px;
	padding-bottom: 0px;
	/*background-image: url("../image/main_trouble_bg.jpg");
	background-position: center;
	background-size: cover;*/
	background-color: #FFF;
}

.top .trable img{
    width: 100%;
    margin: 20px auto;
    padding: 0;
    vertical-align: bottom;
}


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

.top .trable_2 img{
	width: 100%;
}

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

.top .ikkankouzi img{
	width: 100%;
}

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

.top .ansin img{
		width: 100%;
}


.top .flow{
	margin-bottom: 50px;
}

.top .flow img{
	width: 100%;
}

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

.top .contact_2{
	margin-bottom: 10px;
	text-align: center;
}
.top .contact_2 .contact_bn img{
	width: 90%;
}

.top .tel_now{
	margin-bottom: 50px;
}
.top .tel_now img{
	width: 100%;
}
/**************************************************
			工事内容  .work 	
***************************************************/
.work > figure > img {
	width: 100%;
}


.work .main_txt{
	color: #FFFFFF;
}


.work > p{
	margin-bottom: 50px;
}

.work .description_box{
	width: 100%;
}

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

.work .description_box_div_l,
.work .description_box_div_r{
	width: 100%;
	margin-bottom: 70px;
}


.work .description_box_div_l figure{
	width: 100%;
	margin-bottom: 40px;
}

.work .description_box_div_l figure img,
.work .description_box_div_r figure img{
	width: 100%;
}

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

.work .description_box_div_r figure{
	width: 100%;
	margin-bottom: 40px;
}

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

.work .box{
	width: 100%;
}

.work .box h3{
	background-image: url("../image/work_ttl_bg.jpg");
	width: 100%;
	padding-top: 30px;
	padding-bottom: 150px;
	color: #FFFFFF;
	text-align: center;
	position: relative;
}

.work .box_p{
	width: 100%;
	padding: 0 10px 100px 10px;
	color: #FFFFFF;
	text-align: left;
	margin-top: -130px;
	z-index: 1000;
	position: relative;
}

.work .box .col_box{
	width: 100%;
}

.work .box .col{
	width: 40%;
	display: inline-block;
}

.work .box .col img{
	width: 100%;
}
.work .box .col .ttl{
	margin-bottom: 30px;
	text-align: center;
}

.work .box .col1,
.work .box .col3,
.work .box .col5{
	margin-left: 7%;
	margin-right: 5%;
}

/*
.work .box{
	width: 100%;
	height: 1200px;
	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: 150px;
	color: #FFFFFF;
	position: relative;
	font-size: 24px;
	text-align: center;
}

.work .box_p{
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
	text-align: center;
	margin-top: -130px;
	z-index: 1000;
	position: relative;
}

.work .box .col_box{
	width: 100%;
	margin: 0 auto;
	margin-top: -120px;
	position: relative;
}

.work .box .col{
	width: 40%;
}

.work .box .col img{
	width: 100%;
}

.work .box .col p{
	font-size: 18px;
	text-align: center;
	margin-bottom: 40px;
}

.work .box .col1{
	position: absolute;
	top: 130px;
	left: 8%;
}

.work .box .col2{
	position: absolute;
	top: 130px;
	left: 55%;
}


.work .box .col3{
	position: absolute;
	top: 400px;
	left: 8%;
}

.work .box .col4{
	position: absolute;
	top: 400px;
	left: 55%;
}

.work .box .col5{
	position: absolute;
	top: 700px;
	left: 8%;
}
*/

/**************************************************
			施工実績  .construction 	
***************************************************/

.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;
}
.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{
	width: 100%;
	overflow: hidden;
	padding-left: 2%;
	
}
.construction .construction_list > ul > li{
	background: #eee;
	width: 48%;
	display: block;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
}
.construction .construction_list > ul > li img{
	width: 100%;
}


.construction .construction_list > ul > li > a{
	width: 100%;
	text-decoration: none;
	display: block;
}
.construction .construction_list > ul > li > a:hover{
	opacity: 0.5;
}

.construction .construction_list > ul > li > a > img{
	width: 100%;
}

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

/**************************************************
			実績一覧  .job
***************************************************/
.job h2::before,.job h2::after{
	content: " ";
	display: none;
	background-image : none;/* background:noneだと404エラー */
}

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

.job table{
	width: 100%;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
}

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

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

.job p{
	width: 100%;
	display: block;
	margin: 0 auto;
	margin-bottom: 100px;

}

.job ul{
	width: 100%;
	padding-left:0;
}

.job ul li{
	width: 48%;
	list-style: none;
	display: inline-block;
	margin-right: 2%;
	margin-bottom: 2%;
	transition: 0.5s;
}

.job ul li a img{
	width: 100%;
}

.job ul li:nth-child(even){
	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{
	width: 100%;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}

.company h2 img{
	width: 100%;
}

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

.company > table{
	width: 100%;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
	margin-bottom: 100px;
}
.company > table th{
	width: 30%;
	background-color: #EEEEEE;
	border-right: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
}

.company > table td{
	width: 70%;
	padding-left: 50px;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
} 

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

.company h4{
	text-align: center;
}

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

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

.googlemap1,
.googlemap2{
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-bottom: 10%;
}

.address .googlemap1 img,
.address .googlemap2 img{
	width: 100%;
}

.googlemap1 iframe,
.googlemap2 iframe{
	height: 250px;
}

.company .subimg{
	text-align: center;
	margin-bottom: 50px;
}
.company .subimg img{
	width: 100%;
}

.company aside{
	width: 100%;
	margin-top: 70px;
	margin-bottom: 100px;
}

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

.company aside figure{
	width: 30%;
	float: left;
}

.company aside div div{
	width: 70%;
	text-align: center;
	padding-top: 60px;
	padding-left: 20%;
}

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

.company .licence th{
	border-right: none;
} 

.company .licence td{
	text-align: center;
	padding-left: 0;
} 


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

.pamphlet_img img{
	width: 30%;
}

.pamphlet_dl{
	width: 80%;
	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;
}

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


/**************************************************
			経営理念  .message
***************************************************/
.message .bg{
	width: 100%;
	background-image: url("../image/message_top_bg_pc.jpg");
	background-position: center center;
	background-size: cover;
	position: relative;
	padding: 30px 10px;
	margin-bottom: 50px;
}

.message .bg .top_p{
	font-size: 20px;
	text-align: center;
	color: #006837;
	text-shadow: 0px 0px 20px rgba(255,255,255,1);
	position: relative;
	top: 32%;
}
.vision{
	width: 100%;
	margin: 0 auto;
	margin-bottom: 50px;
}


.vision figure{
	text-align: center;
}
.vision figure img{
	width: 30%;
}

.vision ul{
	list-style: none;
	margin-top: 20px;
}
.vision ul li{
	margin-bottom: 5px;
	text-align: center;
}

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

.message > figure > img{
	width: 100%;
}


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

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



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

.department figure{
}

.department .box1,
.department .box2{
	width: 100%;
	margin-bottom: 30px;
	
}

.department .box1 figure,
.department .box2 figure{
	width: 35%;
	height: auto;
}

.department .box1 figure img,
.department .box2 figure img{
	width: 100%;
	height: 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: 30px;
}

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

.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;
	margin-top: 30px;
	margin-bottom: 50px;
}

/*****  ループスライダー  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: 10px;
}
.join figure img{
	width: 100%;
}


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


.partner .main_img{
	margin-bottom: 30px;
}

.partner figure img{
	width: 100%;
}

.partner >p{
	margin-bottom: 50px;
}

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

.partner .area figure{
	margin-bottom:30px;
}

.partner .spot{
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.partner .contact_bg img{
	width: 100%;
}

.partner .tel_now img{
	width: 100%;
}

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

.recruit figure{
	text-align: center;
}

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

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

.recruit .main_img img{
	width: 100%;
}

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

.recruit h3 img{
	width: 90%;
}

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

.recruit .main_p{
	font-weight: bold;
	margin-bottom: 50px;
}

.recruit .bosyuuyoukou{
	width: 80%;
	margin: 0 auto;
	margin-bottom: 100px;
}

.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 .tel_now img{
	width: 100%;
}

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

.recruit .qa_box_area{
	width: 100%;
	/*background: #eee;*/
}

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

.recruit .qa_box_area .col1{
	width: 100%;
	/*background: #aaa;*/
	
}
.recruit .qa_box_area .col1 figure{
	/*background: #075;*/
	width: 65px;
}
.recruit .qa_box_area .col1 p{
	width:70%;
	/*height: 84px;*/
	color: #FFFFFF;
	background-color: #1D386C;
	border-radius: 10px;
	padding: 10px;
	position: relative;
	top: -100px;
	left: 80px;
}

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

.recruit .qa_box_area .col1_mar{
	margin-top: -80px;
}

.recruit .qa_box_area .col2{
	width: 100%;
	/*background: #a5a;*/
	position: relative;
	margin-top: -50px;
}
.recruit .qa_box_area .col2 figure{
	/*background: #075;*/
	width: 65px;
}
.recruit .qa_box_area .col2 p{
	width: 70%;
	color: #FFFFFF;
	background-color: #00514F;
	border-radius: 10px;
	padding: 10px;
	position: relative;
	top: -100px;
	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;
}

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

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

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

.recruit .employee_sp h4{
	text-align: center;
	margin-bottom: 10px;
}
.recruit .employee_sp p{
	margin-bottom: 30px;
}
.recruit .employee_sp img{
	width: 80%;
}

/* 社員紹介のテーブル */

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


/* 求人要項のテーブル */
.recruit .youkou{
	width: 100%;
	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 .contact_2{
	margin-top: 100px;
	margin-bottom: 10px;
	text-align: center;
}
.recruit .contact_2 img{
	width: 90%;
}

.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: 100%;
	margin: 0 auto;
	margin-bottom: 50px;
	overflow: auto;
}
.recruit .sns_wrapper .sns_inner{
	width: 47%;
	display: inline-block;
	margin-bottom: 20px;
}

.recruit .sns_message{
	text-align: center;
	font-size: 1.4em;
	font-weight: bold;
}
/**************************************************
			お問合わせ  .contact
***************************************************/
.contact_flow{
	width: 100%;
	height: 80px;
	background-image: url("../image/contact_flow_input.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	margin: 0 auto;
	margin-bottom: 50px;
}

.label{
	/*background: #eee;*/
	margin-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
}

.label > .label_area{
	display: block;
	width: 100%;
	margin-bottom: 7px;
	/*background: #ed4;*/
}
.label input[type="text"],
.label input[type="email"],
.label input[type="tel"],
.label select,
.label textarea{
	width: 100%;
	height: 35px;
	border-radius: 5px;
	border: 1px solid #999999;
	padding: 5px;
	font-size: 16px;
}
.label input[type="radio"]{
	margin-left: 10px;
	margin-right: 7px;
	display: inline-block;
}
.label input[type="checkbox"]{
	margin-left: 10px;
	margin-right: 7px;
	display: inline-block;
}
.label_list label{
	display: block;
	width: 100%;
}
.label select.year{
	width: 90px;
	height: 30px;
	border-radius: 5px;
	border: 1px solid #999999;
	padding: 5px;
}
.label select.day{
	width: 60px;
	height: 30px;
	border-radius: 5px;
	border: 1px solid #999999;
	padding: 5px;
}


.label textarea{
	height: 300px;
}

input[type="submit"]{
	width: 97%;
	height: 50px;
	font-size: 18px;
	font-weight: normal;
	color: #FFFFFF;
	background-color: #275D38;
	border: solid 1px #275D38;
	margin-left: 10px;
	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: 100%;
	height: 80px;
	background-image: url("../image/contact_flow_finish.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	margin: 0 auto;
	margin-bottom: 50px;
}

.thanks p{
	width: 100%;
	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;
}

.sp_w100{
	width: 100%;
}

.sp_m_b_50{
	margin-bottom: 50px;
}

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

/**************************************************
			header SNS
***************************************************/
.hdr-sms{
	display: block;
	margin: 10px auto 0px;
	text-align: center;
}
.hdr-sms a{
	max-width: 44px;
    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: 740px;
	justify-content: center;
	margin-bottom: 20px;
    margin-top: 20px;
}
.filter a{
	padding: 3px 5px;
    margin: 1%;
    width: 31%;
	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: 20px auto;
	border-bottom: 1px solid #999;
}
.interview-list h3{
    margin-top: 0px;
    margin-bottom: 20px;
}
.interview-list:nth-child(even){
  flex-direction:row-reverse;
}
.interview-p {
  margin: 20px 0 0;
  width: 100%;
  padding: 0px 20px;
  display: inline-block;
}
.interview-p  img{
	max-width: 100%;
}
.interview-txt {
	width: 100%;
	display: inline-block;
	  padding: 0px 20px;

	  margin: 20px auto;
}

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

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

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

}
.work .box_faq h3 {
	padding-bottom: 8%;
    padding-top: 22%;
    background-image: url("../image/work_faq_ttl_bg_sp.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;
	width: 90%;
    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: 18px;
		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: 20px;
	}
	.career__inner {
		display: flex;
		align-items: center;
	}
	.careerUp__container .step {
		display: flex;
		justify-content: center;
		align-items: baseline;
		width: 100px;
		font-size: 13px;
		font-weight: 600;
		padding: 30px 0;
		background-color: rgb(20, 81, 78);
		color: #fff;
	}
	.careerUp__container .step span {
		font-size: 21px;
		margin-left: 7px;
	}
	.careerText {
		flex: 1;
		font-size: 14px;
		font-weight: 600;
		padding: 3px 10px;
	}
	.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: 3em 1em;
	
}
.top .about_marks{
	padding: 0;
	margin: 0px auto 40px;
}
.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: 100%;
	margin: 1%;
	position: relative;
	z-index: 1;
}

.top .about_text p{
	position: relative;
	z-index: 1;
	margin-bottom: 2em;
}
.top .about_img {
	display: none;
	width: 100%;
	margin: 1%;
	position: relative;
	text-align: center;
	z-index: 1;
}
.top .about_text .about_img {
	display:block;
}
.top .about_img img{
	width: 100%;
	max-width: 400px;
	margin: auto;
	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;
}

.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;
padding: 1em 0
;}
.top_nayami_ttl {
	background: url(../image/top/nayami_illust01.png) no-repeat center 80px;
	background-size: 140px;
    position: relative;
    font-size: 24px;
    padding: 0% 0% 35%;
    text-align: left;
}
.top_nayami_ttl span{
	color:#2F6E98;
	font-size: 120%;
}
.top_nayami_list{
	background-color: #FFF;
	border-radius: 10px;
	padding: 1em;
	/* margin: 0em 1em 1em; */
}
.top_nayami_list li{
	font-size: 15px;
    background: url("../image/top/nayami_icon01.png") no-repeat center left;
    background-size: 22px;
    padding-left: 38px;
    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;
padding: 1em;}
.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: 100%;
	margin: 1em 0em;
	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 1em;
	text-align: left;
}
.top_reason_flex{
	margin: 0em auto;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.top_reason_ttl{
	font-size: 20px;
}
.top_reason_img{
	width: 100%;
display: block;text-align: center;margin: auto;}
.top_reason_img img{
	max-width: 100%;
}
.top_reason_txt{
	text-align: left;
	width: 100%;
	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_flow_img img{
	max-width: 100%;
}
.top_flowbox{
	margin: 2em 1em 2em;
	background-color: #FFF;
	padding: 1em 1em 0.1em;
	position: relative;
}
.top_flowbox::after{
	content: "";
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: -26px;
	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: 100%;
margin-bottom: 1em;}
.top_flowbox_img img{
	max-width: 100%;
width: 100%;}
.top_flowbox_txt{
	width: 100%;
	margin-left: 0%;
	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::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: center;
    justify-content: center;
    width: 100%;
	position: relative;
	z-index: 2;
flex-direction: row;flex-wrap: wrap;align-content: center;}
.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.5em 0px;
    height: 80px;
	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: 640px;
	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: 90%;
	margin: auto;
	margin-bottom: 4em;
}
.result_flex_txt{
	width: 100%;
}
.result_flex_txt table{
	width: 100% !important;
	font-size: 14px;
}
.result_flex_txt h3{
	margin-top: 0;
}
.result_txt p{
	margin-bottom: 20px !important;
}

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