@charset "UTF-8";
/* CSS Document */

/* フッター全体 */
footer{
    text-align: center;
    background: #000;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 50px 0;
}
@media screen and (max-width:767px){
    footer{
        padding: 40px 0;
    }
}

/* TOPに戻る */
.back_top_link{
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 14px;
    line-height: 1em;
    padding-left: 18px;
    margin-bottom: 30px;
}
.back_top_link::after {
    position: absolute;
    left: 0;
    content: url(../../img/icon/link_left_icon.svg);
    width: 8px;
    top: calc(50% - 7px);
}
@media screen and (max-width:767px){
    .back_top_link{
        margin-bottom: 20px;
    }
}

/* コピーライト */
footer small{
    color: #fff;
    font-size: 10px;
    line-height: 1em;
    text-align: center;
    margin: 0;
}
