@charset "UTF-8";
.single-area {
	background-color: #FFFFFF;
	padding: 15px 70px;
}
.single-area .row {
	margin-top: 1rem;
}
.single-area .span-tag {
	margin-left: 10px;
}
.single-area .post-ttl {
	font-weight: 600;
}
.single-area img {
	max-width: 100%;
}
@media screen and (max-width: 959px) {
	.single-area{
		padding: 3px 20px;
	}
	.post-ttl{
		font-size: 1.3rem;
		line-height: 1.8rem;
	}
}

.shareList {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin-top: 20px;
    justify-content: flex-end;
	gap: 10px;
}

.shareList__item {
    height: 28px;
    line-height: 28px;
    margin: 5px 0 0 5px;
    text-align: center;
}

.shareList__link {
    display: block;
    padding: 0 10px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.shareList__link::before {
    font-size: 14px;
    transition: ease-in-out .2s;
    border-radius: 5px;
}

.shareList__link:hover {
	opacity: 0.75;
}

.shareList__link.icon-twitter {
	background:#0f1419;
}

.shareList__link.icon-twitter:hover {
	color:#ffffff66;
}

.shareList__link.icon-facebook {
	background:#3B5998;
}