@charset "utf-8";

/* 職種一覧
============================ */
.joblist {
	line-height: 2;
}
.joblist .accordion_icon {
	margin-bottom: 2rem;
}
.joblist .jobWrap .category {
	font-size: 1.6rem;
	font-weight: 700;
	background: #393939;
	color: #fff;
	border: solid 1px #393939;
	padding: 1rem 4rem 1rem 1.5rem;
	}
	@media screen and (min-width:768px) {
	.joblist .jobWrap .category {
		font-size: 1.8rem;
		padding: 1.2rem 5rem 1.2rem 2rem;
	}
}
.jobWrap ul {
	margin-bottom: 5rem;
}
.jobWrap ul li:nth-child(even) {
	background:#fffdfd;
}
.jobWrap ul li a {
	position: relative;
	display: block;
	text-decoration: none;
	color: #000;
	border-bottom: solid 1px #e5e5e5;
	padding: 1.2rem 4rem 1.2rem 1.5rem;
	transition:all 0.3s;
	}
	@media screen and (min-width:768px) {
	.jobWrap ul li a {
		padding: 1.6rem 6rem 1.6rem 2rem;
	}
}
.joblist ul li a:hover {
	background: #f3f3f3;
}
.joblist ul li a:before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px;
	margin: auto;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #ee232f;
	border-right: 2px solid #ee232f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	}
	@media screen and (min-width:768px) {
	.joblist ul li a:before {
		right: 20px;
		width: 10px;
		height: 10px;
	}
}
.joblist ul li p {
		padding: 0.3rem 0;
}
.joblist ul li .jobName,
.joblist ul li .jobArea,
.joblist ul li .jobDescription {
	padding:0;
}
.joblist ul li .jobName {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	}
	@media screen and (min-width:768px) {
	.joblist ul li .jobName {
		font-size: 1.8rem;
	}
}
.joblist ul li .jobArea {
	font-size: 1.2rem;
	line-height: 1.5;
	margin: 0.5rem 0 0;
/*	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;*/
	}
	@media screen and (min-width:768px) {
	.joblist ul li .jobArea {
		font-size: 1.4rem;
	}
}
/*
.joblist ul li .jobArea br:first-of-type{
	display:none;
}*/
.joblist ul li .jobDescription {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.joblist ul li .new {
	font-size: 1.1rem;
	color: #ee232f;
	margin-left: 1rem;
	border:1px solid #ee232f;
	padding:0.1rem 0.6rem;
}
@media screen and (min-width:768px) {
	.joblist ul li .new {
		font-size: 1.2rem;
		padding:0.1rem 0.6rem;
	}
}
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, .jobWrap ul li a {
	line-height: 0;;
	}
}
/* アコーディオン */

dl.accordion_icon {
	width: 100%;
	text-align: left;
}
dl.accordion_icon dt {
	cursor: pointer;
}
dl.accordion_icon dt span {
	position: relative;
	display: block;
}
dl.accordion_icon dt span::before,
dl.accordion_icon dt span::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -22px;
	display: block;
	width: 2px;
	height: 12px;
	background: #fff;
	margin-top: -6px;
	}
	@media screen and (min-width:768px) {
	dl.accordion_icon dt span::before,
	dl.accordion_icon dt span::after {
		right: -24px;
	}
}
dl.accordion_icon dt span::before {
	z-index: 1;
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
}
dl.accordion_icon dt span::after {
	transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
dl.accordion_icon dt.active span::before {
	opacity: 0;
	transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
dl.accordion_icon dt.active span::after {
	background: #fff;
}

