#about-top {
    max-width: 1250px;
    width: 85%;
    margin: 0 auto;
    padding: 40px 0;
}
#about-top h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}
#about-top .block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
#about-top .block .txt {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 55%;
}
#about-top .block .txt .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    border-radius: 50%;
    aspect-ratio:  1 / 1;
    text-align: center;
    font-weight: bold;
    background-color: #fefff8;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    margin-right: 5%;
}
#about-top .block .txt .item:nth-child(3n) {
    margin-right: 0;
}
#about-top .block .txt .item p {
    font-size: 14px;
}
#about-top .block .txt .item img {
    width: 40%;
    margin-bottom: 10px;
}
#about-top .block .txt h3 {
    text-align: center;
}
#about-top .block .sample {
    width: 40%;
}
#about-top .block .sample img {
    width: 100%;
}
#about-top .merit {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#about-top .merit .item {
    width: 32%;
    padding: 20px 15px;
    border-radius: 20px;
    text-align: center;
}
#about-top .merit .item.sale {
    background-color: #d8eef0;   
}
#about-top .merit .item.sale span,
#about-top .merit .item.sale strong {
    color: #0a85ac;
}
#about-top .merit .item.recruit {
    background-color: #d6f0e0;   
}
#about-top .merit .item.recruit span,
#about-top .merit .item.recruit strong {
    color: #008674;
}
#about-top .merit .item.business {
    background-color: #f5d5e0;   
}
#about-top .merit .item.business span,
#about-top .merit .item.business strong {
    color: #c55258;
}
#about-top .merit .item h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 5px;
}
#about-top .merit .item .txt {
    margin-bottom: 5px;
}
#about-top .merit .item .txt h4 {
    font-size: 20px;
}
#about-top .merit .item .txt h4 strong {
    font-size: 26px;
}
#about-top .merit .item .txt p {
    font-weight: bold;
    font-size: 12px;
}
#about-top .merit .item .txt p strong {
    font-size: 18px;
}
#about-top .merit .item .txt p span {
    font-size: 13px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    #about-top h2 {
        font-size: 24px;
    }
    #about-top .block {
        position: relative;
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }
    #about-top .block .txt {
        width: 100%;
    }
    #about-top .block .txt .item p {
        font-size: 10px;
    }
    #about-top .block .sample {
        width: 100%;
        margin-bottom: 40px;
    }
    #about-top .merit {
        width: 100%;
        flex-direction: column;
    }
    #about-top .merit .item {
        width: 100%;
        margin-bottom: 40px;
    }
}