@charset "utf-8";
/* CSS Document */

/*==================================
ページトップへのボタン
====================================*/

.topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(174,40,74,0.9);
    width: 50px;
    height: 50px;
    z-index: 100;
    border: 2px solid #fff;
    cursor: pointer;
    border-radius: 50%;
}

.topBtn:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transition: .5s;
}

.topBtn:hover::before {
    top: 12px;
}


/*==================================
ホバーの共通化
====================================*/

.cmn_hover {
    transition: 0.5s;
}

.cmn_hover:hover {
    opacity: 0.6;
    text-decoration: none;
}

/*==================================
共通のpadding設定
====================================*/

.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 #434343;
    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;
}

/*==================================
パンくずリスト設定
====================================*/

.breadcrumbs {
    background-color: #fff;
    color: #000;
}

.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: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
}

.breadcrumbs li,
.breadcrumbs a {
    font-size: 1.2rem;
}

.breadcrumbs a {
    color: #333;
    text-decoration: underline;
}


@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;
    }
}

/*==================================
テキスト中央寄席の設定
====================================*/

.cen_txt {
    text-align: center;
}


/*==================================
ここから追加
====================================*/

/*共通のタイトル*/

.cmn_ttl{
    text-align: center;
    margin-bottom: 30px;
}

/*共通のリスト*/

.cmn_list li{
    background: url(../images/top/cmn_list_icon.png) no-repeat left top 10px;
    padding: 5px 0 5px 20px;
    font-weight: 600;
    border-bottom: 1px dotted #a6a6a6;
}




















/*ここからスマホ*/
@media screen and (max-width:767px) {

    /*==================================
    ページトップへのボタン
    ====================================*/

    .topBtn {
        width: 45px;
        height: 45px;
    }

    .topBtn::before {
        top: 16px;
    }

    /*==================================
    共通のpadding設定
    ====================================*/

    .sub_pdg {
        padding: 50px 0;
    }

    /*==================================
    パンくずリスト設定
    ====================================*/

    .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;
    }

    /*==================================
    ここから追加
    ====================================*/

    .cmn_ttl{
        margin-bottom: 40px;
    }
    .cmn_ttl img{
        height: 50px;
    }

}
