/* CCCPhone Checker専用スタイル */

/* ヒーローセクション */
.cccphone-hero {
    background: linear-gradient(135deg, #2c4f8d 0%, #1a3a6b 100%);
    padding: 120px 0 80px;
    margin-top: 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cccphone-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/business/warehouse.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.cccphone-hero-content {
    position: relative;
    z-index: 1;
}

.cccphone-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.65;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* 機能セクション */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c4f8d;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* チェック項目リスト */
.checks-section {
    padding: 80px 0;
    background-color: #fff;
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.check-category {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
}

.check-category h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c4f8d;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-category h3::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #2c4f8d;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: '✅';
    font-size: 18px;
    flex-shrink: 0;
}

/* スクリーンショットセクション */
.screenshots-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.screenshot-item {
    text-align: center;
}

.screenshot-item img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.screenshot-item img:hover {
    transform: scale(1.05);
}

.screenshot-caption {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* ダウンロードCTA */
.download-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c4f8d 0%, #1a3a6b 100%);
    color: #fff;
    text-align: center;
}

.download-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background-color: #fff;
    color: #2c4f8d;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
}

.download-icon {
    font-size: 28px;
}

.download-info {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.9;
}

/* 会社情報セクション */
.company-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.company-info-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
}

.company-info-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .cccphone-hero {
        padding: 180px 0 80px;
    }
}

@media (max-width: 768px) {
    .cccphone-hero {
        padding: 160px 20px 60px;
    }

    .cccphone-hero-content h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .feature-grid,
    .checks-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .download-cta h2 {
        font-size: 28px;
    }

    .download-button {
        padding: 16px 40px;
        font-size: 18px;
    }
}
