@charset "UTF-8";

main {
    background-image: url(../../images/RWD/bg_event.png);
    background-size: contain;
    background-position: center -5%;
    background-repeat: no-repeat;
}

.bgLinear {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 5%, #000000 50%);
}

ul.eventList {
    margin: 24px 0;
}

ul.eventList>li {
    border-radius: 16px;
    overflow: hidden;
    margin: 28px 0;
}

ul.eventList li .imgArea {}

ul.eventList li .imgArea img {
    width: 100%;
    height: auto;
    display: block;
}

ul.eventList li .textArea {
    transform: skewY(5deg);
    overflow: hidden;
    margin: -25px 0;

    background: #272727;
}

ul.eventList li .textArea .textBox {
    transform: skewY(-5deg);

    margin: 25px 0;
}

ul.eventList li .textArea .textBox .textContent {
    position: relative;
    padding: 0 16px 44px;
}

ul.eventList li .textArea h3 {
    margin-bottom: 16px;
    font-size: 26px;
    line-height: 38px;
}

.shareBox {
    top: auto;
    bottom: 0;
}


@media screen and (min-width: 768px) {
    main {
        background-position: center -10%;
    }

    ul.eventList>li {
        display: flex;
    }

    ul.eventList li .imgArea {
        width: 50%;
        flex: none;
    }

    ul.eventList li .textArea {
        transform: skewY(0deg);
        transform: skewX(5deg);
        margin: 0 -15px -1px;
        width: 60%;
    }

    ul.eventList li .textArea .textBox {
        transform: skewY(0deg);
        transform: skewX(-5deg);
        margin: 0 15px;
        height: 100%;
    }

    ul.eventList li .textArea .textBox .textContent {
        height: 100%;
        padding: 16px 24px 64px;
        box-sizing: border-box;
    }

    .shareBox {
        position: absolute;

        bottom: 16px;
    }
}

@media screen and (min-width: 1024px) {
    ul.eventList {
        width: 900px;
        margin: 0 auto;
    }

    ul.eventList>li {
        margin: 44px 0;
    }
}

@media screen and (min-width: 1440px) {}