/*******************

introduction-example

********************/

.introduction-example {
    padding: 40px 0 80px 0;
}

.introduction-example__list {
    display: flex;
    flex-direction: column;
    row-gap: 56px;
    padding-top: 48px;
}

.introduction-example__box {
    display: flex;
    column-gap: 24px;
}

.introduction-example__thumb {
    width: 35%;
    height: 200px;
}

.introduction-example__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.introduction-example__items {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: 60%;
}

.introduction-example__item p.label {
    margin-bottom: 4px;
}

.introduction-example__item p.label span {
    background-color: #C92200;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
}

.introduction-example__divider {
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
}

.introduction-example__items h3 a {
    font-size: 20px;
    color: #1a1a1a;
}

.introduction-example__items h3 a:hover {
    text-decoration: underline;
}

.introduction-example__items h3 {
    line-height: 22px;
}

.introduction-example__item h4 {
    font-size: 14px;
    font-weight: 600;
}

.introduction-example__item ul li {
    font-size: 14px;
}

@media screen and (max-width: 680px) {
    .introduction-example__box {
        flex-direction: column;
        row-gap: 3.2vw;
    }
    .introduction-example__thumb {
        width: 100%;
        height: 50vw;
    }
    .introduction-example__thumb img {
        border-radius: 4px;
    }
    .introduction-example__items {
        row-gap: 3.2vw;        
        width: 100%;
    }
    .introduction-example__items h3 a {
        font-size: 4.6vw;
    }
    .introduction-example__list {
        padding-top: 0;
    }
    .introduction-example__items h3 {
        line-height: 4.0vw;
        padding-top: 2.1vw;
    }
    .introduction-example__items p {
        font-size: 3.4vw;
        line-height: 4.0vw;        
    }   
    .introduction-example__item p.label span {
        padding: 0.4vw 1.2vw 0.8vw 1.2vw;
        font-size: 2.8vw;
    } 
    .introduction-example__item h4 {
        line-height: 6vw;
    }  
    .introduction-example__item p.label {
        margin-bottom: 2.1vw;
    }         
}