@charset "UTF-8";

/* フォント設定 */
body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

/* グラスモーフィズム */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* 背景アニメーション (Blob) */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 10s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* サイドバーのアクティブリンク */
.sidebar-link.active {
    background-color: #f0f7ff;
    color: #224C7E !important;
    border-right: 4px solid #F69545;
    font-weight: 700;
}

/* サブメニューのアクティブリンク */
.submenu-item.active {
    color: #224C7E !important;
    font-weight: 700;
    background-color: rgba(34, 76, 126, 0.05);
}

/* 追加：重要なテキストハイライト */
.text-important {
    color: #F69545;
    font-weight: 700;
}

/* 追加：清潔感のあるソフトな影 */
.shadow-soft-sky {
    box-shadow: 0 10px 40px -10px rgba(80, 170, 222, 0.25);
}

.border-sky-soft {
    border-color: rgba(80, 170, 222, 0.2);
}

/* 追加：ロゴ文字の白縁取りとドロップシャドウ */
.brand-logo-shadow {
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.12));
    /* 白縁取り（複数方向に影を重ねて縁に見せる手法） */
    text-shadow:
        1.5px 1.5px 0 #fff,
        -1.5px 1.5px 0 #fff,
        1.5px -1.5px 0 #fff,
        -1.5px -1.5px 0 #fff;
}

/* 月選択ボタンのスタイル */
.month-selector-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #64748b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.month-selector-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.month-selector-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.month-selector-btn:hover::before {
    opacity: 1;
}

.month-selector-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* 2026年 (ネイビー系 - 透明感のあるホバー) */
.month-2026:hover {
    border-color: rgba(34, 76, 126, 0.4) !important;
    color: #224C7E !important;
}

.month-2026:hover::before {
    background: rgba(34, 76, 126, 0.08) !important;
}

/* 2025年 (オレンジ系 - 透明感のあるホバー) */
.month-2025:hover {
    border-color: rgba(246, 149, 69, 0.4) !important;
    color: #D67525 !important;
}

.month-2025:hover::before {
    background: rgba(246, 149, 69, 0.08) !important;
}

/* 2024年 (スカイブルー系 - 透明感のあるホバー) */
.month-2024:hover {
    border-color: rgba(80, 170, 222, 0.4) !important;
    color: #3e98cd !important;
}

.month-2024:hover::before {
    background: rgba(80, 170, 222, 0.08) !important;
}

/* 無効な月のスタイル (未来の月やデータなし) */
.month-disabled {
    pointer-events: none;
    background-color: #f8fafc !important;
    border: 1px dashed #e2e8f0 !important;
    color: #cbd5e1 !important;
    box-shadow: none !important;
    opacity: 0.6;
}

.month-disabled:hover {
    transform: none !important;
}

/* 2023年以前の年選択ボタン */
.year-selector-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.year-selector-btn:hover {
    background: white;
    border-color: #cbd5e1;
    color: #334155;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.05);
}