/*
Theme Name: Rondo Werkstatt
Theme URI: https://rondowerkstatt.com
Author: Rondo Werkstatt
Description: 株式会社ロンド工房 オフィシャルサイト カスタムテーマ
Version: 1.0.0
License: Private
Text Domain: rondo-werkstatt
*/

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}
.hero-gradient {
    background: linear-gradient(-45deg, #f5f5f5, #e0e0e0, #d5d5d5, #ebebeb, #f0f0f0, #dcdcdc);
    background-size: 400% 400%;
    animation: heroFlow 15s ease infinite;
}
@keyframes heroFlow {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 25%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 0% 75%; }
    100% { background-position: 0% 50%; }
}
.card-hover:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
.nav-link {
    position: relative;
    padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #333;
    transition: width 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}
