﻿.btn-square-shadow-s {
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #5d7fcd; /*ボタン色*/
    color: #FFF;
    border-bottom: solid 3px #627295;
    font-size: 19px;
    font-weight: 500;
    height: 30px;
}

    .btn-square-shadow-s:active {
        /*ボタンを押したとき*/
        -webkit-transform: translateY(4px);
        transform: translateY(6px); /*下に動く*/
        box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2); /*影を小さく*/
        border-bottom: none;
    }

    .btn-square-shadow-s:hover {
        /*カーソル当てたとき*/
        background: #75a6ff;
    }

    .btn-square-shadow-s:disabled {
        /*使用不可時*/
        background: #708090;
    }
.btn-square-shadow {
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #5d7fcd; /*ボタン色*/
    color: #FFF;
    border-bottom: solid 6px #627295;
    font-size: 19px;
    font-weight: 500;
    height: 50px;
}

    .btn-square-shadow:active {
        /*ボタンを押したとき*/
        -webkit-transform: translateY(4px);
        transform: translateY(6px); /*下に動く*/
        box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2); /*影を小さく*/
        border-bottom: none;
    }

    .btn-square-shadow:hover {
        /*カーソル当てたとき*/
        background: #75a6ff;
    }

    .btn-square-shadow:disabled {
        /*使用不可時*/
        background: #708090;
    }

.btn-edge-R {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 0 20px;
    font-size: 19px;
    height: 40px;
    line-height: 35px;
    background: #2c3148;
    font-size: 14px;
    color: rgb(255, 255, 255);
    border: none;
    border-bottom: solid 6px #131313;
}

    .btn-edge-R:after {
        position: absolute;
        content: '';
        right: 0;
        top: 0;
        width: 0;
        height: 0;
        border-left: solid 12px transparent;
        border-bottom: solid 41px white;
    }

    .btn-edge-R:hover {
        background: #51587b;
    }

    .btn-edge-R:focus {
        outline: 0;
    }
    
.btn-edge-R {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 0 20px;
    font-size: 19px;
    height: 35px;
    line-height: 35px;
    background: #2c3148;
    font-size: 14px;
    color: rgb(255, 255, 255);
    border: none;
    border-bottom: solid 6px #131313;
}

    .btn-edge-R:after {
        position: absolute;
        content: '';
        right: 0;
        top: 0;
        width: 0;
        height: 0;
        border-left: solid 12px transparent;
        border-bottom: solid 36px white;
    }

    .btn-edge-R:hover {
        background: #51587b;
    }

    .btn-edge-R:focus {
        outline: 0;
    }

.btn-edge-L {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 0 20px;
    font-size: 19px;
    height: 35px;
    line-height: 35px;
    background: #2c3148;
    font-size: 14px;
    color: rgb(255, 255, 255);
    border: none;
    border-bottom: solid 6px #131313;
}

    .btn-edge-L:before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 0;
        height: 0;
        border-left: solid 12px white;
        border-bottom: solid 36px transparent;
    }

    .btn-edge-L:hover {
        background: #51587b;
    }

    .btn-edge-L:focus {
        outline: 0;
    }

.btn-export {
    display: inline-block;
    text-decoration: none;
    width: 40px;
    margin: 2px;
    height: 40px;
    line-height: 40px;
    font-size: 23px;
    color: white;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    font-weight: bold;
    transition: .3s;
    border: none;
    border-bottom: solid 3px #627295;
}

    .btn-export i {
        line-height: 40px;
    }

    .btn-export:hover {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    .btn-export:focus {
        outline: 0;
    }

.btn-export--pdf {
    background: #de0000;
}

.btn-export--excel {
    background: #006400;
}

.btn-export--csv {
    background: #808080;
}
