@charset "utf-8";

.event_wrap{
    width: 90%;
    margin: 0 auto 60px;
}

.event_container{
    box-shadow: 0 10px 10px 0;
    margin-bottom: 30px;
}

.event_content{
    padding: 5%;
}

.event_content .title_flex{
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 5%;
}

.event_content ul{
    margin-bottom: 2%;
}

.event_content ul li{
    position: relative;
    padding-left: 9%;
    margin-bottom: .5em;
}

.event_content ul li:first-child::before{
    padding-left: 7%;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-image: url(../img/event_img/pin.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.event_content ul li:last-child::before{
    padding-left: 7%;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-image: url(../img/event_img/tokei.png);
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (min-width:767px){
    .event_wrap{
        max-width: 1000px;
        margin-bottom: 80px;
    }
    .event_container{
        display: flex;
        align-items: center;
        padding: 20px;
        img{
            width: 50%;
            object-fit: contain;
        }
    }
}
@media screen and (min-width:960px){
    .event_wrap{
        max-width: 1000px;
    }
}