@charset "UTF-8";

/* 12_service.css - ローカル集客支援（MEO・GBP最適化）LP */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.meo-lp {
    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/12_service/hero.jpg") no-repeat top center #FFF;
    background-size: 50% auto;
    padding: 80px 0;
    width: 100%;
}

.hero-content {
    max-width: 90%;
    margin: 0 auto;
    padding-top: 80px;
}

.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: #000;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.flow-item {
    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;
}

.flow-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.flow-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}
.flow-icon img{
    max-width: 50%;
    height: auto;
}

.flow-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.flow-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.flow-list li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    background: none !important;
}

.flow-list li::before {
    content: "✓";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.flow-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* MEO Explanation Section */
.meo-explanation-section {
    padding: 80px 0;
    background: white;
    width: 100%;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.meo-image {
    text-align: center;
    margin: 40px 0;
}

.meo-image img{
    max-width: 100%;
    height: auto;
}

.meo-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ranking Points Section */
.ranking-points-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ranking-table {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 40px 0;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #dc000c;
    color: white;
    font-weight: 600;
}

.header-cell {
    padding: 20px;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
}

.table-row:last-child {
    border-bottom: none;
}

.cell-title {
    background: #f8f9fa;
    padding: 20px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cell-content {
    padding: 20px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ranking-note {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* NAP Section */
.nap-section {
    padding: 80px 0;
    background: white;
}

.nap-example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.example-image {
    text-align: center;
}

.example-content {
    padding: 20px;
}

.example-content p {
    margin-bottom: 15px;
    color: #666;
}

.example-content ul {
    list-style: none;
    padding: 0;
}

.example-content li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.example-content li::before {
    content: "•";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.nap-points {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    margin-top: 40px;
}

.nap-points h3 {
    color: #000;
    margin-bottom: 20px;
}

.nap-points ul {
    list-style: none;
    padding: 0;
}

.nap-points li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.nap-points li::before {
    content: "✓";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    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;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.feature-number {
    background: #dc000c;
    color: white;
    padding: 5px 15px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: "✓";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Service Intro Section */
.service-intro-section {
    padding: 80px 0;
    background: white;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-feature {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.feature-icon img{
    max-width: 60%;
    height: auto;
}

.service-feature .feature-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-feature ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-feature li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-feature li::before {
    content: "✓";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-pricing {
    text-align: center;
    margin-top: 50px;
}

.pricing-card {
    background: #dc000c;
    color: white;
    padding: 40px;
    border-radius: 0;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.pricing-details {
    text-align: left;
}

.pricing-detail {
    padding: 5px 0;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    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;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.step-number {
    background: #dc000c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.process-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 0;
    margin-top: 30px;
    text-align: center;
}

.process-note p {
    color: #856404;
    margin: 0;
    font-style: italic;
}

/* CTA Section */
/* CTAセクション関連は global.css に移動 */

/* .cta-button は global.css に移動 */

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wrapper {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-flow,
    .features-grid,
    .service-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .nap-example {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cell-title,
    .cell-content {
        padding: 15px;
    }
}

@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;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}



/* Print Styles */
@media print {

    .hero-section,
    /* CTAセクションのプリントスタイルは global.css に移動 */
}