@charset "utf-8";
/*==================================================
	【リクルート】固有のスタイル
==================================================*/
#recruit {
	position: relative;
}
#recruit::before {
	content: "";
	background:#f7f5f3;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#recruit::after {
	content: "";
	background: url("../img/company/bg-txt01.png") no-repeat top left/contain;
	width: 372px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50px;
	z-index: -1;
}
#recruit .recruit_box {
	margin-bottom: 60px;
}
#recruit .recruit_box .box {
	border: 1px splid #997f65;
	margin: 35px 0;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-direction: column;
	box-sizing: border-box;
	background: #FFF;
}
#recruit .recruit_box .box .ttl {
	font-size : 22px;
	margin-bottom: 5px;
	color : #fff;
	background: #997f65;
	padding: 5px 25px 8px;
	position: relative;
}
#recruit .recruit_box .box .ttl:before {
	content: "";
	width: 20px;
	height: 2px;
	background: #FFF;
	position: absolute;
	left: 0;
	top: 46%;
}
#recruit .recruit_box .box .txt {
	font-size : 15px;
	line-height : 28px;
	padding: 10px 25px 25px;
	margin-bottom: 0;
}
#recruit h3.sub03 {
	margin-bottom: 20px;
}
#recruit .tbl td ul li {
	list-style-type: disc;
	margin-left: 1em;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#recruit .recruit_box .box .ttl {
		font-size: 20px;
	}
	#recruit::after {
		width: 200px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	
	#recruit .recruit_box .box .ttl:before {
		width: 15px;
		height: 2px;
	}
	#recruit .recruit_box .box {
		margin: 25px 0;
	}
	#recruit .recruit_box .box .ttl {
		font-size: 18px;
		padding: 5px 20px 10px;
	}
	#recruit .recruit_box .box .txt{
		font-size: 14px;
		line-height: 1.7;
		padding: 10px 20px 20px;
	}
}
/*==================================================
	【お問い合わせ】ページ固有のスタイル
==================================================*/
#mailform .tbl {
	margin: 2em 0;
}
#mailform .tbl th {
	vertical-align: top;
}
#mailform .tbl th .need {
	float: right;
	padding: 1px 10px;
	background: var(--color-secondary);
	border-radius: 5px;
	color: #FFFFFF;
	font-size: 13px;
}
#mailform .btn {
	margin-top: 1.5em;
	/* フレックス */
	display: flex;
	justify-content: center;
}
#mailform .btn li+li {
	margin-left: 15px;
}
#mailform .btn input {
	width: 200px;
	height: 50px;
	background: var(--color-secondary);
	border: 1px solid var(--color-secondary);
	border-radius: 30px;
	box-shadow: 0 -2px 0 rgba(0,0,0,0.2) inset;
	color: #FFFFFF;
	font-size: 16px;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	cursor: pointer;
}
#mailform .btn input:hover {
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
#mailform .btn input[type="reset"] {
	background: #F4F4F4;
	border-color: #DDD;
	color: #666;
}
#mailform .tbl input[type="text"],
#mailform .tbl textarea {
	width: 100%;
	box-sizing: border-box;
}
#mailform .tbl textarea {
	display: block;
}
#mailform .tbl input.wno {
	width: 100px;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#mailform .tbl input[type="text"],
	#mailform .tbl textarea {
		font-size: 120%;
	}
	#mailform .btn input {
		width: 120px;
	}
}