/* 記事下のリアクション（いいね／シェア） */

.aiy-reactions {
	margin: 48px 0 8px;
	padding: 28px 24px;
	border: 1px solid #e9ecf1;
	border-radius: 12px;
	background: #fafbfd;
}

/* ---------- いいね ---------- */

.aiy-like {
	text-align: center;
}

.aiy-like-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 24px;
	border: 1px solid #e2e6ee;
	border-radius: 99px;
	background: #fff;
	color: #5a6472;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: color .15s ease, border-color .15s ease, background-color .15s ease;
}

.aiy-like-btn:hover {
	border-color: #f5b8c6;
	color: #e0245e;
}

.aiy-like-btn.is-liked {
	border-color: #e0245e;
	background: #fff1f4;
	color: #e0245e;
}

.aiy-heart {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linejoin: round;
	transition: fill .15s ease;
}

.aiy-like-btn.is-liked .aiy-heart {
	fill: currentColor;
}

.aiy-like-count {
	min-width: 1.5em;
	font-variant-numeric: tabular-nums;
}

.aiy-like-note {
	margin: 10px 0 0;
	color: #a8b0bc;
	font-size: 12px;
}

/* ---------- シェア ---------- */

.aiy-share {
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid #e9ecf1;
	text-align: center;
}

.aiy-share-title {
	display: inline-block;
	margin-bottom: 12px;
	color: #5a6472;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
}

.aiy-share-total {
	margin-left: 6px;
	color: #a8b0bc;
	font-weight: 400;
}

.aiy-share-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aiy-share-btn {
	display: inline-block;
	padding: 9px 18px;
	border: 1px solid transparent;
	border-radius: 6px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: opacity .15s ease;
}

.aiy-share-btn:hover {
	opacity: .82;
	color: #fff;
}

.aiy-share-btn.is-x        { background: #000; }
.aiy-share-btn.is-facebook { background: #1877f2; }
.aiy-share-btn.is-line     { background: #06c755; }
.aiy-share-btn.is-hatena   { background: #00a4de; }

.aiy-share-btn.is-copy {
	border-color: #d7dce6;
	background: #fff;
	color: #5a6472;
}

.aiy-share-btn.is-copy:hover {
	border-color: #a8b0bc;
	color: #0f1720;
	opacity: 1;
}

.aiy-share-btn.is-copied {
	border-color: #06c755;
	color: #06c755;
}

/* ---------- モバイル ---------- */

@media (max-width: 600px) {
	.aiy-reactions {
		margin-top: 36px;
		padding: 22px 16px;
	}

	.aiy-share-list {
		gap: 6px;
	}

	.aiy-share-btn {
		padding: 9px 14px;
		font-size: 12px;
	}
}
