/* ==========================
    NEWS single layout
========================== */
.news-single {
    padding-top: 80px;
    padding-bottom: 50px;
}

.wrapper2 {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 130px;
}

/* メイン + サイドバー */
.container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* メインコンテンツ */
.news-list {
    width: 70%;
    padding-left: 0;
    list-style: none;
}

/* 記事 */
.news-list .item {
    width: 100%;
}

/* アイキャッチ */
.news-thumb {
    margin-top: 24px;
    margin-bottom: 24px;
}

.news-thumb img {
    width: 100%;
    height: auto;
    display: block;
}


/* コンテンツ */
.news-list .item .date {
    margin: 0;
    min-width: 142px;
    font-size: 16px;
    padding: 0 20px 12px 0;
}

.item-cat {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    width: 150px;
    margin-bottom: 12px;
}

.news-content .category {
    font-size: 14px;
    margin-bottom: 12px;
}

.news-content .title {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: bold;
}

.back-btn-wrap {
    margin-top: 40px;
}

.back-btn {
    line-height: 56px;
    width: 280px;
    display: block;
    border-radius: 50px;
    font-size: 20px;
    color: #fff;
    margin: 0 auto;
    background-color: #368fd3;
    text-align: center;
    border: 2px solid transparent;
}

.back-btn:hover {
    color: #368fd3;
    background-color: #fff;
    border: 2px solid #368fd3;
}

/* サイドバー */
.sidebar-area {
    width: 30%;
}

.sidebar {
    padding: 24px;
}

.wp-block-heading {
    background-color: #2695dc;
    color: #fff;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 16px;
}

@media screen and (max-width: 768px) {

    .news-single .container {
        flex-direction: column;
        padding-left: 20px;
        gap: 24px;
    }

    .sidebar-area {
        width: 80%;
    }

    .sidebar {
        padding-right: 24px;
        padding-left: 0;
    }

    }