/* case.html専用CSS */

/* マサルくん固定画像 */
.masaru-fixed {
    position: fixed;
    bottom: -20px;
    right: 20px;
    z-index: 1500;
    pointer-events: auto;
}

.masaru-link {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.masaru-link:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.masaru-character {
    height: 35vh;
    width: auto;
    opacity: 1;
    transition: all 0.3s ease;
    max-width: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .masaru-fixed {
        right: 15px;
        bottom: -15px;
    }
    
    .masaru-character {
        height: 25vh;
        width: auto;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .masaru-fixed {
        right: 10px;
        bottom: -10px;
    }
    
    .masaru-character {
        height: 20vh;
        width: auto;
        max-width: 120px;
    }
}

/* 統計セクションのスタイル */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.6);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #0277bd;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }
}
