footer {
    text-align: center;
    padding: 20px;
    background-color: #fcb2ab;
    color: white;
    position: relative; /* 位置を調整 */
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}
footer p, span {
    font-size: 1rem;
}

@media (max-width: 768px) {
    footer p, span {
        font-size: 0.75rem;
    }
    
} 