@charset "UTF-8";

/*******************************
 
れすぽんCss
 
*******************************/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
@media only screen and (min-width: 750px) {
.pc { display: block !important; }
.sp { display: none !important; }
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/* br_pc　pc時改行 */
/* br_sp　sp時改行 */
@media screen and (min-width: 750px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 750px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}



/*******************************
 
下層ヘッダー
 
*******************************/

.mainttl{
	background: url(../images/under_hbg.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	height:200px;
	margin-bottom: 50px;
}
/*.mainttl::before{
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}*/
.mainttl .txt{
    width: 100%;
    max-width: 988px;
    position: absolute;
    top:40%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    
}
.mainttl h1,p{
  color: #fff;
  font-size: 24pt;
}

@media only screen and (max-width: 750px) {
	.mainttl{
		height:100px;
	}
	.mainttl h1,p{
	  font-size: 18pt;
	}
}


/*******************************
 
RecruitCss
 
*******************************/
.con_wrap{
	width: 820px;
	margin: 0 auto;
	display: flex;
}
.block-flex{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto 50px;
}
.tab-btn {
    height: 70px;
	width: 232px;
    display: block;
    text-align: center;
    background-color: #1c9b74;
    font-size: 16px;
    color: #FFF;
    border-radius: 7px;
    padding-top: 23px;
    clear: both;
    margin: 0 10px;
    text-decoration: none;
}
.tab-btn:hover{
	opacity: 0.5;
}
.full-time, .part-time{
	margin-bottom: 130px;
}
.flex-list {
    text-align: left;
    overflow: hidden;
    padding: 15px;
    margin: 0;
}
.flex-list dd, .flex-list dt{
	margin: 0;
	color: #2e4840;
	letter-spacing: 1px;
}

@media only screen and (max-width: 750px) {
	.block-flex{
		justify-content: space-between;
	}
	.tab-btn {
		width: 170px;
		margin: 0;
	}
	.flex-list dd{
		padding-top: 5px;
	}
}

