﻿


.wrap > div{
    max-width: 900px;
}





/*상단 탭메뉴*/
.b_scro{
    display: flex;
    column-gap: 0.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.opt_obj input[type="radio"] + span{
    padding: 0 2rem;
}








/*내용*/
.e_box {
    margin-top: 1rem;
}

.e_box > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-around;
    gap: 2rem;
    text-align: center;
}

@media (max-width:580px){

    .e_box > div{
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

}




.e_box > div > div{
    width: 100%;
}

.title2{
    text-align: left;
    margin: 1rem 0 2rem 1rem;
    word-break: keep-all;
    cursor: pointer;
}

@media (max-width:768px) {

    .title2 h4{
        font-size: 1rem;
    }

    .title2 p{
        font-size: 0.87rem;
    }

}

@media (max-width:580px) {

    .title2 h4{
        font-size: 1.13rem;
    }

    .title2 p{
        font-size: 1rem;
    }

}


.fit {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 25px;
}

.e_box img {
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .e_box img:hover {
        transform: scale(1.1);
        transition: all 0.3s ease-in-out;
    }