@charset "utf-8";
/* CSS Document */

/*
 :title "common stylesheet";
 :shortdesc "Common stylesheet for HTML pages of this site";
*/

/* clear
/* ------------------------------------------------------------------------- */

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
    list-style:none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
    quotes:none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    color: #777;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
    text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
    border-collapse:collapse;
    border-spacing:0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
    vertical-align:middle;
}



/* ------------------------------------------------------------------------- */
/* base
/* ------------------------------------------------------------------------- */

*{
	padding: 0px;
	margin: 0px;
}

body{
	text-align:center;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%;
	font-weight: 500;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
}

img{
	max-width: 100%;
}

table{
	max-width: 100%;
}

.cf:after {
	content:" ";
	display:block;
	clear:both;
}

/* PCのみ */
@media all and (min-width: 769px) {
	body{
		min-width: 1000px;
	}
	
	table{
		max-width: 1000px;
	}
	
	a,
	a img{
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
		transition: 0.3s;
	}
	a:hover{
		text-decoration: none;
	}
	a:hover img{
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
}


/* SPのみ */
@media all and (max-width: 768px) {
	body{
		width: 100%;
		min-width: 320px;
	}
	
	img{
		max-width: 100%;
	}
	
}


/* レイアウト
/* ------------------------------------------------------------------------- */
main{
	display: block;
	margin:0 auto;
	text-align:left;
	font-size: 14px;
	line-height: 2em;
}

/* PCのみ */
@media all and (min-width: 769px) {
	.inner{
		width: 1000px;
		margin: auto;
	}
}

/* SPのみ */
@media all and (max-width: 768px) {
	main{
	}
}


/* header
------------------------------------------------- */
header{
	padding-top: 10px;
}
header h1{
	float: left;
}
header h1 a{
	display: block;
	background: url(image/logo.png) no-repeat left center;
	text-indent: -9999px;
}

/* PCのみ */
@media all and (min-width: 769px) {
	header{
		position: fixed;
		background-color: rgba(255,255,255,0.8);
		width: 100%;
		z-index: 10;
	}
	header h1,
	header h1 a{
		width: 428px;
		height: 48px;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	header{
		padding-bottom: 7px;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		background-color: rgba(255,255,255,0.8);
		z-index: 10;
	}
	header h1{
		width: 79%;
		max-width: 350px;
		margin-left: 3px;
	}
	header h1 a{
		width: 100%;
		height: 45px;
		background-size: contain;
	}
}


/* グローバルメニュー
/* ------------------------------------------------------------------------- */

/* PCのみ */
@media all and (min-width: 769px) {
	#bgr_btn{
		display: none;
	}
	
	#burger_box{
		width: 520px;
		margin: 0 0 0 auto;
		float: right;
	}
	
	#burger_box #global_menu > ul{
		display: table;
		table-layout: fixed;
		border-collapse: collapse;
	}
	
	#global_menu > ul > li{
		display: table-cell;
		height: 50px;
		padding-left: 20px;
		position: relative;
	}
	
	#global_menu > ul > li:first-child{
		padding-left: 0;
	}
	
	#global_menu > ul > li.toggle{
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
		transition: 0.3s;
	}
	
	#global_menu > ul > li.toggle:hover .menu{
		width: 200px;
		margin: 0 auto;
		padding: 10px 15px;
		/*overflow: inherit;*/
		/*min-width: 1000px;*/
		position: absolute;
		left: 0;
		right: 0;
		max-height: 9999px;
		opacity: 1;
		background: rgba(000,000,000,0.7);
		z-index: 10;
		height: auto;
	}
	
	#global_menu > ul > li.toggle > a {
		display: block;
		/*padding: 25.5px 1em 15.5px;*/
		transition: all .2s ease-in;
		overflow: inherit;
	}
	
	#global_menu > ul .menu{
		width: auto;
		margin: auto;
		left: 0;
		right: 0;
		height: 0;
		transition: all .2s ease-in;
		opacity: 0;
		overflow: hidden;
		text-align: left;
		position: absolute;
		background-color: #000;
		box-sizing: border-box;
	}
	
	#burger_box #global_menu > ul > li > a,
	#burger_box #global_menu > ul > li > label{
		display: block;
		text-decoration: none;
		width: 70px;
		padding: 20px 0;
		overflow: hidden;
		cursor: pointer;
		background-repeat: no-repeat;
		background-position: center 25px;
		position: relative;
		box-sizing: border-box;
		font-weight: bold;
		font-size: 14px;
		margin-bottom: 1px;
		color: #333;
	}
	#burger_box #global_menu > ul > li input{
		display: none;
	}
	#burger_box #global_menu > ul > li:hover > a,
	#burger_box #global_menu > ul > li:hover > label,
	body.top #burger_box #global_menu > ul > li:nth-child(1) > a,
	body.company #burger_box #global_menu > ul > li:nth-child(2) > label,
	body.business #burger_box #global_menu > ul > li:nth-child(3) > label,
	body.work #burger_box #global_menu > ul > li:nth-child(4) > label,
	body.recruit #burger_box #global_menu > ul > li:nth-child(5) > a,
	body.contact #burger_box #global_menu > ul > li:nth-child(6) > a{
		border-bottom: 5px solid #36B14A;
		color: #36B14A;
	}
	
	/** サブメニュー内設定 **/
	
	#burger_box #global_menu ul li .menu ul{
		margin-top: 20px;
		font-size: 14px;
	}
	
	#burger_box #global_menu ul li .menu ul li{
		display: flex;
		flex-direction: column;
		margin: 10px auto;
	}
	
	#burger_box #global_menu ul li .menu ul li:first-child{
		margin-top: 0;
	}
	
	#burger_box #global_menu ul li .menu ul li a{
		display: block;
		color: #fff;
		text-decoration: none;
		position: relative;
		padding-left: 17px;
	}
	
	#burger_box #global_menu ul li .menu ul li a:before{
		content: "";
		display: inline-block;
		width: 14px;
		height: 14px;
		position: absolute;
		left: 0;
		top: 0;
		background: url(image/icon_arrow_s_green.png) no-repeat left top;
	}
	
	#burger_box #global_menu ul li .menu ul li a:hover{
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
	
}
/* SPのみ */
@media all and (max-width: 768px) {
	#global_menu{
		width: 100%;
		background-color: rgba(030,030,030,0.95);
		text-align: left;
		z-index: 20;
	}
	#global_menu > ul{
		margin-bottom: 200px;
	}
	#global_menu ul li{
		border-bottom: 1px solid #444;
	}
	#global_menu ul li label:hover{
		cursor: pointer;
	}
	#global_menu ul li input{
		display: none;
	}
	#global_menu ul li input + div{
		max-height: 0;
		overflow: hidden;
		transition: all 0.5s;
	}
	#global_menu ul li input:checked + div{
		max-height: 999px;
	}
	#global_menu ul li label,
	#global_menu ul li a{
		display: block;
		width: 100%;
		padding: 15px 30px;
		color: #fff;
		text-decoration: none;
		box-sizing: border-box;
		position: relative;
	}
	#global_menu ul li ul li a{
		padding: 15px 10px 15px 50px;
		background-color: rgba(070,070,070,0.5);
	}
	#global_menu ul li a:before{
		content: "";
		display: inline-block;
		width: 14px;
		height: 14px;
		position: absolute;
		left: 10px;
		top: 32%;
		background: url(image/icon_arrow_s_green.png) no-repeat left top;
	}
	#global_menu ul li ul li a:before{
		width: 10px;
		height: 10px;
		background-size: contain;
		left: 32px;
		top: 37%;
	}
	#global_menu ul li label:before{
		content:"+";
		display:block;
		width:16px;
		height:16px;
		border-radius:8px;
		color:#fff;
		position:absolute;
		left: 12px;
		top: 30%;
	}
}
@media print{
	#header{
		position: relative;
	}
	#burger_box{
		display: none;
	}
}


/* side_menu
------------------------------------------------- */
#side_menu{
	z-index: 10;
}

#side_menu ul li{
	list-style: none;
	text-align: left;
}
#side_menu ul li a{
	color: #fff;
	text-decoration: none;
}

/* PCのみ */
@media all and (min-width: 769px) {
	#side_menu{
		clear: both;
		background: #36B14A;
		position: fixed;
		right: 0;
		width: 60px;
		height: 100vh;
	}
	
	#side_menu ul li:first-child{
		border-bottom: 1px dotted #333;
	}
	#side_menu ul li a{
		display: block;
		height: 180px;
		width: 60px;
		font-weight: bold;
		font-size: 16px;
		-webkit-writing-mode: vertical-rl;
		  -ms-writing-mode: tb-rl;
			  writing-mode: vertical-rl;
		padding: 10px 5px;
		box-sizing: border-box;
	}
	#side_menu ul li a{
		-ms-transition: opacity 0.3s;
	}
	#side_menu ul li:first-child a{
		line-height: 1.6em;
	}
	#side_menu ul li:last-child a{
		line-height: 2.9em;
		text-indent: 0.5em;
	}
	#side_menu ul li a:hover{
		opacity: 0.7;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	#side_menu{
		background: #36B14A;
		position: absolute;
		top: 62px;
		width: 100%;
		z-index: 1;
	}
	#side_menu ul{
		display: table;
		width: 100%;
		letter-spacing: -.4em;
	}
	#side_menu ul li{
		display: table-cell;
		width: 50%;
		height: 60px;
		line-height: 1.5em;
		letter-spacing: normal;
		vertical-align: middle;
	}
	#side_menu ul li:first-child{
		border-right: 1px dotted #333;
	}
	#side_menu ul li a{
		display: table-cell;
		height: 60px;
		padding: 10px 0;
		box-sizing: border-box;
		vertical-align: middle;
	}
	#side_menu ul li a span{
		display: block;
		font-weight: bold;
		font-size: 14px;
		padding: 0 15px;
		box-sizing: border-box;
		vertical-align: top;
	}
}


/* pagetop
------------------------------------------------- */
.pagetop a{
	display: block;
	background: #333 url(image/icon_pagetop.png) no-repeat center center;
	text-indent: -9999px;
}

/* PCのみ */
@media all and (min-width: 769px) {
	#side_menu .pagetop{
		display: block;
	}
	.pagetop a{
		width: 60px;
		height: 60px;
	}
	.pagetop a:hover{
		opacity: 0.7;
	}
	.pagetop{
		display: none;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	#side_menu .pagetop{
		display: none;
	}
	.pagetop a{
		height: 60px;
		border-bottom: 1px dotted #fff;
	}
}


/* container
------------------------------------------------- */
#container{
	width: 100%;
	text-align: center;
}

#container section{
	margin: auto;
	padding: 60px 0;
	text-align: center;
	clear: both;
}

.text{
	text-align: left;
}

/* PCのみ */
@media all and (min-width: 769px) {
	body:not(.top) #container{
		padding-top: 320px;
	}
	.top #container{
		margin-top: 70px;
	}
	
	#container section{
		width: 1000px;
		min-width: 1000px;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	#container{
		margin-top: 210px;
	}
	
	.top #container{
		margin-top: 280px;
	}
	
	#container section{
		width: 95%;
		min-width: 300px;
		padding: 20px 0;
	}
	.top #container section{
		padding: 20px 0 0;
	}
}


/* footer
------------------------------------------------- */
footer{
	clear: both;
	background: #333;
	color: #fff;
	padding: 25px 0;
}
footer div{
	margin-left: auto;
}
footer div a{
	display: block;
	width: 370px;
	height: 48px;
	background: url(image/logo_foot.png) no-repeat center top;
	background-size: contain;
	text-indent: -9999px;
	margin-bottom: 5px;
}
address{
	font-family: "Century Gothic","Noto Sans Japanese",'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック',sans-serif;
	font-style: normal;
	font-size: 14px;
	color: #000;
	padding: 15px 0;
}

/* PCのみ */
@media all and (min-width: 769px) {
	footer div{
		width: 370px;
	}
	footer div span{
		font-size: 13px;
		margin-left: 58px;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	footer{
		padding: 15px 0;
	}
	footer div{
		margin: 0 5px;
	}
	footer div a{
		margin: 0 auto 5px;
		width: 100%;
		max-width: 380px;
	}
	footer div span{
		font-size: 11px;
		margin-left: 15px;
	}
	address{
		padding: 10px 0;
		font-size: 11px;
		font-family: Verdana;
	}
}
/* SPのみ */
@media all and (max-width: 379px) {
	footer div a{
		height: 0;
		padding-top: 15.7894%;
	}
	footer div span{
		margin-left: 35px;
	}
}


/* パン屑
/* ------------------------------------------------------------------------- */
.breadline{
	background: #ededed;
}
.breadline ul{
	padding: 10px 0 5px;
	letter-spacing: -.4em;
	text-align: left;
}
.breadline ul li{
	display: inline-block;
	font-weight: bold;
	font-size: 14px;
	letter-spacing: normal;
	position: relative;
	padding-right: 30px;
}
.breadline ul li a{
	color: #333;
	text-decoration: none;
}
.breadline ul li a:hover{
	color: #36B14A;
}
.breadline ul li:not(:last-child):after{
	content: "\003e";
	display: inline-block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 0;
	top: 0;
}
/* SPのみ */
@media all and (max-width: 768px) {
	.breadline{
		display: none;
	}
}


/* ページャー
/* ------------------------------------------------------------------------- */
.pager{
	clear: both;
}
.pager ul {
	margin: 0;
	list-style: none;
	padding-top: 60px;
	text-align: center;
	letter-spacing: -.4em;
}
.pager ul li {
	display: inline-block;
	vertical-align: middle;
	*vertical-align: auto;
	*zoom: 1;
	*display: inline;
	margin-bottom: 0;
	padding: 0 2px;
	letter-spacing: normal;
	margin: 0 2px;
}
.pager ul li a {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	line-height: 1;
	color: #000;
	font-size: 13px;
	font-weight: bold;
	background-color: #fff;
	border: 1px solid #000;
	padding: 15px;
	border-radius: 2px;
}
.pager ul li.current a,
.pager ul li a:hover{
	color: #fff;
	background-color: #000;
}



/* ------------------------------------------------------------------------- */
/* 共通
/* ------------------------------------------------------------------------- */
strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
del{
	font-style: line-through;
}

sup, sub {
	line-height: 1.35;
	font-size: 10px;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}

img{
	max-width: 100%;
	height: auto !important;
}

.align_center{
	text-align: center;
}
.align_left{
	text-align: left !important;
}
.align_right{
	text-align: right;
}

.center{
	display: block;
	margin: auto;
}
.left{
	float: left;
	margin-right: 10px;
}
.right{
	float: right;
	margin-left: 10px;
}
.right p{
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

/* clearfix */
.cf:after {
	content:" ";
	display:block;
	clear:both;
}

.focus{
	background: #ecf9ef;
	padding: 20px;
	margin: 20px auto;
}

.text a[href^="http"]:after{
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
	vertical-align: middle;
	margin-left: 5px;
	background-image: url(image/icon_gaibu.png);
}
.text a[href$=".pdf"]:after{
	content: "PDF";
	display: inline-block;
	width: 35px;
	height: 15px;
	font-size: 11px;
	background-color: #B33131;
	background-image: none;
	color: #fff;
	line-height: 17px;
	text-align: center;
	margin-left: 5px;
}


/* SPのみ */
@media all and (max-width: 768px) {
	.left,
	.right{
		display: block;
		float: none;
		margin: 0 auto 10px auto;
	}
	.left img,
	.right img{
		display: block;
		margin: 0 auto 10px auto;
	}
	
	#content .center{
		text-align: left;
	}
	
	.focus{
		padding: 10px;
	}
	
	.inline_block{
		display: inline-block;
	}

}


/* タイトル
/* ------------------------------------------------------------------------- */
section h2{
	clear: both;
	font-size: 28px;
	font-weight: bold;
	color: #333;
	line-height: 1.5em;
	display: inline-block;
	padding: 0 7px;
	border-bottom: 3px solid #333;
}
section h2 + span{
	font-family: "Century Gothic","Noto Sans Japanese",'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック',sans-serif;
	display: block;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 55px;
}
.text h3,
article h3{
	font-size: 25px;
	padding-bottom: 10px;
	border-bottom: 2px solid #333;
	margin: 50px 0 20px;
}
article h3{
	margin-top: 10px;
}
h4{
	font-size: 21px;
	border-bottom: 1px solid #333;
	margin: 50px 0 15px;
	padding-bottom: 5px;
	text-align: left;
}
h5{
	margin: 40px 0 5px;
	font-size: 17px;
}
h6{
	margin: 20px 0 5px;
}

/* SPのみ */
@media all and (max-width: 768px) {
	section h2{
		font-size: 20px;
		padding: 0 3px;
	}
	section h2 + span{
		font-size: 13px;
		margin-bottom: 15px;
	}
	.text h3,
	article h3{
		font-size: 19px;
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
	.text h3:first-child{
		margin-top: 10px;
	}
	.text h4{
		font-size: 17px;
		margin-bottom: 10px;
	}
	h5{
		font-size: 16px;
	}
}


/* テーブル／ULOL／
/* ----------------------------------------------------- */
table{
	margin: 5px 0 20px;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
	font-family: inherit;
}
table th, table td{
	text-align: left;
	vertical-align: middle;
	padding: 10px;
	border: 1px solid #ccc;
}
table th{
	font-weight: normal;
	background-color: #ededed;
}
table td{
	word-break: break-all;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.text ul,
.text ol{
	margin: 10px 0;
	margin-left: 1.3em;
}
.text ul ul,
.text ul ol,
.text ol ol,
.text ol ul{
	margin: 0;
	margin-left: 1.3em;
}

.tb_w100{
	width: 100%;
}

/* SPのみ */
@media all and (max-width: 768px) {
	table{
		width: 100% !important;
	}
	
	.scroller{
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.scroller table{
		margin-bottom: 0;
		min-width: 700px;
	}
	.scroller table th,
	.scroller table td {
/*		white-space: nowrap;
*/	}

	.text ul,
	.text ol{
		margin-left: 1.8em;
	}
}


/* basic
/* ------------------------------------------------------------------------- */
.basic_btn{
	display: inline-block;
	margin: 30px auto;
	line-height: 1em;
	border: 1px solid #000;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	background-color: #fff;
	background-image: url(image/icon_arrow_black.png);
	background-repeat: no-repeat;
	background-position: 96.5% center;
	text-decoration: none;
	text-align: center;
	color: #000;
	font-size: 16px;
	min-width: 470px;
	font-weight: 500;
	padding: 15px 37px;
	box-sizing: border-box;
}
.basic_btn:hover{
	background-color: #000;
	background-image: url(image/icon_arrow_white.png);
	color: #fff;
}
/* SPのみ */
@media all and (max-width: 768px) {
	.basic_btn{
		min-width: 97%;
		background-position: 95% center;
	}
}


/* メイン画像 2nd
/* ------------------------------------------------------------------------- */
body:not(.top) #main_img{
	width: 100%;
	height: 250px;
	position: absolute;
	top: 70px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
body:not(.top) #main_img:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 250px;
	background-image: url(image/bg_dot.gif);
	background-repeat: repeat;
}

body.news #main_img{
	background-image: url(image/img_main_news.jpg);
}
body.corporation #main_img{
	background-image: url(image/img_main_corporation.jpg);
}
body.general #main_img{
	background-image: url(image/img_main_general.jpg);
}
body.company #main_img{
	background-image: url(image/img_main_company.jpg);
}
body.business #main_img{
	background-image: url(image/img_main_business.jpg);
}
body.recruit #main_img{
	background-image: url(image/img_main_recruit.jpg);
}
body.contact #main_img{
	background-image: url(image/img_main_contact.jpg);
}
body.work #main_img{
	background-image: url(image/img_main_work.jpg);
}

/* PCのみ */
@media all and (min-width: 769px) {
	body:not(.top) #main_img{
		min-width: 1000px;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	body:not(.top) #main_img{
		height: 150px;
		top: 62px;
	}
	body:not(.top) #main_img:before{
		height: 150px;
	}
}



/* ------------------------------------------------------------------------- */
/* TOP
/* ------------------------------------------------------------------------- */

/* メイン画像 TOP
/* ------------------------------------------------------------------------- */
#main_img{
	clear: both;
}
.bg_slider_item:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-image: 
		none,
		url(image/bg_dot.gif);
	background-repeat: 
		no-repeat,
		repeat;
	background-position: 
		center center;
}
#bg_slide .bg_slider_item:nth-child(1):before{
	background-image: 
		url(image/txt_main01.png),
		url(image/bg_dot.gif);
}
#bg_slide .bg_slider_item:nth-child(2):before{
	background-image: 
		url(image/txt_main02.png),
		url(image/bg_dot.gif);
}
#bg_slide .bg_slider_item:nth-child(3):before{
	background-image: 
		url(image/txt_main03.png),
		url(image/bg_dot.gif);
}
#bg_slide .bg_slider_item:nth-child(4):before{
	background-image: 
		url(image/txt_main04.png),
		url(image/bg_dot.gif);
}
/* PCのみ */
@media all and (min-width: 769px) {
	.top #main_img{
		height: calc( 100vh - 70px ) !important;
	}
	
	#bg_slide{
		width: 100%;
		min-width: 1000px;
		height: calc( 100vh - 70px ) !important;
		margin-top: 70px;
		position: absolute;
		top:0;
		z-index: -1;
	}
	.bg_slider_item{
		height: inherit;
		width: inherit;
		position: absolute;
		top: 0;
		left:0;
		opacity: 0;
	}
	.bg_slider_item .img_item{
		background-position: center;
		background-size: cover;
		height: inherit;
	}
	.bg_slider_item:before{
		height: calc( 100vh - 70px ) !important;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	#bg_slide{
		width: 100%;
		height: 220px !important;
		margin-top: 62px;
		position: absolute;
		top:0;
		right:0;
		z-index: -1;
	}
	.bg_slider_item{
		height: inherit;
		width: inherit;
		position: absolute;
		top: 0;
		left:0;
		opacity: 0;
	}
	.bg_slider_item .img_item{
		background-position: center center;
		background-size: cover;
		height: inherit;
		background-repeat: no-repeat;
	}
	.bg_slider_item:before{
		height: 220px;
		background-size: 
			auto 57px,
			auto;
	}
}


/* メイン画像上新着
/* ------------------------------------------------------------------------- */
.main_new{
	position: absolute;
	bottom: 0;
	display: block;
	height: 70px;
	width: 100%;
	min-width: 1000px;
	background-color: rgba(000,000,000,0.7);
	text-align: left;
}
.main_new .inner{
	padding: 22px 0 0;
/*	width: calc( 1000px - 60px );
	padding-right: 60px;
*/}
.main_new a{
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}
.main_new span{
	display: inline-block;
	padding: 5px 0;
	vertical-align: top;
}
.main_new span:nth-child(2){
	padding: 5px 10px 3px;
	font-size: 12px;
	border-radius: 3px;
	margin: auto 15px;
	width: 120px;
	text-align: center;
}
.main_new span:nth-child(3){
	max-width: 710px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.main_new a:after{
	font-family: "Century Gothic","Noto Sans Japanese",'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック',sans-serif;
	content: "NEW";
	display: inline-block;
	font-weight: normal;
	background-color: #EB0077;
	color: #fff;
	font-size: 10px;
	line-height: 22px;
	width: 25px;
	height: 25px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 32%;
	margin-left: 10px;
}
.main_new a:hover{
	opacity: 0.7;
}
.main_new a:hover:after{
	animation: pyoko 0.15s ease-out;
	animation-iteration-count: infinite;
}
@keyframes pyoko{
	0%{
		top: 20px;
	}
	100%{
		top: 10px;
	}
}
.main_new span.work{
	background-color: #009DE0;
}
.main_new span.topic{
	background-color: #FF7F5C;
}
.main_new span.township{
	background-color: #77C326;
}

.main_new a[href^="http"][target="_blank"]:before{
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
	vertical-align: middle;
	background-image: url(image/icon_gaibu.png);
	margin: 5px 5px 0 -18px;
}
.main_new a[href$=".pdf"][target="_blank"]:before{
	content: "PDF";
	display: inline-block;
	width: 35px;
	height: 15px;
	font-size: 11px;
	background-color: #B33131;
	background-image: none;
	color: #fff;
	line-height: 15px;
	text-align: center;
	margin: 5px 3px 0 -35px;
}

/* SPのみ */
@media all and (max-width: 768px) {
	.main_new{
		display: none;
	}
}


/* 新着情報
/* ------------------------------------------------------------------------- */
#news > ul li a{
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 14px;
	position: relative;
}
#news > ul li a span{
	display: block;
	text-align: left;
	font-weight: 500;
}
#news > ul li a span:nth-child(3){
	padding: 0 10px;
	font-size: 12px;
	border-radius: 3px;
	width: 120px;
	text-align: center;
	color: #fff;
}
#news > ul li a span:nth-child(3).work{
	background-color: #009DE0;
}
#news > ul li a span:nth-child(3).topic{
	background-color: #FF7F5C;
}
#news > ul li a span:nth-child(3).township{
	background-color: #77C326;
}

#news > ul li a span:nth-child(4){
	line-height: 1.7em;
}
#news > ul li a.new:before{
	font-family: "Century Gothic","Noto Sans Japanese",'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック',sans-serif;
	content: "NEW";
	display: inline-block;
	font-weight: normal;
	background-color: #EB0077;
	color: #fff;
	font-size: 17px;
	line-height: 48px;
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
}
#news > ul li a[href^="http"][target="_blank"]:after{
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
	vertical-align: middle;
	margin-left: 3px;
	background-image: url(image/icon_gaibu.png);
	position: absolute;
	bottom: 68px;
	right: 115px;
}
#news > ul li a[href$=".pdf"][target="_blank"]:after{
	content: "PDF";
	display: block;
	position: absolute;
	width: 35px;
	height: 15px;
	bottom: 68px;
	right: 90px;
	font-size: 11px;
	background-color: #B33131;
	background-image: none;
	color: #fff;
	line-height: 17px;
	text-align: center;
}

/* PCのみ */
@media all and (min-width: 769px) {
	#news > ul{
		letter-spacing: -.4em;
		margin-bottom: 15px;
		text-align: left;
	}
	#news > ul li{
		display: inline-block;
		vertical-align: top;
		letter-spacing: normal;
		margin: 0 15px;
		width: calc( 100% / 4 - 30px );
	}
	#news > ul li a{
		display: block;
		width: 100%;
		height: 250px;
		text-align: center;
		transition: all 0.4s;
		border: 1px solid #DBDBDB;
		padding: 14px;
		box-sizing: border-box;
		margin-top: 15px;
		background: url(image/bg_news.png) no-repeat right bottom;
	}
	#news > ul li a:hover{
		opacity: 0.7;
	}
/*	#news > ul li a span{
		transition: all 0.4s;
	}
	#news > ul li a:hover span:not(:nth-child(3)){
		opacity: 0.7;
	}
*/	#news > ul li a span:nth-child(1){
		display: block;
		width: 190px;
		height: 140px;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		margin-bottom: 5px;
	}
	#news > ul li a span:nth-child(3){
		position: absolute;
		top: -30px;
		right: -1px;
/*		cursor: default;
		pointer-events: none;
*/	}
	#news > ul li a.new:before{
		top: -30px;
		left: -10px;
		text-indent: 3px;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	#news > ul li{
		list-style: none;
		border-bottom: 1px dotted #aaa;
	}
	#news > ul li a{
		text-align: left;
		padding: 10px 0;
	}
	#news > ul li:first-child a{
		padding-top: 0;
	}
	#news > ul li a span:nth-child(1){
		display: none;
	}
	#news > ul li a span:nth-child(2){
		display: inline;
	}
	#news > ul li a span:nth-child(3){
		display: inline-block;
		margin-left: 5px;
		line-height: 21px;
	}
	#news > ul li a.new:before{
		width: 25px;
		height: 25px;
		font-size: 10px;
		line-height: 27px;
		left: 228px;
		top: 12px;
		transform: scale(0.8);
		text-indent: 2px;
	}
	#news > ul li:first-child a.new:before{
		top: 3px;
	}
	#news > ul li a[href$=".pdf"][target="_blank"]:after,
	#news > ul li a[href^="http"][target="_blank"]:after{
		position: absolute;
		right: 0;
		top: 18px;
	}
	#news > ul li:first-child a[href$=".pdf"][target="_blank"]:after,
	#news > ul li:first-child a[href^="http"][target="_blank"]:after{
		top: 8px;
	}
}


/* 建設コンサルタントとは
/* ------------------------------------------------------------------------- */
#top_consultant p{
	text-align: left;
}
/* PCのみ */
@media all and (min-width: 769px) {
	#container section#top_consultant{
		background: url(image/bg_top_consultant.jpg) no-repeat center center;
		background-size: cover;
		width: 100%;
		text-align: left;
		color: #fff;
		padding: 100px 0 160px;
	}
	#top_consultant h2{
		color: #fff;
		font-size: 20px;
		border-bottom: none;
		padding: 0;
	}
	#top_consultant h2 + span{
		font-family: "游ゴシック", "Yu Gothic", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		color: #FFFF00;
		font-weight: normal;
		font-size: 14px;
		line-height: 1em;
		margin-bottom: 20px;
	}
	#top_consultant p{
		width: 475px;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	#container section#top_consultant{
		width: 100%;
	}
	#top_consultant .h2_wrap{
		background: url(image/bg_top_consultant.jpg) no-repeat center center;
		background-size: cover;
		width: 100%;
		padding: 65px 0;
		text-shadow: 0 0 3px #000;
	}
	#top_consultant h2{
		color: #fff;
		border-bottom: 3px solid #fff;
		border: none;
	}
	#top_consultant h2:after{
		content: "";
		display: block;
		width: 100%;
		height: 3px;
		background-color: #fff;
		box-shadow: 0 0 6px #333;
	}
	#top_consultant h2 + span{
		color: #fff;
		margin-bottom: 0;
	}
	#top_consultant div:nth-child(2){
		width: 95%;
		margin: 10px auto;
	}
}


/* 働き方改革
/* ------------------------------------------------------------------------- */
#top_workway ul li h3{
	font-size: 20px;
	line-height: 1.2em;
}
#top_workway ul li h3 + span{
	font-size: 14px;
}
#top_workway ul li:first-child h3,
#top_workway ul li:first-child h3 + span{
	color: #009DE0;
}
#top_workway ul li:nth-child(2) h3,
#top_workway ul li:nth-child(2) h3 + span{
	color: #77C326;
}
#top_workway img{
	display: block;
	margin: 5px auto 20px;
}
#top_workway ul li p{
	text-align: left;
	color: #333;
	line-height: 1.8em;
}
#top_workway ul li:first-child .basic_btn{
	color: #009DE0;
	border-color: #009DE0;
	background-image: url(image/icon_arrow_blue.png);
}
#top_workway ul li:first-child .basic_btn:hover{
	background-image: url(image/icon_arrow_white_blue.png);
	background-color: #009DE0;
	color: #fff;
}
#top_workway ul li:nth-child(2) .basic_btn{
	color: #77C326;
	border-color: #77C326;
	background-color: transparent;
	background-image: url(image/icon_arrow_green.png);
}
#top_workway ul li:nth-child(2) .basic_btn:hover{
	background-image: url(image/icon_arrow_white_green.png);
	background-color: #77C326;
	color: #fff;
}

/* PCのみ */
@media all and (min-width: 769px) {
	#container section#top_workway{
		background: url(image/bg_top_work.jpg) no-repeat center center;
		background-size: cover;
		width: 100%;
		color: #fff;
	}
	#top_workway .h2_wrap{
		text-shadow: 1px 1px 3px #777;
	}
	#top_workway h2{
		color: #fff;
		border: none;
	}
	#top_workway h2:after{
		content: "";
		display: block;
		width: 110%;
		height: 3px;
		background-color: #fff;
		box-shadow: 1px 1px 5px #777;
		margin-left: -5%;
	}
	#top_workway h2 + span{
		margin-bottom: 20px;
	}
	#top_workway ul{
		width:100%;
		margin:0;
		padding:0;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-box;
		display:-webkit-flexbox;
		display:-moz-flexbox;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:-ms-flex;
		display:flex;
		-webkit-box-lines:multiple;
		-moz-box-lines:multiple;
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	#top_workway ul li {
		width: 50%;
		background: #fff;
		list-style:none;
		margin-bottom: 0;
		position: relative;
		padding: 18px;
		box-sizing: border-box;
		text-align: center;
		color: #000;
	}
	#top_workway ul li:nth-child(2){
		background: #EDF0E2;
	}
	#top_workway .basic_btn{
		min-width: 370px;
		margin: 10px auto 0;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	#container section#top_workway{
		width: 100%;
	}
	#top_workway .h2_wrap{
		background: url(image/bg_top_work.jpg) no-repeat center center;
		background-size: cover;
		width: 100%;
		padding: 65px 0;
	}
	#top_workway h2{
		padding: 0 20px;
	}
	#top_workway h2 + span{
		margin-bottom: 0;
	}
	#top_workway div:nth-child(2){
		width: 95%;
		margin: 10px auto;
	}
	#top_workway ul li{
		text-align: center;
		list-style: none;
		padding: 20px 0 0;
	}
}


/* footerバナー
/* ------------------------------------------------------------------------- */
.foot_bnr ul li a{
	display: block;
	width: 300px;
	height: 220px;
	text-align: center;
	text-decoration: none;
	color: #36B14A;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.4s;
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
	z-index: 1;
	border: solid 1px;
}
.foot_bnr ul li a div{
	display: table-cell;
	width: 300px;
	height: 220px;
	vertical-align: middle;
}
.foot_bnr ul li a:before{
	content: "";
	width: 100%;
	height: 220px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	z-index: -1;
	transition: all 0.4s;
}
.foot_bnr ul li a:after{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 10px;
	bottom: 10px;
	background: url(image/icon_arrow_black.png) no-repeat center center;
}
.foot_bnr ul li a span{
	display: block;
	color: #36B14A;
	font-size: 16px;
	transition: all 0.4s;
}
.foot_bnr ul li a span:before{
	content: "";
	display: block;
	width: 155px;
	height: 1px;
	background-color: #36B14A;
	margin: auto;
	transition: all 0.4s;
}

.foot_bnr ul li a:hover {
	color: #fff;
	border-color: #36B14A;
}

.foot_bnr ul li a:hover:after{
	background-image: url(image/icon_arrow_white_green.png);
}
.foot_bnr ul li a:hover span {
	color: #fff;
}

.foot_bnr ul li a:hover span:before {
	background-color: #fff;
}

.foot_bnr ul li a:hover:before{
	background-color: #36B14A;
}

/* PCのみ */
@media all and (min-width: 769px) {
	.foot_bnr{
		padding: 60px 0;
	}
	.foot_bnr ul{
		letter-spacing: -.4em;
	}
	.foot_bnr ul li{
		display: inline-block;
		vertical-align: top;
		letter-spacing: normal;
		margin: 0 15px;
		width: 300px;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	.foot_bnr ul li:not(:first-child){
		display: none;
	}
	.foot_bnr ul li{
		width: calc(100% - 3px);
	}
	.foot_bnr ul li a{
		width: 100%;
		height: 200px;
		display: table;
		background-size: cover;
	}
	.foot_bnr ul li a:before{
		height: 200px;
	}
	.foot_bnr ul li a div{
		width: 100%;
		height: 200px;
	}
	_:-ms-lang(x), _::-webkit-meter-bar,.foot_bnr ul li a{ /* edge */
			display: block;
	}
	_:-ms-lang(x), _::-webkit-meter-bar,.foot_bnr ul li a div{ /* edge */
			height: auto;
			position: absolute;
			top: 35%;
	}
}
@media all and (-ms-high-contrast:none) { /* IE11 */
	*::-ms-backdrop, .foot_bnr ul li a{
		display: block;
	}
	*::-ms-backdrop, .foot_bnr ul li a div{
		height: auto;
		position: absolute;
		top: 35%;
	}
}



/* ------------------------------------------------------------------------- */
/* 新着情報
/* ------------------------------------------------------------------------- */

/* index
/* ------------------------------------------------------------------------- */
/* PCのみ */
@media all and (min-width: 769px) {
	#news.news_index > ul li{
		margin-bottom: 90px;
	}
}


/* 詳細
/* ------------------------------------------------------------------------- */
article{
	text-align: left;
}
.news_detail .time{
	font-size: 15px;
	line-height: 15px;
	display: inline-block;
	vertical-align: text-bottom;
}

.news_detail .category{
	display: inline-block;
	padding: 3px 10px;
	font-size: 12px;
	border-radius: 3px;
	margin: auto 5px;
	width: 120px;
	text-align: center;
	color: #fff;
	line-height: 15px;
}

.news_detail .category.work{
	background-color: #009DE0;
}
.news_detail .category.topic{
	background-color: #FF7F5C;
}
.news_detail .category.township{
	background-color: #77C326;
}



/* ------------------------------------------------------------------------- */
/* 会社案内
/* ------------------------------------------------------------------------- */

/* ご挨拶
/* ------------------------------------------------------------------------- */
.greeting p{
	text-indent: 1em;
}
.greeting .name{
	float: right;
	margin-top: 1em;
}

.creed h4{
	margin-top: 0;
	color: #36b14a;
	border-bottom: 1px solid #36b14a;
}
.creed ol{
	font-size: 17px;
	color: #36b14a;
	letter-spacing: 0.1em;
}
/* SPのみ */
@media all and (max-width: 768px) {
	.creed ol{
		font-size: 15px;
		letter-spacing: 0;
	}
}


/* 会社概要
/* ------------------------------------------------------------------------- */
.tb_about dl dt{
	font-weight: bold;
	margin-top: 20px;
	font-size: 15px;
}
.tb_about dl dt:first-child{
	margin-top: 0;
}
.tb_about dl dd span{
	display: inline-block;
}

.tb_history{
	width: 100%;
}
.tb_history th{
	text-align: center;
}
.tb_history tr th:nth-child(1){
	width: 7%;
}
.tb_history tr th:nth-child(2){
	width: 12%;
}
.tb_history td:first-child{
	text-align: center;
}
.tb_history td:nth-child(2){
	text-align: right;
}

/* PCのみ */
@media all and (min-width: 769px) {
	.tb_about{
		width: 100%;
	}
	.tb_about th{
		width: 25%;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	.tb_about th{
		width: 25%;
	}
	
	.tb_history tr th:nth-child(1){
		width: 3em;
	}
	.tb_history tr th:nth-child(2){
		width: 7em;
	}
}


/* 組織図・技術有資格者
/* ------------------------------------------------------------------------- */
.qualified table{
	width: 100%;
}
.qualified table th{
	width: 35%;
}
.qualified table td{
	width: 10%;
	text-align: right;
}

.qualified table.qualified01 th,
.qualified table.qualified07_02 th{
	width: 18%;
}
/* PCのみ */
@media all and (min-width: 769px) {
	.qualified table.qualified07_01{
		width: 50%;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	.qualified table td{
		width: 15%;
	}
}


/* アクセス
/* ------------------------------------------------------------------------- */
.access_info strong{
	font-size: 19px;
}
.map iframe{
	width: 100%;
	height: 600px;
	border: none;
	margin-top: 40px;
}
/* PCのみ */
@media all and (min-width: 769px) {
	.access_info img{
		width: 600px;
	}
}
/* SPのみ */
@media all and (max-width: 768px) {
	.map iframe{
		height: 300px;
	}
}



/* ------------------------------------------------------------------------- */
/* お問合わせ
/* ------------------------------------------------------------------------- */
.contact_tel{
	font-weight: bold;
	font-size: 20px;
}
/* SPのみ */
@media all and (max-width: 768px) {
	.tb_office th{
		width: 35%;
	}
}


#form table{
	width: 100%;
	margin: 20px auto;
}

#form th{
	vertical-align: middle;
}

#form input.input_text,
#form textarea.input_width{
    width: 96%;
}
#form textarea{
	min-height: 10em;
}

button, input, select, textarea {
	font-family : inherit;
	font-size : 100%;
}

input[type="text"], textarea{
	vertical-align:middle;
	max-width:100%;
	line-height:28px;
	padding:1px 5px;
	margin: 5px 3px;
	border:1px solid #d4d4d7;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	-webkit-appearance: none;
	border-radius:3px;
	color:#555;
	background:#fcfcfc;
	min-height: 30px;
	min-width: 3em;
}

textarea{
	height:auto;
	line-height:1.5;
}

input[type="radio"]{
	margin-right: 5px;
}

.required{
	background-color: #D8261C;
	color: #fff;
	display: inline-block;
	vertical-align: middle;
	padding: 0 8px;
	line-height: 1.5;
	font-size: 12px;
	margin-right: 5px;
	font-weight: bold;
}
#form table .required{
	margin-left: 10px;
}
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, .required { padding: 3px 8px 0 } /* IE11 */
}

.err td{
	background-color: #ffe2f1;
}

.err_text{
	color: #e3007f;
}

.form_btn{
	text-align: center;
}
.form_btn form{
	display: inline-block;
}

.form_in{
	display: inline;
}

input[type="submit"]{
	padding:10px 50px;
	margin: 10px 5px;
	background: #000;
	border:0;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	-webkit-appearance: none;
	line-height:1.5;
	font-size:120%;
	color:#fff;
	cursor:pointer;
}

*:first-child+html input[type="submit"]{padding:3px;}

.txt_thanks{
	font-size: 20px;
	font-weight: bold;
	padding: 20px 0;
}

/* PCのみ ********************** */
@media all and (min-width: 769px) {
	
	#form th{
		width: 25%;
	}
	
	input[type="submit"]:hover{
		opacity: 0.8;
		filter: alpha(opacity=80);
		-ms-filter: "alpha( opacity=80 )";
	}
}
/* SPのみ ********************** */
@media all and (max-width: 768px) {
	#form{
		text-align: left;
		min-width: 95%;
	}
	
	#form th,
	#form td{
		width: auto;
		display: block;
		min-height: 1.5em;
	}
	
	#form th{
		border-bottom: none !important;
		border-top: none !important;
	}
	#form tr:first-child{
		border-top: 1px solid #ccc;
	}
}


/* ------------------------------------------------------------------------- */
/* 事業案内
/* ------------------------------------------------------------------------- */
.business .center{
	text-align: center;
}

.business .pickup{
	background: #eee;
	padding: 15px 25px;
	margin: 10px 0;
	width: auto;
}

.business .pickup h5{
	font-size: 18px;
	margin-top: 10px;
	border-bottom: dotted;
}

.business dl{
	margin-bottom: 20px;
}

.business dl dt{
	font-size: 18px;
	font-weight: bold;
}

.business dl dd{
	list-style: disc;
	display: list-item;
	margin-left: 1.3em;
}



ul.ul_img,
ul.ul_img_three{
	margin-left: 0;
	text-align: center;
}

ul.ul_img li,
ul.ul_img_three li{
	display: inline-block;
	vertical-align: top;
	text-align: left;
	letter-spacing: normal;
	margin:15px;
}
ul.ul_img li{
	width: calc( 50% - 60px);
}

ul.ul_img li p,
ul.ul_img_three li p{
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
ul.ul_img li div{
	margin-top: 5px;
}
ul.ul_gyomu li{
	width: 24%;
	display: inline-block;
	vertical-align: top;
}

ul.ul_gyomu_3 li{
	width: 33%;
	display: inline-block;
	vertical-align: top;
}

ul.ul_gyomu_survey li{
	width: 19%;
	display: inline-block;
	vertical-align: top;
}

ul.ul_gyomu li p,
ul.ul_gyomu_3 li p{
	display: list-item;
}

 ul.ul_img_three li{
	width: 300px;
}

ul.ul_gyomu li > ul{
	margin-bottom: 15px;
}
ul.ul_gyomu li > ul li{
	width: 100%;
	display: list-item;
}



/* SPのみ ********************** */
@media all and (max-width: 768px) {
	.business .pickup{
		width: 90%;
		display: block;
		margin: 10px auto;
		padding: 5px 10px;
	}
	
	ul.ul_img,
	ul.ul_img_three{
		margin-left: 1%;
		text-align: left;
	}
	
	ul.ul_img li,
	ul.ul_img_three li{
		width: 48.5%;
		margin: 5px auto;
		text-align: center;
	}
	
	ul.ul_gyomu li{
		width: 100%;
		display: block;
	}
	
	ul.ul_gyomu_3 li{
		width: 100%;
	}
	
	ul.li_p li{
		width: 100%;
		display: block;
		margin-bottom: 15px;
	}
}


/* 事業案内TOP
/* ------------------------------------------------------------------------- */
.business_all{
	text-align: center;
}

.business_all ul{
	margin-left: 0;
}
.business_all ul li{
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
	margin:15px;
	width: 300px;
}

.business_btn ul li a{
	display: block;
	width: 300px;
	height: 200px;
	text-align: center;
	text-decoration: none;
	color: #36B14A;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.4s;
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
	z-index: 1;
	border: solid 1px;
}

.business_btn ul li a .business_btn_all{
	display: table-cell;
	width: 300px;
	height: 200px;
	vertical-align: middle;
	font-size: 16px;
	font-size: clamp(16px, 1.5vw, 18px);
}
.business_btn ul li a:before{
	content: "";
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	z-index: -1;
	transition: all 0.4s;
}
.business_btn ul li a:after{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 10px;
	bottom: 10px;
	background: url(image/icon_arrow_black.png) no-repeat center center;
}
.business_btn ul li a .business_btn_lwside{
	display: block;
	color: #36B14A;
	transition: all 0.4s;
	height: calc(50% - 5px);
}
.business_btn ul li a .business_btn_line {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #36B14A;
	margin: 5px auto;
	padding: 0;
	width: 90%;
	overflow: hidden;
}

.business_btn ul li a:hover {
	color: #fff;
	border-color: #36B14A;
}

.business_btn ul li a:hover:after{
	background-image: url(image/icon_arrow_white_green.png);
}
.business_btn ul li a:hover .business_btn_lwside {
	color: #fff;
}

.business_btn ul li a:hover .business_btn_line {
	background-color: #fff;
}

.business_btn ul li a:hover:before{
	background-color: #36B14A;
}

.business_btn ul li a .business_btn_all .business_btn_upside {
	border: none;
	height: calc(50% - 5px);
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

/* SPのみ ********************** */
@media all and (max-width: 768px) {
	.business_all ul li{
		margin: 2%;
		width: 45%;
	}
	.br::after {
    content: "\A";
    white-space: pre;
}
	
	.business_btn ul li {
		width: 49.5%;
		height: 120px;
		margin: 5px auto;
		text-align: center;
	}
	
	.business_btn ul li a {
		width: 98%;
		height: 120px;
	}
	
	.business_btn ul li a .business_btn_all {
		height: 120px;
		line-height: 1.5em;
		font-size: 13px;
		font-size: clamp(13px, 1.5vw, 18px);
		width: 100%;
		display: block;
	}
	.business_btn ul li a:before {
		height: 120px;
	}
}

@media all and (max-width: 450px) {
	.business_btn ul li{
		display: flex;
		justify-content: center;
		margin: 10px auto;
		width: 80%;
	}
	.business_btn ul li a {
		justify-content: center;
		display: flex;
	}
	.business_btn ul li a .business_btn_all {
		width: 100%;
	}
}


/* 実績のご案内
/* ------------------------------------------------------------------------- */
#performance ul{
	list-style: none;
	margin-left: 0;
}
#performance ul:after {
	content:" ";
	display:block;
	clear:both;
}
#performance ul li{
	float: left;
	width: calc( 98% / 5 );
	margin: 0 2px 5px;
}
#performance ul li a{
	display: block;
	width: 100%;
	background: #36B14A url(image/icon_arrow_white_down.png) no-repeat right 5px center;
	background-size: 15px auto;
	color: #fff;
	text-decoration: none;
	text-align: center;
	min-height: 4em;
	box-sizing: border-box;
	padding-top: 1em;
}
#performance ul li a:hover{
	opacity: 0.7;
}
#performance ul li:nth-child(2){
	line-height: 1.2em;
}
#performance ul li:nth-child(2) a{
	padding-top: 0.9em;
}

#performance h4{
	margin-top: 0;
	padding-top: 70px;
}


#performance table{
	width: 100%;
}
#performance table th:nth-child(1){
	width: 20%;
}
#performance table th:nth-child(2){
	width: 46%;
}
#performance table th:nth-child(3){
	width: 17%;
}

/* SPのみ ********************** */
@media all and (max-width: 768px) {
	#performance ul li{
		float: left;
		width: calc( 98% / 2 );
		margin: 0 2px 5px;
		font-size: 12px;
	}
	#performance ul li:nth-child(even){
		margin-right: 0;
	}
	#performance ul li:nth-child(odd){
		margin-left: 0;
	}
	#performance ul li a{
		background-size: 12px;
		padding-top: 0.8em;
	}
}


/* ------------------------------------------------------------------------- */
/* 働き方改革
/* ------------------------------------------------------------------------- */
.effort > div{
	margin-top: 50px;
}
.effort h5{
	background: #eee;
	padding: 5px 10px;
}
.effort > div:nth-of-type(1),
.effort h5:nth-of-type(1){
	margin-top: 0;
}
.effort h5 span{
	display: block;
	background: #000;
	color: #fff;
	font-size: 11px;
	text-align: center;
	line-height: 1.7em;
	width: 90px;
	padding: 1px 10px;
	margin-top: 5px;
}

body.work #news ul{
	margin-left: 0;
}

/* PCのみ ********************** */
@media all and (min-width: 769px) {
	.effort h5{
		width: 980px;
	}
	
	body.work #news ul{
		margin-top: 60px;
	}
}



/* ------------------------------------------------------------------------- */
/* 採用情報
/* ------------------------------------------------------------------------- */
.text ul.ul_link{
	letter-spacing: -.4em;
	margin-left: 0;
	text-align: center;
}
.ul_link li{
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
}

.ul_link li a{
	display: block;
	width: 400px;
	height: 200px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.4s;
}
.ul_link li a:hover{
	opacity: 0.7;
}

.recruit_btn ul li a{
	display: block;
	width: 400px;
	height: 200px;
	text-align: center;
	text-decoration: none;
	color: #36B14A;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.4s;
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
	z-index: 1;
	border: solid 1px;
}

.recruit_btn ul li a .recruit_btn_all {
	display: table-cell;
	width: 400px;
	height: 200px;
	vertical-align: middle;
	font-size: 14px;
	font-size: clamp(13px, 1.5vw, 18px);
}
.recruit_btn ul li a:before{
	content: "";
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	z-index: -1;
	transition: all 0.4s;
}
.recruit_btn ul li a:after{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 10px;
	bottom: 10px;
	background: url(image/icon_arrow_black.png) no-repeat center center;
}
.recruit_btn ul li a .recruit_btn_lwside {
	display: block;
	color: #36B14A;
	transition: all 0.4s;
	font-size: 14px;
	font-size: clamp(13px, 1.5vw, 18px);
	height: calc(50% - 5px);
}
.recruit_btn ul li a .recruit_btn_line {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #36B14A;
	margin: 5px auto;
	padding: 0;
	width: 80%;
	overflow: hidden;
}

.recruit_btn ul li a:hover {
	color: #fff;
	border-color: #36B14A;
	opacity: 1;
}

.recruit_btn ul li a:hover:after{
	background-image: url(image/icon_arrow_white_green.png);
}
.recruit_btn ul li a:hover span {
	color: #fff;
}

.recruit_btn ul li a:hover .recruit_btn_line {
	background-color: #fff;
}

.recruit_btn ul li a:hover:before{
	background-color: #36B14A;
}

.recruit_btn ul li a .recruit_btn_all .recruit_btn_upside {
	border: none;
	height: calc(50% - 5px);
	display: flex;
	justify-content: center;
	align-items: flex-end;
}


.dl_recruit dt{
	font-weight: bold;
	font-size: 17px;
	color: #36b14a;
	border-bottom: 1px dotted #36b14a;
	padding: 0 5px 5px;
	margin-bottom: 5px;
}
.dl_recruit dd{
	padding-left: 5px;
	padding-top: 8px;
	line-height: 1.7em;
}
.dl_recruit dd .name{
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4em;
	display: inline-block;
	margin-bottom: 5px;
}
.dl_recruit dd a.mail{
	display: inline-block;
	background: #36b14a url(image/icon_mail.png) no-repeat right 10px center;
	background-size: 17px auto;
	color: #fff;
	text-decoration: none;
	padding: 5px 35px 5px 15px;
	margin-top: 5px;
}
.dl_recruit dd a.mail:hover{
	opacity: 0.7;
}

.tb_recruit{
	width: 100%;
}
.tb_recruit th{
	width: 20%;
}

.h5_recruit{
	margin-top: 20px;
}

.mynavi a[href^="http"]:after{
	background-image: none;
}

#recruit_contact{
	padding-top: 70px;
	margin-top: -70px;
}

/* PCのみ ********************** */
@media all and (min-width: 769px) {
	.ul_link li{
		margin: 0 40px;
	}
}
/* SPのみ ********************** */
@media all and (max-width: 768px) {
	.ul_link li a{
		width: 100%;
	}
	
	.tb_recruit th{
		width: 5em;
	}
	.recruit_btn ul li{
		display: flex;
		justify-content: center;
		margin: 10px auto;
	}
	.recruit_btn ul li a {
		justify-content: center;
		display: flex;
	}
}
@media all and (max-width: 450px) {
	.recruit_btn ul li a .recruit_btn_all {
		width: 100%;
	}
}


/* 先輩社員インタビュー
/* ------------------------------------------------------------------------- */
.interview .message{
	background: #ecf9ef url(image/bg_interview_message.png) no-repeat right 15px bottom -4px;
}
.interview .message h5{
	margin-top: 0;
	color: #36B14A;
}
.interview .message p{
	z-index: 5;
}

.interview .interview_question{
	display: flex;
	margin-top: 10px;
}

.interview .interview_question h5{
	margin: 5px 0;
	color: #36B14A;
}

.interview .interview_question_inner{
	width: 50%;
	padding: 20px;
	margin: 5px;
	border: 1px solid #36B14A;
	box-sizing: border-box;
	/*background-color: #EDEDED;*/
}

/* SPのみ ********************** */
@media all and (max-width: 768px) {
	.interview .cf img{
		margin-top:20px;
	}
	.interview h5{
		margin-top: 0;
	}
	
	.interview .interview_question{
		flex-direction: column;
	}
	
	.interview .interview_question_inner{
		width: 100%;
		margin: 5px 0;
	}
}



/* ------------------------------------------------------------------------- */
/* 官公庁・企業・自治体の皆さま / 学生・一般の皆さま
/* ------------------------------------------------------------------------- */
.link_box{
	margin-bottom: 80px;
}

.link_box > div{
	background: #efefef;
}

.link_box h3{
	margin: 0;
	background: #ccc;
	border: none;
	padding: 15px;
	color: #fff;
	text-align: center;
}
.link_box h3 a{
	text-decoration: none;
	color: #fff;
}

.link_box ul{
	list-style: none;
	margin: 0;
	padding: 15px;
}
.link_box ul li a{
	display: block;
	text-decoration: none;
	position: relative;
	padding-left: 19px;
	line-height: 2.5em;
}
.link_box ul li a:before{
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	position: absolute;
	left: 0;
	top: 25%;
	background: url(image/icon_arrow_s_green.png) no-repeat left top;
}
.link_box h3 a:hover,
.link_box ul li a:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
/* PCのみ ********************** */
@media all and (min-width: 769px) {
	.link_box{
		display: table;
		width: 100%;
		padding:0;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-box;
		display:-webkit-flexbox;
		display:-moz-flexbox;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:-ms-flex;
		display:flex;
		-webkit-box-lines:multiple;
		-moz-box-lines:multiple;
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.link_box > div{
		display: inline-block;
		width: 30%;
		margin: 0 2%;
	}
	.link_box > div:first-child{
		margin-left: 0;
	}
	.link_box > div:last-child{
		margin-right: 0;
	}
}
/* SPのみ ********************** */
@media all and (max-width: 768px) {
	.link_box > div{
		margin-bottom: 20px;
	}
}
