@charset "UTF-8";

/* 11_service.css - SNS活用支援LP */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sns-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/11_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-catch {
    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: 30px;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.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);
}

/* Focus Points Section */
.focus-points-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.focus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.focus-card {
    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);
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.focus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.focus-icon img {
    max-width: 70%;
    height: auto;
}

.focus-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.focus-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.focus-list li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.focus-list li::before {
    content: "✓";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.focus-note {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
    font-style: italic;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #ffe6e6;
    border-radius: 0;
    border-left: 4px solid #ff4444;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}
.problem-icon img{
    width: 70px;
    height: auto;
}
.problem-text {
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Channel Characteristics Section */
.channel-characteristics-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.channel-image {
    margin: 40px 0;
}
.channel-image img{
    max-width: 100%;
    height: auto;
}

.image-placeholder {
    background: #e9ecef;
    padding: 60px;
    border-radius: 0;
    color: #999;
    font-size: 1.2rem;
    border: 2px dashed #ddd;
    display: inline-block;
}

.channel-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: white;
}

.support-steps {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.support-step {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.support-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: 20px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.step-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.step-list li::before {
    content: "✓";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.step-note {
    color: #000;
    font-weight: 600;
    font-style: italic;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-item {
    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);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.menu-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.menu-icon img {
    max-width: 80%;
	height: auto;
}
.menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.menu-description {
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #f8f9fa;
    padding: 40px;
    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);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.plan-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.plan-period {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.plan-note {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.plan-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.plan-link:hover {
    color: #b3000a;
}

/* CTA Section */
/* CTAセクション関連は global.css に移動 */

/* .cta-button は global.css に移動 */

/* Responsive Design */
@media (max-width: 768px) {
    /* .wrapper のレスポンシブは global.css に移動 */

    .hero-catch {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .focus-cards,
    .problems-grid,
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .problem-item {
        flex-direction: column;
        text-align: center;
    }
}

@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 に移動 */
}