body {
    font-family: 'Noto Sans JP', sans-serif;
}

/* カスタムスクロールバー */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #1e1e2f;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 3px;
}

/* 背景ぼかし */
.blur-backdrop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

input[type='date']::-webkit-calendar-picker-indicator,
input[type='time']::-webkit-calendar-picker-indicator,
input[type='datetime-local']::-webkit-calendar-picker-indicator {
    filter: invert(0.9);
}
