/* フッター */
.footer {
    background: linear-gradient(to right, #ff9eb3, #ffa0c5);
    color: white;
    font-size: 0.95rem;
    border-top: 3px solid #f8a1b0;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

.footer-title {
    font-weight: bold;
    font-size: 1rem;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transform: translateY(-2px);
}
@media (max-width: 576px) {
	.footer {
        font-size: 0.8rem;
    }
}