@charset "utf-8";
/*===========================================================*/
/*  Share Button
/*===========================================================*/
.share-button {
    font-size: 16px;
    line-height:2.125;
    margin-top: 1em;
}
.share-button ul ,
.share-button li ,
.share-button li i {
	margin: 0;
	padding: 0;
}
.share-button ul {
	display: flex;
	flex-wrap: wrap;
    justify-content: flex-start;
}
.share-button li a {
	display: inline-block;
	margin: 0 0.3em 0 0;
	padding: 0;
	text-align: center;
	font-weight: bold;
	color: #fff;
    
    background-color: #ccc;
    width: 2em;
    height: 2em;
    border-radius: 1em;
}
.share-button .twitter {
	background: #000;
}
.share-button .facebook {
	background: #3b5998;
}
.share-button .line {
	background: #1dcd00;
}
.share-button .hatena {
	background: #00A4DE;
}
.share-button .fa-hatena:before {
	content: "B!";
	font-family: Verdana;
	font-weight: bold
}
.share-button .bluesky {
	background: #0081ff;
}
.share-button .url {
    background-color:#4F3168;
}
@media screen and (min-width: 740px) {
    .share-button {
        font-size: 14px;
    }
    .share-button ul {
        justify-content: center;
    }
    .share-button li a {
        margin: 0 0.2em;
        transition: 0.3s;
        opacity: 1.0;
    }
	.share-button li a:hover {
        opacity: 0.5;
    }
}
@media screen and (min-width: 1024px) {
	.share-button .line {
		display: none;
	}
}