/*
Theme Name: 税理士テンプレート - 立川税理士事務所
Author: Gemini Site Builder
Description: スタイリッシュな税理士事務所向けテーマ
Version: 1.0.1
*/

/* Custom CSS to supplement Tailwind */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography Adjustments */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure footer sticks to bottom if content is short */
#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}