/**
 * =====================================================
 * みつピタジョブ
 * 求人詳細ページ：お気に入り保存
 * -----------------------------------------------------
 * ・応募ボタン下に配置
 * ・ログイン不要のお気に入り保存
 * ・PC／タブレット／スマートフォン対応
 * =====================================================
 */

/* =====================================================
 * セクション全体
 * ===================================================== */

.mpj-job-favorite {
	width: 100%;
	margin: 18px 0 30px;
	padding: 0;
}

.mpj-job-favorite__inner {
	width: 100%;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #dfe8e3;
	border-radius: 16px;
	box-shadow:
		0 4px 14px rgba(30, 73, 58, 0.06);
	text-align: center;
}

/* =====================================================
 * お気に入りボタン
 * ===================================================== */

.mpj-job-favorite__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 420px;
	min-height: 54px;
	margin: 0 auto;
	padding: 13px 22px;
	background: #ffffff;
	border: 2px solid #176247;
	border-radius: 999px;
	color: #176247;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	box-shadow:
		0 3px 10px rgba(23, 98, 71, 0.08);
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.mpj-job-favorite__button:hover {
	background: #f0f8f4;
	border-color: #0f5039;
	color: #0f5039;
	transform: translateY(-1px);
	box-shadow:
		0 6px 16px rgba(23, 98, 71, 0.12);
}

.mpj-job-favorite__button:focus-visible {
	outline: 3px solid rgba(23, 98, 71, 0.25);
	outline-offset: 3px;
}

.mpj-job-favorite__button:disabled {
	opacity: 0.6;
	cursor: wait;
	transform: none;
}

/* =====================================================
 * 保存済み状態
 * ===================================================== */

.mpj-job-favorite__button--saved,
.mpj-job-favorite__button[aria-pressed="true"] {
	background: #176247;
	border-color: #176247;
	color: #ffffff;
}

.mpj-job-favorite__button--saved:hover,
.mpj-job-favorite__button[aria-pressed="true"]:hover {
	background: #0f5039;
	border-color: #0f5039;
	color: #ffffff;
}

/* =====================================================
 * ハートアイコン
 * ===================================================== */

.mpj-job-favorite__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.mpj-job-favorite__icon svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: transparent;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition:
		fill 0.2s ease,
		stroke 0.2s ease,
		transform 0.2s ease;
}

.mpj-job-favorite__button:hover
.mpj-job-favorite__icon svg {
	transform: scale(1.06);
}

.mpj-job-favorite__button--saved
.mpj-job-favorite__icon svg,
.mpj-job-favorite__button[aria-pressed="true"]
.mpj-job-favorite__icon svg {
	fill: currentColor;
	stroke: currentColor;
}

/* =====================================================
 * ボタンテキスト
 * ===================================================== */

.mpj-job-favorite__label {
	display: inline-block;
}

/* =====================================================
 * 補足文
 * ===================================================== */

.mpj-job-favorite__note {
	margin: 12px 0 0;
	color: #607069;
	font-size: 13px;
	line-height: 1.7;
}

/* =====================================================
 * タブレット
 * ===================================================== */

@media screen and (max-width: 991px) {

	.mpj-job-favorite {
		margin-top: 16px;
		margin-bottom: 26px;
	}

	.mpj-job-favorite__inner {
		padding: 18px;
	}
}

/* =====================================================
 * スマートフォン
 * ===================================================== */

@media screen and (max-width: 767px) {

	.mpj-job-favorite {
		margin-top: 14px;
		margin-bottom: 24px;
	}

	.mpj-job-favorite__inner {
		padding: 16px 14px;
		border-radius: 14px;
	}

	.mpj-job-favorite__button {
		max-width: none;
		min-height: 52px;
		padding: 12px 18px;
		font-size: 15px;
	}

	.mpj-job-favorite__note {
		margin-top: 10px;
		font-size: 12px;
	}
}

/* =====================================================
 * 小さいスマートフォン
 * ===================================================== */

@media screen and (max-width: 374px) {

	.mpj-job-favorite__button {
		gap: 8px;
		padding-right: 14px;
		padding-left: 14px;
		font-size: 14px;
	}

	.mpj-job-favorite__icon,
	.mpj-job-favorite__icon svg {
		width: 22px;
		height: 22px;
	}
}