@charset "UTF-8";

/* SNSシェアボタン用スタイル */
.sns-share {
	display: flex;
	gap: 10px;
	margin: 20px 0;
}

.sns-share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	font-size: 1.2rem;
	transition: opacity 0.3s;
}

.sns-share a:hover {
	opacity: 0.8;
}

.sns-share .twitter {
	background: #1da1f2;
}

.sns-share .facebook {
	background: #1877f2;
}

.sns-share .line {
	background: #00b900;
}