@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Klee+One&family=Quicksand:wght@300&display=swap');

.footer {
    height: 100px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    margin-top: 60px;
}

.footer-inner {
    text-align: center;
    line-height: 100px;
}

span.footer-text {
    font-size: 14px;
    color: #323232;
    font-family: 'Klee One', cursive;
    font-family: 'Quicksand', sans-serif;
}


/* スマートフォン */
@media screen and (max-width: 600px) {

    .footer {
        margin-top: 40px;
    }
    
    span.footer-text {
        font-size: 10px;
    }
}