@charset "utf-8";
/* CSS Document */

/*==================================
ページトップへのボタン
====================================*/

.topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
}


@media screen and (max-width:767px) {

    .topBtn {
        width: 45px;
        height: 45px;
    }

}

/*==================================
ホバーの共通化
====================================*/

.cmn_hover {
    transition: 0.5s;
}

.cmn_hover:hover {
    opacity: 0.6;
    text-decoration: none;
}

/*==================================
共通のpadding設定
====================================*/

.sub_pdg {
    padding: 100px 0;
}

@media screen and (max-width:767px) {

    .sub_pdg {
        padding: 60px 0;
    }

}

/*====================
一覧ページネーション
====================*/

.pagenation {
    display: flex;
    justify-content: center;
    margin: 60px auto 0;
}

.pagenation li {
    margin: 0 5px;
}

.pagenation li span,
.pagenation li a {
    padding: 10px;
    display: block;
    background-color: #fff;
    border: 1px solid;
    line-height: 1.5;
}

.pagenation li span,
.pagenation li:hover a {
    color: #fff;
}

.pagenation li span,
.pagenation li a:hover {
    background-color: #434343;
}

.post_none {
    margin: 0 auto;
    font-size: 2rem;
}

.top_post_none {
    font-size: 1.4rem;
    color: #fff;
}

@media screen and (max-width:767px) {}

/*========================================
詳細ページネーションの設定
==========================================*/

.paginated-link {
    display: flex;
    justify-content: center;
    color: inherit;
    line-height: 1;
    margin-top: 40px;
}

.paginated-link a {
    line-height: 1;
}


.back-link {
    position: relative;
    width: 100px;
    text-align: center;
    border-left: 1px solid;
    border-right: 1px solid;
}

.prev-link,
.next-link {
    width: 40%;
}

.prev-link {
    margin-right: 20px;
    text-align: right;
}

.next-link {
    margin-left: 20px;
}

@media screen and (max-width:767px) {

    .paginated-link {
        font-size: 1.2rem;
    }

}

/*==================================
パンくずリスト設定
====================================*/

.breadcrumbs{
    background: #000000;
}

.breadcrumbs .bread_boxs {
    justify-content: flex-start;
}

.breadcrumbs li {
    list-style: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

.breadcrumbs .bread_name {
    flex: 1;
}

.breadcrumbs li:not(:last-child)::before {
    content: ' ';
    display: block;
    margin: auto;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
}

.breadcrumbs li,
.breadcrumbs a {
    font-size: 1.5rem;
    color: #cea975;
}


@media screen and (min-width: 768px) {
    .breadcrumbs {
        padding: 7px 0;
    }

    .breadcrumbs li:not(:last-child) {
        padding: 0 30px 0 0;
    }

    .breadcrumbs li:not(:last-child)::before {
        width: 8px;
        height: 8px;
        right: 13px;
    }
}

@media screen and (max-width:767px) {

    .breadcrumbs {
        padding: 4px 0;
    }

    body:not(#top) .breadcrumbs .bread_boxs {
        flex-direction: row;
        padding: 4px 0;
    }

    .breadcrumbs li:not(:last-child) {
        padding: 0 22px 0 0;
    }

    .breadcrumbs li:not(:last-child)::before {
        width: 7px;
        height: 7px;
        right: 10px;
    }

    .breadcrumbs a {
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .breadcrumbs li,
    .breadcrumbs a {
        font-size: 1.2rem;
    }

}

/*==================================
テキスト中央寄席の設定
====================================*/

.cen_txt {
    text-align: center;
}

/*==================================
ここから追加
====================================*/

/*cmn_news*/

.cmn_news li{
    line-height: 1;
    border-bottom: 1px dotted;
}

.cmn_news li a{
    padding: 18px 10px;
    transition: .5s;
}

.cmn_news li a:hover{
    transform: translate(5px,-5px);
}

.news_post_time{
    display: inline-block;
    color: #8cbf1a;
    margin-right: 35px;
}

.news_post_ttl{
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width:767px) {

    .news_post_time{
        margin-right: 15px;
    }

}

/*cmn_ttl*/

.cmn_ttl{
    font-size: 7.0rem;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Noto Serif JP', serif;
}

.cmn_ttl span{
    display: block;
    font-size: 2.5rem;
    color: #8cbf1a;
}

.min_cmn_ttl{
    font-size: 5.0rem;
}

.min_cmn_ttl span{
    font-size: 2.5rem;
}

@media screen and (max-width:767px) {

    .cmn_ttl{
        font-size: 2.7rem;
        margin-bottom: 40px;
    }

    .cmn_ttl span{
        font-size: 1.8rem;
    }

}













