<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";



	
/* read
------------------------------  */
#read .txt {
	margin-bottom: 50px;
}

#read ul.anchor li {
	width: 49%;
	margin-right: 2%;
}
#read ul.anchor li:nth-last-child(1) {
	margin-right: 0;
}
	#read ul.anchor li a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 56px;
		border-radius: 10px;
		padding: 0 15px;
		border: solid 1px #212121;
		background: #fff;
		overflow: hidden;
		font-size: 1.6rem;
		line-height: 1.2em;
	}
	#read ul.anchor li a:hover {
		background: #1B926A;
		color: #fff;
	}
		#read ul.anchor li a span:nth-child(1) {
			width: -webkit-calc(100% - 30px);
			width: calc(100% - 30px);
			padding-top: 3px;
		}
@media screen and (max-width: 1024px) {
	#read .txt {
		margin-bottom: 5vw;
	}

	#read ul.anchor li a {
		height: 5.6vw;
		padding: 0 1.5vw;
		font-size: 1.6vw;
	}
		#read ul.anchor li a span:nth-child(1) {
			width: -webkit-calc(100% - 3vw);
			width: calc(100% - 3vw);
			padding-top: 0.3vw;
		}
}
@media screen and (max-width: 767px) {
	#read .txt {
		margin-bottom: 8vw;
	}

	#read ul.anchor li {
		width: 48%;
		margin-right: 4%;
	}
	#read ul.anchor li:nth-last-child(1) {
		margin-right: 0;
	}
		#read ul.anchor li a {
			height: 14vw;
			padding: 0 3vw;
			font-size: 3.8vw;
		}
			#read ul.anchor li a span:nth-child(1) {
				width: -webkit-calc(100% - 8vw);
				width: calc(100% - 8vw);
				padding-top: 0.3vw;
			}
}



	
/* recruitment
------------------------------  */
.recruitment .list .box {
	display: block;
	width: 31%;
	margin-right: 3.5%;
	margin-top: 10px;
	margin-bottom: 30px;
	padding: 30px 25px 25px 25px;
	background: #fff;
	overflow: hidden;
	border-radius: 15px;
	position: relative;
}
.recruitment .list .box.end {
	pointer-events: none; 
}
.recruitment .list .box:nth-child(3n) {
	margin-right: 0;
}
	.recruitment .list .box .label {
		display: inline-block;
		font-size: 1.3rem;
		font-weight: 700;
		line-height: 1;
		padding: 8px 10px 5px 10px;
		border-radius: 5px 0 5px 0;
		border: solid 1px #212121;
		position: absolute;
		top: -1px;
		left: -1px;
		z-index: 2;
	}
	.recruitment .list .box .label.on {
		background: #F22335;
		color: #fff;
	}
	.recruitment .list .box .label.schedule {
		background: #1B926A;
		color: #fff;
	}
	.recruitment .list .box .label.end {
		background: #DDDDDD;
		color: #212121;
	}

	.recruitment .list .box .pht {
		text-align: center;
		margin-bottom: 15px;
	}
		.recruitment .list .box .pht img {
			width: auto;
			height: 8vw;
			max-height: 80px;
		}

	.recruitment .list .box h3 {
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 1.4em;
		margin-bottom: 5px;
	}

	.recruitment .list .box .organization {
		font-size: 1.3rem;
		line-height: 1.3em;
		margin-bottom: 20px;
	}

	.recruitment .list .box dl {
		margin-top: 15px;
	}
		.recruitment .list .box dl dt {
			font-size: 1.2rem;
			line-height: 1;
			margin-bottom: 8px;
			position: relative;
			z-index: 0;
		}
		.recruitment .list .box dl dt:before {
			content: "";
			width: 100%;
			height: 1px;
			border-bottom: dashed 1px #212121;
			position: absolute;
			top: 50%;
			left: 0;
			margin-top: -2px;
		}
			.recruitment .list .box dl dt span {
				background: #fff;
				padding-right: 10px;
				position: relative;
				z-index: 2;
			}
		.recruitment .list .box dl dd {
			font-size: 1.2rem;
			line-height: 1.4em;
		}

	.recruitment .list .box .more {
		display: flex;
		margin-top: 20px;
	}
	.recruitment .list .box.end .more {
		display: none;
	}

.recruitment .btn {
	margin: 10px auto 0 auto;
}
@media screen and (max-width: 1024px) {
	.recruitment .list .box {
		margin-top: 1vw;
		margin-bottom: 3vw;
		padding: 3vw 2.5vw 2.5vw 2.5vw;
	}
		.recruitment .list .box .label {
			font-size: 1.3vw;
			padding: 0.8vw 1vw 0.5vw 1vw;
		}

		.recruitment .list .box .pht {
			margin-bottom: 1.5vw;
		}
			.recruitment .list .box .pht img {
				max-height: 8vw;
			}

		.recruitment .list .box h3 {
			font-size: 1.8vw;
			margin-bottom: 0.5vw;
		}

		.recruitment .list .box .organization {
			font-size: 1.3vw;
			margin-bottom: 2vw;
		}

		.recruitment .list .box dl {
			margin-top: 1.5vw;
		}
			.recruitment .list .box dl dt {
				font-size: 1.2vw;
				margin-bottom: 0.8vw;
			}
			.recruitment .list .box dl dt:before {
				margin-top: -2px;
			}
				.recruitment .list .box dl dt span {
					padding-right: 1vw;
				}
			.recruitment .list .box dl dd {
				font-size: 1.2vw;
			}

		.recruitment .list .box .more {
			margin-top: 2vw;
		}

	.recruitment .btn {
		margin: 1vw auto 0 auto;
	}
}
@media screen and (max-width: 767px) {
	.recruitment .list .box {
		width: 100%;
		margin-top: 2vw;
		margin-right: 0;
		margin-bottom: 5vw;
		padding: 6vw 7vw 7vw 7vw;
	}
		.recruitment .list .box .label {
			font-size: 3.0vw;
			padding: 2vw 2vw 1vw 2vw;
		}

		.recruitment .list .box .pht {
			margin-bottom: 3.5vw;
		}
			.recruitment .list .box .pht img {
				height: 25vw;
				max-height: 25vw;
			}

		.recruitment .list .box h3 {
			font-size: 3.8vw;
			margin-bottom: 2vw;
		}

		.recruitment .list .box .organization {
			font-size: 3.0vw;
			margin-bottom: 5vw;
		}

		.recruitment .list .box dl {
			margin-top: 4.5vw;
		}
			.recruitment .list .box dl dt {
				font-size: 3.0vw;
				margin-bottom: 2vw;
			}
			.recruitment .list .box dl dt:before {
				margin-top: -2px;
			}
				.recruitment .list .box dl dt span {
					padding-right: 2vw;
				}
			.recruitment .list .box dl dd {
				font-size: 3.0vw;
			}

		.recruitment .list .box .more {
			margin-top: 5vw;
		}

	.recruitment .btn {
		margin: 2vw auto 0 auto;
	}
}



	



	



	



	



	



	



	



	</pre></body></html>