/*ボタンエリア*/
 .btn_area {
    display: -webkit-box;
    display: flex;
}

/*ボタン基本スタイル*/
.tab_btn {
    width: 25%;
    padding: 8px 0;
    color: #666;
    background: #f5f7f8;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease 0s;
    background: #f3f3f3;
    background: -moz-linear-gradient(top, #f3f3f3 0%, #eeeeee 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f3f3), color-stop(100%, #eeeeee));
    background: -webkit-linear-gradient(top, #f3f3f3 0%, #eeeeee 100%);
    background: -o-linear-gradient(top, #f3f3f3 0%, #eeeeee 100%);
    background: -ms-linear-gradient(top, #f3f3f3 0%, #eeeeee 100%);
    background: linear-gradient(to bottom, #f3f3f3 0%, #eeeeee 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#eeeeee', GradientType=0);
    text-align: center;
    height: 40px;
    display: inline-block;
    border: 1px solid #FFF;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    box-sizing: border-box;
}

.tab_btn+.tab_btn {
    margin-left: 8px;
}

.tab_btn:hover {
    background-color: #dce1e4;
}

/*ボタンホバー、アクティブスタイル*/
.tab_btn.active,
.tab_btn:hover {
    background: #60d33f;
    background: -moz-linear-gradient(top, #60d33f 0%, #4eac33 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #60d33f), color-stop(100%, #4eac33));
    background: -webkit-linear-gradient(top, #60d33f 0%, #4eac33 100%);
    background: -o-linear-gradient(top, #60d33f 0%, #4eac33 100%);
    background: -ms-linear-gradient(top, #60d33f 0%, #4eac33 100%);
    background: linear-gradient(to bottom, #60d33f 0%, #4eac33 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#60d33f', endColorstr='#4eac33', GradientType=0);
    border: 1px solid #4EAC33;
    border-bottom: none;
    color: #FFF;
}

.tab_panel {
    display: none;
}

.tab_panel.active {
    display: block;
}

@media screen and (max-width: 767px) {
    .btn_area{
        flex-direction: column;
    }

    .tab_btn {
        width: 100%;
        border-radius: 0;
    }

    .tab_btn+.tab_btn {
        margin-left: 0;
    }
}

    #tabMenu ul.tabMenu5 .tab_btn a {
        width: 100%;
        background: none;
        display: block;
        line-height: inherit;
        border: none;
        height: auto;
    }

    #tabMenu ul.tabMenu5 .active a,
    #tabMenu ul.tabMenu5 .tab_btn a:hover {
        background: #60d33f;
        background: -moz-linear-gradient(top, #60d33f 0%, #4eac33 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #60d33f), color-stop(100%, #4eac33));
        background: -webkit-linear-gradient(top, #60d33f 0%, #4eac33 100%);
        background: -o-linear-gradient(top, #60d33f 0%, #4eac33 100%);
        background: -ms-linear-gradient(top, #60d33f 0%, #4eac33 100%);
        background: linear-gradient(to bottom, #60d33f 0%, #4eac33 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#60d33f', endColorstr='#4eac33', GradientType=0);
        border: 1px solid #4EAC33;
        border-bottom: none;
        color: #FFF;
    }