@charset "utf-8";

.single-page-category{
    margin: 10px 0 20px;
}

.single-page-category>a{
    margin: 0 20px 0 0;
    padding: 2px 10px;
    background-color: #FCE9EA;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.single-page-category>a:hover{
    background-color: #F09397;
    font-weight: 400;
    color: #fff;
}

.single-page-title{
    font-size: 1.75rem;
}

.page-share-date{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 800px) {
    .page-share-date{
        flex-direction: column-reverse;
        align-items: start;
    }
}

.sns-share-buttons {
    display: flex;
    gap: 10px; /* ボタン間の余白 */
    flex-wrap: wrap; /* 画面が狭い時に折り返す */
    margin: 20px 0;
}

.share-btn {
    min-width: 60px;
    height: 30px;
    padding: 2px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 0.6rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    font-weight: 400;
}

.share-btn img{
    height: 15px;
    margin-right: 5px;
}

.share-btn:hover {
    opacity: 0.8;
}

/* 各ブランドカラー */
.x-btn { background-color: #000000; }
.fb-btn { background-color: #1877f2; }
.line-btn { background-color: #06c755; }
.native-btn { background-color: #666666; } /* 共有ボタンの色 */

/* スマホ等でボタンが縦に長くなりすぎるのを防ぐ */
@media (max-width: 480px) {
    .sns-share-buttons {
        gap: 5px;
    }
    .share-btn {
        font-size: 12px;
    }
}

.single-main-box{
    margin: 20px 0;
    padding: 20px 10px;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}