@charset "utf-8";
/* CSS Document */

.works_head{
	background-image: url("../img/bg/link.jpg");
}

.work_content,.schedule,.treatment,.schedule-treatment{
	width: 90%;
	margin: 0 auto;
}

.schedule-treatment{
	display: flex;
	flex-wrap: wrap;
}

.heading{
	width: 100%;
	height: 72px;
	display: flex;
	margin: 3em 0 1em;
}
.heading:first-child{
	margin: 0 0 1em;
}

.heading_img{
	background: #000;
	height: 100%;
	aspect-ratio: 1 / 1;
	padding: 1%;
}

h3{
	width: 100%;
	padding: .25em .5em;
	font-weight: bold;
	text-align: justify;
}

.heading_img img{
	width: 100%;
	height: auto;
}

.heading span{
	display: block;
	border-top: 1px solid #000;
	font-weight: normal;
	margin-top: .25em;
	padding-top: .25em;
}

.photo-wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.work-photo{
	width: 100%;
	aspect-ratio: 16 / 9;
}

.work-photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*スケジュール
---------------------------------------------------------------------------*/

.schedule{
	width: 100%;
}

.schedule table{
	width: 100%;
}

.schedule tr{
	border-bottom: #dcdcdc solid 1px;
}

.schedule th,td{
	padding: 1rem 0;
}

.schedule td{
	text-align: right;
}

.schedule p{
	width: 100%;
	margin-top: 1em;
}

/*雇用条件
---------------------------------------------------------------------------*/
.treatment{
	width: 100%;
}
.treatment table{
	width: 100%;
}

.treatment th,td{
	vertical-align: middle;
}
.treatment tr{
	border-bottom: #dcdcdc solid 1px;
}



/*中型画面向けデザイン（タブレットなど）
---------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
	.works_head{
		height: 64vh;
	}
	
	.work_content,.schedule-treatment{
		width: 80%;
		max-width: 1000px;
		margin: 0 auto;
	}
	
	.work-photo{
		width: 33.333%;
		aspect-ratio: 4 / 3;
	}
	
	/*　スケジュール　*/
	.schedule{
		width: 45%;
	}

	/*　雇用条件*/
	.treatment{
		width: 45%;
	}
}