@charset "utf-8";
/*==================================================
	【お問い合わせ】ページ固有のスタイル
==================================================*/
#recruit h3.sub {
	margin-bottom: 80px;
}
#recruit .box {
	margin-bottom: 80px;
}
#recruit .box .info {
	width: 624px;
}
#recruit .box .info h4 {
	font-size: 48px;
	font-weight: 500;
	margin-bottom: 40px;
}
#recruit .box .info .chks {
	display: flex;
	margin-bottom: 20px;
}
#recruit .box .info ul.chk:first-of-type {
	margin-right: 50px;
}
#recruit .box .info ul.chk li {
	background: url("../img/chk.png") no-repeat top 5px left;
	padding-left: 30px;
	margin-bottom: 10px;
	font-size: 110%;
}
#recruit .box .info .txt {
	font-size: 110%;
}
#recruit .box .info ul.point {
	margin-top: 30px;
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(2, 307px);
	gap: 10px 0;
}
#recruit .box:nth-of-type(2) .info ul.point {
	margin-top: 50px;
}
#recruit .box .info ul.point li {
	background: #fff;
	text-align: center;
	font-size: 110%;
	padding: 15px 0;
}
#recruit .box .img {
	width: 418px;
}
#recruit .support h3 {
	font-size: 48px;
	font-weight: 500;
	margin-bottom: 40px;
}
#recruit .support .grid {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(4, 248px);
}
#recruit .support .grid .maru {
	width: 100%;
	height: 248px;
	padding-top: 20px;
	background: #fff;
	border-radius: 50%;
}
#recruit .support .grid .maru .ico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 107px;
	margin: 0 auto 20px;
}
#recruit .support .grid .txt {
	font-size: 110%;
}
#recruit .about h3 {
	font-size: 62px;
	font-weight: 500;
	margin-bottom: 40px;
}
#recruit .about table {
	width: 700px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0 10px; /* 横 縦 */
	font-size: 110%;
}
#recruit .about table tr {
	background: #fff;
}
#recruit .about table tr th, #recruit .about table tr td {
	padding: 25px;
}
#recruit .about table tr th {
	color: #0db7d6;
	vertical-align: top;
}
#recruit .about table tr td .box_flex {
	justify-content: flex-start;
}
#recruit .about table tr td .box_flex p:not(:last-of-type),
#recruit .about table tr td .box_flex p.mr,
#recruit .about table tr td .box_flex ul:not(:last-of-type) {
	margin-right: 40px;
}
#recruit .about table tr td ul li {
	padding-left: 15px;
	position: relative;
}
#recruit .about table tr td ul li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #179342;
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 0;
}
#contact .bg_white {
	background: #fff;
	padding: 40px 50px 50px;
	position: relative;
}
#contact .bg_white::before {
	content: "";
	background: var(--color-primary);
	height: 20px;
	width: 1px;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
#mailform .tbl {
	margin: 2em 0;
}
#mailform .tbl th {
	vertical-align: top;
	background: #E6E6DC;
	color: #333;
}
#mailform .tbl th .need {
	float: right;
	padding: 1px 10px;
	background: var(--color-primary);
	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-primary);
	border: 1px solid var(--color-primary);
	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) {  /* タブレット以下 */
	#recruit h3.sub {
		margin-bottom: 30px;
	}
	#recruit .box {
		margin-bottom: 40px;
	}
	#recruit .box .info h4 {
		font-size: 25px;
		margin-bottom: 20px;
	}
	#recruit .box .info .img {
		text-align: center;
		width: 100%;
		margin-bottom: 20px;
	}
	#recruit .box .info .img img {
		width: 300px;
	}
	#recruit .box .info .chks {
		display: block;
	}
	#recruit .box .info ul.chk:first-of-type {
		margin-right: 0;
	}
	#recruit .box .info ul.point {
		margin-top: 20px;
		grid-template-columns: repeat(2, 49%);
	}
	#recruit .box .info ul.point li {
		padding: 10px;
	}
	#recruit .support h3 {
		font-size: 25px;
		margin-bottom: 20px;
	}
	#recruit .support .grid {
		width: 430px;
		margin: 0 auto;
		grid-template-columns: repeat(2, 200px);
		gap: 20px 0;
	}
	#recruit .support .grid .maru {
		height: 200px;
	}
	#recruit .support .grid .maru .ico {
		width: calc(70px * 0.7);
		height: calc(107px * 0.7);
		margin-bottom: 10px;
	}
	#recruit .support .grid .maru .ico img {
		transform: scale(0.7);
	}
	#recruit .about h3 {
		font-size: 28px;
		margin-bottom: 20px;
	}
	#recruit .about table {
		width: 100%;
	}
	#recruit .about table tr th, #recruit .about table tr td {
		padding: 15px;
	}
	#recruit .about table th {
		white-space: nowrap;
	}
	#contact .bg_white {
		padding: 20px 15px 15px;
	}
	#contact .bg_white h3.sub {
		margin-bottom: 10px;
	}
	#mailform .tbl th {
		width: 190px;
	}
	#mailform .tbl input[type="text"],
	#mailform .tbl textarea {
		font-size: 120%;
	}
	#mailform .btn input {
		width: 120px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#recruit .box .info {
		width: 100%;
	}
	#recruit .box .info h4 {
		font-size: 22px;
	}
	#recruit .box .info .img img {
		width: 250px;
	}
	#recruit .box .info ul.chk li {
		font-size: 100%;
	}
	#recruit .box .info .txt {
		font-size: 100%;
	}
	#recruit .box .info ul.point {
		display: block;
	}
	#recruit .box .info ul.point li {
		margin-bottom: 10px;
		font-size: 100%;
	}
	#recruit .support h3 {
		font-size: 21px;
	}
	#recruit .support .grid {
		width: 100%;
		max-width: 280px;
		grid-template-columns: repeat(2, 140px);
		column-gap: 10px;
	}
	#recruit .support .grid .maru {
		height: 140px;
	}
	#recruit .support .grid .maru .ico {
		width: calc(70px * 0.5);
		height: calc(107px * 0.5);
		margin-bottom: 0;
	}
	#recruit .support .grid .txt {
		font-size: 12px;
	}
	#recruit .about table {
		font-size: 100%;
	}
	#recruit .about table tr th, #recruit .about table tr td {
		display: block;
	}
	#recruit .about table tr th {
		padding-bottom: 0;
	}
	#recruit .about table tr td {
		padding-top: 0;
	}
	#recruit .about table tr td .box_flex p:not(:last-of-type), #recruit .about table tr td .box_flex p.mr, #recruit .about table tr td .box_flex ul:not(:last-of-type) {
		margin-right: 0;
	}
	#mailform .tbl th {
		width: 100%;
	}
}
@media only screen and (max-width: 320px){ /* スマホ */
	#recruit h3.sub.line {
		font-size: 21px;
	}
	#recruit .box .info h4 {
		font-size: 20px;
	}
}