@charset "UTF-8";

/* ===============================================
  Recruit: Summary
=============================================== */
.page-title__bg {
	background-image: url('../img/bg_page-title.png');
}

/* ==============================
  recruit-info
============================= */
.summary-table {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--color-gray-dark, #ddd);
}
.summary-table__row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	border-bottom: 1px solid var(--color-gray-dark, #ddd);
	background-color: var(--color-white);
}
.summary-table__row:nth-child(odd) {
	background-color: var(--color-white);
}
.summary-table__row:nth-child(even) {
	background-color: var(--color-gray-light);
}
.summary-table__row:last-child {
	border-bottom: none;
}
.summary-table__row dt {
	flex: none;
	min-width: 0;
	padding: 1em 1.5em;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid var(--color-gray-dark, #ddd);
}
.summary-table__row dd {
	flex: none;
	min-width: 0;
	padding: 1em 1.5em;
	margin: 0;
}
.summary-table__row dd ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.summary-table__row dd li + li {
	margin-top: 0.3em;
}

@media (min-width: 768px) {
	.summary-table {
		border: none;
	}
	.summary-table__row {
		flex-direction: row;
		flex-wrap: wrap;
		border-bottom: none;
	}
	.summary-table__row--separator {
		border-bottom: 1px dotted var(--color-gray-dark, #ddd);
	}
	.summary-table__row dt {
		flex: 0 0 30%;
		min-width: 12rem;
		text-align: left;
		border-bottom: none;
	}
	.summary-table__row dd {
		flex: 1 1 65%;
	}
}

/* ==============================
  summary-process
============================= */
.summary-process {
	width: 100%;
}
.summary-process__steps {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin: 0;
	padding: 0;
	list-style: none;
}
.summary-process__steps > li {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	min-width: 0;
}
.summary-process__steps > li:not(:last-child)::after {
	content: "▼";
	align-self: center;
	margin: 0.25em 0 0.25em;
	color: var(--color-primary);
	font-size: 0.75em;
	line-height: 1;
}
.summary-process__card {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	align-items: center;
	justify-content: center;
	min-height: 4rem;
	padding: 0.75em 0.65em;
	background-color: var(--color-white);
	font-weight: 700;
	text-align: center;
}

@media (min-width: 768px) {
	.summary-process__steps {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
	}
	.summary-process__steps > li {
		flex-direction: row;
		flex: 1 1 0;
		align-items: center;
	}
	.summary-process__steps > li:not(:last-child)::after {
		content: "▶";
		align-self: center;
		margin: 0 0.3em 0 0;
		font-size: 1em;
	}
	.summary-process__card {
		flex: 1 1 auto;
		font-size: 1.33em;
		padding: 2em 1em;
	}

}
