@charset "UTF-8";

/* ==========================================================================
   product-lp.html 専用スタイル
   product-web.css / product-medical.css で対応できない追加スタイルのみ記述
   ========================================================================== */

.about-section {
    position: relative;
    overflow: hidden;
    background: #f3f2eb;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: url("../img/product-lp/first-bg.jpg") no-repeat left top;
    background-size: cover;
    z-index: 0;
}

.about-section > * {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1024px){
    .about-section::before {
        width: 100%;
        height: 100%;
    }
    .about-section .container{
        background-color: rgba( 255, 255, 255, 0.9 );
        padding: 50px;
        margin: 0 0 0 auto;
        max-width: 100%;
    }
}
/* ==========================================================================
   LPフロー図（広告→LP→行動）
   ========================================================================== */
.service-card-grid-lp-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 40px;
    background: #f8f8f8;
    padding: 30px 20px;
    border-radius: 8px;
}

.service-card-grid-lp-flow .service-card {
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: 25px 20px;
    flex: 0 1 180px;
}

.service-card-grid-lp-flow .lp-flow-arrow {
    border: none;
    background: none;
    padding: 0 10px;
    flex: 0 0 auto;
    box-shadow: none;
}

.service-card-grid-lp-flow .lp-flow-arrow:hover {
    border-color: transparent;
    box-shadow: none;
}

.lp-flow-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
}

/* ==========================================================================
   シーンカード（課題→改善）
   product-web/medical のカラー体系に合わせたスタイル
   ========================================================================== */
.lp-scenes-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.lp-scene-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lp-scene-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s;
}

.lp-scene-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.lp-card-side {
    padding: 35px;
}

.lp-card-side.problem {
    background: #fafafa;
}

.lp-card-side.improvement {
    background: #fff;
}

.lp-side-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.lp-side-tag.problem {
    background: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
}

.lp-side-tag.improvement {
    background: #dc000c;
    color: #fff;
}

.lp-side-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.5;
}

.lp-side-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
}

.lp-card-arrow {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

/* pages-style.css FAQ競合防止 */
.faq-list .faq-question::after {
    display: none;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 768px) {
    .service-card-grid-lp-flow {
        flex-direction: column;
        gap: 0;
        padding: 20px 15px;
    }

    .service-card-grid-lp-flow .lp-flow-arrow {
        padding: 5px 0;
    }

    .lp-flow-arrow-icon {
        transform: rotate(90deg);
    }

    .service-card-grid-lp-flow .service-card {
        flex: none;
        width: 100%;
        max-width: 250px;
    }

    .lp-scene-card {
        grid-template-columns: 1fr;
    }

    .lp-card-side {
        padding: 25px 20px;
    }

    .lp-card-arrow {
        margin: -20px auto;
        transform: rotate(90deg);
    }
}
