/* ========================================
CAREER
======================================== */

.career {
	position: relative;
	overflow: hidden;
	padding: 120px 20px;
}

.career_bg {
	position: absolute;
	inset: 0;
	background: url(/wp-content/themes/mytheme/img/career_bg.jpg) center center / cover no-repeat;
	filter: blur(6px);
	transform: scale(1.08);
	z-index: 0;
}

.career::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .25);
	z-index: 1;
}

.career::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 30%;
	bottom: 0;
	left: 0;
	pointer-events: none;
	background: #fff;
	z-index: 1;
}

/* パネル */

.career_inner_item {
	position: relative;
	z-index: 2;
	width: min(670px, 100%);
	margin: auto;
	background: rgba(20, 20, 20, .55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	padding: 60px 70px;
}

/* タイトル */

.career_title {
	text-align: center;
	color: #fff;
	font-size: clamp(3rem, 3vw, 3.5rem);
	letter-spacing: .08em;
	margin-bottom: 50px;
	position: relative;
}

.career_title::after {
	content: "";
	width: 160px;
	height: 4px;
	background: #fff;
	border-radius: 50px;
	position: absolute;
	left: 50%;
	bottom: -18px;
	transform: translateX(-50%);
}

/* テーブル */

.career-table {
	width: 100%;
	border-collapse: collapse;
	color: #fff;
	font-weight: 400;
	font-size: 1.5rem;
}

.career-table th,
.career-table td {
	border: 2px solid rgba(255, 255, 255, .9);
	padding: 22px 24px;
	text-align: center;
	vertical-align: middle;
}

.career-table th {
	font-weight: 400;
	font-size: 1.5rem;
}

.career-table td:first-child {
	width: 28%;
	white-space: nowrap;
}

.career-table td:last-child {
	width: 72%;
	line-height: 2;
}
@media screen and (max-width: 900px) {
	.career {
		padding: 80px 20px;
	}
	.career_inner_item {
		padding: 40px 20px;
		max-width: none;
		width: auto;
	}
	.career-table th,
	.career-table td {
		padding: 10px 20px;
	}
}
