@charset "UTF-8";

/* 06_feature-sns.css - SNS活用支援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/06_feature-sns/hero.png") no-repeat right center #D7E9F1;
    background-size: 50% auto;
    padding: 80px 0;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 0 0;
    padding: 0 30px;
}

.hero-catch {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #666;
}

.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);
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: white;
    width: 100%;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-icon img {
    max-width: 80%;
    height: auto;
}

.problem-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: #f8f9fa;
    width: 100%;
}

.solution-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.solution-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 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;
}

/* Flow Section */
.flow-section {
    padding: 80px 0;
    background: white;
    width: 100%;
}

.flow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.flow-step {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.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;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.step-list li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.step-list li::before {
    content: "✓";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
    width: 100%;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.pricing-card.featured {
    border-color: #dc000c;
    position: relative;
}

.pricing-card.featured::before {
    content: "おすすめ";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc000c;
    color: white;
    padding: 5px 15px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.plan-period {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.plan-features li::before {
    content: "✓";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.plan-button {
    display: inline-block;
    background: #dc000c;
    color: white;
    padding: 12px 25px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.plan-button:hover {
    background: #b3000a;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #000;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: #dc000c;
    color: white;
}

.faq-question:hover::after {
    color: white;
}

.faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
/* CTAセクション関連は global.css に移動 */

/* .cta-button は global.css に移動 */
/* Responsive Design */
@media (max-width: 768px) {
    /* .wrapper のレスポンシブは global.css に移動 */

    .hero-section {
        background: url("../img/06_feature-sns/hero.png") no-repeat top -20% center #D7E9F1;
        background-size: 100% auto;
        padding: 30% 0 0 !important;
    }

    .hero-content {
        padding: 30px;
        background-color: rgba(0, 0, 0, 0.55);
        color: #FFF;
    }

    .hero-catch {
        font-size: 2rem;
        color: #FFF;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .problems-grid,
    .solution-features,
    .flow-container,
    .services-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-catch {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}


/* Print Styles */
@media print {

    /* プリントスタイルは global.css に移動 */
}