@charset "UTF-8";
/* guide-glue_processing CSS */
.sec-glue_processing {
    container-type: inline-size;
    container-name: glue_processing;
}

.glue-info{
    gap: 30px;
}

.glue-img{
    width: 40%;
    max-width: 320px;
    min-width: 200px;
    height: fit-content;
    border: 1px solid var(--color-border);
}
.glue-txt{
    flex: 1;
}
.glue-ttl{
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 20px;
}

.feature-list{
    background-color: #fff9e4;
    padding: 15px;
}

.feature-list>li{
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
    padding-left: 1.2em;
}
.feature-list>li:last-of-type{
    padding-bottom: 0;
}
.feature-list>li::before{
    content: '\f14a';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0.65em;
    left: 0;
    transform: translateY(-50%);
}

@container glue_processing (max-width:570px){
    .glue-info {
        gap: 30px;
        justify-content: center;
    }
    .glue-img {
        width: 100%;
        max-width: 380px;
    }    
    .glue-txt {
        flex: auto;
    }
}