/**
 * みつピタジョブ
 * トップページ：保存した求人
 */

.mpj-home-navigation {
	width: 100%;
	margin: 0;
	padding: 18px 20px;
	background: #f5faf7;
}

.mpj-home-navigation__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
}

.mpj-home-navigation__favorites {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	max-width: 420px;
	min-height: 72px;
	margin: 0 auto;
	padding: 14px 18px;
	color: #20372d;
	background: #ffffff;
	border: 1px solid #dcece3;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(20, 94, 62, 0.08);
	text-decoration: none;
	transition:
		color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.mpj-home-navigation__favorites:hover {
	color: #087b43;
	border-color: #9fcdb6;
	box-shadow: 0 12px 26px rgba(20, 94, 62, 0.14);
	text-decoration: none;
	transform: translateY(-2px);
}

.mpj-home-navigation__favorites:focus-visible {
	outline: 3px solid rgba(8, 123, 67, 0.22);
	outline-offset: 3px;
}

.mpj-home-navigation__favorites-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	color: #d94f70;
	background: #fff0f4;
	border-radius: 50%;
}

.mpj-home-navigation__favorites-icon svg,
.mpj-home-navigation__favorites-arrow svg {
	display: block;
	fill: currentColor;
}

.mpj-home-navigation__favorites-text {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.mpj-home-navigation__favorites-label {
	color: #16824f;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.12em;
}

.mpj-home-navigation__favorites-title {
	margin-top: 2px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
}

.mpj-home-navigation__favorites-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: #87a598;
}

.mpj-home-navigation__favorites:hover .mpj-home-navigation__favorites-arrow {
	color: #087b43;
}

@media screen and (max-width: 767px) {
	.mpj-home-navigation {
		padding: 14px 15px;
	}

	.mpj-home-navigation__favorites {
		max-width: none;
		min-height: 66px;
		padding: 12px 15px;
		border-radius: 14px;
	}

	.mpj-home-navigation__favorites-icon {
		flex-basis: 44px;
		width: 44px;
		height: 44px;
	}

	.mpj-home-navigation__favorites-title {
		font-size: 16px;
	}
}
