@charset "utf-8";

.p-job-information-list-conditions {
	display: grid;
	align-items: center;
	grid-template-columns: calc(112 * var(--width-ratio)) 1fr calc(138 * var(--width-ratio));
	column-gap: calc(32 * var(--width-ratio));
	padding: calc(16 * var(--width-ratio)) calc(32 * var(--width-ratio));
	background-color: #fff;
	border-radius: calc(4 * var(--width-ratio));
	box-shadow: 0 calc(4 * var(--width-ratio)) calc(8 * var(--width-ratio)) rgb(0 0 0 / 8%);
}

.p-job-information-list-conditions__list {
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	column-gap: calc(8 * var(--width-ratio));
}

.p-job-information-list-conditions__list::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: calc(36 * var(--width-ratio));
	height: 100%;
	background: linear-gradient(to right, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 100%) 100%);
}

.p-job-information-list-conditions__list__item {
	min-width: fit-content;
}

.p-job-information-list-conditions__list__item>.c-icon {
	width: calc(16 * var(--width-ratio));
}

.p-job-information-list-conditions__list__item>.c-icon path {
	fill: #274875;
}

@media screen and (max-width: 767px) {
	.p-job-information-list-conditions {
		grid-template-columns: 1fr calc(36 * var(--width-ratio));
		column-gap: calc(8 * var(--width-ratio));
		padding: calc(8 * var(--width-ratio));
	}

	.p-job-information-list-conditions__title {
		display: none;
	}

	.p-job-information-list-conditions__list__item {
		font-size: calc(14 * var(--width-ratio));
		font-weight: 500;
		line-height: 1.42857142857;
	}

	.p-job-information-list-conditions__change>.c-icon {
		width: calc(20 * var(--width-ratio));
	}

	.p-job-information-list-conditions__change__text {
		display: none;
	}
}