/**
 * =====================================================
 * みつピタジョブ関西
 * トップページ：みつピタエージェント
 * -----------------------------------------------------
 * 配置場所：
 * /wp-content/plugins/mitsupita-kansai/assets/front/css/agent.css
 * =====================================================
 */

.mpk-agent {
	padding: 82px 20px 90px;
	background: #ffffff;
}

.mpk-agent__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
}

.mpk-agent__header {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.mpk-agent__eyebrow {
	margin: 0 0 8px;
	color: #c58f20;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.2em;
	line-height: 1.4;
}

.mpk-agent__title {
	margin: 0;
	color: #10653f;
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 800;
	letter-spacing: 0.03em;
	line-height: 1.45;
}

.mpk-agent__lead {
	margin: 18px 0 0;
	color: #53645c;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 2;
}

.mpk-agent__banner {
	display: block;
	overflow: hidden;
	width: 100%;
	border: 1px solid #dceee5;
	border-radius: 22px;
	background: #ffffff;
	box-shadow:
		0 10px 30px rgba(17, 92, 60, 0.1);
	text-decoration: none;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.mpk-agent__banner:hover,
.mpk-agent__banner:focus-visible {
	border-color: #a8d8c0;
	box-shadow:
		0 16px 38px rgba(17, 92, 60, 0.16);
	transform: translateY(-3px);
}

.mpk-agent__banner:focus-visible {
	outline: 3px solid rgba(21, 137, 90, 0.24);
	outline-offset: 5px;
}

.mpk-agent__image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: none;
	margin: 0;
	object-fit: contain;
	object-position: center;
}

.mpk-agent__button-wrap {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.mpk-agent__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 310px;
	min-height: 58px;
	padding: 14px 56px 14px 30px;
	border: 1px solid #15895a;
	border-radius: 999px;
	background:
		linear-gradient(
			135deg,
			#1b9b68 0%,
			#087849 100%
		);
	box-shadow:
		0 8px 20px rgba(8, 120, 73, 0.2);
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		opacity 0.2s ease;
}

.mpk-agent__button:hover,
.mpk-agent__button:focus-visible {
	box-shadow:
		0 12px 26px rgba(8, 120, 73, 0.28);
	color: #ffffff;
	opacity: 0.96;
	text-decoration: none;
	transform: translateY(-2px);
}

.mpk-agent__button:focus-visible {
	outline: 3px solid rgba(21, 137, 90, 0.24);
	outline-offset: 4px;
}

.mpk-agent__button-arrow {
	position: absolute;
	top: 50%;
	right: 24px;
	font-size: 25px;
	font-weight: 400;
	line-height: 1;
	transform: translateY(-52%);
}


/**
 * =====================================================
 * タブレット
 * =====================================================
 */
@media screen and (max-width: 1024px) {

	.mpk-agent {
		padding-right: 18px;
		padding-left: 18px;
	}

	.mpk-agent__inner {
		width: 100%;
	}

	.mpk-agent__banner {
		border-radius: 18px;
	}

	.mpk-agent__image {
		width: 100%;
		height: auto;
		max-height: none;
		object-fit: contain;
	}

}


/**
 * =====================================================
 * スマートフォン
 * =====================================================
 */
@media screen and (max-width: 767px) {

	.mpk-agent {
		padding: 64px 12px 70px;
	}

	.mpk-agent__header {
		margin-bottom: 28px;
	}

	.mpk-agent__eyebrow {
		font-size: 11px;
	}

	.mpk-agent__title {
		font-size: 28px;
	}

	.mpk-agent__lead {
		margin-top: 14px;
		font-size: 14px;
		line-height: 1.9;
	}

	.mpk-agent__banner {
		width: 100%;
		border-radius: 14px;
	}

	.mpk-agent__image {
		display: block;
		width: 100%;
		height: auto;
		max-width: 100%;
		max-height: none;
		object-fit: contain;
		object-position: center;
	}

	.mpk-agent__button-wrap {
		margin-top: 28px;
	}

	.mpk-agent__button {
		width: 100%;
		min-width: 0;
		max-width: 360px;
		min-height: 56px;
		padding-right: 50px;
		padding-left: 24px;
	}

}


/**
 * =====================================================
 * 小さいスマートフォン
 * =====================================================
 */
@media screen and (max-width: 480px) {

	.mpk-agent {
		padding-right: 10px;
		padding-left: 10px;
	}

	.mpk-agent__banner {
		border-radius: 12px;
	}

	.mpk-agent__button {
		font-size: 14px;
	}

}


/**
 * =====================================================
 * 動きを減らす設定
 * =====================================================
 */
@media (prefers-reduced-motion: reduce) {

	.mpk-agent__banner,
	.mpk-agent__button {
		transition: none;
	}

}