@charset "utf-8";

/*=============================================================================
  採用情報ページ専用CSS
=============================================================================*/

/* -----------------------------------------------
   ヒーローセクション
----------------------------------------------- */
.recruit-hero {
	position: relative;
	background: linear-gradient(135deg, #1a3a6e 0%, #3b6aba 50%, #5a9bd6 100%);
	color: #ffffff;
	text-align: center;
	padding: 80px 5% 60px;
	overflow: hidden;
}
.recruit-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: rgba(255,255,255,0.05);
	border-radius: 50%;
}
.recruit-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: rgba(255,255,255,0.03);
	border-radius: 50%;
}
.recruit-hero h2 {
	color: #ffffff;
	font-size: 3.5em;
	letter-spacing: 0.15em;
	margin-bottom: 0.3em;
}
.recruit-hero h2 span {
	color: rgba(255,255,255,0.8);
}
.recruit-hero .recruit-title {
	font-size: 1.6em;
	margin: 0 10px 15px;
	line-height: 1.5;
}
.recruit-hero .recruit-title i {
	margin-right: 8px;
}
.recruit-hero .recruit-badges {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin: 25px 0;
	padding: 0;
	list-style: none;
}
.recruit-hero .recruit-badges li {
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50px;
	padding: 8px 24px;
	font-size: 1em;
	font-weight: normal;
	letter-spacing: 0.05em;
}
.recruit-hero .recruit-lead {
	max-width: 800px;
	margin: 20px auto 0;
	font-size: 1.05em;
	line-height: 1.9;
	opacity: 0.95;
}

/* -----------------------------------------------
   画像プレースホルダー共通
----------------------------------------------- */
.recruit-image-placeholder {
	background: linear-gradient(135deg, #e8eef6 0%, #d0ddf0 100%);
	/*border: 2px solid #9bb5d6;*/
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #6a8bb5;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.recruit-image-placeholder i {
	font-size: 3em;
	margin-bottom: 10px;
	opacity: 0.5;
}
.recruit-image-placeholder span {
	font-size: 0.85em;
	display: block;
	color: #6a8bb5;
}

/* -----------------------------------------------
   職場イメージセクション
----------------------------------------------- */
.recruit-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 1080px;
	margin: 0 auto;
}
.recruit-gallery .recruit-image-placeholder {
	height: 260px;
}
.recruit-gallery img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 12px;
}

/* -----------------------------------------------
   求人概要テーブル強化
----------------------------------------------- */
.recruit-detail-table {
	max-width: 960px;
	margin: 0 auto 30px;
}
.recruit-detail-table .ta1 th {
	background: rgba(59,106,186,0.08);
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	color: #3b6aba;
}
.recruit-detail-table .ta1 th i {
	margin-right: 4px;
	color: #3b6aba;
}
.recruit-detail-table .ta1 td ul {
	margin-bottom: 5px;
	padding-left: 20px;
}
.recruit-detail-table .ta1 td ul li {
	margin-bottom: 2px;
}
.recruit-detail-table .salary-amount {
	font-size: 1.3em;
	font-weight: 900;
	color: #3b6aba;
	display: inline-block;
	font-weight: normal;
}
.recruit-detail-table .salary-note {
	font-size: 0.9em;
	color: #777;
}

/* -----------------------------------------------
   応募資格カード
----------------------------------------------- */
.recruit-req-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}
.recruit-req-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	border-top: 4px solid #3b6aba;
}
.recruit-req-card h3 {
	font-size: 1.3em;
	margin-bottom: 0.8em;
	color: #3b6aba;
}
.recruit-req-card h3 i {
	font-size: 1.2em;
	margin-right: 8px;
}
.recruit-req-card ul {
	padding-left: 20px;
	margin-bottom: 10px;
}
.recruit-req-card ul li {
	margin-bottom: 6px;
	line-height: 1.8;
}
.recruit-req-card .note {
	font-size: 0.9em;
	color: #888;
	margin: 5px 0 0 0;
}

/* -----------------------------------------------
   ポイントカード
----------------------------------------------- */
.recruit-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto;
}
.recruit-point-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 30px 24px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}
.recruit-point-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(59,106,186,0.15);
}
.recruit-point-card .point-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b6aba, #5a9bd6);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6em;
	margin: 0 auto 16px;
}
.recruit-point-card h4 {
	font-size: 1.1em;
	color: #3b6aba;
	margin: 0 0 10px;

	line-height: 1.6;
}
.recruit-point-card p {
	font-size: 0.9em;
	color: #777;
	line-height: 1.8;
	margin: 0;
}

/* -----------------------------------------------
   選考フロー
----------------------------------------------- */
.recruit-flow {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
	max-width: 900px;
	margin: 0 auto;
}
.recruit-flow-step {
	flex: 1;
	text-align: center;
	position: relative;
	padding: 0 10px;
}
.recruit-flow-step .step-circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #ffffff;
	border: 3px solid #3b6aba;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2em;
	color: #3b6aba;
	margin: 0 auto 16px;
	box-shadow: 0 4px 15px rgba(59,106,186,0.12);
}
.recruit-flow-step .step-num {
	font-size: 0.75em;
	font-weight: 900;
	color: #3b6aba;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}
.recruit-flow-step h3 {
	font-size: 1.1em;
	margin: 0 0 4px;
	color: #333;
}
.recruit-flow-step p {
	font-size: 0.85em;
	color: #888;
	margin: 0;
}
.recruit-flow-arrow {
	display: flex;
	align-items: center;
	padding-top: 38px;
	font-size: 1.5em;
	color: #3b6aba;
	flex-shrink: 0;
}

/* -----------------------------------------------
   CTAバナー
----------------------------------------------- */
.recruit-cta {
	background: linear-gradient(135deg, #3b6aba 0%, #2a5298 100%);
	color: #ffffff;
	text-align: center;
	padding: 50px 5%;
	position: relative;
}
.recruit-cta h2 {
	color: #ffffff;
	font-size: 2.2em;
	margin-bottom: 0.5em;
}
.recruit-cta h2 span {
	color: rgba(255,255,255,0.7);
}
.recruit-cta p {
	font-size: 1.1em;
	opacity: 0.9;
	margin-bottom: 30px;
}
.recruit-cta .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
.recruit-cta .cta-btn {
	display: inline-block;
	padding: 14px 40px;
	border-radius: 50px;
	font-size: 1.1em;
	font-weight: bold;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
}
.recruit-cta .cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.recruit-cta .cta-btn-primary {
	background: #ffffff;
	color: #3b6aba;
}
.recruit-cta .cta-btn-secondary {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255,255,255,0.6);
}
.recruit-cta .cta-btn-secondary:hover {
	background: rgba(255,255,255,0.1);
	color: #ffffff;
}

/* -----------------------------------------------
   セクション見出し装飾
----------------------------------------------- */
.recruit-section {
	padding: 60px 5%;
}
.recruit-section h2 {
	margin-bottom: 1.2em;
}
.recruit-section h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: #3b6aba;
	margin: 12px auto 0;
	border-radius: 2px;
}

/* -----------------------------------------------
   レスポンシブ
----------------------------------------------- */
@media screen and (max-width: 900px) {
	.recruit-hero {
		padding: 60px 5% 40px;
	}
	.recruit-hero h2 {
		font-size: 2.5em;
	}
	.recruit-hero .recruit-title {
		font-size: 1.3em;
	}
	.recruit-req-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.recruit-points {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.recruit-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.recruit-gallery .recruit-image-placeholder {
		height: 180px;
	}
	.recruit-flow {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	.recruit-flow-arrow {
		transform: rotate(90deg);
		padding-top: 0;
		font-size: 1.3em;
	}
	.recruit-flow-step .step-circle {
		width: 80px;
		height: 80px;
		font-size: 1.8em;
	}
}

@media screen and (max-width: 500px) {
	.recruit-hero h2 {
		font-size: 2em;
	}
	.recruit-hero .recruit-title {
		font-size: 1.1em;
	}
	.recruit-hero .recruit-badges li {
		font-size: 0.85em;
		padding: 6px 16px;
	}
	.recruit-points {
		grid-template-columns: 1fr;
	}
	.recruit-gallery {
		grid-template-columns: 1fr;
	}
	.recruit-gallery .recruit-image-placeholder {
		height: 200px;
	}
	.recruit-detail-table .ta1 th {
		width: 100%;
		display: block;
	}
	.recruit-detail-table .ta1 td {
		display: block;
		width: 100%;
	}
	.recruit-cta .cta-btn {
		width: 100%;
		text-align: center;
	}
}
