@charset "UTF-8";
/* CSS Document */
footer .sp{
    display: none;
}
footer .tablet{
    display: block;
}

/* フッター全体 */
footer{
    background: #000;
}

/* コピーライト */
footer small{
    display: block;
    color: #fff;
    font-size: 10px;
    line-height: 1em;
    text-align: center;
    padding: 35px 0;
    margin-bottom: 0;
}

/* タブレット */

/* スマホ */
@media screen and (max-width:767px){
    footer .tablet{
        display: none;
    }
    footer .sp{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}


