@charset "UTF-8";

/* 09_service.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;
}

/* .container は global.css に移動 */

/* Hero Section */
.hero-section {
    background: url("../img/09_service/hero.jpg") no-repeat right center;
    background-size: 50% auto;
    padding: 80px 0;
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 0 0;
    padding: 0 30px;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background: #dc000c;
    color: white;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #b3000a;
    transform: translateY(-2px);
}

/* When to Use Section */
.when-to-use-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-case {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.use-case-icon img {
    max-width: 60%;
    height: auto;
}

.use-case p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.case-studies {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.case-study {
    background: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.case-number {
    background: #dc000c;
    color: white;
    padding: 5px 15px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.case-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.case-content {
    display: grid;
    gap: 15px;
}

.case-problem,
.case-solution,
.case-result {
    padding: 15px;
    border-radius: 0;
    line-height: 1.6;
}

.case-problem {
    background: #ffe6e6;
    border-left: 4px solid #ff4444;
}

.case-solution {
    background: #e6f7e6;
    border-left: 4px solid #44aa44;
}

.case-result {
    background: #e6f3ff;
    border-left: 4px solid #4488ff;
}

.case-problem strong,
.case-solution strong,
.case-result strong {
    color: #333;
    font-weight: 600;
}

/* What We Can Do Section */
.what-we-can-do-section {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.capability-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.capability-icon img {
    max-width: 60%;
    height: auto;
}


.capability-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.capability-description {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: #dc000c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
/* CTAセクション関連は global.css に移動 */

/* .cta-button は global.css に移動 */

/* Responsive Design */
@media (max-width: 768px) {
    /* .container のレスポンシブは global.css に移動 */

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .use-cases,
    .capabilities {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .case-study,
    .process-step {
        padding: 20px;
    }
}


/* Print Styles */
@media print {

    /* プリントスタイルは global.css に移動 */
}