.club {
    padding: 45px 0 100px;
    position: relative;
}
.club::after {
    background: url(../images/bg_diagonal.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    height: 800px;
    position: absolute;
    top: 200px;
    left: 0;
    transform: skewY(25deg);
    width: 100%;
    z-index: 0;
}
.club-inner {
    margin: 0 auto;
    position: relative;
    width: 92%;
    max-width: 1280px;
    z-index: 2;
}
.club-head {
    margin: 0 0 45px;
    text-align: center;
}
.club-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.club-text {
    width: 45%;
}
.club-text h3 {
    margin: 0 0 25px;
}
.club-text h3  span {
    background: #010000;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    padding: 2px 5px;
}
.club-text h3  span:first-child {
    margin: 0 0 8px;
}
.club-text h3 .s {
    font-size: 34px;
}
.club-text h3 .b {
    font-size: 40px;
}
.club-text p {
    font-size: 18px;
}
.club-image {
    width: 52%;
}

@media screen and (max-width: 768px) {
    .club-item {
        flex-direction: column-reverse;
    }
    .club-text {
        margin: 25px 0 0;
        width: 100%;
    }
    .club-text h3 .s {
        font-size: 16px;
    }
    .club-text h3 .b {
        font-size: 21px;
    }
    .club-text p {
        font-size: 14px;
    }
    .club-image {
        width: 100%;
    }
}