.banner{
    background: url(/image/img/img_sapBanner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.necessary__list{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.necessary__list > li{
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.necessary__list > li div{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
}

.necessary__list > li div > p{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    font-weight: 600;
    font-size: 18px;
}

.kind__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.kind__list > li{
    width: 100%;
}

.kind__list > li div{
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.kind__list > li p{
    font-weight: 600;
    font-size: 22px;
    color: #243777;
    line-height: 1;
    margin: 25px 0 20px;
}

.kind__list > li span{
    font-weight: 400;
    font-size: 18px;
    color: #484848;
    line-height: 32px;
    display: block;
}

.clinic__wrap{
    overflow: auto;
    width: 100%;
}

.clinic{
    width: 100%;
    border-top: 2px solid #1f2023;
    min-width: 800px;
}

.clinic > li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f6f6f6;
    padding: 35px 0;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
}

.clinic > li:last-of-type{
    border: none;
}

.clinic > li:nth-child(2n){
    background-color: #fff;
}

.clinic > li div:nth-child(1){
    width: 20%;
    padding-left: 30px;
    color: #243777;
}

.clinic > li div:nth-child(2){ width: 60%; }

.clinic > li div:nth-child(2) p{
    font-weight: 400;
    color: #484848;
}

.clinic > li div:nth-child(2) p:nth-child(n+2){
    margin-top: 10px;
}

.clinic > li div:nth-child(3){
    width: 20%;
    text-align: right;
    padding-right: 30px;
    color: #1f2023;
}





@media screen and (max-width: 1200px){
    .clinic > li{
        font-size: 16px;
    }

    .clinic > li div:nth-child(1){
        width: 25%;
    }
    .clinic > li div:nth-child(2){
        width: 55%;
    }
}

@media screen and (max-width: 1000px){
    .clinic > li div:nth-child(1){
        width: 20%;
        padding-left: 15px;
    }

    .clinic > li div:nth-child(3){
        width: 20%;
        padding-right: 15px;
    }
}

@media screen and (max-width: 768px){
    .necessary__list{
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .necessary__list > li{
        border-radius: 10px;
    }

    .necessary__list > li div > p{
        font-size: 16px;
        padding-bottom: 15px;
    }

    .kind__list{
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .kind__list > li div{
        border-radius: 10px;
    }

    .kind__list > li p{
        font-size: 20px;
        margin: 20px 0 15px;
    }

    .kind__list > li span{
        font-size: 16px;
        line-height: 28px;
    }
}

@media screen and (max-width: 680px){
    .necessary__list{
        grid-template-columns: repeat(2, 1fr);
    }

    .kind__list{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 540px){
    .necessary__list{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kind__list{
        grid-template-columns: 1fr;
        gap: 40px;
    }
}