@charset "UTF-8";
/* Scss Document */

/************************************************************************************
PC用コード
************************************************************************************/
@media screen and (min-width: 1100px) {
	body {
		position: relative;
	}

	#container {
		width: 100%;
		max-width: 1700px;
		margin: 0 auto;
	}

	#recruit {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 0 50px;
	}
	#recruit .recruit-block {
		/* display: flex;
		justify-content: flex-start;
		align-items: flex-start; */
		display: flow-root;
		padding: 20px;
		clear: both;
	}
	#recruit .recruit-block + .recruit-block {
		border-top: 1px solid #e5e5e5;
	}
	#recruit .recruit-label {
		width: 200px;
		height: 100%;
		font-weight: bold;
		float: left;
	}
	#recruit .recruit-block p {
		width: calc(100% - 200px);
		float: right;
		font-weight: 300;
	}
}
/************************************************************************************
SP用コード
************************************************************************************/
@media screen and (max-width: 1099px) {
	body {
		position: relative;
	}

	#container {
		padding: 60px 2% 0;
	}
	#recruit .recruit-block {
		width: 94%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-start;
		padding: 15px 0;
	}
	#recruit .recruit-block + .recruit-block {
		border-top: 1px solid #e5e5e5;
	}
	#recruit .recruit-label {
		width: 100%;
		margin-bottom: 5px;
		font-size: 16px;
		font-weight: bold;
	}
	#recruit .recruit-text {
		width: 100%;
		font-size: 14px;
		font-weight: 300;
	}
}
