/* カスタムスタイル */
html {
    scroll-behavior: smooth;
}

/* パララックス効果のためのスタイル */
.bg-fixed {
    background-attachment: fixed;
}

/* モバイルメニューのスタイル */
@media (max-width: 768px) {
    .mobile-menu {
        display: none;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* アニメーション */
.hover\:scale-105:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2E7D32;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1B5E20;
}

/* 画像のホバーエフェクト */
.property-card {
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

/* ボタンのホバーエフェクト */
.btn-hover {
    transition: all 0.3s ease;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
} 