@charset "utf-8";
/* ============================
main
==============================*/
.section--cars{
    padding: 50px 20px 80px 20px;
}

.cars-wrapper{
    position: relative;
    border-bottom: 2px solid #21562B;
    margin-top: 10px;
}

.cars-wrapper::before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #21562B;
    position: absolute;
    left: 0;
    right: 0;
    top: 9px;
    transform: translateY(-50%);
}

.cars_topic{
    text-align: center;
}

.cars_item{
    padding: 20px;
    border-radius: 20px;
    border: 3px solid var(--primary-green);
    background: #FFF;
    margin: 20px 0 30px;
}

.cars_pic{
    height: 190px;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.subtitle{
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 15px;
}

.title{
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-green);
}

.people{
    display: inline-flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #FA7921;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 15px;
}

.car_txt{
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
}

.right{
    width: 20px;
    height: 20px;
}

.seatlist{
    display: flex;
    margin-top: 15px;
    gap: 20px;
}

.d_pdf{
    width: 50%;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 2px solid #FA7921;
    background: #FFF;
    box-shadow: 3px 5px 2px 0px rgba(0, 0, 0, 0.40);
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    top: 0;
}

.d_exel{
    width: 50%;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    background: #FA7921;
    box-shadow: 3px 5px 2px 0px rgba(0, 0, 0, 0.40);
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    top: 0;
}

.d_exel:hover, .d_pdf:hover{
    top: 4px;
    box-shadow: 0 0 rgba(0, 0, 0, 0.40);
}

.section--cars::after{
    content: "";
    display: block;
    width: 40px;
    height: 30px;
    background-image: url(../img/bus_illast.webp);
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 50;
    bottom: -5px;
    right: 20px;
}

@media screen and (min-width: 769px){
    .section--cars::after{
        width: 133px;
        height: 100px;
        bottom: -10px;
        right: 50px;
    }

    .cars-wrapper{
        margin-bottom: 120px;
    }

    .cars-wrapper::before{
        top: 20px;
    }

    .cars_info{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
    }

    .cars_item {
        width: 40%;
        padding: 30px;
    }

    .cars_pic{
        height: 300px;
    }

    .subtitle{
        font-size: 2rem;
    }

    .title{
        font-size: 2.6rem;
    }

    .people{
        font-size: 1.6rem;
    }

    .car_txt{
        font-size: 1.6rem;
    }

    .seatlist{
        gap: 30px;
    }

    .d_pdf, .d_exel{
        font-size: 1.8rem;
        gap: 10px;
    }

    .right{
        width: 24px;
        height: 24px;
    }
}
/* pc 769px */