@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,
.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: 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: 25%;
}

.header_contact {
	width: 100%;
	/*background: #afa;*/
	overflow: hidden;
}


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

.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: 30px;
	font-weight: bold;
	overflow: hidden;
}
.header_tel a{
	color: #FF9966;
}
.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: 20%;
	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{
	font-weight: bold;
	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{
	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{
	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_07{
	background-color: #275D38;
	width: 80%;
	height: 50px;
	text-align: center;
	margin:20px auto;
	font-weight: bold;
}
.footer_column_07 a{
	color: #ffffff !important;
	display: block;
	background-color: #275D38;
	padding-top: 15px;
}
.footer_column_07 a:hover{
	color: #ffffff !important;
	background-color: #22B573;
	transition: 0.3s;
}

.footer_column_08{
	background-color: #275D38;
	width: 80%;
	height: 50px;
	text-align: center;
	margin:20px auto;
}
.footer_column_08 a{
	color: #ffffff !important;
	display: block;
	height: 100%;
	text-decoration: none;
	font-weight: bold;
	padding-top: 15px;
}
.footer_column_08 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: 40px;
}
.top .fv_ttl{
    display:none;
}
.top .fv_ttl_sp{
    padding-top: 10px;
    padding-bottom: 20px;
    max-width: 960px;
    margin: auto;
    display: block;
	text-align: center;
}
.top .fv_ttl img{
	max-width: 100%;
	margin: auto;
	text-align: center;
}
.top .fv_videowrap {
	max-width: 560px;
	margin: auto;
	padding: 15px;
	background-color: #004f4e;
}
.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 .fv_videowrap_pc {
	display:none;
}
.top .fv_videowrap_sp {
	display:block;
	margin-bottom: 20px;
}

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

@media screen and (max-width:850px) {
    /*　画像が横幅を上回る際の処理　*/
	.top .contact_space_1 img{
		width: 100%;
	}
}

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

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

.top .sns_wrapper{
	width: 100%;
	/*background: #eee;*/
	margin: 0 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 .zenkokutaiou img{
	width: 100%;
}

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

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


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

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

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

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

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

@media screen and (max-width:900px) {
    /*　画像が横幅を上回る際の処理　*/
	.top .ansin img{
		width: 90%;
	}
}

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

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

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

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

.top .contact_2 .contact_bn img{
	width: 90%;
}

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

.top .tel_now p{
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

.top .tel_now a{
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	display: block;
}

/**************************************************
			工事内容  .work 	
***************************************************/

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

.work > figure > img {/* メイン画像 */
	width: 100%;
}
.work > .sub_img > img {/* 2,3つめの画像 */
	width: 80%;
}


.work .main_txt{
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
}


.work .description_box{
	width: 100%;
	margin: 0 auto;
	/*border-bottom: solid 1px #DDDDDD;*/
	margin-bottom: 50px;
}

.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: 100%;

}

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

.work .description_box_div_l figure{
	width: 50%;
	float: left;
	margin-right: 40px;
	margin-bottom: 40px;
}

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

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

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

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

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

.work .last_txt{
	margin-bottom: 20px;
	font-weight: bold;
}
.work .last{
	margin-bottom: 100px;
}

.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: 300px;
}


.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: 430px;
	left: 8%;
}

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

.work .box .col5{
	position: absolute;
	top: 730px;
	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 > p{
	text-align: center;
	margin-bottom: 30px;
}

.construction .construction_list > ul{
	width: 100%;
	overflow: hidden;
	padding-left: 5%;
	
}
.construction .construction_list > ul > li{
	background: #eee;
	width: 30%;
	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 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: 70%;
	padding-left: 50px;
	border-top: solid 1px #BBBBBB;
	border-bottom: solid 1px #BBBBBB;
} 

.job p{
	width: 70%;
	display: block;
	margin: 0 auto;
	margin-bottom: 100px;
}
@media screen and (max-width:850px){
	.job p{
		width: 80%;
	}	
}


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

.job ul li{
	width: 30%;
	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: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: 50px;
}

.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%;
	text-align: center;
}

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

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

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

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

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

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

.company aside div div{
	width: 180px;
	padding-top: 60px;
	padding-left: 20px;
}

.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: 20px;
}

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


.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 figure{
	margin-bottom: 70px;
	text-align: center;
}

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

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

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

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

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


/**************************************************
			採用情報  .recruit
***************************************************/
.recruit .main_img img{
	width: 100%;
}

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

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

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

.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: 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;
}

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

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

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

.recruit h4{
	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_bg a img{
	width: 100%;
}


/* 求人要項のテーブル */
.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_tel a{
	display: block;
	color: #333333;
	font-weight: bold;
	font-size: 28px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 50px;
}

@media screen and (max-width:850px){
	.recruit .main_p{
		width: 100%;
	}
	.recruit .massage img{
		width: 90%;
	}
	
	.recruit .qa_box_area .col1{
		margin-right: 0;
	}
	
	/* 社員紹介のテーブルstart */
	.recruit .employee{
	width: 100%;
	/*background: #e8a;*/
	}
	.recruit .employee td{
		width: 50%;
		vertical-align: top;

	}
	.recruit .employee img{
		width: 100%;
	}
	.recruit .employee h4{
		width: 100%;
		text-align: center;
	}
	.recruit .employee p{
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
/* 社員紹介のテーブル end*/
}

.recruit .sns_wrapper{
	width: 100%;
	margin: 0 auto;
	margin-bottom: 50px;
	overflow: auto;
}
.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_flow{
	width: 50%;
	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;
}
.label input[type="radio"]{
	margin-left: 10px;
	margin-right: 7px;
}


.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: 50%;
	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;
}



.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: 2em 0;
	margin: 2em 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::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: 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: 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 !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;
}