body {
    background: #FAF7F7;
}

.section .wrap {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 80px 0 100px;
}

.section .wrap .linkList {
    width: 300px;
    background: #FFFFFF;
    height: fit-content;
}

.section .wrap .linkList a:nth-child(1) {
    font-size: 20px;
}

.section .wrap .linkList a {
    display: block;
    width: 100%;
    height: 75px;
    font-weight: 400;
    font-size: 18px;
    color: #888888;
    line-height: 75px;
    padding: 0 0 0 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.6s;
    position: relative;
}

.section .wrap .linkList a:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #C8161D;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

.section .wrap .linkList a:hover {
    color: #C8161D;
}

.section .wrap .linkList a:hover:after {
    transform: scaleX(1);
}

.section .wrap .linkList a.on {
    background: #C8161D;
    color: #FFFFFF;
    border-bottom: 1px solid #C8161D;
}

.section .wrap .box {
    width: 1050px;
    display: flex;
    flex-wrap: wrap;
}

.section .wrap .box .item {
    width: 320px;
    margin: 0 0 40px;
}
.section .wrap .box .item .img {
    width: 100%;
    margin: 0 0 15px;
}
.section .wrap .box .item .img img {
    display: block;
    width: 100%;
}
.section .wrap .box .item:not(:nth-child(3n)) {
    margin-right: 45px;
}
.section .wrap .box .item p {
    font-weight: 500;
    font-size: 18px;
    color: #111111;
    text-align: center;
}



@media screen and (max-width: 1920px) {
    .section {
        background: #FAF7F7;
    }
    
    .section .wrap {
        width: 75vw;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 4.1666666667vw 0 5.2083333333vw;
    }
    
    .section .wrap .linkList {
        width: 15.625vw;
        background: #FFFFFF;
        height: fit-content;
    }
    
    .section .wrap .linkList a:nth-child(1) {
        font-size: 1.0416666667vw;
    }
    
    .section .wrap .linkList a {
        display: block;
        width: 100%;
        height: 3.90625vw;
        font-weight: 400;
        font-size: 0.9375vw;
        color: #888888;
        line-height: 3.90625vw;
        padding: 0 0 0 1.5625vw;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: 0.6s;
        position: relative;
    }
    
    .section .wrap .linkList a:after {
        content: "";
        width: 100%;
        height: 1px;
        background: #C8161D;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: 0.4s;
    }
    
    .section .wrap .linkList a:hover {
        color: #C8161D;
    }
    
    .section .wrap .linkList a:hover:after {
        transform: scaleX(1);
    }
    
    .section .wrap .linkList a.on {
        background: #C8161D;
        color: #FFFFFF;
        border-bottom: 1px solid #C8161D;
    }
    
    .section .wrap .box {
        width: 54.6875vw;
        display: flex;
        flex-wrap: wrap;
    }
    
    .section .wrap .box .item {
        width: 16.6666666667vw;
        margin: 0 0 2.0833333333vw;
    }
    .section .wrap .box .item .img {
        width: 100%;
        margin: 0 0 0.78125vw;
    }
    .section .wrap .box .item .img img {
        display: block;
        width: 100%;
    }
    .section .wrap .box .item:not(:nth-child(3n)) {
        margin-right: 2.34375vw;
    }
    .section .wrap .box .item p {
        font-weight: 500;
        font-size: 0.9375vw;
        color: #111111;
        text-align: center;
    }
}

@media screen and (max-width: 1024px) {
    .section .wrap .linkList a.on{
        font-size: 14px;
    }
    .section .wrap .linkList a{
        font-size: 14px;
        height: 50px;
        line-height: 50px;
    }
    .section .wrap .linkList a:nth-child(1){
        font-size: 14px;
    }
    .section .wrap{
        width: 90%;
        flex-direction: column;
        padding: 60px 0;
    }
    .section .wrap .linkList{
        width: 100%;
    }
    .section .wrap .box{
        margin-top: 20px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .section .wrap .box .item:not(:nth-child(3n)){
        margin-right: 0;
    }
    .section .wrap .box .item{
        margin-bottom: 0;
        width: 100%;
    }
    .section .wrap .box .item p{
        font-size: 14px;
    }
    .section .wrap .box .item .img{
        margin-bottom: 5px;
    }
    .section .wrap .linkList a{
        padding-left: 10px;
    }
}

@media screen and (max-width: 767px) {
    .section .wrap .box {
        grid-template-columns: repeat(2, 1fr);
    }
    .section .wrap{
        padding: 50px 0;
    }
}
@media screen and (max-width: 450px) {
    .section .wrap .box {
        grid-template-columns: repeat(1, 1fr);
    }
}