/* 2026-07-29 共通レイアウトを利用しつつ代理店ポータルのカード外観だけを追加 */
.agency-portal-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	height: 100%;
	min-height: 110px;
	padding: 22px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	color: #333;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
	transition: border-color 0.2s, background-color 0.2s;
}

.agency-portal-card:hover,
.agency-portal-card:focus {
	border-color: #f90;
	background: #fffaf2;
}

.agency-portal-card:focus-visible {
	outline: 3px solid #fc9;
	outline-offset: 2px;
}

.agency-portal-card strong {
	color: #d86f00;
	font-size: 18px;
}

.agency-portal-card span {
	color: #666;
	font-size: 14px;
	line-height: 1.7;
}
