/* AIウェブデザインページ専用CSS */

/* ヒーローセクション */
.design-hero {
    padding: 80px 0;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/web-design3.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.design-hero h1 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}

.design-hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
}


/* メリットセクション */
.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-section h2 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

.benefits-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    color: #000;
    line-height: 1.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.check-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #986424;
    font-size: 20px;
    font-weight: bold;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    text-align: center;
}

/* 統計セクション */
.stats-section {
    padding: 60px 0;
    background-color: #262626;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 14px;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.stat-card p {
    font-size: 14px;
    line-height: 1.5;
}

/* 先行登録セクション */
.register-section {
    padding: 60px 0;
    text-align: center;
}

.register-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.register-section p {
    font-size: 16px;
    margin-bottom: 30px;
}

.register-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.register-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.register-form button {
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .design-hero h1 {
        font-size: 28px;
    }
    
    .design-hero p {
        font-size: 14px;
    }
    
    .benefits-section h2 {
        font-size: 22px;
    }
    
    .benefits-intro {
        font-size: 14px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .design-hero {
        height: auto;
        padding: 80px 0;
    }
    
    .design-hero h1 {
        font-size: 24px;
    }
    
    .design-hero p {
        font-size: 14px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card h3 {
        font-size: 16px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}