@charset "utf-8";
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: 920px;
    max-width: 90%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}
  
.breadcrumb li:not(:last-of-type)::after {
    content: "›";
    margin: 0 .6em; /* 記号の左右の余白 */
    color: #777; /* 記号の色 */
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 920px;
    max-width: 90%;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}
  
.title h1 {
    font-family: "Outfit", sans-serif;
    font-size: 32px;
    font-weight: bold;
}
  
.title p {
    font-size: 14px;
    margin-top: 15px;
}

.feature {
    display: flex;
    justify-content: flex-start;
    width: 920px;
    max-width: 90%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.feature img {
    width: 460px;
}

.feature-text {
    max-width: 420px;
    margin-left: 40px;
    display: flex;
    align-items: center;
}

.feature-title {
    max-width: 420px;
    margin-left: 40px;  
}

.feature-text h2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 15px;
}

.feature-text h3 {
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 25px;
}

.item-list-works {
    width: 960px;
    max-width: 90%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 280px);
    column-gap: 40px;
    row-gap: 30px;
    justify-content: center;
}

.footer {
    margin-top: 100px;
}

@media (max-width: 800px) {
    .feature {
        display: block;
        width: 500px;
        margin-top: 15px;
    }
    
    .feature-text {
        margin-right: 0;
    }

    .feature-title {
        max-width: 420px;
        margin-left: 0px;
    }

    .feature-text h2 {
        font-size: 20px;
        font-weight: bold;
        line-height: 40px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .feature-text h3 {
        font-size: 14px;
        font-weight: bold;
        line-height: 12px;
        margin-bottom: 20px;
    }
    
    .feature-text p {
        font-size: 14px;
        line-height: 28px;
        margin-top: 15px;
    }    

    .reverse .feature-text {
        margin-left: 0;
    }
    
    .feature img {
        width: 100%;
        height: auto;
        margin-top: 25px;
    }

}

