@charset "UTF-8";
/* CSS Document */
/* -------------------------------------
Browser：IE11 over
-------------------------------------
01:共通
02:一覧ページ
03:詳細ページ
04:スマホ固定
-------------------------------------*/

/** ================================================================================
01:共通
================================================================================ **/

/** ================================================================================
02:一覧ぺージ
================================================================================ **/
/* -------------------------------------
rec-top-list
-------------------------------------*/
.rec-top-list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0 60px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.rec-top-list li.wrapper{
  width: 450px;
  border: 1px solid #043879;
  position: relative;
}
.rec-top-list li.wrapper:hover{
	border: 1px solid #819BBB;
}
.rec-top-list li.wrapper::after{
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: block;
	border-bottom: 20px solid #043879;
    border-left: 20px solid transparent;
}
.rec-top-list li.wrapper:hover::after{
  content: "";
	border-bottom: 20px solid #819BBB;
}
.rec-top-list li.wrapper a{
}
.rec-top-list li dl{
	padding: 15px 30px;
}
.rec-top-list li dl dt{
  font-size: 1.37em;
  font-weight: bold;
  margin-bottom: 20px;
}
.rec-top-list li dl dd {
  font-size: 1em;
  font-weight: normal;
}
.rec-top-list li .pic {
  position: relative;
}
.rec-top-list li .pic figure{
	height: 300px;
}
.rec-top-list li .pic  ol{
  position: absolute;
  top: 10px;
	left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rec-top-list li .pic  ol li{
  background-color: #043879;
  color: #fff;
  border: none;
  text-align: center;
	padding: 5px 16px;
  margin: 5px;
  font-weight: bold;
}


@media screen and (max-width: 768px){
	.rec-top-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 10px 0 30px;
	}
	.rec-top-list li.wrapper {
		width: 100%;
		margin: 10px 0px;
	}
	.rec-top-list li .pic figure{
		height: 54vw;
	}
	.rec-top-list li .pic img{
		width: 100%;
	}
	.rec-top-list li dl dt {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.rec-top-list li .pic ol {
		left: 20px;
	}
	.rec-top-list li .pic  ol li{
		padding: 5px 10px;
	}
}



/** ================================================================================
03:詳細ぺージ
================================================================================ **/

/* -------------------------------------
セクション
-------------------------------------*/
body main{
	/*margin-top: 85px;*/
	overflow: hidden;
}
body section,
body aside{
	padding: 1px calc((100% - 980px) / 2);
    position: relative;
/*  z-index: 1;*/
}
body section>*,
body aside>*{
	position: relative;
}

@media screen and (max-width: 768px) {
	body main{
		/*margin-top: 50px;*/
	}
	body section,
	body aside{
		width:100%;
		padding: 1px 0;
	}
}


/* -------------------------------------
レイアウト
-------------------------------------*/
.w100vw{
	margin-left: calc( ( 100% - 100vw ) / 2 );
	margin-right: calc( ( 100% - 100vw ) / 2 );
}
.block{
	display: block;
}
.relative{
	position: relative;
}

.flx{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}.flx .inner{
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

@media screen and (max-width: 768px) {
	.w100p .w100vw{
		width: 100vw;
	}
}


/* -------------------------------------
背景
-------------------------------------*/
.bg-wh{
	background: #fff;
}
.bg-gray_d{
	background: rgba(30, 170, 60, 0.9);
}
.bg-gray{
	background: #666;
}
.bg-gray_l{
	background: rgba(180, 150, 70, 1.0);
	color: #fff;
}


/* -------------------------------------
bg-photo
-------------------------------------*/
.bg-photo{
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
}
.bg-photo::before{
    content: "";
    display: block;
    width:100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.5);
    mix-blend-mode:multiply; /*乗算*/
}
.bg-photo>*{
    position: relative;
}

@media screen and (max-width: 768px) {
	.bg-photo{
	}
}


/* -------------------------------------
文字
-------------------------------------*/
/*色*/
.white{
	color: #fff;
}
.gray{
	color: #666;
}


/* -------------------------------------
タイトル
-------------------------------------*/
/*titA*/
.titleA{
	padding: 10px 0;
	text-align: center;
	border-top: 1px solid rgba(109, 92, 88, 1.0);
	border-bottom: 1px solid rgba(109, 92, 88, 1.0);
}

/*titB*/
.titleB{
	font-weight: bold;
	text-align: center;
}
.titleB>*{
	display: block;
}
.titleB span{
	font-size: 0.9rem;
}

/*titC*/
.titleC{
	padding: 10px 0;
	text-align: center;
	color: #fff;
	background: rgba(30, 170, 60, 1.0);
}


/* -------------------------------------
btn
-------------------------------------*/
.btn{
	display: block;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: #333;
	border: 1px solid #333;
}
.btn:hover{
	color: #333;
	background: #fff;
}


/* -------------------------------------
header
------------------------------------
header{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 10px calc( ( 100% - 980px ) / 2 );
	background: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999999;
}
header h1{
	font-size: 12px;
	color: #666;
}
header h1 a{
	display: block;
	margin-top: 6px;
}
header .rec-detail-nav{
	display: none;
}
-*/


/**詳細ページのみ
------------------------------------*/
.pc-anc{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.pc-anc >*{
	width: 230px;
	height: 56px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 10px;
	background: #333;
	color: #fff;
	font-weight: bold;
}
.pc-anc >*:hover{
	opacity: .8;
}

@media screen and (max-width: 768px){
	/*
	header{
		display: block;
		width: 100%;
		padding: 0;
	}
	header h1 span{
		display: none;
	}
	header h1 a{
		margin: 4px 0 4px 5%;
	}
	header h1 img{
		width: 60%;
		max-width: 300px;
	}
	*/

	/**詳細ページのみ
	------------------------------------*/
	.pc-anc{
		display: none;
	}
	
	/* -------------------------------------
	spアンカーリンク
	-------------------------------------*/
	.sp-anc{
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin: 0 auto -4px;
		background:rgba(109, 92, 88, 0.1);
		color: #B49646;
	}
	.sp-anc li+li{
		border-left: 1px solid #fff;
	}
	.sp-anc li a{
		display: block;
		width: 80px;
		padding: 8px 2px;
		font-size: 12px;
		line-height: 1.2em;
		text-align: center;
		/*background: rgba(109, 92, 88, 0.1);*/
	}
	.sp-anc li a::after{
		content: "▼";
		display: block;
		width: 100%;
		font-size: 0.5em;
		line-height: 1.0;
		-webkit-transform: scale(1,0.5);
		transform: scale(1,0.5);
	}
}


/* -------------------------------------
ft-cnt
-------------------------------------*/
.ft-cnt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	background: url(../images/rec_footer-bg.jpg) no-repeat center / cover;
}

@media screen and (max-width: 768px){
	.ft-cnt {
        padding: 0 5%;
	}
}


/* -------------------------------------
footer
-------------------------------------
footer{
	padding-left: 5%;
	padding-right: 5%;
	color: #fff;
	text-align: center;
}
footer .logo{}

.copyright small{
    display: block;
    width:100%;
    padding: 14px 0;
    font-size:12px;
    line-height: 1.0;
}

*/

/* -------------------------------------
asd-採用コンタクト
-------------------------------------*/
.asd-cnt{
	color: #fff;
	text-align: center;
	line-height: 1.2;
	background: url(../images/rec_asd-cnt-bg.jpg) no-repeat center / cover;
}
.asd-cnt p a{
	text-decoration: none;
}
.asd-cnt p span{
	vertical-align: text-top;
}

@media screen and (max-width: 768px){
	.asd-cnt>a{
		text-align: center;
	}
	.asd-cnt img{
		width: 80%;
		max-width: 500px;
	}
}

@media screen and (max-width: 768px) {
	.asd-cnt {
		padding: 0 5%;
	}
	.asd-cnt p a{
		font-size: 7vw;
	}
}


/* -------------------------------------
【スマホのみ】フッター固定ボタン
-------------------------------------*/
@media screen and (max-width: 768px) {
    .fix-btn{
        width: 100vw;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
        position: fixed;
        left: 0;
        bottom: 0;
        -webkit-box-shadow: 0 -1px 5px rgba(0,0,0,.3);
        box-shadow: 0 -1px 5px rgba(0,0,0,.3);
        z-index: 900;
    }
    .fix-btn >*{
		width: 28%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		height: 50px;
        font-size: 12px;
		font-weight: bold;
        text-align: center;
		line-height: 1.2;
        background: #eee;
    }
	.fix-btn img{
		height: 14px;
		margin-bottom: 4px;
	}
	.fix-btn .btn1{
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		font-size: 14px;
	}
	.fix-btn .btn1 em{
		margin-top: 2px;
		font-size: 10px;
	}
    .fix-btn .btn2{
		color: #fff;
        background: #666;
    }
    .fix-btn .btn3{
		color: #fff;
        background: #333;
    }
	
	/*募集職種一覧*/
	.fix-menu{
		display: none;
		width: 100vw;
		height: auto;
		padding: 10px 5vw;
		background: #333;
		position: absolute;
		left: 0;
		bottom: 50px;
		z-index: 1;
	}
	.fix-menu li a{
		display: block;
		width: 100%;
		margin: 10px 0;
		padding: 14px 20px 14px 10px;
		font-size: 14px;
		line-height: 1.2;
		background: #fff;
	}
	.fix-menu li a::after{
		content: "\e5cc";
		font-family: 'Material Icons';
		line-height: 1.0;
		position: absolute;
		right: 20px;
		top: auto;
		bottom: auto;
	}
}




/** ================================================================================
  02.テンプレート
================================================================================ **/
/* -------------------------------------
bln-tit
-------------------------------------*/
.bln-tit{
	padding: 14px;
	color: rgba(30, 170, 60, 1.0);
	font-weight: bold;
	text-align: center;
	background: #fff;
	position: relative;
}
.bln-tit::after{
	content: "▼";
	display: block;
	width: 100%;
	font-size: 1.5rem;
	color: #fff;
	text-align: center;
	line-height: 1.0;
	position: absolute;
	left: 0;
	bottom: -0.8em;
}

.bln-tit.Gr{
	color: #fff;
	background: rgba(30, 170, 60, 1.0);
}.bln-tit.Gr:after{
	color:  rgba(30, 170, 60, 1.0);
}
.bln-tit.Br{
	color: #fff;
	background: rgba(109, 92, 88, 1.0);
}.bln-tit.Br:after{
	color:rgba(109, 92, 88, 1.0);
}
.bln-tit.Go{
	color: #fff;
	background: rgba(180, 150, 70, 1.0);
}.bln-tit.Go:after{
	color:rgba(180, 150, 70, 1.0);
}

@media screen and (max-width: 768px) {
	.bln-tit{
		padding: 10px;
	}
}


/* -------------------------------------
i-t-clmlist
-------------------------------------*/
.i-t-clmlist li{
	margin-bottom: 30px;
}
.i-t-clmlist li p{
	margin-top: 10px;
}
.i-t-clmlist li p strong{
	display: block;
}

@media screen and (max-width: 768px) {
	.i-t-clmlist li{
		margin-bottom: 20px;
	}
}


/* -------------------------------------
i-bgt-clmlist
-------------------------------------*/
.i-bgt-clmlist li{
	margin-bottom: 30px;
}
.i-bgt-clmlist li p {
	padding: 20px;
	background: #fff;
}

@media screen and (max-width: 768px) {
	.i-bgt-clmlist li{
		margin-bottom: 20px;
	}
	.i-bgt-clmlist li p {
		padding: 14px;
	}
}


/* -------------------------------------
bg-wrapper
-------------------------------------*/
.bg-wrapper{
    padding: 30px 60px;
    background: rgba(30, 170, 60, 1.0);
	border-radius: 10px;
	color: #fff;
}
/*.bg-wrapper.bg-wh{
	background: #fff;
}*/

@media screen and (max-width: 768px) {
	.bg-wrapper{
		padding: 30px;
	}
}


/* -------------------------------------
cnt-wh
-------------------------------------*/
.cnt-wh{
    padding: 30px 60px;
    background: rgba(255,255,255,.8);
}

@media screen and (max-width: 768px) {
	.cnt-wh{
		padding: 30px;
	}
	body .cnt-wh>*{
		width: 100%;
	}
}


/* -------------------------------------
bdr-tb
-------------------------------------*/
.bdr-tb{
	padding: 20px 0;
	border-top: 1px solid rgba(109, 92, 88, 1.0);
	border-bottom: 1px solid rgba(109, 92, 88, 1.0);
}


/* -------------------------------------
obi
-------------------------------------*/
.obi{
	padding: 20px;
	color: #fff;
	text-align: center;
	background:rgba(30, 170, 60,1.0);
}

@media screen and (max-width: 768px){
	.obi {
		padding: 10px 10%;
	}
}


/* -------------------------------------
maru-list
-------------------------------------*/
.maru-list li{
	margin-bottom: 10px;
	padding-left: 1em;
	text-indent: -1em;
}
.maru-list li::before{
	content: "●";
	color:  #fff;
}
.maru-list li mark{
	font-weight: bold;
}



/** ================================================================================
  03:ページ
================================================================================ **/

/* -------------------------------------
rec-hero
-------------------------------------*/
.rec-hero{
	width: 100%;
	height: 600px;
	background: url(../images/rec_main-img.jpg) no-repeat center / cover;
	position: relative;
	z-index: 1;
}

.rec-hero p{
	width: 100vw;
	padding: 30px;
	position: absolute;
	left: 0;
	top: 0;
}

.rec-hero p::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(109, 92, 88, 1.0);
	mix-blend-mode: multiply;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

@media screen and (max-width: 768px) {
	.rec-hero{
		height: 64vh;
	}
}

@media screen and (max-width: 480px) {
	.rec-hero p{
		font-size: 16px;
		top: 0;
		padding: 15px;
	}
}


/* -------------------------------------
概要
-------------------------------------*/
.sec-topics .catch-wrapper .catch_L{
	width: 580px;
}
.sec-topics .catch-wrapper .catch_L .catch1-wrap{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	line-height: 1.2;
}
.sec-topics .catch-wrapper .catch_L .catch1-wrap .catch1{
	margin-right: 20px;
}
.sec-topics .catch-wrapper .catch_L .catch1-wrap .catch1 li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	border-radius: 50%;
	text-align: center;
	background-color: rgba(30, 170, 60, 1.0);
}
.sec-topics .catch-wrapper .catch_L .pay span{
	font-size: 0.7em;
}
/*appeal-list*/
.sec-topics .appeal-list{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	padding: 20px 0;
}
.sec-topics .appeal-list li{
    margin: 0 6px 6px;
    padding: 10px 16px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background: rgba(180, 150, 70, 1.0);
    border-radius: 5px;
}
.sec-topics .appeal-list li span{
	font-size: 0.8em;
}
.sec-topics .catch-wrapper figure{
	width: calc(370px + ((100vw - 980px) / 2));
	max-width: 630px;
	height: 430px;
	margin-left: 30px;
	margin-right: calc((100vw - 980px) / 2 * -1);
	margin-bottom: 20px;
}

@media screen and (max-width: 768px){
	.sec-topics .catch-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
	}
	.sec-topics .catch-wrapper .catch_L{
		width: 100%;
	}
	.sec-topics .catch-wrapper .catch_L .catch1-wrap .catch1 li{
		width: 70px;
		height: 70px;
		font-size: 1rem;
	}
	.sec-topics .catch-wrapper .catch_L .catch1-wrap >div{
		width: 100%;
		max-width: 350px;
		margin-top: 10px;
	}
	.sec-topics .catch-wrapper .catch_L .pay{
		font-size: 1.2rem;
	}

	/*appeal-list*/
	.sec-topics .appeal-list{
		padding: 0 0 10px;
	}
	.sec-topics .appeal-list li{
		margin: 0 4px 6px;
		padding: 4px 8px;
		font-size: 13px;
	}
	
	.sec-topics .catch-wrapper figure{
		width: 100%;
		max-width: 500px;
		height: 70vw;
		max-height: 380px;
		margin: 20px auto;
	}
}


/* -------------------------------------
会社の強み & PR
-------------------------------------*/

/* -------------------------------------
福利厚生
-------------------------------------*/

/* -------------------------------------
代表者メッセージ
-------------------------------------*/
.sec-ceo figure{
	width: 100%;
	max-width: 340px;
}


/* -------------------------------------
求める人材
-------------------------------------*/

/* -------------------------------------
先輩インタビュー
-------------------------------------*/
/*インタビュー メイン*/
.intv-main{
	position: relative;
}
.intv-main figure{
	width: 860px;
	height: 380px;
	overflow: hidden;
}
.intv-main dl {
	width: 260px;
	height: 220px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 24px;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.intv-main dl dd i{
	margin-top: 2px;
	font-size: 0.5em;
}


/*インタビュー*/
.intv-list dl {
	margin-bottom: 50px;
}
.intv-list dl dt {
	margin-bottom: 15px;
	text-indent: -1.2em;
	padding-left: 1.2em;
	padding-bottom: 10px;
	font-weight: bold;
	border-bottom: 1px solid rgba(30, 170, 60, 1.0);
	color: rgba(30, 170, 60, 1.0);
}
.intv-list dl dt::before{
	content: "Q.";
}

/*求職者にメッセージ*/
.intv-msg figure{
	width: 160px;
	height: 160px;
	border-radius: 50%;
	overflow: hidden;
}


@media screen and (max-width: 768px) {
	/*インタビュー メイン*/
	.intv-main{
	}
	.intv-main figure{
		width: 100%;
		height: 54vw;
	}
	.intv-main dl {
		width: 60%;
		max-width: 300px;
		height: auto;
		padding: 14px;
		position: static;
		-webkit-transform: translate(0,0);
		transform: translate(0,0);
		margin: -60px 0 0 46%;
	}
	.intv-main dl dt {
		font-size: 0.9rem;
	}
	.intv-main dl dd i{
		font-size: 0.7rem;
	}
	.intv-main dl dd+dd {
		margin-top: 10px;
		font-size: 0.8rem;
	}
	
	/*インタビュー*/
	.intv-list dl {
		margin-bottom: 24px;
	}
	.intv-list dl dt{
		margin-bottom: 10px;
	}
}


/* -------------------------------------
仕事内容
-------------------------------------*/
/*job*/
.job{
}
.job figure{
	width: 550px;
}
.job p{
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 30px;
}


@media screen and (max-width: 768px){
	/*job*/
	.job{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
	}
	.job figure{
		width: 100%;
	}
	.job p{
		width: 100%;
		padding: 20px 26px;
	}
	.sec-job .maru-list li{
		width: 95%;
	}
}


/* -------------------------------------
一日の仕事の流れ
-------------------------------------*/
.sche-wrapper{
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.sche-wrapper figure{
    width: 24%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.sche-wrapper figure img{
    width: 100%;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-bottom: 10px;
}

/*sche-list*/
.sche-list{
    width: 60%;
}
.sche-list li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.sche-list time{
    width: 4.5em;
    font-size: 1.5em;
    color: rgba(30, 170, 60, 1.0);
}
.sche-list dl{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 0 50px 50px;
    position: relative;
}
.sche-list dl::before{
    content: "";
    width: 1px;
    height: 100%;
    background: rgba(30, 170, 60, 1.0);
    position: absolute;
    left: 0;
    top: 18px;
}
.sche-list li:last-child dl::before{
    display: none;
}
.sche-list dl::after{
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid rgba(30, 170, 60, 1.0);
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: 7px;
}
.sche-list dl dt{
    margin-bottom: 10px;
    font-size: 1.2em;
    color: rgba(30, 170, 60, 1.0);
	font-weight: bold;
}

@media screen and (max-width: 768px) {
    .sche-wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .sche-wrapper figure{
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .sche-wrapper figure img{
        width: 46%;
        margin: 0 2% 10px;
    }

    /*sche-list*/
    .sche-list{
        width: 100%;
    }
    .sche-list li{
    }
    .sche-list time{
        font-size: 1.0em;
    }
    .sche-list dl{
        padding: 0 0 30px 30px;
    }
    .sche-list dl::before{
        top: 18px;
    }
    .sche-list dl::after{
        width: 12px;
        height: 12px;
        left: -7px;
        top: 7px;
    }
    .sche-list dl dt{
        margin-bottom: 4px;
        font-size: 1.1em;
    }
    .sche-list dl dd{
        font-size: 0.9em;
    }
}


/* -------------------------------------
製品・サービス紹介
-------------------------------------*/

/* -------------------------------------
研修・教育体制
-------------------------------------*/
.sec-training{
	background-image: url(../images/rec_bg01.jpg);
}


/* -------------------------------------
キャリアプラン
-------------------------------------*/



/* -------------------------------------
募集要項
-------------------------------------*/
/*アピールポイント*/
.appeal-point{
	margin: 10px 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.appeal-point li{
	margin: 0 6px 6px 0;
	padding: 5px 10px;
	color:rgba(30, 170, 60,1);
	font-size: 14px;
	font-weight: bold;
	background: rgba(30, 170, 60,0.1);
	border: 1px solid  rgba(30, 170, 60,0.5);
	border-radius: 5px;
}

@media screen and (max-width: 768px) {
	.appeal-point li{
		padding: 3px 10px;
		font-size: 12px;
	}
}



/* -------------------------------------
エントリー
-------------------------------------*/
#entry{
}


/**================================================================================
エントリーフォーム
================================================================================**/
#entry .form{
}
.form table{
	border: 1px solid rgba(30, 170, 60, 1.0);
	box-shadow: 0 0 0 10px rgba(30, 170, 60, .1);
}
.form table th,
.form table td{
	border-top: 1px solid rgba(30, 170, 60, 1.0);
	border-bottom: 1px solid rgba(30, 170, 60, 1.0);
}
.form table th{
	background: rgba(30, 170, 60, 0.1);
	color: rgba(30, 170, 60, 1.0);
}

.sbtn input{
	background: rgba(30, 170, 60, 1.0);
}

/**================================================== 
色変更
==================================================*/
.tableB table,
.tableC talbe{
	border-top: 1px dotted #ccc;
}
.tableB th,
.tableC th{
	background: rgba(30, 170, 60 , 1.0);
	color: #fff;
}
.tableB tr,
.tableC tr{
	border-bottom: 1px dotted #ccc;
}












