@charset "UTF-8";

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

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

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

/* ========================================
   共通パーツ① ヒーローセクション（シンプル左右分割）
   ※ product-web.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;
    left: 0;
    width: 60%;
    height: 100%;
    background: url("../img/seo/first-bg.jpg") no-repeat center top;
    background-size: cover;
    z-index: 0;
    opacity: 1;
}

.first-area > * {
    position: relative;
    z-index: 1;
}
.first-area .container{
	background-color: rgba( 255, 255, 255, 0.95 );
    padding: 50px;
    margin: 0 0 0 auto;
    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セクション（ブロックボタン）
   ※ product-web.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セクション
   ※ product-web.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;
    }
}

/* ========================================
   ② 課題提起セクション（テキスト主体バリエーション）
======================================== */
.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;
}

@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;
}

/* ========================================
   ③ 業界比較セクション
======================================== */
.industry-comparison-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.industry-comparison-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

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

.industry-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.industry-comparison-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.industry-comparison-icon {
    display: block;
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.industry-comparison-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.industry-comparison-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

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

/* ========================================
   ④ アプローチセクション
======================================== */
.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-text-block p.approach-keyline {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc000c;
    line-height: 1.6;
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    padding: 24px 32px;
    background: #fff;
    border: 2px solid #dc000c;
    border-radius: 10px;
    text-align: center;
}

/* ④ アプローチ：文中の強調（インライン） */
.approach-emphasis {
    color: #CC0000;
    font-size: 1.05em;
}

/* ④ アプローチ：横長カード（縦積み） */
.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;
    }
}

/* ポジションマップ（画像版） */
.position-map-wrapper {
    max-width: 800px;
    margin: 30px auto;
}

.position-map-heading {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.position-map-image {
    text-align: center;
}

.position-map-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.position-map-note {
    text-align: center;
    font-size: 0.7rem;
    color: #aaa;
    margin-top: 10px;
}

/* ========================================
   ⑤ 支援内容マップセクション
======================================== */
.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;
    }
}

/* ========================================
   ⑥ 活用事例セクション
======================================== */
.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;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    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-placeholder {
    display: inline-block;
    min-width: 2em;
    padding: 0 4px;
    background: #fff3cd;
    border-radius: 2px;
    font-weight: 700;
    color: #dc000c;
    text-align: center;
}

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

/* ========================================
   ⑦ AI活用セクション
======================================== */
.ai-section {
    padding: 50px 0;
    background: #f8f8f8;
}

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

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

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

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

.ai-section-quotes {
    padding: 20px 25px;
    margin: 10px 0 20px;
    border-left: 3px solid #dc000c;
    background: #fff;
    border-radius: 0 4px 4px 0;
}

.ai-section-quotes p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0.5em;
}

.ai-section-quotes p:last-child {
    margin-bottom: 0;
}

/* ========================================
   ⑧ CTA補足
======================================== */
.cta-block-free-note {
    text-align: center;
    font-size: 0.9rem;
    color: #dc000c;
    font-weight: 600;
    margin-top: -20px;
    margin-bottom: 30px;
}

/* ========================================
   ⑧ CTA ダークバー＋ボタン2つ
======================================== */
.cta-dual {
    background: #333;
    padding: 48px 0;
    text-align: center;
}

.cta-dual__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-dual__lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-dual__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.cta-dual__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    padding: 18px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-dual__btn--primary {
    background: #CC0000;
    color: #fff;
}

.cta-dual__btn--primary:hover {
    background: #a80000;
}

.cta-dual__btn--secondary {
    background: #fff;
    color: #333;
}

.cta-dual__btn--secondary:hover {
    background: #f0f0f0;
}

.cta-dual__btn-body {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-dual__btn-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 4px;
}

.cta-dual__btn-arrow {
    margin-left: 16px;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.cta-dual__btn:hover .cta-dual__btn-arrow {
    transform: translateX(4px);
}

.cta-dual__note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .cta-dual {
        padding: 36px 0;
    }

    .cta-dual__lead {
        font-size: 0.9rem;
    }

    .cta-dual__buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-dual__btn {
        min-width: auto;
        width: 100%;
        max-width: 320px;
    }
}
