#breadcrumb {
    display: none;
}

/*************************************************************/
/*****症例一覧*************************************************/
/*************************************************************/
    #cases_wrap .case-block span.case-title {
        display: block;
        font-size: 28px;
        color: gray;
        text-align: center;
        padding: 10px;
    }
    #cases_wrap .case-block span.case-title::before {
        content: "-";
        display: inline-block;
        margin-right: 25px;
        color: #1e4c9a;
        transform: scaleX(4);
    }
    #cases_wrap .case-block span.case-title::after {
        content: "-";
        display: inline-block;
        margin-left: 25px;
        color: #1e4c9a;
        transform: scaleX(4);
    }
    #cases_wrap .case-block ul {
        width: 100%;
        overflow: hidden;
        margin-bottom: 40px;
    }
    #cases_wrap .case-block li {
        display: block;
        width: calc(100% / 3); /* 横列の数を変更する場合はここを修正 */
        padding: 5px;
        float: left;
    }
    #cases_wrap .case-block a {
        text-decoration: none;
        transition: 0.2s;
        overflow: hidden;
        display: block;
        border-radius: 5px;
        background-color: #154f7b;
        color: #fff;
        text-align: center;
        padding: 15px;
        font-size: 14px;
        font-weight: normal;
        position: relative;
    }
    #cases_wrap .case-block a::after {
        content: " ";
        display: inline-block;
        border: 5px solid transparent;
        border-left-color: white;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    #cases_wrap .case-block a:hover {
        transform: scale(0.9);
        opacity: 0.5;
    }
/*-- レスポンシブ設定 -*/
    @media all and (max-width: 780px) {

        #cases_wrap .case-block span.case-title {
            font-size: 21px;
        }

        #cases_wrap .case-block li {
            width: 50%;
        }

        #cases_wrap .case-block a {
            font-size: 12px;
        }

        #cases_wrap .case-block a::after {
            right: 5px;
        }

        #cases_wrap .case-block ul {
            margin-bottom: 20px;
        }

    }


/*************************************************************/
/*****お知らせ--ブログ********************************************/
/*************************************************************/
#content div.wpra-list-template .wpra-item-list > li.wpra-item {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #0975b7;
}

.wp-rss-template-container .wpra-item a {
    margin: 5px 0 0;
    text-decoration: none;
    color: #282828;
}

.wp-rss-template-container .wpra-item .wprss-feed-meta:after {
    content: "コラム";
    color: #fff;
    font-size: 12px;
    padding: 2px 7px;
    margin-left: 15px;
    background: #0975b7;
    border-radius: 5px;
}

@media screen and ( min-width: 768px ) {
    #content div.wpra-list-template .wpra-item-list > li.wpra-item {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #0975b7;
    }
    .wp-rss-template-container .wpra-item a {
        margin: 0 0 0 15px;
    }
}

.btn {
    position: relative;
    display: block;
    width: 240px;
    margin: 20px auto;
    padding: 10px;
    color: #fff!important;
    text-align: center;
    background: linear-gradient(90deg, #0161ac, #32a8c8);
    border-radius: 8px;
    text-decoration: none!important;
}

.btn:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #ffffff;
}