@charset "UTF-8";

/* 05_feature-webproduction.css - Webサイト制作LP */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
	padding: 0 0 50px 0;
}

/* .wrapper は global.css に移動 */

/* Hero Section */
.hero-section {
    background: url("../img/05_feature-webproduction/hero.jpg") no-repeat right center #b8dde5;
    background-size: 60% auto;
    padding: 80px 0;
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: white;
    width: 100%;
}

/* .section-title は global.css に移動 */

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-icon img {
    max-width: 70%;
    height: auto;
}

.problem-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
}

.solution-section .hero {
    background: url("../img/05_feature-webproduction/ill04.png") no-repeat right top;
    background-size: cover;
    padding: 80px 0;
}

.solution-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFF;
    text-align: center;
    margin-bottom: 30px;
    padding-right: 40%;
    padding: 0 40% 0 5%;
}

.solution-description {
    font-size: 1.1rem;
    color: #FFF;
    text-align: center;
    margin-bottom: 50px;
    padding: 0 40% 0 5%;
}

.company-intro {
    background: white;
    padding: 40px;
    border-radius: 0;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.company-intro h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 20px;
}

.company-intro p {
    color: #666;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    text-align: center;
    text-decoration: none !important;
    color: inherit;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-icon img {
    max-width: 100%;
    height: auto;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #FFF;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}


.step-number {
    background: #000;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background: #f8f9fa;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}


.portfolio-image {
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: #999;
    font-size: 1.1rem;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin: 20px 20px 10px;
}

.portfolio-description {
    color: #666;
    margin: 0 20px 20px;
}

/* FAQ Section */
/* FAQセクション関連は global.css に移動 */

/* CTA Section */
/* CTAセクション関連は global.css に移動 */

/* .cta-button は global.css に移動 */

/* Responsive Design */
@media (max-width: 768px) {
    /* .wrapper のレスポンシブは global.css に移動 */

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .problems-grid,
    .services-grid,
    .features-grid,
    .process-steps,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-intro {
        padding: 30px 20px;
    }

    .solution-title,
    .solution-description {
        padding: 5%;
        text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 30px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}


/* Print Styles */
@media print {

    /* プリントスタイルは global.css に移動 */
}