@charset "UTF-8";
/* 04_feature-webmarketing.css - WebマーケティングLP */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.section {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    /*padding: 0 0 50px 0;*/
}
/* .wrapper は global.css に移動 */
/* Problems Section */
.problems-section {
    padding: 72px 0;
    background: white;
    width: 100%;
}
/* .section-title は global.css に移動 */
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}
/* Features Section */
.features-section {
    padding: 72px 0;
    background: white;
}


/* 料金セクション */
.pricing-section {
    padding: 40px 0;
}

.pricing-card {
    background: #fff;
    border-radius: 0;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #ccc;
}

.feature-name {
    color: #666;
    font-weight: 500;
}

.feature-value {
    color: #333;
    font-weight: 600;
}

.feature-check {
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-options {
    margin-top: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-options h3 {
    color: #000;

    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.options-grid {
    display: grid;
    gap: 15px;
}

.option-item {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 20px;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0;
}

.option-name {
    font-weight: 600;
    color: #333;
}

.option-description {
    color: #666;
    font-size: 0.9rem;
}

.option-price {
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #dc000c;
    box-shadow: 0 5px 15px rgba(220, 0, 12, 0.1);
}

.faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    font-size: 1.1rem;
}

.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-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

