@charset "UTF-8";

/* ==========================================================================
   service-operation.html 固有スタイル
   product-web.css / product-medical.css で対応できない追加スタイルのみ記述
   ========================================================================== */

/* pages-style.css FAQ競合防止 */
.faq-list .faq-question::after {
    display: none;
}

.ai-features-list {
    gap: 5px;
}

.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/service-operation/first-bg.jpg") no-repeat left top;
    background-size: cover;
    z-index: 0;
}
@media screen and (max-width: 1024px){
    .about-section{
        padding: 30px;
    }
    .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%;
    }
}
