@charset "UTF-8";

.sub-block {
	padding: 20px 0 100px;
}
.recruit-fb .page-ttl + .content {
	margin-bottom: 100px;
}
.recruit-fb h2 {
	font-size: 24px;
	padding: 0 0 20px;
	text-align: center;
}
.table01 {
	width: 100%;
	position: relative;
	margin: 0 auto;
}
.table01 th {
	width: 25%;
	color: #01916D;
	border-bottom: solid 1px #01916D;
	padding: 20px 15px;
	text-align: left;
}
.table01 td {
	width: 75%;
	border-bottom: solid 1px #EBEBEB;
	padding: 20px 15px;
	text-align: left;
}
.tech-box .table01 {
	margin-top: 30px;
}
.tech-box {
	width: 100%;
	margin: 0 0 50px;
	background: #fff;
	filter: drop-shadow(0px 0px 6px rgba(51, 83, 76, 0.3));
	padding: 30px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.tech-box:before {
	width: 24px;
	height: 24px;
	background-image: url("https://assets-fb-rn.fujifilm.com/files/2025-04/e95381edf0b19daea7bbe980e29b8583/box-deco02.svg");
	left: 0;
	top: 0;
	z-index: 2;
}
.tech-box .ttl {
	font-size: 24px;
	color: #01916D;
}
.counter-list {
  list-style: none; /* デフォルトのリストスタイルを無効化 */
  counter-reset: item; /* カウンターをリセット */
  padding-left: 0; /* 左の余白を調整（好みで変更） */
}
.counter-list li {
  counter-increment: item; /* カウンターを増加 */
  position: relative;
  padding-left: 1.5em; /* 数字のためのスペース */
}

.counter-list li::before {
  content: counter(item) "."; /* 数字 + ピリオド */
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
	.sub-block {
		padding: 20px 0 50px;
	}
	.recruit-fb h2 {
		font-size: 18px;
		padding: 0 0 20px;
		text-align: center;
	}
	.table01 {
		width: 100%;
		position: relative;
		margin: 0 auto;
	}
	.table01 th {
		width: 100%;
		color: #01916D;
		border-bottom: none;
		padding: 10px 10px 2px;
		text-align: left;
		display: block;
	}
	.table01 td {
		width: 100%;
		border-bottom: solid 1px #EBEBEB;
		padding: 2px 10px 10px;
		text-align: left;
		display: block;
	}
	.tech-box .table01 {
		margin-top: 30px;
	}
	.tech-box {
		width: 100%;
		margin: 0 0 50px;
		background: #fff;
		filter: drop-shadow(0px 0px 6px rgba(51, 83, 76, 0.3));
		padding: 20px;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.tech-box .ttl {
		font-size: 16px;
		color: #01916D;
	}
	.counter-list {
		list-style: none; /* デフォルトのリストスタイルを無効化 */
		counter-reset: item; /* カウンターをリセット */
		padding-left: 0; /* 左の余白を調整（好みで変更） */
	}
	.counter-list li {
		counter-increment: item; /* カウンターを増加 */
		position: relative;
		padding-left: 1.5em; /* 数字のためのスペース */
	}

	.counter-list li::before {
		content: counter(item) "."; /* 数字 + ピリオド */
		position: absolute;
		left: 0;
	}
}

@media (hover: hover) {
	.table01 td a:hover {
		text-decoration: none;
	}
}