@charset "utf-8";
/* CSS Document */

<!-- WordPress用統計セクション -->
<style>
/* 会社実績統計セクション専用CSS */
.wp-company-stats-wrapper {
    background-color: #206495;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.wp-company-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 会社統計セクション */
.wp-company-stats-section {
    background: #206495;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.wp-company-stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.wp-company-stats-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.wp-company-stats-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

.wp-company-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wp-company-stat-item {
    padding: 40px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.wp-company-stat-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #a8d8ea);
}

.wp-company-stat-item:nth-child(2):before {
    background: linear-gradient(90deg, #ffffff, #7dd3fc);
}

.wp-company-stat-item:nth-child(3):before {
    background: linear-gradient(90deg, #ffffff, #93c5fd);
}

.wp-company-stat-item:nth-child(4):before {
    background: linear-gradient(90deg, #ffffff, #bfdbfe);
}

.wp-company-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.2);
}

.wp-company-stat-number {
    font-size: 4.5rem;
    font-weight: 500;
    color: #ffffff;
    display: block;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1;
}

.wp-company-stat-label {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.wp-company-stat-description {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.5;
}

/* 会社実績グラフセクション */
.wp-company-chart-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid rgba(255,255,255,0.1);
}

.wp-company-chart-title {
    font-size: 1.8rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.wp-company-chart-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-bottom: 40px;
}

.wp-company-chart-container {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    margin-bottom: 40px;
    overflow: hidden;
}

.wp-company-chart-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #a8d8ea);
}

#wpCompanySalesChart {
    width: 100% !important;
    height: 300px !important;
}

.wp-company-chart-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.wp-company-highlight-item {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f2f5;
    transition: transform 0.3s ease;
}

.wp-company-highlight-item:hover {
    transform: translateY(-5px);
}

.wp-company-highlight-number {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #206495;
    margin-bottom: 8px;
}

.wp-company-highlight-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .wp-company-stats-section {
        padding: 40px 20px;
    }
    
    .wp-company-stats-title {
        font-size: 1.8rem;
    }
    
    .wp-company-stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }
    
    .wp-company-stat-item {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .wp-company-stat-number {
        font-size: 3.3rem;
    }
    
    .wp-company-stat-label {
        font-size: 1.1rem;
    }
    
    .wp-company-stat-description {
        font-size: 0.9rem;
    }
}

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

/* アニメーション効果 */
.wp-company-stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: wpCompanyFadeInUp 0.6s ease forwards;
}

.wp-company-stat-item:nth-child(1) { animation-delay: 0.1s; }
.wp-company-stat-item:nth-child(2) { animation-delay: 0.2s; }
.wp-company-stat-item:nth-child(3) { animation-delay: 0.3s; }
.wp-company-stat-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes wpCompanyFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* インタラクティブ表示 */
.wp-company-interactive-note {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    color: #206495;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .wp-company-interactive-note {
        position: static;
        margin-bottom: 20px;
        text-align: center;
    }
}
</style>