@charset "UTF-8";
/* CSS Document */
.intro{
    border-bottom: solid 1px #363636;
    padding: 80px 0;
    margin-bottom: 80px;
}
.intro .text{
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}
.intro .text p{
    width: 70%;
}
.intro .text p:first-of-type{
    margin-bottom: 20px;
}
.example{
    margin-bottom: 120px;
}
.example .inner{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f8f8;
    border: solid 1px #363636;
    padding: 5%;
}
.example .inner h3{
    font-size: 20px;
    line-height: 1em;
    padding-bottom: 10px;
    border-bottom: solid 1px #363636;
    margin-bottom: 40px;
    display: inline-block;
}
.example .inner ul{
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}
.example .inner ul li{
    width: calc(50% - 2.5%);
    border-bottom: solid 1px #363636;
    margin-bottom: 35px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 15px;
}
.example .inner ul li:nth-of-type(5),.example .inner ul li:nth-of-type(6){
    margin-bottom: 0;
}
.example .inner ul li .image{
    width: 30%;
    border-radius: 12px;
    border: solid 1px #363636;
    overflow: hidden;
    position: relative;
    z-index: 1;
    will-change: transform;
}
.example .inner ul li .text{
    width: 70%;
    padding-left: 5%;
    font-size: 18px;
}


@media print, screen and (max-width: 1300px) {
    .example .inner ul li .text{
        font-size: 16px;
        line-height: 1.4em;
    }
}


@media print, screen and (max-width: 750px) {
    .intro {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    .intro .text {
        width: 100%;
        padding: 0 20px;
    }
    .intro .text p{
        width: 100%;
    }
    .intro .text p:first-of-type{
        margin-bottom: 15px;
    }
    .example {
        margin-bottom: 60px;
    }
    .example .inner h3 {
        width: 100%;
        font-size: 18px;
        margin-bottom: 30px;
    }
    .example .inner ul li{
        width: 100%;
        margin-bottom: 30px;
    }
    .example .inner ul li:nth-of-type(5){
        margin-bottom: 30px;
    }


}