@charset "UTF-8";

/* ========================================
   feature-sns.css
   SNS活用支援ページ固有スタイル

   CSS読み込み順：
   global.css → pages-style.css → feature-sns.css

   本ページはproduct-web.css / feature-webmarketing.cssを読み込まないため、
   hero-simple / section-divider / cta-block / faq の共通パーツは
   feature-webmarketing.css から必要分のみ転記して収録。
   service-nav-section は global.css に定義済み。

   構成：
   - 共通パーツ（hero / divider / cta / faq）
   - ② 課題提起セクション
   - ③ Web×SNS相互補完セクション（このページ独自）
   - ④ アプローチセクション
   - ⑤ 支援内容マップセクション
   - ⑥ 支援体制セクション（このページ独自）
   - ⑦ 活用事例セクション（2カラム対応）
   - ⑧ 料金セクション（このページ独自）
   - CTA補足
======================================== */

/* ========================================
   共通パーツ① ヒーローセクション（シンプル左右分割）
   ※ feature-webmarketing.css と共通
======================================== */
.hero-simple {
    background: #f8f8f8;
    padding: 40px 0;
}

.hero-simple-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-simple-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-simple-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    line-height: 1.5;
}

.hero-simple-lead {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.9;
    padding-left: 50px;
}

.hero-simple-image {
    flex: 0 0 320px;
}

.hero-simple-image img {
    width: 100%;
    height: auto;
}

/* セクション区切り線 */
.section-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 0;
}

.first-area{
    position: relative;
    overflow: hidden;
    background: #f3f2eb !important;
}

.first-area::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url("../img/feature-sns/first-bg.jpg") no-repeat center top;
    background-size: cover;
    z-index: 0;
    opacity: 1;
}

.first-area > * {
    position: relative;
    z-index: 1;
}

.sns-outline-img img {
    max-width: 70%;
    height: auto;
}

@media (max-width: 768px) {
    .sns-outline-img img {
        max-width: 100%;
    }
}

.first-area .container{
	background-color: rgba( 255, 255, 255, 0.95 );
    padding: 50px;
    margin: 0 auto 0 0;
    max-width: 60%;
    box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    .hero-simple-text {
        flex-direction: column;
    }
    .hero-simple-lead {
        padding-left: 0;
        padding-top: 1em;
    }
}
@media screen and (max-width: 1024px){
    .first-area{
        padding: 30px !important;
    }
    .first-area::before {
        width: 100%;
        height: 100%;
    }
    .first-area .container{
        background-color: rgba( 255, 255, 255, 0.9 );
        padding: 50px;
        margin: 0 0 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        padding: 25px 0;
    }

    .hero-simple-inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .hero-simple-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   共通パーツ② CTAセクション（ブロックボタン）
   ※ feature-webmarketing.css と共通
======================================== */
.cta-block-section {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0 15px 0;
    background: #f5f5f5;
    text-align: center;
}

.cta-block-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.9;
    margin-bottom: 25px;
}

.cta-block-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-block-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 320px;
    padding: 20px 25px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s;
}

.cta-block-btn:hover {
    background: #dc000c;
}

.cta-block-btn-text {
    font-size: 1rem;
    font-weight: 600;
}

.cta-block-btn-arrow {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.cta-block-btn:hover .cta-block-btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-block-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-block-btn {
        width: 100%;
        max-width: 320px;
    }

    .cta-block-lead {
        font-size: 1.1rem;
    }
}

/* ========================================
   共通パーツ③ FAQセクション
   ※ feature-webmarketing.css と共通
======================================== */
.faq-section {
    padding: 50px 0;
    background: #fff;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
    box-sizing: border-box;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-q-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #dc000c;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
}

.faq-q-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        gap: 12px;
        padding: 18px 0;
    }

    .faq-q-label {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .faq-q-text {
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding-left: 44px;
        font-size: 0.85rem;
    }
}

/* ========================================
   ② 課題提起セクション（テキスト主体バリエーション）
   ※ feature-webmarketing.css と共通
======================================== */
.problems-section-text {
    padding: 50px 0;
    background: #fff;
}

.problems-section-text .section-title {
    text-align: center;
    margin-bottom: 25px;
}

/* 課題カード3枚グリッド */
.problems-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.problems-card {
    border-radius: 0;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #eee;
    border-top: 1px solid #dc000c;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problems-card-num {
    font-size: 1rem;
    font-weight: 700;
    color: #dc000c;
    margin-bottom: 8px;
}

.problems-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problems-card-image {
    margin-bottom: 15px;
}

.problems-card-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.problems-card-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    line-height: 1.7;
    margin: 0;
    margin-top: auto;
}

/* 文中の強調 */
.approach-emphasis {
    color: #CC0000;
    font-size: 1.05em;
}

@media (max-width: 768px) {
    .problems-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.problems-text-block {
    max-width: 760px;
    margin: 0 auto;
}

.problems-text-block p {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
    margin-bottom: 1.5em;
}

.problems-text-block p:last-child {
    margin-bottom: 0;
}

/* ========================================
   ③ Web×SNS相互補完セクション（このページ独自）
======================================== */
.web-sns-complement-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.web-sns-complement-section .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.web-sns-text-block {
    max-width: 760px;
    margin: 0 auto;
}

.web-sns-text-block p {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
    margin-bottom: 1.5em;
}

.web-sns-text-block p:last-child {
    margin-bottom: 0;
}

.web-sns-map-wrapper {
    max-width: 700px;
    margin: 30px auto 0;
    text-align: center;
}

.web-sns-map-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   ④ アプローチセクション
   ※ feature-webmarketing.css と共通
======================================== */
.approach-section {
    padding: 50px 0;
    background: #fff;
}

.approach-section .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.approach-text-block {
    max-width: 760px;
    margin: 0 auto 25px;
}

.approach-text-block p {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
    margin-bottom: 1.5em;
}

.approach-text-block p:last-child {
    margin-bottom: 0;
}

/* ④ アプローチ：横長カード（縦積み） */
.approach-cards {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.approach-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px 28px;
    transition: box-shadow 0.3s;
}

.approach-card:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.approach-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fdf5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-card-icon img {
    width: 24px;
    height: 24px;
}

/* SVGアイコンがない場合のCSS代替 */
.approach-card-icon-fallback {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fdf5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #dc000c;
    font-weight: 700;
}

.approach-card-content {
    flex: 1;
}

.approach-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.approach-card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .approach-card {
        padding: 20px;
        gap: 15px;
    }

    .approach-card-icon,
    .approach-card-icon-fallback {
        width: 40px;
        height: 40px;
    }

    .approach-card-icon img {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   ⑤ 支援内容マップセクション
   ※ feature-webmarketing.css と共通
======================================== */
.support-map-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.support-map-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.support-map-lead {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ⑤ 支援内容マップ：左右交互レイアウト */
.support-map-block {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto 35px;
}

.support-map-block:last-child {
    margin-bottom: 0;
}

.support-map-block-reverse {
    flex-direction: row-reverse;
}

.support-map-block-image {
    flex: 0 0 200px;
}

.support-map-block-image img {
    width: 100%;
    height: auto;
}

.support-map-block-content {
    flex: 1;
}

.support-map-block-num {
    font-size: 2rem;
    font-weight: 800;
    color: #dc000c;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}

.support-map-block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.support-map-block-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.support-map-block-links {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.8;
}

.support-map-block-links-label {
    color: #888;
    margin-right: 5px;
}

.support-map-block-links a {
    color: #dc000c;
    text-decoration: none;
    margin-right: 12px;
}

.support-map-block-links a:hover {
    text-decoration: underline;
}

.support-map-block-cta-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #dc000c !important;
    text-decoration: none;
    border-bottom: 1px solid #dc000c;
    padding-bottom: 2px;
}

.support-map-block-cta-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .support-map-block,
    .support-map-block-reverse {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }

    .support-map-block-image {
        flex: none;
        width: 60%;
        max-width: 220px;
        margin: 0 auto;
    }

    .support-map-block-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .support-map-block-text {
        text-align: center;
    }
}

/* ========================================
   ⑥ 支援体制セクション（このページ独自）
======================================== */
.support-system-section {
    padding: 50px 0;
    background: #fff;
}

.support-system-section .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.support-system-text-block {
    max-width: 760px;
    margin: 0 auto;
}

.support-system-text-block p {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
    margin-bottom: 1.5em;
}

.support-system-text-block p:last-child {
    margin-bottom: 0;
}

.support-system-link {
    text-align: center;
    margin-top: 20px;
}

.support-system-link a {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #dc000c;
    text-decoration: none;
    border-bottom: 1px solid #dc000c;
    padding-bottom: 2px;
}

.support-system-link a:hover {
    opacity: 0.7;
}

/* ========================================
   ⑦ 活用事例セクション
   ※ 基本構造は feature-webmarketing.css と共通
   ※ 2カラムグリッド（case-grid-2col）はこのページ独自
======================================== */
.case-section {
    padding: 50px 0;
    background: #fff;
}

.case-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.case-section-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 25px;
}

/* 3カラム（feature-webmarketing.html用） */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 2カラム（feature-sns.html用） */
.case-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.case-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.case-card-label {
    background: #333;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 12px 20px;
    line-height: 1.4;
}

.case-card-body {
    padding: 20px;
    flex: 1;
}

.case-card-row {
    margin-bottom: 15px;
}

.case-card-row:last-child {
    margin-bottom: 0;
}

.case-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #888;
    background: #f5f5f5;
    padding: 2px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.case-card-tag-result {
    background: #dc000c;
    color: #fff;
}

.case-card-row p,
.case-card-result p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.case-card-result {
    padding: 15px 20px;
    background: #fdf5f5;
    border-top: 1px solid #f0e0e0;
}

.case-card-result p {
    font-weight: 600;
    color: #333;
}

/* 成果リスト（箇条書き） */
.case-result-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-result-list li {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    line-height: 1.7;
    padding: 2px 0 2px 16px;
    position: relative;
}

.case-result-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc000c;
    font-weight: 700;
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .case-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .case-grid-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   ⑧ 料金セクション（このページ独自）
======================================== */
.pricing-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.pricing-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.pricing-lead {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
}

.pricing-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.pricing-card-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #dc000c;
    margin-bottom: 5px;
}

.pricing-card-amount span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
}

.pricing-card-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.pricing-card-list li {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.8;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.pricing-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc000c;
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-card-note {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}

.pricing-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ⑨ CTA補足
   ※ feature-webmarketing.css と共通
======================================== */
.cta-block-free-note {
    text-align: center;
    font-size: 0.9rem;
    color: #dc000c;
    font-weight: 600;
    margin-top: -20px;
    margin-bottom: 30px;
}
