@charset "utf-8";

.jobtype:not(:first-of-type) {
	margin-top: 30px;
}

.jobtype > * {
	font-size: 16rem;
	font-weight: 700;
	line-height: 1;
	padding: .4em .75em .525em;
	background: #777;
	display: inline-block;
	border-radius: 3px;
}

.jobtype.-blue > * {
	background: #5E9CFF;
}

.jobtype.-orange > * {
	background: #FED923;
}

.jobtype + * {
	margin-top: 15px;
}

.l-entrys {
	display: flex;
}

.l-entrys > * {
	width: calc(100% / 2);
	padding: 0 12px;
}

.l-entrys > * > * {
	margin: 24px 0 0;
}

.l-entrys > * > * > * {
	color: var(--black);
	text-decoration: none;
	width: 100%;
}

.l-table > .head + .cell .u-list li > span:first-of-type {
	white-space: nowrap;
	padding: 0 .25em 0 0;
}

.l-process_items li {
	padding: 0 0 30px;
	display: flex;
	position: relative;
}

.l-process_items li i {
	color: #52778B;
	font-family: var(--font_montserrat);
	font-size: 29rem;
	font-weight: 700;
	width: 30px;
	display: flex;
}

.l-process_items li i + span {
	width: calc(100% - 30px);
	padding: .5em 0 0;
}

.l-process_items li:after {
	content: '';
	width:0;
	height:0;
	border-style:solid;
	border-width: 10px 10px 0 10px;
	border-color: var(--green_dark) transparent transparent transparent;
	position: absolute;
	bottom: 10px;
	left: 5px;
}

.l-process_items li:last-child:after {
	display: none;
}

.l-faqs .item {
	padding: 3px;
	background: #EDF1F3;
	border-radius: 5px;
}

.l-faqs .item:not(:first-child) {
	margin-top: 8px;
}

.l-faqs .query {
	min-height: 86px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 75px 0 120px;
	position: relative;
	cursor: pointer;
}

.l-faqs .query:before {
	content: 'Q';
	color: #C9D6DC;
	font-family: var(--font_montserrat);
	font-size: 50rem;
	font-weight: 700;
	margin: .25em 0 0 40px;
	position: absolute;
	top: 0;
	left: 0;
}

.l-faqs .query .u-text {
	font-size: 18rem;
	font-weight: 700;
	line-height: 1.5;
}

.l-faqs .query .statetus {
	width: 20px;
	height: 20px;
	display: block;
	border-radius: 100vmax;
	background: var(--black);
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%);
	transition: .2s var(--easing);
}

.l-faqs .query .statetus:before,
.l-faqs .query .statetus:after {
	content: '';
	width: 8px;
	height: 1px;
	background: var(--white);
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: .4s var(--easing);
}

.l-faqs .query .statetus:after {
	transform: translate(-50%,-50%) rotate(90deg);
}

.l-faqs .query.active .statetus:after {
	transform: translate(-50%,-50%) rotate(180deg);
}

.no-touch .l-faqs .query:hover .statetus {
	background: var(--green);
}

.no-touch .l-faqs .query:hover .statetus:before,
.no-touch .l-faqs .query:hover .statetus:after {
	background: var(--black);
}

.l-faqs .answer {
	background: var(--white);
	border-radius: 3px;
	position: relative;
	display: none;
}

.l-faqs .answer .inner:before {
	content: 'A';
	color: #52778B;
	font-family: var(--font_montserrat);
	font-size: 50rem;
	font-weight: 700;
	margin: .25em 0 0 40px;
	position: absolute;
	top: 0;
	left: 0;
}

.l-faqs .answer .inner {
	padding: 30px 75px 30px 120px;
	position: relative;
}

.l-faqs .answer.-green .inner:before {
	color: #04D49C;
}

.l-faqs .answer.-pink .inner:before {
	color: #FF5E79;
}

.l-faqs .answer .u-text {
	font-weight: 500;
}

.l-faqs .answer .u-text .u-icon_arrow:after {
	width: 1.2em;
	height: 1.2em;
	margin-bottom: .1em;
	margin-left: .2em;
}

.l-faqs .answer .u-text .u-icon_arrow:hover:after {
	background-image: url("/recruit/fresh/_assets/images/common/arrow_01_blue.svg");
}

.l-faqs .answer .u-text a[target='_blank']:after {
	margin-inline: .25em;
	background-image: url("/recruit/fresh/_assets/images/common/icon_blank_01_blue.svg");
}










