.work {
    background: url('../images/BG_line_02.svg') bottom center no-repeat;
    background-size: contain;
}

.work_list {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.work_list:before {
    content: '';
    position: absolute;
    top: -35px;
    left: -80px;
    width: 90px;
    height: 90px;
    background: url('../images/balloon-r.png') center no-repeat;
    background-size: contain;
    transform: rotateY(180deg);
}

.work_list:after {
    content: '';
    position: absolute;
    bottom: 150px;
    right: -150px;
    width: 100px;
    height: 110px;
    background: url('../images/balloon-l.png') center no-repeat;
    background-size: contain;
    transform: rotateY(180deg);
}

.work_list li {
    width: calc( 100%/3 - 50px/3 );
    border-radius: 15px;
    background: #f2f2f2;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
}

.work_list li:hover {
    transform: translateY(-5px);
}

.work_list li:nth-child( n + 4 ) {
    margin-top: 25px;
}

.work_list li a {
    display: block;
}

.work_list li img {
    width: 100%;
}

.work_list li .work_text {
    display: flex;
    flex-direction: column;
    padding: 25px;
    font-size: 15px;
    color: #333;
}


.work_list li .work_text .head {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.work_list li .work_text p {
    color: #888;
    text-align: justify;
    margin-bottom: 0;
}

.work .button {
    color: white;
    background-color: var(--mainRed);
}

@media screen and (max-width: 1023px) {
    .work_list li {
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        margin-top: 25px;
    }
}